
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600;700&display=swap');

:root {
    --navy: #0D1F3C;
    --navy-dark: #0A1A30;
    --ember: #C85A1A;
    --peach: #E8834E;
    --peach-light: #F2E0D0;
    --off-white: #F7F8FA;
    --pure-white: #FFFFFF;
    --border: #E0E5EE;
    --text-gray: #7A8BA5;
    --text-dark: #3D5273;
    --heading: #0D1F3C;
    --warning: #E8834E;
}

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

body {
    font-family: 'DM Sans', system-ui, sans-serif;
    color: var(--text-dark);
    background: var(--off-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--navy);
    z-index: 1000;
    padding: 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 76px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0;
    text-decoration: none;
}

.logo svg { width: 62px; height: 62px; }

.logo-sep {
    width: 1px;
    height: 54px;
    background: rgba(255,255,255,0.18);
    margin: 0 20px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-size: 34px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1;
}

.logo-sub {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin-top: 5px;
}

.nav-links {
    display: flex;
    gap: 24px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: rgba(255,255,255,0.6);
    font-weight: 400;
    font-size: 14px;
    transition: color 0.3s;
}

.nav-links a:hover { color: white; }

.nav-cta {
    background: var(--ember);
    color: white !important;
    padding: 8px 18px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.01em;
    transition: all 0.3s;
}

.nav-cta:hover {
    background: var(--peach);
    transform: translateY(-1px);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 64px 40px 72px;
    background: var(--navy);
    color: white;
    position: relative;
    overflow: hidden;
    margin-top: 76px;
}

.hero-bg-circle {
    position: absolute;
    right: -80px;
    top: -80px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.04);
}

.hero-bg-circle2 {
    position: absolute;
    right: -140px;
    top: -140px;
    width: 560px;
    height: 560px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.03);
}

.hero-bg-dot {
    position: absolute;
    right: 80px;
    top: 60px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--ember);
    opacity: 0.6;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(200,90,26,0.15);
    border: 1px solid rgba(200,90,26,0.3);
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 24px;
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    background: var(--peach);
    border-radius: 50%;
}

.hero-badge-text {
    font-size: 11px;
    font-weight: 500;
    color: var(--peach);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.hero h1 {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.03em;
    max-width: 700px;
    margin-bottom: 20px;
    color: #fff;
}

.hero h1 .highlight { color: var(--peach); }

.hero-subtitle {
    font-size: 18px;
    font-weight: 300;
    color: rgba(255,255,255,0.55);
    line-height: 1.6;
    max-width: 560px;
    margin-bottom: 36px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 56px;
}

.btn-primary {
    background: var(--ember);
    color: white;
    padding: 13px 24px;
    border-radius: 7px;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 13px;
    letter-spacing: 0.01em;
    font-family: inherit;
}

.btn-primary:hover {
    background: var(--peach);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: rgba(255,255,255,0.8);
    padding: 14px 28px;
    border-radius: 7px;
    text-decoration: none;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    border: 1px solid rgba(255,255,255,0.22);
    cursor: pointer;
    font-size: 14px;
    font-family: inherit;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.4);
}

.hero-trust {
    display: flex;
    gap: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 9px;
}

.trust-check {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(200,90,26,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-text {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    font-weight: 400;
}

/* Section Styles */
.section { padding: 56px 40px; }

.section-header {
    max-width: 1200px;
    margin: 0 auto 36px;
}

.section-label {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ember);
    margin-bottom: 10px;
    display: block;
}

.section-title {
    font-size: 30px;
    font-weight: 700;
    color: var(--heading);
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 8px;
}

.section-subtitle {
    color: var(--text-gray);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    max-width: 420px;
}

/* Services Grid */
.services-section { background: var(--off-white); }

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.service-card {
    background: var(--pure-white);
    border-radius: 12px;
    padding: 24px;
    border: 0.5px solid var(--border);
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(13,31,60,0.08);
    border-color: var(--peach-light);
}

.service-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--peach-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--ember);
    font-size: 18px;
}

.service-card h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--heading);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.service-card p {
    color: var(--text-gray);
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.service-list {
    list-style: none;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 0;
    font-size: 12px;
    color: var(--text-dark);
}

.service-list li i {
    color: var(--ember);
    font-size: 10px;
}

/* Stats Strip */
.stats-strip {
    background: var(--navy);
    padding: 36px 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.stat-item {
    text-align: center;
    padding: 0 16px;
    border-right: 1px solid rgba(255,255,255,0.08);
}

.stat-item:last-child { border-right: none; }

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.03em;
    line-height: 1;
}

.stat-number span { color: var(--peach); }

.stat-label {
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    margin-top: 6px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* Calculator Section */
.calculator-section {
    background: var(--navy);
    color: white;
    position: relative;
    overflow: hidden;
}

.calculator-section .section-title { color: white; }
.calculator-section .section-subtitle { color: rgba(255,255,255,0.55); }
.calculator-section .section-label { color: var(--peach); }

.calculator-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.calculator-box {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 32px;
}

.calc-step { display: none; }
.calc-step.active {
    display: block;
    animation: fadeIn 0.5s;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.calc-question {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    text-align: center;
}

.calc-hint {
    text-align: center;
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.calc-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.calc-option {
    background: rgba(255,255,255,0.05);
    border: 1.5px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
}

.calc-option:hover {
    background: rgba(200,90,26,0.15);
    border-color: var(--ember);
    transform: translateY(-2px);
}

.calc-option.selected {
    background: rgba(200,90,26,0.2);
    border-color: var(--ember);
}

.calc-option.multi {
    position: relative;
}
.calc-option.multi::after {
    content: '';
    position: absolute;
    top: 10px; right: 10px;
    width: 18px; height: 18px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.2);
    background: transparent;
    transition: all 0.2s;
}
.calc-option.multi.selected::after {
    background: var(--ember);
    border-color: var(--ember);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10'%3E%3Cpath d='M2 5l2 2 4-4' fill='none' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 10px;
}

.calc-option i {
    font-size: 24px;
    margin-bottom: 8px;
    display: block;
    color: var(--peach);
}

.calc-option h4 {
    font-size: 14px;
    margin-bottom: 4px;
    font-weight: 600;
}

.calc-option p {
    font-size: 12px;
    opacity: 0.6;
}

.calc-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 24px;
}

.calc-btn {
    background: var(--ember);
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 7px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
    font-size: 13px;
}

.calc-btn:hover { background: var(--peach); }
.calc-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.calc-progress {
    display: flex;
    gap: 6px;
    justify-content: center;
    margin-bottom: 24px;
}

.progress-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    transition: all 0.3s;
}

.progress-dot.active {
    background: var(--peach);
    width: 24px;
    border-radius: 4px;
}

.calc-result { text-align: center; }
.result-price {
    font-size: 48px;
    font-weight: 700;
    color: var(--peach);
    margin: 12px 0;
    letter-spacing: -0.03em;
}
.result-package {
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 600;
}
.result-note {
    opacity: 0.6;
    margin-bottom: 24px;
    font-size: 14px;
}

/* Packages Section */
.packages-section { background: var(--off-white); }

.packages-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.package-card {
    background: var(--pure-white);
    border-radius: 12px;
    padding: 28px;
    position: relative;
    border: 0.5px solid var(--border);
    transition: all 0.3s;
}

.package-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(13,31,60,0.08);
}

.package-card.featured {
    border-color: var(--ember);
    box-shadow: 0 4px 20px rgba(200,90,26,0.1);
}

.featured-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--ember);
    color: white;
    padding: 4px 14px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.04em;
}

.package-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--heading);
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.package-desc {
    color: var(--text-gray);
    font-size: 12px;
    margin-bottom: 16px;
    line-height: 1.5;
}

.package-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: 4px;
    letter-spacing: -0.03em;
    line-height: 1;
}

.package-price span {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-gray);
}

.package-price-range {
    font-size: 12px;
    color: var(--text-gray);
    margin-bottom: 16px;
}

.package-divider {
    height: 0.5px;
    background: var(--border);
    margin: 16px 0;
}

.package-features { list-style: none; }
.package-features li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 5px 0;
    font-size: 12px;
}
.package-features li i {
    color: var(--ember);
    margin-top: 3px;
    flex-shrink: 0;
    font-size: 10px;
}
.package-features li.included i { color: var(--ember); }
.package-features li.not-included { opacity: 0.4; }
.package-features li.not-included i { color: var(--text-gray); }

.dropdown-toggle {
    background: var(--off-white);
    border: none;
    width: 100%;
    padding: 10px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    color: var(--heading);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 12px 0;
    transition: all 0.3s;
    font-family: inherit;
    font-size: 12px;
}

.dropdown-toggle:hover { background: var(--border); }
.dropdown-toggle i { transition: transform 0.3s; font-size: 10px; }
.dropdown-toggle.open i { transform: rotate(180deg); }

.dropdown-content {
    display: none;
    padding: 12px;
    background: var(--off-white);
    border-radius: 8px;
    margin-bottom: 12px;
}
.dropdown-content.show {
    display: block;
    animation: slideDown 0.3s;
}
@keyframes slideDown {
    from { opacity: 0; max-height: 0; }
    to { opacity: 1; max-height: 500px; }
}
.dropdown-content ul { list-style: none; }
.dropdown-content ul li {
    padding: 4px 0;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-dark);
}
.dropdown-content ul li i {
    color: var(--ember);
    font-size: 8px;
}

.package-cta {
    width: 100%;
    margin-top: 16px;
    text-align: center;
    justify-content: center;
    font-size: 13px;
    padding: 12px 20px;
}

/* Other Services List */
.other-services-section { background: var(--pure-white); }

.services-list-container {
    max-width: 1000px;
    margin: 0 auto;
}

.service-list-item {
    background: var(--pure-white);
    border-radius: 10px;
    margin-bottom: 8px;
    border: 0.5px solid var(--border);
    overflow: hidden;
    transition: all 0.3s;
}

.service-list-item:hover {
    border-color: var(--peach-light);
    box-shadow: 0 2px 12px rgba(13,31,60,0.06);
}

.service-list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    cursor: pointer;
    transition: background 0.3s;
}

.service-list-header:hover { background: var(--off-white); }

.service-list-header > div:first-child {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.service-list-header h4 {
    font-size: 14px;
    color: var(--heading);
    margin: 0;
    font-weight: 600;
}

.service-list-header .service-desc-short {
    font-size: 12px;
    color: var(--text-gray);
    margin: 2px 0 0;
}

.service-list-header > div:last-child {
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-list-header .price {
    font-weight: 700;
    color: var(--heading);
    font-size: 15px;
    min-width: 130px;
    text-align: right;
    letter-spacing: -0.01em;
}

.service-list-header .free-badge {
    background: var(--peach-light);
    color: var(--ember);
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.service-list-header .chevron {
    color: var(--text-gray);
    transition: transform 0.3s;
    font-size: 11px;
    width: 16px;
}

.service-list-header.open .chevron {
    transform: rotate(180deg);
}

.service-list-details {
    display: none;
    padding: 0 18px 16px;
    border-top: 0.5px solid var(--border);
}

.service-list-details.show {
    display: block;
    animation: slideDown 0.3s;
}

.service-list-details p {
    font-size: 13px;
    color: var(--text-dark);
    line-height: 1.6;
}

.service-list-details .market-note {
    font-size: 12px;
    color: var(--text-gray);
    margin-top: 8px;
}

/* Process Section */
.process-section {
    background: var(--navy);
    color: white;
}

.process-section .section-title { color: white; }
.process-section .section-subtitle { color: rgba(255,255,255,0.55); }
.process-section .section-label { color: var(--peach); }

.process-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 28px;
    right: -50%;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, var(--ember), var(--peach));
    opacity: 0.3;
}

.process-step:last-child::after { display: none; }

.step-number {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--ember), var(--peach));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    margin: 0 auto 16px;
    position: relative;
    z-index: 1;
    color: white;
}

.process-step h3 {
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: 600;
}

.process-step p {
    opacity: 0.6;
    font-size: 13px;
    line-height: 1.6;
}

/* Testimonials */
.testimonials-section { background: var(--off-white); text-align: center; }

.quote-mark {
    font-size: 60px;
    font-weight: 700;
    color: var(--border);
    line-height: 0.6;
    margin-bottom: 16px;
    font-family: Georgia, serif;
}

.testimonials-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.testimonial-card {
    background: var(--pure-white);
    border-radius: 12px;
    padding: 28px;
    border: 0.5px solid var(--border);
    text-align: left;
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
}

.testimonial-stars i {
    color: var(--peach);
    font-size: 12px;
}

.testimonial-text {
    font-size: 14px;
    color: var(--heading);
    line-height: 1.65;
    margin-bottom: 20px;
    font-weight: 400;
}

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

.author-avatar {
    width: 36px;
    height: 36px;
    background: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 12px;
}

.author-info h4 {
    font-size: 13px;
    color: var(--heading);
    font-weight: 600;
}

.author-info p {
    font-size: 11px;
    color: var(--text-gray);
    margin-top: 1px;
}

/* CTA Band */
.cta-band {
    background: var(--ember);
    padding: 48px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 0;
}

.cta-band-eyebrow {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
    margin-bottom: 8px;
}

.cta-band h2 {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.cta-band-sub {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    margin-top: 6px;
}

.cta-band-btn {
    background: var(--navy);
    color: white;
    padding: 14px 28px;
    border-radius: 7px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    flex-shrink: 0;
    transition: all 0.3s;
    font-family: inherit;
    border: none;
}

.cta-band-btn:hover {
    background: var(--navy-dark);
    transform: translateY(-2px);
}

/* Contact Section */
.contact-section { background: var(--pure-white); }

.contact-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-info h3 {
    font-size: 22px;
    color: var(--heading);
    margin-bottom: 12px;
    font-weight: 700;
}

.contact-info > p {
    color: var(--text-gray);
    margin-bottom: 28px;
    font-size: 14px;
    line-height: 1.6;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.contact-method i {
    width: 40px;
    height: 40px;
    background: var(--peach-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ember);
    font-size: 14px;
}

.contact-method div h4 {
    font-size: 13px;
    color: var(--heading);
    font-weight: 600;
}

.contact-method div p {
    font-size: 12px;
    color: var(--text-gray);
    margin: 2px 0 0;
}

.contact-form {
    background: var(--off-white);
    border-radius: 12px;
    padding: 28px;
    border: 0.5px solid var(--border);
}

.form-group { margin-bottom: 16px; }
.form-group label {
    display: block;
    font-weight: 500;
    color: var(--heading);
    margin-bottom: 6px;
    font-size: 12px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 14px;
    border: 0.5px solid var(--border);
    border-radius: 8px;
    font-family: inherit;
    font-size: 13px;
    transition: all 0.3s;
    background: var(--pure-white);
    color: var(--text-dark);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--ember);
    box-shadow: 0 0 0 3px rgba(200,90,26,0.1);
}
.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Footer */
.footer {
    background: var(--navy-dark);
    color: white;
    padding: 40px 40px 28px;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 32px;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-brand-desc {
    font-size: 12px;
    color: rgba(255,255,255,0.38);
    line-height: 1.65;
    max-width: 220px;
}

.footer-links h4 {
    font-size: 11px;
    font-weight: 500;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a {
    color: rgba(255,255,255,0.38);
    text-decoration: none;
    font-size: 12px;
    transition: color 0.3s;
}
.footer-links a:hover { color: var(--peach); }

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 12px;
    color: rgba(255,255,255,0.38);
}
.footer-contact i { color: var(--peach); font-size: 11px; }

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 11px;
    color: rgba(255,255,255,0.25);
}

.footer-badges {
    display: flex;
    gap: 8px;
}

.footer-badge {
    font-size: 10px;
    color: rgba(255,255,255,0.3);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 3px 10px;
    border-radius: 4px;
    letter-spacing: 0.04em;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--pure-white);
    padding: 12px 24px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.3s;
    border-top: 0.5px solid var(--border);
}

.sticky-cta.show { transform: translateY(0); }
.sticky-cta p {
    font-weight: 600;
    color: var(--heading);
    font-size: 13px;
}
.sticky-cta .btn-primary {
    padding: 10px 20px;
    font-size: 12px;
}

/* Responsive */
@media (max-width: 1024px) {
    .services-grid,
    .packages-grid,
    .testimonials-grid,
    .contact-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-strip { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid { gap: 24px; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-menu-btn { display: block; }
    .hero { padding: 40px 20px 48px; }
    .hero h1 { font-size: 32px; }
    .section { padding: 40px 20px; }
    .services-grid,
    .packages-grid,
    .testimonials-grid,
    .process-grid,
    .contact-grid,
    .stats-strip,
    .footer-grid { grid-template-columns: 1fr; }
    .cta-band { flex-direction: column; gap: 20px; text-align: center; }
    .calc-options { grid-template-columns: 1fr; }
    .service-list-header { flex-direction: column; align-items: flex-start; gap: 8px; }
    .service-list-header > div:last-child { width: 100%; justify-content: space-between; }
    .service-list-header .price { text-align: left; }
    .process-step::after { display: none; }
    .sticky-cta { flex-direction: column; gap: 8px; padding: 10px; }
}

html { scroll-behavior: smooth; }

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   MULTI-PAGE ADDITIONS
   ============================================================ */

/* ── Active Nav ── */
.nav-links a.active {
    color: #fff;
    font-weight: 500;
}

/* ── Mobile Menu Open ── */
.nav-links.mobile-open {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 76px;
    left: 0; right: 0;
    background: var(--navy-dark);
    padding: 12px 24px 20px;
    gap: 2px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    z-index: 999;
    animation: slideDown 0.25s ease;
}
.nav-links.mobile-open a { padding: 10px 0; font-size: 15px; }
.nav-links.mobile-open .nav-cta { margin-top: 8px; text-align: center; padding: 10px; display: block; }

/* ── Page Hero (inner pages) ── */
.page-hero {
    background: var(--navy);
    padding: 72px 40px 56px;
    margin-top: 76px;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute; right: -80px; top: -80px;
    width: 440px; height: 440px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.04);
    pointer-events: none;
}
.page-hero::after {
    content: '';
    position: absolute; right: -140px; top: -140px;
    width: 600px; height: 600px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.025);
    pointer-events: none;
}
.page-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative; z-index: 1;
    text-align: center;
}
.breadcrumb {
    display: inline-flex; align-items: center; gap: 7px;
    margin-bottom: 20px; font-size: 12px;
    color: rgba(255,255,255,0.32);
}
.breadcrumb a { color: rgba(255,255,255,0.32); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--peach); }
.breadcrumb .sep { color: rgba(255,255,255,0.18); }
.page-hero h1 {
    font-size: 40px; font-weight: 700;
    color: white; letter-spacing: -0.025em; line-height: 1.15;
    margin-bottom: 14px; max-width: 760px; margin-left: auto; margin-right: auto;
}
.page-hero h1 .highlight { color: var(--peach); }
.page-hero p {
    font-size: 16px; color: rgba(255,255,255,0.48);
    max-width: 580px; line-height: 1.65;
    margin-left: auto; margin-right: auto;
}
.page-hero .hero-badge { margin-bottom: 18px; display: inline-flex; }

/* ── Two-column layout ── */
.two-col {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 56px; align-items: center;
}

/* ── Check list ── */
.check-list { display: flex; flex-direction: column; gap: 11px; margin: 20px 0; }
.check-item { display: flex; align-items: flex-start; gap: 10px; }
.check-dot {
    width: 20px; height: 20px; flex-shrink: 0;
    background: var(--peach-light);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin-top: 1px;
}
.check-item span { font-size: 13px; color: var(--text-dark); line-height: 1.55; }

/* ── Values grid ── */
.values-section { background: var(--navy); }
.values-grid {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.value-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 12px; padding: 28px 22px;
    transition: all 0.3s;
}
.value-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(200,90,26,0.35);
    transform: translateY(-3px);
}
.value-icon {
    width: 44px; height: 44px;
    background: rgba(200,90,26,0.18);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--peach); font-size: 18px; margin-bottom: 16px;
}
.value-card h3 { font-size: 15px; font-weight: 600; color: white; margin-bottom: 8px; }
.value-card p { font-size: 13px; color: rgba(255,255,255,0.48); line-height: 1.6; margin: 0; }

/* ── Team ── */
.team-grid {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.team-card {
    background: var(--pure-white);
    border-radius: 12px; padding: 24px;
    border: 0.5px solid var(--border);
    text-align: center; transition: all 0.3s;
}
.team-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(13,31,60,0.09); }
.team-avatar {
    width: 64px; height: 64px;
    background: var(--navy); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; font-weight: 700; color: var(--peach);
    margin: 0 auto 14px;
}
.team-card h3 { font-size: 15px; font-weight: 600; color: var(--heading); margin-bottom: 4px; }
.team-role { font-size: 11px; color: var(--ember); font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 10px; }
.team-card p { font-size: 12px; color: var(--text-gray); line-height: 1.55; margin: 0; }

/* ── Credentials strip ── */
.credentials-strip {
    background: var(--off-white);
    border-top: 0.5px solid var(--border);
    border-bottom: 0.5px solid var(--border);
    padding: 24px 40px;
}
.credentials-inner {
    max-width: 1200px; margin: 0 auto;
    display: flex; align-items: center; justify-content: center;
    gap: 16px; flex-wrap: wrap;
}
.credentials-label {
    font-size: 11px; font-weight: 500;
    text-transform: uppercase; letter-spacing: 0.14em;
    color: var(--text-gray); margin-right: 8px;
}
.credential-item {
    display: flex; align-items: center; gap: 12px;
    background: white; border: 0.5px solid var(--border);
    border-radius: 10px; padding: 12px 20px;
    transition: all 0.3s;
}
.credential-item:hover { box-shadow: 0 4px 16px rgba(13,31,60,0.07); transform: translateY(-2px); }
.credential-badge {
    width: 40px; height: 40px; background: var(--navy);
    border-radius: 8px; display: flex; align-items: center; justify-content: center;
    font-size: 9px; font-weight: 800; color: var(--peach);
    letter-spacing: 0.02em; text-align: center; line-height: 1.3;
}
.credential-item h4 { font-size: 13px; color: var(--heading); font-weight: 600; margin-bottom: 2px; }
.credential-item p { font-size: 11px; color: var(--text-gray); margin: 0; }

/* ── FAQ Accordion ── */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 0.5px solid var(--border); }
.faq-btn {
    width: 100%; background: none; border: none;
    display: flex; justify-content: space-between; align-items: center;
    padding: 18px 0; cursor: pointer; font-family: inherit;
    font-size: 15px; font-weight: 600; color: var(--heading);
    text-align: left; transition: color 0.2s; gap: 16px;
}
.faq-btn:hover { color: var(--ember); }
.faq-btn i { transition: transform 0.3s; color: var(--ember); font-size: 11px; flex-shrink: 0; }
.faq-btn.open i { transform: rotate(180deg); }
.faq-answer {
    display: none; padding: 0 0 18px;
    font-size: 14px; color: var(--text-gray); line-height: 1.7;
}
.faq-answer.open { display: block; animation: fadeIn 0.3s; }

/* ── WhatsApp float button ── */
.wa-float {
    position: fixed; bottom: 24px; right: 24px;
    width: 52px; height: 52px; background: #25D366;
    color: white; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; text-decoration: none;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4); z-index: 996;
    transition: all 0.3s;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 26px rgba(37,211,102,0.55); }

/* ── Back to top ── */
.back-to-top {
    position: fixed; bottom: 84px; right: 28px;
    width: 36px; height: 36px; background: var(--navy);
    color: white; border: none; border-radius: 50%;
    cursor: pointer; font-size: 13px;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none; transition: all 0.3s; z-index: 995;
}
.back-to-top.show { opacity: 1; pointer-events: all; }
.back-to-top:hover { background: var(--ember); transform: translateY(-3px); }

/* ── Services page highlight ── */
.service-card.expanded { border-color: var(--peach-light); box-shadow: 0 8px 30px rgba(13,31,60,0.08); }

/* ── Pricing toggle ── */
.billing-toggle-wrap {
    display: flex; align-items: center; justify-content: center;
    gap: 12px; margin-bottom: 32px;
}
.billing-label { font-size: 13px; font-weight: 500; color: var(--text-gray); transition: color 0.2s; }
.billing-label.active { color: var(--heading); font-weight: 600; }
.toggle-switch {
    width: 44px; height: 24px; background: var(--ember);
    border-radius: 12px; cursor: pointer; position: relative;
    transition: background 0.3s; border: none; flex-shrink: 0;
}
.toggle-switch::after {
    content: ''; position: absolute;
    top: 3px; left: 3px; width: 18px; height: 18px;
    background: white; border-radius: 50%; transition: transform 0.3s;
}
.toggle-switch.annual::after { transform: translateX(20px); }
.annual-tag {
    background: var(--peach-light); color: var(--ember);
    font-size: 10px; font-weight: 600; padding: 2px 8px;
    border-radius: 8px; letter-spacing: 0.02em;
}

/* ── Section variants ── */
.section-white { background: var(--pure-white); }
.section-dark { background: var(--navy); }
.section-dark .section-title { color: white; }
.section-dark .section-subtitle { color: rgba(255,255,255,0.52); }
.section-dark .section-label { color: var(--peach); }

/* ── Hero two-column layout ── */
.hero-container {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 48px;
    align-items: center;
}
.hero-left { /* existing content wrapper */ }

.hero-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 24px;
    backdrop-filter: blur(6px);
    flex-shrink: 0;
}
.hero-card-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.hero-card-header-dot {
    width: 8px; height: 8px;
    background: #4ADE80;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(74,222,128,0.6);
    flex-shrink: 0;
}
.hero-card-header span {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.75);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hero-status-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 9px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.hero-status-row:last-of-type { border-bottom: none; }
.hero-status-icon {
    width: 28px; height: 28px;
    border-radius: 8px;
    background: rgba(200,90,26,0.2);
    display: flex; align-items: center; justify-content: center;
    color: var(--peach); font-size: 11px; flex-shrink: 0;
}
.hero-status-text { flex: 1; }
.hero-status-label {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255,255,255,0.82);
    line-height: 1.3;
}
.hero-status-sub {
    font-size: 10px;
    color: rgba(255,255,255,0.35);
    margin-top: 1px;
}
.hero-status-pill {
    font-size: 9px;
    font-weight: 600;
    color: #4ADE80;
    background: rgba(74,222,128,0.12);
    border: 1px solid rgba(74,222,128,0.25);
    padding: 2px 8px;
    border-radius: 10px;
    letter-spacing: 0.04em;
    white-space: nowrap;
    flex-shrink: 0;
}

.hero-scale-block {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-scale-label {
    font-size: 10px;
    color: rgba(255,255,255,0.35);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}
.hero-scale-bar {
    display: flex;
    align-items: center;
    gap: 8px;
}
.hero-scale-bar span {
    font-size: 10px;
    color: rgba(255,255,255,0.45);
    white-space: nowrap;
    flex-shrink: 0;
}
.hero-scale-track {
    flex: 1;
    height: 6px;
    background: rgba(255,255,255,0.08);
    border-radius: 3px;
    overflow: hidden;
}
.hero-scale-fill {
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, var(--ember), var(--peach));
    border-radius: 3px;
}

.hero-industry-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 14px;
}
.hero-industry-tag {
    font-size: 10px;
    color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.09);
    padding: 4px 10px;
    border-radius: 20px;
    white-space: nowrap;
}
.hero-industry-tag.highlight-tag {
    color: var(--peach);
    background: rgba(200,90,26,0.15);
    border-color: rgba(200,90,26,0.3);
    font-weight: 600;
}

/* ── Responsive additions ── */
@media (max-width: 1024px) {
    .two-col { grid-template-columns: 1fr; gap: 32px; }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-container { grid-template-columns: 1fr; }
    .hero-card { display: none; }
}
@media (max-width: 768px) {
    .page-hero { padding: 48px 20px 40px; }
    .page-hero h1 { font-size: 28px; }
    .values-grid, .team-grid { grid-template-columns: 1fr; }
    .credentials-inner { flex-direction: column; align-items: stretch; }
    .credentials-label { display: block; margin-bottom: 4px; }
}
