/* ============================================
   GoRentals.pk — Marketing Site Styles
   Warm editorial aesthetic
   ============================================ */

:root {
  /* Color palette */
  --cream: #FAF7F2;
  --cream-deep: #F2EDE3;
  --forest: #1A4D3A;
  --forest-light: #2D6B52;
  --amber: #D97706;
  --amber-light: #F59E0B;
  --charcoal: #2D2A26;
  --charcoal-soft: #4A453E;
  --taupe: #8B7355;
  --taupe-light: #B8A893;
  --paper-line: #E5DCC8;
  --paper-shadow: rgba(45, 42, 38, 0.08);

  /* Typography */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Manrope', -apple-system, system-ui, sans-serif;

  /* Spacing scale */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --space-9: 6rem;
  --space-10: 8rem;

  /* Layout */
  --max-content: 1180px;
  --max-prose: 720px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 999px;
}

/* ============================================
   Reset + base
   ============================================ */

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--charcoal);
  background: var(--cream);
  background-image:
    radial-gradient(ellipse 1200px 600px at 50% -10%, rgba(217, 119, 6, 0.04), transparent 60%),
    repeating-linear-gradient(0deg, transparent, transparent 32px, rgba(139, 115, 85, 0.012) 32px, rgba(139, 115, 85, 0.012) 33px);
  font-feature-settings: 'ss01', 'cv11';
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; border: none; background: none; }

/* ============================================
   Typography
   ============================================ */

.display {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-variation-settings: 'SOFT' 50, 'WONK' 0;
}

h1, .h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--charcoal);
}

h2, .h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--charcoal);
}

h3, .h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--charcoal);
}

h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.05rem;
  line-height: 1.4;
}

p { color: var(--charcoal-soft); }
strong { font-weight: 600; color: var(--charcoal); }

.italic-serif {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
  color: var(--amber);
  margin-bottom: var(--space-4);
}

/* ============================================
   Layout primitives
   ============================================ */

.container {
  width: 100%;
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 0 var(--space-5);
}

@media (min-width: 768px) {
  .container { padding: 0 var(--space-6); }
}

.section { padding: var(--space-9) 0; }
.section-sm { padding: var(--space-7) 0; }
.section-lg { padding: var(--space-10) 0; }

@media (max-width: 768px) {
  .section { padding: var(--space-7) 0; }
  .section-lg { padding: var(--space-8) 0; }
}

/* ============================================
   Header & Navigation
   ============================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--paper-line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4) 0;
  gap: var(--space-5);
}

.brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--charcoal);
}

.brand-mark {
  width: 36px;
  height: 36px;
  background: var(--cream-deep);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.brand-mark img {
  width: 130%;
  height: 130%;
  object-fit: contain;
  object-position: center 30%;
}

.brand-domain {
  color: var(--amber);
  font-style: italic;
  font-weight: 400;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  list-style: none;
}

.nav-links a {
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--charcoal-soft);
  position: relative;
  transition: color 0.18s;
}

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

.nav-links a.active {
  color: var(--forest);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: var(--amber);
  border-radius: 2px;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--forest);
  color: var(--cream);
  padding: 0.6rem 1.1rem;
  border-radius: var(--radius-pill);
  font-size: 0.92rem;
  font-weight: 600;
  transition: transform 0.18s, background 0.18s;
}

.nav-cta:hover {
  background: var(--forest-light);
  transform: translateY(-1px);
}

.nav-cta svg { width: 16px; height: 16px; }

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--charcoal);
}

.menu-toggle:hover { background: var(--cream-deep); }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .menu-toggle { display: flex; }
  .nav-cta { padding: 0.5rem 0.9rem; font-size: 0.85rem; }

  .nav-links.open {
    display: flex;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--cream);
    padding: var(--space-5);
    border-bottom: 1px solid var(--paper-line);
    box-shadow: 0 12px 32px var(--paper-shadow);
    gap: var(--space-4);
    align-items: stretch;
  }

  .nav-links.open a {
    padding: var(--space-3) 0;
    font-size: 1.05rem;
    border-bottom: 1px solid var(--paper-line);
  }

  .nav-links.open a:last-child { border-bottom: none; }
}

/* ============================================
   Buttons
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-pill);
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}

.btn svg { width: 18px; height: 18px; }

.btn-primary {
  background: var(--forest);
  color: var(--cream);
  box-shadow: 0 4px 14px rgba(26, 77, 58, 0.25);
}

.btn-primary:hover {
  background: var(--forest-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(26, 77, 58, 0.32);
}

.btn-amber {
  background: var(--amber);
  color: var(--cream);
  box-shadow: 0 4px 14px rgba(217, 119, 6, 0.28);
}

.btn-amber:hover {
  background: var(--amber-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(217, 119, 6, 0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--paper-line);
}

.btn-ghost:hover {
  background: var(--cream-deep);
  border-color: var(--taupe-light);
}

.btn-large {
  padding: 1rem 1.8rem;
  font-size: 1.05rem;
}

/* ============================================
   Hero
   ============================================ */

.hero {
  padding: 20px 0 60px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: var(--space-9);
  align-items: center;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: var(--space-7);
  }
  .hero { padding: var(--space-3) 0 var(--space-7); }
}

@media (max-width: 767px) {
  .hero-visual { display: none; }
}

.hero-content { max-width: 580px; }

.hero h1 {
  margin-bottom: var(--space-5);
}

.hero h1 .accent {
  font-style: italic;
  color: var(--forest);
}

.hero-lede {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--charcoal-soft);
  margin-bottom: var(--space-6);
  max-width: 540px;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  flex-wrap: wrap;
  padding-top: var(--space-5);
  border-top: 1px solid var(--paper-line);
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.88rem;
  color: var(--charcoal-soft);
}

.hero-trust-item svg {
  width: 18px;
  height: 18px;
  color: var(--forest);
  flex-shrink: 0;
}

/* Hero visual — phone mockup */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-frame {
  width: 340px;
  height: 620px;
  background: #1a1a1a;
  border-radius: 50px;
  padding: 12px;
  box-shadow:
    0 30px 60px -15px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 2;
}

.phone-screen {
  background: #ECE5DD;
  border-radius: 38px;
  overflow: hidden;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.phone-header {
  background: #075E54;
  color: #fff;
  height: 56px;
  padding: 8px 12px;
  box-sizing: content-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-shrink: 0;
}

.phone-header-left {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.phone-back {
  width: 20px;
  height: 20px;
  color: #fff;
  flex-shrink: 0;
}

.phone-avatar {
  width: 36px;
  height: 36px;
  background: #FAF7F2;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.phone-avatar img {
  width: 130%;
  height: 130%;
  object-fit: contain;
  object-position: center 30%;
}

.phone-meta {
  min-width: 0;
  padding-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.phone-name {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
}

.phone-name + small {
  font-size: 12px;
  line-height: 1.1;
  color: rgba(255, 255, 255, 0.75);
}

.phone-header-icons {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.phone-header-icons svg {
  width: 20px;
  height: 20px;
  color: #fff;
}

.phone-chat {
  flex: 1;
  background: #ECE5DD;
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow: hidden;
}

.chat-bubble {
  max-width: 78%;
  padding: 4px 8px 4px 8px;
  font-size: 13.5px;
  line-height: 1.35;
  font-family: var(--font-body);
  color: #111b21;
  box-shadow: 0 1px 0.5px rgba(0, 0, 0, 0.13);
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(8px);
  animation: bubble-in 0.35s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.chat-bubble[data-msg="1"] { animation-delay: 0.4s; }
.chat-bubble[data-msg="2"] { animation-delay: 1.4s; }
.chat-bubble[data-msg="3"] { animation-delay: 2.4s; }
.chat-bubble[data-msg="4"] { animation-delay: 3.4s; }

@keyframes bubble-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.bubble-name {
  font-size: 11.5px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 2px;
}

.bubble-name-you { color: #1A4D3A; }
.bubble-name-ai { color: #06CF9C; }

@media (prefers-reduced-motion: reduce) {
  .chat-bubble {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

.chat-bubble.received {
  background: #FFFFFF;
  align-self: flex-start;
  border-radius: 8px 8px 8px 2px;
}

.chat-bubble.sent {
  background: #DCF8C6;
  align-self: flex-end;
  border-radius: 8px 8px 2px 8px;
}

.bubble-text {
  display: block;
  word-wrap: break-word;
}

.bubble-meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2px;
  margin-top: 2px;
  font-size: 10.5px;
  color: #667781;
  align-self: flex-end;
}

.bubble-tick {
  width: 14px;
  height: 14px;
  color: #53BDEB;
}

@media (max-width: 1023px) {
  .phone-frame { width: 300px; height: 560px; }
}

/* ============================================
   Sections — generic
   ============================================ */

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--space-8);
}

.section-header h2 {
  margin-bottom: var(--space-4);
}

.section-header p {
  font-size: 1.1rem;
  color: var(--charcoal-soft);
  line-height: 1.6;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
  color: var(--amber);
  margin-bottom: var(--space-4);
  padding: 0.4rem 0.9rem;
  background: rgba(217, 119, 6, 0.08);
  border-radius: var(--radius-pill);
}

/* ============================================
   How it works — process steps
   ============================================ */

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
  position: relative;
}

@media (max-width: 1000px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .process-grid { grid-template-columns: 1fr; }
}

.process-step {
  background: var(--cream);
  border: 1px solid var(--paper-line);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.process-step:hover {
  transform: translateY(-4px);
  border-color: var(--taupe-light);
  box-shadow: 0 14px 32px var(--paper-shadow);
}

.process-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--amber);
  line-height: 1;
  margin-bottom: var(--space-3);
  font-style: italic;
}

.process-step h3 {
  margin-bottom: var(--space-3);
  font-size: 1.2rem;
}

.process-step p {
  font-size: 0.95rem;
  color: var(--charcoal-soft);
  line-height: 1.55;
}

/* ============================================
   Features grid
   ============================================ */

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

@media (max-width: 900px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
}

.feature-card {
  background: var(--cream);
  border: 1px solid var(--paper-line);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  transition: border-color 0.25s, transform 0.25s;
}

.feature-card:hover {
  border-color: var(--forest);
  transform: translateY(-3px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(26, 77, 58, 0.08);
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--forest);
  margin-bottom: var(--space-4);
}

.feature-icon svg { width: 24px; height: 24px; }

.feature-card h3 {
  margin-bottom: var(--space-3);
  font-size: 1.15rem;
}

.feature-card p {
  font-size: 0.96rem;
  line-height: 1.55;
  color: var(--charcoal-soft);
}

/* ============================================
   Two-side split (Tenant / Owner)
   ============================================ */

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
}

@media (max-width: 800px) {
  .split-grid { grid-template-columns: 1fr; }
}

.split-card {
  background: var(--cream);
  border: 1px solid var(--paper-line);
  border-radius: var(--radius-lg);
  padding: var(--space-7);
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

.split-card .btn {
  margin-top: auto;
  align-self: flex-start;
}

.split-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px var(--paper-shadow);
}

.split-card.tenant:hover { border-color: var(--forest); }
.split-card.owner:hover { border-color: var(--amber); }

.split-eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
  margin-bottom: var(--space-4);
}

.split-card.tenant .split-eyebrow { color: var(--forest); }
.split-card.owner .split-eyebrow { color: var(--amber); }

.split-card h3 {
  font-size: 1.7rem;
  margin-bottom: var(--space-4);
}

.split-card > p {
  font-size: 1.02rem;
  margin-bottom: var(--space-5);
  color: var(--charcoal-soft);
}

.split-list {
  list-style: none;
  margin-bottom: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.split-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: 0.96rem;
  color: var(--charcoal-soft);
  line-height: 1.55;
}

.split-list svg {
  width: 18px;
  height: 18px;
  color: var(--forest);
  flex-shrink: 0;
  margin-top: 4px;
}

.split-card.owner .split-list svg { color: var(--amber); }

/* ============================================
   Testimonials
   ============================================ */

.slider-wrapper {
  position: relative;
  padding: 0;
}

.slider-viewport {
  overflow: hidden;
  padding: var(--space-2) 0;
  /* Soft fade on both edges to make the marquee loop feel less abrupt */
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%);
}

/* Marquee: track contains the original cards followed by an identical clone.
   We animate translateX from 0 to -50% so the clone seamlessly takes the
   first set's place — viewer never sees a jump. */
.marquee-track {
  --gap-half: 12px;
  display: flex;
  gap: 24px;
  width: max-content;
  animation: marquee-scroll 60s linear infinite;
  will-change: transform;
}

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

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-50% - var(--gap-half))); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

.slider-card {
  flex: 0 0 calc((min(100vw, var(--max-content)) - 48px) / 3);
  min-width: 0;
}

@media (max-width: 1023px) {
  .marquee-track { gap: 20px; --gap-half: 10px; }
  .slider-card {
    flex: 0 0 calc((100vw - 80px) / 2);
  }
}

@media (max-width: 767px) {
  .marquee-track { gap: 16px; --gap-half: 8px; animation-duration: 30s; }
  .slider-card {
    flex: 0 0 calc(100vw - 48px);
  }
  .slider-wrapper { padding: 0; }
  .slider-nav { display: none; }
}

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--cream);
  border: 1.5px solid var(--paper-line);
  font-size: 1.5rem;
  line-height: 1;
  color: var(--charcoal);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s, color 0.2s;
  z-index: 2;
  display: grid;
  place-items: center;
  font-family: var(--font-body);
}

.slider-nav:hover {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--cream);
  transform: translateY(-50%) scale(1.05);
}

.slider-prev { left: 0; }
.slider-next { right: 0; }

.slider-dots {
  display: flex;
  justify-content: center;
  gap: var(--space-2);
  margin-top: var(--space-5);
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--paper-line);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.25s, width 0.25s;
}

.slider-dot.active {
  background: var(--forest);
  width: 24px;
  border-radius: 4px;
}

.testimonial {
  background: var(--cream);
  border: 1px solid var(--paper-line);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  position: relative;
}

.testimonial-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.5;
  color: var(--charcoal);
  margin-bottom: var(--space-5);
  position: relative;
}

.testimonial-quote::before {
  content: '"';
  position: absolute;
  top: -8px;
  left: -16px;
  font-size: 3rem;
  color: var(--amber);
  opacity: 0.3;
  line-height: 1;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding-top: var(--space-4);
  border-top: 1px solid var(--paper-line);
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--cream);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--charcoal);
}

.testimonial-role {
  font-size: 0.82rem;
  color: var(--taupe);
}

/* ============================================
   FAQ accordion
   ============================================ */

.faq-list {
  max-width: var(--max-prose);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.faq-item {
  border-bottom: 1px solid var(--paper-line);
  padding-bottom: var(--space-4);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  text-align: left;
  padding: var(--space-4) 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: -0.01em;
  gap: var(--space-4);
  line-height: 1.4;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--amber);
  transition: transform 0.25s;
  flex-shrink: 0;
  line-height: 1;
}

.faq-item.open .faq-question::after {
  content: '−';
}

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

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

.faq-answer-inner {
  padding: 0 0 var(--space-4);
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--charcoal-soft);
}

.faq-answer-inner p { margin-bottom: var(--space-3); }
.faq-answer-inner p:last-child { margin-bottom: 0; }

/* ============================================
   CTA banner
   ============================================ */

.cta-banner {
  background: var(--forest);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: var(--space-8) var(--space-6);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(217, 119, 6, 0.18), transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(217, 119, 6, 0.12), transparent 40%);
  pointer-events: none;
}

.cta-banner > * { position: relative; }

.cta-banner h2 {
  color: var(--cream);
  margin-bottom: var(--space-4);
}

.cta-banner p {
  color: rgba(250, 247, 242, 0.85);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto var(--space-6);
}

.cta-banner .btn-primary {
  background: var(--amber);
  color: var(--cream);
}

.cta-banner .btn-primary:hover {
  background: var(--amber-light);
}

/* ============================================
   Page header (interior pages)
   ============================================ */

.page-header {
  padding: var(--space-9) 0 var(--space-7);
  text-align: center;
  border-bottom: 1px solid var(--paper-line);
  background:
    radial-gradient(ellipse 800px 300px at 50% 0%, rgba(217, 119, 6, 0.06), transparent 70%);
}

.page-header h1 {
  margin-bottom: var(--space-4);
}

.page-header h1 .accent {
  font-style: italic;
  color: var(--forest);
}

.page-header p {
  font-size: 1.15rem;
  max-width: 640px;
  margin: 0 auto;
  color: var(--charcoal-soft);
}

/* ============================================
   Prose (legal pages)
   ============================================ */

.prose {
  max-width: var(--max-prose);
  margin: 0 auto;
}

.prose h2 {
  margin-top: var(--space-7);
  margin-bottom: var(--space-4);
  font-size: 1.6rem;
}

.prose h2:first-child { margin-top: 0; }

.prose h3 {
  margin-top: var(--space-5);
  margin-bottom: var(--space-3);
  font-size: 1.2rem;
}

.prose p {
  margin-bottom: var(--space-4);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--charcoal-soft);
}

.prose ul, .prose ol {
  margin: 0 0 var(--space-4) var(--space-5);
  color: var(--charcoal-soft);
}

.prose ul li, .prose ol li {
  margin-bottom: var(--space-2);
  line-height: 1.65;
}

.prose strong { color: var(--charcoal); }

.last-updated {
  font-size: 0.9rem;
  color: var(--taupe);
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--paper-line);
}

/* ============================================
   Contact section
   ============================================ */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  max-width: 980px;
  margin: 0 auto;
}

@media (max-width: 800px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.contact-card {
  background: var(--cream);
  border: 1px solid var(--paper-line);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  text-align: center;
  transition: border-color 0.25s, transform 0.25s;
}

.contact-card:hover {
  border-color: var(--forest);
  transform: translateY(-3px);
}

.contact-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--space-4);
  background: rgba(26, 77, 58, 0.08);
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--forest);
}

.contact-icon svg { width: 26px; height: 26px; }

.contact-card h3 {
  margin-bottom: var(--space-3);
  font-size: 1.15rem;
}

.contact-card p {
  font-size: 0.95rem;
  margin-bottom: var(--space-4);
  color: var(--charcoal-soft);
}

.contact-link {
  font-weight: 600;
  color: var(--forest);
  font-size: 0.96rem;
  word-break: break-word;
}

.contact-link:hover {
  color: var(--amber);
}

/* ============================================
   About — story layout
   ============================================ */

.story {
  max-width: var(--max-prose);
  margin: 0 auto;
}

.story p {
  font-size: 1.1rem;
  line-height: 1.75;
  margin-bottom: var(--space-5);
  color: var(--charcoal-soft);
}

.story p strong { color: var(--charcoal); }

.story p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 500;
  float: left;
  line-height: 0.85;
  margin: 0.1rem 0.6rem 0 0;
  color: var(--amber);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  margin-top: var(--space-7);
}

@media (max-width: 900px) {
  .values-grid { grid-template-columns: 1fr; }
}

.value-card {
  padding: var(--space-5);
  border-left: 3px solid var(--amber);
}

.value-card h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: var(--space-3);
  color: var(--charcoal);
  letter-spacing: -0.01em;
}

.value-card p {
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0;
}

/* ============================================
   Floating WhatsApp CTA
   ============================================ */

.float-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  background: #25D366;
  color: #fff;
  padding: 14px 20px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}

.float-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(37, 211, 102, 0.5);
}

.float-cta svg { width: 20px; height: 20px; flex-shrink: 0; }

@media (max-width: 600px) {
  .float-cta {
    bottom: 16px;
    right: 16px;
    padding: 12px 16px;
    font-size: 0.85rem;
  }
}

/* ============================================
   Footer
   ============================================ */

.site-footer {
  background: #1f1d1a;
  color: #d8d2c5;
  padding: 64px 0 24px;
  margin-top: var(--space-9);
}

.site-footer .container {
  max-width: var(--max-content);
}

/* Header row: brand lockup left, social icons right */
.footer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 36px;
  margin-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand-lockup {
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.35rem;
}

.footer-brand-lockup .brand-domain {
  color: var(--amber-light);
}

.footer-brand-lockup .brand-mark {
  background: var(--amber);
}

.footer-socials {
  display: flex;
  gap: 14px;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  display: grid;
  place-items: center;
  color: #fff;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
}

.footer-socials a:hover {
  background: var(--amber);
  border-color: var(--amber);
  color: #1f1d1a;
  transform: translateY(-2px);
}

.footer-socials svg {
  width: 18px;
  height: 18px;
}

/* Main 3-col grid: Contact | Quick Links | Query form */
.footer-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.85fr 1.4fr;
  gap: 56px;
  margin-bottom: 40px;
  align-items: start;
}

/* Contact column */
.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.92rem;
  line-height: 1.5;
}

.footer-icon-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: #fff;
}

.footer-icon-circle svg {
  width: 16px;
  height: 16px;
}

.footer-contact-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.footer-contact-label {
  font-size: 0.85rem;
  color: #b8b0a0;
  font-weight: 500;
}

.footer-contact-text a {
  color: #fff;
  font-weight: 600;
  transition: color 0.18s;
  word-break: break-word;
}

.footer-contact-text a:hover {
  color: var(--amber-light);
}

.footer-contact-text span {
  color: #fff;
  font-weight: 500;
  font-size: 0.92rem;
  line-height: 1.5;
}

/* Quick Links column */
.footer-quick-links h4 {
  color: var(--amber-light);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 18px;
  letter-spacing: 0;
  text-transform: none;
}

.footer-quick-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-quick-links a {
  color: #d8d2c5;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.18s;
}

.footer-quick-links a:hover {
  color: var(--amber-light);
}

/* Query form column */
.footer-query h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.1;
}

.footer-query-accent {
  color: var(--amber-light);
}

.footer-query-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-query-form input,
.footer-query-form textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 14px 16px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.18s, background 0.18s;
  resize: none;
}

.footer-query-form input::placeholder,
.footer-query-form textarea::placeholder {
  color: #8a8275;
}

.footer-query-form input:focus,
.footer-query-form textarea:focus {
  outline: none;
  border-color: var(--amber);
  background: rgba(255, 255, 255, 0.1);
}

.footer-query-submit {
  align-self: flex-end;
  background: var(--amber);
  color: #1f1d1a;
  border: none;
  padding: 12px 32px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.footer-query-submit:hover {
  background: var(--amber-light);
  transform: translateY(-1px);
}

@media (max-width: 1023px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer-query {
    grid-column: 1 / -1;
  }
}

@media (max-width: 767px) {
  .site-footer {
    padding: 48px 0 20px;
  }
  .footer-header {
    padding-bottom: 28px;
    margin-bottom: 28px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-query {
    grid-column: auto;
  }
  .footer-query h3 {
    font-size: 1.65rem;
  }
}

.how-it-works-h2 {
  font-size: clamp(42px, 4.5vw, 52px);
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-3);
  font-size: 0.85rem;
  color: #8a8275;
  text-align: center;
}

/* ============================================
   Reveal on scroll
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   Utilities
   ============================================ */

.text-center { text-align: center; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.mt-4 { margin-top: var(--space-4); }
.mt-6 { margin-top: var(--space-6); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
