/* =========================================================
   FrankoData Landing Page - Premium Theme
   Palette: Cobalt Blue (#0047AB), Navy (#000080), Sky Blue (#82C8E5), Slate (#6D8196)
   ========================================================= */

:root {
    --ink: #0a192f;
    --navy: #000080;
    --cobalt: #0047AB;
    --sky: #82C8E5;
    --slate: #6D8196;
    --muted: #576b80;
    --line: #dce5ee;
    --paper: #ffffff;
    --soft: #f5f8fc;
    --orange: #0047AB;
    --orange-dark: #000080;
    --accent-light: #e8f4fa;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font: 16px/1.6 'Inter', 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    -webkit-font-smoothing: antialiased;
}

.container {
    width: min(1140px, calc(100% - 40px));
    margin: auto;
}

/* =========================================================
   HEADER & NAVIGATION
   ========================================================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
    transition: all 0.3s ease;
}

.nav-wrap {
    height: 76px;
    display: flex;
    align-items: center;
    gap: 28px;
}

.brand {
    font: 800 24px/1 'Manrope', 'Inter', sans-serif;
    letter-spacing: -1px;
    color: var(--ink);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 2px;
}

.brand span {
    color: var(--cobalt);
    background: linear-gradient(135deg, var(--cobalt) 0%, var(--sky) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.desktop-nav {
    display: flex;
    gap: 28px;
    margin-left: auto;
}

.desktop-nav a,
.nav-actions a {
    color: var(--slate);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

.desktop-nav a:hover,
.nav-actions > a:hover {
    color: var(--cobalt);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* =========================================================
   BUTTONS & CTAs WITH MICRO-ANIMATIONS
   ========================================================= */
.button,
.outline {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border: 1px solid var(--cobalt);
    border-radius: 10px;
    color: #fff !important;
    background: linear-gradient(135deg, var(--cobalt) 0%, var(--navy) 100%);
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0, 71, 171, 0.25);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

/* Subtle button sheen wave */
.button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transform: skewX(-20deg);
    transition: 0.5s ease;
}

.button:hover::after {
    left: 140%;
}

.button:hover {
    background: linear-gradient(135deg, #003a8c 0%, #000066 100%);
    border-color: #000080;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 71, 171, 0.35);
}

.button:active {
    transform: translateY(1px) scale(0.98);
}

.small {
    padding: 9px 16px;
    font-size: 14px;
}

.outline {
    color: var(--ink) !important;
    border-color: var(--line);
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.outline:hover {
    border-color: var(--cobalt);
    color: var(--cobalt) !important;
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 71, 171, 0.12);
}

.menu-button,
.mobile-nav {
    display: none;
}

/* =========================================================
   HERO SECTION
   ========================================================= */
.hero {
    padding: 100px 0 90px;
    background: radial-gradient(circle at 85% 20%, rgba(130, 200, 229, 0.18) 0%, transparent 45%),
                radial-gradient(circle at 10% 80%, rgba(0, 71, 171, 0.08) 0%, transparent 40%),
                linear-gradient(180deg, #ffffff 0%, #f4f8fc 100%);
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 70px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 16px;
    color: var(--cobalt);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: rgba(130, 200, 229, 0.2);
    padding: 6px 14px;
    border-radius: 50px;
    border: 1px solid rgba(130, 200, 229, 0.4);
}

.eyebrow b {
    width: 8px;
    height: 8px;
    background: var(--cobalt);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(0, 71, 171, 0.6);
    animation: statusPulse 2s infinite ease-in-out;
}

@keyframes statusPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
}

h1, h2, h3 {
    font-family: 'Manrope', 'Inter', sans-serif;
    line-height: 1.15;
    color: var(--ink);
}

h1 {
    max-width: 650px;
    margin: 0;
    font-size: clamp(42px, 5vw, 64px);
    letter-spacing: -0.05em;
    font-weight: 800;
}

h1 em {
    font-style: normal;
    color: var(--cobalt);
    background: linear-gradient(135deg, var(--cobalt) 0%, #000080 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.intro {
    max-width: 580px;
    margin: 22px 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-top: 32px;
}

.text-link {
    color: var(--ink);
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease, transform 0.2s ease;
}

.text-link:hover,
.service-cards a:hover {
    color: var(--cobalt);
    transform: translateX(3px);
}

.quiet {
    margin: 28px 0 0;
    color: var(--slate);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.quiet i {
    color: #10b981;
    font-size: 16px;
}

/* =========================================================
   PURCHASE PANEL (CARD)
   ========================================================= */
.purchase-panel {
    padding: 30px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: 0 16px 40px rgba(0, 34, 102, 0.08), 0 2px 6px rgba(0, 0, 0, 0.02);
    position: relative;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.purchase-panel:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 50px rgba(0, 71, 171, 0.14);
    border-color: rgba(130, 200, 229, 0.5);
}

.panel-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--slate);
    font-size: 13px;
    font-weight: 600;
}

.panel-top strong {
    color: #0047AB;
    background: #e8f4fa;
    padding: 4px 10px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
}

.panel-top b {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #10b981;
    border-radius: 50%;
    animation: statusPulse 1.8s infinite ease-in-out;
}

.purchase-panel h2 {
    margin: 20px 0 22px;
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.service-option {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 12px;
    color: var(--ink);
    text-decoration: none;
    border-radius: 12px;
    border-top: 1px solid var(--line);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-option:hover {
    background: var(--accent-light);
    transform: translateX(4px);
    border-color: transparent;
}

.service-option > i:last-child {
    margin-left: auto;
    color: var(--slate);
    transition: transform 0.2s ease, color 0.2s ease;
}

.service-option:hover > i:last-child {
    transform: translateX(4px);
    color: var(--cobalt);
}

.service-option small,
.reason-list small {
    display: block;
    color: var(--slate);
    font-size: 13px;
    margin-top: 2px;
}

.service-icon {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(0, 71, 171, 0.1);
    color: var(--cobalt);
    font-size: 22px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.service-option:hover .service-icon {
    transform: scale(1.1) rotate(4deg);
    background: var(--cobalt);
    color: #ffffff;
}

.service-icon.blue {
    background: rgba(130, 200, 229, 0.25);
    color: var(--navy);
}

.service-option:hover .service-icon.blue {
    background: var(--navy);
    color: #ffffff;
}

.panel-foot {
    margin: 20px 0 0;
    color: var(--slate);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding-top: 14px;
    border-top: 1px dashed var(--line);
}

.panel-foot a {
    color: var(--cobalt);
    font-weight: 700;
    text-decoration: none;
}

.panel-foot a:hover {
    text-decoration: underline;
}

/* =========================================================
   TRUST BANNER
   ========================================================= */
.trust {
    background: #ffffff;
    border-block: 1px solid var(--line);
}

.trust-content {
    display: flex;
    align-items: center;
    gap: 36px;
    min-height: 74px;
    color: var(--slate);
    font-size: 14px;
    font-weight: 500;
}

.trust-content strong {
    margin-right: auto;
    color: var(--ink);
    font-weight: 700;
    font-size: 15px;
}

.trust-content span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.trust i {
    color: var(--cobalt);
    font-size: 18px;
}

/* =========================================================
   SECTIONS GENERAL
   ========================================================= */
.section {
    padding: 100px 0;
}

.heading {
    text-align: center;
}

.heading .eyebrow {
    justify-content: center;
}

.section h2,
.support h2 {
    margin: 0;
    font-size: clamp(32px, 3.8vw, 44px);
    letter-spacing: -0.04em;
    font-weight: 800;
}

/* =========================================================
   STEPS SECTION (HOW IT WORKS)
   ========================================================= */
.steps {
    background: var(--soft);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 55px;
    border-top: 1px solid var(--line);
}

.steps-grid article {
    padding: 30px 36px 0 0;
    border-right: 1px solid var(--line);
    transition: transform 0.3s ease;
}

.steps-grid article:hover {
    transform: translateY(-4px);
}

.steps-grid article + article {
    padding-left: 36px;
}

.steps-grid article:last-child {
    border: 0;
}

.steps-grid b {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--cobalt) 0%, var(--navy) 100%);
    color: #ffffff;
    font-size: 16px;
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(0, 71, 171, 0.25);
}

.steps-grid h3 {
    margin: 20px 0 10px;
    font-size: 21px;
    font-weight: 700;
}

.steps-grid p,
.split-heading > p,
.reasons p,
.support p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

/* =========================================================
   SERVICES SECTION
   ========================================================= */
.split-heading,
.reasons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: end;
    gap: 80px;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.service-cards article {
    padding: 32px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.service-cards article:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0, 71, 171, 0.12);
    border-color: var(--sky);
}

.service-cards > article > i {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(0, 71, 171, 0.08);
    color: var(--cobalt);
    font-size: 24px;
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.service-cards article:hover > i {
    transform: scale(1.12) rotate(6deg);
    background: linear-gradient(135deg, var(--cobalt) 0%, var(--navy) 100%);
    color: #ffffff;
}

.service-cards h3 {
    margin: 22px 0 10px;
    font-size: 22px;
    font-weight: 700;
}

.service-cards p {
    min-height: 70px;
    margin: 0;
    color: var(--muted);
    font-size: 15px;
}

.service-cards a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    padding-top: 20px;
    color: var(--cobalt);
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.service-cards a:hover {
    transform: translateX(4px);
}

/* =========================================================
   WHY US (REASONS) - DEEP NAVY #000080 THEME
   ========================================================= */
.reasons {
    background: linear-gradient(145deg, #000080 0%, #001f5c 50%, #001238 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.reasons::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(130, 200, 229, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.reasons h2 {
    color: #ffffff;
}

.reasons .eyebrow {
    color: var(--sky);
    background: rgba(130, 200, 229, 0.15);
    border-color: rgba(130, 200, 229, 0.3);
}

.reasons .eyebrow b {
    background: var(--sky);
    box-shadow: 0 0 8px rgba(130, 200, 229, 0.8);
}

.reasons-grid {
    align-items: center;
    gap: 90px;
    position: relative;
    z-index: 1;
}

.reasons p {
    max-width: 480px;
    margin: 20px 0 28px;
    color: #c9d8e7;
    font-size: 17px;
}

.reasons .text-link {
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.25s ease;
}

.reasons .text-link:hover {
    background: #ffffff;
    color: var(--navy) !important;
    transform: translateY(-2px);
}

.reason-list {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.reason-list > div {
    display: flex;
    gap: 16px;
    padding: 22px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    transition: transform 0.25s ease;
}

.reason-list > div:hover {
    transform: translateX(6px);
}

.reason-list i {
    color: var(--sky);
    font-size: 24px;
    filter: drop-shadow(0 2px 6px rgba(130, 200, 229, 0.4));
}

.reason-list strong {
    display: block;
    font-size: 17px;
    color: #ffffff;
}

.reason-list small {
    margin-top: 4px;
    color: #a8bfd6;
    font-size: 14px;
}

/* =========================================================
   SUPPORT SECTION
   ========================================================= */
.support {
    padding: 85px 0;
    background: linear-gradient(180deg, #f0f7fd 0%, #e4f0fa 100%);
}

.support-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.support p {
    margin-top: 12px;
    font-size: 17px;
}

.support-actions {
    display: flex;
    gap: 14px;
}

/* =========================================================
   FOOTER
   ========================================================= */
footer {
    padding: 40px 0;
    background: #ffffff;
    border-top: 1px solid var(--line);
}

.footer-inner {
    display: flex;
    align-items: center;
    gap: 30px;
}

.footer-inner p {
    margin: 0;
    color: var(--slate);
    font-size: 14px;
}

.footer-inner p:last-child {
    margin-left: auto;
}

/* =========================================================
   RESPONSIVE DESIGN
   ========================================================= */
@media (max-width: 860px) {
    .desktop-nav,
    .nav-actions {
        display: none;
    }

    .menu-button {
        display: block;
        margin-left: auto;
        border: 0;
        background: transparent;
        font-size: 26px;
        color: var(--ink);
        cursor: pointer;
    }

    .mobile-nav.open {
        display: flex;
        position: absolute;
        top: 76px;
        left: 0;
        width: 100%;
        padding: 22px 24px;
        flex-direction: column;
        gap: 18px;
        background: #ffffff;
        border-bottom: 1px solid var(--line);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    }

    .mobile-nav a {
        color: var(--ink);
        font-weight: 600;
        text-decoration: none;
        font-size: 16px;
    }

    .hero {
        padding: 60px 0;
    }

    .hero-grid,
    .split-heading,
    .reasons-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .trust-content {
        padding: 18px 0;
        min-height: auto;
        flex-wrap: wrap;
        gap: 14px 24px;
    }

    .trust-content strong {
        width: 100%;
    }

    .section {
        padding: 70px 0;
    }

    .steps-grid,
    .service-cards {
        grid-template-columns: 1fr;
    }

    .steps-grid article,
    .steps-grid article + article {
        padding: 24px 0;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .service-cards p {
        min-height: 0;
    }

    .support-inner,
    .footer-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .support-actions {
        width: 100%;
        flex-direction: column;
    }

    .support-actions a {
        width: 100%;
    }

    .footer-inner {
        gap: 14px;
    }

    .footer-inner p:last-child {
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .container {
        width: min(100% - 32px, 1140px);
    }

    h1 {
        font-size: 38px;
    }

    .intro {
        font-size: 16px;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
        gap: 16px;
    }

    .purchase-panel {
        padding: 22px;
    }

    .section h2,
    .support h2 {
        font-size: 28px;
    }
}
