@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,600;0,9..144,700;1,9..144,400&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --forest: #0B3D2E;
  --forest-light: #145A44;
  --forest-dark: #062820;
  --gold: #C6A75E;
  --gold-light: #D4BC82;
  --gold-dark: #A8893F;
  --ivory: #F5F0E8;
  --ivory-muted: rgba(245, 240, 232, 0.72);
  --text-muted: rgba(245, 240, 232, 0.65);
  --surface: rgba(11, 61, 46, 0.6);
  --glass: rgba(245, 240, 232, 0.06);
  --glass-border: rgba(198, 167, 94, 0.18);
  --shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
  --radius: 14px;
  --radius-lg: 22px;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--forest-dark);
  color: var(--ivory);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

/* ─── Background atmosphere ─── */
.atmosphere {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 80% 60% at 20% 10%, rgba(198, 167, 94, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse 60% 50% at 85% 80%, rgba(20, 90, 68, 0.4) 0%, transparent 50%),
    linear-gradient(165deg, var(--forest-dark) 0%, var(--forest) 40%, var(--forest-dark) 100%);
}

.grid-mesh {
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.07;
  background-image:
    linear-gradient(rgba(198, 167, 94, 0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(198, 167, 94, 0.5) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 40%, black 20%, transparent 70%);
}

.gold-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: -1;
  animation: floatOrb 12s ease-in-out infinite;
}

.gold-orb-1 {
  width: 320px; height: 320px;
  background: rgba(198, 167, 94, 0.15);
  top: 10%; left: -5%;
}

.gold-orb-2 {
  width: 240px; height: 240px;
  background: rgba(198, 167, 94, 0.1);
  bottom: 20%; right: 5%;
  animation-delay: -4s;
}

.gold-orb-3 {
  width: 180px; height: 180px;
  background: rgba(20, 90, 68, 0.3);
  top: 50%; left: 60%;
  animation-delay: -8s;
}

@keyframes floatOrb {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, -30px); }
}

.diagonal-stripes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.diagonal-stripes::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 60%;
  height: 200%;
  background: repeating-linear-gradient(
    -35deg,
    transparent,
    transparent 20px,
    rgba(198, 167, 94, 0.04) 20px,
    rgba(198, 167, 94, 0.04) 22px
  );
  transform: rotate(-5deg);
}

/* ─── Header ─── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

.header.scrolled {
  background: rgba(6, 40, 32, 0.92);
  backdrop-filter: blur(16px);
  padding: 12px 0;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.25);
  border-bottom: 1px solid var(--glass-border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--ivory);
  white-space: nowrap;
}

.logo:hover { color: var(--ivory); }

.logo-img { width: 38px; height: 38px; }

.nav { display: flex; align-items: center; gap: 24px; }

.nav-list {
  display: flex;
  list-style: none;
  gap: 8px;
}

.nav-list a {
  color: var(--ivory-muted);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all var(--transition);
}

.nav-list a:hover,
.nav-list a.active {
  color: var(--ivory);
  background: var(--glass);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-switch {
  display: flex;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  overflow: hidden;
}

.lang-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 12px;
  cursor: pointer;
  transition: all var(--transition);
}

.lang-btn.active {
  background: var(--gold);
  color: var(--forest-dark);
}

.header-cta {
  background: var(--gold);
  color: var(--forest-dark) !important;
  font-weight: 600;
  font-size: 0.88rem;
  padding: 10px 20px;
  border-radius: 10px;
  transition: all var(--transition);
}

.header-cta:hover {
  background: var(--gold-light);
  color: var(--forest-dark) !important;
  transform: translateY(-1px);
}

.menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--ivory);
  cursor: pointer;
  padding: 8px;
}

.menu-btn svg { width: 24px; height: 24px; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--forest-dark);
  box-shadow: 0 8px 24px rgba(198, 167, 94, 0.25);
}

.btn-primary:hover {
  box-shadow: 0 12px 32px rgba(198, 167, 94, 0.35);
  color: var(--forest-dark);
}

.btn-ghost {
  background: transparent;
  color: var(--ivory);
  border: 1px solid var(--glass-border);
}

.btn-ghost:hover {
  background: var(--glass);
  border-color: var(--gold);
  color: var(--ivory);
}

.btn-shine {
  position: relative;
  overflow: hidden;
}

.btn-shine::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
  0%, 100% { left: -100%; }
  50% { left: 150%; }
}

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.85rem;
  color: var(--gold);
  margin-bottom: 24px;
}

.hero-badge-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  line-height: 1.2;
}

.hero-stat span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero-visual {
  position: relative;
}

.hero-chart-svg {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  display: block;
}

.chart-line {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: drawLine 2.5s ease forwards 0.5s;
}

.chart-line-2 {
  animation-delay: 1s;
}

@keyframes drawLine {
  to { stroke-dashoffset: 0; }
}

.chart-dot {
  opacity: 0;
  animation: fadeInDot 0.5s ease forwards 2.5s;
}

@keyframes fadeInDot {
  to { opacity: 1; }
}

.hero-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow);
}

.hero-image-wrap img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.hero-float-card {
  position: absolute;
  background: rgba(6, 40, 32, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 16px 20px;
  min-width: 160px;
}

.hero-float-card-1 { top: 20px; right: -20px; }
.hero-float-card-2 { bottom: 30px; left: -20px; }

.float-card-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.float-card-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 600;
}

.float-card-change {
  font-size: 0.8rem;
  color: #7BC67E;
}

/* ─── Marquee ─── */
.marquee-section {
  background: var(--forest);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  padding: 16px 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}

.marquee-track span {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  padding-right: 0;
  flex-shrink: 0;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── Sections ─── */
.section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 16px;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* ─── Cards ─── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.glass-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
}

.glass-card:hover {
  border-color: rgba(198, 167, 94, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

.card-icon-wrap {
  width: 48px; height: 48px;
  background: rgba(198, 167, 94, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.card-icon-wrap svg {
  width: 24px; height: 24px;
  stroke: var(--gold);
}

.glass-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.glass-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.card-link {
  font-weight: 600;
  font-size: 0.9rem;
}

/* ─── Tabs ─── */
.tabs-wrap { max-width: 1000px; margin: 0 auto; }

.tabs-nav {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.tab-btn {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--text-muted);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 24px;
  border-radius: 10px;
  cursor: pointer;
  transition: all var(--transition);
}

.tab-btn.active,
.tab-btn:hover {
  background: var(--gold);
  color: var(--forest-dark);
  border-color: var(--gold);
}

.tab-panel { display: none; }
.tab-panel.active { display: block; }

.tab-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.tab-content-grid img {
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  height: 320px;
  object-fit: cover;
  width: 100%;
}

.tab-features {
  list-style: none;
  margin-top: 20px;
}

.tab-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--text-muted);
}

.tab-features svg { stroke: var(--gold); flex-shrink: 0; margin-top: 2px; }

/* ─── Timeline ─── */
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0 32px;
  position: relative;
  margin-top: 48px;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.4;
}

.timeline-step {
  position: relative;
  text-align: center;
  padding: 0 12px;
}

.timeline-num {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  background: var(--forest-light);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--gold);
  position: relative;
  z-index: 1;
  transition: transform var(--transition), box-shadow var(--transition);
}

.timeline-step:hover .timeline-num {
  transform: scale(1.08);
  box-shadow: 0 0 24px rgba(198, 167, 94, 0.25);
}

.timeline-step h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.timeline-step p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.desk-map {
  width: 100%;
  height: 220px;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  margin-top: 24px;
  filter: grayscale(20%) contrast(1.05);
}

/* ─── Process ─── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.process-step {
  text-align: center;
  padding: 32px 20px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  position: relative;
}

.process-num {
  width: 44px; height: 44px;
  background: var(--gold);
  color: var(--forest-dark);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.process-step h4 {
  font-family: var(--font-display);
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ─── Testimonials ─── */
.testimonial-slider {
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-slide {
  min-width: 100%;
  padding: 0 20px;
  text-align: center;
}

.testimonial-slide blockquote {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 24px;
  color: var(--ivory);
}

.testimonial-author {
  font-weight: 600;
  color: var(--gold);
}

.testimonial-role {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

.slider-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--glass-border);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.slider-dot.active { background: var(--gold); transform: scale(1.2); }

/* ─── CTA Banner ─── */
.cta-banner {
  background: linear-gradient(135deg, var(--forest-light) 0%, var(--forest) 100%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 64px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-45deg, transparent, transparent 30px, rgba(198,167,94,0.03) 30px, rgba(198,167,94,0.03) 32px);
}

.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 12px;
  position: relative;
}

.cta-banner p {
  color: var(--text-muted);
  margin-bottom: 28px;
  position: relative;
}

.cta-banner .btn { position: relative; }

/* ─── Page Hero ─── */
.page-hero {
  padding: 140px 0 60px;
  text-align: center;
  position: relative;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.page-hero p {
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* ─── Two Column ─── */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.split-grid img {
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  height: 400px;
  object-fit: cover;
  width: 100%;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.value-card {
  padding: 28px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
}

.value-card h4 {
  font-family: var(--font-display);
  color: var(--gold);
  margin-bottom: 8px;
}

.value-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.stats-row {
  display: flex;
  gap: 48px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 48px 0;
}

.stat-block {
  text-align: center;
}

.stat-block strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--gold);
}

.stat-block span {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ─── Contact ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
}

.contact-info-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.contact-info-card h3 {
  font-family: var(--font-display);
  margin-bottom: 24px;
}

.contact-detail {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.contact-detail svg {
  width: 20px; height: 20px;
  stroke: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.contact-detail span {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.contact-form-wrap {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--ivory-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(6, 40, 32, 0.6);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  padding: 12px 16px;
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form-group textarea { min-height: 140px; resize: vertical; }

.form-group select option {
  background: var(--forest-dark);
}

.consent-group {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.consent-group input[type="checkbox"] {
  width: 18px; height: 18px;
  margin-top: 3px;
  accent-color: var(--gold);
  flex-shrink: 0;
}

.consent-group label {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.form-msg {
  display: none;
  padding: 14px 18px;
  border-radius: 10px;
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.form-msg.show { display: block; }
.form-msg.success {
  background: rgba(123, 198, 126, 0.15);
  border: 1px solid rgba(123, 198, 126, 0.3);
  color: #7BC67E;
}
.form-msg.error {
  background: rgba(220, 80, 80, 0.15);
  border: 1px solid rgba(220, 80, 80, 0.3);
  color: #E88;
}

/* ─── Policy ─── */
.policy-content {
  background: var(--ivory);
  color: #1a1a1a;
  border-radius: var(--radius-lg);
  padding: 48px;
  max-width: 900px;
  margin: 0 auto;
}

.policy-content h3,
.policy-content h4 {
  font-family: var(--font-display);
  margin: 28px 0 12px;
  color: var(--forest);
}

.policy-content p,
.policy-content li {
  margin-bottom: 12px;
  line-height: 1.7;
  color: #333;
}

.policy-content a {
  color: var(--forest-light);
  text-decoration: underline;
}

.policy-content a:hover { color: var(--gold-dark); }

.policy-content ul,
.policy-content ol {
  padding-left: 24px;
  margin-bottom: 16px;
}

.policy-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 0.9rem;
}

.policy-content th,
.policy-content td {
  border: 1px solid #ccc;
  padding: 10px 12px;
  text-align: left;
}

.policy-content th {
  background: #f0ebe0;
  font-weight: 600;
}

/* ─── Footer ─── */
.footer {
  background: rgba(6, 40, 32, 0.95);
  border-top: 1px solid var(--glass-border);
  padding: 64px 0 24px;
  margin-top: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 16px;
  max-width: 320px;
}

.footer h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  margin-bottom: 16px;
  color: var(--gold);
}

.footer-links {
  list-style: none;
}

.footer-links li { margin-bottom: 10px; }

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-links a:hover { color: var(--ivory); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--glass-border);
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer-legal a {
  color: var(--text-muted);
  font-size: 0.82rem;
}

/* ─── Cookie Bar ─── */
.cookie-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: rgba(6, 40, 32, 0.96);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--glass-border);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  animation: slideUp 0.5s ease;
}

@keyframes slideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

.cookie-bar p {
  flex: 1;
  font-size: 0.88rem;
  color: var(--text-muted);
  min-width: 280px;
}

.cookie-bar a { color: var(--gold); }

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-btn {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 10px 20px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.cookie-accept {
  background: var(--gold);
  color: var(--forest-dark);
}

.cookie-reject {
  background: transparent;
  color: var(--ivory);
  border: 1px solid var(--glass-border);
}

/* ─── Reveal Animation ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── Parallax shapes ─── */
.parallax-shape {
  position: absolute;
  pointer-events: none;
}

.shape-ring {
  width: 120px; height: 120px;
  border: 1px solid rgba(198, 167, 94, 0.15);
  border-radius: 50%;
}

.shape-diamond {
  width: 60px; height: 60px;
  border: 1px solid rgba(198, 167, 94, 0.2);
  transform: rotate(45deg);
}

/* ─── Feature list page ─── */
.feature-list {
  list-style: none;
  margin: 24px 0;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--text-muted);
}

.feature-list li::before {
  content: '◆';
  color: var(--gold);
  font-size: 0.6rem;
  margin-top: 6px;
}

.criteria-box {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  margin-top: 40px;
}

.criteria-box h3 {
  font-family: var(--font-display);
  margin-bottom: 20px;
  color: var(--gold);
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .hero-grid,
  .tab-content-grid,
  .split-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .timeline::before { display: none; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-list {
    position: fixed;
    top: 0; right: -100%;
    width: min(320px, 85vw);
    height: 100vh;
    background: rgba(6, 40, 32, 0.98);
    flex-direction: column;
    padding: 80px 32px 32px;
    transition: right var(--transition);
    border-left: 1px solid var(--glass-border);
  }

  .nav-list.open { right: 0; }

  .menu-btn { display: block; }

  .header-cta { display: none; }

  .hero-stats { gap: 24px; }

  .process-grid,
  .values-grid,
  .form-row,
  .timeline {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .policy-content {
    padding: 28px 20px;
  }

  .cta-banner {
    padding: 40px 24px;
  }

  .hero-float-card-1 { right: 10px; }
  .hero-float-card-2 { left: 10px; }
}
