/* ===== CSS VARIABLES ===== */
:root {
    --red: #ff0000;
    --red-dark: #9B0D23;
    --red-light: #e70c0c;
    --black: #0D0D0D;
    --black-2: #1A1A1A;
    --white: #FFFFFF;
    --gray-50: #F9F9F9;
    --gray-100: #F2F2F2;
    --gray-200: #E5E5E5;
    --gray-300: #CCCCCC;
    --gray-500: #888888;
    --gray-700: #444444;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.10);
    --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.14);
    --shadow-red: 0 8px 32px rgba(200, 16, 46, 0.2);
    --font-display: 'Poppins', Georgia, serif;
    --font-body: 'Poppins', sans-serif;
    --nav-h: 80px;
    --radius: 4px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--black);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

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

ul {
    list-style: none;
}

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

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

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--red);
    border-radius: 2px;
}

/* ===== UTILITY ===== */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 96px 0;
}

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

.section-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 12px;
    display: block;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--black);
    margin-bottom: 20px;
}

.section-title span {
    color: var(--red);
}

.section-sub {
    font-size: 1rem;
    color: var(--gray-500);
    max-width: 560px;
    line-height: 1.8;
}

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

.section-header.center {
    text-align: center;
}

.section-header.center .section-sub {
    margin: 0 auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: var(--radius);
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background: var(--red);
    color: var(--white);
    box-shadow: var(--shadow-red);
}

.btn-primary:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(200, 16, 46, 0.28);
}

.btn-outline {
    border: 2px solid var(--red);
    color: var(--red);
    background: transparent;
}

.btn-outline:hover {
    background: var(--red);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--white);
    color: var(--red);
}

.btn-white:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
}

.btn-ghost {
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.85);
    background: transparent;
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 10px 22px;
    font-size: 13px;
}

/* ===== TOP BAR ===== */
.topbar {
    background: var(--black);
    color: var(--gray-300);
    font-size: 12.5px;
    padding: 8px 0;
    border-bottom: 1px solid #222;
}

.topbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}

.topbar-left {
    display: flex;
    gap: 24px;
    align-items: center;
}

.topbar-left a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--gray-300);
    transition: color .2s;
}

.topbar-left a:hover {
    color: var(--red);
}

.topbar-right {
    display: flex;
    gap: 14px;
    align-items: center;
}

.topbar-right a {
    width: 26px;
    height: 26px;
    background: #2a2a2a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-300);
    font-size: 11px;
    transition: var(--transition);
}

.topbar-right a:hover {
    background: var(--red);
    color: var(--white);
}

/* ===== NAVBAR ===== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    height: var(--nav-h);
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.navbar.scrolled {
    height: 68px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.10);
}

.navbar .container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--red);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon svg {
    width: 22px;
    height: 22px;
    fill: white;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
}

.logo-text span {
    color: var(--red);
}

.logo-sub {
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray-500);
    margin-top: 2px;
}

/* NAV LINKS */
.nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
    height: 100%;
}

.nav-item {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0 14px;
    height: 100%;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--black-2);
    white-space: nowrap;
    transition: color .2s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--red);
    transform: scaleX(0);
    transition: transform .25s;
}

.nav-item:hover .nav-link,
.nav-item.active .nav-link {
    color: var(--red);
}

.nav-item:hover .nav-link::after,
.nav-item.active .nav-link::after {
    transform: scaleX(1);
}

.nav-link i {
    font-size: 9px;
    transition: transform .2s;
}

.nav-item:hover .nav-link i {
    transform: rotate(180deg);
}

.nav-link i.fa-chevron-down {
    font-size: 9px;
    transition: transform .2s;
}

.nav-item:hover .nav-link i.fa-chevron-down {
    transform: rotate(180deg);
}

/* SPECIAL NAV ITEMS */
.nav-link.nav-red {
    color: var(--red);
    font-weight: 600;
    background: rgba(200, 16, 46, 0.06);
    border-radius: var(--radius);
}

.nav-link.nav-red:hover {
    background: rgba(200, 16, 46, 0.12);
}

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

/* MEGA MENU */
.mega-menu {
    position: absolute;
    top: calc(100% + 1px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.14);
    border: 1px solid var(--gray-200);
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s, transform .25s, visibility .25s;
    min-width: 220px;
    overflow: hidden;
}

.nav-item:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Single column dropdown */
.mega-menu.single {
    min-width: 220px;
}

.mega-menu.single ul {
    padding: 10px 0;
}

.mega-menu.single ul li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    font-size: 13.5px;
    color: var(--gray-700);
    transition: var(--transition);
}

.mega-menu.single ul li a:hover {
    background: var(--gray-50);
    color: var(--red);
    padding-left: 26px;
}

.mega-menu.single ul li a i {
    width: 16px;
    font-size: 12px;
    color: var(--red);
}

/* Wide mega menu */
.mega-menu.wide {
    left: 0;
    transform: translateX(0) translateY(8px);
    min-width: 680px;
}

.nav-item:hover .mega-menu.wide {
    transform: translateX(0) translateY(0);
}

.mega-menu-inner {
    display: grid;
    gap: 0;
}

.mega-menu-inner.cols-3 {
    grid-template-columns: 1fr 1fr 1fr;
}

.mega-menu-inner.cols-2 {
    grid-template-columns: 1fr 1fr;
    min-width: 440px;
}

.mega-col {
    padding: 20px;
    border-right: 1px solid var(--gray-100);
}

.mega-col:last-child {
    border-right: none;
}

.mega-col-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray-500);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--gray-100);
}

.mega-col ul li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    font-size: 13px;
    color: var(--gray-700);
    border-radius: 4px;
    transition: var(--transition);
}

.mega-col ul li a:hover {
    background: rgba(200, 16, 46, 0.06);
    color: var(--red);
}

.mega-col ul li a i {
    width: 14px;
    font-size: 11px;
    color: var(--red);
}

.mega-featured {
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 180px;
    position: relative;
    overflow: hidden;
}

.mega-featured::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.mega-featured-label {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 6px;
}

.mega-featured-title {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
    line-height: 1.3;
}

.mega-featured-link {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
}

.mega-featured-link:hover {
    color: white;
}

/* NAV CTA */
.nav-cta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.nav-cta .btn {
    padding: 10px 20px;
    font-size: 13px;
}

/* HAMBURGER */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    cursor: pointer;
}

.hamburger span {
    display: block;
    height: 2px;
    background: var(--black);
    transition: var(--transition);
    border-radius: 2px;
}

.hamburger span:nth-child(1) {
    width: 24px;
}

.hamburger span:nth-child(2) {
    width: 18px;
}

.hamburger span:nth-child(3) {
    width: 24px;
}

.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
    width: 24px;
}

/* MOBILE MENU */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 320px;
    max-width: 100vw;
    background: var(--white);
    z-index: 2000;
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.4, 0, .2, 1);
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-menu-overlay.open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid var(--gray-200);
}

.mobile-close {
    font-size: 20px;
    color: var(--gray-500);
    padding: 4px;
}

.mobile-nav {
    padding: 16px;
}

.mobile-nav-item {
    border-bottom: 1px solid var(--gray-100);
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--black);
    cursor: pointer;
}

.mobile-nav-link i {
    font-size: 10px;
    transition: transform .2s;
}

.mobile-sub {
    display: none;
    padding: 0 0 10px 16px;
}

.mobile-sub.open {
    display: block;
}

.mobile-nav-item.open .mobile-nav-link i {
    transform: rotate(180deg);
}

.mobile-sub a {
    display: block;
    padding: 8px;
    font-size: 13px;
    color: var(--gray-700);
    border-radius: 4px;
    transition: var(--transition);
}

.mobile-sub a:hover {
    color: var(--red);
    background: var(--gray-50);
}

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

.mobile-nav-footer .btn {
    width: 100%;
    justify-content: center;
}

/* ============================================================
   BREADCRUMB
============================================================ */
.breadcrumb-bar {
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
    padding: 14px 0
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap
}

.breadcrumb a {
    font-size: 13px;
    color: var(--gray-500);
    transition: color .2s
}

.breadcrumb a:hover {
    color: var(--red)
}

.breadcrumb span {
    font-size: 13px;
    color: var(--gray-300)
}

.breadcrumb .current {
    font-size: 13px;
    font-weight: 600;
    color: var(--red)
}

/* ===========================
   HERO — SERVICE PAGE
=========================== */
.service-hero {
    position: relative;
    background: var(--black);
    overflow: hidden;
    padding: 100px 0 80px;
}

.sh-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 80% at 60% 50%, rgba(200, 16, 46, 0.16) 0%, transparent 65%),
        radial-gradient(ellipse 40% 40% at 5% 90%, rgba(200, 16, 46, 0.07) 0%, transparent 50%);
}

.sh-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 56px 56px;
}

/* diagonal accent line */
.sh-line {
    position: absolute;
    top: 0;
    right: 18%;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(200, 16, 46, 0.3), transparent);
}

.sh-line2 {
    position: absolute;
    top: 0;
    right: 32%;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.05), transparent);
}

.sh-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.sh-left {}

.sh-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(200, 16, 46, 0.15);
    border: 1px solid rgba(200, 16, 46, 0.3);
    color: #ff8090;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.sh-tag i {
    font-size: 10px;
}

.sh-title {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 5vw, 3.8rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 18px;
}

.sh-title em {
    color: var(--red);
    font-style: normal;
    display: block;
}

.sh-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 460px;
    line-height: 1.85;
    margin-bottom: 36px;
}

.sh-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.sh-quick-stats {
    display: flex;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    overflow: hidden;
}

.sh-qs {
    padding: 14px 22px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    flex: 1;
}

.sh-qs:last-child {
    border-right: none;
}

.sh-qs-num {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.sh-qs-num span {
    color: var(--red);
}

.sh-qs-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 2px;
}

/* Hero right — animated chart card */
.sh-right {
    position: relative;
}

.sh-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 14px;
    padding: 28px;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.45);
}

.sh-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.sh-card-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.sh-card-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(74, 222, 128, 0.12);
    color: #4ade80;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
}

.sh-card-badge span {
    width: 6px;
    height: 6px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

/* mini chart bars */
.mini-chart {
    display: flex;
    align-items: flex-end;
    gap: 5px;
    height: 80px;
    margin-bottom: 20px;
}

.mc-bar {
    flex: 1;
    background: rgba(200, 16, 46, 0.25);
    border-radius: 3px 3px 0 0;
    position: relative;
    transition: height .4s var(--ease);
    animation: growBar 1.2s var(--ease) both;
}

.mc-bar.hi {
    background: var(--red);
}

.mc-bar:nth-child(1) {
    animation-delay: .05s;
}

.mc-bar:nth-child(2) {
    animation-delay: .10s;
}

.mc-bar:nth-child(3) {
    animation-delay: .15s;
}

.mc-bar:nth-child(4) {
    animation-delay: .20s;
}

.mc-bar:nth-child(5) {
    animation-delay: .25s;
}

.mc-bar:nth-child(6) {
    animation-delay: .30s;
}

.mc-bar:nth-child(7) {
    animation-delay: .35s;
}

.mc-bar:nth-child(8) {
    animation-delay: .40s;
}

.mc-bar:nth-child(9) {
    animation-delay: .45s;
}

.mc-bar:nth-child(10) {
    animation-delay: .50s;
}

.mc-bar:nth-child(11) {
    animation-delay: .55s;
}

.mc-bar:nth-child(12) {
    animation-delay: .60s;
}

@keyframes growBar {
    from {
        transform: scaleY(0);
        transform-origin: bottom;
    }

    to {
        transform: scaleY(1);
    }
}

.sh-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.sh-metric {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 8px;
    padding: 14px 16px;
}

.sh-metric-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 4px;
}

.sh-metric-val {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
}

.sh-metric-val span {
    font-size: 12px;
    font-weight: 500;
    margin-left: 4px;
}

.sh-metric-val .up {
    color: #4ade80;
}

.sh-metric-val .dn {
    color: #f87171;
}

.sh-metric-val .neu {
    color: rgba(255, 255, 255, 0.5);
}

.sh-float {
    position: absolute;
    background: white;
    border-radius: 10px;
    padding: 14px 18px;
    box-shadow: var(--shadow-md);
    z-index: 3;
}

.sh-float.f1 {
    top: -20px;
    right: -20px;
}

.sh-float.f2 {
    bottom: -18px;
    left: -18px;
}

.sf-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gray-500);
    margin-bottom: 4px;
}

.sf-val {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--black);
    line-height: 1;
}

.sf-val span {
    color: var(--red);
    font-size: 13px;
}

.sf-sub {
    font-size: 11px;
    color: var(--gray-500);
    margin-top: 3px;
}

.sf-avatars {
    display: flex;
    align-items: center;
    gap: 0;
    margin-top: 8px;
}

.sf-av {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid white;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    color: white;
    margin-left: -8px;
}

.sf-av:first-child {
    margin-left: 0;
}

.sf-av-more {
    background: var(--gray-100);
    color: var(--gray-700);
    font-size: 9px;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1
    }

    50% {
        transform: scale(1.5);
        opacity: .5
    }
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: calc(100vh - 40px);
    background: var(--black);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
    radial-gradient(ellipse 80% 60% at 65% 50%, rgba(200, 16, 46, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(200, 16, 46, 0.08) 0%, transparent 50%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 80px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(200, 16, 46, 0.15);
    border: 1px solid rgba(200, 16, 46, 0.3);
    color: #ff6b7a;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 24px;
}

.hero-badge span {
    width: 6px;
    height: 6px;
    background: var(--red);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
    transform: scale(1);
    opacity: 1;
    }

    50% {
    transform: scale(1.5);
    opacity: 0.6;
    }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    font-weight: 900;
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 20px;
}

.hero-title em {
    color: var(--red);
    font-style: normal;
}

.hero-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.65);
    max-width: 480px;
    line-height: 1.8;
    margin-bottom: 36px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.hero-stat-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.12);
}

.hero-stat-num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.hero-stat-num span {
    color: var(--red);
}

.hero-stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 4px;
}

.hero-visual {
    position: relative;
}

.hero-card-main {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 12px;
    padding: 28px;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.4);
}

.hero-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.hero-card-title {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-card-badge {
    font-size: 11px;
    font-weight: 600;
    color: #4ade80;
    background: rgba(74, 222, 128, 0.1);
    padding: 3px 8px;
    border-radius: 4px;
}

.portfolio-rows {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.portfolio-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    transition: background .2s;
}

.portfolio-row:hover {
    background: rgba(255, 255, 255, 0.08);
}

.portfolio-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.portfolio-name {
    font-size: 13px;
    font-weight: 600;
    color: white;
}

.portfolio-cat {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
}

.portfolio-bar-wrap {
    flex: 1;
}

.portfolio-bar-bg {
    height: 4px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    overflow: hidden;
}

.portfolio-bar {
    height: 100%;
    border-radius: 2px;
}

.portfolio-pct {
    font-size: 12px;
    font-weight: 600;
    color: white;
    text-align: right;
    margin-top: 3px;
}

.hero-card-float {
    position: absolute;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    padding: 14px 18px;
}

.hero-card-float.f1 {
    top: -24px;
    right: -24px;
}

.hero-card-float.f2 {
    bottom: -20px;
    left: -20px;
}

.float-label {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.float-value {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: white;
    margin: 2px 0;
}

.float-value span {
    color: var(--red);
    font-size: 14px;
}

.float-sub {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
}

.hero-scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
}

.hero-scroll span {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

.scroll-dot {
    width: 28px;
    height: 44px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.scroll-dot-inner {
    width: 4px;
    height: 8px;
    background: var(--red);
    border-radius: 2px;
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0% {
    transform: translateY(0);
    opacity: 1;
    }

    100% {
    transform: translateY(12px);
    opacity: 0;
    }
}

/* ===== MARQUEE BAND ===== */
.marquee-band {
    background: var(--red);
    padding: 14px 0;
    overflow: hidden;
    position: relative;
}

.marquee-track {
    display: flex;
    gap: 0;
    white-space: nowrap;
    animation: marquee 25s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.5px;
    padding: 0 28px;
    white-space: nowrap;
}

.marquee-sep {
    color: rgba(255, 255, 255, 0.4);
}

@keyframes marquee {
    from {
    transform: translateX(0);
    }

    to {
    transform: translateX(-50%);
    }
}

/* ===== TRUST BAND ===== */
.trust-band {
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
    padding: 36px 0;
}

.trust-band .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.trust-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray-500);
    flex-shrink: 0;
}

.trust-divider {
    width: 1px;
    height: 40px;
    background: var(--gray-200);
}

.trust-logos {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.trust-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.5;
    transition: opacity .2s;
    cursor: default;
}

.trust-logo:hover {
    opacity: 0.8;
}

.trust-logo-icon {
    width: 32px;
    height: 32px;
    background: var(--black);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    font-weight: 700;
}

.trust-logo-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--black-2);
}

/* ===== SERVICES GRID ===== */
.services {
    background: var(--gray-50);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--gray-200);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    overflow: hidden;
}

.service-card {
    background: var(--white);
    padding: 32px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    group: true;
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--red);
    transform: scaleX(0);
    transition: transform .3s;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    background: var(--gray-50);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    z-index: 1;
}

.service-icon {
    width: 52px;
    height: 52px;
    background: rgba(200, 16, 46, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    font-size: 20px;
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--red);
    color: white;
    transform: scale(1.05);
}

.service-card h3 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--black);
}

.service-card p {
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.7;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--red);
    opacity: 0;
    transition: opacity .2s;
}

.service-card:hover .service-card-link {
    opacity: 1;
}

/* ===== WHY CHOOSE US ===== */
.why-us {
    background: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-visual {
    position: relative;
}

.why-bg-block {
    position: absolute;
    top: -16px;
    left: -16px;
    right: 16px;
    bottom: 16px;
    background: var(--gray-50);
    border-radius: 12px;
    border: 1px solid var(--gray-200);
}

.why-main-img {
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, var(--black) 0%, var(--black-2) 100%);
    border-radius: 12px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.why-stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
}

.why-stat {
    background: rgba(255, 255, 255, 0.04);
    padding: 20px;
    text-align: center;
}

.why-stat:hover {
    background: rgba(200, 16, 46, 0.15);
}

.why-stat-num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: white;
}

.why-stat-num span {
    color: var(--red);
}

.why-stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 4px;
}

.why-badge-float {
    position: absolute;
    z-index: 2;
    background: white;
    border-radius: 10px;
    padding: 14px 18px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
}

.why-badge-float.f1 {
    bottom: -20px;
    right: -20px;
}

.why-badge-float.f2 {
    top: -20px;
    right: 40px;
}

.why-badge-inner {
    display: flex;
    align-items: center;
    gap: 10px;
}

.why-badge-icon {
    width: 36px;
    height: 36px;
    background: rgba(200, 16, 46, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
}

.why-badge-num {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--black);
}

.why-badge-label {
    font-size: 11px;
    color: var(--gray-500);
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 36px;
}

.why-feature {
    display: flex;
    gap: 16px;
    padding: 20px;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    transition: var(--transition);
    cursor: default;
}

.why-feature:hover {
    border-color: var(--red);
    box-shadow: var(--shadow-sm);
}

.why-feature-icon {
    width: 44px;
    height: 44px;
    background: rgba(200, 16, 46, 0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    font-size: 16px;
    flex-shrink: 0;
    transition: var(--transition);
}

.why-feature:hover .why-feature-icon {
    background: var(--red);
    color: white;
}

.why-feature h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
}

.why-feature p {
    font-size: 13px;
    color: var(--gray-500);
}

/* ===== PROCESS ===== */
.process {
    background: var(--black);
}

.process .section-title {
    color: white;
}

.process .section-sub {
    color: rgba(255, 255, 255, 0.5);
}

.process .section-label {
    color: var(--red);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    position: relative;
    margin-top: 16px;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.process-step {
    padding: 0 16px;
    text-align: center;
    position: relative;
}

.process-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.3);
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.process-step.active .process-num,
.process-step:hover .process-num {
    background: var(--red);
    border-color: var(--red);
    color: white;
    box-shadow: 0 0 0 8px rgba(200, 16, 46, 0.15);
}

.process-step h4 {
    font-size: 14px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.process-step p {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.7;
}

/* ===== CALCULATORS ===== */
.calculators {
    background: var(--gray-50);
}

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

.calc-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    padding: 28px;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.calc-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(200, 16, 46, 0.03), transparent);
    opacity: 0;
    transition: opacity .3s;
}

.calc-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--red);
}

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

.calc-icon {
    font-size: 28px;
    margin-bottom: 16px;
}

.calc-card h3 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--black);
}

.calc-card p {
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.6;
}

.calc-card-link {
    margin-top: 16px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--red);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    background: var(--white);
}

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

.testimonial-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    padding: 28px;
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: var(--red);
    box-shadow: var(--shadow-md);
}

.testimonial-stars {
    color: var(--red);
    font-size: 13px;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 14px;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.testimonial-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--black);
}

.testimonial-role {
    font-size: 12px;
    color: var(--gray-500);
}

/* ===== INSIGHTS ===== */
.insights {
    background: var(--gray-50);
}

.insights-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
}

.insight-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.insight-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.insight-img {
    height: 180px;
    position: relative;
    overflow: hidden;
}

.insight-img-bg {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    transition: transform .4s;
}

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

.insight-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--red);
    color: white;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
}

.insight-body {
    padding: 20px;
}

.insight-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.insight-date {
    font-size: 12px;
    color: var(--gray-500);
}

.insight-min {
    font-size: 12px;
    color: var(--gray-500);
}

.insight-title {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 10px;
    color: var(--black);
}

.insight-title:hover {
    color: var(--red);
}

.insight-excerpt {
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.7;
}

/* ===== SEBI BANNER ===== */
.sebi-band {
    background: linear-gradient(135deg, var(--black) 0%, #1a0a0d 100%);
    padding: 36px 0;
    border-top: 3px solid var(--red);
}

.sebi-band .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.sebi-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.sebi-icon {
    width: 52px;
    height: 52px;
    background: rgba(200, 16, 46, 0.15);
    border: 1px solid rgba(200, 16, 46, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    font-size: 20px;
    flex-shrink: 0;
}

.sebi-text h3 {
    font-size: 16px;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
}

.sebi-text p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.sebi-reg {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.sebi-reg-num {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

.sebi-reg-val {
    font-size: 14px;
    font-weight: 700;
    color: white;
    letter-spacing: 1px;
}

/* ===== IMPOSTER WARNING ===== */
.imposter {
    background: linear-gradient(135deg, #fff8f8 0%, #fff 100%);
    border-top: 4px solid var(--red);
    border-bottom: 1px solid rgba(200, 16, 46, 0.1);
    padding: 40px 0;
}

.imposter .container {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

.imposter-icon {
    font-size: 40px;
    flex-shrink: 0;
}

.imposter-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--red);
    margin-bottom: 6px;
}

.imposter-content p {
    font-size: 14px;
    color: var(--gray-700);
    max-width: 640px;
    line-height: 1.7;
}

.imposter-cta {
    margin-left: auto;
    flex-shrink: 0;
}

/* ===== PRICING ===== */
.pricing {
    background: var(--white);
}

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

.pricing-card {
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
}

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

.pricing-card.popular {
    border: 2px solid var(--red);
    transform: scale(1.02);
}

.pricing-card.popular:hover {
    transform: scale(1.02) translateY(-6px);
}

.pricing-header {
    padding: 28px;
    border-bottom: 1px solid var(--gray-100);
}

.pricing-card.popular .pricing-header {
    background: var(--red);
    color: white;
}

.popular-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 100px;
    margin-bottom: 12px;
}

.pricing-plan {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray-500);
    margin-bottom: 8px;
}

.pricing-card.popular .pricing-plan {
    color: rgba(255, 255, 255, 0.7);
}

.pricing-name {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--black);
}

.pricing-card.popular .pricing-name {
    color: white;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.pricing-currency {
    font-size: 18px;
    font-weight: 600;
    color: var(--black);
}

.pricing-amount {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    color: var(--black);
    line-height: 1;
}

.pricing-period {
    font-size: 13px;
    color: var(--gray-500);
}

.pricing-card.popular .pricing-currency,
.pricing-card.popular .pricing-amount,
.pricing-card.popular .pricing-period {
    color: white;
}

.pricing-card.popular .pricing-period {
    color: rgba(255, 255, 255, 0.7);
}

.pricing-body {
    padding: 28px;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    color: var(--gray-700);
}

.pricing-feature i {
    font-size: 12px;
    color: var(--red);
    width: 16px;
}

.pricing-feature.off {
    opacity: 0.35;
    text-decoration: line-through;
}

.pricing-feature.off i {
    color: var(--gray-300);
}

.pricing-cta {
    width: 100%;
    justify-content: center;
}

/* ===== CONTACT ===== */
.contact {
    background: var(--gray-50);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 64px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(200, 16, 46, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    font-size: 18px;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
}

.contact-item p {
    font-size: 13.5px;
    color: var(--gray-500);
    line-height: 1.6;
}

.contact-form {
    background: var(--white);
    border-radius: 12px;
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

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

.form-group.full {
    grid-column: 1 / -1;
}

.form-label {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--black-2);
}

.form-input {
    padding: 12px 16px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 14px;
    font-family: inherit;
    color: var(--black);
    background: var(--white);
    transition: var(--transition);
    outline: none;
}

.form-input:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.08);
}

.form-input::placeholder {
    color: var(--gray-300);
}

textarea.form-input {
    resize: vertical;
    min-height: 120px;
}

.form-select {
    padding: 12px 16px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 14px;
    font-family: inherit;
    color: var(--black);
    background: var(--white);
    cursor: pointer;
    outline: none;
    transition: var(--transition);
}

.form-select:focus {
    border-color: var(--red);
}

/* ===========================
        FAQ
        =========================== */
.faq-section {
    background: var(--gray-50);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.faq-intro {
    position: sticky;
    top: calc(var(--nav-h) + 24px);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid var(--gray-200);
}

.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 20px 4px;
    cursor: pointer;
    transition: color .2s;
}

.faq-q:hover {
    color: var(--red);
}

.faq-q span {
    font-size: 15px;
    font-weight: 600;
}

.faq-q i {
    font-size: 12px;
    color: var(--red);
    transition: transform .3s;
    flex-shrink: 0;
}

.faq-item.open .faq-q i {
    transform: rotate(45deg);
}

.faq-a {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.8;
    padding: 0 4px 20px;
    display: none;
}

.faq-item.open .faq-a {
    display: block;
}

/* ===========================
        CTA BAND
        =========================== */
.cta-band {
    background: linear-gradient(135deg, var(--black) 0%, #1a0608 50%, var(--black) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(200, 16, 46, 0.2);
}

.cta-band::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(200, 16, 46, 0.12), transparent 65%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-content .section-label {
    justify-content: center;
    display: flex;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: white;
    margin-bottom: 16px;
}

.cta-title span {
    color: var(--red);
}

.cta-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 36px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 36px;
}

.ct-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.45);
    font-size: 13px;
}

.ct-item i {
    color: var(--red);
}

/* ============================================================
   RELATED SERVICES
============================================================ */
.related {
    background: var(--white)
}

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

.rel-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    padding: 24px;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden
}

.rel-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--red);
    transform: scaleX(0);
    transition: transform .25s
}

.rel-card:hover::before {
    transform: scaleX(1)
}

.rel-card:hover {
    border-color: var(--red);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px)
}

.rc-icon {
    width: 44px;
    height: 44px;
    background: rgba(200, 16, 46, .08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    font-size: 18px;
    margin-bottom: 14px;
    transition: var(--transition)
}

.rel-card:hover .rc-icon {
    background: var(--red);
    color: white
}

.rel-card h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 6px
}

.rel-card p {
    font-size: 12.5px;
    color: var(--gray-500);
    line-height: 1.65
}

.rc-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 12px;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--red);
    opacity: 0;
    transition: opacity .2s
}

.rel-card:hover .rc-link {
    opacity: 1
}

/* ===== FOOTER ===== */
.footer {
    background: var(--black);
    color: var(--white);
}

.footer-top {
    padding: 72px 0 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 48px;
}

.footer-brand {}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-desc {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.8;
    margin-bottom: 24px;
    max-width: 280px;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-social {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    transition: var(--transition);
}

.footer-social:hover {
    background: var(--red);
    border-color: var(--red);
    color: white;
    transform: translateY(-2px);
}

.footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
}

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

.footer-col ul li a {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.5);
    transition: color .2s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-col ul li a:hover {
    color: var(--red);
}

.footer-col ul li a::before {
    content: '›';
    font-size: 12px;
    color: var(--red);
}

.footer-mid {
    padding: 36px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-sebi {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    padding: 20px 24px;
}

.footer-sebi p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.8;
}

.footer-sebi strong {
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom {
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-copy {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.3);
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.3);
    transition: color .2s;
}

.footer-links a:hover {
    color: var(--red);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 500;
    width: 44px;
    height: 44px;
    background: var(--red);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: var(--shadow-red);
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
    cursor: pointer;
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--red-dark);
    transform: translateY(-3px);
}

/* ===== SECTION DIVIDERS ===== */
.divider {
    height: 1px;
    background: var(--gray-200);
}

/* ===== DARK SECTION OVERRIDES ===== */
.bg-dark {
    background: var(--black);
}

.bg-dark .section-title {
    color: white;
}

.bg-dark .section-sub {
    color: rgba(255, 255, 255, 0.5);
}

/* ===== AOS OVERRIDES ===== */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
    .nav-links {
    gap: 0;
    }

    .nav-link {
    padding: 0 10px;
    font-size: 13px;
    }

    .services-grid {
    grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
    }
}

@media (max-width: 900px) {

    .nav-links,
    .nav-cta {
    display: none;
    }

    .hamburger {
    display: flex;
    }

    .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    }

    .hero-visual {
    display: none;
    }

    .why-grid {
    grid-template-columns: 1fr;
    }

    .process-steps {
    grid-template-columns: repeat(3, 1fr);
    }

    .process-steps::before {
    display: none;
    }

    .pricing-grid {
    grid-template-columns: 1fr;
    }

    .pricing-card.popular {
    transform: none;
    }

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

    .services-grid {
    grid-template-columns: repeat(2, 1fr);
    }

    .calc-grid {
    grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
    grid-template-columns: 1fr 1fr;
    }

    .insights-grid {
    grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    :root {
    --nav-h: 64px;
    }

    .section {
    padding: 64px 0;
    }

    .services-grid {
    grid-template-columns: 1fr;
    }

    .calc-grid {
    grid-template-columns: 1fr;
    }

    .testimonials-grid {
    grid-template-columns: 1fr;
    }

    .insights-grid {
    grid-template-columns: 1fr;
    }

    .process-steps {
    grid-template-columns: 1fr 1fr;
    }

    .hero-stats {
    gap: 20px;
    }

    .hero-stat-divider {
    display: none;
    }

    .form-grid {
    grid-template-columns: 1fr;
    }

    .topbar {
    display: none;
    }

    .footer-grid {
    grid-template-columns: 1fr 1fr;
    }

    .footer-bottom {
    flex-direction: column;
    text-align: center;
    }

    .imposter .container {
    flex-direction: column;
    }

    .imposter-cta {
    margin-left: 0;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
    opacity: 0;
    transform: translateY(24px);
    }

    to {
    opacity: 1;
    transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
    opacity: 0;
    }

    to {
    opacity: 1;
    }
}

.hero-badge {
    animation: fadeInUp .6s ease both;
}

.hero-title {
    animation: fadeInUp .7s .1s ease both;
}

.hero-desc {
    animation: fadeInUp .7s .2s ease both;
}

.hero-actions {
    animation: fadeInUp .7s .3s ease both;
}

.hero-stats {
    animation: fadeInUp .7s .4s ease both;
}