/* === ROOT & RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #0d1f35;
  --primary-light: #1a3a5c;
  --gold: #c9a84c;
  --gold-light: #dbb95e;
  --text-dark: #0d1f35;
  --text-body: #4a5568;
  --text-muted: #718096;
  --bg-light: #f7f8fa;
  --bg-white: #ffffff;
  --border: #e2e8f0;
  --shadow: 0 2px 12px rgba(13,31,53,0.08);
  --shadow-md: 0 4px 24px rgba(13,31,53,0.12);
  --shadow-lg: 0 8px 40px rgba(13,31,53,0.16);
  --radius: 8px;
  --radius-lg: 16px;
  --max-width: 1200px;
  --nav-height: 72px;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-body);
  line-height: 1.7;
  font-size: 16px;
  background: var(--bg-white);
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--text-dark);
  line-height: 1.3;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.1rem; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* === LAYOUT === */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
section { padding: 80px 0; }

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-header { max-width: 680px; margin-bottom: 56px; }
.section-header.centered { text-align: center; margin: 0 auto 56px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { font-size: 1.05rem; color: var(--text-muted); }

/* === NAVIGATION === */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: transparent;
  transition: background 0.35s, box-shadow 0.35s;
}
.nav.scrolled {
  background: var(--primary);
  box-shadow: 0 2px 24px rgba(0,0,0,0.25);
}
.nav-inner {
  max-width: var(--max-width); margin: 0 auto; padding: 0 24px;
  height: 100%; display: flex; align-items: center;
  justify-content: space-between; gap: 24px;
}
.nav-logo { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo-main { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: white; }
.nav-logo-sub { font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-size: 0.875rem; font-weight: 500; color: rgba(255,255,255,0.82); transition: color 0.2s; }
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--gold) !important;
  color: var(--primary) !important;
  padding: 9px 20px !important;
  border-radius: var(--radius) !important;
  font-weight: 600 !important;
  font-size: 0.84rem !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  padding: 8px; flex-direction: column; gap: 5px;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: white; transition: all 0.3s; }

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius);
  font-weight: 600; font-size: 0.95rem; cursor: pointer;
  border: 2px solid transparent; transition: all 0.2s; text-decoration: none;
}
.btn-primary { background: var(--gold); color: var(--primary); border-color: var(--gold); }
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201,168,76,0.4); }
.btn-secondary { background: transparent; color: white; border-color: rgba(255,255,255,0.4); }
.btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: white; }
.btn-lg { padding: 16px 36px; font-size: 1rem; }

/* === HERO === */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  background: linear-gradient(140deg, #0a1a2e 0%, #0d1f35 40%, #152d4a 70%, #0a1a2e 100%);
  position: relative; overflow: hidden; padding: 120px 0 80px;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 700px 500px at 85% 35%, rgba(201,168,76,0.09) 0%, transparent 65%),
    radial-gradient(ellipse 500px 700px at 10% 85%, rgba(26,58,92,0.4) 0%, transparent 60%);
}
.hero-geo {
  position: absolute; right: 0; top: 0; bottom: 0; width: 50%; opacity: 0.06;
  background: repeating-linear-gradient(
    45deg, transparent, transparent 40px,
    rgba(201,168,76,1) 40px, rgba(201,168,76,1) 41px
  );
}
.hero-content { position: relative; z-index: 1; max-width: 680px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,0.12); border: 1px solid rgba(201,168,76,0.3);
  padding: 6px 16px; border-radius: 100px;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 24px;
}
.hero h1 { color: white; margin-bottom: 20px; }
.hero h1 em { font-style: normal; color: var(--gold); }
.hero-subtitle { font-size: 1.1rem; color: rgba(255,255,255,0.72); margin-bottom: 40px; max-width: 560px; line-height: 1.8; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 48px; margin-top: 60px; padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1); flex-wrap: wrap;
}
.hero-stat-value { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: white; display: block; }
.hero-stat-label { font-size: 0.76rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.1em; }

/* === PROBLEM SECTION === */
.problem-section { background: var(--bg-light); }
.problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.pain-points { display: flex; flex-direction: column; gap: 16px; }
.pain-point {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px 22px; background: white; border-radius: var(--radius);
  box-shadow: var(--shadow); border-left: 3px solid #e53e3e;
}
.pain-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.pain-point h4 { color: var(--text-dark); margin-bottom: 3px; font-family: 'Inter', sans-serif; font-size: 0.92rem; font-weight: 600; }
.pain-point p { font-size: 0.84rem; color: var(--text-muted); }

/* === FLOW / SOLUTION === */
.solution-section { background: white; }
.flow-steps { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; margin: 48px 0 32px; gap: 0; }
.flow-step { display: flex; flex-direction: column; align-items: center; text-align: center; position: relative; }
.flow-step-circle {
  width: 80px; height: 80px; background: var(--primary); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 12px; border: 2px solid rgba(201,168,76,0.3);
}
.flow-arrow { width: 60px; height: 2px; background: linear-gradient(90deg, var(--gold), var(--primary)); margin: 0; margin-bottom: 52px; flex-shrink: 0; }
.flow-step-label { font-weight: 700; font-size: 0.9rem; color: var(--text-dark); }
.flow-step-sub { font-size: 0.76rem; color: var(--text-muted); margin-top: 4px; max-width: 90px; }

/* === SERVICES === */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.service-card {
  background: white; border-radius: var(--radius-lg); padding: 36px 28px;
  box-shadow: var(--shadow); border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s; position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--gold)); opacity: 0; transition: opacity 0.3s;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(13,31,53,0.9), rgba(26,58,92,0.9));
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 20px;
}
.service-card h3 { font-size: 1.05rem; margin-bottom: 10px; font-family: 'Inter', sans-serif; font-weight: 700; }
.service-card p { font-size: 0.88rem; color: var(--text-muted); }

/* === LOCATION SECTION === */
.location-section {
  background: var(--primary); color: white; position: relative; overflow: hidden;
}
.location-section::before {
  content: ''; position: absolute; top: -60%; right: -15%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(201,168,76,0.08), transparent 65%);
  border-radius: 50%;
}
.location-section h2, .location-section h3 { color: white; }
.location-section .section-header p { color: rgba(255,255,255,0.68); }
.location-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; margin-top: 48px; }
.location-stat {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg); padding: 28px 20px; text-align: center;
}
.location-stat-value { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--gold); display: block; margin-bottom: 6px; }
.location-stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.55); }
.micromarkets { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 32px; }
.micromarket-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(201,168,76,0.12); border: 1px solid rgba(201,168,76,0.28);
  padding: 7px 15px; border-radius: 100px; font-size: 0.84rem; font-weight: 500; color: var(--gold);
}

/* === TRUST SECTION === */
.trust-section { background: var(--bg-light); }
.trust-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.trust-points { display: flex; flex-direction: column; gap: 20px; }
.trust-point { display: flex; gap: 16px; align-items: flex-start; }
.trust-check {
  width: 28px; height: 28px; background: linear-gradient(135deg, #2d6a4f, #40916c);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; color: white; flex-shrink: 0; margin-top: 2px;
}
.trust-point h4 { font-family: 'Inter', sans-serif; font-size: 0.98rem; font-weight: 600; margin-bottom: 4px; }
.trust-point p { font-size: 0.86rem; color: var(--text-muted); }
.trust-highlight {
  background: var(--primary); border-radius: var(--radius-lg); padding: 40px;
  color: white; display: flex; flex-direction: column; gap: 24px;
}
.trust-highlight h3 { color: white; font-family: 'Inter', sans-serif; font-size: 1.05rem; font-weight: 600; margin-bottom: 8px; }
.trust-highlight p { color: rgba(255,255,255,0.65); font-size: 0.9rem; }
.trust-metric { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; }
.trust-metric-value { font-family: 'Playfair Display', serif; font-size: 2.4rem; color: var(--gold); display: block; }
.trust-metric-label { font-size: 0.82rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.1em; }

/* === CTA SECTION === */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, #152d4a 100%);
  color: white; text-align: center; padding: 100px 0; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; bottom: -80px; left: 50%; transform: translateX(-50%);
  width: 700px; height: 350px;
  background: radial-gradient(ellipse, rgba(201,168,76,0.12), transparent 65%);
  border-radius: 50%;
}
.cta-section h2 { color: white; margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.68); font-size: 1.08rem; max-width: 520px; margin: 0 auto 40px; }

/* === PAGE HERO (inner pages) === */
.page-hero {
  background: linear-gradient(140deg, #0a1a2e 0%, #0d1f35 50%, #152d4a 100%);
  padding: 140px 0 80px; color: white; text-align: center; position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.3), transparent);
}
.page-hero h1 { color: white; margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.68); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

/* === PROCESS STEPS === */
.process-list { display: flex; flex-direction: column; gap: 0; max-width: 780px; margin: 0 auto; }
.process-step { display: flex; gap: 32px; align-items: flex-start; position: relative; padding-bottom: 44px; }
.process-step:last-child { padding-bottom: 0; }
.process-step::before {
  content: ''; position: absolute; left: 25px; top: 54px; bottom: 0;
  width: 2px; background: linear-gradient(180deg, rgba(201,168,76,0.5), transparent);
}
.process-step:last-child::before { display: none; }
.process-num {
  width: 52px; height: 52px; background: var(--primary); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700;
  color: var(--gold); flex-shrink: 0; border: 2px solid rgba(201,168,76,0.3);
}
.process-content { padding-top: 12px; flex: 1; }
.process-content h3 { font-family: 'Inter', sans-serif; font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.process-content p { color: var(--text-muted); font-size: 0.92rem; }

/* === NRI FEATURES === */
.nri-features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.nri-feature {
  background: white; border-radius: var(--radius-lg); padding: 32px 28px;
  box-shadow: var(--shadow); border: 1px solid var(--border); transition: transform 0.3s;
}
.nri-feature:hover { transform: translateY(-4px); }
.nri-feature-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(13,31,53,0.07), rgba(201,168,76,0.1));
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 20px; border: 1px solid var(--border);
}
.nri-feature h3 { font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.nri-feature p { font-size: 0.88rem; color: var(--text-muted); }

/* === INSIGHTS === */
.insights-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.insight-card {
  background: white; border-radius: var(--radius-lg); padding: 32px;
  box-shadow: var(--shadow); border: 1px solid var(--border); border-top: 3px solid var(--gold);
  transition: transform 0.3s;
}
.insight-card:hover { transform: translateY(-4px); }
.insight-tag { display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.insight-card h3 { font-family: 'Inter', sans-serif; font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; color: var(--text-dark); }
.insight-card p { font-size: 0.88rem; color: var(--text-muted); }
.insight-meta { font-size: 0.78rem; color: var(--text-muted); margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--border); }

/* === PROPERTIES === */
.properties-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 28px; }
.property-card {
  background: white; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid var(--border); transition: transform 0.3s, box-shadow 0.3s;
}
.property-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.property-image {
  height: 210px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.property-image-icon { font-size: 3rem; opacity: 0.2; }
.property-type-badge {
  position: absolute; top: 16px; left: 16px;
  background: var(--gold); color: var(--primary);
  font-size: 0.72rem; font-weight: 700; padding: 4px 12px; border-radius: 100px;
}
.property-status-badge {
  position: absolute; top: 16px; right: 16px;
  background: rgba(255,255,255,0.15); color: white; border: 1px solid rgba(255,255,255,0.3);
  font-size: 0.72rem; font-weight: 600; padding: 4px 12px; border-radius: 100px;
  backdrop-filter: blur(4px);
}
.property-body { padding: 24px; }
.property-location { font-size: 0.8rem; color: var(--text-muted); display: flex; align-items: center; gap: 4px; margin-bottom: 6px; }
.property-name { font-family: 'Inter', sans-serif; font-size: 1.05rem; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.property-price { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--primary); margin-bottom: 16px; }
.property-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.property-tag { font-size: 0.74rem; background: var(--bg-light); color: var(--text-muted); padding: 4px 10px; border-radius: 4px; }

/* === CONTACT FORM === */
.contact-section { background: var(--bg-light); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 64px; align-items: start; }
.contact-info-items { display: flex; flex-direction: column; gap: 28px; margin-top: 32px; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-info-icon {
  width: 44px; height: 44px; background: var(--primary); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0;
}
.contact-info-item h4 { font-family: 'Inter', sans-serif; font-size: 0.92rem; font-weight: 700; margin-bottom: 3px; }
.contact-info-item p { font-size: 0.88rem; color: var(--text-muted); }
.contact-form-card { background: white; border-radius: var(--radius-lg); padding: 48px; box-shadow: var(--shadow-md); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.875rem; font-weight: 600; color: var(--text-dark); margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px; border: 1.5px solid var(--border); border-radius: var(--radius);
  font-family: inherit; font-size: 0.95rem; color: var(--text-dark); background: var(--bg-white);
  transition: border-color 0.2s, box-shadow 0.2s; outline: none; appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23718096' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }

/* === ABOUT PAGE === */
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.value-card {
  background: white; border-radius: var(--radius-lg); padding: 32px 24px;
  box-shadow: var(--shadow); border: 1px solid var(--border); text-align: center;
}
.value-icon { font-size: 2rem; margin-bottom: 16px; }
.value-card h3 { font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.value-card p { font-size: 0.88rem; color: var(--text-muted); }
.about-intro-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; align-items: center; }
.about-visual {
  background: linear-gradient(135deg, var(--primary), #1a3a5c);
  border-radius: var(--radius-lg); padding: 48px 40px; color: white;
  display: flex; flex-direction: column; gap: 24px;
}
.about-visual-stat { border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 20px; }
.about-visual-stat:last-child { border-bottom: none; padding-bottom: 0; }
.about-stat-num { font-family: 'Playfair Display', serif; font-size: 2.2rem; color: var(--gold); display: block; }
.about-stat-label { font-size: 0.84rem; color: rgba(255,255,255,0.55); margin-top: 4px; }

/* === FOOTER === */
.footer { background: var(--primary); color: white; padding: 80px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; margin-bottom: 64px; }
.footer-brand p { color: rgba(255,255,255,0.55); font-size: 0.88rem; margin-top: 16px; max-width: 280px; line-height: 1.7; }
.footer-heading { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { color: rgba(255,255,255,0.62); font-size: 0.88rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-contact-item { color: rgba(255,255,255,0.62); font-size: 0.88rem; display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 32px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
}
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 0.78rem; margin: 0; }
.disclaimer {
  font-size: 0.74rem; color: rgba(255,255,255,0.3); margin-top: 24px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06); line-height: 1.7;
}

/* === SCROLL ANIMATION === */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.55s ease, transform 0.55s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* === NOTIFICATION === */
.form-success {
  background: #f0fdf4; border: 1px solid #86efac; border-radius: var(--radius);
  padding: 16px 20px; color: #166534; font-size: 0.92rem; font-weight: 500;
  display: none; margin-top: 16px;
}
.form-success.show { display: block; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .about-intro-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  section { padding: 56px 0; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: var(--nav-height); left: 0; right: 0;
    background: var(--primary); padding: 24px; gap: 16px;
    border-top: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  }
  .nav-toggle { display: flex; }
  .problem-grid, .trust-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-stats { gap: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .flow-steps { flex-direction: column; align-items: center; gap: 0; }
  .flow-arrow { width: 2px; height: 32px; background: linear-gradient(180deg, var(--gold), var(--primary)); margin: 0 0 0 0; margin-bottom: 0; align-self: center; }
  .contact-form-card { padding: 32px 20px; }
  .hero-ctas { flex-direction: column; }
}
@media (max-width: 480px) {
  .btn { width: 100%; justify-content: center; }
  .hero-ctas .btn { width: auto; }
}
