/* ========================================
   Rania H Consulting — Warm & Terracotta 2
   Dense, modern layout
   ======================================== */

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #C97B4B;
  --primary-dark: #A65E34;
  --primary-light: rgba(201, 123, 75, 0.1);
  --accent: #5B8C5A;
  --bg: #FDF8F4;
  --bg-card: #FFFFFF;
  --text: #3D3D3D;
  --text-light: #6B6B6B;
  --text-muted: #999;
  --bg-alt: #F5EDE6;
  --border: rgba(0, 0, 0, 0.06);
  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 4px 16px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 4px 24px rgba(0, 0, 0, 0.08);
  --transition: 0.25s ease;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 70px;
}

body {
  font-family: "Figtree", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background-color: var(--bg);
  line-height: 1.65;
  font-size: 15px;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

/* --- Utility --- */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 64px 0;
}

.section-alt {
  background-color: var(--bg-alt);
}

.section-title {
  text-align: center;
  font-size: 1.7rem;
  margin-bottom: 32px;
  color: var(--text);
  letter-spacing: -0.02em;
}

.section-title-left {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--text);
  letter-spacing: -0.02em;
}

.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 20px;
}

.section-header .section-title {
  text-align: left;
  margin-bottom: 0;
}

/* --- Marquee (Services) --- */
.marquee {
  overflow: hidden;
  padding: 4px 0 16px;
  touch-action: pan-y;
}

.marquee-inner {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marquee-scroll 40s linear infinite;
}

.marquee:hover .marquee-inner {
  animation-play-state: paused;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* --- Button Icons --- */
.btn svg {
  width: 15px;
  height: 15px;
  vertical-align: middle;
  display: inline-block;
  margin-top: -2px;
  margin-right: 6px;
  stroke-width: 2.5;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 11px 26px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  letter-spacing: 0.01em;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background-color var(--transition);
  text-align: center;
  position: relative;
}

.btn:active {
  transform: translateY(3px) !important;
}

.btn-primary {
  background: linear-gradient(160deg, #D4895A 0%, var(--primary) 100%);
  color: #fff;
  border: 1px solid var(--primary-dark);
  box-shadow: 3px 4px 0 rgba(166, 94, 52, 0.55);
}

.btn-primary:hover {
  background: linear-gradient(160deg, #D4895A 0%, var(--primary) 100%);
  color: #fff;
  transform: translateY(-2px) translateX(-1px);
  box-shadow: 5px 6px 0 rgba(166, 94, 52, 0.55);
}

.btn-primary:active {
  transform: translateY(2px) translateX(2px) !important;
  box-shadow: 1px 1px 0 rgba(166, 94, 52, 0.55);
}

.btn-outline {
  background: var(--bg-card);
  color: var(--primary);
  border: 1px solid var(--primary-dark);
  box-shadow: 3px 4px 0 rgba(166, 94, 52, 0.55);
}

.btn-outline:hover {
  background: var(--bg-card);
  color: var(--primary-dark);
  transform: translateY(-2px) translateX(-1px);
  box-shadow: 5px 6px 0 rgba(166, 94, 52, 0.55);
}

.btn-outline:active {
  transform: translateY(2px) translateX(2px) !important;
  box-shadow: 1px 1px 0 rgba(166, 94, 52, 0.55);
}

.btn-portal {
  background: linear-gradient(160deg, #D4895A 0%, var(--primary) 100%);
  color: #fff;
  padding: 7px 18px;
  border-radius: var(--radius);
  font-size: 0.85rem;
  border: 1px solid var(--primary-dark);
  box-shadow: 3px 3px 0 rgba(166, 94, 52, 0.55);
}

.btn-portal:hover {
  color: #fff;
  transform: translateY(-2px) translateX(-1px);
  box-shadow: 5px 5px 0 rgba(166, 94, 52, 0.55);
}

.btn-portal:active {
  color: #fff;
  transform: translateY(2px) translateX(2px) !important;
  box-shadow: 1px 1px 0 rgba(166, 94, 52, 0.55);
}

/* --- Navbar --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(253, 248, 244, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.06);
}

.nav-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo:hover {
  color: var(--primary-dark);
}

.nav-logo span {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--primary);
  letter-spacing: -0.01em;
}

.nav-logo-img {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 4px rgba(166, 94, 52, 0.25));
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 24px;
}

.nav-links a {
  color: var(--text);
  font-weight: 500;
  font-size: 0.88rem;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links .btn-portal:hover {
  color: #fff;
}

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--text);
  position: relative;
  transition: background-color var(--transition);
}

.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background-color: var(--text);
  transition: transform var(--transition);
}

.hamburger::before { top: -6px; }
.hamburger::after { top: 6px; }

.nav-toggle.active .hamburger { background-color: transparent; }
.nav-toggle.active .hamburger::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle.active .hamburger::after { transform: translateY(-6px) rotate(-45deg); }

/* --- Hero --- */
.hero {
  padding: 120px 0 56px;
  background: linear-gradient(170deg, var(--bg) 0%, var(--bg-alt) 100%);
}

.hero-inner {
  display: block;
}

.hero h1 {
  font-size: 2.4rem;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 16px;
}

.hero-sub {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  gap: 12px;
}

.hero-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.hero-stat {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 16px 18px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.hero-stat-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--primary);
  margin-bottom: 4px;
}

.hero-stat-value {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}

/* --- Intro Strip --- */
.intro-strip {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.intro-item h4 {
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--primary);
  margin-bottom: 8px;
}

.intro-item p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.7;
}

.scroll-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  width: 300px;
  flex-shrink: 0;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}

.scroll-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.scroll-card-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  background: var(--primary-light);
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.scroll-card h3 {
  font-size: 1.05rem;
  margin-bottom: 12px;
  color: var(--text);
  line-height: 1.35;
}

.scroll-card ul {
  list-style: none;
  padding: 0;
}

.scroll-card ul li {
  font-size: 0.88rem;
  color: var(--text-light);
  padding: 3px 0 3px 16px;
  position: relative;
  line-height: 1.6;
}

.scroll-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--primary);
}

.scroll-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 8px;
}

.scroll-card-cta {
  background: linear-gradient(135deg, var(--bg-alt) 0%, #f0e4d8 100%);
  border-color: var(--primary);
  border-width: 1.5px;
}

.highlight-text {
  font-weight: 700;
  color: var(--primary);
  font-size: 0.95rem;
}

/* --- Discovery Call Banner --- */
.discovery-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 40px 0;
  box-shadow:
    inset 0 6px 12px rgba(0, 0, 0, 0.15),
    inset 0 -6px 12px rgba(0, 0, 0, 0.15);
}

.discovery-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.discovery-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
}

.discovery-text h2 {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.discovery-text p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  max-width: 520px;
}

.discovery-inner .btn-primary {
  background: #fff;
  color: var(--primary-dark);
  white-space: nowrap;
  flex-shrink: 0;
  font-size: 0.92rem;
  padding: 12px 28px;
  box-shadow: 3px 4px 0 rgba(0, 0, 0, 0.2);
}

.discovery-inner .btn-primary:hover {
  background: var(--bg-alt);
  color: var(--primary-dark);
  transform: translateY(-2px) translateX(-1px);
  box-shadow: 5px 6px 0 rgba(0, 0, 0, 0.2);
}

.discovery-inner .btn-primary:active {
  transform: translateY(2px) translateX(2px) !important;
  box-shadow: 1px 1px 0 rgba(0, 0, 0, 0.2);
}

/* --- Booking Section --- */
.book-header {
  text-align: center;
  margin-bottom: 36px;
}

.book-sub {
  color: var(--text-light);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.65;
}

.booking-widget-wrap {
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

#cal-embed {
  width: 100%;
  min-height: 660px;
}

/* --- Disclaimer Banner --- */
.disclaimer-banner {
  padding: 32px 0;
  background-color: var(--text);
}

.disclaimer-inner {
  display: flex;
  align-items: baseline;
  gap: 24px;
}

.disclaimer-inner h3 {
  color: var(--primary);
  font-size: 0.9rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.disclaimer-inner p {
  color: #bbb;
  font-size: 0.88rem;
  line-height: 1.65;
}

/* --- About Section --- */
.about-layout {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 720px;
  margin: 0 auto;
}

.about-photo-col {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 320px;
}

.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8px 0;
}

.about-heading {
  font-size: 1.5rem;
  margin-top: 8px;
  margin-bottom: 16px;
  color: var(--text);
  letter-spacing: -0.02em;
}

.about-text-col p {
  font-size: 0.95rem;
  margin-bottom: 14px;
  line-height: 1.7;
}

.about-knows {
  background: var(--bg-alt);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin: 8px 0 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-knows p {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  margin: 0;
  line-height: 1.5;
  letter-spacing: -0.01em;
}

/* --- Dual Layout (Investment + How It Works) --- */
.dual-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.investment-card {
  background: var(--bg-card);
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.investment-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 8px;
}

.investment-top h3 {
  font-size: 1.05rem;
  color: var(--text);
}

.price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.02em;
}

.investment-card > p {
  color: var(--text-light);
  font-size: 0.88rem;
  margin-bottom: 16px;
}

.investment-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
}

.investment-meta span {
  font-size: 0.85rem;
  color: var(--text-light);
  padding-left: 16px;
  position: relative;
}

.investment-meta span::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.8rem;
}

.limited-spots {
  font-weight: 600;
  color: var(--primary);
  font-size: 0.88rem;
}

/* --- Steps List --- */
.steps-wrap {
  max-width: 520px;
  margin: 0 auto;
}

.steps-list {
  list-style: none;
  padding: 0;
  counter-reset: none;
}

.steps-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.steps-list li:last-child {
  border-bottom: none;
}

.step-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--primary);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.steps-list strong {
  font-size: 0.92rem;
  display: block;
  line-height: 1.4;
}

.step-detail {
  display: block;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* --- Pricing --- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

.pricing-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-card.pricing-featured {
  border-color: var(--primary);
  box-shadow: 0 4px 24px rgba(201, 123, 75, 0.18);
  position: relative;
}

.pricing-card-top {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pricing-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  background: var(--primary-light);
  padding: 3px 10px;
  border-radius: 20px;
  align-self: flex-start;
}

.pricing-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}

.pricing-amount {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.03em;
  line-height: 1;
}

.pricing-free .pricing-amount {
  font-size: 1.5rem;
}

.pricing-desc {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.65;
  flex: 1;
}

.pricing-card .btn {
  width: 100%;
  text-align: center;
  margin-top: auto;
}

@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
}

/* --- How It Works + FAQ Grid --- */
.hiw-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.hiw-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 28px 28px 20px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.hiw-card-header {
  margin-bottom: 20px;
}

.hiw-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  background: var(--primary-light);
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
}

.hiw-card-header h2 {
  font-size: 1.25rem;
  color: var(--text);
  letter-spacing: -0.02em;
}

/* Tighten steps inside the card */
.hiw-card .steps-list li {
  padding: 10px 0;
}

.hiw-card .faq-list {
  max-width: none;
  margin: 0;
}

/* --- FAQ --- */
.faq-list {
  max-width: 680px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  font-family: inherit;
  line-height: 1.5;
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--primary);
}

.faq-question::after {
  content: "+";
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--primary);
  margin-left: 16px;
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-question[aria-expanded="true"]::after {
  content: "\2212";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer.open {
  max-height: 160px;
}

.faq-answer p {
  padding: 0 0 16px;
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* --- Contact --- */
.contact-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.contact-email a {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary);
}

.contact-email a:hover {
  color: var(--primary-dark);
}

.contact-note {
  color: var(--text-light);
  font-size: 0.92rem;
  margin-top: 4px;
}

/* --- Footer --- */
.footer {
  background-color: #2A2220;
  color: #ccc;
  padding: 48px 0 28px;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 24px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo {
  width: 40px;
  height: 40px;
  opacity: 0.9;
}

.footer-brand-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.01em;
}

.footer-nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-nav a {
  font-size: 0.85rem;
  color: #999;
  font-weight: 500;
  transition: color var(--transition);
}

.footer-nav a:hover {
  color: var(--primary);
}

.footer-bottom {
  text-align: center;
}

.footer-disclaimer {
  font-size: 0.8rem;
  color: #666;
  line-height: 1.65;
  margin-bottom: 10px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.footer-copy {
  font-size: 0.78rem;
  color: #555;
}

@media (max-width: 600px) {
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .footer-nav {
    justify-content: flex-start;
    gap: 16px;
  }
}


/* --- Responsive --- */
@media (max-width: 900px) {
  .about-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-photo-col {
    min-height: 260px;
  }

  .dual-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hiw-faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-toggle { display: block; }

  .nav-links {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background-color: rgba(253, 248, 244, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    border-bottom: 1px solid var(--border);
  }

  .nav-links.open {
    max-height: 360px;
    padding: 12px 0;
  }

  .nav-links li { width: 100%; text-align: center; }
  .nav-links a { display: block; padding: 10px 24px; }
  .nav-links .btn-portal { margin: 8px 24px; display: inline-block; width: auto; }

  .hero { padding: 100px 0 40px; }
  .hero h1 { font-size: 1.8rem; }

  .hero-stat-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .intro-grid { grid-template-columns: 1fr; gap: 16px; }

  .disclaimer-inner { flex-direction: column; gap: 8px; }

  .contact-layout { flex-direction: column; align-items: flex-start; gap: 16px; }

  .discovery-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .discovery-inner .btn-primary { width: 100%; text-align: center; }

  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { white-space: nowrap; }

  .marquee { overflow: visible; padding: 0; }
  .marquee-inner {
    flex-direction: column;
    width: 100%;
    animation: none !important;
    transform: none !important;
    padding: 0 24px;
    gap: 12px;
  }
  .scroll-card { width: 100%; }
  .marquee-inner .scroll-card[aria-hidden="true"] { display: none; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.55rem; }
  .section { padding: 48px 0; }
  .section-title { font-size: 1.4rem; }
  .section-title-left { font-size: 1.3rem; }
  .hero-stat-grid { grid-template-columns: 1fr; }
}
