:root {
    --primary: #0052ff;
    --primary-light: #3375ff;
    --primary-container: #0043d6;
    --on-primary: #ffffff;
    --secondary: #00b8e6;
    --secondary-light: #00d2ff;
    --tertiary: #3a434a;
    --error: #c41e3a;
    --error-container: #fde8ec;
    --on-error-container: #7f1d2c;
    --background: #f6f7fb;
    --surface: #f6f7fb;
    --surface-container-lowest: #ffffff;
    --surface-container-low: #f0f1f5;
    --surface-container: #eaebef;
    --inverse-surface: #1a1d2e;
    --on-surface: #111827;
    --on-surface-variant: #4b5563;
    --outline-variant: #d1d5e0;
    --primary-fixed: #c7d7ff;

    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 40px;
    --spacing-xl: 64px;
    --spacing-2xl: 96px;

    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.25rem;
    --radius-xl: 1.5rem;
    --radius-2xl: 2rem;
    --radius-full: 9999px;

    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.08);
    --shadow-xl: 0 20px 48px rgba(0, 0, 0, 0.1);
    --shadow-glow-primary: 0 8px 32px rgba(0, 82, 255, 0.2);
    --shadow-glow-error: 0 8px 24px rgba(196, 30, 58, 0.15);

    --gradient-primary: linear-gradient(135deg, #0052ff 0%, #00d2ff 100%);
    --gradient-primary-soft: linear-gradient(135deg, rgba(0, 82, 255, 0.08) 0%, rgba(0, 210, 255, 0.08) 100%);
    --gradient-dark: linear-gradient(135deg, #0b1120 0%, #1a1d2e 100%);
    --gradient-hero-overlay: linear-gradient(135deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.92) 50%, rgba(255, 255, 255, 0.7) 100%);

    --font-family: 'Montserrat', sans-serif;
}

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

body {
    font-family: var(--font-family);
    background-color: var(--background);
    color: var(--on-surface);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 767px) {
    .container {
        padding: 0 20px;
    }
}

/* HEADER */
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: saturate(180%) blur(24px);
    -webkit-backdrop-filter: saturate(180%) blur(24px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.header-inner {
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.brand-logo img {
    height: 44px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.brand-logo img:hover {
    transform: scale(1.04);
}

@media (max-width: 767px) {
    .brand-logo img {
        height: 32px;
        margin-left: -4px;
    }
}

.brand-name {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.04em;
}

/* Navigation */
.main-nav {
    display: none;
    align-items: center;
    gap: 4px;
}

@media (min-width: 1024px) {
    .main-nav {
        display: flex;
    }
}

.nav-link {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--on-surface-variant);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    letter-spacing: -0.01em;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 16px;
    height: 2px;
    background: var(--primary);
    border-radius: 1px;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link:hover {
    color: var(--primary);
    background: rgba(0, 82, 255, 0.06);
}

.nav-link:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.nav-link.active {
    color: var(--primary);
    background: rgba(0, 82, 255, 0.1);
    font-weight: 700;
}

.nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}

/* Menu Toggle */
.menu-toggle-btn {
    display: none;
    cursor: pointer;
    color: var(--on-surface-variant);
    background: none;
    padding: 8px;
    border-radius: var(--radius-md);
    transition: background 0.2s ease;
}

.menu-toggle-btn:hover {
    background: rgba(0, 0, 0, 0.04);
}

.menu-toggle-btn .material-symbols-outlined {
    font-size: 26px;
}

@media (max-width: 1023px) {
    .menu-toggle-btn {
        display: block;
        order: 3;
    }

    .header-actions {
        order: 2;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.96);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        flex-direction: column;
        padding: var(--spacing-sm);
        gap: 4px;
        box-shadow: 0 16px 40px -12px rgba(0, 0, 0, 0.12);
        z-index: 49;
    }

    .main-nav.active {
        display: flex;
    }

    .main-nav .nav-link {
        padding: 14px 20px;
        width: 100%;
        border-radius: var(--radius-md);
        font-size: 15px;
    }

    .main-nav .nav-link::after {
        display: none;
    }
}

@media (max-width: 767px) {
    .menu-toggle-btn {
        height: 44px;
    }
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    background: var(--gradient-primary);
    color: var(--on-primary);
    padding: 11px 28px;
    border-radius: var(--radius-full);
    font-size: 13.5px;
    font-weight: 700;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: var(--shadow-glow-primary);
    border: none;
    letter-spacing: -0.01em;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: skewX(-25deg);
    transition: none;
}

.btn-primary:hover::before {
    animation: buttonShine 0.8s ease-in-out;
}

@keyframes buttonShine {
    0% {
        left: -100%;
    }

    100% {
        left: 200%;
    }
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px -4px rgba(0, 82, 255, 0.4);
    color: #ffffff;
}

.btn-primary:active {
    transform: translateY(0);
}

@media (max-width: 767px) {
    .header-actions .btn-primary {
        padding: 8px 16px;
        font-size: 12px;
        border-radius: var(--radius-md);
    }
}

.btn-large {
    padding: 16px 40px;
    border-radius: var(--radius-full);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.btn-large:hover {
    transform: translateY(-3px) scale(1.01);
}

.btn-outline {
    background: transparent;
    border: 1.5px solid var(--primary);
    color: var(--primary);
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-weight: 700;
    width: 100%;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: rgba(0, 82, 255, 0.06);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px -4px rgba(0, 82, 255, 0.12);
}

.divider-vertical {
    width: 1px;
    height: 24px;
    background-color: var(--outline-variant);
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 0 2.5px var(--primary);
    transition: all 0.3s ease;
}

.user-avatar:hover {
    transform: scale(1.08);
    box-shadow: 0 0 0 3px var(--secondary), var(--shadow-glow-primary);
}

/* MAIN CONTENT */
.main-content {
    padding-top: 72px;
}

/* HERO SECTION */
.hero-section {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background-color: var(--surface-container-lowest);
    overflow: hidden;
    margin-top: -72px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.08;
    mix-blend-mode: luminosity;
    filter: blur(1px);
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero-overlay);
}

.hero-content-wrapper {
    position: relative;
    z-index: 10;
    display: grid;
    gap: 56px;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-content-wrapper {
        grid-template-columns: 1.1fr 0.9fr;
    }
}

.hero-text-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.badge-warning {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background-color: var(--error-container);
    border-radius: 999px;
    width: fit-content;
    border: 1px solid rgba(196, 30, 58, 0.15);
}

.badge-warning-text {
    font-size: 11px;
    font-weight: 700;
    color: var(--on-error-container);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.hero-title {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -0.03em;
    color: var(--on-surface);
}

.text-error {
    color: var(--error);
}

.text-primary {
    color: var(--primary);
}

.text-secondary {
    color: var(--secondary);
}

.text-tertiary {
    color: var(--tertiary);
}

.hero-subtitle {
    font-size: 17px;
    color: var(--on-surface-variant);
    max-width: 640px;
    line-height: 1.7;
}

.hero-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 8px;
}

.hero-list-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--on-surface-variant);
    font-size: 14.5px;
    padding: 6px 0;
    transition: transform 0.2s ease;
}

.hero-list-item:hover {
    transform: translateX(4px);
}

/* Hero Image */
.hero-image-container {
    display: none;
    position: relative;
    height: 480px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 32px 64px -16px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

@media (min-width: 1024px) {
    .hero-image-container {
        display: block;
    }
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-image-container:hover .hero-image {
    transform: scale(1.04);
}

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.85) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 28px;
}

.hero-stat-card {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 16px 20px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    max-width: 320px;
    animation: floatUp 3s ease-in-out infinite alternate;
}

@keyframes floatUp {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-6px);
    }
}

.stat-content {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 4px;
}

.stat-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background-color: var(--error-container);
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--on-surface-variant);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.stat-value {
    font-size: 22px;
    font-weight: 800;
    color: var(--error);
    letter-spacing: -0.02em;
}

.section-losses {
    padding: 80px 0;
    background-color: var(--surface);
    position: relative;
}

.losses-highlight {
    max-width: 880px;
    margin: 0 auto 40px;
    padding: 28px 32px;
    background: var(--gradient-primary-soft);
    border-left: 4px solid var(--primary);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 10;
}

.losses-highlight-text {
    font-size: 17px;
    color: var(--on-surface);
    line-height: 1.75;
}

.text-bold-primary {
    font-weight: 700;
    color: var(--primary);
}

.losses-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.losses-bg-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(6px);
    opacity: 0.12;
}

.losses-bg-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(246, 247, 251, 0.92);
}

/* (shared) */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 56px;
    position: relative;
    z-index: 10;
}

.section-title {
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 800;
    color: var(--on-surface);
    margin-bottom: 14px;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.section-desc {
    font-size: 16px;
    color: var(--on-surface-variant);
    line-height: 1.7;
}

/* -- Loss Cards -- */
.losses-grid {
    display: grid;
    gap: 20px;
    position: relative;
    z-index: 10;
}

@media (min-width: 768px) {
    .losses-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .losses-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.loss-card {
    background-color: var(--surface-container-lowest);
    padding: 28px 24px;
    border-radius: 20px;
    border: 1px solid var(--outline-variant);
    border-top: 4px solid var(--outline-variant);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.loss-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

/* Card 1: Error Red */
.loss-card-1 {
    border-top-color: var(--error);
}

.loss-card-1:hover {
    border-color: rgba(196, 30, 58, 0.25);
    border-top-color: var(--error);
    box-shadow: 0 12px 32px rgba(196, 30, 58, 0.1);
}

.loss-card-1 .loss-icon-wrapper {
    background: rgba(196, 30, 58, 0.08);
    border-color: rgba(196, 30, 58, 0.12);
}

.loss-card-1 .loss-title {
    color: var(--error);
}

/* Card 2: Primary Blue */
.loss-card-2 {
    border-top-color: var(--primary);
}

.loss-card-2:hover {
    border-color: rgba(0, 82, 255, 0.2);
    border-top-color: var(--primary);
    box-shadow: 0 12px 32px rgba(0, 82, 255, 0.1);
}

.loss-card-2 .loss-icon-wrapper {
    background: rgba(0, 82, 255, 0.08);
    border-color: rgba(0, 82, 255, 0.12);
}

.loss-card-2 .loss-title {
    color: var(--primary);
}

/* Card 3: Secondary Teal */
.loss-card-3 {
    border-top-color: var(--secondary);
}

.loss-card-3:hover {
    border-color: rgba(0, 210, 255, 0.2);
    border-top-color: var(--secondary);
    box-shadow: 0 12px 32px rgba(0, 210, 255, 0.1);
}

.loss-card-3 .loss-icon-wrapper {
    background: rgba(0, 210, 255, 0.08);
    border-color: rgba(0, 210, 255, 0.12);
}

.loss-card-3 .loss-title {
    color: var(--secondary);
}

/* Card 4: Tertiary Slate */
.loss-card-4 {
    border-top-color: var(--tertiary);
}

.loss-card-4:hover {
    border-color: rgba(58, 67, 74, 0.2);
    border-top-color: var(--tertiary);
    box-shadow: 0 12px 32px rgba(58, 67, 74, 0.1);
}

.loss-card-4 .loss-icon-wrapper {
    background: rgba(58, 67, 74, 0.08);
    border-color: rgba(58, 67, 74, 0.12);
}

.loss-card-4 .loss-title {
    color: var(--tertiary);
}

/* Blobs */
.loss-card-bg-blob {
    position: absolute;
    right: -32px;
    top: -32px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    filter: blur(32px);
    opacity: 0.3;
    transition: all 0.5s ease;
}

.loss-card:hover .loss-card-bg-blob {
    opacity: 0.55;
    transform: scale(1.3);
}

.blob-1 {
    background-color: rgba(196, 30, 58, 0.35);
}

.blob-2 {
    background-color: rgba(0, 82, 255, 0.3);
}

.blob-3 {
    background-color: rgba(0, 210, 255, 0.3);
}

.blob-4 {
    background-color: rgba(58, 67, 74, 0.25);
}

/* Loss Icon & Text */
.loss-icon-wrapper {
    width: 52px;
    height: 52px;
    background: var(--gradient-primary-soft);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border: 1px solid rgba(0, 82, 255, 0.08);
    position: relative;
    z-index: 10;
    transition: all 0.35s ease;
}

.loss-card:hover .loss-icon-wrapper {
    transform: scale(1.12) rotate(-3deg);
}

.loss-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--on-surface);
    margin-bottom: 10px;
    position: relative;
    z-index: 10;
    letter-spacing: -0.01em;
    line-height: 1.4;
    margin-top: 0;
}

.loss-desc {
    font-size: 13.5px;
    color: var(--on-surface-variant);
    position: relative;
    z-index: 10;
    line-height: 1.7;
}

/* SECTION */
.ceo-section {
    padding: 80px 0;
    background: var(--gradient-dark);
    color: var(--surface-container-lowest);
    position: relative;
    overflow: hidden;
}

.ceo-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 82, 255, 0.25) 0%, transparent 70%);
    pointer-events: none;
}

.ceo-grid {
    display: grid;
    gap: 56px;
    align-items: center;
}

@media (min-width: 1024px) {
    .ceo-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.ceo-title {
    font-size: clamp(28px, 3.5vw, 36px);
    font-weight: 800;
    margin-bottom: 28px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.questions-list {
    display: grid;
    gap: 12px;
}

.question-item {
    display: flex;
    gap: 16px;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(4px);
}

.question-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateX(6px);
}

.question-number {
    font-size: 40px;
    font-weight: 800;
    background: linear-gradient(180deg, rgba(199, 215, 255, 0.5) 0%, rgba(199, 215, 255, 0.15) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    flex-shrink: 0;
}

.question-text {
    font-size: 15px;
    align-self: center;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.88);
    margin: 0;
}

.ceo-image-container {
    position: relative;
    height: 560px;
    border-radius: 24px;
    overflow: hidden;
    opacity: 0.95;
    box-shadow: 0 32px 64px -16px rgba(0, 0, 0, 0.4);
}

.ceo-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    mix-blend-mode: overlay;
    transition: transform 4s ease;
}

.ceo-image-container:hover .ceo-image {
    transform: scale(1.03);
}

.ceo-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--inverse-surface) 0%, transparent 60%);
}

/* SECTION */
.signs-section {
    padding: 90px 0;
    background: linear-gradient(180deg, #f1f5f9 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(0, 82, 255, 0.08);
    border-bottom: 1px solid rgba(0, 82, 255, 0.08);
}

.signs-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1200px;
    height: 100%;
    background: radial-gradient(circle at 50% 20%, rgba(0, 82, 255, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.signs-bg {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    pointer-events: none;
}

.signs-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

.signs-content {
    position: relative;
    z-index: 10;
}

.signs-header {
    text-align: center;
    margin-bottom: 56px;
}

.badge-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 18px;
    background: rgba(0, 82, 255, 0.08);
    border-radius: 999px;
    margin-bottom: 16px;
    font-size: 11px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border: 1px solid rgba(0, 82, 255, 0.15);
}

.signs-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--on-surface);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    line-height: 1.35;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.signs-desc {
    font-size: 16px;
    color: var(--on-surface-variant);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.signs-grid {
    display: grid;
    gap: 24px;
}

@media (min-width: 768px) {
    .signs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .signs-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.sign-card {
    padding: 32px 28px;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

/* Item 1 - Royal Blue */
.sign-card:nth-child(1) {
    background: linear-gradient(135deg, #ffffff 0%, rgba(0, 82, 255, 0.05) 100%);
    border: 1.5px solid rgba(0, 82, 255, 0.2);
    border-top: 4px solid var(--primary);
    box-shadow: 0 4px 20px rgba(0, 82, 255, 0.05);
}

.sign-card:nth-child(1):hover {
    transform: translateY(-6px);
    border-color: var(--primary);
    box-shadow: 0 16px 36px -8px rgba(0, 82, 255, 0.2);
}

/* Item 2 - Electric Cyan */
.sign-card:nth-child(2) {
    background: linear-gradient(135deg, #ffffff 0%, rgba(0, 184, 230, 0.06) 100%);
    border: 1.5px solid rgba(0, 184, 230, 0.25);
    border-top: 4px solid var(--secondary);
    box-shadow: 0 4px 20px rgba(0, 184, 230, 0.05);
}

.sign-card:nth-child(2):hover {
    transform: translateY(-6px);
    border-color: var(--secondary);
    box-shadow: 0 16px 36px -8px rgba(0, 184, 230, 0.22);
}

/* Item 3 - Slate Grey */
.sign-card:nth-child(3) {
    background: linear-gradient(135deg, #ffffff 0%, rgba(58, 67, 74, 0.05) 100%);
    border: 1.5px solid rgba(58, 67, 74, 0.2);
    border-top: 4px solid var(--tertiary);
    box-shadow: 0 4px 20px rgba(58, 67, 74, 0.05);
}

.sign-card:nth-child(3):hover {
    transform: translateY(-6px);
    border-color: var(--tertiary);
    box-shadow: 0 16px 36px -8px rgba(58, 67, 74, 0.2);
}

/* Item 4 - Error Red */
.sign-card:nth-child(4) {
    background: linear-gradient(135deg, #ffffff 0%, rgba(196, 30, 58, 0.05) 100%);
    border: 1.5px solid rgba(196, 30, 58, 0.2);
    border-top: 4px solid var(--error);
    box-shadow: 0 4px 20px rgba(196, 30, 58, 0.05);
}

.sign-card:nth-child(4):hover {
    transform: translateY(-6px);
    border-color: var(--error);
    box-shadow: 0 16px 36px -8px rgba(196, 30, 58, 0.2);
}

/* Item 5 (Wide Card) - Royal Blue */
.sign-card:nth-child(5) {
    background: linear-gradient(135deg, #ffffff 0%, rgba(0, 82, 255, 0.05) 100%);
    border: 1.5px solid rgba(0, 82, 255, 0.2);
    border-top: 4px solid var(--primary);
    box-shadow: 0 4px 20px rgba(0, 82, 255, 0.05);
}

.sign-card:nth-child(5):hover {
    transform: translateY(-6px);
    border-color: var(--primary);
    box-shadow: 0 16px 36px -8px rgba(0, 82, 255, 0.2);
}

.sign-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    transition: all 0.35s ease;
    border: 1px solid transparent;
}

.sign-card:hover .sign-icon-wrapper {
    transform: scale(1.1) rotate(-3deg);
}

.icon-primary {
    background-color: rgba(0, 82, 255, 0.08);
    color: var(--primary);
    border-color: rgba(0, 82, 255, 0.15);
}

.icon-secondary {
    background-color: rgba(0, 184, 230, 0.08);
    color: var(--secondary);
    border-color: rgba(0, 184, 230, 0.15);
}

.icon-tertiary {
    background-color: rgba(58, 67, 74, 0.08);
    color: var(--tertiary);
    border-color: rgba(58, 67, 74, 0.15);
}

.icon-error {
    background-color: rgba(196, 30, 58, 0.08);
    color: var(--error);
    border-color: rgba(196, 30, 58, 0.15);
}

.sign-card-wide {
    grid-column: 1 / -1;
}

@media (min-width: 1024px) {
    .sign-card-wide {
        grid-column: span 2;
    }
}

/* Corner Watermark Image for Card Items */
.card-corner-watermark {
    position: absolute;
    right: -20px;
    bottom: -20px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    opacity: 0.18;
    pointer-events: none;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    filter: blur(1.5px);
    border: 3px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    z-index: 1;
}

.sign-card:hover .card-corner-watermark,
.solution-card:hover .card-corner-watermark {
    opacity: 0.45;
    transform: scale(1.16) rotate(-4deg);
    filter: blur(0px);
}

.corner-watermark-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.sign-card .sign-icon-wrapper,
.sign-card .loss-title,
.sign-card .loss-desc,
.sign-card-wide-content,
.solution-card .solution-icon-wrapper,
.solution-card .loss-title,
.solution-card .loss-desc {
    position: relative;
    z-index: 2;
}


.sign-card-wide-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
}

@media (min-width: 768px) {
    .sign-card-wide-content {
        flex-direction: row;
        align-items: center;
    }
}

/* SECTION */
.redflags-section {
    padding: 80px 0;
    background-color: var(--surface-container-low);
    position: relative;
}

.redflags-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 0% 50%, rgba(196, 30, 58, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.redflags-grid {
    display: grid;
    gap: 56px;
    align-items: center;
}

@media (min-width: 1024px) {
    .redflags-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.redflags-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--outline-variant);
    background-color: var(--surface-container-lowest);
    order: 2;
    transition: transform 0.5s ease;
}

.redflags-image:hover {
    transform: scale(1.01);
}

@media (min-width: 1024px) {
    .redflags-image {
        order: 1;
    }
}

.redflags-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    order: 1;
}

@media (min-width: 1024px) {
    .redflags-content {
        order: 2;
    }
}

.redflags-title {
    font-size: clamp(26px, 3vw, 32px);
    font-weight: 800;
    color: var(--on-surface);
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.flags-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.flag-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 18px;
    background: rgba(196, 30, 58, 0.03);
    border-radius: 14px;
    border: 1px solid rgba(196, 30, 58, 0.15);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.flag-item:hover {
    background: rgba(196, 30, 58, 0.06);
    border-color: rgba(196, 30, 58, 0.3);
    transform: translateX(4px);
}

.flag-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(135deg, var(--error) 0%, #e83a5b 100%);
    color: #ffffff;
    padding: 3px 10px;
    font-size: 9px;
    font-weight: 800;
    border-bottom-left-radius: 10px;
    letter-spacing: 0.06em;
}

.flag-icon {
    color: var(--error);
    margin-top: 3px;
    animation: pulse 2.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    flex-shrink: 0;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .4;
    }
}

.flag-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--error);
    margin-bottom: 4px;
    margin-top: 0;
}

.flag-desc {
    font-size: 13.5px;
    color: var(--on-surface-variant);
    line-height: 1.55;
}

.solution-section {
    padding: 80px 0;
    background-color: var(--surface);
}

.solution-grid-3 {
    display: grid;
    gap: 20px;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .solution-grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.solution-card {
    background-color: var(--surface-container-lowest);
    padding: 28px;
    border-radius: 20px;
    border: 1px solid var(--outline-variant);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.solution-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: var(--gradient-primary-soft);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.solution-card:hover::after {
    opacity: 1;
}

.solution-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.solution-card:hover .solution-icon-wrapper {
    transform: scale(1.1);
}

.solution-grid-2 {
    display: grid;
    gap: 20px;
    margin-bottom: 20px;
    max-width: 1024px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .solution-grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ══════════════════════════════════════════════════════════════
   HIGH-END GRAND GOAL CARD
   ══════════════════════════════════════════════════════════════ */
.goal-card {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    padding: 64px 36px;
    margin-bottom: 48px;
    background: #0b1120;
    border: 1.5px solid rgba(0, 210, 255, 0.35);
    box-shadow: 0 24px 60px -12px rgba(0, 82, 255, 0.35), inset 0 0 35px rgba(0, 210, 255, 0.12);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.goal-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 210, 255, 0.6);
    box-shadow: 0 32px 70px -10px rgba(0, 82, 255, 0.45), inset 0 0 50px rgba(0, 210, 255, 0.2);
}

.goal-card-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.goal-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.45) contrast(1.2);
    transition: transform 0.8s ease;
}

.goal-card:hover .goal-bg-img {
    transform: scale(1.06);
}

.goal-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(11, 17, 32, 0.92) 0%, rgba(0, 50, 160, 0.75) 50%, rgba(11, 17, 32, 0.92) 100%);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.goal-card-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 210, 255, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.goal-card-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.goal-icon-wrapper {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0052ff 0%, #00d2ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: #ffffff;
    box-shadow: 0 12px 32px rgba(0, 210, 255, 0.45), inset 0 2px 4px rgba(255, 255, 255, 0.6);
    border: 3px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
}

.goal-card:hover .goal-icon-wrapper {
    transform: scale(1.12) rotate(6deg);
    box-shadow: 0 16px 40px rgba(0, 210, 255, 0.6), inset 0 2px 4px rgba(255, 255, 255, 0.8);
}

.goal-title {
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 900;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
    line-height: 1.25;
    background: linear-gradient(135deg, #ffffff 0%, #00d2ff 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.goal-desc {
    font-size: clamp(17px, 1.8vw, 22px);
    color: rgba(255, 255, 255, 0.92);
    font-weight: 500;
    line-height: 1.65;
    margin: 0;
    max-width: 820px;
    letter-spacing: -0.01em;
}

.solution-image-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--outline-variant);
    background-color: var(--surface-container-lowest);
}

.solution-image-container img {
    transition: transform 5s ease;
}

.solution-image-container:hover img {
    transform: scale(1.04);
}

.solution-image-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, transparent 100%);
    padding: 40px 32px;
    text-align: center;
}

.solution-image-title {
    color: white;
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 800;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* ══════════════════════════════════════════════════════════════
   SECTION — BENEFITS & SUCCESS PATH (Customized per-item borders)
   ══════════════════════════════════════════════════════════════ */
.benefits-section {
    padding: 90px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(0, 82, 255, 0.08);
    border-bottom: 1px solid rgba(0, 82, 255, 0.08);
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 40%, rgba(16, 185, 129, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.benefits-grid {
    display: grid;
    gap: 56px;
    align-items: center;
}

@media (min-width: 1024px) {
    .benefits-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.benefits-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 22px;
    border-radius: 16px;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    border: 1.5px solid transparent;
}

/* Benefit Item 1 - Royal Blue */
.benefit-item-1 {
    background: linear-gradient(135deg, #ffffff 0%, rgba(0, 82, 255, 0.05) 100%);
    border-color: rgba(0, 82, 255, 0.2);
    border-left: 4px solid #0052ff;
    box-shadow: 0 4px 16px rgba(0, 82, 255, 0.04);
}

.benefit-item-1:hover {
    transform: translateX(6px);
    border-color: #0052ff;
    box-shadow: 0 10px 24px -4px rgba(0, 82, 255, 0.18);
}

/* Benefit Item 2 - Electric Cyan */
.benefit-item-2 {
    background: linear-gradient(135deg, #ffffff 0%, rgba(0, 210, 255, 0.06) 100%);
    border-color: rgba(0, 210, 255, 0.25);
    border-left: 4px solid #00d2ff;
    box-shadow: 0 4px 16px rgba(0, 210, 255, 0.04);
}

.benefit-item-2:hover {
    transform: translateX(6px);
    border-color: #00d2ff;
    box-shadow: 0 10px 24px -4px rgba(0, 210, 255, 0.2);
}

/* Benefit Item 3 - Teal / Emerald Green */
.benefit-item-3 {
    background: linear-gradient(135deg, #ffffff 0%, rgba(16, 185, 129, 0.06) 100%);
    border-color: rgba(16, 185, 129, 0.22);
    border-left: 4px solid #10b981;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.04);
}

.benefit-item-3:hover {
    transform: translateX(6px);
    border-color: #10b981;
    box-shadow: 0 10px 24px -4px rgba(16, 185, 129, 0.2);
}

/* Benefit Item 4 - Violet Purple */
.benefit-item-4 {
    background: linear-gradient(135deg, #ffffff 0%, rgba(168, 85, 247, 0.06) 100%);
    border-color: rgba(168, 85, 247, 0.22);
    border-left: 4px solid #a855f7;
    box-shadow: 0 4px 16px rgba(168, 85, 247, 0.04);
}

.benefit-item-4:hover {
    transform: translateX(6px);
    border-color: #a855f7;
    box-shadow: 0 10px 24px -4px rgba(168, 85, 247, 0.2);
}

/* Benefit Item 5 - Amber Gold */
.benefit-item-5 {
    background: linear-gradient(135deg, #ffffff 0%, rgba(245, 158, 11, 0.06) 100%);
    border-color: rgba(245, 158, 11, 0.22);
    border-left: 4px solid #f59e0b;
    box-shadow: 0 4px 16px rgba(245, 158, 11, 0.04);
}

.benefit-item-5:hover {
    transform: translateX(6px);
    border-color: #f59e0b;
    box-shadow: 0 10px 24px -4px rgba(245, 158, 11, 0.2);
}

/* Icon background gradient utilities */
.icon-bg-primary {
    background: linear-gradient(135deg, #0052ff 0%, #3375ff 100%) !important;
}

.icon-bg-secondary {
    background: linear-gradient(135deg, #00b8e6 0%, #00d2ff 100%) !important;
}

.icon-bg-teal {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%) !important;
}

.icon-bg-purple {
    background: linear-gradient(135deg, #9333ea 0%, #a855f7 100%) !important;
}

.icon-bg-amber {
    background: linear-gradient(135deg, #d97706 0%, #f59e0b 100%) !important;
}

.benefit-icon-wrapper {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease;
}

.benefit-item:hover .benefit-icon-wrapper {
    box-shadow: 0 6px 20px rgba(0, 82, 255, 0.4);
    transform: scale(1.15) rotate(6deg);
}

/* Dashboard Preview Card */
.dashboard-preview {
    position: relative;
    height: 100%;
    min-height: 400px;
    border-radius: 24px;
    overflow: hidden;
    border: 1.5px solid rgba(0, 82, 255, 0.2);
    background: #ffffff;
    padding: 24px;
    box-shadow: 0 20px 50px -10px rgba(0, 82, 255, 0.15), 0 0 0 6px rgba(0, 82, 255, 0.04);
    transition: all 0.4s ease;
}

.dashboard-preview:hover {
    border-color: rgba(0, 82, 255, 0.4);
    box-shadow: 0 30px 60px -10px rgba(0, 82, 255, 0.22), 0 0 0 8px rgba(0, 82, 255, 0.06);
}

.dashboard-ui {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--outline-variant);
    padding-bottom: 12px;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.dashboard-stat-card {
    background: var(--gradient-primary-soft);
    padding: 18px;
    border-radius: 14px;
    border: 1px solid rgba(0, 82, 255, 0.08);
}

.dashboard-chart {
    flex: 1;
    background: var(--gradient-primary-soft);
    border-radius: 14px;
    border: 1px solid rgba(0, 82, 255, 0.08);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    gap: 10px;
    justify-content: space-between;
    margin-top: 8px;
}

.chart-bar {
    width: 16.666%;
    border-radius: 4px 4px 0 0;
    transition: height 1s cubic-bezier(0.16, 1, 0.3, 1);
}

/* SECTION */
/* ══════════════════════════════════════════════════════════════
   SECTION — ROADMAP (5 Connected Steps Flow)
   ══════════════════════════════════════════════════════════════ */
.roadmap-section {
    padding: 95px 0;
    background-color: #0b1120;
    position: relative;
    overflow: hidden;
    color: white;
}

.roadmap-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.roadmap-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.roadmap-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(11, 17, 32, 0.9) 0%, rgba(0, 50, 140, 0.78) 100%);
    backdrop-filter: blur(2px);
}

.roadmap-content {
    position: relative;
    z-index: 10;
}

.roadmap-image-container {
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    margin-bottom: 56px;
    background-color: rgba(255, 255, 255, 0.98);
    padding: 20px;
}

.roadmap-steps {
    display: grid;
    gap: 24px;
    position: relative;
}

@media (min-width: 1024px) {
    .roadmap-steps {
        grid-template-columns: repeat(5, 1fr);
        gap: 20px;
    }

    /* Glowing continuous connecting timeline line behind top badges */
    .roadmap-steps::before {
        content: '';
        position: absolute;
        top: 42px;
        left: 5%;
        right: 5%;
        height: 3px;
        background: linear-gradient(90deg, #0052ff 0%, #00d2ff 35%, #10b981 70%, #f59e0b 100%);
        border-radius: 4px;
        z-index: 1;
        box-shadow: 0 0 12px rgba(0, 210, 255, 0.6);
    }
}

.roadmap-step {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    padding: 24px 20px;
    border-radius: 20px;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    position: relative;
    z-index: 5;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

/* Arrow badges connecting steps in desktop view */
@media (min-width: 1024px) {
    .roadmap-step:not(:last-child)::after {
        content: 'chevron_right';
        font-family: 'Material Symbols Outlined';
        position: absolute;
        top: 42px;
        right: -17px;
        transform: translateY(-50%);
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background: linear-gradient(135deg, #0052ff 0%, #00d2ff 100%);
        color: #ffffff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        font-weight: 700;
        z-index: 20;
        box-shadow: 0 0 12px rgba(0, 210, 255, 0.7);
        border: 2px solid #0b1120;
    }
}

.roadmap-step:hover {
    transform: translateY(-8px);
}

.step-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    position: relative;
    z-index: 10;
}

.step-badge {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 20px;
    color: #ffffff;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Prominent Step Icon Styling */
.step-icon {
    font-size: 20px !important;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff !important;
    flex-shrink: 0;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.roadmap-step:hover .step-icon {
    transform: scale(1.18) rotate(10deg);
}

/* ══════════════════════════════════════════════════════════════
   DISTINCT PER-STEP SOLID BORDERS & LIGHT FLAT BACKGROUNDS (NO GRADIENT)
   ══════════════════════════════════════════════════════════════ */

.roadmap-steps .step-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* STEP 1 — Royal Blue */
.step-1 {
    background-color: #eff6ff;
    border: 2px solid #3b82f6;
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.15);
}

.step-1:hover {
    background-color: #dbeafe;
    border-color: #2563eb;
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.3);
}

.step-1 .step-icon {
    background-color: #2563eb;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.4);
}

.badge-step-1 {
    background-color: #2563eb;
}

/* STEP 2 — Sky Blue */
.step-2 {
    background-color: #f0f9ff;
    border: 2px solid #0ea5e9;
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.15);
}

.step-2:hover {
    background-color: #e0f2fe;
    border-color: #0284c7;
    box-shadow: 0 12px 30px rgba(2, 132, 199, 0.3);
}

.step-2 .step-icon {
    background-color: #0284c7;
    box-shadow: 0 4px 14px rgba(2, 132, 199, 0.4);
}

.badge-step-2 {
    background-color: #0284c7;
}

/* STEP 3 — Electric Cyan */
.step-3 {
    background-color: #ecfeff;
    border: 2px solid #06b6d4;
    box-shadow: 0 6px 20px rgba(6, 182, 212, 0.15);
}

.step-3:hover {
    background-color: #cffaff;
    border-color: #0891b2;
    box-shadow: 0 12px 30px rgba(8, 145, 178, 0.3);
}

.step-3 .step-icon {
    background-color: #0891b2;
    box-shadow: 0 4px 14px rgba(8, 145, 178, 0.4);
}

.badge-step-3 {
    background-color: #0891b2;
}

/* STEP 4 — Emerald Teal */
.step-4 {
    background-color: #ecfdf5;
    border: 2px solid #10b981;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.15);
}

.step-4:hover {
    background-color: #d1fae5;
    border-color: #059669;
    box-shadow: 0 12px 30px rgba(5, 150, 105, 0.3);
}

.step-4 .step-icon {
    background-color: #059669;
    box-shadow: 0 4px 14px rgba(5, 150, 105, 0.4);
}

.badge-step-4 {
    background-color: #059669;
}

/* STEP 5 — Amber Gold */
.step-5 {
    background-color: #fffbeb;
    border: 2px solid #f59e0b;
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.15);
}

.step-5:hover {
    background-color: #fef3c7;
    border-color: #d97706;
    box-shadow: 0 12px 30px rgba(217, 119, 6, 0.3);
}

.step-5 .step-icon {
    background-color: #d97706;
    box-shadow: 0 4px 14px rgba(217, 119, 6, 0.4);
}

.badge-step-5 {
    background-color: #d97706;
}

.roadmap-step .loss-title {
    color: #0b1120;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.roadmap-step .loss-desc {
    color: #475569;
    font-size: 14px;
    line-height: 1.55;
    margin: 0;
}

/* SECTION */
/* ══════════════════════════════════════════════════════════════
   SECTION — AUDIENCE (Customized light flat background & solid border per card)
   ══════════════════════════════════════════════════════════════ */
.audience-section {
    padding: 90px 0;
    background-color: #f8fafc;
    border-top: 1px solid rgba(0, 82, 255, 0.08);
    border-bottom: 1px solid rgba(0, 82, 255, 0.08);
}

.audience-grid {
    display: grid;
    gap: 48px;
    align-items: center;
}

@media (min-width: 1024px) {
    .audience-grid {
        grid-template-columns: 1.1fr 0.9fr;
    }
}

.audience-cards {
    display: grid;
    gap: 16px;
}

@media (min-width: 768px) {
    .audience-cards {
        grid-template-columns: 1fr 1fr;
    }
}

.audience-card {
    padding: 24px 22px;
    border-radius: 20px;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

/* Watermark background image element at corner */
.audience-card-bg {
    position: absolute;
    right: -10px;
    bottom: -10px;
    width: 150px;
    height: 150px;
    opacity: 0.22;
    pointer-events: none;
    z-index: 1;
    transition: all 0.4s ease;
    mix-blend-mode: multiply;
}

.audience-card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.audience-card:hover .audience-card-bg {
    opacity: 0.38;
    transform: scale(1.12) rotate(-6deg);
}

.audience-card-content {
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.audience-icon-wrapper {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.audience-card:hover .audience-icon-wrapper {
    transform: scale(1.15) rotate(6deg);
}

/* Card 1 — Royal Blue (TMĐT / Bán lẻ) */
.audience-card-1 {
    background-color: #eff6ff;
    border: 2px solid #3b82f6;
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.1);
}
.audience-card-1:hover {
    background-color: #dbeafe;
    border-color: #2563eb;
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(37, 99, 235, 0.22);
}
.audience-card-1 .audience-icon-wrapper {
    background-color: #2563eb;
}

/* Card 2 — Sky Blue (Sản xuất / Thương mại) */
.audience-card-2 {
    background-color: #f0f9ff;
    border: 2px solid #0ea5e9;
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.1);
}
.audience-card-2:hover {
    background-color: #e0f2fe;
    border-color: #0284c7;
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(2, 132, 199, 0.22);
}
.audience-card-2 .audience-icon-wrapper {
    background-color: #0284c7;
}

/* Card 3 — Emerald Teal (Dịch vụ) */
.audience-card-3 {
    background-color: #ecfdf5;
    border: 2px solid #10b981;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.1);
}
.audience-card-3:hover {
    background-color: #d1fae5;
    border-color: #059669;
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(5, 150, 105, 0.22);
}
.audience-card-3 .audience-icon-wrapper {
    background-color: #059669;
}

/* Card 4 — Violet Purple (Muốn mở rộng) */
.audience-card-4 {
    background-color: #f5f3ff;
    border: 2px solid #8b5cf6;
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.1);
}
.audience-card-4:hover {
    background-color: #ede9fe;
    border-color: #7c3aed;
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(124, 58, 237, 0.22);
}
.audience-card-4 .audience-icon-wrapper {
    background-color: #7c3aed;
}

/* Card 5 — Amber Gold (Giảm phụ thuộc nhân sự) */
.audience-card-5 {
    background-color: #fffbeb;
    border: 2px solid #f59e0b;
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.1);
}

@media (min-width: 768px) {
    .audience-card-5 {
        grid-column: 1 / -1;
    }
}

.audience-card-5:hover {
    background-color: #fef3c7;
    border-color: #d97706;
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(217, 119, 6, 0.22);
}
.audience-card-5 .audience-icon-wrapper {
    background-color: #d97706;
}

.audience-form-container {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 82, 255, 0.1);
    border: 1.5px solid rgba(0, 82, 255, 0.15);
    overflow: hidden;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    transition: transform 0.4s ease;
}

.audience-form-container:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 60px rgba(0, 82, 255, 0.16);
}

.audience-form-container img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
}

/* SECTION  */
.cta-section {
    background-color: #0b1120;
    background-image:
        linear-gradient(135deg, rgba(11, 17, 32, 0.92) 0%, rgba(0, 82, 255, 0.88) 50%, rgba(0, 210, 255, 0.9) 100%);
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    color: #ffffff;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 20%, rgba(0, 210, 255, 0.25) 0%, transparent 50%),
        radial-gradient(circle at 10% 80%, rgba(0, 82, 255, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

.cta-section::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(0, 82, 255, 0.12);
    filter: blur(80px);
    pointer-events: none;
}

.cta-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    position: relative;
    z-index: 2;
}

@media (min-width: 1024px) {
    .cta-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.cta-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.cta-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.cta-desc {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.7;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.contact-method {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.contact-method .material-symbols-outlined {
    font-size: 28px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.contact-method:hover .material-symbols-outlined {
    background: rgba(255, 255, 255, 0.18);
}

.contact-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
}

.contact-value {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
}

.form-card {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: var(--radius-2xl);
    padding: 40px;
    box-shadow: 0 32px 64px -16px rgba(0, 0, 0, 0.25);
    color: var(--on-surface);
    position: relative;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.form-wrap {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.form-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--on-surface);
    letter-spacing: -0.01em;
}

.required-mark {
    color: var(--error);
    font-weight: 700;
}

.form-input {
    width: 100%;
    padding: 14px 18px;
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    color: var(--on-surface);
}

.form-input:focus {
    outline: none;
    background: #ffffff;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(0, 82, 255, 0.1);
}

.form-input::placeholder {
    color: #94a3b8;
}

.form-submit {
    width: 100%;
    padding: 16px;
    background: var(--gradient-primary);
    color: #ffffff;
    border-radius: var(--radius-xl);
    font-weight: 700;
    font-size: 15px;
    border: none;
    cursor: pointer;
    margin-top: 8px;
    box-shadow: var(--shadow-glow-primary);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    letter-spacing: -0.01em;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px -4px rgba(0, 82, 255, 0.45);
}

.form-disclaimer {
    font-size: 12px;
    color: var(--on-surface-variant);
    text-align: center;
    margin-top: 4px;
    line-height: 1.5;
}

/* MODAL SUCCESS */
.modal-success-content {
    border-radius: 24px !important;
    border: none !important;
    overflow: hidden;
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.2) !important;
}

.modal-success-body {
    padding: 48px 40px !important;
    text-align: center;
}

.modal-success-icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 210, 255, 0.12) 0%, rgba(0, 82, 255, 0.08) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.modal-success-icon-wrap .material-symbols-outlined {
    font-size: 36px;
    color: var(--secondary);
}

.modal-success-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--on-surface);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.modal-success-desc {
    font-size: 14px;
    color: var(--on-surface-variant);
    line-height: 1.7;
    margin-bottom: 20px;
}

.modal-success-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px;
    background: var(--gradient-primary-soft);
    border-radius: 14px;
    margin-bottom: 24px;
}

.modal-success-info .info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--on-surface);
    font-weight: 600;
}

.modal-success-info .info-item .material-symbols-outlined {
    font-size: 20px;
    color: var(--primary);
}

.modal-success-actions {
    display: flex;
    justify-content: center;
}

.modal-close-btn {
    padding: 14px 48px;
    border-radius: var(--radius-full);
    font-size: 15px;
}

/* FOOTER (shared styles) */
.footer {
    width: 100%;
    background-color: var(--surface-container-low);
    padding: 64px 0 32px;
    border-top: 1px solid var(--outline-variant);
}

.cta-box {
    background-color: var(--surface-container-lowest);
    border-radius: 20px;
    padding: 32px;
    border: 1px solid var(--outline-variant);
    box-shadow: var(--shadow-md);
    margin-bottom: 64px;
}

.cta-messages {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cta-benefits-box {
    background: var(--gradient-primary-soft);
    padding: 18px;
    border-radius: 14px;
    border: 1px solid rgba(0, 82, 255, 0.1);
}

.cta-benefits-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    list-style: none;
}

.cta-benefit-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--on-surface-variant);
}

.cta-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    background-color: var(--surface);
    padding: 24px;
    border-radius: 14px;
    border: 1px solid var(--outline-variant);
}

.btn-submit {
    width: 100%;
    background: var(--gradient-primary);
    color: var(--on-primary);
    padding: 16px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    margin-top: 8px;
    box-shadow: var(--shadow-glow-primary);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

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

.footer-links {
    display: grid;
    gap: 48px;
    margin-bottom: 64px;
}

@media (min-width: 768px) {
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-links {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 14px;
    color: var(--on-surface-variant);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--on-surface);
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav-link {
    font-size: 14px;
    color: var(--on-surface-variant);
    transition: all 0.25s ease;
}

.footer-nav-link:hover {
    color: var(--primary);
    transform: translateX(3px);
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    padding: 10px;
    background-color: rgba(0, 82, 255, 0.06);
    border-radius: 12px;
    color: var(--on-surface-variant);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.social-link:hover {
    background-color: var(--primary);
    color: var(--on-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-primary);
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid var(--outline-variant);
    display: flex;
    flex-direction: column;
    gap: 16px;
    font-size: 13px;
    color: var(--on-surface-variant);
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.legal-links {
    display: flex;
    gap: 32px;
}

.legal-link:hover {
    color: var(--primary);
}

/* MOBILE RESPONSIVE FINE-TUNING*/
@media (max-width: 767px) {
    .hero-section {
        min-height: auto;
        padding: 100px 0 56px;
    }

    .hero-title {
        font-size: 28px;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .hero-list-item {
        font-size: 13.5px;
    }

    .section-losses,
    .ceo-section,
    .signs-section,
    .redflags-section,
    .solution-section,
    .benefits-section,
    .roadmap-section,
    .audience-section {
        padding: 56px 0;
    }

    .section-header {
        margin-bottom: 36px;
    }

    .section-title {
        font-size: 24px;
    }

    .section-desc {
        font-size: 14.5px;
    }

    .ceo-title,
    .redflags-title {
        font-size: 24px;
    }

    .signs-title {
        font-size: 26px;
    }

    .losses-highlight {
        padding: 20px;
    }

    .losses-highlight-text {
        font-size: 15px;
    }

    .loss-card,
    .sign-card {
        padding: 24px;
        border-radius: 16px;
    }

    .loss-title {
        font-size: 18px;
    }

    .loss-desc,
    .flag-desc {
        font-size: 13.5px;
    }

    .question-number {
        font-size: 32px;
    }

    .question-text {
        font-size: 14px;
    }

    .ceo-image-container {
        height: 300px;
        border-radius: 16px;
    }

    .roadmap-image-container {
        padding: 12px;
        border-radius: 14px;
    }

    .roadmap-step {
        padding: 20px;
    }

    .step-number {
        font-size: 32px;
    }

    .cta-section {
        padding: 64px 0;
    }

    .form-card {
        padding: 28px 24px;
    }

    .goal-title {
        font-size: 32px;
    }

    .flag-title {
        font-size: 15px;
    }

    .flag-item {
        padding: 14px;
    }
}

@media (prefers-reduced-motion: no-preference) {

    .loss-card,
    .sign-card,
    .solution-card,
    .audience-card,
    .benefit-item,
    .question-item,
    .flag-item,
    .roadmap-step {
        will-change: transform;
    }
}

/* EXTRACTED UTILITIES & COMPONENT STYLES (From index.tpl)  */
.icon-16 {
    font-size: 16px !important;
}

.icon-20 {
    font-size: 20px !important;
}

.icon-28 {
    font-size: 28px !important;
}

.icon-32 {
    font-size: 32px !important;
}

.icon-40 {
    font-size: 40px !important;
}

.text-white {
    color: #ffffff !important;
}

.text-uppercase {
    text-transform: uppercase !important;
}

.text-left {
    text-align: left !important;
}

.text-muted-white {
    color: rgba(255, 255, 255, 0.7) !important;
}

.text-subtitle-muted {
    font-weight: 600;
    color: rgba(0, 0, 0, 0.54);
    font-size: 16.5px;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-4 {
    margin-bottom: 4px !important;
}

.mb-16 {
    margin-bottom: 16px !important;
}

.mb-24 {
    margin-bottom: 24px !important;
}

.mb-32 {
    margin-bottom: 32px !important;
}

.flex-shrink-0 {
    flex-shrink: 0 !important;
}

.rounded-12 {
    border-radius: 12px !important;
}

.flex-col-gap-8 {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.icon-bg-primary {
    background-color: rgba(0, 82, 255, 0.1) !important;
}

.icon-bg-secondary {
    background-color: rgba(0, 184, 230, 0.1) !important;
}

.icon-bg-tertiary {
    background-color: rgba(58, 67, 74, 0.1) !important;
}

.icon-bg-error {
    background-color: rgba(196, 30, 58, 0.1) !important;
}

.icon-bg-soft-blue {
    background-color: rgba(172, 199, 255, 0.2) !important;
}

.badge-success {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 16px;
    background-color: rgba(0, 82, 255, 0.1);
    border-radius: 999px;
    width: fit-content;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge-live {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    background-color: rgba(0, 82, 255, 0.1);
    padding: 4px 8px;
    border-radius: 999px;
}

.stat-card-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--on-surface-variant);
    margin-bottom: 4px;
}

.stat-card-val {
    font-size: 32px;
    font-weight: 600;
    color: var(--on-surface);
}

.stat-card-trend {
    font-size: 14px;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 4px;
}

.losses-bg-image {
    background-image: url('../home/5.jpg');
}

.ceo-image {
    background-image: url('../home/6.jpg');
}

.step-arrow-1 {
    left: 18%;
    font-size: 32px;
}

.step-arrow-2 {
    left: 38%;
    font-size: 32px;
}

.step-arrow-3 {
    left: 58%;
    font-size: 32px;
}

.step-arrow-4 {
    left: 78%;
    font-size: 32px;
}

.roadmap-step:nth-child(1) .step-number {
    color: rgba(196, 30, 58, 0.2);
}

.roadmap-step:nth-child(2) .step-number {
    color: rgba(58, 67, 74, 0.2);
}

.roadmap-step:nth-child(3) .step-number {
    color: rgba(0, 210, 255, 0.4);
}

.roadmap-step:nth-child(4) .step-number {
    color: rgba(0, 82, 255, 0.4);
}

.roadmap-step:nth-child(5) .step-number {
    color: rgba(0, 82, 255, 0.2);
}

.dashboard-chart .chart-bar:nth-child(1) {
    background-color: rgba(0, 82, 255, 0.2);
    height: 30%;
}

.dashboard-chart .chart-bar:nth-child(2) {
    background-color: rgba(0, 82, 255, 0.4);
    height: 50%;
}

.dashboard-chart .chart-bar:nth-child(3) {
    background-color: rgba(0, 82, 255, 0.6);
    height: 40%;
}

.dashboard-chart .chart-bar:nth-child(4) {
    background-color: rgba(0, 82, 255, 0.8);
    height: 70%;
}

.dashboard-chart .chart-bar:nth-child(5) {
    background-color: var(--primary);
    height: 90%;
}

/* HIGH-END VIBRANT CARD IMAGES & LUXURY STYLING */

.card-img-wrapper {
    position: relative;
    width: 100%;
    height: 150px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 10px 25px -5px rgba(0, 82, 255, 0.15);
    border: 1.5px solid rgba(255, 255, 255, 0.8);
    background-color: var(--surface-container-low);
}

.card-img-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(11, 17, 32, 0.45) 100%);
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.card-thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.loss-card:hover .card-thumb-img,
.sign-card:hover .card-thumb-img,
.solution-card:hover .card-thumb-img,
.audience-card:hover .card-thumb-img {
    transform: scale(1.1);
}

.wide-card-img {
    height: 160px;
    width: 100%;
    max-width: 260px;
    flex-shrink: 0;
}

.audience-thumb-wrap {
    height: 130px;
}

/* Vibrant Gradient Typography for Main Headings */
.section-title {
    background: linear-gradient(135deg, #0b1120 0%, #0052ff 50%, #00d2ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.section-title.text-white {
    background: linear-gradient(135deg, #ffffff 0%, #c7d7ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title {
    background: linear-gradient(135deg, #111827 0%, #0052ff 60%, #00b8e6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Premium Colorful Glows for Cards */
.loss-card-1 {
    border-top: 4px solid #ef4444;
}

.loss-card-1:hover {
    box-shadow: 0 20px 40px -10px rgba(239, 68, 68, 0.25);
    border-color: rgba(239, 68, 68, 0.4);
}

.loss-card-2 {
    border-top: 4px solid #0052ff;
}

.loss-card-2:hover {
    box-shadow: 0 20px 40px -10px rgba(0, 82, 255, 0.25);
    border-color: rgba(0, 82, 255, 0.4);
}

.loss-card-3 {
    border-top: 4px solid #00d2ff;
}

.loss-card-3:hover {
    box-shadow: 0 20px 40px -10px rgba(0, 210, 255, 0.3);
    border-color: rgba(0, 210, 255, 0.4);
}

.loss-card-4 {
    border-top: 4px solid #8b5cf6;
}

.loss-card-4:hover {
    box-shadow: 0 20px 40px -10px rgba(139, 92, 246, 0.25);
    border-color: rgba(139, 92, 246, 0.4);
}

/* Solution & Sign Cards Gradient Accents */
.solution-card,
.audience-card {
    position: relative;
    border: 1px solid rgba(0, 82, 255, 0.1);
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.solution-card:hover,
.audience-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -10px rgba(0, 82, 255, 0.18);
    border-color: rgba(0, 82, 255, 0.3);
}

/* Hero Section Neon Badges */
.badge-warning {
    background: linear-gradient(135deg, #fef2f2 0%, #ffe4e6 100%);
    border: 1px solid rgba(244, 63, 94, 0.3);
    box-shadow: 0 4px 14px rgba(244, 63, 94, 0.15);
}

.badge-primary {
    background: linear-gradient(135deg, rgba(0, 82, 255, 0.1) 0%, rgba(0, 210, 255, 0.12) 100%);
    border: 1px solid rgba(0, 82, 255, 0.2);
    box-shadow: 0 4px 14px rgba(0, 82, 255, 0.12);
}

.badge-success {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(6, 182, 212, 0.12) 100%);
    color: #059669;
    border: 1px solid rgba(16, 185, 129, 0.25);
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.15);
}

.benefit-item {
    border: 1px solid rgba(0, 82, 255, 0.12);
    background: linear-gradient(135deg, #ffffff 0%, rgba(0, 82, 255, 0.02) 100%);
}

.benefit-item:hover {
    border-color: rgba(0, 82, 255, 0.35);
    box-shadow: 0 10px 25px -5px rgba(0, 82, 255, 0.12);
}


/* GLOBAL VIBRANT GRADIENT TITLES
 */
.hero-title,
.section-title,
.signs-title,
.redflags-title {
    background: linear-gradient(135deg, #0b1120 0%, #0052ff 50%, #00d2ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.ceo-title,
.cta-title,
.section-title.text-white,
.roadmap-section .section-title {
    background: linear-gradient(135deg, #ffffff 0%, #c7d7ff 50%, #00d2ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

/* SECTION  */
.suthat-section {
    padding: 90px 0;
    background: #0b1120;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(0, 82, 255, 0.15);
    border-bottom: 1px solid rgba(0, 82, 255, 0.15);
}

.suthat-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 30%, rgba(0, 82, 255, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.suthat-header {
    text-align: center;
    max-width: 920px;
    margin: 0 auto 56px;
    position: relative;
    z-index: 10;
}

.suthat-title {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.35;
    letter-spacing: -0.02em;
}

.suthat-title .highlight-blue {
    color: #0052ff;
    font-weight: 800;
}

.suthat-title .highlight-purple {
    color: #a855f7;
    font-weight: 800;
}

.suthat-grid {
    display: grid;
    gap: 24px;
    position: relative;
    z-index: 10;
}

@media (min-width: 768px) {
    .suthat-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.suthat-card {
    position: relative;
    min-height: 280px;
    border-radius: 20px;
    overflow: hidden;
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 36px 32px;
}

.suthat-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 82, 255, 0.4);
    box-shadow: 0 30px 60px -15px rgba(0, 82, 255, 0.25);
}

.suthat-card-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.suthat-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s ease;
    filter: brightness(0.65) contrast(1.15);
}

.suthat-card:hover .suthat-bg-img {
    transform: scale(1.08);
}

.suthat-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11, 17, 32, 0.2) 0%, rgba(11, 17, 32, 0.8) 100%);
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
}

.suthat-card-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    max-width: 520px;
}

.suthat-subtitle {
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: -0.01em;
    margin: 0;
    line-height: 1.5;
}

.suthat-main-text {
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 800;
    line-height: 1.4;
    letter-spacing: -0.01em;
    margin: 0;
    text-transform: uppercase;
}

.text-teal {
    color: #00e5a3;
    text-shadow: 0 0 24px rgba(0, 229, 163, 0.4);
}

.text-orange {
    color: #ff7a00;
    text-shadow: 0 0 24px rgba(255, 122, 0, 0.4);
}

.text-amber {
    color: #f59e0b;
    text-shadow: 0 0 24px rgba(245, 158, 11, 0.4);
}

.text-cyan {
    color: #00d2ff;
    text-shadow: 0 0 24px rgba(0, 210, 255, 0.4);
}

.img-full-width {
    width: 100%;
    display: block;
}

/* ══════════════════════════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS (Smooth entrance on scroll)
   ══════════════════════════════════════════════════════════════ */
html {
    scroll-behavior: smooth;
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.scroll-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delay for grid elements */
.sign-card:nth-child(1), .suthat-card:nth-child(1), .benefit-item:nth-child(1), .roadmap-step:nth-child(1), .audience-card:nth-child(1) { transition-delay: 0.05s; }
.sign-card:nth-child(2), .suthat-card:nth-child(2), .benefit-item:nth-child(2), .roadmap-step:nth-child(2), .audience-card:nth-child(2) { transition-delay: 0.12s; }
.sign-card:nth-child(3), .suthat-card:nth-child(3), .benefit-item:nth-child(3), .roadmap-step:nth-child(3), .audience-card:nth-child(3) { transition-delay: 0.19s; }
.sign-card:nth-child(4), .suthat-card:nth-child(4), .benefit-item:nth-child(4), .roadmap-step:nth-child(4), .audience-card:nth-child(4) { transition-delay: 0.26s; }
.sign-card:nth-child(5), .suthat-card:nth-child(5), .benefit-item:nth-child(5), .roadmap-step:nth-child(5), .audience-card:nth-child(5) { transition-delay: 0.33s; }

/* Form Card Highlight Pulse when CTA button is clicked */
@keyframes formPulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 82, 255, 0.6), 0 20px 40px rgba(0, 0, 0, 0.1);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 0 18px rgba(0, 82, 255, 0), 0 30px 60px rgba(0, 82, 255, 0.35);
        transform: scale(1.02);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 82, 255, 0), 0 20px 40px rgba(0, 0, 0, 0.1);
        transform: scale(1);
    }
}

.form-card.form-highlight-pulse {
    animation: formPulseGlow 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    border-color: #0052ff !important;
}