*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
--navy:    #0b1a2e;
--navy2:   #112440;
--navy3:   #1a3459;
--blue:    #2563eb;
--blue2:   #3b82f6;
--sky:     #60a5fa;
--gold:    #f59e0b;
--white:   #ffffff;
--offwhite:#f0f4fa;
--text:    #e2e8f4;
--muted:   #94a3b8;
--border:  rgba(255,255,255,0.08);
--card:    rgba(255,255,255,0.04);
--glow:    rgba(37,99,235,0.25);
}

html { scroll-behavior: smooth; }

body {
font-family: 'DM Sans', sans-serif;
background: var(--navy);
color: var(--text);
line-height: 1.6;
overflow-x: hidden;
}

/* ── NOISE TEXTURE OVERLAY ── */
body::before {
content: '';
position: fixed;
inset: 0;
background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
pointer-events: none;
z-index: 0;
}

/* ── NAVIGATION ── */
nav {
position: fixed;
top: 0; left: 0; right: 0;
z-index: 100;
padding: 0 5%;
height: 68px;
display: flex;
align-items: center;
justify-content: space-between;
background: rgba(11,26,46,0.85);
backdrop-filter: blur(12px);
border-bottom: 1px solid var(--border);
transition: background 0.3s;
}

.nav-brand {
font-family: 'DM Serif Display', serif;
font-size: 22px;
color: var(--white);
text-decoration: none;
letter-spacing: -0.5px;
}
.nav-brand span { color: var(--sky); }

.nav-links {
display: flex;
gap: 32px;
list-style: none;
}

.nav-links a {
font-size: 14px;
font-weight: 500;
color: var(--muted);
text-decoration: none;
transition: color 0.2s;
letter-spacing: 0.3px;
}
.nav-links a:hover { color: var(--white); }

.nav-cta {
background: var(--blue);
color: var(--white) !important;
padding: 8px 20px;
border-radius: 8px;
transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--blue2) !important; color: var(--white) !important; }

/* ── HERO ── */
#hero {
min-height: 100vh;
display: flex;
align-items: center;
padding: 120px 5% 80px;
position: relative;
overflow: hidden;
}

.hero-glow {
position: absolute;
top: -200px; right: -200px;
width: 700px; height: 700px;
background: radial-gradient(circle, rgba(37,99,235,0.18) 0%, transparent 70%);
pointer-events: none;
}

.hero-glow-2 {
position: absolute;
bottom: -300px; left: -100px;
width: 600px; height: 600px;
background: radial-gradient(circle, rgba(96,165,250,0.08) 0%, transparent 70%);
pointer-events: none;
}

.hero-grid {
display: grid;
grid-template-columns: 1fr 420px;
gap: 60px;
align-items: center;
max-width: 1100px;
margin: 0 auto;
width: 100%;
position: relative;
z-index: 1;
}

.hero-badge {
display: inline-flex;
align-items: center;
gap: 8px;
background: rgba(37,99,235,0.15);
border: 1px solid rgba(37,99,235,0.3);
color: var(--sky);
font-size: 12px;
font-weight: 600;
letter-spacing: 1.5px;
text-transform: uppercase;
padding: 6px 14px;
border-radius: 20px;
margin-bottom: 28px;
}

.hero-badge::before {
content: '';
width: 7px; height: 7px;
background: var(--sky);
border-radius: 50%;
animation: pulse 2s infinite;
}

@keyframes pulse {
0%, 100% { opacity: 1; transform: scale(1); }
50% { opacity: 0.5; transform: scale(0.8); }
}

h1 {
font-family: 'DM Serif Display', serif;
font-size: clamp(38px, 5vw, 58px);
line-height: 1.1;
color: var(--white);
letter-spacing: -1.5px;
margin-bottom: 24px;
}

h1 em {
font-style: italic;
color: var(--sky);
}

.hero-sub {
font-size: 18px;
color: var(--muted);
line-height: 1.7;
max-width: 500px;
margin-bottom: 40px;
}

.hero-actions {
display: flex;
gap: 16px;
flex-wrap: wrap;
}

.btn-primary {
display: inline-flex;
align-items: center;
gap: 8px;
background: var(--blue);
color: var(--white);
font-size: 15px;
font-weight: 600;
padding: 14px 28px;
border-radius: 10px;
text-decoration: none;
transition: background 0.2s, transform 0.15s;
box-shadow: 0 4px 24px rgba(37,99,235,0.35);
}
.btn-primary:hover { background: var(--blue2); transform: translateY(-1px); }

.btn-secondary {
display: inline-flex;
align-items: center;
gap: 8px;
background: transparent;
color: var(--text);
font-size: 15px;
font-weight: 500;
padding: 14px 28px;
border-radius: 10px;
border: 1px solid var(--border);
text-decoration: none;
transition: border-color 0.2s, color 0.2s, transform 0.15s;
}
.btn-secondary:hover { border-color: rgba(255,255,255,0.25); color: var(--white); transform: translateY(-1px); }

.hero-stats {
display: flex;
gap: 32px;
margin-top: 52px;
padding-top: 32px;
border-top: 1px solid var(--border);
}

.stat-item { display: flex; flex-direction: column; gap: 4px; }

.stat-number {
font-family: 'DM Serif Display', serif;
font-size: 30px;
color: var(--white);
line-height: 1;
}

.stat-label { font-size: 13px; color: var(--muted); }

/* HERO CARD */
.hero-card {
background: var(--navy2);
border: 1px solid var(--border);
border-radius: 20px;
padding: 36px;
box-shadow: 0 24px 64px rgba(0,0,0,0.4);
}

.hero-card-title {
font-size: 13px;
font-weight: 600;
letter-spacing: 1.5px;
text-transform: uppercase;
color: var(--muted);
margin-bottom: 24px;
}

.service-pill {
display: flex;
align-items: center;
gap: 12px;
padding: 14px 16px;
background: var(--card);
border: 1px solid var(--border);
border-radius: 10px;
margin-bottom: 10px;
transition: border-color 0.2s, background 0.2s;
}
.service-pill:hover { border-color: rgba(96,165,250,0.3); background: rgba(96,165,250,0.05); }

.pill-icon {
width: 38px; height: 38px;
background: rgba(37,99,235,0.15);
border-radius: 9px;
display: flex;
align-items: center;
justify-content: center;
font-size: 18px;
flex-shrink: 0;
}

.pill-text { flex: 1; }
.pill-name { font-size: 14px; font-weight: 600; color: var(--white); }
.pill-desc { font-size: 12px; color: var(--muted); margin-top: 1px; }

.pill-arrow { color: var(--muted); font-size: 14px; }

.hero-card-cta {
margin-top: 20px;
padding: 14px 16px;
background: rgba(245,158,11,0.1);
border: 1px solid rgba(245,158,11,0.25);
border-radius: 10px;
display: flex;
align-items: center;
gap: 10px;
font-size: 13px;
color: var(--gold);
font-weight: 500;
}

/* ── SECTION COMMON ── */
section {
padding: 96px 5%;
position: relative;
z-index: 1;
}

.section-inner {
max-width: 1100px;
margin: 0 auto;
}

.section-label {
display: inline-flex;
align-items: center;
gap: 10px;
font-size: 11px;
font-weight: 700;
letter-spacing: 3px;
text-transform: uppercase;
color: var(--sky);
margin-bottom: 16px;
}

.section-label::before {
content: '';
display: block;
width: 24px; height: 1px;
background: var(--sky);
}

h2 {
font-family: 'DM Serif Display', serif;
font-size: clamp(28px, 4vw, 42px);
color: var(--white);
letter-spacing: -1px;
line-height: 1.15;
margin-bottom: 16px;
}

h2 em { font-style: italic; color: var(--sky); }

.section-sub {
font-size: 17px;
color: var(--muted);
max-width: 520px;
line-height: 1.7;
margin-bottom: 56px;
}

/* ── SERVICES ── */
#services { background: var(--navy2); }

.services-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 20px;
}

.service-card {
background: var(--navy);
border: 1px solid var(--border);
border-radius: 16px;
padding: 32px 28px;
transition: border-color 0.25s, transform 0.2s;
position: relative;
overflow: hidden;
}

.service-card::after {
content: '';
position: absolute;
top: 0; left: 0; right: 0;
height: 2px;
background: linear-gradient(90deg, var(--blue), var(--sky));
transform: scaleX(0);
transform-origin: left;
transition: transform 0.3s;
}

.service-card:hover { border-color: rgba(96,165,250,0.25); transform: translateY(-4px); }
.service-card:hover::after { transform: scaleX(1); }

.service-icon {
width: 52px; height: 52px;
background: rgba(37,99,235,0.12);
border: 1px solid rgba(37,99,235,0.2);
border-radius: 14px;
display: flex;
align-items: center;
justify-content: center;
font-size: 24px;
margin-bottom: 20px;
}

.service-card h3 {
font-size: 18px;
font-weight: 600;
color: var(--white);
margin-bottom: 10px;
}

.service-card p {
font-size: 14px;
color: var(--muted);
line-height: 1.7;
margin-bottom: 20px;
}

.service-list {
list-style: none;
display: flex;
flex-direction: column;
gap: 8px;
}

.service-list li {
font-size: 13px;
color: var(--text);
display: flex;
align-items: flex-start;
gap: 8px;
}

.service-list li::before {
content: '›';
color: var(--sky);
font-weight: 700;
flex-shrink: 0;
margin-top: 1px;
}

/* ── ABOUT ── */
#about {
background: var(--navy);
}

.about-grid {
display: grid;
grid-template-columns: 1fr 460px;
gap: 72px;
align-items: center;
}

.about-img-wrap {
position: relative;
}

.about-avatar {
width: 100%;
aspect-ratio: 4/4.5;
background: var(--navy2);
border: 1px solid var(--border);
border-radius: 20px;
align-items: center;
justify-content: center;
font-size: 100px;
position: relative;
overflow: hidden;
}

.about-avatar::before {
content: '';
position: absolute;
inset: 0;
background: radial-gradient(circle at 60% 40%, rgba(37,99,235,0.12) 0%, transparent 60%);
}

.about-badge {
position: absolute;
bottom: -16px; right: -16px;
background: var(--navy2);
border: 1px solid var(--border);
border-radius: 14px;
padding: 16px 20px;
text-align: center;
box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.about-badge-num {
font-family: 'DM Serif Display', serif;
font-size: 32px;
color: var(--white);
line-height: 1;
}

.about-badge-label {
font-size: 11px;
color: var(--muted);
margin-top: 4px;
}

.about-content h2 { margin-bottom: 20px; }

.about-body {
font-size: 16px;
color: var(--muted);
line-height: 1.8;
margin-bottom: 16px;
}

.about-credentials {
display: flex;
flex-direction: column;
gap: 12px;
margin-top: 32px;
}

.credential {
display: flex;
align-items: center;
gap: 14px;
padding: 14px 18px;
background: var(--card);
border: 1px solid var(--border);
border-radius: 10px;
}

.credential-icon {
font-size: 20px;
flex-shrink: 0;
}

.credential-text {
font-size: 14px;
font-weight: 500;
color: var(--text);
}

.credential-sub {
font-size: 12px;
color: var(--muted);
margin-top: 2px;
}

/* ── PRICING ── */
#pricing { background: var(--navy2); }

.pricing-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 20px;
margin-bottom: 48px;
}

.pricing-card {
background: var(--navy);
border: 1px solid var(--border);
border-radius: 20px;
overflow: hidden;
position: relative;
transition: transform 0.2s;
}

.pricing-card:hover { transform: translateY(-4px); }

.pricing-card.featured {
border-color: rgba(37,99,235,0.5);
box-shadow: 0 0 0 1px rgba(37,99,235,0.2), 0 16px 48px rgba(37,99,235,0.15);
}

.pricing-popular {
position: absolute;
top: 16px; right: 16px;
background: var(--blue);
color: white;
font-size: 10px;
font-weight: 700;
letter-spacing: 1px;
text-transform: uppercase;
padding: 4px 10px;
border-radius: 20px;
}

.pricing-header {
padding: 28px 28px 20px;
border-bottom: 1px solid var(--border);
}

.pricing-tier {
font-size: 11px;
font-weight: 700;
letter-spacing: 2px;
text-transform: uppercase;
color: var(--sky);
margin-bottom: 6px;
}

.pricing-name {
font-family: 'DM Serif Display', serif;
font-size: 22px;
color: var(--white);
margin-bottom: 16px;
}

.pricing-amount {
display: flex;
align-items: baseline;
gap: 4px;
}

.pricing-amount .dollar {
font-family: 'DM Serif Display', serif;
font-size: 42px;
color: var(--white);
line-height: 1;
}

.pricing-amount .period {
font-size: 14px;
color: var(--muted);
}

.pricing-best {
font-size: 12px;
color: var(--muted);
font-style: italic;
margin-top: 8px;
}

.pricing-body { padding: 24px 28px; }

.pricing-feature {
display: flex;
align-items: flex-start;
gap: 10px;
padding: 8px 0;
font-size: 14px;
color: var(--text);
border-bottom: 1px solid var(--border);
}
.pricing-feature:last-child { border-bottom: none; }

.pricing-check {
width: 18px; height: 18px;
background: rgba(37,99,235,0.15);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 10px;
color: var(--sky);
font-weight: 700;
flex-shrink: 0;
margin-top: 1px;
}

.pricing-note {
text-align: center;
font-size: 14px;
color: var(--muted);
padding: 24px;
background: var(--card);
border: 1px solid var(--border);
border-radius: 12px;
}

.pricing-note a { color: var(--sky); text-decoration: none; font-weight: 500; }

/* ── TESTIMONIALS ── */
#testimonials { background: var(--navy); }

.testimonials-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 20px;
}

.testimonial-card {
background: var(--navy2);
border: 1px solid var(--border);
border-radius: 16px;
padding: 28px;
position: relative;
}

.testimonial-stars {
color: var(--gold);
font-size: 14px;
letter-spacing: 2px;
margin-bottom: 16px;
}

.testimonial-text {
font-size: 14px;
color: var(--text);
line-height: 1.75;
font-style: italic;
margin-bottom: 24px;
}

.testimonial-author {
display: flex;
align-items: center;
gap: 12px;
}

.testimonial-avatar {
width: 40px; height: 40px;
border-radius: 50%;
background: rgba(37,99,235,0.2);
border: 1px solid rgba(37,99,235,0.3);
display: flex;
align-items: center;
justify-content: center;
font-size: 16px;
font-weight: 700;
color: var(--sky);
flex-shrink: 0;
}

.testimonial-name {
font-size: 14px;
font-weight: 600;
color: var(--white);
}

.testimonial-role {
font-size: 12px;
color: var(--muted);
margin-top: 2px;
}

.testimonial-placeholder {
text-align: center;
padding: 48px 0 16px;
font-size: 14px;
color: var(--muted);
font-style: italic;
}

/* ── CONTACT ── */
#contact { background: var(--navy2); }

.contact-grid {
display: grid;
grid-template-columns: 1fr 480px;
gap: 72px;
align-items: start;
}

.contact-info h2 { margin-bottom: 16px; }

.contact-desc {
font-size: 16px;
color: var(--muted);
line-height: 1.75;
margin-bottom: 36px;
}

.contact-methods {
display: flex;
flex-direction: column;
gap: 12px;
}

.contact-method {
display: flex;
align-items: center;
gap: 14px;
padding: 16px 18px;
background: var(--card);
border: 1px solid var(--border);
border-radius: 12px;
text-decoration: none;
transition: border-color 0.2s;
}
.contact-method:hover { border-color: rgba(96,165,250,0.3); }

.contact-method-icon {
width: 40px; height: 40px;
background: rgba(37,99,235,0.12);
border-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
font-size: 18px;
flex-shrink: 0;
}

.contact-method-label {
font-size: 12px;
color: var(--muted);
margin-bottom: 2px;
}

.contact-method-value {
font-size: 15px;
font-weight: 500;
color: var(--white);
}

/* FORM */
.contact-form {
background: var(--navy);
border: 1px solid var(--border);
border-radius: 20px;
padding: 36px;
}

.contact-form h3 {
font-size: 20px;
font-weight: 600;
color: var(--white);
margin-bottom: 6px;
}

.form-sub {
font-size: 14px;
color: var(--muted);
margin-bottom: 28px;
}

.form-row {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 14px;
}

.form-group {
display: flex;
flex-direction: column;
gap: 6px;
margin-bottom: 14px;
}

.form-group label {
font-size: 13px;
font-weight: 500;
color: var(--muted);
letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
background: var(--navy2);
border: 1px solid var(--border);
border-radius: 10px;
color: var(--white);
font-family: 'DM Sans', sans-serif;
font-size: 14px;
padding: 12px 14px;
outline: none;
transition: border-color 0.2s;
width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
border-color: rgba(37,99,235,0.6);
}

.form-group select option { background: var(--navy2); }

.form-group textarea { resize: vertical; min-height: 100px; }

.form-group input::placeholder,
.form-group textarea::placeholder {
color: #4a5568;
}

.form-submit {
width: 100%;
background: var(--blue);
color: var(--white);
font-family: 'DM Sans', sans-serif;
font-size: 15px;
font-weight: 600;
padding: 14px;
border: none;
border-radius: 10px;
cursor: pointer;
transition: background 0.2s, transform 0.15s;
margin-top: 4px;
box-shadow: 0 4px 24px rgba(37,99,235,0.3);
}
.form-submit:hover { background: var(--blue2); transform: translateY(-1px); }
.form-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }

.form-result {
font-size: 14px;
text-align: center;
margin-top: 14px;
padding: 10px 12px;
border-radius: 8px;
min-height: 1em;
transition: background 0.2s, color 0.2s;
}
.form-result:empty { display: none; }
.form-result--success {
background: #ecfdf5;
color: #065f46;
border: 1px solid #a7f3d0;
}
.form-result--error {
background: #fef2f2;
color: #991b1b;
border: 1px solid #fecaca;
}

.form-note {
font-size: 12px;
color: var(--muted);
text-align: center;
margin-top: 12px;
}

/* ── FOOTER ── */
footer {
background: var(--navy);
border-top: 1px solid var(--border);
padding: 40px 5%;
position: relative;
z-index: 1;
}

.footer-inner {
max-width: 1100px;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 16px;
}

.footer-brand {
font-family: 'DM Serif Display', serif;
font-size: 20px;
color: var(--white);
letter-spacing: -0.5px;
}
.footer-brand span { color: var(--sky); }

.footer-copy {
font-size: 13px;
color: var(--muted);
}

.footer-links {
display: flex;
gap: 24px;
list-style: none;
}

.footer-links a {
font-size: 13px;
color: var(--muted);
text-decoration: none;
transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }

/* ── DIVIDER ── */
.section-divider {
width: 100%;
height: 1px;
background: var(--border);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
.hero-grid, .about-grid, .contact-grid {
grid-template-columns: 1fr;
}
.hero-card, .about-img-wrap { display: none; }
.services-grid, .pricing-grid, .testimonials-grid {
grid-template-columns: 1fr;
}
.form-row { grid-template-columns: 1fr; }
.nav-links { display: none; }
}
