/* ================================================
   NAGMANI SHARMA REAL ESTATE v2.0
   Playfair Display + Jost
   Deep Navy · Champagne Gold · Warm Ivory
   ================================================ */

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

:root {
  --navy:       #0c1b2e;
  --navy-2:     #162840;
  --navy-3:     #1e3554;
  --gold:       #c9993a;
  --gold-lt:    #e0b660;
  --gold-pale:  #f8f0de;
  --gold-faint: #fdf8f0;
  --ivory:      #faf7f2;
  --ivory-dk:   #f0ebe0;
  --white:      #ffffff;
  --ink:        #1c1c1c;
  --ink-2:      #3d3d3d;
  --ink-3:      #787070;
  --border:     #ddd5c8;
  --sh:         0 4px 24px rgba(12,27,46,.09);
  --sh-lg:      0 14px 56px rgba(12,27,46,.16);
  --r:          5px;
  --r2:         12px;
  --serif:      'Playfair Display', Georgia, serif;
  --sans:       'Jost', 'Segoe UI', sans-serif;
  --max:        1180px;
  --ease:       0.24s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--sans); color: var(--ink-2); background: var(--white); line-height: 1.7; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration: none; transition: color var(--ease); }
a:hover { color: var(--gold); }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ---- LAYOUT UTILITIES ---- */
.container { max-width: var(--max); margin: 0 auto; padding: 0 28px; }
.section { padding: 88px 0; }
.section-sm { padding: 56px 0; }
.text-center { text-align: center; }
.bg-navy { background: var(--navy); color: var(--white); }
.bg-ivory { background: var(--ivory); }
.bg-ivory-dk { background: var(--ivory-dk); }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 { font-family: var(--serif); line-height: 1.2; color: var(--navy); }
h1 { font-size: clamp(2.2rem, 4vw, 3.4rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); font-weight: 600; }
h4 { font-size: 1rem; font-weight: 700; font-family: var(--sans); text-transform: uppercase; letter-spacing: .06em; }
.eyebrow { font-family: var(--sans); font-size: .72rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 12px; }
.lead { font-size: 1.1rem; line-height: 1.82; color: var(--ink-2); }

/* Section headings */
.section-heading { margin-bottom: 52px; }
.section-heading h2 { margin-bottom: 14px; }
.section-heading p { font-size: 1rem; color: var(--ink-3); max-width: 600px; line-height: 1.8; }
.section-heading.text-center p { margin: 0 auto; }

/* ---- BUTTONS ---- */
.btn { display: inline-block; padding: 13px 30px; border-radius: var(--r); font-family: var(--sans); font-weight: 600; font-size: .88rem; letter-spacing: .05em; border: 2px solid transparent; transition: all var(--ease); cursor: pointer; text-align: center; }
.btn-primary { background: var(--gold); color: var(--white); border-color: var(--gold); }
.btn-primary:hover { background: var(--gold-lt); border-color: var(--gold-lt); color: var(--white); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,.55); }
.btn-outline-white:hover { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn-outline-gold { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn-outline-gold:hover { background: var(--gold); color: var(--white); }
.btn-sm { padding: 10px 22px; font-size: .82rem; }
.btn-lg { padding: 16px 38px; font-size: 1rem; }
.btn-group { display: flex; flex-wrap: wrap; gap: 14px; }

/* ================================================
   NAVIGATION
   ================================================ */
#site-header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,.07);
  box-shadow: 0 2px 20px rgba(12,27,46,.2);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 20px; }
.site-logo { display: flex; align-items: center; gap: 12px; }
.site-logo-avatar { width: 42px; height: 42px; border-radius: 50%; border: 2px solid var(--gold); overflow: hidden; flex-shrink: 0; }
.site-logo-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.site-logo-text { color: var(--white); }
.site-logo-text strong { display: block; font-family: var(--serif); font-size: 1.05rem; font-weight: 700; line-height: 1; letter-spacing: .01em; }
.site-logo-text span { display: block; font-size: .65rem; color: rgba(255,255,255,.5); letter-spacing: .07em; text-transform: uppercase; margin-top: 2px; }
#main-nav ul { list-style: none; display: flex; gap: 2px; align-items: center; }
#main-nav ul li a { font-size: .8rem; font-weight: 500; color: rgba(255,255,255,.76); padding: 8px 12px; border-radius: var(--r); transition: all var(--ease); letter-spacing: .03em; }
#main-nav ul li a:hover, #main-nav ul li a.active { color: var(--gold-lt); background: rgba(255,255,255,.07); }
.header-cta { flex-shrink: 0; }
.header-cta .btn { padding: 9px 20px; font-size: .82rem; }
.mobile-menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; flex-direction: column; gap: 5px; }
.mobile-menu-toggle span { display: block; width: 22px; height: 2px; background: var(--white); transition: all .3s; border-radius: 2px; }

/* Mobile nav dropdown */
#mobile-nav { display: none; background: var(--navy-2); padding: 16px 28px 24px; }
#mobile-nav a { display: block; color: rgba(255,255,255,.85); font-size: .9rem; padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,.07); }
#mobile-nav a:last-child { border: none; margin-top: 8px; }
#mobile-nav.open { display: block; }

/* ================================================
   HERO — HOME PAGE
   ================================================ */
.hero-home {
  background: var(--navy);
  min-height: 90vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 55% 70% at 85% 45%, rgba(201,153,58,.09) 0%, transparent 65%),
    radial-gradient(ellipse 35% 50% at 5% 85%, rgba(201,153,58,.06) 0%, transparent 55%),
    linear-gradient(160deg, rgba(22,40,64,.6) 0%, transparent 50%);
}
.hero-bg::after {
  content: '';
  position: absolute; top: 0; right: 50%; width: 1px; height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(201,153,58,.2), transparent);
  transform: skewX(-8deg);
}
.hero-content {
  position: relative; z-index: 2;
  padding: 80px 60px 80px 0;
  max-width: 560px; margin-left: auto;
}
.hero-content .eyebrow { color: var(--gold-lt); margin-bottom: 18px; }
.hero-content h1 { color: var(--white); margin-bottom: 22px; }
.hero-content h1 em { font-style: italic; color: var(--gold-lt); }
.hero-content .lead { color: rgba(255,255,255,.75); margin-bottom: 34px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.hero-badge { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18); color: rgba(255,255,255,.8); padding: 6px 14px; border-radius: 24px; font-size: .78rem; font-weight: 500; }
.hero-badge::before { content: '✓ '; color: var(--gold-lt); font-weight: 700; }

/* Hero photo panel */
.hero-photo-panel {
  position: relative; z-index: 2;
  height: 90vh; display: flex; align-items: flex-end; justify-content: center;
  overflow: hidden;
}
.hero-photo-panel .agent-img {
  width: 88%; max-width: 460px;
  object-fit: cover; object-position: top;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,.4));
}
.hero-badge-pill {
  position: absolute; top: 32px; right: 24px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(201,153,58,.35);
  backdrop-filter: blur(10px); border-radius: 40px;
  padding: 8px 18px; display: flex; align-items: center; gap: 8px;
  font-size: .75rem; color: rgba(255,255,255,.8); letter-spacing: .05em;
}
.badge-dot { width: 7px; height: 7px; border-radius: 50%; background: #4ade80; flex-shrink: 0; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.6;transform:scale(1.15)} }
.hero-stats-bar {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(12,27,46,.88); backdrop-filter: blur(12px);
  border-top: 1px solid rgba(201,153,58,.2);
  display: grid; grid-template-columns: repeat(4,1fr);
}
.hstat { text-align: center; padding: 18px 8px; border-right: 1px solid rgba(255,255,255,.08); }
.hstat:last-child { border-right: none; }
.hstat .n { font-family: var(--serif); font-size: 1.65rem; font-weight: 700; color: var(--gold-lt); line-height: 1; }
.hstat .l { font-size: .68rem; color: rgba(255,255,255,.5); margin-top: 4px; letter-spacing: .05em; }

/* ================================================
   TRUST BAR
   ================================================ */
.trust-bar { background: var(--gold-pale); border-bottom: 1px solid rgba(201,153,58,.22); padding: 18px 0; }
.trust-bar-inner { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: .8rem; font-weight: 500; color: var(--navy); letter-spacing: .02em; }
.trust-icon { font-size: 1rem; }

/* ================================================
   AGENT INTRO STRIP (homepage about section)
   ================================================ */
.about-strip { display: grid; grid-template-columns: 380px 1fr; gap: 60px; align-items: start; }
.about-photo-block { border-radius: var(--r2); overflow: hidden; box-shadow: var(--sh-lg); position: relative; }
.about-photo-block .main-photo { width: 100%; display: block; object-fit: cover; object-position: top; min-height: 440px; }
.about-name-badge {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(12,27,46,.95) 0%, rgba(12,27,46,.5) 70%, transparent 100%);
  padding: 36px 22px 22px;
}
.about-name-badge .nm { font-family: var(--serif); font-size: 1.45rem; color: var(--white); font-weight: 700; }
.about-name-badge .ttl { font-size: .76rem; color: var(--gold-lt); letter-spacing: .1em; text-transform: uppercase; margin-top: 4px; }
/* Business card viewer */
.card-viewer { margin-top: 18px; border: 1px solid var(--border); border-radius: var(--r2); overflow: hidden; box-shadow: var(--sh); }
.cv-tabs { display: flex; background: var(--ivory-dk); }
.cv-tab-btn { flex: 1; padding: 12px 8px; background: none; border: none; font-family: var(--sans); font-size: .76rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; cursor: pointer; color: var(--ink-3); border-bottom: 2.5px solid transparent; transition: all var(--ease); }
.cv-tab-btn.on { color: var(--gold); border-bottom-color: var(--gold); background: var(--white); }
.cv-face { display: none; }
.cv-face.on { display: block; }
.cv-face img { width: 100%; display: block; }
/* RECO verify */
.reco-verify-pill { display: flex; align-items: center; gap: 14px; padding: 16px 18px; background: linear-gradient(135deg, var(--navy), var(--navy-2)); border-radius: var(--r2); margin-top: 16px; }
.reco-verify-pill .rvp-text { font-size: .82rem; color: rgba(255,255,255,.8); line-height: 1.55; }
.reco-verify-pill .rvp-text strong { color: var(--gold-lt); display: block; margin-bottom: 2px; }
.reco-verify-pill .rvp-text a { color: var(--gold-lt); text-decoration: underline; font-size: .78rem; }
/* About content */
.about-content .eyebrow { margin-bottom: 10px; }
.about-content h2 { margin-bottom: 6px; }
.about-subtitle { color: var(--ink-3); font-size: .88rem; margin-bottom: 22px; }
.about-content p { font-size: .96rem; color: var(--ink-2); line-height: 1.85; }
.credentials-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin: 24px 0; }
.credentials-list li { display: flex; align-items: center; gap: 12px; padding: 11px 16px; background: var(--ivory); border: 1px solid var(--border); border-radius: var(--r); font-size: .88rem; color: var(--navy); transition: border-color var(--ease); }
.credentials-list li:hover { border-color: var(--gold); }
.credentials-list li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; }

/* ================================================
   AUDIENCE / SERVICE CARDS
   ================================================ */
.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.audience-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r2); padding: 30px 26px; transition: all var(--ease); position: relative; overflow: hidden; }
.audience-card::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-lt)); transform: scaleX(0); transform-origin: left; transition: transform var(--ease); }
.audience-card:hover { box-shadow: var(--sh); transform: translateY(-4px); }
.audience-card:hover::after { transform: scaleX(1); }
.audience-icon { font-size: 2rem; margin-bottom: 16px; }
.audience-card h3 { margin-bottom: 10px; font-size: 1.1rem; }
.audience-card p { font-size: .87rem; color: var(--ink-3); line-height: 1.75; margin-bottom: 18px; }
.audience-card .btn { font-size: .8rem; padding: 9px 20px; }

/* ================================================
   5-STEP PROCESS
   ================================================ */
.process-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.process-photo-wrap { position: relative; border-radius: var(--r2); overflow: hidden; box-shadow: var(--sh-lg); }
.process-photo-wrap img { width: 100%; display: block; object-fit: cover; object-position: top; min-height: 520px; }
.process-photo-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(12,27,46,.82) 0%, transparent 55%); display: flex; align-items: flex-end; padding: 28px; }
.process-quote { background: rgba(201,153,58,.12); border: 1px solid rgba(201,153,58,.4); border-radius: var(--r); padding: 14px 18px; }
.process-quote p { font-size: .84rem; color: var(--white); line-height: 1.65; font-style: italic; margin: 0; }
.process-steps-list { display: flex; flex-direction: column; gap: 0; }
.process-step { display: grid; grid-template-columns: 52px 1fr; gap: 18px; align-items: start; padding: 22px 0; border-bottom: 1px solid var(--border); }
.process-step:last-child { border-bottom: none; }
.step-number { width: 44px; height: 44px; border-radius: 50%; background: var(--navy); color: var(--white); display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 1.1rem; font-weight: 700; flex-shrink: 0; margin-top: 2px; }
.process-step h4 { color: var(--navy); margin-bottom: 5px; font-size: .88rem; }
.process-step p { font-size: .88rem; color: var(--ink-3); line-height: 1.72; margin: 0; }

/* ================================================
   TESTIMONIALS
   ================================================ */
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.testimonial-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: var(--r2); padding: 28px; transition: border-color var(--ease); }
.testimonial-card:hover { border-color: rgba(201,153,58,.4); }
.testimonial-stars { color: var(--gold-lt); font-size: 1rem; letter-spacing: 2px; margin-bottom: 14px; }
.testimonial-text { font-family: var(--serif); font-size: 1.04rem; color: rgba(255,255,255,.88); font-style: italic; line-height: 1.75; margin-bottom: 18px; }
.testimonial-author { font-weight: 600; color: var(--gold-lt); font-size: .88rem; display: block; }
.testimonial-location { font-size: .8rem; color: rgba(255,255,255,.5); }
.testimonial-placeholder { font-size: .72rem; color: rgba(255,255,255,.3); margin-top: 6px; font-style: italic; }

/* ================================================
   SERVICE AREAS
   ================================================ */
.areas-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.area-pill { background: var(--white); border: 1px solid var(--border); border-radius: var(--r); padding: 14px 18px; text-align: center; transition: all var(--ease); }
.area-pill:hover { background: var(--gold-pale); border-color: var(--gold); }
.area-pill strong { display: block; font-weight: 600; font-size: .88rem; color: var(--navy); font-family: var(--sans); }
.area-pill span { display: block; font-size: .74rem; color: var(--ink-3); margin-top: 2px; }

/* ================================================
   LEAD MAGNET BOX
   ================================================ */
.lead-magnet-box { display: flex; align-items: center; gap: 28px; background: var(--navy); border-radius: var(--r2); padding: 36px 40px; }
.lead-magnet-icon { font-size: 3rem; flex-shrink: 0; }
.lead-magnet-content .eyebrow { color: var(--gold-lt); }
.lead-magnet-content h3 { font-family: var(--serif); font-size: 1.4rem; color: var(--white); margin-bottom: 10px; }
.lead-magnet-content p { font-size: .92rem; color: rgba(255,255,255,.68); line-height: 1.75; margin-bottom: 20px; }

/* ================================================
   CTA BAND
   ================================================ */
.cta-band { background: var(--navy); padding: 80px 0; text-align: center; }
.cta-band h2 { color: var(--white); margin-bottom: 14px; }
.cta-band p { font-size: 1rem; color: rgba(255,255,255,.68); max-width: 560px; margin: 0 auto 32px; }
.cta-band .btn-group { justify-content: center; }

/* ================================================
   PAGE HERO (inner pages)
   ================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 60%, var(--navy-3) 100%);
  padding: 70px 0 56px; color: var(--white); position: relative; overflow: hidden;
}
.page-hero::after { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E"); pointer-events: none; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero .eyebrow { color: var(--gold-lt); }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero .lead { color: rgba(255,255,255,.78); max-width: 640px; }

/* ================================================
   CONTACT PAGE
   ================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 52px; align-items: start; }
.contact-info-card { background: var(--navy); border-radius: var(--r2); padding: 36px 30px; }
.contact-info-card h3 { font-family: var(--serif); font-size: 1.4rem; color: var(--white); margin-bottom: 28px; }
.contact-detail { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 22px; }
.contact-detail-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.contact-detail-text strong { display: block; font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-lt); margin-bottom: 3px; }
.contact-detail-text { font-size: .9rem; color: rgba(255,255,255,.75); line-height: 1.6; }
.contact-detail-text a { color: var(--white); }
.contact-detail-text a:hover { color: var(--gold-lt); }
.availability-note { padding: 14px 18px; background: rgba(201,153,58,.12); border: 1px solid rgba(201,153,58,.3); border-radius: var(--r); font-size: .85rem; color: rgba(255,255,255,.8); line-height: 1.6; margin-top: 24px; }

/* ---- FORM ---- */
.form-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r2); padding: 36px 32px; box-shadow: var(--sh); }
.form-card h3 { font-family: var(--serif); font-size: 1.5rem; color: var(--navy); margin-bottom: 6px; }
.form-card .form-subtitle { font-size: .84rem; color: var(--ink-3); margin-bottom: 26px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: .76rem; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; color: var(--navy); margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea { width: 100%; padding: 12px 14px; border: 1.5px solid var(--border); border-radius: var(--r); font-family: var(--sans); font-size: .9rem; color: var(--ink); background: var(--ivory); transition: border-color var(--ease); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--gold); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-consent { font-size: .76rem; color: var(--ink-3); line-height: 1.65; margin-bottom: 18px; }
.form-consent a { color: var(--gold); }
.form-submit { width: 100%; padding: 15px; background: var(--gold); color: var(--white); border: none; border-radius: var(--r); font-family: var(--sans); font-size: .96rem; font-weight: 700; cursor: pointer; letter-spacing: .05em; transition: background var(--ease); }
.form-submit:hover { background: var(--gold-lt); }
.form-submit:disabled { opacity: .7; cursor: not-allowed; }
.form-success { display: none; padding: 14px 18px; background: #dcfce7; border: 1px solid #86efac; border-radius: var(--r); font-size: .88rem; color: #166534; margin-top: 14px; }
.ns-form.sending .form-submit { opacity: .7; pointer-events: none; }

/* ================================================
   RECO SECTION
   ================================================ */
.reco-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 72px; align-items: start; }
.reco-pillars { display: flex; flex-direction: column; gap: 14px; margin: 28px 0; }
.rp { display: grid; grid-template-columns: 44px 1fr; gap: 14px; align-items: start; padding: 16px; background: var(--ivory); border: 1px solid var(--border); border-radius: var(--r); transition: border-color var(--ease); }
.rp:hover { border-color: var(--gold); }
.rp-ic { width: 44px; height: 44px; background: var(--navy); border-radius: var(--r); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.rp h4 { color: var(--navy); margin-bottom: 3px; font-size: .84rem; }
.rp p { font-size: .83rem; color: var(--ink-3); line-height: 1.65; margin: 0; }
.reco-warn { padding: 18px 20px; background: var(--gold-pale); border: 1px solid rgba(201,153,58,.3); border-radius: var(--r2); margin-top: 6px; }
.reco-warn h4 { color: var(--navy); margin-bottom: 6px; font-size: .84rem; }
.reco-warn p { font-size: .84rem; color: var(--ink-2); line-height: 1.72; margin: 0; }
/* Sidebar */
.reco-sidebar { position: sticky; top: 88px; }
.dl-main-card { background: var(--navy); border-radius: var(--r2); padding: 30px 26px; text-align: center; border: 1px solid rgba(201,153,58,.25); }
.dl-main-card .dico { font-size: 3rem; margin-bottom: 16px; }
.dl-main-card h3 { font-family: var(--serif); color: var(--white); font-size: 1.35rem; margin-bottom: 10px; }
.dl-main-card p { font-size: .84rem; color: rgba(255,255,255,.6); line-height: 1.72; margin-bottom: 22px; }
.dl-main-card .dl-note { font-size: .72rem; color: rgba(255,255,255,.35); margin: 8px 0 0; }
.btn-dl { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 20px; border-radius: var(--r); font-size: .84rem; font-weight: 600; text-align: center; border: 1.5px solid var(--gold); color: var(--gold-lt); background: transparent; cursor: pointer; transition: all var(--ease); text-decoration: none; font-family: var(--sans); }
.btn-dl:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }
.reco-links { margin-top: 16px; display: flex; flex-direction: column; gap: 8px; }
.reco-link { display: flex; align-items: center; gap: 10px; padding: 11px 16px; background: var(--ivory); border: 1px solid var(--border); border-radius: var(--r); font-size: .83rem; color: var(--navy); transition: all var(--ease); }
.reco-link:hover { background: var(--gold-pale); border-color: var(--gold); color: var(--navy); }
.reco-link span { flex: 1; }
.reco-link .arr { color: var(--gold); flex-shrink: 0; }

/* ================================================
   DOWNLOADS
   ================================================ */
.downloads-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.dl-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: var(--r2); padding: 28px 22px; display: flex; flex-direction: column; transition: all var(--ease); }
.dl-card:hover { background: rgba(255,255,255,.08); border-color: rgba(201,153,58,.4); }
.dl-card .dico { font-size: 2rem; margin-bottom: 14px; }
.dl-card h3 { font-family: var(--serif); font-size: 1.08rem; color: var(--white); margin-bottom: 8px; }
.dl-card p { font-size: .82rem; color: rgba(255,255,255,.55); line-height: 1.68; flex: 1; margin-bottom: 20px; }
.dl-badge { display: inline-block; font-size: .68rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; padding: 3px 10px; border-radius: 20px; margin-bottom: 12px; }
.dl-badge-off { background: rgba(201,153,58,.18); color: var(--gold-lt); border: 1px solid rgba(201,153,58,.3); }
.dl-badge-cs { background: rgba(255,255,255,.07); color: rgba(255,255,255,.4); border: 1px solid rgba(255,255,255,.1); }
.btn-dl-dis { border-color: rgba(255,255,255,.15); color: rgba(255,255,255,.3); cursor: not-allowed; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 11px 20px; border-radius: var(--r); font-size: .84rem; font-weight: 600; border: 1.5px solid rgba(255,255,255,.15); background: transparent; font-family: var(--sans); }

/* ================================================
   FAQ
   ================================================ */
.faq-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; align-items: start; }
.faq-item { border: 1px solid var(--border); border-radius: var(--r2); overflow: hidden; background: var(--white); }
.faq-question { width: 100%; background: none; border: none; padding: 20px 22px; display: flex; align-items: center; justify-content: space-between; gap: 16px; cursor: pointer; text-align: left; font-family: var(--sans); font-size: .9rem; font-weight: 600; color: var(--navy); transition: background var(--ease); }
.faq-question:hover { background: var(--ivory); }
.faq-item.open .faq-question { background: var(--gold-pale); color: var(--gold); }
.faq-icon { font-size: 1.1rem; transition: transform var(--ease); flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { display: none; padding: 16px 22px 20px; font-size: .88rem; color: var(--ink-3); line-height: 1.8; border-top: 1px solid var(--border); }
.faq-item.open .faq-answer { display: block; }

/* ================================================
   BLOG / RESOURCES
   ================================================ */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.blog-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r2); overflow: hidden; transition: all var(--ease); }
.blog-card:hover { box-shadow: var(--sh); transform: translateY(-3px); }
.blog-card-body { padding: 22px 20px; }
.blog-tag { font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 8px; }
.blog-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.blog-card h3 a { color: var(--navy); }
.blog-card h3 a:hover { color: var(--gold); }
.blog-card p { font-size: .86rem; color: var(--ink-3); line-height: 1.7; margin-bottom: 16px; }
.blog-card-footer { display: flex; align-items: center; justify-content: space-between; }
.blog-card-footer span { font-size: .78rem; color: var(--ink-3); }

/* ================================================
   FOOTER
   ================================================ */
#site-footer { background: #070f1c; padding: 56px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 44px; margin-bottom: 44px; }
.footer-brand-block .fl { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-avatar { width: 46px; height: 46px; border-radius: 50%; border: 2px solid var(--gold); overflow: hidden; flex-shrink: 0; }
.footer-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.footer-brand-block .nm { font-family: var(--serif); font-size: 1.05rem; color: var(--white); line-height: 1; }
.footer-brand-block .sub { font-size: .66rem; color: rgba(255,255,255,.4); letter-spacing: .07em; text-transform: uppercase; margin-top: 2px; }
.footer-tagline { font-size: .82rem; color: rgba(255,255,255,.42); line-height: 1.78; max-width: 300px; }
.footer-col h4 { font-family: var(--sans); font-size: .7rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--gold-lt); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a { font-size: .82rem; color: rgba(255,255,255,.48); transition: color var(--ease); }
.footer-col ul li a:hover { color: var(--gold-lt); }
.footer-contact-item { font-size: .82rem; color: rgba(255,255,255,.55); margin-bottom: 10px; display: flex; align-items: flex-start; gap: 8px; }
.footer-contact-item a { color: rgba(255,255,255,.7); }
.footer-contact-item a:hover { color: var(--gold-lt); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.06); padding-top: 22px; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; margin-bottom: 14px; }
.footer-bottom-inner span { font-size: .74rem; color: rgba(255,255,255,.3); }
.footer-disclaimer { font-size: .73rem; color: rgba(255,255,255,.28); line-height: 1.65; padding: 14px 18px; background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.05); border-radius: var(--r); }

/* ================================================
   STICKY MOBILE PHONE BAR
   ================================================ */
.sticky-phone-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
  background: var(--navy); border-top: 1px solid rgba(201,153,58,.25); padding: 12px 20px;
  gap: 10px;
}
.sticky-phone-bar a { flex: 1; text-align: center; padding: 13px; border-radius: var(--r); font-weight: 700; font-size: .88rem; letter-spacing: .04em; font-family: var(--sans); }

/* ================================================
   SCROLL REVEAL
   ================================================ */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .5s ease, transform .5s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1060px) {
  .hero-home { grid-template-columns: 1fr; min-height: auto; }
  .hero-photo-panel { height: 400px; }
  .hero-content { max-width: 100%; padding: 60px 28px 28px; margin: 0; }
  .hero-stats-bar { grid-template-columns: repeat(4,1fr); }
  .about-strip { grid-template-columns: 1fr; gap: 36px; }
  .about-photo-block .main-photo { min-height: 320px; }
  .reco-grid { grid-template-columns: 1fr; gap: 40px; }
  .reco-sidebar { position: static; }
  .process-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .audience-grid { grid-template-columns: 1fr 1fr; }
  .downloads-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .areas-grid { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 720px) {
  .mobile-menu-toggle { display: flex; }
  #main-nav { display: none; }
  .hero-stats-bar { grid-template-columns: repeat(2,1fr); }
  .hero-photo-panel { height: 320px; }
  .audience-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .faq-cols { grid-template-columns: 1fr; }
  .downloads-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .form-row-2 { grid-template-columns: 1fr; }
  .btn-group { flex-direction: column; }
  .lead-magnet-box { flex-direction: column; text-align: center; }
  .sticky-phone-bar { display: flex; }
  body { padding-bottom: 68px; }
  .container { padding: 0 18px; }
  .section { padding: 60px 0; }
}
@media (max-width: 480px) {
  .areas-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats-bar { grid-template-columns: repeat(2,1fr); }
  .hero-badges { gap: 8px; }
}
