:root {
/* Brand */
--brand-primary: #2D475E;
--brand-dark: #1E3A52;
--brand-accent: #E1A738;
--brand-accent-hover: #C99228;
--brand-trust: #3F716B;

/* Text */
--text-primary: #24323B;
--text-secondary: #59636B;
--text-muted: #707578;
--text-on-dark: #FFFFFF;

/* Backgrounds */
--bg-white: #FFFFFF;
--bg-warm: #F7F3EC;
--bg-sage: #E6EFE9;
--bg-blue-soft: #EDF3F7;

/* UI */
--border-light: #D8D9D8;
--error: #B42318;

/* Typography */
--font-heading: "Manrope", "Inter", system-ui, sans-serif;
--font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

/* Shape */
--radius-input: 8px;
--radius-button: 10px;
--radius-card: 16px;
--radius-panel: 20px;

/* Shadow */
--shadow-card: 0 10px 30px rgba(30, 58, 82, 0.08);
--shadow-hover: 0 14px 38px rgba(30, 58, 82, 0.12);

/* Motion */
--transition-fast: 180ms ease;
}

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

html { scroll-behavior: smooth; }

body {
font-family: var(--font-body);
background: var(--bg-white);
color: var(--text-primary);
font-size: 17px;
line-height: 1.65;
-webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
font-family: var(--font-heading);
color: var(--brand-dark);
line-height: 1.15;
letter-spacing: -0.02em;
}

a { color: var(--brand-primary); text-underline-offset: 3px; }
a:hover { color: var(--brand-dark); }

/* NAV */
nav {
padding: 0.6rem 2rem;
display: flex;
justify-content: space-between;
align-items: center;
background: var(--bg-white);
border-bottom: 1px solid var(--border-light);
position: relative;
gap: 1rem;
}
.logo { display: flex; align-items: center; }
.logo a { display: block; line-height: 0; }
.logo img { height: 80px; width: auto; display: block; }
@media (max-width: 480px) {
.logo img { height: 56px; }
}
.nav-menu { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }
.nav-link {
color: var(--text-primary);
text-decoration: none;
font-weight: 500;
font-size: 0.95rem;
white-space: nowrap;
display: inline-flex;
align-items: center;
min-height: 44px;
}
.nav-link:hover { color: var(--brand-dark); text-decoration: underline; }
.nav-link[aria-current="page"] { color: var(--brand-primary); font-weight: 700; }
.nav-phone {
color: var(--brand-primary);
text-decoration: none;
font-weight: 500;
font-size: 0.95rem;
white-space: nowrap;
display: inline-flex;
align-items: center;
min-height: 44px;
}
.nav-phone:hover { color: var(--brand-dark); text-decoration: underline; }
.nav-toggle {
display: none;
background: none;
border: 1px solid var(--border-light);
border-radius: var(--radius-input);
min-width: 48px;
min-height: 44px;
cursor: pointer;
align-items: center;
justify-content: center;
}
.nav-toggle svg { width: 24px; height: 24px; stroke: var(--brand-primary); stroke-width: 2; fill: none; stroke-linecap: round; }
.nav-toggle:focus-visible { outline: 3px solid rgba(45, 71, 94, 0.28); outline-offset: 3px; }

@media (max-width: 900px) {
.nav-toggle { display: inline-flex; }
.nav-menu {
display: none;
position: absolute;
top: 100%;
left: 0;
right: 0;
background: var(--bg-white);
border-bottom: 1px solid var(--border-light);
box-shadow: var(--shadow-card);
flex-direction: column;
align-items: stretch;
gap: 0;
padding: 0.5rem 1.1rem 1rem;
z-index: 900;
}
.nav-menu.nav-open { display: flex; }
.nav-menu .nav-link, .nav-menu .nav-phone { padding: 0.35rem 0; }
.nav-menu .nav-cta { margin-top: 0.5rem; }
}

/* BUTTONS */
.btn-primary {
display: inline-flex;
align-items: center;
justify-content: center;
background: var(--brand-accent);
color: var(--text-primary);
border: 1px solid var(--brand-accent);
border-radius: var(--radius-button);
min-height: 48px;
padding: 14px 24px;
font-family: var(--font-body);
font-size: 1rem;
font-weight: 700;
text-decoration: none;
cursor: pointer;
transition: all var(--transition-fast);
}
.btn-primary:hover {
background: var(--brand-accent-hover);
border-color: var(--brand-accent-hover);
color: var(--text-primary);
transform: translateY(-1px);
}
.btn-primary:focus-visible {
outline: 3px solid rgba(45, 71, 94, 0.28);
outline-offset: 3px;
}
.nav-cta { min-height: 44px; padding: 10px 20px; font-size: 0.95rem; }

.form-phone { text-align: center; font-size: 0.9375rem; color: var(--text-secondary); margin-top: 0.35rem; }
.form-phone a, .hero-scroll-hint a { color: var(--brand-primary); font-weight: 500; }
.form-phone a:hover, .hero-scroll-hint a:hover { color: var(--brand-dark); }

/* HERO */
.hero-wrap { background: var(--bg-warm); }
.hero {
max-width: 780px;
margin: 0 auto;
padding: 5.5rem 2rem 3.5rem;
text-align: center;
}
.hero-eyebrow {
display: inline-block;
background: var(--bg-blue-soft);
color: var(--brand-primary);
font-size: 0.8rem;
font-weight: 700;
letter-spacing: 0.06em;
padding: 0.4rem 1rem;
border-radius: 999px;
margin-bottom: 1.5rem;
}
h1 {
font-size: clamp(2.3rem, 5vw, 3.6rem);
font-weight: 800;
line-height: 1.1;
margin-bottom: 1.25rem;
}
h1 span { color: var(--brand-trust); }
.hero-sub {
font-size: 1.2rem;
color: var(--text-secondary);
max-width: 620px;
margin: 0 auto 2rem;
}
.hero-scroll-hint {
font-size: 0.9375rem;
color: var(--text-muted);
margin-top: 1rem;
}

/* PAGE HERO (subpages) */
.page-hero {
background: var(--bg-warm);
text-align: center;
padding: 4rem 2rem 3rem;
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 2.9rem); }
.page-hero .hero-sub { margin-bottom: 0; }

/* TRUST STRIP */
.trust-strip {
background: var(--bg-sage);
display: flex;
justify-content: center;
gap: 2.5rem;
flex-wrap: wrap;
padding: 1.4rem 2rem;
}
.trust-item {
display: flex;
align-items: center;
gap: 0.6rem;
font-size: 0.95rem;
font-weight: 500;
color: var(--text-primary);
}
.trust-icon {
width: 22px; height: 22px;
stroke: var(--brand-primary);
stroke-width: 1.8;
fill: none;
stroke-linecap: round;
stroke-linejoin: round;
flex-shrink: 0;
}

/* SECTIONS */
.section {
max-width: 900px;
margin: 0 auto;
padding: 5.5rem 2rem;
text-align: center;
}
.section-label {
font-size: 0.8rem;
font-weight: 700;
letter-spacing: 0.06em;
color: var(--brand-trust);
text-transform: uppercase;
margin-bottom: 0.75rem;
}
h2 {
font-size: clamp(1.9rem, 3.5vw, 2.5rem);
font-weight: 800;
margin-bottom: 1rem;
}
.section-intro {
color: var(--text-secondary);
max-width: 640px;
margin: 0 auto 3rem;
font-size: 1.05rem;
}
.steps {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 1.5rem;
text-align: left;
}
.step-card {
background: var(--bg-white);
border: 1px solid var(--border-light);
border-radius: var(--radius-card);
box-shadow: var(--shadow-card);
padding: 1.75rem;
transition: box-shadow var(--transition-fast);
}
.step-card:hover { box-shadow: var(--shadow-hover); }
.step-num {
display: inline-flex;
align-items: center;
justify-content: center;
width: 44px; height: 44px;
border-radius: 50%;
background: var(--brand-primary);
color: var(--text-on-dark);
font-family: var(--font-heading);
font-size: 1rem;
font-weight: 700;
margin-bottom: 1rem;
}
.step-title {
font-family: var(--font-heading);
font-weight: 700;
font-size: 1.1rem;
color: var(--brand-dark);
margin-bottom: 0.5rem;
}
.step-desc { font-size: 0.95rem; color: var(--text-secondary); }

/* PROSE (About / content pages) */
.prose {
max-width: 720px;
margin: 0 auto;
text-align: left;
}
.prose p { margin-bottom: 1.15rem; color: var(--text-primary); }
.prose h2 { margin-top: 2.5rem; font-size: 1.6rem; }
.prose h2:first-child { margin-top: 0; }
.prose ul { margin: 0 0 1.15rem 1.25rem; }
.prose li { margin-bottom: 0.5rem; }

/* VALUE / SITUATION CARDS */
.card-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 1.5rem;
text-align: left;
}
.card-grid.two-col { grid-template-columns: repeat(2, 1fr); }
.info-card {
background: var(--bg-white);
border: 1px solid var(--border-light);
border-radius: var(--radius-card);
box-shadow: var(--shadow-card);
padding: 1.5rem 1.75rem;
}
.info-card h3 {
font-size: 1.05rem;
font-weight: 700;
margin-bottom: 0.5rem;
}
.info-card p { font-size: 0.95rem; color: var(--text-secondary); }

/* COMPARISON TABLE */
.compare-wrap { overflow-x: auto; }
.compare-table {
width: 100%;
border-collapse: collapse;
text-align: left;
background: var(--bg-white);
border: 1px solid var(--border-light);
border-radius: var(--radius-card);
overflow: hidden;
box-shadow: var(--shadow-card);
font-size: 0.95rem;
}
.compare-table th, .compare-table td {
padding: 0.9rem 1.1rem;
border-bottom: 1px solid var(--border-light);
vertical-align: top;
}
.compare-table thead th {
background: var(--brand-primary);
color: var(--text-on-dark);
font-family: var(--font-heading);
font-size: 0.95rem;
}
.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table tbody th {
font-weight: 600;
color: var(--brand-dark);
background: var(--bg-warm);
width: 30%;
}
.compare-table .highlight { color: var(--brand-trust); font-weight: 600; }

/* FAQ */
.faq-list { max-width: 720px; margin: 0 auto; text-align: left; }
.faq-item {
background: var(--bg-white);
border: 1px solid var(--border-light);
border-radius: var(--radius-card);
box-shadow: var(--shadow-card);
margin-bottom: 1rem;
overflow: hidden;
}
.faq-item summary {
cursor: pointer;
list-style: none;
padding: 1.1rem 3rem 1.1rem 1.4rem;
font-family: var(--font-heading);
font-weight: 700;
font-size: 1.02rem;
color: var(--brand-dark);
position: relative;
min-height: 44px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
content: "+";
position: absolute;
right: 1.25rem;
top: 50%;
transform: translateY(-50%);
font-size: 1.4rem;
color: var(--brand-accent);
font-weight: 700;
line-height: 1;
}
.faq-item[open] summary::after { content: "\2212"; }
.faq-item summary:hover { color: var(--brand-primary); }
.faq-item summary:focus-visible { outline: 3px solid rgba(45, 71, 94, 0.28); outline-offset: -3px; }
.faq-answer { padding: 0 1.4rem 1.2rem; color: var(--text-secondary); font-size: 0.97rem; }
.faq-answer p { margin-bottom: 0.75rem; }
.faq-answer p:last-child { margin-bottom: 0; }

/* CTA BAND */
.cta-band {
background: var(--brand-primary);
text-align: center;
padding: 4rem 2rem;
}
.cta-band h2 { color: var(--text-on-dark); }
.cta-band p { color: rgba(255, 255, 255, 0.85); max-width: 560px; margin: 0 auto 1.75rem; }
.cta-band .cta-sub { font-size: 0.9375rem; margin: 1rem auto 0; }
.cta-band .cta-sub a { color: var(--brand-accent); font-weight: 500; }
.cta-band .cta-sub a:hover { color: var(--text-on-dark); }

/* FORM SECTION */
.form-section {
background: var(--bg-warm);
padding: 5.5rem 2rem;
}
.form-inner { max-width: 640px; margin: 0 auto; }
.form-heading { text-align: center; margin-bottom: 2.25rem; }
.form-heading p { color: var(--text-secondary); margin-top: 0.5rem; }

#lead-form {
background: var(--bg-white);
border: 1px solid var(--border-light);
border-radius: var(--radius-panel);
box-shadow: var(--shadow-card);
padding: 2rem;
}
.field-row {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 1rem;
}
.field { margin-bottom: 1.1rem; }
.field label {
display: block;
font-size: 0.9rem;
font-weight: 500;
color: var(--text-primary);
margin-bottom: 0.35rem;
}
.form-input, .field input, .field select, .field textarea {
width: 100%;
min-height: 50px;
padding: 12px 14px;
border: 1px solid var(--border-light);
border-radius: var(--radius-input);
background: var(--bg-white);
color: var(--text-primary);
font-family: var(--font-body);
font-size: 1rem;
transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}
.field textarea { min-height: 72px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: var(--text-muted); }
.field input:focus, .field select:focus, .field textarea:focus {
border-color: var(--brand-primary);
box-shadow: 0 0 0 3px rgba(45, 71, 94, 0.12);
outline: none;
}
.submit-btn {
width: 100%;
background: var(--brand-accent);
color: var(--text-primary);
border: 1px solid var(--brand-accent);
border-radius: var(--radius-button);
min-height: 52px;
padding: 14px 24px;
font-family: var(--font-body);
font-size: 1.05rem;
font-weight: 700;
cursor: pointer;
transition: all var(--transition-fast);
margin-top: 0.5rem;
}
.submit-btn:hover:not(:disabled) {
background: var(--brand-accent-hover);
border-color: var(--brand-accent-hover);
transform: translateY(-1px);
}
.submit-btn:focus-visible {
outline: 3px solid rgba(45, 71, 94, 0.28);
outline-offset: 3px;
}
.submit-btn:disabled { opacity: 0.7; cursor: default; }
.form-note {
text-align: center;
font-size: 0.875rem;
color: var(--text-secondary);
margin-top: 1rem;
}
.success-msg {
display: none;
background: var(--bg-sage);
border: 1px solid var(--brand-trust);
border-radius: var(--radius-card);
padding: 2rem;
text-align: center;
}
.success-msg h3 {
color: var(--brand-trust);
font-size: 1.35rem;
font-weight: 700;
margin-bottom: 0.5rem;
}
.success-msg p { color: var(--text-primary); }

/* FOOTER */
footer {
background: var(--brand-dark);
color: var(--text-on-dark);
text-align: center;
padding: 3rem 2rem;
font-size: 0.9rem;
}
footer a { color: var(--brand-accent); text-decoration: none; font-weight: 500; }
footer a:hover { color: var(--text-on-dark); text-decoration: underline; }
footer .footer-muted { color: var(--border-light); }
.footer-links { margin: 0.6rem 0; }
.footer-links a { padding: 0 0.35rem; }
.footer-social {
display: flex;
justify-content: center;
gap: 1rem;
margin: 0.9rem 0;
}
.footer-social a {
display: inline-flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
border-radius: 50%;
background: rgba(255, 255, 255, 0.08);
transition: background var(--transition-fast);
}
.footer-social a:hover { background: var(--brand-accent); }
.footer-social svg { width: 20px; height: 20px; fill: #FFFFFF; }

/* CHAT WIDGET */
#nh-chat-btn {
position: fixed;
right: 20px; bottom: 20px;
width: 58px; height: 58px;
border-radius: 50%;
background: var(--brand-primary);
border: none;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
box-shadow: var(--shadow-hover);
z-index: 1000;
transition: background var(--transition-fast), transform var(--transition-fast);
}
#nh-chat-btn:hover { background: var(--brand-dark); transform: translateY(-1px); }
#nh-chat-btn:focus-visible { outline: 3px solid rgba(45, 71, 94, 0.28); outline-offset: 3px; }
#nh-chat-btn svg {
width: 26px; height: 26px;
stroke: #FFFFFF; stroke-width: 2; fill: none;
stroke-linecap: round; stroke-linejoin: round;
}
.nh-badge {
position: absolute;
top: 2px; right: 2px;
width: 12px; height: 12px;
border-radius: 50%;
background: var(--brand-accent);
border: 2px solid #FFFFFF;
}
#nh-chat-panel {
position: fixed;
right: 20px; bottom: 90px;
width: min(370px, calc(100vw - 40px));
max-height: min(560px, calc(100vh - 120px));
background: var(--bg-white);
border: 1px solid var(--border-light);
border-radius: var(--radius-card);
box-shadow: var(--shadow-hover);
display: none;
flex-direction: column;
overflow: hidden;
z-index: 1000;
}
#nh-chat-panel.nh-open { display: flex; }
.nh-chat-header {
background: var(--brand-primary);
color: #FFFFFF;
padding: 0.9rem 1rem;
display: flex;
justify-content: space-between;
align-items: flex-start;
gap: 0.5rem;
}
.nh-title { font-family: var(--font-heading); font-weight: 700; font-size: 0.95rem; }
.nh-subtitle { font-size: 0.78rem; color: rgba(255,255,255,0.85); }
.nh-chat-close {
background: none; border: none; color: #FFFFFF;
font-size: 1.5rem; line-height: 1; cursor: pointer;
padding: 0.25rem 0.5rem; min-width: 44px; min-height: 32px;
}
.nh-chat-close:focus-visible { outline: 2px solid #FFFFFF; outline-offset: 2px; }
.nh-chat-body {
flex: 1;
overflow-y: auto;
padding: 1rem;
background: var(--bg-warm);
min-height: 220px;
}
.nh-msg {
max-width: 85%;
padding: 0.6rem 0.85rem;
border-radius: 12px;
margin-bottom: 0.6rem;
font-size: 0.92rem;
white-space: pre-line;
}
.nh-bot { background: var(--bg-white); border: 1px solid var(--border-light); color: var(--text-primary); }
.nh-user { background: var(--brand-primary); color: #FFFFFF; margin-left: auto; }
.nh-typing {
display: inline-flex; gap: 4px;
padding: 0.7rem 0.9rem;
background: var(--bg-white);
border: 1px solid var(--border-light);
border-radius: 12px;
margin-bottom: 0.6rem;
}
.nh-typing span {
width: 6px; height: 6px; border-radius: 50%;
background: var(--text-muted);
animation: nh-blink 1.2s infinite both;
}
.nh-typing span:nth-child(2) { animation-delay: 0.2s; }
.nh-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes nh-blink { 0%, 80%, 100% { opacity: 0.25; } 40% { opacity: 1; } }
.nh-quick-replies { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 0.6rem; }
.nh-quick-replies button {
background: var(--bg-white);
border: 1px solid var(--brand-primary);
color: var(--brand-primary);
border-radius: 999px;
padding: 0.5rem 1rem;
min-height: 40px;
font-family: var(--font-body);
font-size: 0.88rem;
font-weight: 500;
cursor: pointer;
transition: all var(--transition-fast);
}
.nh-quick-replies button:hover { background: var(--brand-primary); color: #FFFFFF; }
.nh-chat-input {
display: flex;
gap: 0.5rem;
padding: 0.75rem;
border-top: 1px solid var(--border-light);
background: var(--bg-white);
}
.nh-chat-input input {
flex: 1;
min-height: 44px;
padding: 10px 12px;
border: 1px solid var(--border-light);
border-radius: var(--radius-input);
font-family: var(--font-body);
font-size: 0.95rem;
color: var(--text-primary);
}
.nh-chat-input input:focus {
border-color: var(--brand-primary);
box-shadow: 0 0 0 3px rgba(45, 71, 94, 0.12);
outline: none;
}
.nh-chat-send {
width: 44px; min-height: 44px;
border: none;
border-radius: var(--radius-input);
background: var(--brand-accent);
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
transition: background var(--transition-fast);
}
.nh-chat-send:hover:not(:disabled) { background: var(--brand-accent-hover); }
.nh-chat-send:disabled { opacity: 0.5; cursor: default; }
.nh-chat-send svg { width: 20px; height: 20px; fill: var(--text-primary); }
.nh-chat-privacy {
font-size: 0.72rem;
color: var(--text-secondary);
text-align: center;
padding: 0.4rem 0.75rem 0.6rem;
background: var(--bg-white);
}

/* RESPONSIVE */
@media (max-width: 768px) {
nav { padding: 0.6rem 1.1rem; }
.hero { padding: 3.5rem 1.1rem 2.5rem; }
.page-hero { padding: 3rem 1.1rem 2.5rem; }
.trust-strip { gap: 1rem 1.5rem; padding: 1.1rem 1.1rem; }
.section { padding: 3.5rem 1.1rem; }
.steps { grid-template-columns: 1fr; }
.card-grid, .card-grid.two-col { grid-template-columns: 1fr; }
.form-section { padding: 3.5rem 1.1rem; }
#lead-form { padding: 1.4rem; }
.field-row { grid-template-columns: 1fr; gap: 0; }
.cta-band { padding: 3rem 1.1rem; }
}

@media (prefers-reduced-motion: reduce) {
html { scroll-behavior: auto; }
*, *::before, *::after {
animation-duration: 0.01ms !important;
animation-iteration-count: 1 !important;
transition-duration: 0.01ms !important;
}
}
