:root {
    --primary-blue: #0442F2;
    --primary-purple: #6D28D9;
    --hero-bg: #160028;
    --accent-yellow: #F5C518;
    --accent-orange: #F59E0B;
    --text-dark: #111827;
    --text-light: #F3F4F6;
    --bg-light: #F9FAFB;
    --font-main: 'TASA Orbiter', 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    font-family: var(--font-main);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-light);
    overflow-x: hidden;
    width: 100%;
}

body.no-scroll {
    overflow: hidden;
    height: 100vh;
}

/* ── Custom Scrollbar ─────────────────────────── */
::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(4, 66, 242, 0.7);
}

* {
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.25) transparent;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(16px, 2vw, 40px);
}

/* Utilities */
.text-blue {
    color: #0442F2;
}

.text-white {
    color: #fff;
}

.text-black {
    color: #000;
}

.btn {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--accent-yellow);
    color: var(--text-dark);
}

.btn-secondary {
    background-color: transparent;
    color: var(--accent-yellow);
    border: 2px solid var(--accent-yellow);
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

/* Navbar */
.navbar {
    background: #fff;
    padding: 20px 0;
    border-bottom: 1px solid #eaeaea;
    position: relative;
    z-index: 200;
    transition: padding 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

/* Desktop Sticky Navbar on Scroll to Our Edge Section */
@media (min-width: 769px) {
    .navbar.sticky-header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        padding: 12px 0;
        background: rgba(255, 255, 255, 0.68);
        backdrop-filter: blur(20px) saturate(160%);
        -webkit-backdrop-filter: blur(20px) saturate(160%);
        box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.06), 0 1px 2px 0 rgba(255, 255, 255, 0.5) inset;
        border-bottom: 1px solid rgba(255, 255, 255, 0.45);
        animation: slideDownHeader 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    .navbar.sticky-header .logo-img {
        height: 38px;
        transition: height 0.3s ease;
    }
}

@keyframes slideDownHeader {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.hamburger-menu {
    display: none;
    width: 45px;
    height: 45px;
    cursor: pointer;
    z-index: 1000;
    position: relative;
}

.hamburger-menu svg {
    width: 100%;
    height: 100%;
    display: block;
    transition: transform 0.3s ease;
}

/* When menu is open — fix position so it floats above the overlay */
.hamburger-menu.active {
    position: fixed;
    top: 20px;
    right: 20px;
}

/* Stroke turns white on dark overlay */
.hamburger-menu.active svg g {
    stroke: #fff;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    color: #555;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.nav-links a:hover {
    color: #000;
    -webkit-text-stroke: 0.6px #000;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 100vh;
    background-color: #12021a;
    color: white;
    display: flex;
    flex-direction: column;
}

/* The photo — bleeds from center */
.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    z-index: 1;
    opacity: 1;
    filter: saturate(1.15) contrast(1.05);
    transform: translateZ(0); 
    will-change: transform;
}

/* Yellow art line animation */
.hero-art-overlay {
    position: absolute;
    top: 0;
    right: -5vw;
    height: 105%;
    width: auto;
    max-width: none;
    z-index: 3;
    pointer-events: none;
    will-change: clip-path, transform;
    clip-path: inset(0 0 100% 100%);
    transform: translateZ(0);
}




/* Dark gradient overlay fading left-to-right */
.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(136, 67, 193, 0.24);
    z-index: 2;
}

/* Content wrapper */
.hero-content {
    position: relative;
    z-index: 4;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Subtitle at the very top */
.hero-top-subtitle {
    padding-top: 40px;
    margin-bottom: 20px;
}

.hero-top-subtitle p {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    opacity: 0.9;
    letter-spacing: 0.5px;
}

/* Main text block */
.hero-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    max-width: 1000px;
    padding-top: 10px;
}

.hero-title {
    font-family: 'TASA Orbiter', 'Inter', sans-serif;
    font-size: clamp(2rem, 5vw, 4.8rem);
    /* Reduced font size */
    font-weight: 700;
    line-height: 0.88;
    margin-bottom: 20px;
    letter-spacing: -1px;
    text-transform: uppercase;
    color: #fff;
}

.hero-title span {
    display: block;
    padding-bottom: 5px;
    /* Slight adjustment to prevent clipping if any */
}

/* Yellow pill buttons */
.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-hero-primary,
.btn-hero-secondary {
    display: inline-block;
    background-color: #ffcc00;
    color: #000;
    border: none;
    padding: 8px 20px;
    /* Reduced padding */
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 0.85rem;
    /* Reduced font size */
    cursor: pointer;
    text-decoration: none;
    letter-spacing: 0.2px;
    transition: background 0.25s ease, transform 0.2s ease;
}

.btn-hero-primary:hover,
.btn-hero-secondary:hover {
    background-color: #e6b800;
    transform: translateY(-2px);
}

/* 3-column text strip at the bottom */
.hero-bottom-features {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    padding-bottom: 12vh;
    margin-top: auto;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    line-height: 1.5;
    opacity: 0.9;
}

.hero-feature {
    max-width: 320px;
}

.hero-feature p {
    margin: 0;
}

.hero-feature strong {
    font-weight: 800;
}

.hero-feature-right {
    text-align: left;
}

/* Hero Split Layout */
.hero-layout-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    flex: 1;
    gap: 40px;
    padding-top: 40px;
}
@media (min-width: 769px) {
    .hero-bottom-features {
        transform: translateY(80px); /* Moved down per user request */
    }
    .hero-feature-unique {
        padding-bottom: 7rem;
        margin-top: -3rem;
    }

    .hero-feature-unique+.hero-feature {
        margin-top: -3.5rem;
        /* Reduced negative margin to push it down a bit */
    }

    .hero-feature-right {
        margin-top: -1.5rem;
        /* Pull third text up to reduce the gap */
    }
    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
}


.hero-left-col {
    flex: 0 0 35%;
}

.hero-right-col {
    flex: 0 0 60%;
    display: flex;
  
    justify-content: end;
    align-items: flex-end;
}

@media (max-width: 768px) {
    /* Hero container ki height fix ki taaki button na chhupe */
    .hero {
        height: auto;
        min-height: 100vh;
        padding-bottom: 60px;
    }
    .hero-layout-grid {
        flex-direction: column;
        padding-top: 20px;
        gap: 20px; /* 20px gap between sections */
        justify-content: flex-end; /* Align all items to the bottom */
        margin-top: auto; /* Push to the very bottom */
    }
    .hero-left-col {
        flex: 0 0 auto;
        width: 100%;
    }
    .hero-right-col {
        flex: 0 0 auto;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding-bottom: 20px;
        margin-top: 0;
    }
    .hero-bottom-features {
        padding-bottom: 0;
        margin-top: 0;
        gap: 8px; /* Minimal gap so text blocks are close together */
    }
    .hero-bottom-features .hero-feature:nth-child(1),
    .hero-bottom-features .hero-feature:nth-child(2),
    .hero-bottom-features .hero-feature:nth-child(3) {
        margin-top: 0;
        position: static;
        top: auto;
    }
}


/* ============================================
   OUR EDGE SECTION
   ============================================ */
.our-edge {
    position: relative;
    z-index: 10;
    padding: 80px 0 60px;
    background: #fff;
}

.our-edge-title {
    font-family: 'TASA Orbiter', 'Inter', sans-serif;
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 800;
    color: #0442F2;
    letter-spacing: 2px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

/* Tab Bar */
.edge-tabs {
    display: flex;
    align-items: flex-end;
    border-bottom: none;
    margin-bottom: 0;
    gap: 0;
}

.edge-tab {
    padding: 13px 30px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: #555;
    cursor: pointer;
    background: transparent;
    border: none;
    transition: color 0.2s ease;
    white-space: nowrap;
    user-select: none;
}

.edge-tab.active {
    background-color: #0442F2;
    color: #fff;
    font-weight: 700;
    border-radius: 6px 6px 0 0;
}

.edge-tab:not(.active):hover {
    color: #0442F2;
}

/* Panel — seamlessly connected below active tab */
.edge-panel {
    display: none;
    overflow: hidden;
    height: 420px;
    /* Increased height slightly more */
    border-radius: 0 8px 8px 8px;
}

.edge-panel.active {
    display: flex;
}

/* Left gradient side */
.edge-panel-left {
    width: 35%;
    min-width: 260px;
    background: linear-gradient(175deg, #0442F2 0%, #6C22E8 100%);
    padding: 34px 38px 90px 55px;
    /* Adjusted padding */
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #fff;
    position: relative;
    flex-shrink: 0;
}

.edge-number {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    opacity: 0.7;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: auto;
}

.edge-panel-title {
    font-family: 'TASA Orbiter', 'Inter', sans-serif;
    font-size: clamp(2.2rem, 4vw, 3rem);
    /* Increased title size to fit 330px height */
    font-weight: 800;
    line-height: 1.05;
    margin-top: 22px;
    margin-bottom: 14px;
    color: #fff;
}

.edge-panel-desc {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 0;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.88);
    max-width: 230px;
}

/* Right photo side */
.edge-panel-right {
    flex: 1;
    overflow: hidden;
    height: 100%;
}

.edge-panel-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    /* Centered image */
    display: block;
}

/* Dots */
.edge-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
}

.edge-dot {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    border: 2px solid #0442F2;
    background: transparent;
    cursor: pointer;
    transition: background 0.2s ease;
    display: inline-block;
}

.edge-dot.active {
    background: #0442F2;
}

/* Designed to Feel Different */
.designed-different {
    padding: 80px 0;
    background-color: #ffffff !important;
}

.designed-header {
    margin-bottom: 70px;
}

/* Top Row */
.designed-title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.designed-main-title {
    font-family: 'TASA Orbiter', 'Inter', sans-serif;
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 800;
    line-height: 1.05;
    color: #0442F2;
    /* Updated global blue */
    margin: 0;
    letter-spacing: -1px;
}

.highlight-line {
    opacity: 0.2;
    transition: opacity 0.1s ease-out;
}

.designed-icon-wrapper {
    flex-shrink: 0;
    margin-top: 20px;
    margin-right: 40px;
}

.icon-star {
    width: 250px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

/* Bottom Row */
.designed-bottom-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.designed-sub {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.5;
    color: #222;
    margin: 0;
    flex-shrink: 0;
}

.designed-line-input {
    flex-grow: 1;
    height: 40px;
    border: none;
    border-bottom: 1px solid #000;
    background: transparent;
    margin: 0 30px;
    outline: none;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    padding: 0 10px;
    color: #000;
}

.designed-line-input::placeholder {
    color: rgba(0, 0, 0, 0.4);
}

.designed-signup {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.signup-text {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #000;
}

.signup-btn {
    background-color: #FFD24D;
    color: #000;
    font-weight: 700;
    font-size: 1.05rem;
    padding: 12px 32px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.signup-btn:hover {
    transform: translateY(-2px);
    background-color: #e6b800;
}

.signup-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.product-cards {
    display: flex;
    gap: 20px;
    height: 450px;
}

.card {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: flex 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card .blue-tint {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(4, 66, 242, 0.7);
    /* #0442F2 with opacity */
    mix-blend-mode: color;
    z-index: 1;
    transition: opacity 0.5s ease;
}

.card .blue-multiply {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(4, 66, 242, 0.5);
    /* #0442F2 with opacity */
    mix-blend-mode: multiply;
    z-index: 2;
    transition: opacity 0.5s ease;
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 30px;
    color: white;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
    width: 100%;
    height: 50%;
    z-index: 3;
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.card-overlay h3 {
    font-size: 2.2rem;
    margin-bottom: 5px;
    font-weight: 800;
}

.card-overlay p {
    font-size: 1.1rem;
    margin: 0;
    opacity: 0.9;
}

.card.active {
    flex: 2.5;
}

.card.active .blue-tint,
.card.active .blue-multiply {
    opacity: 0;
}

.card.active .card-overlay {
    opacity: 1;
}

/* Start with Customer */
.start-customer {
    position: relative;
    padding: 140px 0;
    text-align: center;
    color: white;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
}

.start-customer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #0442F2 0%, #8500A7 100%);
    opacity: 0.5;
    z-index: 1;
    pointer-events: none;
}

.wavy-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.start-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 20px;
}

.start-content .small-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.start-content h2 {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2rem, 5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 35px 0;
    color: #FFD24D;
    white-space: nowrap;
}

.start-content .start-desc {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
}

/* Our Story Slider */
.our-story-slider {
    padding: 100px 0;
    background-color: #ffffff !important;
    position: relative;
    overflow: hidden;
}

.story-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.story-section-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 80px;
    display: flex;
    align-items: center;
    white-space: nowrap;
    gap: 20px;
    color: #000;
}

.story-section-title::after {
    content: '';
    display: block;
    height: 1px;
    background-color: #000;
    flex-grow: 1;
}

.story-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.story-slides {
    display: grid;
    width: 85%;
}

.story-slide {
    grid-area: 1 / 1;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    gap: 20px;
    z-index: 1;
}

.story-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.slide-left {
    flex: 0 0 35%;
    max-width: 35%;
}

.slide-left h2 {
    font-family: 'TASA Orbiter', 'Inter', sans-serif;
    font-size: clamp(2rem, 4vw, 3.8rem);
    font-weight: 800;
    line-height: 1.05;
    color: #0442F2;
    margin: 0;
    letter-spacing: -1px;
}

.slide-middle {
    flex: 0 0 26%;
    max-width: 26%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-swirl {
    width: 250px;
    height: auto;
    background-color: transparent;
    filter: contrast(1.6) brightness(1.2);
    object-fit: cover;
}

.video-crop-wrapper {
    width: 180px;
    height: 180px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-swirl-cropped {
    width: 310px;
    height: auto;
    max-width: none;
    background-color: transparent;
    filter: contrast(1.5) brightness(1.15);
    object-fit: cover;
}

.slide-3-video-wrapper {
    width: 400px;
    height: 280px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(-15px) scale(0.55);
}

.icon-swirl-slide-3 {
    width: 420px;
    height: auto;
    max-width: none;
    flex-shrink: 0;
    background-color: transparent;
    filter: contrast(1.6) brightness(1.2);
    object-fit: cover;
}


.slide-right {
    flex: 0 0 39%;
    max-width: 39%;
}

.slide-right p {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 25px;
}

.story-arrow {
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10;
    padding: 10px;
}

.story-arrow img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    transition: transform 0.2s;
}

.story-arrow.right-arrow img {
    transform: scale(1.5);
    /* Scale up if it has internal padding */
}

.story-arrow.right-arrow:hover img {
    transform: scale(1.6);
}

.story-arrow:hover img {
    transform: scale(1.1);
}

.story-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.story-dot {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background-color: transparent;
    border: 2px solid #0442F2;
    cursor: pointer;
    transition: all 0.3s ease;
}

.story-dot.active {
    background-color: #0442F2;
}

/* Build What Insurance */
.build-insurance {
    background: linear-gradient(135deg, #0442F2 0%, #7A07AE 100%);
    padding: 100px 0 80px;
    color: white;
}

.build-main-title {
    font-family: 'TASA Orbiter', 'Inter', sans-serif;
    font-size: clamp(2.8rem, 5vw, 5rem);
    font-weight: 800;
    line-height: 1.05;
    color: #fff;
    letter-spacing: -1px;
    margin-bottom: 50px;
}

.build-tabs {
    display: flex;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    margin-bottom: 50px;
    width: 100%;
    overflow: hidden;
}

.build-tab {
    flex: 1;
    padding: 14px 60px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    transition: all 0.2s ease;
    border-right: 1.5px solid rgba(255, 255, 255, 0.35);
    white-space: nowrap;
    text-align: center;
}

.build-tab:last-child {
    border-right: none;
}

.build-tab.active {
    background-color: #FFD24D;
    color: #111;
}

.build-tab:not(.active):hover {
    color: #fff;
}

.build-panel {
    display: none;
}

.build-panel.active {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 40px;
}

/* careers 2x2 grid */
.careers-features {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 30px 50px;
}

.careers-title {
    font-size: 2rem !important;
    font-weight: 700;
    line-height: 1.2;
}

.icon-careers {
    width: 340px;
    height: auto;
    object-fit: contain;
    mix-blend-mode: screen;
    filter: sepia(1) hue-rotate(250deg) saturate(5) brightness(1.1);
    transform: translateY(30px);
}

.partner-left {
    flex: 1.2;
}

.partner-left h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
}

.partner-subtext {
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 0;
    max-width: 450px;
}

.partner-features {
    display: flex;
    gap: 40px;
    margin: 35px 0;
}

.p-feature {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    flex: 1;
}

.p-feature .bullet {
    width: 8px;
    height: 8px;
    min-width: 8px;
    background-color: #FFD24D;
    border-radius: 50%;
    margin-top: 6px;
}

.p-feature h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.p-feature p {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.5;
    margin: 0;
}

.who-can-partner h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.who-can-partner p {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
}

.partner-right {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
}

.icon-pill {
    width: 340px;
    height: auto;
    object-fit: contain;
    mix-blend-mode: screen;
    filter: sepia(1) hue-rotate(250deg) saturate(5) brightness(1.1);
    transform: translateY(30px);
}

.email-contact {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

.email-contact a {
    color: var(--accent-yellow);
    text-decoration: none;
    font-weight: 700;
}

/* Footer */
.footer {
    background: #e6e6e6;
    padding: 50px 0;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left .logo-img {
    height: 36px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.social-icon svg {
    width: 15px;
    height: 15px;
}

.social-icon:hover {
    transform: scale(1.1);
}

.footer-links-grid {
    display: flex;
    gap: 60px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-link {
    font-family: 'Inter', sans-serif;
    color: #555;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.footer-link:hover {
    color: #000;
    -webkit-text-stroke: 0.6px #000;
}

/* ============================================
   RESPONSIVE — Desktop Breakpoints Only
   Layout stays the same; fonts & spacing scale.
   ============================================ */

/* ── 1920px ────────────────────────────────── */
@media (min-width: 1800px) {
    .container {
        max-width: 1400px;
    }

    .hero-top-subtitle p {
        font-size: 1.6rem;
    }

    .hero-title {
        font-size: 6rem;
    }

    .hero-bottom-features {
        font-size: 1.2rem;
    }

    .our-edge-title {
        font-size: 5.5rem;
    }

    .edge-panel {
        height: 500px;
    }

    .edge-panel-title {
        font-size: 3rem;
    }

    .designed-main-title {
        font-size: 6.5rem;
    }

    .icon-star {
        width: 300px;
    }

    .product-cards {
        height: 520px;
    }

    .start-content h2 {
        font-size: 5rem;
    }

    .insurance-india-left .section-title {
        font-size: 5rem;
    }

    .icon-swirl {
        width: 420px;
    }

    .build-main-title {
        font-size: 6rem;
    }

    .partner-left h3 {
        font-size: 2rem;
    }

    .icon-pill,
    .icon-careers {
        width: 400px;
    }

    .footer {
        padding: 60px 0;
    }
}

/* ── 1440px ────────────────────────────────── */
@media (max-width: 1440px) {
    .container {
        max-width: 1180px;
    }

    .hero-title {
        font-size: clamp(2rem, 4.5vw, 4.4rem);
    }

    .hero-top-subtitle p {
        font-size: 1.3rem;
    }

    .our-edge-title {
        font-size: clamp(2.5rem, 4.5vw, 4rem);
    }

    .edge-panel {
        height: 400px;
    }

    .designed-main-title {
        font-size: clamp(2.8rem, 5.5vw, 5rem);
    }

    .icon-star {
        width: 220px;
    }

    .product-cards {
        height: 420px;
    }

    .insurance-india-left .section-title {
        font-size: clamp(2.2rem, 4vw, 3.8rem);
    }

    .icon-swirl {
        width: 300px;
    }

    .build-main-title {
        font-size: clamp(2.5rem, 4.5vw, 4.5rem);
    }

    .icon-pill,
    .icon-careers {
        width: 300px;
    }
}

/* ── 1366px ────────────────────────────────── */
@media (max-width: 1366px) {
    .container {
        max-width: 1100px;
    }

    .hero-title {
        font-size: clamp(2rem, 4.2vw, 4rem);
    }

    .hero-top-subtitle p {
        font-size: 1.2rem;
    }

    .hero-bottom-features {
        font-size: 1rem;
        gap: 30px;
    }

    .our-edge-title {
        font-size: clamp(2.4rem, 4.2vw, 3.6rem);
    }

    .edge-panel {
        height: 380px;
    }

    .edge-panel-title {
        font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    }

    .designed-main-title {
        font-size: clamp(2.6rem, 5vw, 4.5rem);
    }

    .icon-star {
        width: 200px;
    }

    .product-cards {
        height: 400px;
    }

    .start-content h2 {
        font-size: clamp(1.8rem, 4vw, 3.6rem);
    }

    .insurance-india-left .section-title {
        font-size: clamp(2rem, 3.8vw, 3.5rem);
    }

    .icon-swirl {
        width: 270px;
    }

    .build-main-title {
        font-size: clamp(2.4rem, 4.2vw, 4rem);
    }

    .partner-left h3 {
        font-size: 1.5rem;
    }

    .icon-pill,
    .icon-careers {
        width: 280px;
    }
}

/* ── 1280px ────────────────────────────────── */
@media (max-width: 1280px) {
    .container {
        max-width: 1040px;
    }

    .nav-links {
        gap: 22px;
    }

    .nav-links a {
        font-size: 0.88rem;
    }

    .logo-img {
        height: 40px;
    }

    .hero-title {
        font-size: clamp(1.8rem, 4vw, 3.6rem);
    }

    .hero-top-subtitle p {
        font-size: 1.1rem;
    }

    .hero-bottom-features {
        font-size: 0.95rem;
        gap: 24px;
        padding-bottom: 50px;
    }

    .our-edge-title {
        font-size: clamp(2.2rem, 4vw, 3.2rem);
    }

    .edge-panel {
        height: 360px;
    }

    .edge-panel-title {
        font-size: clamp(1.5rem, 2.2vw, 2rem);
    }

    .edge-tab {
        padding: 12px 22px;
        font-size: 0.88rem;
    }

    .designed-main-title {
        font-size: clamp(2.4rem, 4.8vw, 4.2rem);
    }

    .designed-sub {
        font-size: 0.95rem;
    }

    .icon-star {
        width: 180px;
    }

    .product-cards {
        height: 380px;
    }

    .card-overlay h3 {
        font-size: 1.8rem;
    }

    .start-content h2 {
        font-size: clamp(1.6rem, 3.8vw, 3.2rem);
    }

    .insurance-india-left .section-title {
        font-size: clamp(1.8rem, 3.5vw, 3.2rem);
    }

    .icon-swirl {
        width: 240px;
    }

    .insurance-india {
        padding: 90px 0;
    }

    .build-main-title {
        font-size: clamp(2.2rem, 4vw, 3.6rem);
    }

    .partner-left h3 {
        font-size: 1.4rem;
    }

    .partner-subtext {
        font-size: 0.88rem;
    }

    .icon-pill,
    .icon-careers {
        width: 260px;
    }

    .footer-links-grid {
        gap: 40px;
    }
}

/* ── 1024px ────────────────────────────────── */
@media (max-width: 1024px) {
    .container {
        max-width: 900px;
    }

    .nav-links {
        gap: 16px;
    }

    .nav-links a {
        font-size: 0.82rem;
    }

    .logo-img {
        height: 36px;
    }

    .navbar {
        padding: 16px 0;
    }

    .hero-title {
        font-size: clamp(1.6rem, 3.8vw, 3.2rem);
    }

    .hero-top-subtitle p {
        font-size: 1rem;
    }

    .hero-content {
        max-width: 900px;
    }

    .hero-bottom-features {
        flex-direction: column;  /* <--- 'row' ko 'column' kar dein */
        gap: 20px;
        padding-bottom: 40px;
    }

    .hero-feature {
        max-width: 100%;         /* <--- '33%' ko '100%' kar dein */
        text-align: left;
    }

    .hero-feature-right {
        text-align: left;
    }

    .hero-main {
        padding-top: 6px;
    }

    .our-edge {
        padding: 60px 0 40px;
    }

    .our-edge-title {
        font-size: clamp(2rem, 3.8vw, 3rem);
        margin-bottom: 20px;
    }

    .edge-panel {
        height: 320px;
    }

    .edge-panel-title {
        font-size: clamp(1.3rem, 2vw, 1.8rem);
    }

    .edge-panel-left {
        padding: 24px 28px;
        min-width: 220px;
    }

    .edge-tab {
        padding: 10px 16px;
        font-size: 0.82rem;
    }

    .designed-different {
        padding: 60px 0;
    }

    .designed-main-title {
        font-size: clamp(2rem, 4.5vw, 3.8rem);
    }

    .designed-sub {
        font-size: 0.88rem;
    }

    .icon-star {
        width: 150px;
    }

    .product-cards {
        height: 340px;
    }

    .card-overlay h3 {
        font-size: 1.5rem;
    }

    .card-overlay p {
        font-size: 0.9rem;
    }

    .designed-header {
        margin-bottom: 50px;
    }

    .start-customer {
        padding: 100px 0;
    }

    .start-content h2 {
        font-size: clamp(1.4rem, 3.5vw, 2.8rem);
    }

    .start-content .start-desc {
        font-size: 1rem;
    }

    .insurance-india {
        padding: 70px 0;
    }

    .insurance-india-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        text-align: center;
    }

    .insurance-india-left {
        width: 100%;
        text-align: center;
    }

    .insurance-india-left .section-title {
        font-size: clamp(1.8rem, 3.5vw, 2.8rem);
        text-align: center;
    }

    .icon-swirl {
        width: 200px;
        margin: 0 auto;
    }

    .insurance-india-middle {
        padding-top: 20px;
    }

    .insurance-india-right {
        text-align: left;
    }

    .insurance-india-right h3 {
        font-size: 1.5rem;
        justify-content: center;
    }

    .insurance-india-right h3::before {
        display: none;
    }

    .insurance-india-right p {
        font-size: 1rem;
    }

    .build-insurance {
        padding: 70px 0 60px;
    }

    .build-main-title {
        font-size: clamp(2rem, 3.8vw, 3.2rem);
        margin-bottom: 36px;
    }

    .build-tab {
        padding: 12px 30px;
        font-size: 0.9rem;
    }

    .partner-left h3 {
        font-size: 1.25rem;
    }

    .partner-subtext {
        font-size: 0.82rem;
    }

    .p-feature h4 {
        font-size: 0.88rem;
    }

    .p-feature p {
        font-size: 0.78rem;
    }

    .icon-pill,
    .icon-careers {
        width: 220px;
    }

    .build-panel.active {
        gap: 28px;
    }

    .footer {
        padding: 40px 0;
    }

    .footer-links-grid {
        gap: 30px;
    }

    .footer-link {
        font-size: 0.82rem;
    }
}

/* ── Mobile fallback (< 768px) ─────────────── */
@media (max-width: 768px) {
    .hamburger-menu {
        display: block;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 0;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #0d0d1a;
        padding: 100px 40px 40px;
        z-index: 150;
        list-style: none;
        margin: 0;
        /* Hidden state */
        opacity: 0;
        transform: translateY(-20px);
        pointer-events: none;
        transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
            transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-links.open {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .nav-links li:first-child {
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .nav-links a {
        display: block;
        font-family: 'TASA Orbiter', sans-serif;
        font-size: clamp(2rem, 8vw, 3.5rem);
        font-weight: 700;
        color: #fff;
        text-decoration: none;
        padding: 22px 0;
        letter-spacing: -0.5px;
        transition: color 0.2s ease, padding-left 0.2s ease;
    }

    .nav-links a:hover {
        color: #FFD24D;
        padding-left: 12px;
    }

    .hero,
    .hero-content {
        height: 100svh;
        min-height: 100svh;
        max-height: 90vh;
    }

    .hero-image {
        opacity: 1;
        top: auto;
        bottom: 0;
        height: 104svh;
        object-position: center 20%;
        -webkit-mask-image: linear-gradient(to top, black 70%, transparent 100%);
        mask-image: linear-gradient(to top, black 70%, transparent 100%);
    }

    .hero-bg-overlay {
        background: rgba(136, 67, 193, 0.24);
    }

    /* About Us - Mobile Responsiveness */
.our-story-slider {
        padding: 60px 0 40px;
        background-color: #ffffff !important;
    }

    .story-section-title {
        margin-bottom: 30px;
    }

    .story-container {
        padding: 0 20px;
    }

    .story-slider-wrapper {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    .story-slides {
        width: 100%;
        flex: 0 0 100%;
        order: 1;
        grid-template-columns: minmax(0, 1fr);
    }

    .story-arrow.left-arrow {
        order: 2;
        margin-right: 12px;
        margin-top: 16px;
    }

    .story-arrow.right-arrow {
        order: 3;
        margin-left: 12px;
        margin-top: 16px;
    }

    .story-slide {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        min-width: 0;
    }

    .slide-left,
    .slide-middle,
    .slide-right {
        flex: 0 0 auto;
        width: 100%;
        max-width: 100%;
        padding: 0;
    }

    .slide-left h2 {
        font-size: clamp(2.4rem, 10vw, 3rem);
        text-align: center;
        width: 100%;
    }

    .slide-right p {
        /*text-align: justify;*/
        font-size: 1rem;
        padding: 0 25px 15px 25px;
    }

    .story-arrow.right-arrow img {
        transform: scale(1.8);
    }

    .story-dots {
        display: none !important;
    }

    .hero-art-overlay {
        top: 15vh;
        bottom: auto;
        left: -10%;
        right: auto;
        width: 120%;
        height: auto;
        transform: none;
    }

    .hero-title {
        font-size: 1.6rem;
        letter-spacing: -0.5px;
        line-height: 1.1;
    }

    .btn,
    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 6px 16px;
        font-size: 0.75rem;
        width: fit-content;
    }

    .hero-bottom-features {
        flex-direction: column;
        gap: 16px;
        /*padding-bottom: 18vh;*/
    }

    .hero-feature {
        max-width: 100%;
    }

    .designed-title-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .designed-icon-wrapper {
        margin: 0 auto;
        align-self: center;
    }

    .icon-star {
        width: 140px;
    }

    .designed-bottom-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .designed-line-input {
        width: 100%;
        margin: 0;
    }

    .designed-signup {
        width: 100%;
        justify-content: space-between;
    }

    .icon-pill,
    .icon-careers {
        transform: none;
        margin-bottom: 20px;
    }

    .email-contact {
        margin-top: 0;
    }

    .tab-content {
        flex-direction: column;
    }

    .product-cards {
        flex-direction: column;
        height: 600px;
    }

    .start-content h2 {
        white-space: normal;
    }

    .card {
        height: auto;
    }

    .insurance-india-container {
        flex-direction: column;
        gap: 40px;
    }

    .build-panel.active {
        flex-direction: column;
        gap: 40px;
    }

    .partner-features {
        flex-direction: column;
    }

    .footer-container {
        flex-direction: column;
        gap: 20px;
    }

    .careers-features {
        grid-template-columns: 1fr;
    }

    /* ── Our Edge — Mobile redesign ─── */
    .our-edge {
        padding: 48px 0 40px;
    }

    .our-edge-title {
        font-size: 2rem;
        margin-bottom: 24px;
    }

    /* Make tab bar horizontally scrollable */
    .edge-tabs {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        gap: 0;
        padding-bottom: 4px;
        border-bottom: 2px solid #eaeaea;
        margin-bottom: 0;
    }

    .edge-tabs::-webkit-scrollbar {
        display: none;
    }

    .edge-tab {
        flex-shrink: 0;
        scroll-snap-align: start;
        padding: 10px 20px;
        font-size: 0.85rem;
        white-space: nowrap;
        border-radius: 6px 6px 0 0;
    }

    /* Panel becomes vertical — left on top, image below */
    .edge-panel {
        display: none;
        height: auto;
        border-radius: 0 0 12px 12px;
    }

    .edge-panel.active {
        display: flex;
        flex-direction: column;
    }

    .edge-panel-left {
        width: 100%;
        min-width: unset;
        padding: 28px 24px;
        border-radius: 0;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: flex-start;
        gap: 12px;
    }

    .edge-number {
        width: 100%;
        margin-bottom: 0;
    }

    .edge-panel-title {
        font-size: clamp(2rem, 8vw, 2.8rem);
        margin-top: 0;
        margin-bottom: 0;
        flex: 1;
    }

    .edge-panel-desc {
        width: 100%;
        max-width: 100%;
        font-size: 0.95rem;
        margin-top: 8px;
    }

    .edge-panel-right {
        width: 100%;
        height: 220px;
    }

    .edge-panel-right img {
        height: 100%;
        object-position: center top;
    }

    .edge-dots {
        margin-top: 20px;
    }
}

/* ── Small Mobile (≤ 480px) ─────────────── */
@media (max-width: 480px) {
    .our-edge-title {
        font-size: 1.6rem;
    }

    .designed-main-title {
        font-size: clamp(2rem, 9vw, 2.8rem);
    }

    .slide-middle {
        height: 16vh;
    }

    .icon-star {
        width: 120px;
    }

    .edge-tab {
        padding: 9px 16px;
        font-size: 0.8rem;
    }

    .edge-panel-left {
        padding: 22px 18px;
        gap: 8px;
    }

    .edge-panel-title {
        font-size: clamp(1.8rem, 7vw, 2.4rem);
    }

    .edge-panel-desc {
        font-size: 0.88rem;
    }

    .edge-panel-right {
        height: 180px;
    }
}

/* ── GO TO TOP BUTTON ─────────────────────────────── */
.go-to-top {
    position: fixed;
    bottom: 34px;
    right: 34px;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.9);
    transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    background: linear-gradient(135deg, #0442F2 0%, #7C3AED 100%);
    box-shadow:
        0 4px 20px rgba(4, 66, 242, 0.45),
        0 0 0 1px rgba(255, 255, 255, 0.08) inset;
    padding: 0;
    overflow: hidden;
}

/* Shimmer overlay */
.go-to-top::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
    border-radius: 16px;
    pointer-events: none;
}

.go-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.go-to-top:hover {
    background: linear-gradient(135deg, #0332c4 0%, #6d28d9 100%);
    box-shadow:
        0 6px 28px rgba(4, 66, 242, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.12) inset;
    transform: translateY(-3px);
}

.go-to-top:active {
    transform: translateY(0) scale(0.97);
}

/* Inner wrapper for arrow */
.gtt-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: relative;
}

/* Arrow SVG */
.gtt-arrow {
    width: 18px;
    height: 18px;
    stroke: #FFB800;
    stroke-width: 2.8;
    filter: drop-shadow(0 0 5px rgba(255, 184, 0, 0.6));
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.3s ease;
}

.go-to-top:hover .gtt-arrow {
    transform: translateY(-2px);
    filter: drop-shadow(0 0 9px rgba(255, 184, 0, 0.9));
}

@media (min-width: 375px) and (max-width: 480px) {
    .hero-art-overlay {
        top: 25vh;
    }

    .icon-swirl-slide-3 {
        width: 486px;
    }

    .icon-swirl-cropped {
        width: 353px;
    }
}

@media (max-width: 374px) {
    .hero-art-overlay {
        top: 25vh;
    }

    .hero-bottom-features {
        padding-top: 5rem;
    }

    .hero-image {
        bottom: -0.5rem;
    }

    .icon-swirl-slide-3 {
        width: 450px;
    }

    .icon-swirl-cropped {
        width: 348px;
    }
}

/* --- Footer Variables --- */
:root {
    --protec-blue: #162B75;
    --protec-purple: #6D35C4;
    --protec-yellow: #FFC83D;
    --protec-light: #F6F8FF;
    --protec-text: #172033;
    --protec-muted: #667085;
    --protec-border: #E4E7EC;
    --protec-white: #FFFFFF;
    --shadow: 0 16px 45px rgba(20, 32, 80, 0.16);
    --radius-lg: 22px;
    --radius-md: 14px;
}

/* --- Footer Styles --- */
.site-footer {
    position: relative;
    background:
        linear-gradient(145deg, rgba(22, 43, 117, 0.98), rgba(63, 32, 135, 0.98)),
        var(--protec-blue);
    color: var(--protec-white);
    overflow: hidden;
}

.site-footer::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    right: -200px;
    top: -250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 200, 61, 0.18) 0%, rgba(255, 200, 61, 0) 70%);
    pointer-events: none;
}

.site-footer::after {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    left: -200px;
    bottom: -200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
}

.footer-inner {
    position: relative;
    z-index: 1;
    max-width: 1180px;
    margin: 0 auto;
    padding: 56px 24px 28px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.35fr repeat(4, 1fr);
    gap: 34px;
    align-items: start;
}

.brand-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: relative;
    z-index: 2;
}

.brand-logo {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
}

.brand-logo .footer-logo-link {
    display: inline-flex;
    align-items: center;
    background: #ffffff;
    padding: 12px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
}

.brand-logo .footer-logo-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.26);
}

.brand-logo .footer-logo-img {
    height: 44px;
    width: auto;
    display: block;
    object-fit: contain;
}

@media (max-width: 480px) {
    .brand-logo .footer-logo-img {
        height: 36px;
    }
}

.brand-card p {
    margin: 0 0 20px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
}

.cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.site-footer .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    padding: 10px 14px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    text-decoration: none;
}

.site-footer .btn:hover {
    transform: translateY(-1px);
}

.site-footer .btn-primary {
    background: var(--protec-yellow);
    color: var(--protec-blue);
    box-shadow: 0 12px 22px rgba(255, 200, 61, 0.22);
}

.site-footer .btn-secondary {
    border-color: rgba(255, 255, 255, 0.28);
    color: var(--protec-white);
    background: rgba(255, 255, 255, 0.08);
}

.footer-col h3 {
    margin: 0 0 16px;
    font-size: 16px;
    color: var(--protec-white);
    letter-spacing: 0.2px;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s ease, transform 0.2s ease;
    text-decoration: none;
}

.footer-links a::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 200, 61, 0.72);
    flex: 0 0 auto;
}

.footer-links a:hover {
    color: var(--protec-white);
    transform: translateX(2px);
}

.registered-office {
    position: relative;
    z-index: 1;
    max-width: 1180px;
    margin: 20px auto 0;
    padding: 0 24px 34px;
}

.registered-office-card {
    display: grid;
    grid-template-columns: 1.1fr 2.2fr;
    gap: 20px;
    padding: 22px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.13);
}

.registered-office-card h3 {
    margin: 0;
    color: var(--protec-yellow);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.registered-office-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
}

.footer-bottom {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    padding: 18px 24px 28px;
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
}

.footer-bottom a {
    color: var(--protec-yellow);
    font-weight: 700;
    text-decoration: none;
}

.fraud-scroll-widget {
    position: relative;
    z-index: 2;
    max-width: 1180px;
    width: calc(100% - 48px);
    margin: 0 auto 20px;
    border-radius: 999px;
    background: #111827;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.12);
    overflow: hidden;
}

.fraud-scroll-inner {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--protec-white);
    white-space: nowrap;
    font-size: 13px;
}

.fraud-label {
    position: relative;
    z-index: 2;
    background: var(--protec-yellow);
    color: var(--protec-blue);
    font-weight: 800;
    padding: 12px 14px;
    flex: 0 0 auto;
}

.fraud-marquee {
    overflow: hidden;
    flex: 1;
    display: flex;
    align-items: center;
}

.fraud-marquee span {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 28s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

@media (max-width: 980px) {
    .footer-top {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .brand-card {
        grid-column: 1 / -1;
    }

    .registered-office-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        padding-top: 38px;
    }

    .footer-bottom {
        padding-bottom: 28px;
    }

    .fraud-scroll-widget {
        width: calc(100% - 24px);
        margin: 0 auto 18px;
        border-radius: 18px;
    }

    .fraud-scroll-inner {
        align-items: stretch;
    }

    .fraud-label {
        display: grid;
        place-items: center;
        border-radius: 0;
    }
}

/* --- Content Section Styles --- */
.content-section {
    background: var(--protec-light);
    padding: 56px 20px;
}

.content-wrap {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    gap: 26px;
}

.section-card {
    background: var(--protec-white);
    border: 1px solid var(--protec-border);
    border-radius: var(--radius-lg);
    padding: clamp(22px, 4vw, 34px);
    box-shadow: 0 12px 32px rgba(22, 43, 117, 0.08);
}

.section-eyebrow {
    margin: 0 0 8px;
    color: var(--protec-purple);
    font-weight: 800;
    letter-spacing: 0.9px;
    text-transform: uppercase;
    font-size: 12px;
}

.section-card h2 {
    margin: 0 0 16px;
    color: var(--protec-blue);
    font-size: clamp(24px, 3vw, 34px);
    letter-spacing: -0.4px;
}

.section-card h3 {
    margin: 22px 0 10px;
    color: var(--protec-blue);
    font-size: 19px;
}

.section-card p,
.section-card li {
    color: #344054;
    font-size: 15px;
}

.section-card ul {
    margin: 10px 0 0;
    padding-left: 20px;
}

.notice-box {
    border-left: 5px solid var(--protec-yellow);
    background: #FFF8E6;
    padding: 16px 18px;
    border-radius: 12px;
    margin: 16px 0;
}

.notice-box strong {
    display: block;
    color: var(--protec-blue);
    margin-bottom: 4px;
}

/* --- About Us Styles --- */
.bod-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 16px;
}

.bod-member {
    border: 1px solid var(--protec-border);
    border-radius: var(--radius-md);
    padding: 14px;
    background: #FCFCFD;
}

.bod-member strong {
    display: block;
    color: var(--protec-blue);
}

.bod-member span {
    display: block;
    color: var(--protec-muted);
    font-size: 13px;
    margin-top: 3px;
}

.about-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.tab-button {
    border: 1px solid var(--protec-border);
    background: #FFFFFF;
    color: var(--protec-blue);
    padding: 10px 14px;
    border-radius: 999px;
    font-weight: 800;
    cursor: pointer;
}

.tab-button.active {
    background: var(--protec-blue);
    color: #FFFFFF;
    border-color: var(--protec-blue);
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

@media (max-width: 640px) {

    .bod-grid,
    .field-row {
        grid-template-columns: 1fr;
    }
}

/* --- Contact Section Styles --- */
.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 24px;
    align-items: start;
}

.contact-card {
    background: #F9FAFB;
    border: 1px solid var(--protec-border);
    border-radius: var(--radius-lg);
    padding: 22px;
}

.contact-list {
    display: grid;
    gap: 12px;
    margin-top: 16px;
}

.contact-list div {
    background: #FFFFFF;
    border: 1px solid var(--protec-border);
    border-radius: var(--radius-md);
    padding: 12px;
    color: #344054;
    font-size: 14px;
}

.lead-form {
    display: grid;
    gap: 13px;
}

.field-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px;
}

label {
    display: grid;
    gap: 6px;
    font-size: 13px;
    color: #344054;
    font-weight: 700;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--protec-border);
    border-radius: 12px;
    padding: 12px;
    font: inherit;
    color: var(--protec-text);
    background: #FFFFFF;
    outline: none;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--protec-purple);
    box-shadow: 0 0 0 4px rgba(109, 53, 196, 0.10);
}

.checkbox-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #344054;
    font-size: 13px;
    font-weight: 500;
}

.checkbox-row input {
    width: auto;
    margin-top: 3px;
}

.form-submit {
    border: none;
    background: linear-gradient(135deg, var(--protec-blue), var(--protec-purple));
    color: white;
    border-radius: 999px;
    padding: 13px 18px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 14px 24px rgba(22, 43, 117, 0.18);
}

@media (max-width: 980px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Legal Documents Section Styles --- */
.pdf-link-list {
    display: grid;
    gap: 12px;
    margin-top: 16px;
}

.pdf-link-list a {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    padding: 15px 16px;
    border-radius: var(--radius-md);
    border: 1px solid var(--protec-border);
    background: #FFFFFF;
    color: var(--protec-blue);
    font-weight: 800;
    text-decoration: none;
}

.pdf-link-list a span {
    color: var(--protec-muted);
    font-weight: 600;
    font-size: 13px;
}

/* ─── TOAST NOTIFICATIONS ───────────────────── */
.toast-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
}

.toast {
    background: rgba(13, 0, 30, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 280px;
    transform: translateX(120%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: all;
}

.toast.show {
    transform: translateX(0);
    opacity: 1;
}

.toast-icon {
    font-size: 1.4rem;
}

.toast-content {
    flex: 1;
}

.toast-title {
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 0.95rem;
    color: #fff;
    margin-bottom: 2px;
}

.toast-msg {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

.toast.success {
    border-left: 4px solid #10B981;
}

.toast.success .toast-icon {
    color: #10B981;
}

.toast.error {
    border-left: 4px solid #EF4444;
}

.toast.error .toast-icon {
    color: #EF4444;
}

/* --- Premium Fraud Awareness Page Redesign --- */
.fraud-awareness-container {
    display: grid;
    gap: 32px;
    max-width: 1140px;
    margin: 0 auto;
}

/* Header Advisory Banner */
.fraud-hero-card {
    position: relative;
    background: linear-gradient(135deg, #101E52 0%, var(--protec-blue) 50%, #3d1c7c 100%);
    border-radius: 28px;
    padding: clamp(32px, 5vw, 52px);
    color: #FFFFFF;
    box-shadow: 0 24px 60px rgba(16, 30, 82, 0.25);
    overflow: hidden;
    display: grid;
    gap: 28px;
}

.fraud-hero-card::after {
    content: "";
    position: absolute;
    top: -120px;
    right: -100px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 200, 61, 0.22) 0%, rgba(255, 200, 61, 0) 70%);
    pointer-events: none;
}

.fraud-hero-header {
    position: relative;
    z-index: 2;
}

.fraud-hero-eyebrow {
    display: inline-block;
    background: rgba(255, 200, 61, 0.2);
    border: 1px solid rgba(255, 200, 61, 0.4);
    color: var(--protec-yellow);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 0 14px;
}

.fraud-hero-card h2 {
    margin: 0;
    font-size: clamp(28px, 4vw, 42px);
    color: #FFFFFF;
    font-weight: 800;
    letter-spacing: -0.6px;
    line-height: 1.15;
}

/* Elevated Notice Box inside Hero */
.fraud-caution-box {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.96);
    border-left: 6px solid var(--protec-yellow);
    border-radius: 18px;
    padding: 24px 28px;
    color: #1F2A37;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
    font-size: 16px;
    line-height: 1.65;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.fraud-caution-box:hover {
    transform: translateX(6px);
}

.fraud-caution-box strong {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--protec-blue);
    font-size: 19px;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

.fraud-caution-box strong::before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--protec-yellow);
    box-shadow: 0 0 10px var(--protec-yellow);
}

/* Topic Cards Grid */
.fraud-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    align-items: stretch;
}

@media (max-width: 880px) {
    .fraud-cards-grid {
        grid-template-columns: 1fr;
    }
}

.fraud-topic-card {
    background: #FFFFFF;
    border: 1px solid rgba(228, 231, 236, 0.8);
    border-radius: 24px;
    padding: 34px;
    box-shadow: 0 10px 28px rgba(22, 43, 117, 0.05);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.fraud-topic-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--protec-blue), var(--protec-purple));
    opacity: 0.85;
    transition: opacity 0.3s ease, height 0.3s ease;
}

.fraud-topic-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(22, 43, 117, 0.13);
    border-color: rgba(109, 53, 196, 0.3);
}

.fraud-topic-card:hover::before {
    opacity: 1;
    height: 6px;
    background: linear-gradient(90deg, var(--protec-purple), var(--protec-yellow));
}

.fraud-topic-card h3 {
    color: var(--protec-blue);
    font-size: 23px;
    font-weight: 800;
    margin: 0 0 18px;
    letter-spacing: -0.4px;
}

.fraud-topic-card p {
    color: #475467;
    font-size: 15.5px;
    line-height: 1.7;
    margin: 0 0 14px;
}

.fraud-topic-card p:last-child,
.fraud-topic-card ul:last-child {
    margin-bottom: 0;
}

.fraud-topic-card p strong {
    color: var(--protec-blue);
    font-weight: 700;
}

/* Styled Lists & Links in Cards */
.fraud-topic-card ul {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
    display: grid;
    gap: 12px;
}

.fraud-topic-card ul li {
    position: relative;
    padding-left: 26px;
    color: #475467;
    font-size: 15.5px;
    line-height: 1.6;
}

.fraud-topic-card ul li::before {
    content: "";
    position: absolute;
    left: 2px;
    top: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--protec-purple);
    box-shadow: 0 0 8px rgba(109, 53, 196, 0.35);
}

.fraud-topic-card a {
    color: var(--protec-blue);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid var(--protec-yellow);
    padding-bottom: 2px;
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.fraud-topic-card a:hover {
    color: var(--protec-purple);
    border-bottom-color: var(--protec-purple);
    background: rgba(255, 200, 61, 0.15);
}

/* Hero Registration Marquee */
.hero-marquee-wrapper {
    background: var(--primary-blue);
    color: var(--text-light);
    padding: 12px 0;
    overflow: hidden;
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
}

.hero-marquee {
    display: flex;
    white-space: nowrap;
    width: 100%;
}

.hero-marquee span {
    display: inline-block;
    padding-left: 100%;
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    animation: hero-marquee-anim 25s linear infinite;
}

.hero-marquee-wrapper:hover .hero-marquee span {
    animation-play-state: paused;
}

@keyframes hero-marquee-anim {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

.footer-disclaimer {
    position: relative;
    z-index: 1;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px 24px;
}

.footer-disclaimer-inner {
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.08);
    padding: 20px 22px;
}

.footer-disclaimer h3 {
    margin: 0 0 10px;
    color: var(--protec-yellow);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.footer-disclaimer p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
    line-height: 1.75;
}