@import url('https://fonts.googleapis.com/css2?family=Crimson+Pro:ital,wght@0,200..900;1,200..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

/* ===== Global Reset & Base ===== */
:root {
    --primary: #0066ff;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 81px;
    /* offset for fixed header */
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #111;
    background: #fff;
    padding-top: 80px;
    /* adjust to match header height */
}

/* Headings */
h1,
h2 {
    font-family: 'Crimson Pro', serif;
    font-weight: 600;
    line-height: 1.2;
    margin: 0 0 1rem;
}

/* Paragraphs, links, spans, etc */
h3,
h4,
h5,
h6,
p,
a,
li,
span,
button,
input,
textarea {
    font-family: 'Inter', sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Container */
.container {
    width: 90%;
    max-width: 1400px;
    margin: auto;
}


/* ===== Header / Navbar ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 1rem 0;
    z-index: 100;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
}

/* nav + CTA aligned */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
    /* spacing between links and CTA */
}

.nav-links ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links li a {
    font-weight: 500;
    color: #111;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    text-align: center;
    padding: 0.6rem 1.2rem;
    font-weight: 600;
    transition: background 0.3s ease;
    /* display: inline-block; */
}

.nav-cta-mobile {
    display: none;
}

.btn-primary:hover {
    background: #0052cc;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    border: none;
    background: none;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #111;
    border-radius: 3px;
}


/* ===== Hero ===== */
.hero {
    position: relative;
    padding: 6rem 0 4rem;
    text-align: center;
    overflow: hidden;
}

.hero-container {
    position: relative;
    z-index: 2;
}

.hero-text {
    position: relative;
    z-index: 3;
    max-width: 800px;
    margin: 0 auto;
    margin-top: 230px;
}

.hero-text h1 {
    font-weight: 900;
    font-size: 2.6rem;
    margin-bottom: 1rem;
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.hero-text small {
    font-size: 0.85rem;
    color: #555;
}

.hero-image {
    position: absolute;
    top: -320px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    opacity: 0.9;
    max-width: 1200px;
}

.hero-image img {
    width: 80em;
    height: auto;
}


/* ===== Video ===== */
.video {
    padding: 4rem 0;
    text-align: center;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 760px;
    height: 428px;
    margin: auto;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-description {
    margin-top: 2rem;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.video-description h3,
.video-description h2,
.video-description h1 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.video-description p {
    font-size: 1rem;
    color: #444;
}

/* Hero & Video BG */
.hero-and-video {
    background: linear-gradient(to bottom, #f9fbff 0%, #f9fbff 65%, #fff 50%);
}


/* ===== Benefits Section ===== */
.benefits-section {
    padding: 4.5rem 0;
    background: #ffffff;
    color: #111;
    font-family: 'Inter', sans-serif;
}

.section-header {
    text-align: center;
    max-width: 880px;
    margin: 0 auto 3.25rem;
}

.section-subtitle {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    letter-spacing: .2px;
}

.section-title {
    font-family: 'Crimson Pro', serif;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.18;
    margin: 0;
    color: #0b1220;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 3.25rem;
    max-width: 900px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.benefit-item:nth-child(2n) {
    flex-direction: row-reverse;
}

.benefit-img {
    flex: 0 0 404px;
    width: 404px;
    height: 264px;
    display: block;
    border-radius: 12px;
    overflow: hidden;
    background: #f3f4f6;
}

.benefit-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.benefit-content {
    flex: 1 1 auto;
}

.benefit-content h3 {
    margin: 0 0 0.6rem;
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.15;
    color: #0b1220;
}

.benefit-content h3 .num {
    margin-right: 0.5rem;
    font-weight: 900;
    color: #0b1220;
}

.benefit-content h3 em {
    font-style: italic;
    font-weight: 800;
}

.benefit-content p {
    margin: 0;
    color: #333;
    font-size: 0.98rem;
    line-height: 1.68;
    max-width: 56ch;
}

.benefits-cta {
    margin-top: 3rem;
    text-align: center;
}


/* ===== Process Section ===== */
.process-section {
    background: #f4f8ff;
    padding: 4rem 0;
    position: relative;
    font-family: 'Inter', sans-serif;
}

.process-section .container {
    width: 70%;
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

/* Scrollspy Nav */
.process-nav {
    flex: 0 0 220px;
    position: sticky;
    top: 120px;
    align-self: flex-start;
}

.process-nav ul {
    list-style: none;
    margin: 0;
    padding: 0 0 0 40px;
    position: relative;
}

.process-nav ul::before {
    content: '';
    position: absolute;
    left: 0px;
    top: 12px;
    bottom: 12px;
    width: 2px;
    background: #dcdfe6;
    border-radius: 2px;
}

.process-nav li {
    margin: 70px 0;
}

.process-nav a {
    display: inline-block;
    color: #555;
    font-weight: 500;
    position: relative;
    text-decoration: none;
    padding-left: 0;
    transition: color .18s ease;
}

.process-nav a::before {
    content: '';
    position: absolute;
    left: -44px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid #dcdfe6;
    box-sizing: border-box;
    transition: all .18s ease;
}

.process-nav a.active {
    color: var(--primary);
    font-weight: 700;
}

.process-nav a.active::before {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 0 0 6px rgba(0, 102, 255, 0.08);
    transform: translateY(-50%) scale(1.05);
}


.process-content {
    flex: 1;
}

.process-group {
    margin-bottom: 3.5rem;
}

.process-group h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #111;
}

.step-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.step-card {
    flex: 1 1 300px;
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    max-width: 100%;
}

.step-card img {
    width: 160px;
    height: auto;
    margin-bottom: 1rem;
}

.step-card h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.step-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #444;
}


/* ===== FAQ Section ===== */
.faq-section {
    padding: 60px 20px;
    background: #fff;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.faq-left {
    flex: 1;
    text-align: center;
}

.faq-image {
    width: 404px;
    height: 264px;
    object-fit: contain;
    margin-bottom: 20px;
}

.faq-subtitle {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
}

.faq-button {
    background: var(--primary);
    color: #fff;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    border-radius: 4px;
}

.faq-button:hover {
    background: #0052cc;
}

.faq-right {
    flex: 1;
}

.faq-heading {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: left;
}

.accordion-item {
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    background: #fff;
    border: none;
    padding: 18px 20px;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.accordion-header::after {
    content: "";
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: 0.5rem;
    border-right: 2px solid #9E9E9E;
    border-bottom: 2px solid #9E9E9E;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.accordion-item.active .accordion-header::after {
    transform: rotate(-135deg);
}

.accordion-header span {
    text-align: left;
}

.accordion-icon {
    transition: transform 0.3s ease;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    font-size: 15px;
    line-height: 1.5;
    transition: all 0.3s ease;
}

.accordion-item.active .accordion-content {
    max-height: 200px;
    padding: 15px 20px 20px;
}

/* legacy / alternate faq classes preserved (unused but kept) */
.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-body {
    max-height: 500px;
}

.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-arrow {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-arrow {
    transform: rotate(90deg);
}


/* ===== Contact section ===== */
.contact-section {
    background: #1b2230;
    color: #fff;
    padding: 80px 20px;
    text-align: center;
}

.contact-container {
    max-width: 500px;
    margin: 0 auto;
}

.contact-heading {
    font-family: 'Inter', sans-serif;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-desc {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #d0d6e1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 16px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    color: #000;
    background: #fff;
    outline: none;
}

.contact-form textarea {
    resize: none;
}

.select-wrapper {
    position: relative;
}

.select-wrapper select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: #fff;
    color: #000;
    padding-right: 40px;
    line-height: 1.4;
}

.select-wrapper .select-icon {
    position: absolute;
    right: 14px;
    top: 40%;
    transform: translateY(-50%);
    pointer-events: none;
    stroke: #000;
    width: 20px;
    height: 20px;
}

.checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    text-align: left;
}

.checkbox-wrapper input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 4px;
    background: #fff;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
    margin-bottom: 0;
}

.checkbox-wrapper input[type="checkbox"]:checked {
    background: var(--primary);
}

.checkbox-wrapper input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    left: 10px;
    top: 6px;
    width: 6px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-wrapper label {
    font-size: 14px;
    color: #d0d6e1;
    line-height: 1.4;
    display: flex;
    align-items: center;
    gap: 4px;
}

.checkbox-wrapper a {
    color: var(--primary);
    text-decoration: none;
}

.contact-form button {
    width: 100%;
    background: var(--primary);
    color: #fff;
    padding: 1rem 1.2rem;
    font-size: 16px;
    font-weight: 600;
    transition: background 0.3s ease;
    display: inline-block;
    border: none;
}

.contact-form button:enabled {
    cursor: pointer;
}

.contact-form button:enabled:hover {
    background: #0052cc;
}


/* ===== Footer (landing page) ===== */
.site-footer {
    color: #0f172a;
    font-family: 'Inter', sans-serif;
}

/* Footer top band */
.footer-top {
    background: #eaf3ff;
    border-bottom: 1px solid #e3ecf8;
}

.footer-top-container {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1rem;
    padding: 3rem 0;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-self: start;
    min-width: 0;
}

.footer-logo img {
    height: 30px;
    display: block;
}

.footer-tagline {
    font-size: 1rem;
    font-weight: 500;
    color: #0f172a;
    max-width: 40ch;
    overflow-wrap: break-word;
    line-height: 1.15;
}

/* Nav (right on desktop) */
.footer-nav {
    justify-self: end;
}

.footer-nav ul {
    list-style: none;
    display: flex;
    gap: 2.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
    white-space: nowrap;
}

.footer-nav a {
    font-weight: 700;
    color: #0f172a;
    text-decoration: none;
}

.footer-nav a:hover {
    text-decoration: underline;
}

.footer-bottom {
    background: #fff;
}

.footer-bottom-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 0;
}

.footer-bottom-container p {
    font-size: 0.95rem;
    color: #111;
    margin: 0;
}

.privacy-link {
    font-weight: 700;
    color: #111;
    text-decoration: none;
}

.privacy-link:hover {
    text-decoration: underline;
}


/* ===== Privacy Policy page ===== */
.privacy-section {
    padding: 5rem 0;
    max-width: 900px;
    margin: 0 auto;
    color: #111;
    background: #fff;
}

.privacy-section h1 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
    text-align: center;
    color: #0b1220;
}

.privacy-section .effective-date {
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 0.95rem;
    color: #555;
}

.privacy-section h2 {
    font-size: 1.4rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #0b1220;
}

.privacy-section p {
    margin-bottom: 1.25rem;
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
}

.privacy-section ul {
    margin: 0 0 1.5rem 1.25rem;
    padding: 0;
}

.privacy-section li {
    margin-bottom: 0.75rem;
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
}


/* ===== Media Queries ===== */

/* <= 1100px */
@media (max-width: 1100px) {

    /* Benefits */
    .benefits-list {
        gap: 2.2rem;
    }

    .benefit-item {
        gap: 1.6rem;
    }

    .benefit-img {
        width: 360px;
        height: 235px;
        flex: 0 0 auto;
    }

    .benefit-content p {
        font-size: 0.96rem;
    }

    /* Footer */
    .footer-top-container {
        padding: 2.5rem 0;
    }

    .footer-nav {
        justify-self: center;
    }

    .footer-nav ul {
        gap: 2rem;
    }
}

/* <= 1024px */
@media (max-width: 1024px) {
    .footer-brand {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.35rem;
    }

    .footer-tagline {
        max-width: 100%;
        font-size: 0.98rem;
    }

    .process-section .container {
        width: 90%;
    }
}

/* <= 992px */
@media (max-width: 992px) {

    /* Hero tweaks */
    .hero-text h1 {
        font-size: 2.2rem;
        margin-top: 170px;
    }

    .hero-image {
        top: -250px;
        max-width: 700px;
    }

    .hero-image img {
        width: 45em;
    }

    /* FAQ stack */
    .faq-container {
        flex-direction: column;
        align-items: center;
    }

    .faq-left {
        margin-bottom: 30px;
    }

    .faq-image {
        width: 100%;
        max-width: 404px;
        height: auto;
    }
}

/* <= 960px */
@media (max-width: 960px) {
    .process-section .container {
        flex-direction: column;
        width: 80%;
    }

    .process-nav {
        display: none;
    }

    .step-card {
        max-width: 100%;
    }
}

/* <= 900px */
@media (max-width: 900px) {

    /* Benefits stack */
    .benefit-item,
    .benefit-item:nth-child(2n) {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .benefit-img {
        width: 100%;
        max-width: 404px;
        height: auto;
    }

    .benefit-content {
        max-width: 720px;
        margin-top: 1rem;
    }

    .benefit-content p {
        margin-left: auto;
        margin-right: auto;
    }

    /* Footer tighten spacing */
    .footer-top-container {
        padding: 2rem 0;
        gap: 0.75rem;
    }

    .footer-nav ul {
        gap: 1.25rem;
        font-size: 0.95rem;
    }
}

/* <= 768px */
@media (max-width: 768px) {

    /* Navigation (mobile) */
    .nav-links {
        display: none;
        position: absolute;
        top: 60px;
        right: 0;
        background: #fff;
        width: 200px;
        border: 1px solid #eee;
        border-radius: 8px;
    }

    .nav-links ul {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .nav-links.open {
        display: block;
    }

    .nav-cta {
        display: none;
    }

    .nav-cta-mobile {
        display: block;
    }

    .hamburger {
        display: flex;
    }

    /* Hero adjustments */
    .hero {
        padding: 4rem 0 2rem;
    }

    .hero-text h1 {
        font-size: 1.8rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .hero-image {
        top: -240px;
        max-width: 700px;
        opacity: 0.8;
    }

    .hero-text {
        margin-top: 0;
    }

    /* Privacy page */
    .privacy-section {
        padding: 3rem 1rem;
    }

    .privacy-section h1 {
        font-size: 2rem;
    }

    .privacy-section h2 {
        font-size: 1.25rem;
    }
}

/* <= 640px */
@media (max-width: 640px) {
    .video-wrapper {
        height: 22em;
    }

    .footer-top-container {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
        padding: 1.25rem 0;
        text-align: center;
    }

    .footer-brand {
        justify-self: center;
        align-items: center;
    }

    .footer-tagline {
        text-align: center;
    }

    .footer-nav {
        justify-self: center;
        margin-top: 0.5rem;
    }

    .footer-nav ul {
        flex-direction: column;
        gap: 0.5rem;
        white-space: normal;
        align-items: center;
    }

    .footer-bottom-container {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        padding: 1rem 0;
        text-align: center;
    }
}

/* <= 425px */
@media (max-width: 425px) {
    .section-title {
        font-size: 1.5rem;
    }

    .benefit-content h3 {
        font-size: 1rem;
    }

    .benefit-content p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .video-wrapper {
        height: 12em;
    }

    .hero-image {
        top: -180px;
    }

    .hero-image img {
        width: 25em;
    }

    .hero-and-video {
        background: linear-gradient(to bottom, #f9fbff 0%, #f9fbff 60%, #fff 50%);
    }
}

/* Additional small breakpoint if present in original */
@media (max-width: 360px) {

    /* minor adjustments for narrow screens */
    .hero-title {
        font-size: 20px;
    }

    .contact-container {
        max-width: 100%;
        padding: 0 12px;
    }
}