/* ========================================
   THOMSON RESERVE — Shared Stylesheet
   White + Forest Green palette
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600;700&display=swap');

/* --- CSS Variables --- */
:root {
  --g900: #0D2B1F;
  --g800: #1B3A2D;
  --g700: #2D5440;
  --g600: #3D6B52;
  --g500: #4A7862;
  --g400: #6B9E87;
  --g300: #8BBAA5;
  --g200: #B8D4C8;
  --g100: #D8EAE2;
  --g50:  #EDF5F0;
  --cream: #F7F3EC;
  --cream2: #EDE8DC;
  --gold: #B5892A;
  --gold2: #D4A843;
  --white: #FFFFFF;
  --text-dark: #1A1A1A;
  --text-med: #3D4D45;
  --text-light: #6B7B72;
  --shadow-sm: 0 2px 12px rgba(13,43,31,0.08);
  --shadow-md: 0 8px 32px rgba(13,43,31,0.12);
  --shadow-lg: 0 20px 60px rgba(13,43,31,0.18);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: all 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* --- Navigation --- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 5%;
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
}
.nav-logo-icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
  object-fit: contain;
  /* White logo on transparent hero: invert to white */
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}
/* On scrolled (white) nav: show logo in dark green */
.nav.scrolled .nav-logo-icon {
  filter: brightness(0) saturate(100%) invert(22%) sepia(40%) saturate(600%) hue-rotate(100deg) brightness(80%);
}
.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 18px; font-weight: 600;
  color: var(--white);
  transition: var(--transition);
  letter-spacing: 0.5px;
}
.nav.scrolled .nav-logo-text { color: var(--g900); }
.nav-links {
  display: flex; align-items: center; gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 14px; font-weight: 500;
  color: rgba(255,255,255,0.9);
  transition: var(--transition);
  position: relative;
  padding-bottom: 2px;
}
.nav.scrolled .nav-links a { color: var(--text-med); }
.nav-links a::after {
  content: '';
  position: absolute; bottom: -2px; left: 0; right: 0; height: 2px;
  background: var(--g500); transform: scaleX(0);
  transition: transform 0.3s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-cta {
  background: var(--g600);
  color: white !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600 !important;
  transition: var(--transition) !important;
  transform-style: preserve-3d;
}
.nav-cta:hover {
  background: var(--g800) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45,84,64,0.35) !important;
}
.nav-cta::after { display: none !important; }
.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
}
.hamburger span {
  width: 24px; height: 2px; background: white;
  transition: var(--transition); border-radius: 2px;
}
.nav.scrolled .hamburger span { background: var(--g800); }

/* --- Hero --- */
.hero {
  position: relative; height: 100vh; min-height: 700px;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.12); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(13,43,31,0.85) 0%,
    rgba(13,43,31,0.45) 40%,
    rgba(0,0,0,0.15) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 8% 80px;
  max-width: 900px;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.3);
  color: white; font-size: 13px; font-weight: 500;
  padding: 6px 16px; border-radius: 50px;
  margin-bottom: 20px;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 0.8s ease 0.3s forwards;
}
.hero-tag-dot { width: 6px; height: 6px; background: var(--g300); border-radius: 50%; }
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 7vw, 84px);
  font-weight: 700; color: white; line-height: 1.08;
  letter-spacing: -1px;
  opacity: 0; transform: translateY(30px);
  animation: fadeUp 0.9s ease 0.5s forwards;
}
.hero-title span { color: var(--g300); font-style: italic; }
.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255,255,255,0.8); margin-top: 16px;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 0.8s ease 0.7s forwards;
}
.hero-actions {
  display: flex; gap: 16px; flex-wrap: wrap; margin-top: 32px;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 0.8s ease 0.9s forwards;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--g500); color: white;
  padding: 16px 36px; border-radius: 50px;
  font-weight: 600; font-size: 15px;
  transition: var(--transition);
  transform-style: preserve-3d; perspective: 500px;
  box-shadow: 0 4px 20px rgba(74,120,98,0.4);
}
.btn-primary:hover {
  background: var(--g700);
  transform: translateY(-3px) rotateX(5deg);
  box-shadow: 0 12px 32px rgba(74,120,98,0.5);
}
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid rgba(255,255,255,0.6); color: white;
  padding: 14px 32px; border-radius: 50px;
  font-weight: 500; font-size: 15px;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.15);
  border-color: white;
  transform: translateY(-3px);
}
.hero-scroll {
  position: absolute; bottom: 32px; right: 8%;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.6); font-size: 12px; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase; z-index: 2;
}
.hero-scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.4; }
}

/* --- Stats Bar --- */
.stats-bar {
  background: var(--g800);
  padding: 40px 8%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 40px;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700; color: var(--g200);
  line-height: 1;
}
.stat-num sup { font-size: 0.5em; vertical-align: super; }
.stat-label {
  font-size: 13px; color: rgba(255,255,255,0.6);
  margin-top: 6px; font-weight: 400;
  letter-spacing: 0.5px;
}
.stat-divider {
  width: 1px; background: rgba(255,255,255,0.1);
  align-self: stretch;
}

/* --- Section Styles --- */
.section { padding: 100px 8%; }
.section-alt { background: var(--cream); }
.section-green { background: var(--g50); }
.section-dark { background: var(--g900); color: white; }
.section-label {
  font-size: 12px; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--g500);
  margin-bottom: 12px;
}
.section-dark .section-label { color: var(--g300); }
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 600; line-height: 1.15;
  color: var(--g900);
}
.section-dark .section-title { color: white; }
.section-subtitle {
  font-size: 17px; color: var(--text-light);
  margin-top: 16px; max-width: 640px; line-height: 1.7;
}
.section-dark .section-subtitle { color: rgba(255,255,255,0.65); }

/* --- Reveal Animations --- */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0; transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0; transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* --- 3D Feature Cards --- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px; margin-top: 60px;
}
.card-3d {
  perspective: 1000px;
  cursor: pointer;
}
.card-3d-inner {
  background: white;
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94), box-shadow 0.4s ease;
  transform-style: preserve-3d;
  border: 1px solid rgba(74,120,98,0.1);
}
.card-3d:hover .card-3d-inner {
  transform: translateY(-10px) rotateX(5deg) rotateY(-3deg);
  box-shadow: var(--shadow-lg);
}
.card-icon {
  width: 56px; height: 56px;
  background: var(--g50);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; margin-bottom: 20px;
  transition: var(--transition);
}
.card-3d:hover .card-icon {
  background: var(--g500);
}
.card-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px; font-weight: 600; color: var(--g800);
  margin-bottom: 10px;
}
.card-text { font-size: 14px; color: var(--text-light); line-height: 1.7; }

/* --- Image Sections --- */
.two-col {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }
.img-frame {
  position: relative; border-radius: var(--radius);
  overflow: hidden;
}
.img-frame img {
  width: 100%; height: 500px; object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.25,0.46,0.45,0.94);
}
.img-frame:hover img { transform: scale(1.05); }
.img-badge {
  position: absolute; bottom: 24px; left: 24px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  padding: 12px 20px; border-radius: 50px;
  font-size: 13px; font-weight: 600; color: var(--g700);
  box-shadow: var(--shadow-sm);
}

/* --- Location Pills --- */
.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px; margin-top: 40px;
}
.location-pill {
  display: flex; align-items: center; gap: 12px;
  background: white; border-radius: 50px;
  padding: 14px 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--g100);
  transition: var(--transition);
}
.location-pill:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--g300);
}
.pill-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--g50); display: flex; align-items: center;
  justify-content: center; font-size: 16px; flex-shrink: 0;
}
.pill-info { min-width: 0; }
.pill-name { font-size: 13px; font-weight: 600; color: var(--g800); }
.pill-dist { font-size: 12px; color: var(--text-light); }

/* --- Unit Mix Table --- */
.unit-table {
  width: 100%; border-collapse: collapse;
  margin-top: 40px; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
}
.unit-table th {
  background: var(--g700); color: white;
  padding: 16px 20px; font-size: 13px;
  font-weight: 600; text-align: left; letter-spacing: 0.5px;
}
.unit-table td {
  padding: 16px 20px; font-size: 14px;
  border-bottom: 1px solid var(--g50);
  color: var(--text-dark);
}
.unit-table tr:last-child td { border-bottom: none; }
.unit-table tr:nth-child(even) td { background: var(--g50); }
.unit-table tr:hover td { background: var(--g100); transition: background 0.3s; }
.unit-badge {
  display: inline-block;
  background: var(--g100); color: var(--g700);
  padding: 3px 10px; border-radius: 50px;
  font-size: 12px; font-weight: 600;
}

/* --- Amenity Grid --- */
.amenity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px; margin-top: 50px;
}
.amenity-card {
  background: white; border-radius: var(--radius);
  padding: 28px 20px; text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--g100);
  transition: var(--transition);
}
.amenity-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--g300);
}
.amenity-icon { font-size: 32px; margin-bottom: 12px; }
.amenity-name { font-size: 14px; font-weight: 600; color: var(--g800); }

/* --- Timeline --- */
.timeline {
  position: relative; margin-top: 50px;
  padding-left: 40px;
}
.timeline::before {
  content: '';
  position: absolute; left: 8px; top: 0; bottom: 0;
  width: 2px; background: var(--g200);
}
.timeline-item {
  position: relative; margin-bottom: 36px;
}
.timeline-item::before {
  content: '';
  position: absolute; left: -36px; top: 6px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--g500);
  border: 3px solid white;
  box-shadow: 0 0 0 3px var(--g200);
}
.timeline-date {
  font-size: 12px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--g500); margin-bottom: 4px;
}
.timeline-title {
  font-size: 17px; font-weight: 600; color: var(--g800);
}
.timeline-text { font-size: 14px; color: var(--text-light); margin-top: 4px; }

/* --- FAQ Accordion --- */
.faq-list { margin-top: 50px; }
.faq-item {
  border-bottom: 1px solid var(--g100);
  overflow: hidden;
}
.faq-q {
  width: 100%; display: flex; align-items: center;
  justify-content: space-between; gap: 20px;
  padding: 24px 0; cursor: pointer;
  font-size: 16px; font-weight: 600; color: var(--g900);
  text-align: left; transition: var(--transition);
}
.faq-q:hover { color: var(--g600); }
.faq-arrow {
  width: 32px; height: 32px; flex-shrink: 0;
  background: var(--g50); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.faq-item.open .faq-arrow {
  background: var(--g500); transform: rotate(180deg);
}
.faq-item.open .faq-arrow svg { stroke: white; }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.5s ease, padding 0.3s ease;
}
.faq-item.open .faq-a { max-height: 400px; }
.faq-a p {
  padding-bottom: 24px;
  font-size: 15px; color: var(--text-light); line-height: 1.8;
}

/* --- Form --- */
.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-label {
  font-size: 13px; font-weight: 600; color: var(--g800);
  letter-spacing: 0.3px;
}
.form-input, .form-select, .form-textarea {
  padding: 14px 16px;
  border: 1.5px solid var(--g100);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 15px; color: var(--text-dark);
  background: white;
  transition: var(--transition);
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--g500);
  box-shadow: 0 0 0 3px rgba(74,120,98,0.12);
}
.form-textarea { min-height: 120px; resize: vertical; }
.form-select { appearance: none; cursor: pointer; }
.checkbox-group { display: flex; flex-direction: column; gap: 10px; }
.checkbox-label {
  display: flex; align-items: flex-start; gap: 12px;
  cursor: pointer; font-size: 14px; color: var(--text-med);
  line-height: 1.5;
}
.checkbox-label input[type="checkbox"] {
  width: 18px; height: 18px; flex-shrink: 0;
  accent-color: var(--g500); margin-top: 2px;
}
.unit-pref {
  display: flex; flex-wrap: wrap; gap: 12px;
}
.pref-btn {
  padding: 10px 22px;
  border: 2px solid var(--g200);
  border-radius: 50px;
  font-size: 14px; font-weight: 600; color: var(--text-med);
  cursor: pointer; transition: var(--transition);
  background: white;
  transform-style: preserve-3d; perspective: 500px;
}
.pref-btn:hover {
  border-color: var(--g400);
  color: var(--g700);
  transform: translateY(-2px) rotateX(5deg);
  box-shadow: 0 6px 16px rgba(74,120,98,0.2);
}
.pref-btn.selected {
  background: var(--g600); border-color: var(--g600);
  color: white;
  box-shadow: 0 4px 16px rgba(74,120,98,0.3);
}
.form-submit {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--g700); color: white;
  padding: 18px 48px; border-radius: 50px;
  font-size: 16px; font-weight: 600;
  transition: var(--transition);
  margin-top: 8px;
  transform-style: preserve-3d; perspective: 600px;
}
.form-submit:hover {
  background: var(--g900);
  transform: translateY(-4px) rotateX(6deg);
  box-shadow: 0 16px 40px rgba(13,43,31,0.35);
}

/* --- PDPA Notice --- */
.pdpa-notice {
  background: var(--g50); border-radius: var(--radius-sm);
  padding: 20px; margin-top: 24px;
  border-left: 4px solid var(--g400);
}
.pdpa-notice h4 {
  font-size: 13px; font-weight: 700; color: var(--g700);
  letter-spacing: 1px; text-transform: uppercase; margin-bottom: 8px;
}
.pdpa-notice p {
  font-size: 12px; color: var(--text-light); line-height: 1.7;
}
.pdpa-notice a { color: var(--g600); text-decoration: underline; }

/* --- Developer Cards --- */
.dev-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 24px; margin-top: 50px;
}
.dev-card {
  background: white; border-radius: var(--radius);
  padding: 36px; box-shadow: var(--shadow-sm);
  border: 1px solid var(--g100);
  transition: var(--transition);
}
.dev-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--g300);
}
.dev-logo {
  font-family: 'Playfair Display', serif;
  font-size: 24px; font-weight: 700; color: var(--g800);
  margin-bottom: 16px; padding-bottom: 16px;
  border-bottom: 1px solid var(--g100);
}
.dev-desc { font-size: 14px; color: var(--text-light); line-height: 1.7; }
.dev-projects { margin-top: 20px; display: flex; flex-wrap: wrap; gap: 8px; }
.dev-project-tag {
  background: var(--g50); color: var(--g700);
  padding: 4px 12px; border-radius: 50px;
  font-size: 12px; font-weight: 500;
}

/* --- CTA Section --- */
.cta-section {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--g900) 0%, var(--g700) 100%);
  padding: 120px 8%; text-align: center;
}
.cta-pattern {
  position: absolute; inset: 0; opacity: 0.05;
  background-image: radial-gradient(circle at 2px 2px, white 1px, transparent 0);
  background-size: 40px 40px;
}
.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 52px);
  color: white; font-weight: 600; line-height: 1.2;
  margin-bottom: 16px;
}
.cta-sub {
  font-size: 17px; color: rgba(255,255,255,0.7);
  margin-bottom: 40px; max-width: 560px; margin-left: auto; margin-right: auto;
}

/* --- Footer --- */
.footer {
  background: var(--g900); color: rgba(255,255,255,0.7);
  padding: 60px 8% 30px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 60px; margin-bottom: 50px;
}
.footer-brand .logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 600; color: white;
  margin-bottom: 12px;
}
.footer-desc { font-size: 14px; line-height: 1.7; max-width: 320px; }
.footer-links h4, .footer-contact h4 {
  font-size: 13px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: white; margin-bottom: 20px;
}
.footer-links ul, .footer-contact ul {
  list-style: none; display: flex; flex-direction: column; gap: 10px;
}
.footer-links a { font-size: 14px; transition: color 0.3s; }
.footer-links a:hover { color: var(--g300); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  font-size: 12px; color: rgba(255,255,255,0.4);
}
.footer-disclaimer {
  font-size: 11px; color: rgba(255,255,255,0.3);
  line-height: 1.6; margin-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 20px;
}

/* --- Page Hero (inner pages) --- */
.page-hero {
  background: linear-gradient(135deg, var(--g900) 0%, var(--g700) 100%);
  padding: 140px 8% 80px;
  position: relative; overflow: hidden;
}
.page-hero-pattern {
  position: absolute; inset: 0; opacity: 0.04;
  background-image: radial-gradient(circle at 2px 2px, white 1px, transparent 0);
  background-size: 32px 32px;
}
.page-hero-label {
  font-size: 12px; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--g300); margin-bottom: 12px;
}
.page-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 700; color: white; line-height: 1.1;
}
.page-hero-sub {
  font-size: 18px; color: rgba(255,255,255,0.65);
  margin-top: 16px; max-width: 580px;
}

/* --- Success State --- */
.form-success {
  display: none; text-align: center; padding: 60px 20px;
}
.form-success.show { display: block; }
.success-icon {
  width: 80px; height: 80px; background: var(--g100);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; margin: 0 auto 20px; font-size: 40px;
}
.success-title {
  font-family: 'Playfair Display', serif;
  font-size: 28px; color: var(--g800); margin-bottom: 12px;
}
.success-sub { font-size: 16px; color: var(--text-light); }

/* --- Responsive --- */
@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .two-col.reverse { direction: ltr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat-divider { display: none; }
}
@media (max-width: 600px) {
  .section { padding: 70px 5%; }
  .hero-content { padding: 0 5% 60px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-grid { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: 1fr; }
}

/* --- Price bar chart --- */
.price-bar {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 16px;
}
.price-bar-label { min-width: 200px; font-size: 14px; color: var(--text-med); font-weight: 500; }
.price-bar-track {
  flex: 1; height: 10px; background: var(--g100);
  border-radius: 10px; overflow: hidden;
}
.price-bar-fill {
  height: 100%; background: linear-gradient(to right, var(--g400), var(--g700));
  border-radius: 10px; width: 0;
  transition: width 1.5s cubic-bezier(0.25,0.46,0.45,0.94);
}
.price-bar-val { min-width: 120px; font-size: 13px; font-weight: 600; color: var(--g700); text-align: right; }

/* --- Mobile menu --- */
.mobile-menu {
  position: fixed; top: 72px; left: 0; right: 0;
  background: rgba(255,255,255,0.98); backdrop-filter: blur(20px);
  padding: 20px 5%;
  transform: translateY(-100%); opacity: 0;
  transition: var(--transition); z-index: 999;
  box-shadow: var(--shadow-md);
}
.mobile-menu.open { transform: translateY(0); opacity: 1; }
.mobile-menu a {
  display: block; padding: 14px 0;
  font-size: 16px; font-weight: 500; color: var(--g900);
  border-bottom: 1px solid var(--g50);
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--g600); }
.mobile-menu a:last-child { border-bottom: none; }

/* Floating WhatsApp button */
.wa-float {
  position: fixed; bottom: 30px; right: 30px; z-index: 900;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  transition: var(--transition);
  animation: waPulse 3s ease-in-out infinite;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(37,211,102,0.55);
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0.4); }
  70% { box-shadow: 0 6px 24px rgba(37,211,102,0.4), 0 0 0 12px rgba(37,211,102,0); }
}
