/* ===================================================
   GroupFlow Academy — free-dream-189.css
   =================================================== */

:root {
  --purple: #4B2D7F;
  --light-purple: #E8E0F5;
  --blue: #2563EB;
  --dark-blue: #1D4ED8;
  --off-white: #F9F9F7;
  --near-black: #1A1A1A;
  --grey-50: #E5E5E5;
  --grey-25: #F2F2F2;
  --other-grey: #EFEFED;
  --white: #ffffff;
  --font-main: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Meiryo', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-main);
  background: var(--off-white);
  color: var(--near-black);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ── LAYOUT ── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.grid-layout { display: grid; grid-template-columns: repeat(12, 1fr); gap: 1rem; }
.col-6 { grid-column: span 6; }
.col-4 { grid-column: span 4; }
.col-3 { grid-column: span 3; }
.col-full { grid-column: 1 / -1; }

/* ── HEADER ── */
.site-header {
  position: fixed;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1000;
  display: flex;
  gap: 4px;
  align-items: stretch;
}

.header-logo-block {
  background: var(--purple);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  height: 4rem;
}

.header-logo-block a { display: flex; align-items: center; }
.header-logo-block svg { height: 1.5rem; width: auto; }

.header-nav-block {
  background: var(--purple);
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 4rem;
}

.nav-link {
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  position: relative;
  padding-bottom: 2px;
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: currentColor;
  transform: translateX(101%);
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1);
}

.nav-link:hover::after { transform: translateX(0); }

/* Top-right contacts */
.header-contacts {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 1000;
  display: flex;
  gap: 4px;
}

.header-contact-btn {
  height: 4rem;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  transition: background 0.3s ease;
  white-space: nowrap;
}

.header-contact-btn.email { background: var(--blue); }
.header-contact-btn.email:hover { background: var(--dark-blue); }
.header-contact-btn.phone { background: var(--near-black); }
.header-contact-btn.phone:hover { background: #333; }

/* Mobile menu toggle */
.mobile-menu-btn {
  display: none;
  background: var(--purple);
  border: none;
  width: 4rem;
  height: 4rem;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Mobile nav overlay */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--purple);
  z-index: 900;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-nav-overlay.open { opacity: 1; }
.mobile-nav-overlay a { color: var(--white); font-size: 1.5rem; font-weight: 500; }
.mobile-nav-close { position: absolute; top: 1.5rem; right: 1.5rem; background: none; border: none; color: var(--white); font-size: 2rem; }

/* ── PAGE CONTENT ── */
.page-content { padding-top: 7rem; }

/* ── HERO ── */
.hero-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  margin-top: -7rem;
  margin-bottom: 9rem;
}

.hero-text {
  padding: 2rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 8rem;
}

.hero-text h1 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.05;
  max-width: 20ch;
  font-weight: 700;
}

.hero-text p {
  margin-top: 2rem;
  max-width: 30ch;
  font-size: 1rem;
  line-height: 1.5;
}

.hero-ctas {
  display: flex;
  gap: 0.5rem;
  margin-top: 5rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1rem;
  background: var(--purple);
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  border: none;
  transition: background 0.25s ease;
  gap: 0.5rem;
}
.btn-primary:hover { background: #3a2063; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1rem;
  background: transparent;
  color: var(--near-black);
  font-size: 14px;
  font-weight: 500;
  border: 2px solid var(--grey-50);
  transition: background 0.25s ease;
}
.btn-secondary:hover { background: var(--grey-25); }

.hero-copyright { font-size: 11px; margin-top: auto; padding-top: 2rem; }

.hero-image {
  background: var(--near-black);
  overflow: hidden;
  position: relative;
}

.hero-slider { width: 100%; height: 100%; position: relative; }
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 50%; }

/* ── SECTIONS COMMON ── */
.section { padding: 5rem 3rem; margin-bottom: 2rem; }
.section-px { padding-left: 3rem; padding-right: 3rem; }

/* ── CENTERED HEADLINE ── */
.centered-headline-section {
  padding: 3rem 3rem 5rem;
  margin-bottom: 4rem;
}

.centered-headline {
  font-size: clamp(1.8rem, 3.5vw, 3.2rem);
  line-height: 1.1;
  text-align: center;
  max-width: 24ch;
  margin: 0 auto;
  font-weight: 700;
}

/* ── TEXT BLOCK ── */
.text-block-section {
  padding: 3rem;
  margin-bottom: 5rem;
}

.section-rule {
  border: none;
  border-top: 1px solid var(--grey-50);
  margin-bottom: 2.5rem;
}

.text-block-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }

.text-block-heading {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  line-height: 1.1;
  max-width: 24ch;
  font-weight: 700;
}

.text-block-body { font-size: 14px; line-height: 1.4; }
.text-block-body p:not(:last-child) { margin-bottom: 1em; }
.text-block-body a { color: var(--blue); }
.text-block-body ul { list-style: disc; padding-left: 1.5em; margin: 1em 0; }
.text-block-body li { margin: 0.4em 0; }

/* ── IMAGE STRIP ── */
.image-strip-section { overflow: hidden; margin-bottom: 5rem; }
.image-strip { display: flex; gap: 1rem; padding: 0 3rem; overflow-x: auto; scroll-snap-type: x mandatory; }
.image-strip::-webkit-scrollbar { display: none; }

.image-strip-item {
  flex-shrink: 0;
  width: 60%;
  scroll-snap-align: start;
}

.image-strip-item .img-wrap { position: relative; padding-top: 66.5%; overflow: hidden; }
.image-strip-item .img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

/* ── FEATURE (sticky image) ── */
.feature-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 3rem;
  margin-bottom: 5rem;
  align-items: start;
}

.feature-image {
  position: sticky;
  top: 25%;
}

.feature-image .img-wrap { position: relative; padding-top: 56%; overflow: hidden; }
.feature-image .img-wrap img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

.feature-text { padding-top: 1rem; }
.feature-text h3 { font-size: clamp(1.4rem, 2vw, 1.8rem); line-height: 1.1; margin-bottom: 1.5rem; font-weight: 700; }
.feature-text p { font-size: 14px; line-height: 1.4; }
.feature-text p:not(:last-child) { margin-bottom: 1em; }
.feature-text .btn-primary { margin-top: 2rem; }

/* ── SERVICES LIST ── */
.services-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 3rem;
  margin-bottom: 5rem;
  border-top: 1px solid var(--grey-50);
  padding-top: 2rem;
}

.services-list { display: flex; flex-direction: column; gap: 0; }
.services-list-header { font-size: clamp(1.4rem, 2vw, 1.8rem); font-weight: 700; margin-bottom: 2rem; }

.service-link {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--purple);
  font-weight: 500;
  display: block;
  padding: 0.75rem 0;
  border-top: 1px solid var(--grey-50);
  transition: opacity 0.2s ease;
  position: relative;
}

.service-link:last-child { border-bottom: 1px solid var(--grey-50); }
.service-link.inactive { opacity: 0.25; }
.service-link:hover { opacity: 1 !important; }

.service-link-desc {
  font-size: 14px;
  max-width: 34ch;
  margin-top: 0.3rem;
  color: var(--near-black);
}

.services-image-col { position: relative; }
.services-image-col .img-wrap { position: relative; padding-top: 100%; overflow: hidden; }
.services-image-col .img-wrap img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* ── FAQ ── */
.faq-section {
  padding: 3rem;
  margin-bottom: 5rem;
  border-top: 1px solid var(--grey-50);
  padding-top: 2rem;
}

.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.faq-heading { font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 700; }

.faq-list { margin-top: -1rem; }
.faq-item { border-bottom: 1px solid var(--grey-50); }
.faq-item:first-child { border-top: none; }

.faq-btn {
  width: 100%;
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 500;
  color: var(--near-black);
  transition: opacity 0.2s ease;
}

.faq-btn:hover { opacity: 0.5; }

.faq-icon {
  flex-shrink: 0;
  width: 13px;
  height: 13px;
  position: relative;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--near-black);
  transition: transform 0.3s ease;
}

.faq-icon::before { top: 50%; left: 0; right: 0; height: 2px; margin-top: -1px; }
.faq-icon::after { left: 50%; top: 0; bottom: 0; width: 2px; margin-left: -1px; }

.faq-item.open .faq-icon::after { transform: rotate(90deg); }

.faq-body {
  height: 0;
  overflow: hidden;
  transition: height 0.35s cubic-bezier(0.16,1,0.3,1);
}

.faq-body-inner { padding-bottom: 1.5rem; font-size: 14px; line-height: 1.5; }
.faq-body-inner p:not(:last-child) { margin-bottom: 0.8em; }

/* ── TESTIMONIALS ── */
.testimonials-section { padding: 0 3rem 5rem; margin-bottom: 0; overflow: hidden; }
.testimonials-heading { font-size: clamp(1.4rem, 2vw, 1.8rem); font-weight: 700; margin-bottom: 2rem; }

.testimonials-slider { display: flex; gap: 1rem; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 1rem; }
.testimonials-slider::-webkit-scrollbar { display: none; }

.testimonial-card {
  flex-shrink: 0;
  width: min(380px, 85vw);
  background: var(--light-purple);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 26rem;
  position: relative;
  scroll-snap-align: start;
}

.testimonial-quote {
  font-size: clamp(1rem, 1.5vw, 1.375rem);
  font-weight: 500;
  max-width: 80%;
  color: var(--purple);
  line-height: 1.4;
}

.testimonial-author { font-size: 14px; color: var(--purple); font-weight: 500; margin-top: 1.5rem; }

.quote-mark-svg {
  position: absolute;
  right: 1rem;
  top: 1rem;
  opacity: 0.5;
}

.testimonial-dots {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--grey-50);
  cursor: pointer;
  transition: background 0.2s ease;
}

.dot.active { background: var(--purple); }

/* ── CTA BAND ── */
.cta-band {
  background: var(--other-grey);
  padding: 3rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  margin-bottom: 5rem;
}

.cta-band-content { max-width: 800px; }
.cta-band-content h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 700; margin-bottom: 1rem; }
.cta-band-content p { font-size: 14px; max-width: 35ch; }
.cta-band-btns { display: flex; gap: 0.5rem; margin-top: 2rem; flex-wrap: wrap; }

/* ── FOOTER ── */
.site-footer {
  background: var(--purple);
  color: var(--white);
  padding: 3rem;
  min-height: 50vh;
  display: flex;
  flex-direction: column;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  flex: 1;
  align-content: center;
  margin-bottom: 3rem;
}

.footer-col-label {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 1rem;
  opacity: 0.7;
}

.footer-links { display: flex; flex-direction: column; gap: 0.75rem; }

.footer-link {
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  position: relative;
  display: inline-block;
  padding-bottom: 1px;
}

.footer-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--white);
  transform: translateX(101%);
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1);
}

.footer-link:hover::after { transform: translateX(0); }

.footer-contact { font-size: 14px; line-height: 1.5; }
.footer-contact a { color: var(--white); }
.footer-contact a:hover { opacity: 0.7; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 1.5rem;
  font-size: 10px;
  opacity: 0.6;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ── SOCIAL LINKS ── */
.social-links { display: flex; gap: 0.75rem; margin-top: 1rem; }
.social-link { color: var(--white); font-size: 14px; opacity: 0.8; transition: opacity 0.2s ease; }
.social-link:hover { opacity: 1; }

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--near-black);
  color: var(--white);
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  z-index: 9999;
  flex-wrap: wrap;
  transform: translateY(0);
  transition: transform 0.4s ease;
}

.cookie-banner.hidden { transform: translateY(110%); }
.cookie-banner p { font-size: 13px; flex: 1; min-width: 200px; line-height: 1.4; }
.cookie-banner a { color: var(--light-purple); text-decoration: underline; }
.cookie-banner-btns { display: flex; gap: 0.5rem; flex-shrink: 0; }

/* ── PAGE BANNER (inner pages) ── */
.page-banner {
  background: var(--purple);
  color: var(--white);
  padding: 8rem 3rem 4rem;
  margin-bottom: 4rem;
}

.page-banner h1 { font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 700; line-height: 1.05; }
.page-banner p { font-size: 14px; margin-top: 1rem; max-width: 50ch; opacity: 0.85; }

/* ── INNER PAGE CONTENT ── */
.inner-content {
  padding: 0 3rem 5rem;
  max-width: 900px;
}

.inner-content h2 { font-size: 1.5rem; font-weight: 700; margin: 2rem 0 0.75rem; }
.inner-content h3 { font-size: 1.1rem; font-weight: 600; margin: 1.5rem 0 0.5rem; }
.inner-content p { font-size: 15px; line-height: 1.6; margin-bottom: 1em; }
.inner-content ul { list-style: disc; padding-left: 1.5em; margin: 1em 0; }
.inner-content li { font-size: 15px; line-height: 1.6; margin: 0.4em 0; }
.inner-content a { color: var(--blue); }

/* ── PLANS PAGE ── */
.plans-intro { padding: 0 3rem 3rem; max-width: 700px; }
.plans-intro p { font-size: 15px; line-height: 1.6; }

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 0 3rem 5rem;
}

.plan-card {
  border: 2px solid var(--grey-50);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: var(--white);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.plan-card:hover { border-color: var(--purple); transform: translateY(-3px); }
.plan-card.featured { border-color: var(--purple); background: var(--off-white); }

.plan-badge {
  display: inline-block;
  background: var(--purple);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.plan-name { font-size: 1.3rem; font-weight: 700; }
.plan-price { font-size: 2.5rem; font-weight: 700; color: var(--purple); line-height: 1; }
.plan-price span { font-size: 0.9rem; font-weight: 400; color: var(--near-black); }
.plan-desc { font-size: 13px; color: #555; line-height: 1.5; }

.plan-features { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; flex: 1; }
.plan-features li { font-size: 14px; display: flex; align-items: flex-start; gap: 0.5rem; }
.plan-features li i { color: var(--purple); margin-top: 3px; flex-shrink: 0; }

.plan-cta { margin-top: auto; }

/* ── CONTACT FORM ── */
.contact-section { padding: 0 3rem 5rem; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }

.contact-info h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 1.5rem; }
.contact-info p { font-size: 15px; line-height: 1.6; margin-bottom: 1em; }
.contact-info address { font-style: normal; font-size: 14px; line-height: 1.7; }
.contact-info a { color: var(--blue); }

.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.35rem; }
.form-group label { font-size: 13px; font-weight: 500; }

.form-group input,
.form-group textarea,
.form-group select {
  border: 1px solid var(--grey-50);
  background: var(--white);
  padding: 0.75rem 1rem;
  font-family: inherit;
  font-size: 14px;
  color: var(--near-black);
  outline: none;
  transition: border-color 0.2s ease;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--purple); }

.form-group textarea { min-height: 120px; resize: vertical; }
.form-note { font-size: 12px; color: #888; margin-top: -0.5rem; }

/* ── COMPANY INFO PAGE ── */
.about-section {
  padding: 0 3rem 5rem;
}

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; margin-bottom: 4rem; }
.about-img .img-wrap { position: relative; padding-top: 70%; overflow: hidden; }
.about-img .img-wrap img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.about-text h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 1.25rem; }
.about-text p { font-size: 15px; line-height: 1.65; margin-bottom: 1em; }

.team-section { padding: 2rem 3rem 5rem; border-top: 1px solid var(--grey-50); }
.team-section h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 2rem; }

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }

.team-card { display: flex; flex-direction: column; gap: 0.75rem; }
.team-card .img-wrap { position: relative; padding-top: 100%; overflow: hidden; background: var(--grey-25); }
.team-card .img-wrap img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.team-card h3 { font-size: 1rem; font-weight: 600; }
.team-card p { font-size: 13px; color: #666; }

.values-section { padding: 2rem 3rem 5rem; border-top: 1px solid var(--grey-50); }
.values-section h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 2rem; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }

.value-item { padding: 1.5rem; border-top: 3px solid var(--purple); }
.value-item h3 { font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; }
.value-item p { font-size: 13px; color: #555; line-height: 1.5; }

/* ── UTILITIES ── */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }
.full-bleed-img { width: 100%; overflow: hidden; margin-bottom: 5rem; }
.full-bleed-img img { width: 100%; height: 400px; object-fit: cover; object-position: 50% 50%; }

/* ── RESPONSIVE ── */
@media (max-width: 1023px) {
  .header-nav-block { display: none; }
  .header-contacts { display: none; }
  .mobile-menu-btn { display: flex; }

  .hero-section { grid-template-columns: 1fr; min-height: auto; }
  .hero-image { order: -1; height: 60vw; }
  .hero-slider { height: 100%; }
  .hero-slide { position: absolute; }
  .hero-text { padding: 2rem 1.5rem; }
  .hero-text h1 { font-size: 2rem; }
  .hero-ctas { margin-top: 2rem; }

  .section, .section-px { padding-left: 1.5rem; padding-right: 1.5rem; }
  .centered-headline-section { padding: 2rem 1.5rem 3rem; }
  .text-block-section { padding: 1.5rem; }
  .text-block-grid { grid-template-columns: 1fr; }

  .image-strip { padding: 0 1.5rem; }
  .image-strip-item { width: 80%; }

  .feature-section { grid-template-columns: 1fr; padding: 1.5rem; }
  .feature-image { position: static; }

  .services-section { grid-template-columns: 1fr; padding: 1.5rem; }
  .services-image-col { display: none; }

  .faq-section { padding: 1.5rem; }
  .faq-grid { grid-template-columns: 1fr; }

  .testimonials-section { padding: 0 1.5rem 3rem; }

  .cta-band { padding: 2rem 1.5rem; gap: 2rem; }

  .site-footer { padding: 2rem 1.5rem; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }

  .plans-grid { grid-template-columns: 1fr; padding: 0 1.5rem 3rem; }
  .plans-intro { padding: 0 1.5rem 2rem; }

  .contact-section { padding: 0 1.5rem 3rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }

  .about-section { padding: 0 1.5rem 3rem; }
  .about-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; }

  .page-banner { padding: 7rem 1.5rem 2.5rem; }

  .inner-content { padding: 0 1.5rem 3rem; }

  .site-header { top: 0.75rem; left: 0.75rem; }
}

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ── ANIMATIONS ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-in { animation: fadeInUp 0.6s ease forwards; }
.fade-in-delay { animation: fadeInUp 0.6s 0.2s ease both; }
