/* ========================================
   How It Works - Frogg Recruitment
   ADVANCED STYLING — Dark / Light Sections
   ======================================== */

:root {
    /* Brand palette */
    --primary-500: #1662ed;
    --primary-600: #1451c7;
    --primary-700: #1e3a8a;
    --primary-900: #0f1e52;
    --primary-50: #eff6ff;
    --primary-100: #dbeafe;

    /* Ink / neutrals */
    --ink-900: #0b1534;
    --ink-800: #101d42;
    --ink-700: #162350;
    --gray-50: #f8fafc;
    --gray-100: #eef2f7;
    --gray-200: #dce5f3;
    --gray-300: #c4d1e5;
    --gray-600: #4b5563;
    --gray-800: #1f2937;
    --gray-900: #0f172a;
    --white: #ffffff;

    /* Radii */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-2xl: 24px;
    --radius-3xl: 32px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06);
    --shadow-md: 0 4px 14px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 12px 36px rgba(15, 23, 42, 0.12);
    --shadow-xl: 0 24px 56px rgba(15, 23, 42, 0.14);
    --shadow-blue: 0 12px 28px rgba(22, 98, 237, 0.22);
    --shadow-glow: 0 0 60px rgba(22, 98, 237, 0.15);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #1662ed 0%, #1e3a8a 100%);
    --gradient-dark: linear-gradient(160deg, #0b1534 0%, #101d42 40%, #162350 100%);

    /* Layout */
    --max-width: 1240px;
    --section-gap: 0px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
    font-family: "Inter", sans-serif;
    color: var(--gray-800);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

main { padding-top: 0; }

.container {
    width: min(var(--max-width), calc(100% - 2rem));
    margin-inline: auto;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: var(--radius-md);
    border: 0;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    padding: 14px 28px;
    cursor: pointer;
    transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-blue);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(22, 98, 237, 0.32);
}

.btn-outline {
    background: var(--white);
    color: var(--primary-500);
    border: 2px solid var(--primary-100);
}
.btn-outline:hover {
    border-color: var(--primary-500);
    transform: translateY(-2px);
}

/* Hero specific buttons (white on dark) */
.btn-hero-primary {
    background: var(--white);
    color: var(--primary-700);
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}
.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.24);
}

.btn-hero-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}
.btn-hero-outline:hover {
    border-color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

/* --- Eyebrow pill --- */
.eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(22,98,237,.2);
}

.eyebrow--dark {
    background: rgba(22, 98, 237, 0.12);
    color: #93bbff;
}

/* --- Section Headers --- */
.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 56px;
}
.section-header h2 {
    margin: 0 0 16px;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    color: var(--ink-900);
    letter-spacing: -0.02em;
    font-weight: 800;
    line-height: 1.2;
}

.section-header p {
    margin: 0;
    color: var(--gray-600);
    font-size: 1rem;
    line-height: 1.75;
}

.section-header--light h2 { color: var(--white); }
.section-header--light p { color: rgba(255, 255, 255, 0.65); }

/* ================================================================
   SECTION 1 — INTRO BANNER  (Light)
   ================================================================ */
.intro-banner {
    padding: 28px 0 0;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 40px;
    background: linear-gradient(135deg, #f0f6ff 0%, #ffffff 50%, #f7f9fc 100%);
    border: 1px solid var(--primary-100);
    border-radius: var(--radius-3xl);
    padding: 48px 52px;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.intro-grid::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -60px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(22, 98, 237, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.intro-employer h2 {
    margin: 0 0 10px;
    font-size: clamp(1.35rem, 2.5vw, 1.85rem);
    color: var(--ink-900);
    line-height: 1.2;
}
.intro-quote {
    margin: 0 0 22px;
    color: var(--gray-600);
    font-style: italic;
    font-size: 0.93rem;
    line-height: 1.5;
}

.intro-divider {
    width: 1px;
    height: 110px;
    background: linear-gradient(180deg, transparent, var(--primary-100), var(--primary-500), var(--primary-100), transparent);
    border-radius: 1px;
}

.intro-candidate { text-align: right; }
.intro-candidate h3 {
    margin: 0 0 22px;
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: var(--primary-700);
    line-height: 1.3;
}

/* ================================================================
   SECTION 2 — PAGE HERO  (Light / White)
   ================================================================ */
.page-hero {
    position: relative;
    padding: 80px 0;
    margin-top: 0;
    overflow: hidden;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 40%, #f0f4ff 100%);
}

/* Decorative orbs */
.page-hero::before,
.page-hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}
.page-hero::before {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -150px;
    background: radial-gradient(circle, rgba(22,98,237,.07) 0%, transparent 70%);
    animation: floatOrb 20s ease-in-out infinite;
}
.page-hero::after {
    width: 400px;
    height: 400px;
    bottom: -120px;
    left: -100px;
    background: radial-gradient(circle, rgba(30,58,138,.05) 0%, transparent 70%);
    animation: floatOrb 25s ease-in-out infinite reverse;
}

.page-hero-bg {
    display: none;
}

.page-hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 56px;
    align-items: center;
    z-index: 1;
}

/* Section badge override for light bg */
.page-hero .section-badge--dark {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(22,98,237,.2);
}

.hero-copy h1 {
    margin: 18px 0 22px;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.08;
    color: var(--gray-900);
    letter-spacing: -0.025em;
}
.hero-copy .title-accent-light {
    color: transparent;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-copy > p {
    margin: 0 0 16px;
    color: var(--gray-600);
    line-height: 1.75;
    font-size: 1.02rem;
}
.hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

/* Swap hero buttons to primary style on light bg */
.page-hero .btn-hero-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-blue);
}
.page-hero .btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(22, 98, 237, 0.32);
}
.page-hero .btn-hero-outline {
    background: var(--white);
    color: var(--primary-500);
    border: 2px solid var(--primary-100);
}
.page-hero .btn-hero-outline:hover {
    border-color: var(--primary-500);
    background: var(--primary-50);
    transform: translateY(-2px);
}

.hero-visual {
    position: relative;
    display: flex;
    flex-direction: column;
}

.hero-card {
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.12), 0 4px 16px rgba(22, 98, 237, 0.08);
    border: 1px solid rgba(22, 98, 237, 0.08);
    transition: transform 0.4s, box-shadow 0.4s;
}
.hero-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 72px rgba(15, 23, 42, 0.16), 0 8px 24px rgba(22, 98, 237, 0.12);
}
.hero-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.hero-floating-stat {
    position: absolute;
    bottom: -30px;
    left: -24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 18px 24px;
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.1), 0 2px 8px rgba(22, 98, 237, 0.06);
    border: 1px solid rgba(22, 98, 237, 0.06);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 2;
    transition: transform 0.3s, box-shadow 0.3s;
}
.hero-floating-stat:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(15, 23, 42, 0.14);
}
.hero-floating-stat strong {
    font-size: 1.6rem;
    color: var(--primary-500);
    letter-spacing: -0.02em;
}
.hero-floating-stat span {
    font-size: 0.82rem;
    color: var(--gray-600);
    max-width: 120px;
    line-height: 1.3;
}

/* ================================================================
   SECTION 3 — BENEFITS  (Dark)
   ================================================================ */
.benefits-section {
    padding: 80px 0;
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}
/* Geometric line/shape pattern */
.benefits-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        /* Diagonal lines */
        repeating-linear-gradient(
            135deg,
            transparent,
            transparent 60px,
            rgba(22,98,237,.04) 60px,
            rgba(22,98,237,.04) 61px
        ),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 80px,
            rgba(255,255,255,.02) 80px,
            rgba(255,255,255,.02) 81px
        ),
        /* Diamond grid */
        repeating-linear-gradient(
            60deg,
            transparent,
            transparent 120px,
            rgba(22,98,237,.03) 120px,
            rgba(22,98,237,.03) 121px
        ),
        repeating-linear-gradient(
            -60deg,
            transparent,
            transparent 120px,
            rgba(22,98,237,.03) 120px,
            rgba(22,98,237,.03) 121px
        );
    pointer-events: none;
    z-index: 0;
}
/* Floating circle accents */
.benefits-section::after {
    content: '';
    position: absolute;
    top: -80px;
    right: -60px;
    width: 500px;
    height: 500px;
    border: 1px solid rgba(22,98,237,.08);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    animation: floatOrb 20s ease-in-out infinite;
}
.benefits-section .container {
    position: relative;
    z-index: 1;
}
@keyframes floatOrb {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(30px, -20px); }
    66% { transform: translate(-20px, 15px); }
}

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

.benefit-card {
    background: rgba(255,255,255,.06);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-xl);
    padding: 32px 28px;
    box-shadow: 0 2px 8px rgba(0,0,0,.2);
    transition: box-shadow 0.4s, transform 0.4s, border-color 0.4s, background 0.4s;
    position: relative;
    overflow: hidden;
}
.benefit-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s;
}
.benefit-card:hover {
    box-shadow: 0 8px 32px rgba(22,98,237,.2);
    transform: translateY(-8px);
    border-color: rgba(22,98,237,.3);
    background: rgba(255,255,255,.1);
}
.benefit-card:hover::after { opacity: 1; }

.benefit-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
    color: var(--white);
    margin-bottom: 18px;
    box-shadow: 0 6px 20px rgba(22,98,237,.2);
    transition: transform 0.4s, box-shadow 0.4s, border-radius 0.4s;
}
.benefit-card:hover .benefit-icon {
    transform: scale(1.12) rotate(-6deg);
    box-shadow: 0 10px 28px rgba(22,98,237,.3);
    border-radius: var(--radius-lg);
}

.benefit-card h3 {
    margin: 0 0 8px;
    font-size: 1.08rem;
    color: var(--white);
}
.benefit-card p {
    margin: 0;
    font-size: 0.92rem;
    color: rgba(255,255,255,.65);
    line-height: 1.65;
}
.benefit-card a {
    color: #93bbff;
    text-decoration: none;
    font-weight: 600;
}
.benefit-card a:hover { text-decoration: underline; }

/* ================================================================
   SECTION 4 — HOW WE ASSIST  (White)
   ================================================================ */
.assist-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 40%, #f0f4ff 100%);
}

.assist-bg {
    display: none;
}

/* --- Assist Tabs + Accordions (Two-column FAQ style) --- */
.assist-tabs {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 0;
    max-width: 1000px;
    margin: 0 auto;
    align-items: start;
    min-height: 480px;
}

/* Tab Navigation — Vertical Sidebar (own rounded card) */
.assist-tab-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 12px 0;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 100px;
}

.assist-tab-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 28px;
    border: none;
    border-radius: 0;
    background: transparent;
    color: var(--gray-600);
    font-family: inherit;
    font-size: .95rem;
    font-weight: 500;
    cursor: pointer;
    transition: color .3s, background .3s;
    position: relative;
    text-align: left;
}
.assist-tab-btn::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    border-radius: 0 3px 3px 0;
    background: var(--gradient-primary);
    transition: height .3s;
}
.assist-tab-btn i {
    display: none;
}
.assist-tab-btn span {
    position: relative;
    z-index: 1;
}
.assist-tab-btn:hover {
    color: var(--primary-500);
    background: var(--primary-50);
}
.assist-tab-btn.active {
    color: #fff;
    font-weight: 600;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
}
.assist-tab-btn.active::before {
    height: 0;
}

/* Tab Panels */
.assist-tab-panels {
    position: relative;
    padding: 0;
    margin-left: 24px;
}
.assist-tab-panel {
    display: none;
    animation: tabFadeIn .4s ease;
}
.assist-tab-panel.active {
    display: block;
}
@keyframes tabFadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Accordion Items — Homepage-style gradient cards */
.assist-accordion-item {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    margin-bottom: 12px;
    transition: background .35s, border-color .35s, box-shadow .35s, transform .35s;
    background: var(--white);
    position: relative;
    overflow: hidden;
}
.assist-accordion-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity .35s;
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
    z-index: 2;
}
.assist-accordion-item:last-child {
    margin-bottom: 0;
}
.assist-accordion-item:hover {
    border-color: rgba(22,98,237,.2);
    box-shadow: 0 4px 20px rgba(22,98,237,.08);
    transform: translateY(-2px);
}
.assist-accordion-item:hover::before {
    opacity: 0.5;
}
.assist-accordion-item.open {
    border-color: transparent;
    box-shadow: 0 8px 32px rgba(22,98,237,.14), 0 0 0 1px rgba(22,98,237,.1);
    transform: translateY(-2px);
}
.assist-accordion-item.open::before {
    opacity: 1;
}

/* Accordion Header */
.assist-accordion-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    border: none;
    background: transparent;
    color: var(--gray-900);
    font-family: inherit;
    font-size: 1rem;
    cursor: pointer;
    transition: background .35s, padding .3s;
}
.assist-accordion-item.open .assist-accordion-header {
    background: var(--gradient-primary);
    border-radius: calc(var(--radius-lg) - 1px) calc(var(--radius-lg) - 1px) 0 0;
    padding: 22px 28px;
}
.accordion-header-left {
    display: flex;
    align-items: center;
    gap: 14px;
}
.accordion-title {
    font-weight: 600;
    color: var(--gray-900);
    text-align: left;
    font-size: 1rem;
    transition: color .35s;
    letter-spacing: -0.01em;
}
.assist-accordion-item.open .accordion-title {
    font-weight: 700;
    color: var(--white);
}
.assist-accordion-item:hover:not(.open) .accordion-title {
    color: var(--primary-600);
}

/* Chevron icon */
.accordion-chevron {
    font-size: .75rem;
    color: var(--gray-400);
    transition: transform .4s cubic-bezier(.25,.46,.45,.94), color .35s, background .35s, box-shadow .35s;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gray-100);
}
.assist-accordion-item:hover:not(.open) .accordion-chevron {
    background: var(--primary-50);
    color: var(--primary-500);
}
.assist-accordion-item.open .accordion-chevron {
    transform: rotate(45deg);
    color: var(--primary-700);
    background: rgba(255,255,255,.95);
    box-shadow: 0 2px 8px rgba(22,98,237,.2);
}

/* Number badge */
.assist-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: .8rem;
    font-weight: 800;
    flex-shrink: 0;
    background: var(--gray-100);
    color: var(--gray-500);
    transition: background .35s, color .35s, box-shadow .35s;
    letter-spacing: -0.02em;
}
.assist-accordion-item:hover:not(.open) .assist-num {
    background: rgba(22,98,237,.08);
    color: var(--primary-500);
}
.assist-accordion-item.open .assist-num {
    background: rgba(255,255,255,.2);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(0,0,0,.1);
}

/* Accordion Body */
.assist-accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .5s cubic-bezier(.25,.46,.45,.94), padding .35s;
    padding: 0 28px 0 28px;
    border-top: 0 solid transparent;
}
.assist-accordion-item.open .assist-accordion-body {
    padding: 20px 28px 24px;
    border-top: 1px solid var(--gray-100);
}
.assist-accordion-body p {
    margin: 0;
    font-size: .93rem;
    color: var(--gray-600);
    line-height: 1.75;
}

/* ================================================================
   CTA BANNER  (Light)
   ================================================================ */
.cta-banner {
    padding: 80px 0;
    background: var(--gray-50);
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    background: var(--gradient-primary);
    border-radius: var(--radius-3xl);
    padding: 52px 60px;
    box-shadow: var(--shadow-blue);
    position: relative;
    overflow: hidden;
}
.cta-inner::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    pointer-events: none;
}
.cta-inner::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -30px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    pointer-events: none;
}

.cta-text h2 {
    margin: 0 0 8px;
    color: var(--white);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
}
.cta-text p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

.cta-actions {
    display: flex;
    gap: 14px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}
.cta-inner .btn-primary {
    background: var(--white);
    color: var(--primary-700);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
}
.cta-inner .btn-primary:hover {
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.22);
}
.cta-inner .btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
}
.cta-inner .btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.08);
}

/* ================================================================
   SECTION 5 — RECRUITMENT PROCESS TIMELINE  (Light)
   ================================================================ */
.process-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f0f6ff 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}
.process-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(99,102,241,.04) 0%, transparent 65%);
    pointer-events: none;
}

.process-timeline,
.timeline-connector,
.timeline-phase,
.phase-marker,
.phase-num { /* legacy — hidden */ display: none; }

/* --- Horizontal Card Slider (Full-width peek) --- */
.process-slider-wrap {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 56px 1fr;
    grid-template-rows: 1fr auto;
    gap: 0 20px;
}

/* Fade overlay on right edge to signal "more" */
.process-slider-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(240,246,255,.7) 50%, rgba(255,255,255,.95));
    z-index: 3;
    pointer-events: none;
    transition: opacity .4s;
}
.process-slider-wrap.at-end::after {
    opacity: 0;
}

/* Progress tracker — vertical left side */
.process-progress {
    grid-column: 1;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 12px 0;
}
.process-progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}
.process-progress-step:last-child {
    flex: 0;
}
.process-progress-num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    font-weight: 700;
    flex-shrink: 0;
    transition: all .4s ease;
    background: var(--gray-100);
    color: var(--gray-400);
    border: 2px solid var(--gray-200);
}
.process-progress-step.active .process-progress-num {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 4px 16px rgba(22,98,237,.3);
    transform: scale(1.15);
}
.process-progress-step.done .process-progress-num {
    background: var(--primary-500);
    color: var(--white);
    border-color: transparent;
}
.process-progress-line {
    flex: 1;
    width: 3px;
    background: var(--gray-200);
    margin: 8px 0;
    border-radius: 3px;
    position: relative;
    overflow: hidden;
}
.process-progress-line::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0%;
    background: var(--primary-500);
    border-radius: 3px;
    transition: height .5s ease;
}
.process-progress-step.done .process-progress-line::after {
    height: 100%;
}

/* Slider + controls sit in the right column */
.process-slider-clip {
    grid-column: 2;
    grid-row: 1;
    overflow: hidden;
    position: relative;
}
.process-slider-wrap .swipe-hint {
    grid-column: 2;
    grid-row: 1;
}
.process-slider-controls {
    grid-column: 2;
    grid-row: 2;
}

.process-slider {
    display: flex;
    gap: 28px;
    padding: 8px 0 16px;
}

/* --- Swipe hint arrow that pulses on load --- */
.swipe-hint {
    position: absolute;
    right: 28px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-500);
    color: var(--white);
    padding: 10px 18px 10px 16px;
    border-radius: 999px;
    font-size: .8rem;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(22,98,237,.3);
    animation: swipeHintPulse 2s ease-in-out 3;
    pointer-events: none;
    opacity: 0;
    animation-fill-mode: forwards;
}
.swipe-hint i {
    font-size: .85rem;
    animation: swipeArrowBounce 1s ease-in-out infinite;
}
@keyframes swipeHintPulse {
    0%   { opacity: 0; transform: translateY(-50%) translateX(10px); }
    15%  { opacity: 1; transform: translateY(-50%) translateX(0); }
    85%  { opacity: 1; transform: translateY(-50%) translateX(0); }
    100% { opacity: 0; transform: translateY(-50%) translateX(10px); }
}
@keyframes swipeArrowBounce {
    0%, 100% { transform: translateX(0); }
    50%      { transform: translateX(4px); }
}

/* --- Process Card (Advanced — Full Width) --- */
.process-card {
    flex: 0 0 calc(75% - 14px);
    min-width: 0;
    scroll-snap-align: start;
    border-radius: var(--radius-2xl);
    position: relative;
    overflow: hidden;
    transition: box-shadow .4s, transform .5s ease, opacity .5s ease, filter .5s ease;
    opacity: 0.45;
    transform: scale(0.96);
    filter: saturate(0.25);
    cursor: pointer;
}
.process-card.active {
    opacity: 1;
    transform: scale(1);
    filter: saturate(1);
}

.process-card .phase-list a {
    position: relative;
    z-index: 5;
}

/* Internal two-column grid: content left, visual sidebar right */
.process-card-inner {
    display: grid;
    grid-template-columns: 1fr 220px;
    min-height: auto;
}

.process-card-body {
    padding: 36px 36px 32px;
    position: relative;
    z-index: 1;
}

.process-card-sidebar {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px 20px;
    overflow: hidden;
}

/* Sidebar background per variant */
.process-card--blue .process-card-sidebar {
    background: linear-gradient(180deg, rgba(22,98,237,.06) 0%, rgba(22,98,237,.12) 100%);
    border-left: 1px solid rgba(22,98,237,.1);
}
.process-card--indigo .process-card-sidebar {
    background: linear-gradient(180deg, rgba(99,102,241,.06) 0%, rgba(99,102,241,.12) 100%);
    border-left: 1px solid rgba(99,102,241,.1);
}
.process-card--emerald .process-card-sidebar {
    background: linear-gradient(180deg, rgba(16,185,129,.06) 0%, rgba(16,185,129,.12) 100%);
    border-left: 1px solid rgba(16,185,129,.1);
}

/* Sidebar large step number */
.process-card-big-num {
    font-size: 5.5rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.04em;
    margin-bottom: 8px;
}
.process-card--blue .process-card-big-num   { color: rgba(22,98,237,.1); }
.process-card--indigo .process-card-big-num { color: rgba(99,102,241,.1); }
.process-card--emerald .process-card-big-num{ color: rgba(16,185,129,.1); }

.process-card-sidebar-label {
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 20px;
}
.process-card--blue .process-card-sidebar-label   { color: var(--primary-500); }
.process-card--indigo .process-card-sidebar-label { color: #6366f1; }
.process-card--emerald .process-card-sidebar-label{ color: #10b981; }

/* Sidebar icon circle */
.process-card-sidebar-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 0;
}
.process-card--blue .process-card-sidebar-icon {
    background: rgba(22,98,237,.1);
    color: var(--primary-500);
    box-shadow: 0 0 0 12px rgba(22,98,237,.04);
}
.process-card--indigo .process-card-sidebar-icon {
    background: rgba(99,102,241,.1);
    color: #6366f1;
    box-shadow: 0 0 0 12px rgba(99,102,241,.04);
}
.process-card--emerald .process-card-sidebar-icon {
    background: rgba(16,185,129,.1);
    color: #10b981;
    box-shadow: 0 0 0 12px rgba(16,185,129,.04);
}

/* Colour variants */
.process-card--blue {
    background: linear-gradient(160deg, #f0f6ff 0%, #ffffff 50%, #e8f0fe 100%);
    border: 1px solid rgba(22,98,237,.12);
    box-shadow: 0 4px 24px rgba(22,98,237,.08);
}
.process-card--indigo {
    background: linear-gradient(160deg, #eef0ff 0%, #ffffff 50%, #e8e8fe 100%);
    border: 1px solid rgba(99,102,241,.12);
    box-shadow: 0 4px 24px rgba(99,102,241,.08);
}
.process-card--emerald {
    background: linear-gradient(160deg, #ecfdf5 0%, #ffffff 50%, #d1fae5 100%);
    border: 1px solid rgba(16,185,129,.12);
    box-shadow: 0 4px 24px rgba(16,185,129,.08);
}

.process-card:hover {
    transform: translateY(-4px);
}
.process-card.active:hover {
    transform: translateY(-4px) scale(1);
}
.process-card--blue:hover   { box-shadow: 0 12px 40px rgba(22,98,237,.14); }
.process-card--indigo:hover { box-shadow: 0 12px 40px rgba(99,102,241,.14); }
.process-card--emerald:hover{ box-shadow: 0 12px 40px rgba(16,185,129,.14); }

/* Decorative floating orbs */
.process-card-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}
.process-card-orb--1 {
    width: 200px;
    height: 200px;
    top: -60px;
    right: -60px;
}
.process-card-orb--2 {
    width: 120px;
    height: 120px;
    bottom: -40px;
    left: -30px;
}
.process-card--blue .process-card-orb--1   { background: radial-gradient(circle, rgba(22,98,237,.07), transparent 70%); }
.process-card--blue .process-card-orb--2   { background: radial-gradient(circle, rgba(22,98,237,.05), transparent 70%); }
.process-card--indigo .process-card-orb--1 { background: radial-gradient(circle, rgba(99,102,241,.07), transparent 70%); }
.process-card--indigo .process-card-orb--2 { background: radial-gradient(circle, rgba(99,102,241,.05), transparent 70%); }
.process-card--emerald .process-card-orb--1{ background: radial-gradient(circle, rgba(16,185,129,.07), transparent 70%); }
.process-card--emerald .process-card-orb--2{ background: radial-gradient(circle, rgba(16,185,129,.05), transparent 70%); }

/* Card header — number + icon row */
.process-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}
.process-card-num-wrap {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.process-card-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 800;
}
.process-card--blue .process-card-num   { background: var(--gradient-primary); box-shadow: 0 6px 20px rgba(22,98,237,.25); }
.process-card--indigo .process-card-num { background: linear-gradient(135deg, #6366f1, #4338ca); box-shadow: 0 6px 20px rgba(99,102,241,.25); }
.process-card--emerald .process-card-num{ background: linear-gradient(135deg, #10b981, #047857); box-shadow: 0 6px 20px rgba(16,185,129,.25); }

.process-card-step {
    font-size: .75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--gray-400);
}

.process-card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    font-size: 1.25rem;
}
.process-card--blue .process-card-icon   { background: rgba(22,98,237,.08); color: var(--primary-500); }
.process-card--indigo .process-card-icon { background: rgba(99,102,241,.08); color: #6366f1; }
.process-card--emerald .process-card-icon{ background: rgba(16,185,129,.08); color: #10b981; }

/* Card title */
.process-card h3 {
    margin: 0 0 8px;
    font-size: 1.35rem;
    color: var(--ink-900);
    position: relative;
    z-index: 1;
    letter-spacing: -0.01em;
}

/* Intro paragraph */
.process-card-intro {
    margin: 0 0 14px;
    font-size: .92rem;
    color: var(--gray-600);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Divider */
.process-card-divider {
    height: 1px;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}
.process-card--blue .process-card-divider   { background: linear-gradient(90deg, rgba(22,98,237,.15), transparent); }
.process-card--indigo .process-card-divider { background: linear-gradient(90deg, rgba(99,102,241,.15), transparent); }
.process-card--emerald .process-card-divider{ background: linear-gradient(90deg, rgba(16,185,129,.15), transparent); }

/* Phase list inside card */
.process-card .phase-list {
    margin: 0;
    padding: 0;
    list-style: none;
    position: relative;
    z-index: 1;
    columns: 1;
}
.process-card .phase-list li {
    position: relative;
    padding: 5px 0 5px 28px;
    font-size: 0.88rem;
    color: var(--gray-700);
    line-height: 1.55;
    break-inside: avoid;
}
.process-card .phase-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
}
.process-card--blue .phase-list li::before   { background: var(--primary-100); border: 2px solid var(--primary-500); }
.process-card--indigo .phase-list li::before { background: #e0e7ff; border: 2px solid #6366f1; }
.process-card--emerald .phase-list li::before{ background: #d1fae5; border: 2px solid #10b981; }

.process-card .phase-list a {
    color: var(--primary-500);
    text-decoration: none;
    font-weight: 600;
}
.process-card .phase-list a:hover { text-decoration: underline; }

/* Card footer tag */
.process-card-footer {
    margin-top: 16px;
    position: relative;
    z-index: 1;
}
.process-card-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: .8rem;
    font-weight: 600;
}
.process-card--blue .process-card-tag   { background: rgba(22,98,237,.08); color: var(--primary-600); }
.process-card--indigo .process-card-tag { background: rgba(99,102,241,.08); color: #4f46e5; }
.process-card--emerald .process-card-tag{ background: rgba(16,185,129,.08); color: #047857; }

/* Slider Controls */
.process-slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 32px;
}

.slider-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid var(--gray-200);
    background: var(--white);
    color: var(--gray-600);
    font-size: 1rem;
    cursor: pointer;
    transition: background .3s, color .3s, border-color .3s, box-shadow .3s;
}
.slider-arrow:hover {
    background: var(--primary-500);
    color: var(--white);
    border-color: var(--primary-500);
    box-shadow: var(--shadow-blue);
}
.slider-arrow:disabled {
    opacity: .3;
    cursor: default;
    pointer-events: none;
}

.slider-dots {
    display: flex;
    gap: 10px;
}
.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-200);
    transition: background .3s, transform .3s, width .3s;
    cursor: pointer;
}
.slider-dot.active {
    background: var(--primary-500);
    width: 28px;
    border-radius: 5px;
}

/* ================================================================
   SECTION 6 — BEYOND  (Dark)
   ================================================================ */
.beyond-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.beyond-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(10,20,50,.90), rgba(10,20,50,.94)),
        url('https://images.unsplash.com/photo-1600880292203-757bb62b4baf?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
    z-index: -2;
}
.beyond-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 55% 55% at 20% 30%, rgba(22, 98, 237, 0.14), transparent),
        radial-gradient(ellipse 40% 40% at 90% 80%, rgba(30, 58, 138, 0.1), transparent);
}

.beyond-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 56px;
    align-items: center;
}

.beyond-copy h2 {
    margin: 14px 0 20px;
    font-size: clamp(1.6rem, 3vw, 2.3rem);
    color: var(--white);
    line-height: 1.2;
}
.beyond-copy > p {
    margin: 0 0 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.75;
    font-size: 1.02rem;
}
.beyond-copy .btn { margin-top: 12px; }

.beyond-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    padding: 32px 24px;
    text-align: center;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: background 0.4s, transform 0.5s cubic-bezier(.25,.46,.45,.94), border-color 0.4s, box-shadow 0.4s;
}
.stat-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-6px);
    border-color: rgba(22, 98, 237, 0.3);
    box-shadow: 0 12px 40px rgba(22,98,237,.15);
}

.stat-card strong {
    display: block;
    font-size: 2rem;
    color: var(--white);
    letter-spacing: -0.02em;
    margin-bottom: 6px;
}
.stat-card span {
    font-size: 0.86rem;
    color: rgba(255, 255, 255, 0.55);
}

/* ================================================================
   SECTION 7 — TESTIMONIALS  (Light)
   ================================================================ */
.testimonials-section {
    padding: 80px 0 40px;
    background: var(--gray-50);
}

/* ================================================================
   SECTION 8 — CONTACT  (Light)
   ================================================================ */
.contact-section {
    padding: 80px 0;
    background: var(--gray-50);
}

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

.contact-card {
    background: rgba(255,255,255,.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,.8);
    border-radius: var(--radius-xl);
    padding: 32px 24px 28px;
    box-shadow: 0 1px 3px rgba(0,0,0,.04), 0 8px 32px rgba(22,98,237,.06);
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.4s, transform 0.4s, border-color 0.4s;
    text-align: center;
}
.contact-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,.06), 0 20px 60px rgba(22,98,237,.12);
    transform: translateY(-6px);
    border-color: rgba(22,98,237,.15);
}

.contact-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
    color: var(--white);
    margin-bottom: 18px;
    box-shadow: 0 6px 20px rgba(22,98,237,.2);
    transition: transform 0.4s, box-shadow 0.4s;
}
.contact-card:hover .contact-card-icon {
    transform: scale(1.1) rotate(-6deg);
    box-shadow: 0 10px 28px rgba(22,98,237,.3);
}

.contact-card h3 {
    margin: 0 0 14px;
    font-size: 0.95rem;
    color: var(--ink-900);
    line-height: 1.4;
}
.contact-card p {
    margin: 0 0 4px;
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.5;
}
.contact-card a {
    color: var(--primary-500);
    text-decoration: none;
    font-weight: 600;
}
.contact-card a:hover { text-decoration: underline; }

/* ========================================
   TOPBAR & HEADER
   ======================================== */
.wdt-topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100000;
    background: #031543;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.topbar-inner {
    width: min(var(--max-width), calc(100% - 2rem));
    min-height: 42px;
    margin-inline: auto;
    display: flex;
    align-items: center;
}

.wdt-topbar-contact {
    width: 100%;
    justify-content: space-between;
}

.wdt-topbar-contact-item {
    color: #d7e3ff;
    font-size: 13px;
    text-decoration: none;
}

.header-inner {
    width: min(var(--max-width), calc(100% - 2rem));
    margin-inline: auto;
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.frogg-header {
    top: 42px;
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08) !important;
}

/* ---- Nav links: dark text for always-white header ---- */
.how-it-works-page .wdt-nav-menu .elementor-nav-menu > li > a {
    color: var(--ink-900, #0b1534) !important;
}

.how-it-works-page .wdt-nav-menu .elementor-nav-menu > li.menu-item-has-children > a::after {
    color: var(--gray-500, #6b7280) !important;
}

/* ---- Blue pill: hover whole <li> area or active item ---- */
.how-it-works-page .wdt-nav-menu .elementor-nav-menu > li:hover > a,
.how-it-works-page .wdt-nav-menu .elementor-nav-menu > li.current-menu-item > a {
    color: #fff !important;
}

.how-it-works-page .wdt-nav-menu .elementor-nav-menu > li:hover > a::before,
.how-it-works-page .wdt-nav-menu .elementor-nav-menu > li.current-menu-item > a::before {
    opacity: 1 !important;
}

.how-it-works-page .wdt-nav-menu .elementor-nav-menu > li.menu-item-has-children:hover > a::after,
.how-it-works-page .wdt-nav-menu .elementor-nav-menu > li.current-menu-item.menu-item-has-children > a::after {
    color: #fff !important;
}

/* ---- Dropdown panel: white bg for always-white header ---- */
.how-it-works-page .wdt-nav-menu .elementor-nav-menu--dropdown {
    background: #ffffff !important;
    border: 1px solid rgba(18, 104, 251, 0.15) !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.10), 0 0 0 1px rgba(18, 104, 251, 0.06) !important;
}

/* ---- Dropdown links ---- */
.how-it-works-page .wdt-nav-menu .elementor-nav-menu--dropdown a {
    color: var(--ink-900, #0b1534) !important;
}

.how-it-works-page .wdt-nav-menu .elementor-nav-menu--dropdown a:hover {
    color: #fff !important;
}

/* ---- Outline button: match scrolled-state look ---- */
.how-it-works-page .frogg-btn-outline .elementor-button {
    border-color: var(--primary-500, #1662ed) !important;
    color: var(--primary-500, #1662ed) !important;
}

.how-it-works-page .frogg-btn-outline .elementor-button:hover {
    background: rgba(22, 98, 237, 0.08) !important;
}

/* ---- Mobile toggle: dark lines ---- */
.how-it-works-page .wdt-toggle-line {
    background: var(--ink-900, #0b1534) !important;
}

.brand img {
    height: 44px;
    width: auto;
}

.wdt-nav-menu .elementor-nav-menu {
    margin: 0;
    padding: 0;
    list-style: none;
}

.wdt-nav-menu .elementor-nav-menu > li {
    position: relative;
}

.wdt-nav-menu .elementor-nav-menu--dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 260px;
    list-style: none;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: 0.25s ease;
}

.wdt-nav-menu .menu-item-has-children:hover .elementor-nav-menu--dropdown,
.wdt-nav-menu
    .menu-item-has-children:focus-within
    .elementor-nav-menu--dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-actions .elementor-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* ========================================
   FOOTER
   ======================================== */




/* ========================================
   HERO BANNER (about-style)
   ======================================== */
.about-hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    padding: 180px 24px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(22,98,237,.06) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 80%, rgba(30,58,138,.04) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}
.hero-bg-image {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    opacity: 0.35;
    transform: scale(1.08);
    filter: saturate(0.5);
}
.hero-bg-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,20,50,.9) 0%, rgba(20,40,100,.82) 50%, rgba(10,25,60,.9) 100%);
    pointer-events: none;
}

/* Subtle grid overlay for depth */
.hero-grid-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.03;
    background-image:
        linear-gradient(rgba(255,255,255,.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.1) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

/* Floating geometric shapes */
.hero-shapes {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}
.hero-shape {
    position: absolute;
    border-radius: 50%;
    border: 1.5px solid rgba(22,98,237,.12);
}
.hero-shape--1 {
    width: 420px; height: 420px;
    top: -80px; right: -80px;
    animation: shapeFloat1 28s ease-in-out infinite;
}
.hero-shape--2 {
    width: 220px; height: 220px;
    bottom: 8%; left: -40px;
    border-color: rgba(59,130,246,.1);
    animation: shapeFloat2 22s ease-in-out infinite;
}
.hero-shape--3 {
    width: 100px; height: 100px;
    top: 35%; right: 12%;
    border-color: rgba(22,98,237,.08);
    animation: shapeFloat3 18s ease-in-out infinite;
}
@keyframes shapeFloat1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(20px, -25px) rotate(6deg); }
    66% { transform: translate(-15px, 18px) rotate(-4deg); }
}
@keyframes shapeFloat2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(-12px, 18px) rotate(-5deg); }
    66% { transform: translate(18px, -12px) rotate(4deg); }
}
@keyframes shapeFloat3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(10px, -15px) scale(1.1); }
}
.about-hero-content {
    position: relative;
    max-width: 880px;
    margin: 0 auto;
    z-index: 2;
}
.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 12px;
    color: #ffffffd9;
    letter-spacing: 1px;
    text-shadow: 0 1px 4px rgba(0,0,0,.3);
    animation: fadeInUp .7s ease both;
}
.breadcrumb a {
    color: #ffffffd9;
    text-decoration: none;
    transition: color .25s;
}
.breadcrumb a:hover { color: #fff; }
.breadcrumb-sep { opacity: .3; }
.about-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    color: #fff;
    margin: 0 0 24px;
    line-height: 1.08;
    letter-spacing: -0.025em;
    text-shadow: 0 4px 30px rgba(0,0,0,.4);
    animation: fadeInUp .7s ease .1s both;
}
.gradient-text {
    color: var(--wdtPrimaryColor, #1268fb);
       background: linear-gradient(135deg, #1662ed 0%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.about-hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.15rem);    color: #ffffffd9;
    font-style: italic;
    max-width: 540px;
    margin: 0 auto 48px;
    line-height: 1.7;
    text-shadow: 0 1px 6px rgba(0,0,0,.2);
    animation: fadeInUp .7s ease .15s both;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1100px) {
    .wdt-topbar { display: none; }
    .frogg-header { top: 0; }
    .header-actions { display: none; }
    .wdt-nav-menu { display: none !important; }
    .wdt-mobile-toggle { display: flex !important; }

    .page-hero { padding: 60px 0 72px; margin-top: 0; }
    .benefits-section,
    .assist-section,
    .process-section,
    .beyond-section { padding: 80px 0; }
    .cta-banner { padding: 80px 0; }
    .testimonials-section { padding: 80px 0 32px; }
    .contact-section { padding: 80px 0; }

    .intro-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 24px;
    }
    .intro-divider { width: 80px; height: 1px; margin: 0 auto; }
    .intro-candidate { text-align: center; }

    .page-hero-grid { grid-template-columns: 1fr; }
    .hero-floating-stat { left: 50%; transform: translateX(-50%); bottom: -24px; }

    .benefits-grid { grid-template-columns: 1fr 1fr; }
    .assist-tabs { grid-template-columns: 180px 1fr; }
    .assist-tab-btn { padding: 14px 20px; font-size: .88rem; }
    .assist-tab-nav { position: static; }

    .cta-inner { flex-direction: column; text-align: center; padding: 40px 32px; }
    .cta-actions { justify-content: center; }

    .process-slider-wrap { max-width: 100%; grid-template-columns: 48px 1fr; }

    .beyond-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 767px) {
    .about-hero { padding: 140px 20px 60px; }
    .about-cta-banner {
        grid-template-columns: 1fr;
        margin-top: -24px;
        padding: 0 16px;
    }
    .cta-col { padding: 28px 24px; }
    main { padding-top: 0; }
    .header-inner { min-height: 74px; }
    .brand img { height: 36px; }

    .page-hero { padding: 48px 0 64px; margin-top: 0; }
    .benefits-section,
    .assist-section,
    .process-section,
    .beyond-section { padding: 64px 0; }
    .cta-banner { padding: 64px 0; }
    .testimonials-section { padding: 64px 0 24px; }
    .contact-section { padding: 64px 0; }

    .intro-grid { padding: 24px 20px; }
    .hero-copy h1 { font-size: clamp(1.6rem, 6vw, 2.2rem); }
    .hero-card img { height: 240px; }
    .hero-floating-stat { position: relative; left: auto; bottom: auto; transform: none; margin-top: 16px; }

    .benefits-grid { grid-template-columns: 1fr; }
    .assist-tabs { grid-template-columns: 1fr; }
    .assist-tab-nav { flex-direction: row; border-radius: var(--radius-lg); padding: 0; overflow-x: auto; position: static; margin-bottom: 16px; }
    .assist-tab-panels { margin-left: 0; padding-left: 0; }
    .assist-tab-btn { padding: 16px 20px; white-space: nowrap; }
    .assist-tab-btn::before { left: 50%; top: auto; bottom: 0; transform: translateX(-50%); width: 0; height: 3px; border-radius: 3px 3px 0 0; }
    .assist-tab-btn.active::before { width: 40px; height: 3px; }
    .assist-accordion-body { padding-left: 24px; padding-right: 24px; }
    .assist-accordion-header { padding: 18px 20px; }
    .assist-accordion-item.open .assist-accordion-header { padding: 18px 20px; }
    .accordion-title { font-size: .93rem; }
    .assist-num { width: 32px; height: 32px; font-size: .75rem; }
    .beyond-stats { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; }

    .process-card { flex: 0 0 85%; }
    .process-card-inner { grid-template-columns: 1fr; }
    .process-card-sidebar { display: none; }
    .process-card-body { padding: 32px 28px 28px; }
    .process-slider-wrap::after { width: 48px; }
    .swipe-hint { right: 12px; padding: 8px 14px; font-size: .72rem; }
    .process-progress { padding: 8px 0; }
    .process-slider-wrap { grid-template-columns: 1fr; }
    .process-progress { grid-column: 1; flex-direction: row; padding: 0 4px; margin-bottom: 16px; }
    .process-progress-step { flex-direction: row; }
    .process-progress-line { width: auto; height: 3px; flex: 1; margin: 0 8px; }
    .process-progress-line::after { width: 0%; height: 100%; }
    .process-progress-step.done .process-progress-line::after { width: 100%; height: 100%; }
    .process-slider-wrap .process-slider-clip { grid-column: 1; grid-row: 2; }
    .process-slider-controls { grid-column: 1; grid-row: 3; }
    .process-card h3 { font-size: 1.2rem; }
    .process-card-icon { width: 44px; height: 44px; font-size: 1.1rem; }
    .process-card .phase-list li { padding-left: 24px; font-size: .88rem; }
}

/* ===== CTA DUAL-CARD BANNER ===== */
.about-cta-banner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 960px;
    margin: -40px auto 0;
    position: relative;
    z-index: 2;
    gap: 24px;
    padding: 0 24px;
}
.cta-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-xl);
    padding: 36px 32px;
    text-align: center;
    transition: transform .3s, box-shadow .3s, background .4s, border-color .4s;
}
.cta-col .cta-btn {
    margin-top: auto;
}
.cta-col:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(22,98,237,.25);
    border-color: rgba(255,255,255,.25);
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
}
.cta-col h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px;
    transition: color .4s;
}
.cta-col:hover h3 { color: #fff; }
.cta-col p {
    font-size: .95rem;
    color: rgba(255,255,255,.7);
    line-height: 1.6;
    margin: 0 0 20px;
    transition: color .4s;
}
.cta-col:hover p { color: rgba(255,255,255,.85); }
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #1e3a8a;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: .95rem;
    transition: transform .2s, box-shadow .2s, background .3s, color .3s;
}
.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(22,98,237,.35);
}
.cta-col:hover .cta-btn {
    background: #fff;
    color: #1e3a8a;
    box-shadow: 0 4px 12px rgba(0,0,0,.15);
}
.cta-btn .btn-arrow { transition: transform .2s; }
.cta-btn:hover .btn-arrow { transform: translateX(4px); }

/* ===== SECTION BADGES ===== */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 5px 14px;
    border-radius: 50px;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .03em;
    margin-bottom: 16px;
    box-shadow: 0 4px 12px rgba(22,98,237,.2);
}
.section-badge--dark {
    background: rgba(22,98,237,.15);
    color: #fff;
    box-shadow: 0 4px 12px rgba(255,255,255,.12);
}
.section-badge i {
    font-size: .75rem;
}

/* ===== TITLE ACCENTS ===== */
.title-accent {
    background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.title-accent-light {
    color: #93bbff;
}

/* ===== SCROLL REVEAL ===== */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .7s cubic-bezier(.25,.46,.45,.94), transform .7s cubic-bezier(.25,.46,.45,.94);
}
.reveal-up.revealed {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 767px) {
    .about-cta-banner {
        grid-template-columns: 1fr;
        padding: 0 16px;
        margin-top: -24px;
    }
    .cta-col { padding: 28px 24px; }
}