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

:root {
  --bg:        #FFFFFF;
  --bg-mid:    #F5F3EF;
  --bg-light:  #EDEAE4;
  --navy:      #0D1B3E;
  --navy-mid:  #122248;
  --gold:      #B8922A;
  --gold-light:#C9A84C;
  --gold-dim:  rgba(184,146,42,0.09);
  --gold-border: rgba(184,146,42,0.30);
  --text:      #1A1A1A;
  --text-muted:#454545;
  --text-faint:#767676;
  --border:    #DDD9D3;
  --shadow:    0 4px 24px rgba(0,0,0,0.07);
  --shadow-gold: 0 8px 40px rgba(184,146,42,0.12);
  --radius:    6px;
  --radius-lg: 14px;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Montserrat', 'Trebuchet MS', sans-serif;
  --transition:   0.26s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); background: #ffffff; line-height: 1.75; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }
h1,h2,h3,h4 { font-family: var(--font-display); color: var(--navy); line-height: 1.2; font-weight: 500; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.8vw, 2.9rem); }
h3 { font-size: 1.25rem; font-weight: 600; }
em { font-style: italic; color: var(--gold); }
p { margin-bottom: 1rem; color: var(--text-muted); font-size: 0.93rem; line-height: 1.85; }
p:last-child { margin-bottom: 0; }
ul { list-style: none; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 28px; }
.section { padding: 96px 0; background: #ffffff; }
.section-alt { background: var(--bg-mid); }

.section-tag { display: inline-block; color: var(--gold); font-size: 0.63rem; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase; margin-bottom: 14px; padding-bottom: 13px; position: relative; }
.section-tag::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 22px; height: 1px; background: var(--gold); }
.section-header { text-align: center; max-width: 620px; margin: 0 auto 60px; }
.section-header h2 { margin-bottom: 14px; }
.section-header p { font-size: 1rem; }

.btn { display: inline-flex; align-items: center; gap: 9px; padding: 14px 32px; border-radius: 2px; font-family: var(--font-body); font-size: 0.71rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; cursor: pointer; transition: all var(--transition); border: 1px solid transparent; white-space: nowrap; }
.btn-primary { background: var(--gold); color: #fff; border-color: var(--gold); }
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); color: #fff; box-shadow: 0 6px 28px rgba(184,146,42,0.28); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--gold); border-color: var(--gold-border); }
.btn-outline:hover { background: var(--gold-dim); border-color: var(--gold); transform: translateY(-1px); }
.btn-large { padding: 16px 40px; font-size: 0.75rem; }
.btn-full { width: 100%; justify-content: center; }

.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(255,255,255,0.97); backdrop-filter: blur(18px); border-bottom: 1px solid var(--border); transition: all var(--transition); }
.nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); border-bottom-color: var(--gold-border); }
.nav-inner { max-width: 1140px; margin: 0 auto; padding: 0 28px; height: 70px; display: flex; align-items: center; justify-content: space-between; }
.logo { text-decoration: none; display: flex; align-items: center; }
.logo-text { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; color: var(--navy); letter-spacing: 0.02em; }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a { color: var(--text-muted); font-size: 0.69rem; font-weight: 600; letter-spacing: 0.11em; text-transform: uppercase; padding: 8px 15px; border-radius: 2px; transition: all var(--transition); }
.nav-links a:hover, .nav-links a.active { color: var(--navy); }
.nav-cta { background: var(--navy) !important; color: #fff !important; margin-left: 10px; padding: 9px 20px !important; border-radius: 2px; }
.nav-cta:hover { background: var(--navy-mid) !important; color: #fff !important; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); transition: all var(--transition); }

.hero { min-height: 100vh; display: flex; align-items: center; background: var(--navy); position: relative; overflow: hidden; padding: 130px 0 90px; }
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 65% 40%, rgba(184,146,42,0.11) 0%, transparent 55%), radial-gradient(ellipse at 10% 85%, rgba(184,146,42,0.06) 0%, transparent 45%); pointer-events: none; }
.hero::after { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px); background-size: 64px 64px; pointer-events: none; mask-image: radial-gradient(ellipse at center, black 20%, transparent 72%); -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 72%); }
.hero-content { max-width: 1140px; margin: 0 auto; padding: 0 28px; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 72px; align-items: center; width: 100%; position: relative; z-index: 1; }
.hero-tag { display: inline-flex; align-items: center; gap: 12px; color: var(--gold-light); font-size: 0.67rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 18px; }
.hero-tag::before { content: ''; display: block; width: 32px; height: 1px; background: var(--gold-light); }
.hero h1 { color: #ffffff; margin-bottom: 22px; font-weight: 400; }
.hero-sub { font-size: 1rem; color: rgba(255,255,255,0.72); margin-bottom: 38px; max-width: 490px; line-height: 1.85; }
.ct-stat-bar { display: flex; align-items: center; gap: 16px; background: rgba(184,146,42,0.12); border: 1px solid rgba(184,146,42,0.32); border-left: 3px solid var(--gold-light); border-radius: var(--radius); padding: 13px 18px; margin-bottom: 30px; }
.ct-stat-number { font-family: var(--font-display); font-size: 1.5rem; color: var(--gold-light); white-space: nowrap; font-weight: 500; flex-shrink: 0; }
.ct-stat-text { font-size: 0.79rem; color: rgba(255,255,255,0.72); line-height: 1.5; }
.ct-stat-text strong { color: var(--gold-light); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: flex; border: 1px solid rgba(184,146,42,0.3); border-radius: var(--radius); overflow: hidden; }
.stat { flex: 1; padding: 15px 16px; border-right: 1px solid rgba(184,146,42,0.2); }
.stat:last-child { border-right: none; }
.stat-num { font-family: var(--font-display); font-size: 1.4rem; color: var(--gold-light); line-height: 1; display: block; margin-bottom: 4px; }
.stat-label { font-size: 0.61rem; color: rgba(255,255,255,0.52); text-transform: uppercase; letter-spacing: 0.1em; line-height: 1.4; }
.stat-divider { display: none; }
.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; min-height: 300px; }
.pulse-ring { position: absolute; width: 280px; height: 280px; border-radius: 50%; border: 1px solid rgba(184,146,42,0.25); animation: pulse 4s ease infinite; }
@keyframes pulse { 0%,100% { transform: scale(1); opacity: 0.5; } 50% { transform: scale(1.08); opacity: 0.12; } }
.hero-card { background: rgba(255,255,255,0.07); border: 1px solid rgba(184,146,42,0.32); border-radius: var(--radius-lg); padding: 34px; position: relative; z-index: 1; min-width: 260px; box-shadow: var(--shadow-gold); }
.hero-card::before { content: ''; position: absolute; top: 0; left: 24px; right: 24px; height: 1px; background: linear-gradient(to right, transparent, var(--gold-light), transparent); }
.card-icon { width: 44px; height: 44px; border: 1px solid rgba(184,146,42,0.38); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold-light); font-family: var(--font-display); font-size: 1.2rem; margin-bottom: 14px; }
.card-text strong { display: block; color: #fff; font-family: var(--font-display); font-size: 1.1rem; margin-bottom: 5px; font-weight: 500; }
.card-text span { color: var(--gold-light); font-size: 0.79rem; }

.urgency-banner { background: #FBF7EE; border-top: 1px solid var(--gold-border); border-bottom: 1px solid var(--gold-border); padding: 12px 28px; }
.urgency-inner { max-width: 1140px; margin: 0 auto; display: flex; align-items: center; gap: 13px; }
.urgency-icon { font-size: 0.88rem; color: var(--gold); flex-shrink: 0; }
.urgency-banner p { margin: 0; color: #5C3D00; font-size: 0.8rem; }
.urgency-banner a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.urgency-banner strong { color: #3d2800; font-weight: 700; }

.problems-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1px; background: var(--gold-border); border: 1px solid var(--gold-border); border-radius: var(--radius-lg); overflow: hidden; }
.problem-card { background: #ffffff; padding: 34px 26px; transition: background var(--transition); }
.problem-card:hover { background: var(--bg-mid); }
.problem-icon { font-size: 1.4rem; margin-bottom: 16px; }
.problem-card h3 { margin-bottom: 11px; font-size: 1.1rem; }
.problem-card p { font-size: 0.86rem; margin: 0; }

.steps { display: grid; grid-template-columns: repeat(4,1fr); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.step { padding: 34px 26px; border-right: 1px solid var(--border); background: #ffffff; transition: background var(--transition); }
.step:last-child { border-right: none; }
.step:hover { background: var(--bg-mid); }
.step-num { font-family: var(--font-display); font-size: 3.2rem; color: var(--gold); opacity: 0.22; line-height: 1; margin-bottom: 14px; display: block; }
.step-content h3 { color: var(--navy); margin-bottom: 9px; font-size: 1rem; }
.step-content p { color: var(--text-muted); font-size: 0.84rem; margin: 0; }
.step-arrow { display: none; }

.pricing-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 1px; max-width: 860px; margin: 0 auto 26px; background: var(--gold-border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.pricing-card { background: #ffffff; padding: 42px 38px; position: relative; }
.pricing-card--featured { background: var(--bg-mid); }
.pricing-card--featured::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(to right, transparent, var(--gold), transparent); }
.pricing-badge { display: inline-block; color: var(--gold); font-size: 0.61rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 18px; padding-bottom: 13px; position: relative; }
.pricing-badge::after { content: ''; position: absolute; bottom: 0; left: 0; width: 18px; height: 1px; background: var(--gold); }
.pricing-card h3 { margin-bottom: 9px; font-size: 1.45rem; }
.pricing-amount { font-family: var(--font-display); font-size: 2.3rem; color: var(--gold); margin: 18px 0; font-weight: 400; }
.pricing-amount span { font-size: 0.8rem; color: var(--text-faint); font-family: var(--font-body); }
.pricing-card > p { margin-bottom: 22px; font-size: 0.89rem; }
.pricing-features { margin-bottom: 30px; display: flex; flex-direction: column; gap: 10px; }
.pricing-features li { padding-left: 18px; position: relative; font-size: 0.84rem; color: var(--text-muted); }
.pricing-features li::before { content: '—'; position: absolute; left: 0; color: var(--gold); font-size: 0.68rem; top: 1px; }
.pricing-note { text-align: center; font-size: 0.81rem; color: var(--text-faint); margin-top: 6px; }
.pricing-note a { color: var(--gold); }

.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 22px; max-width: 740px; margin: 0 auto; }
.testimonial-card { background: #ffffff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow); }
.testimonial-placeholder { border-color: var(--gold-border); border-style: dashed; box-shadow: none; }
.quote-mark { font-family: var(--font-display); font-size: 4.5rem; color: var(--gold); line-height: 0.6; margin-bottom: 18px; opacity: 0.2; }
.testimonial-card p { font-style: italic; margin-bottom: 26px; }
.testimonial-author { display: flex; align-items: center; gap: 13px; }
.author-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--bg-light); border: 1px solid var(--gold-border); flex-shrink: 0; }
.testimonial-author strong { display: block; color: var(--navy); font-size: 0.88rem; }
.testimonial-author span { font-size: 0.76rem; color: var(--text-faint); }

.cta-section { background: var(--navy) !important; }
.cta-box { text-align: center; max-width: 600px; margin: 0 auto; padding: 60px; border: 1px solid rgba(184,146,42,0.3); border-radius: var(--radius-lg); position: relative; }
.cta-box::before { content: ''; position: absolute; top: 0; left: 60px; right: 60px; height: 1px; background: linear-gradient(to right, transparent, var(--gold-light), transparent); }
.cta-box h2 { color: #ffffff; margin-bottom: 14px; }
.cta-box p { color: rgba(255,255,255,0.72); margin-bottom: 30px; }
.cta-email { margin-top: 18px !important; font-size: 0.81rem; color: rgba(255,255,255,0.48) !important; }
.cta-email a { color: var(--gold-light); }

.page-hero { background: var(--navy); padding: 130px 28px 76px; text-align: center; position: relative; overflow: hidden; border-bottom: 1px solid rgba(184,146,42,0.28); }
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 110%, rgba(184,146,42,0.09), transparent 55%); }
.page-hero .container { position: relative; z-index: 1; max-width: 700px; }
.page-hero h1 { color: #ffffff; margin-bottom: 14px; }
.page-hero p { font-size: 1.03rem; color: rgba(255,255,255,0.74); }
.page-hero .section-tag { color: var(--gold-light); }
.page-hero .section-tag::after { background: var(--gold-light); left: 50%; transform: translateX(-50%); }

.remediation-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 68px; align-items: start; }
.remediation-text { display: flex; flex-direction: column; gap: 15px; }
.remediation-text .btn { align-self: flex-start; margin-top: 6px; }
.remediation-list h3 { color: var(--navy); margin-bottom: 22px; }
.check-list { display: flex; flex-direction: column; gap: 12px; }
.check-list li { padding-left: 22px; position: relative; color: var(--text-muted); font-size: 0.87rem; }
.check-list li::before { content: '—'; position: absolute; left: 0; color: var(--gold); font-size: 0.68rem; top: 2px; }
.domains-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px,1fr)); gap: 1px; background: var(--gold-border); border: 1px solid var(--gold-border); border-radius: var(--radius-lg); overflow: hidden; }
.domain-card { background: #ffffff; padding: 26px 22px; transition: background var(--transition); }
.domain-card:hover { background: var(--bg-mid); }
.domain-num { font-family: var(--font-display); font-size: 2rem; color: var(--gold); opacity: 0.22; display: block; margin-bottom: 9px; line-height: 1; }
.domain-card h3 { font-size: 0.97rem; margin-bottom: 7px; }
.domain-card p { font-size: 0.82rem; margin: 0; }

.founder-inner { display: grid; grid-template-columns: 1fr 2fr; gap: 68px; align-items: start; }
.founder-card { background: var(--bg-mid); border: 1px solid var(--gold-border); border-radius: var(--radius-lg); padding: 34px; }
.founder-avatar { width: 76px; height: 76px; border-radius: 50%; background: var(--navy); border: 2px solid var(--gold-border); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 1.9rem; color: var(--gold-light); margin: 0 auto 26px; }
.founder-credentials { display: flex; flex-direction: column; gap: 15px; }
.credential { display: flex; flex-direction: column; gap: 3px; padding-bottom: 13px; border-bottom: 1px solid var(--border); }
.credential:last-child { border-bottom: none; padding-bottom: 0; }
.cred-label { font-size: 0.59rem; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: 0.16em; }
.cred-value { font-size: 0.88rem; color: var(--navy); font-weight: 600; }
.founder-text { display: flex; flex-direction: column; gap: 15px; }
.founder-stat-box { display: flex; align-items: center; gap: 18px; background: var(--gold-dim); border: 1px solid var(--gold-border); border-left: 3px solid var(--gold); border-radius: var(--radius); padding: 15px 18px; margin: 6px 0; }
.founder-stat-num { font-family: var(--font-display); font-size: 1.9rem; color: var(--gold); white-space: nowrap; line-height: 1; font-weight: 400; }
.founder-stat-text { font-size: 0.84rem; color: var(--text-muted); line-height: 1.5; }
.brands-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(145px,1fr)); gap: 1px; background: var(--gold-border); border: 1px solid var(--gold-border); border-radius: var(--radius-lg); overflow: hidden; max-width: 880px; margin: 0 auto; }
.brand-item { background: #ffffff; padding: 22px 18px; text-align: center; font-weight: 600; color: var(--text-muted); font-size: 0.84rem; letter-spacing: 0.03em; transition: all var(--transition); }
.brand-item:hover { background: var(--bg-light); color: var(--gold); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 1px; background: var(--gold-border); border: 1px solid var(--gold-border); border-radius: var(--radius-lg); overflow: hidden; }
.why-card { background: #ffffff; padding: 34px 26px; transition: background var(--transition); }
.why-card:hover { background: var(--bg-mid); }
.why-icon { font-size: 1.4rem; margin-bottom: 14px; }
.why-card h3 { margin-bottom: 11px; }

.contact-inner { display: grid; grid-template-columns: 3fr 2fr; gap: 60px; align-items: start; }
.contact-form-wrap h2, .contact-info h2 { margin-bottom: 30px; }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label { font-size: 0.63rem; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: 0.14em; }
.form-group input,.form-group select,.form-group textarea { font-family: var(--font-body); font-size: 0.87rem; color: var(--text); background: var(--bg-mid); border: 1px solid var(--border); border-radius: var(--radius); padding: 12px 16px; transition: border-color var(--transition); outline: none; width: 100%; }
.form-group input::placeholder,.form-group textarea::placeholder { color: var(--text-faint); }
.form-group select option { background: #ffffff; }
.form-group input:focus,.form-group select:focus,.form-group textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(184,146,42,0.09); }
.form-group textarea { resize: vertical; }
.form-note { font-size: 0.77rem; color: var(--text-faint); text-align: center; margin-top: -6px; }
.form-success { text-align: center; padding: 52px; background: var(--gold-dim); border-radius: var(--radius-lg); border: 1px solid var(--gold-border); }
.success-icon { width: 58px; height: 58px; border: 1px solid var(--gold-border); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: var(--gold); margin: 0 auto 18px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--border); }
.contact-icon { width: 36px; height: 36px; border: 1px solid var(--gold-border); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 0.88rem; color: var(--gold); }
.contact-item strong { display: block; color: var(--gold); margin-bottom: 3px; font-size: 0.63rem; text-transform: uppercase; letter-spacing: 0.14em; }
.contact-item a { color: var(--text-muted); font-size: 0.87rem; word-break: break-all; }
.contact-item a:hover { color: var(--gold); }
.contact-what-to-expect { background: var(--bg-mid); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; margin-top: 26px; }
.contact-what-to-expect h3 { margin-bottom: 16px; font-size: 0.98rem; }
.contact-urgency { display: flex; gap: 13px; background: #FBF7EE; border: 1px solid var(--gold-border); border-radius: var(--radius); padding: 18px; margin-top: 18px; }
.contact-urgency .urgency-icon { font-size: 0.98rem; flex-shrink: 0; }
.contact-urgency strong { color: #7a5500; display: block; margin-bottom: 5px; font-size: 0.8rem; }
.contact-urgency p { color: #5C3D00; font-size: 0.81rem; margin: 0; }

.footer { background: var(--navy); padding: 60px 0 0; border-top: 3px solid var(--gold); }
.footer-inner { max-width: 1140px; margin: 0 auto; padding: 0 28px 52px; display: grid; grid-template-columns: 2fr 1fr 2fr; gap: 52px; border-bottom: 1px solid rgba(255,255,255,0.09); }
.footer-brand p { color: rgba(255,255,255,0.52); font-size: 0.81rem; margin: 0; }
.footer-links { display: flex; flex-direction: column; gap: 11px; }
.footer-links a { color: rgba(255,255,255,0.52); font-size: 0.79rem; letter-spacing: 0.05em; transition: color var(--transition); }
.footer-links a:hover { color: var(--gold-light); }
.footer-contact { display: flex; flex-direction: column; gap: 9px; }
.footer-contact a { color: rgba(255,255,255,0.52); font-size: 0.81rem; word-break: break-all; }
.footer-contact a:hover { color: var(--gold-light); }
.footer-bottom { text-align: center; padding: 16px 28px; }
.footer-bottom p { color: rgba(255,255,255,0.3); font-size: 0.74rem; margin: 0; }
.logo-text--footer { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; color: #ffffff; display: block; margin-bottom: 12px; letter-spacing: 0.02em; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
.hero-tag     { animation: fadeUp 0.5s 0.10s ease both; }
.ct-stat-bar  { animation: fadeUp 0.5s 0.20s ease both; }
.hero h1      { animation: fadeUp 0.5s 0.26s ease both; }
.hero-sub     { animation: fadeUp 0.5s 0.34s ease both; }
.hero-actions { animation: fadeUp 0.5s 0.42s ease both; }
.hero-stats   { animation: fadeUp 0.5s 0.50s ease both; }
.hero-card    { animation: fadeUp 0.6s 0.38s ease both; }

@media (max-width: 960px) {
  .hero-content,.founder-inner,.remediation-inner,.contact-inner { grid-template-columns: 1fr; gap: 44px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .step { border-bottom: 1px solid var(--border); }
  .founder-card { position: static; }
}
@media (max-width: 640px) {
  .nav-links { display: none; position: fixed; top: 70px; left: 0; right: 0; background: rgba(255,255,255,0.99); flex-direction: column; padding: 14px; gap: 2px; border-bottom: 1px solid var(--border); box-shadow: var(--shadow); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .section { padding: 60px 0; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .steps { grid-template-columns: 1fr; }
  .cta-box { padding: 34px 20px; }
  .hero { padding: 110px 0 72px; }
  .pricing-cards { grid-template-columns: 1fr; }
}

/* NEW HOMEPAGE SECTIONS */
.problem-intro { max-width: 680px; margin: 0 auto; text-align: center; }
.problem-intro p { font-size: 1.05rem; color: #333333; margin-bottom: 0.6rem; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.two-col-text p { color: #444444; }
.emphasis-line { font-weight: 600; color: #0D1B3E !important; font-size: 0.95rem !important; margin-top: 1rem; }
.two-col-aside { display: flex; flex-direction: column; gap: 16px; }
.aside-card { background: #F5F4F1; border: 1px solid rgba(184,146,42,0.2); border-left: 3px solid #B8922A; border-radius: 6px; padding: 20px 22px; display: flex; align-items: flex-start; gap: 14px; }
.aside-card-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.aside-card h3 { font-size: 1rem; margin-bottom: 5px; color: #0D1B3E; }
.aside-card p { font-size: 0.84rem; color: #555555; margin: 0; }

.why-intro { max-width: 680px; margin: 0 auto; text-align: center; }
.why-intro p { font-size: 1.05rem; color: #333333; margin-bottom: 0.6rem; }
.why-intro p:last-child { color: #555555; font-size: 0.95rem; }

.proof-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 1px; background: rgba(184,146,42,0.2); border: 1px solid rgba(184,146,42,0.2); border-radius: 10px; overflow: hidden; }
.proof-card { background: #ffffff; padding: 30px 26px; transition: background 0.25s; }
.proof-card:hover { background: #F9F8F5; }
.proof-icon { font-size: 1.4rem; margin-bottom: 12px; }
.proof-card p { font-size: 0.9rem; color: #333333; margin: 0; font-weight: 500; }

.positioning-line { text-align: center; font-size: 0.92rem; color: #555555; margin-bottom: 32px; font-style: italic; }

.brands-note { text-align: center; font-size: 0.78rem; color: #999999; margin-top: 16px; }

@media (max-width: 768px) {
  .two-col { grid-template-columns: 1fr; gap: 36px; }
}

/* AUDIT FIRST SECTION */
.audit-first-section { background: #F5F4F1 !important; }
.audit-first-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.audit-first-steps { display: flex; flex-direction: column; gap: 0; }
.af-step { display: flex; align-items: flex-start; gap: 16px; padding: 20px 22px; background: #ffffff; border: 1px solid #E0DDD8; border-radius: 6px; }
.af-num { width: 32px; height: 32px; border-radius: 50%; background: #0D1B3E; color: #ffffff; font-size: 0.75rem; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.af-step strong { display: block; color: #0D1B3E; font-size: 0.88rem; font-weight: 700; margin-bottom: 4px; font-family: 'Montserrat', sans-serif; }
.af-step p { font-size: 0.83rem; color: #555555; margin: 0; }
.af-divider { text-align: center; color: #B8922A; font-size: 1.2rem; padding: 6px 0; }

/* IMPORTANT BOX */
.important-box { background: #FFF8E8; border: 1px solid rgba(184,146,42,0.4); border-left: 3px solid #B8922A; border-radius: 4px; padding: 12px 16px; margin: 1.2rem 0; font-size: 0.85rem; color: #5a3e00; }
.important-box strong { color: #3d2900; }

/* SERVICE NOTE */
.service-note { background: #F9F8F5; border: 1px solid #E0DDD8; border-radius: 4px; padding: 10px 14px; font-size: 0.8rem; color: #666666; margin-bottom: 20px; margin-top: -8px; }
.service-note--important { background: #FFF8E8; border-color: rgba(184,146,42,0.35); color: #5a3e00; }

/* REMEDIATION LABEL */
.remediation-label { display: inline-block; background: #0D1B3E; color: #ffffff; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 5px 12px; border-radius: 3px; margin-bottom: 16px; }

@media (max-width: 768px) {
  .audit-first-inner { grid-template-columns: 1fr; gap: 40px; }
}

/* SERVICE DETAIL LAYOUT */
.service-detail-inner { display: grid; grid-template-columns: 1fr 1.6fr; gap: 72px; align-items: start; }
.service-detail-header { position: sticky; top: 88px; display: flex; flex-direction: column; gap: 14px; }
.service-price-tag { font-family: var(--font-display); font-size: 1.05rem; color: var(--text-muted); padding-bottom: 14px; border-bottom: 1px solid var(--border); margin-bottom: 2px; }
.service-price-tag--gold { color: var(--gold); }
.service-subtitle { font-family: var(--font-display); font-size: 1.1rem; color: var(--gold); font-style: italic; margin-bottom: 0 !important; }
.service-emphasis { font-family: var(--font-display); font-size: 1.15rem; color: var(--navy); font-style: italic; margin-bottom: 0 !important; font-weight: 500; }
.service-positioning-line { font-size: 0.82rem; color: var(--text-muted); background: var(--bg-mid); border: 1px solid var(--border); border-left: 3px solid var(--text-faint); border-radius: var(--radius); padding: 13px 16px; line-height: 1.6; font-style: italic; }
.service-recovery-line { font-family: var(--font-display); font-size: 1rem; color: #5a3e00; font-style: italic; background: #FFF8E8; border: 1px solid rgba(184,146,42,0.35); border-left: 3px solid var(--gold); border-radius: var(--radius); padding: 14px 18px; line-height: 1.6; }
.service-detail-content { display: flex; flex-direction: column; gap: 0; }
.service-block { background: #ffffff; border: 1px solid var(--border); border-bottom: none; padding: 26px 30px; position: relative; transition: background var(--transition); }
.service-block:first-child { border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
.service-block:last-of-type { border-bottom: 1px solid var(--border); border-radius: 0 0 var(--radius-lg) var(--radius-lg); }
.service-block:hover { background: var(--bg-mid); }
.service-block--muted { background: var(--bg-mid); }
.service-block--muted:hover { background: var(--bg-light); }
.service-block-num { position: absolute; top: 22px; right: 28px; font-family: var(--font-display); font-size: 2.4rem; color: var(--gold); opacity: 0.15; line-height: 1; font-weight: 400; }
.service-block h3 { font-size: 1rem; margin-bottom: 12px; color: var(--navy); }
.service-scope-note { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 12px; font-style: italic; }
.service-list { display: flex; flex-direction: column; gap: 8px; }
.service-list li { padding-left: 20px; position: relative; font-size: 0.84rem; color: var(--text-muted); }
.service-list li::before { content: '—'; position: absolute; left: 0; color: var(--gold); font-size: 0.7rem; }
.service-list--muted li { color: var(--text-faint); }
.service-list--muted li::before { color: var(--text-faint); }
.service-output-box { background: var(--gold-dim); border: 1px solid var(--gold-border); border-radius: var(--radius); padding: 18px 22px; margin-top: 8px; }
.service-output-label { font-size: 0.63rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 7px; }
.service-output-box p { font-size: 0.87rem; margin: 0; }
.service-deliverables-box { background: var(--gold-dim); border: 1px solid var(--gold-border); border-radius: var(--radius-lg); padding: 26px 30px; margin-top: 8px; }
.service-deliverables-box h3 { font-size: 1rem; margin-bottom: 18px; }
.service-deliverables-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.service-deliverable { display: flex; align-items: flex-start; gap: 9px; font-size: 0.84rem; color: var(--text-muted); }
.service-deliverable-icon { color: var(--gold); flex-shrink: 0; font-weight: 700; }
.service-divider { background: var(--bg-light); border-top: 1px solid var(--gold-border); border-bottom: 1px solid var(--gold-border); }
.service-divider-inner { display: flex; align-items: center; justify-content: center; gap: 14px; padding: 16px 28px; }
.service-divider span { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-faint); }
.service-divider-arrow { font-size: 1.1rem; color: var(--gold); opacity: 0.6; }

@media (max-width: 960px) {
  .service-detail-inner { grid-template-columns: 1fr; gap: 36px; }
  .service-detail-header { position: static; }
  .service-deliverables-grid { grid-template-columns: 1fr; }
}

/* IMPACT CALLOUT */
.impact-callout { text-align: center; padding: 28px 32px; border: 1px solid var(--gold-border); border-radius: var(--radius-lg); background: var(--gold-dim); margin-top: 40px; }
.impact-callout-text { font-family: var(--font-display); font-size: 1.3rem; color: #5a3e00; font-style: italic; margin: 0; line-height: 1.5; }

/* DELIVERABLES STRIP */
.deliverables-strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1px; background: var(--gold-border); border: 1px solid var(--gold-border); border-radius: var(--radius-lg); overflow: hidden; }
.deliverable-item { display: flex; align-items: flex-start; gap: 16px; padding: 24px 22px; background: #ffffff; transition: background var(--transition); }
.deliverable-item:hover { background: var(--bg-mid); }
.deliverable-tick { color: var(--gold); font-weight: 700; font-size: 1rem; flex-shrink: 0; margin-top: 3px; }
.deliverable-item strong { display: block; color: var(--navy); font-size: 0.88rem; margin-bottom: 4px; font-family: var(--font-body); }
.deliverable-item p { font-size: 0.81rem; margin: 0; color: var(--text-muted); }

/* PRICING CARDS (3-column) */
.pricing-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--gold-border); border: 1px solid var(--gold-border); border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 20px; }
.pricing-card { background: #ffffff; padding: 36px 28px; position: relative; transition: background var(--transition); }
.pricing-card:hover { background: var(--bg-mid); }
.pricing-card--featured { background: var(--bg-mid); }
.pricing-card--featured::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(to right, transparent, var(--gold), transparent); }
.pricing-badge { display: inline-block; color: var(--gold); font-size: 0.6rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 16px; padding-bottom: 12px; position: relative; }
.pricing-badge::after { content: ''; position: absolute; bottom: 0; left: 0; width: 18px; height: 1px; background: var(--gold); }
.pricing-card h3 { margin-bottom: 8px; font-size: 1.3rem; }
.pricing-amount { font-family: var(--font-display); font-size: 2rem; color: var(--gold); margin: 16px 0; font-weight: 400; }
.pricing-amount span { font-size: 0.78rem; color: var(--text-faint); font-family: var(--font-body); }
.pricing-card > p { margin-bottom: 20px; font-size: 0.88rem; }
.pricing-features { margin-bottom: 28px; display: flex; flex-direction: column; gap: 9px; }
.pricing-features li { padding-left: 18px; position: relative; font-size: 0.83rem; color: var(--text-muted); }
.pricing-features li::before { content: '—'; position: absolute; left: 0; color: var(--gold); font-size: 0.68rem; }

@media (max-width: 900px) {
  .pricing-cards { grid-template-columns: 1fr; }
  .deliverables-strip { grid-template-columns: 1fr; }
}
