@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;600;700&display=swap');

:root {
  --primary: #12263f;
  --secondary: #4361ee;
  --accent: #f72585;
  --text: #12263f;
  --bg: #ffffff;
  --footer-bg: #12263f;
  --banner-bg: #4361ee;
  --radius: 10px;
  --shadow: 0 4px 24px rgba(18,38,63,0.10);
  --transition: 0.25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--secondary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent); }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== HEADER ===== */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid rgba(18,38,63,0.08);
  transition: box-shadow var(--transition);
}
#site-header.scrolled {
  box-shadow: 0 2px 16px rgba(18,38,63,0.12);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-wrap svg { display: block; }
.logo-text {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.02em;
}

/* NAV */
.main-nav { display: flex; align-items: center; gap: 32px; }
.main-nav a {
  font-size: 15px;
  font-weight: 600;
  color: var(--primary);
  position: relative;
  padding-bottom: 4px;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--secondary);
  transition: width var(--transition);
}
.main-nav a:hover { color: var(--secondary); }
.main-nav a:hover::after { width: 100%; }

/* hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: #fff;
  border-top: 1px solid rgba(18,38,63,0.08);
  padding: 16px 24px;
  gap: 0;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
  padding: 12px 0;
  border-bottom: 1px solid rgba(18,38,63,0.06);
}
.mobile-nav a:last-child { border-bottom: none; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 13px 30px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  text-align: center;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(67,97,238,0.3);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  color: #fff;
  border-color: transparent;
  transform: translateY(-2px);
}
.btn-white {
  background: #fff;
  color: var(--secondary);
  font-weight: 700;
}
.btn-white:hover {
  background: var(--accent);
  color: #fff;
}

/* ===== HERO ===== */
.hero-section {
  padding: 72px 0 60px;
  background: var(--bg);
}
.hero-inner {
  display: flex;
  align-items: center;
  gap: 56px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.hero-text { flex: 1 1 50%; }
.hero-text h1 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary);
  margin-bottom: 24px;
}
.hero-text p {
  font-size: 17px;
  color: #4a5568;
  margin-bottom: 32px;
  line-height: 1.75;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-image { flex: 1 1 45%; }
.hero-image img {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
  aspect-ratio: 4/3;
  box-shadow: 0 12px 48px rgba(18,38,63,0.15);
}

/* ===== MISSION ===== */
.mission-section {
  padding: 60px 24px;
  background: var(--bg);
}
.mission-box {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: 40px 48px;
  border: 2px solid rgba(67,97,238,0.18);
  border-radius: 16px;
  background: rgba(67,97,238,0.03);
}
.mission-box p {
  font-size: 17px;
  line-height: 1.85;
  color: var(--primary);
}
.mission-box a {
  color: var(--secondary);
  font-weight: 600;
  border-bottom: 1px solid var(--secondary);
}

/* ===== ICONS SECTION ===== */
.icons-section {
  padding: 64px 0;
  background: #f7f9ff;
}
.icons-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.icons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}
.icon-box {
  background: #fff;
  border-radius: 14px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid rgba(67,97,238,0.08);
}
.icon-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(67,97,238,0.15);
}
.icon-box .icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.icon-box .icon-wrap i {
  font-size: 26px;
  color: #fff;
}
.icon-box h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}
.icon-box p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}
.icons-heading {
  text-align: center;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700;
  color: var(--primary);
}

/* ===== IMAGE + TEXT SECTIONS ===== */
.split-section {
  padding: 72px 0;
}
.split-section.alt { background: #f7f9ff; }
.split-inner {
  display: flex;
  align-items: center;
  gap: 56px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.split-inner.reversed { flex-direction: row-reverse; }
.split-img { flex: 1 1 48%; }
.split-img img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  aspect-ratio: 4/3;
  box-shadow: 0 8px 32px rgba(18,38,63,0.13);
}
.split-text { flex: 1 1 48%; }
.split-text h2 {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
  line-height: 1.2;
}
.split-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #4a5568;
  margin-bottom: 16px;
}
.split-text p:last-child { margin-bottom: 0; }

/* ===== PRICING ===== */
.pricing-section {
  padding: 72px 0;
  background: var(--bg);
}
.pricing-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 48px;
  align-items: flex-start;
}
.pricing-left { flex: 0 0 240px; }
.pricing-left h2 {
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
  line-height: 1.25;
}
.pricing-cards { flex: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

.price-card {
  border: 2px solid rgba(67,97,238,0.12);
  border-radius: 16px;
  padding: 28px 22px;
  background: #fff;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.price-card:hover {
  border-color: var(--secondary);
  box-shadow: 0 8px 32px rgba(67,97,238,0.18);
  transform: translateY(-4px);
}
.price-card.featured {
  border-color: var(--secondary);
  background: linear-gradient(160deg, #f0f4ff 0%, #fff 100%);
}
.price-card.featured::before {
  content: 'おすすめ';
  position: absolute;
  top: 14px; right: -28px;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 36px;
  transform: rotate(45deg);
}
.price-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}
.price-card .price {
  font-size: 28px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 4px;
}
.price-card .price span {
  font-size: 14px;
  color: #888;
  font-weight: 400;
}
.price-card .features {
  margin: 18px 0 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.price-card .features li {
  font-size: 13px;
  color: #444;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}
.price-card .features li i {
  color: var(--secondary);
  margin-top: 3px;
  flex-shrink: 0;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  padding: 72px 0;
  background: #f7f9ff;
}
.testimonials-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.testimonials-inner h2 {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 40px;
  text-align: center;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: #fff;
  border-radius: 14px;
  padding: 28px 24px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--secondary);
  transition: transform var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); }
.testimonial-card .stars {
  color: #f7b731;
  margin-bottom: 12px;
  font-size: 14px;
}
.testimonial-card p {
  font-size: 14px;
  line-height: 1.75;
  color: #4a5568;
  margin-bottom: 16px;
}
.testimonial-card .author {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
}
.testimonial-card .author span {
  font-weight: 400;
  color: #888;
  margin-left: 6px;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: var(--banner-bg);
  padding: 64px 24px;
  text-align: center;
}
.cta-banner h2 {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.cta-banner p {
  font-size: 17px;
  color: rgba(255,255,255,0.87);
  margin-bottom: 28px;
}

/* ===== COMMUNITY IMAGE ===== */
.community-section {
  padding: 48px 24px;
  background: var(--bg);
}
.community-section img {
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--footer-bg);
  color: rgba(255,255,255,0.75);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 48px;
}
.footer-col h4 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.footer-col p { font-size: 14px; line-height: 1.75; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: #fff; }
.footer-col ul li i { width: 18px; margin-right: 8px; color: var(--secondary); }

.social-links { display: flex; gap: 12px; margin-top: 4px; }
.social-links a {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.75);
  font-size: 16px;
  transition: all var(--transition);
}
.social-links a:hover {
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  color: #fff;
}

.newsletter-form {
  display: flex;
  gap: 0;
  margin-top: 4px;
}
.newsletter-form input {
  flex: 1;
  padding: 11px 14px;
  border: none;
  border-radius: 8px 0 0 8px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  background: rgba(255,255,255,0.1);
  color: #fff;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.45); }
.newsletter-form button {
  padding: 11px 18px;
  background: var(--secondary);
  color: #fff;
  border: none;
  border-radius: 0 8px 8px 0;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: background var(--transition);
}
.newsletter-form button:hover { background: var(--accent); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 24px;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  max-width: 1200px;
  margin: 0 auto;
}
.footer-bottom-bar {
  background: var(--footer-bg);
}

/* ===== PAGE HERO ===== */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, #1e3a5f 100%);
  padding: 64px 24px;
  text-align: center;
  color: #fff;
}
.page-hero h1 {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.page-hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== CONTENT PAGE ===== */
.content-section {
  padding: 72px 0;
}
.content-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
}
.content-wrap h2 {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  color: var(--primary);
  margin: 40px 0 14px;
}
.content-wrap h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary);
  margin: 28px 0 10px;
}
.content-wrap p {
  font-size: 15.5px;
  line-height: 1.85;
  color: #4a5568;
  margin-bottom: 16px;
}
.content-wrap ul {
  list-style: disc;
  padding-left: 22px;
  margin-bottom: 16px;
}
.content-wrap ul li {
  font-size: 15.5px;
  line-height: 1.8;
  color: #4a5568;
  margin-bottom: 6px;
}

/* ===== STATS ===== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 36px 0;
}
.stat-box {
  background: #f7f9ff;
  border-radius: 12px;
  padding: 24px 16px;
  text-align: center;
  border: 1px solid rgba(67,97,238,0.12);
}
.stat-box .stat-num {
  font-size: 32px;
  font-weight: 700;
  color: var(--secondary);
  display: block;
}
.stat-box .stat-label {
  font-size: 13px;
  color: #666;
  margin-top: 6px;
  display: block;
}

/* ===== CONTACT PAGE ===== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 72px 24px;
}
.contact-form-wrap h2, .contact-info-wrap h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 24px;
}

/* FORM STYLES */
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid rgba(18,38,63,0.12);
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  color: var(--primary);
  background: #fff;
  outline: none;
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--secondary);
}
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: var(--accent);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-required { color: var(--accent); margin-left: 2px; }

.contact-info-wrap .info-item {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  align-items: flex-start;
}
.contact-info-wrap .info-item i {
  color: var(--secondary);
  font-size: 18px;
  margin-top: 2px;
  width: 22px;
  flex-shrink: 0;
}
.contact-info-wrap .info-item div {
  font-size: 15px;
  line-height: 1.65;
  color: #4a5568;
}
.contact-info-wrap .info-item strong {
  display: block;
  color: var(--primary);
  margin-bottom: 2px;
}

/* ===== SERVICES PAGE ===== */
.services-full {
  padding: 72px 0;
  background: var(--bg);
}
.services-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
  align-items: start;
}
.service-detail:nth-child(even) { direction: rtl; }
.service-detail:nth-child(even) > * { direction: ltr; }
.service-detail img {
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
  aspect-ratio: 4/3;
}
.service-detail-text h2 {
  font-size: 26px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 14px;
}
.service-detail-text p {
  font-size: 15.5px;
  line-height: 1.8;
  color: #4a5568;
  margin-bottom: 12px;
}

/* big pricing table on services */
.pricing-table-section {
  background: #f7f9ff;
  padding: 72px 0;
}
.pricing-table-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.pricing-table-inner h2 {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 40px;
  text-align: center;
}
.pricing-cards-full {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ===== EMPLOYMENT PAGE ===== */
.jobs-section {
  padding: 72px 0;
  background: var(--bg);
}
.jobs-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.job-card {
  border: 2px solid rgba(67,97,238,0.12);
  border-radius: 14px;
  padding: 28px;
  margin-bottom: 24px;
  background: #fff;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.job-card:hover {
  border-color: var(--secondary);
  box-shadow: var(--shadow);
}
.job-card h3 { font-size: 19px; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.job-card .job-meta { font-size: 13px; color: #888; margin-bottom: 12px; }
.job-card .job-meta span { margin-right: 16px; }
.job-card p { font-size: 15px; color: #4a5568; line-height: 1.7; }

.application-section {
  background: #f7f9ff;
  padding: 72px 0;
}
.application-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}
.application-inner h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 32px;
}

/* ===== COOKIE BANNER ===== */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--primary);
  color: #fff;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.2);
  flex-wrap: wrap;
}
#cookie-banner p {
  font-size: 14px;
  line-height: 1.6;
  flex: 1;
  min-width: 200px;
  color: rgba(255,255,255,0.87);
  margin: 0;
}
#cookie-banner p a { color: #7fa5ff; text-decoration: underline; }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btns button {
  padding: 9px 20px;
  border: none;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
}
#cookie-accept { background: var(--secondary); color: #fff; }
#cookie-accept:hover { background: var(--accent); }
#cookie-necessary { background: rgba(255,255,255,0.12); color: #fff; }
#cookie-necessary:hover { background: rgba(255,255,255,0.22); }

/* ===== COOKIE PREFERENCES PAGE ===== */
.cookie-pref-section {
  padding: 72px 0;
}
.cookie-pref-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
}
.cookie-type-card {
  border: 2px solid rgba(67,97,238,0.1);
  border-radius: 12px;
  padding: 22px 24px;
  margin-bottom: 20px;
  background: #fff;
}
.cookie-type-card h3 { font-size: 17px; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.cookie-type-card p { font-size: 14px; color: #4a5568; line-height: 1.7; }
.cookie-type-card .cookie-required { font-size: 12px; color: var(--secondary); font-weight: 600; margin-top: 8px; }

/* ===== FADE IN ===== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== SECTION HEADINGS ===== */
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--secondary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .pricing-cards { grid-template-columns: 1fr 1fr; }
  .pricing-inner { flex-direction: column; }
  .pricing-left { flex: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .service-detail { grid-template-columns: 1fr; }
  .service-detail:nth-child(even) { direction: ltr; }
  .pricing-cards-full { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }

  .hero-inner { flex-direction: column; gap: 32px; }
  .hero-image { width: 100%; }

  .split-inner, .split-inner.reversed { flex-direction: column; }

  .icons-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .pricing-cards { grid-template-columns: 1fr; }
  .pricing-cards-full { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .contact-layout { grid-template-columns: 1fr; gap: 36px; padding: 48px 24px; }

  .mission-box { padding: 28px 22px; }

  #cookie-banner { flex-direction: column; align-items: flex-start; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .jobs-inner { padding: 0 16px; }
}

@media (max-width: 480px) {
  .hero-text h1 { font-size: 24px; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; text-align: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
