/* Mitchy Webflow Clone CSS - Light/Qatar Theme */

:root {
    --bg-dark: #ffffff;
    --bg-card: #f9f9fa;
    --bg-card-hover: #ffffff;
    --text-main: #111111;
    --text-muted: #5e6472;
    --accent: #800000;
    /* Qatar Maroon */
    --accent-glow: rgba(128, 0, 0, 0.15);
    /* Soft maroon glow */
    --gold: #c6a87c;
    --border-color: rgba(0, 0, 0, 0.08);
    --border-hover: rgba(0, 0, 0, 0.15);

    --font-heading: 'Inter', sans-serif;
    --container-max: 1250px;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);

    --ml-bg: #f7f5f1;
    --ml-bg2: #ffffff;
    --ml-border: #e8e3d8;
    --ml-accent: #800000;
    --ml-accent2: #5c0000;
    --ml-gold: #b8904e;
    --ml-gold-lt: #faf3e6;
    --ml-red-lt: #fdf4f4;
    --ml-text: #18130e;
    --ml-muted: #6a6058;
    --font-d: 'Syne', sans-serif;
    --font-b: 'Inter', sans-serif;
    --r-card: 24px;
    --r-pill: 100px;

    --font-primary: 'Inter', sans-serif;
    --font-display: 'Syne', sans-serif;
}

/* Alternate markup styles for whatsapp widget used in _Layout.cshtml */
.whatsapp-widget {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 3001;
}

.whatsapp-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border: none;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.24);
    cursor: pointer;
    position: relative;
}

.whatsapp-button i { font-size: 1.4rem; }

.whatsapp-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    left: 0; top: 0;
    box-shadow: 0 0 0 rgba(37,211,102,0.6);
    animation: whatsappPulse 1.8s infinite;
    opacity: 0.65;
    pointer-events: none; /* allow clicks to reach the button */
}

@keyframes whatsappPulse {
    0% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(37,211,102,0.45); }
    70% { transform: scale(1.35); box-shadow: 0 0 0 14px rgba(37,211,102,0); }
    100% { transform: scale(1.35); box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

.whatsapp-chat {
    position: fixed;
    right: 20px;
    bottom: 90px;
    width: 340px;
    max-width: calc(100% - 40px);
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
    z-index: 3001;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    transform: translateY(10px) scale(0.98);
    opacity: 0;
    pointer-events: none;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.whatsapp-chat.active {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: auto;
}

.whatsapp-header {
    padding: 12px 16px;
    background: linear-gradient(90deg, #25D366 0%, #128C7E 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.whatsapp-header strong { font-weight: 700; }

.whatsapp-close {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
}

.whatsapp-body { padding: 16px; background: #fbfbfb; }
.whatsapp-body p { margin-bottom: 8px; }
.whatsapp-body textarea {
    width: 100%;
    min-height: 90px;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    resize: vertical;
}

.whatsapp-actions { padding: 12px; display: flex; justify-content: flex-end; gap: 8px; }

@media (max-width: 576px) {
    .whatsapp-widget { right: 12px; bottom: 12px; }
    .whatsapp-chat { right: 12px; left: 12px; bottom: 76px; width: auto; }
}

body {
    font-family: var(--font-primary);
}

html {
    scroll-behavior: smooth;
    overflow-x: clip;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-heading);
    line-height: 1.6;
    overflow-x: clip;
    cursor: none;
    /* For custom cursor */
}

img,
video,
iframe {
    max-width: 100%;
}

/* Custom Cursor */
.cursor-dot,
.cursor-ring {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background-color: var(--accent);
}

.cursor-ring {
    width: 30px;
    height: 30px;
    border: 1px solid rgba(128, 0, 0, 0.5);
    transition: transform 0.2s, border-color 0.2s;
}

/* Layout Utilities */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

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

.mt-5 {
    margin-top: 3rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.py-large {
    padding: 8rem 0;
}

.pt-5 {
    padding-top: 4rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.border-top {
    border-top: 1px solid var(--border-color);
}

.space-between {
    display: flex;
    justify-content: space-between;
}

.align-center {
    display: flex;
    align-items: center;
}

.align-end {
    display: flex;
    align-items: flex-end;
}

.w-100 {
    width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.1;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.section-desc {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 100%;
}

/* Background Gradients & Patterns */
.bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    pointer-events: none;
}

.pattern-1 {
    width: 600px;
    height: 600px;
    background: var(--accent-glow);
    top: -100px;
    right: -200px;
}

.pattern-2 {
    width: 800px;
    height: 800px;
    background: rgba(198, 168, 124, 0.2);
    /* goldish glow */
    top: 20%;
    left: -300px;
}

.pattern-3 {
    width: 500px;
    height: 500px;
    background: var(--accent-glow);
    bottom: -100px;
    right: 10%;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 100px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.05rem;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(128, 0, 0, 0.2);
    background: #6a0000;
}

.btn-outline {
    background: transparent;
    border-color: var(--accent);
    color: var(--accent);
}

.btn-outline:hover {
    background: rgba(128, 0, 0, 0.05);
}

.btn-text {
    padding: 12px;
    color: var(--accent);
}

.btn-glow {
    background: linear-gradient(135deg, var(--accent) 0%, #4a0000 100%);
    color: white;
    border: none;
    box-shadow: 0 0 20px var(--accent-glow);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 24px 0;
    transition: var(--transition-smooth);
    /* Initially transparent with white text for dark hero */
}

.navbar .nav-links a {
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.3s ease;
}

.navbar .nav-links a:hover,
.navbar .nav-links a.active {
    color: #fff;
}

.navbar.scrolled {
    padding: 16px 0;
    background: transparent;
    backdrop-filter: none;
    border-bottom: none;
}

.navbar.scrolled .nav-links a {
    color: var(--text-muted);
}

.navbar.scrolled .nav-links a:hover,
.navbar.scrolled .nav-links a.active {
    color: var(--accent);
}

.navbar.scrolled .menu-toggle {
    color: var(--text-main);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 16px;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -1px;
    color: var(--accent);
    flex-shrink: 0;
}

body:not(.ml-page) .nav-brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 90px;
    min-width: 74px;
    min-height: 74px;
    padding: 5px 7px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, .28), rgba(248, 246, 242, .50));
    border: 1px solid rgba(255, 255, 255, .22);
    box-shadow:
        0 10px 24px rgba(0, 0, 0, .08),
        inset 0 1px 0 rgba(255, 255, 255, .28);
    backdrop-filter: blur(8px);
}

body:not(.ml-page) .nav-brand img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

body:not(.ml-page) .navbar.scrolled .nav-brand {
    background: linear-gradient(135deg, rgba(255, 255, 255, .42), rgba(250, 248, 244, .3));
}

.nav-links {
    display: flex;
    gap: 32px;
    background: rgba(255, 255, 255, 0.08);
    padding: 12px 32px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    transition: var(--transition-smooth);
    min-width: 0;
}

.navbar.scrolled .nav-links {
    /*    background: rgba(0, 0, 0, 0.03);*/
    background: rgb(255 255 255);
    border-color: var(--border-color);
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent);
}

.nav-actions {
    display: flex;
    gap: 16px;
}

.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-main);
    font-size: 1.5rem;
    cursor: pointer;
    position: relative;
    z-index: 1001;
    flex-shrink: 0;
}

/* ===== FRAME-BASED HERO SECTION ===== */
.frame-hero {
    position: relative;
    height: 500vh;
    /* Tall for scroll animation */
    background: #ca6b8c;
    background-image:src(../img/frames/ezgif-frame-001.jpg);
}

.frame-hero-sticky {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

#frame-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.frame-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.3) 0%,
            rgba(0, 0, 0, 0.15) 40%,
            rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
    pointer-events: none;
}

/* Persistent Title */
.frame-hero-title {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
    width: min(760px, calc(100vw - 32px));
    text-align: center;
    pointer-events: none;
}

.frame-hero-title h1 {
    font-size: clamp(3rem, 8vw, 3rem);
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.03em;
    line-height: 1;
    text-shadow: 0 4px 40px rgba(0, 0, 0, 0.4);
    margin-bottom: 16px;
}

.frame-hero-title p {
    font-size: clamp(1rem, 2vw, 1rem);
    max-width: 100%;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 400;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

/* Service Text Overlays */
.frame-service-text {
    position: absolute;
    bottom: 10%;
    left: 6%;
    z-index: 5;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    pointer-events: none;
    width: min(650px, calc(100vw - 48px));
    max-width: calc(100vw - 48px);
}

.frame-service-text.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.fs-badge {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.fs-title {
    font-size: clamp(2.8rem, 6vw, 3rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.fs-title span {
    background: linear-gradient(135deg, var(--gold) 0%, #e8c88a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.fs-desc {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    max-width: 100%;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Scroll Indicator */
.frame-scroll-indicator {
    position: absolute;
    bottom: 30px;
    right: 40px;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.7;
    transition: opacity 0.4s;
}

.frame-scroll-indicator span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    writing-mode: vertical-rl;
}

.frame-scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.6));
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.3;
        transform: scaleY(0.6);
    }

    50% {
        opacity: 1;
        transform: scaleY(1);
    }
}
/* WhatsApp Floating Button & Chat Panel */
.whatsapp-fab {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.24);
    z-index: 3000;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.whatsapp-fab:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(37, 211, 102, 0.28);
}

.whatsapp-fab i {
    font-size: 1.4rem;
    line-height: 1;
}

.whatsapp-panel {
    position: fixed;
    right: 20px;
    bottom: 90px;
    width: 340px;
    max-width: calc(100% - 40px);
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
    z-index: 3000;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    transform: translateY(10px) scale(0.98);
    opacity: 0;
    pointer-events: none;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.whatsapp-panel.active {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: auto;
}

.whatsapp-panel .wp-header {
    padding: 12px 16px;
    background: linear-gradient(90deg, #25D366 0%, #128C7E 100%);
    color: #fff;
    display: flex;
    align-items: center;
    gap: 12px;
}

.wp-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wp-title {
    font-weight: 700;
    font-size: 1rem;
}

.wp-sub {
    font-size: 0.85rem;
    opacity: 0.95;
}

.wp-messages {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 320px;
    overflow: auto;
    background: #fbfbfb;
}

.wp-msg {
    max-width: 78%;
    padding: 10px 14px;
    border-radius: 16px;
    line-height: 1.3;
}

.wp-msg.other {
    background: #fff;
    border: 1px solid var(--border-color);
    align-self: flex-start;
    color: var(--text-main);
}

.wp-msg.me {
    background: linear-gradient(90deg, #25D366 0%, #128C7E 100%);
    color: #fff;
    align-self: flex-end;
}

.wp-input {
    display: flex;
    gap: 8px;
    padding: 12px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    background: #fff;
}

.wp-input input {
    flex: 1;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    outline: none;
    font-size: 0.95rem;
}

.wp-input .btn-send {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
    padding: 10px 14px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    font-weight: 700;
}

@media (max-width: 576px) {
    .whatsapp-fab {
        right: 14px;
        bottom: 14px;
        width: 56px;
        height: 56px;
    }

    .whatsapp-panel {
        right: 12px;
        left: 12px;
        bottom: 76px;
        width: auto;
        max-width: none;
    }
}

/* Progress Bar */
.frame-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 10;
}

.frame-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--accent) 0%, var(--gold) 100%);
    transition: width 0.1s linear;
}

/* Responsive */
@media (max-width: 768px) {
    .frame-service-text {
        bottom: 10%;
        left: 5%;
        right: 5%;
    }

    .fs-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .fs-desc {
        font-size: 1rem;
    }

    .frame-scroll-indicator {
        right: 20px;
        bottom: 20px;
    }
}

/* Hero Section & About Intro Section */
.hero-section,
.about-intro-section {
    position: relative;
    padding: 100px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-image: url('https://images.unsplash.com/photo-1700901742651-6b353164caf3?q=80&w=1170&auto=format&fit=crop');
    /* Doha Skyline Background */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}


.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.88);
    /* Light overlay to make text readable */
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 3;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 3;
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(128, 0, 0, 0.05);
    border: 1px solid rgba(128, 0, 0, 0.1);
    color: var(--accent);
    border-radius: 100px;
    font-size: 0.85rem;
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 600;
    letter-spacing: -0.04em;
    margin-bottom: 24px;
    line-height: 1.1;
    color: var(--text-main);
}

/* ===== ULTRA HERO ANIMATION ===== */

.hero-title,
.sliding-text-wrapper {
    will-change: transform, opacity;
    transform-origin: center center;
}

.hero-section {
    overflow: hidden;
}

.sliding-text-wrapper {
    display: block;
    text-align: center;
    height: 1.8em; /* increased height to accommodate larger text */
    overflow: hidden;
    margin: 0 auto 24px;
}

.sliding-text {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-block;
    animation: slideUp 6s cubic-bezier(0.87, 0, 0.13, 1) infinite;
}

.sliding-text li {
    height: 1.8em; /* match wrapper height */
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to right, var(--gold), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    white-space: nowrap;
    font-size: clamp(1.125rem, 3vw, 1.5rem); /* larger responsive font */
}

@keyframes slideUp {

    0%,
    20% {
        transform: translateY(0);
    }

    33%,
    53% {
        transform: translateY(-1.8em);
    }

    66%,
    86% {
        transform: translateY(-3.6em);
    }

    100% {
        transform: translateY(-5.4em);
    }
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.5;
}

.hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.hero-visual {
    margin-top: 80px;
    position: relative;
    z-index: 3;
}

.video-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 16/7;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.video-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s;
}

.video-container:hover img {
    transform: scale(1.05);
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    color: var(--accent);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.play-btn:hover {
    background: var(--accent);
    color: #fff;
    transform: translate(-50%, -50%) scale(1.1);
}

.floating-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    padding: 12px 24px;
    border-radius: 100px;
    font-size: 0.9rem;
    color: var(--accent);
    font-weight: 500;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.badge-1 {
    top: 10%;
    left: 5%;
    animation: float 6s ease-in-out infinite;
}

.badge-2 {
    bottom: 10%;
    right: 5%;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* About Us Section (New Complex Design) */
.about-section {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    color: var(--text-main);
    /* text-transform: uppercase; */
    /* font-weight: 800; */
}

.about-header {
    margin-bottom: 70px;
}

.about-subtitle {
    color: var(--accent);
    font-size: 1.1rem;
    font-weight: 600;
    display: block;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.about-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    color: var(--text-main);
    text-transform: uppercase;
    font-weight: 800;
}

/* About Grid Layout */
.about-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 40px;
}

.about-left {
    position: relative;
    width: 100%;
}

.about-main-img {
    width: 100%;
    height: 100%;
    min-height: 450px;
    object-fit: cover;
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

/* Add curve cut on image */
/* .about-left::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 130px;
    height: 133px;
    background: #f2f2f2;
    border-top-right-radius: 60px;
} */


/* ===== CURVED BOTTOM SHAPE FOR ABOUT US ===== */
.about-bottom {
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 20%;
    height: 18%;
    padding: 25px 20px;
    background: #f0f0f0;
    border-top-right-radius: 74px;
}

/* Curve cut effect */
.about-bottom::before {
    content: "";
    position: absolute;
    top: -50px;
    left: 0;
    width: 100px;
    height: 50px;
    background: transparent;
    border-bottom-left-radius: 30px;
    box-shadow: -20px 20px 0 #f0f0f0;
}

/* Curve cut effect */
.about-bottom::after {
    content: "";
    position: absolute;
    top: 62% 80.4688px;
    left: 100%;
    width: 100px;
    height: 50px;
    background: transparent;
    border-bottom-left-radius: 35px;
    box-shadow: -20px 20px 0 #f0f0f0;
}

/* Badge Component */
.badge-cutout-container {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 140px;
    height: 140px;
    background: #fcfcfc;
    /* Matches bg-light */
    border-radius: 50%;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-cutout-white {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.rotating-svg {
    width: 100%;
    height: 100%;
    animation: rotate 15s linear infinite;
    position: absolute;
    top: 0;
    left: 0;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.badge-center-icon {
    width: 50px;
    height: 50px;
    background: var(--accent);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 2;
    box-shadow: 0 10px 20px rgba(128, 0, 0, 0.2);
}

/* Right Column */
.about-right {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.story-card {
    background: #f4f5f7;
    border-radius: 40px;
    padding: 70px 40px 40px 40px;
    position: relative;
    flex: 0.8;
}

.story-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-top: 30px;
}

.story-tab {
    position: absolute;
    top: -1px;
    left: -1px;
    background: #fcfcfc;
    padding: 20px 40px 20px 0;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--text-main);
    border-bottom-right-radius: 40px;
}

.story-tab::before {
    content: '';
    position: absolute;
    top: 0;
    right: -39px;
    width: 40px;
    height: 40px;
    background: transparent;
    border-top-left-radius: 40px;
    box-shadow: -15px -15px 0 0 #fcfcfc;
}

.story-tab::after {
    content: '';
    position: absolute;
    bottom: -39px;
    left: 0;
    width: 40px;
    height: 40px;
    background: transparent;
    border-top-left-radius: 40px;
    box-shadow: -15px -15px 0 0 #fcfcfc;
}

.about-right-img {
    flex: 1.2;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.about-right-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Stats Row */
.about-stats-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 100px;
    padding: 0 20px;
}

.stat-item {
    text-align: center;
    max-width: 220px;
}

/* ===== PREMIUM STATS ===== */

.premium-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Card */
.stat-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 30px 25px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Glow hover */
.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(128, 0, 0, 0.1);
    border-color: rgba(128, 0, 0, 0.2);
}

/* Icon */
.stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: rgba(128, 0, 0, 0.08);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

/* Number */
.stat-card .stat-number {
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 8px;
}

/* Title */
.stat-card h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

/* Description */
.stat-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Subtle background animation */
.stat-card::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--accent-glow), transparent);
    top: -50%;
    left: -50%;
    opacity: 0;
    transition: 0.4s;
}

.stat-card:hover::before {
    opacity: 1;
}

/* Responsive */
@media (max-width: 992px) {
    .premium-stats {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .premium-stats {
        grid-template-columns: 1fr;
    }
}

.stat-number {
    font-size: clamp(3.5rem, 6vw, 5.5rem);
    font-weight: 300;
    color: var(--text-main);
    line-height: 1;
    font-family: var(--font-heading);
    letter-spacing: -2px;
}

.stat-plus {
    color: var(--accent);
    font-size: clamp(2rem, 3.5vw, 3rem);
    vertical-align: super;
    margin-left: 5px;
    font-weight: 400;
}

/* Services Carousel Section */
.services-carousel-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.bg-light {
    background-color: #fcfcfc;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.badge-gold {
    border-color: rgba(198, 168, 124, 0.4) !important;
    color: var(--gold) !important;
}

.swiper-nav-buttons {
    display: flex;
    gap: 16px;
}

.swiper-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-size: 1.2rem;
}

.swiper-btn:hover {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(198, 168, 124, 0.3);
}

.service-card-main {
    background: #ffffff;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
    transition: var(--transition-smooth);
    height: 100%;
}

.service-card-main:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(198, 168, 124, 0.1);
    border-color: rgba(198, 168, 124, 0.3);
}

.service-img {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.service-card:hover .service-img img {
    transform: scale(1.05);
}

.service-content {
    padding: 32px;
}

.service-content h3 {
    font-size: 1.8rem;
    color: var(--text-main);
    margin-bottom: 16px;
    font-weight: 700;
}

.service-content p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold);
    border-bottom: 1px solid var(--gold);
    padding-bottom: 4px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.link-arrow:hover {
    gap: 15px;
    color: var(--accent);
    border-color: var(--accent);
}

/* Responsive Service Row */
@media (max-width: 992px) {

    .service-row,
    .service-row.reverse {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 100px;
    }

    .service-content {
        padding: 0;
        text-align: center;
    }
}

/* Testimonials Marquee Section */
.testimonials-marquee-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background: #fdfdfd;
}

.marquee-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 50px auto 0;
    overflow: hidden;
    padding-bottom: 20px;
}

/* Faded Edges */
.marquee-wrapper::before,
.marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #fdfdfd, transparent);
}

.marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #fdfdfd, transparent);
}

.marquee-track-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.marquee-track {
    display: flex;
    width: fit-content;
}

.marquee-content {
    display: flex;
    gap: 32px;
    padding-right: 32px;
}

.marquee-left .marquee-content {
    animation: scrollLeft 40s linear infinite;
}

.marquee-right .marquee-content {
    animation: scrollRight 40s linear infinite;
}

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

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

@keyframes scrollRight {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(0);
    }
}

.testimonial-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 30px;
    padding: 40px;
    width: 420px;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: box-shadow 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.testi-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.testi-header img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testi-meta h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 2px;
}

.testi-meta p {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
}

.testi-quote {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
}

.testi-stars {
    color: var(--text-main);
    opacity: 0.8;
}

.testi-stars i {
    font-size: 0.9rem;
    margin-right: 6px;
}

/* Team Section */
.team-section {
    position: relative;
    padding: 120px 0;
    background: #fdfdfd;
}

.badge-tag {
    display: inline-block;
    padding: 6px 16px;
    background: #fff;
    border: 1px solid rgba(128, 0, 0, 0.2);
    border-radius: 100px;
    color: var(--accent);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

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

.team-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: var(--transition-smooth);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(128, 0, 0, 0.1);
    border-color: rgba(128, 0, 0, 0.2);
}

.team-card img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    filter: sepia(0.2) grayscale(0.2);
    /* mild vintage/warm filter */
    transition: filter 0.5s;
}

.team-card:hover img {
    filter: sepia(0) grayscale(0);
}

.team-info {
    padding: 24px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
    padding-top: 80px;
    transition: opacity 0.3s ease;
}

.team-card:hover .team-info {
    opacity: 0;
}

.team-info h4 {
    font-size: 1.5rem;
    margin-bottom: 4px;
    color: var(--text-main);
}

.team-info p {
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Team Hover Overlay */
.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(128, 0, 0, 0.9);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 5;
}

.overlay-content {
    text-align: center;
    transform: translateY(20px);
    transition: all 0.4s ease;
    padding: 30px;
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.team-card:hover .overlay-content {
    transform: translateY(0);
}

.overlay-content h4 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 4px;
}

.overlay-role {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.team-social-links {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.team-social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.team-social-links a:hover {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold);
    transform: translateY(-3px);
}

/* FAQ section updates */
.faq-section {
    padding: 100px 0;
}

.benefit-list {
    list-style: none;
    margin-top: 32px;
}

.benefit-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-muted);
    padding: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
}

.benefit-list li i {
    color: #fff;
    background: var(--accent);
    padding: 8px;
    border-radius: 50%;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
}

.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 0;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.faq-header h4 {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-main);
    transition: color 0.3s;
}

.faq-header i {
    font-size: 1.2rem;
    color: var(--gold);
    transition: transform 0.4s ease, color 0.3s;
}

.faq-item:hover .faq-header h4 {
    color: var(--accent);
}

.faq-item.active .faq-header h4 {
    color: var(--gold);
}

.faq-item.active .faq-header i {
    transform: rotate(180deg);
    color: var(--accent);
}

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

.faq-item:first-child {
    border-top: 1px solid var(--border-color);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0, 1, 0, 1), padding-bottom 0.5s ease;
}

.faq-body p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
}

.faq-item.active .faq-body {
    max-height: 500px;
    padding-bottom: 32px;
}

/* Works Grid */
.works-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.work-card {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.work-img {
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

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

.work-card:hover .work-img img {
    transform: scale(1.05);
}

.work-content {
    padding: 24px 0;
}

.work-content h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--text-main);
}

.work-content p {
    color: var(--accent);
    font-weight: 500;
}

.w-large {
    grid-column: auto;
}

.w-small {
    margin-top: 100px;
}

/* Blog Grid */
.blog-section {
    padding-bottom: 100px;
}

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

.blog-card {
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    transition: var(--transition-smooth);
}

.blog-card:hover {
    border-color: rgba(128, 0, 0, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(128, 0, 0, 0.08);
}

.blog-img {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.blog-card:hover .blog-img img {
    transform: scale(1.05);
}

.blog-content {
    padding: 32px;
}

.blog-meta {
    font-size: 0.85rem;
    color: var(--gold);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.blog-content h3 {
    font-size: 1.25rem;
    margin-bottom: 16px;
    line-height: 1.4;
    color: var(--text-main);
}

.blog-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
    position: relative;
    border-top: 1px solid var(--border-color);
    background: #fdfdfd;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    max-width: 800px;
    margin: 0 auto 40px;
    color: var(--text-main);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 24px;
}

/* Footer */
.footer {
    border-top: 1px solid var(--border-color);
    padding: 80px 0 32px;
    background: #f4f5f7;
    color: var(--text-main);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 60px;
}

.footer-logo {
    font-size: 2.5rem;
    margin-bottom: 16px;
    letter-spacing: -1px;
    color: var(--accent);
}

.footer-desc {
    color: var(--text-muted);
    max-width: 400px;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: right;
}

.contact-link {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent);
}

.contact-link:hover {
    color: var(--gold);
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-bottom: 80px;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 24px;
    color: var(--text-main);
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 16px;
}

.footer-col a {
    color: var(--text-muted);
    font-weight: 500;
}

.footer-col a:hover {
    color: var(--accent);
}

/* Footer Address */
.footer-address {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-addr-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.footer-addr-item i {
    color: var(--accent);
    font-size: 1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-addr-item p,
.footer-addr-item div {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-phone {
    color: var(--text-muted);
    font-weight: 500;
    transition: color 0.2s;
}

.footer-phone:hover {
    color: var(--accent);
}

/* Footer Subsidiaries */
.footer-subsidiaries {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-subsidiaries li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0;
}

.footer-subsidiaries li i {
    color: var(--accent);
    font-size: 0.5rem;
    margin-top: 7px;
    flex-shrink: 0;
}

.footer-subsidiaries li span {
    display: block;
    font-size: 0.85rem;
    color: var(--gold);
    font-weight: 500;
}

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

.social-links a {
    width: 48px;
    height: 48px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--accent);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.social-links a:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

.template-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.template-card p {
    color: var(--text-muted);
    margin-bottom: 16px;
    font-size: 0.9rem;
}

.footer-bottom {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    padding-top: 20px;
}

/* Responsive */
@media (max-width: 992px) {

    .nav-links,
    .nav-actions .btn-outline {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .services-section .row,
    .faq-section .row,
    .about-grid {
        grid-template-columns: 1fr;
        flex-direction: column;
    }

    .about-stats-row {
        flex-wrap: wrap;
        gap: 40px;
    }

    .stat-item {
        flex: 1 1 40%;
    }

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

    .footer-top {
        flex-direction: column;
        gap: 32px;
    }

    .footer-contact-info {
        text-align: left;
    }

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

@media (max-width: 768px) {

    .team-grid,
    .blog-grid,
    .works-grid {
        grid-template-columns: 1fr;
    }

    .w-small {
        margin-top: 0;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .hero-cta {
        flex-direction: column;
    }

    .about-frame {
        padding: 30px;
    }
}

/* ===== NEW TEAM DESIGN ===== */

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

.team-card-new {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    background: #f5f5f5;
    transition: all 0.4s ease;
}

.team-card-new img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 30px;
    transition: transform 0.5s ease;
}

.team-card-new:hover img {
    transform: scale(1.05);
}

/* Floating bottom card */
.team-info-new {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #ffffff;
    padding: 14px 18px;
    border-radius: 18px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    max-width: 80%;
}

.team-info-new h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
    color: #111;
    font-weight: 600;
}

.team-info-new p {
    font-size: 0.85rem;
    color: #666;
}

/* Responsive */
@media (max-width: 992px) {
    .team-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== MODERN CURVED TEAM CARD ===== */

.team-card-modern {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
}

/* Image */
.team-img img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 30px;
}

/* ===== CURVED BOTTOM SHAPE ===== */
.team-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%;
    padding: 25px 20px;
    background: #fff;
    border-top-right-radius: 70px;
}

/* Curve cut effect */
.team-bottom::before {
    content: "";
    position: absolute;
    top: -50px;
    left: 0;
    width: 100px;
    height: 50px;
    background: transparent;
    border-bottom-left-radius: 30px;
    box-shadow: -20px 20px 0 #fff;
}

/* Curve cut effect */
.team-bottom::after {
    content: "";
    position: absolute;
    top: 53%;
    left: 100%;
    width: 100px;
    height: 50px;
    background: transparent;
    border-bottom-left-radius: 30px;
    box-shadow: -20px 20px 0 #fff;
}

/* Text */
.team-bottom h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.team-bottom p {
    font-size: 0.9rem;
    color: #666;
}

/* ===== HOVER OVERLAY ===== */
.team-hover {
    position: absolute;
    inset: 0;
    background: rgba(128, 0, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.4s;
    border-radius: 30px;
}

.team-card-modern:hover .team-hover {
    opacity: 1;
}

/* Hover content */
.hover-content {
    text-align: center;
    color: #fff;
    transform: translateY(20px);
    transition: 0.4s;
}

.team-card-modern:hover .hover-content {
    transform: translateY(0);
}

.hover-content h4 {
    font-size: 1.4rem;
}

.hover-content p {
    margin: 5px 0;
    opacity: 0.9;
}

.hover-content span {
    font-size: 0.85rem;
    opacity: 0.7;
}

/* Social Icons */
.team-social {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 12px;
}

.team-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: 0.3s;
}

.team-social a:hover {
    background: #fff;
    color: #800000;
}

/* ===== MANDOOB SECTION ===== */
.mandoob-section {
    position: relative;
    padding: 120px 0 270px 0;
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
    overflow: visible;
    min-height: 400vh;
    /* Increased for extra scroll and popup */
}

.mandoob-header {
    position: relative;
    z-index: 10;
}

.mandoob-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 800;
    text-transform: uppercase;
    background: black;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 16px;
}

.mandoob-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Floating Background Elements */
.floating-bg-element {
    position: absolute;
    opacity: 0.08;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    pointer-events: none;
}

.circle-1 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    border-radius: 50%;
    top: 10%;
    left: 5%;
    animation: float-1 15s infinite;
}

.circle-2 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
    border-radius: 50%;
    top: 60%;
    right: 10%;
    animation: float-2 12s infinite;
}

.circle-3 {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    border-radius: 50%;
    bottom: 15%;
    left: 15%;
    animation: float-3 18s infinite;
}

.triangle-1 {
    width: 0;
    height: 0;
    border-left: 80px solid transparent;
    border-right: 80px solid transparent;
    border-bottom: 140px solid var(--gold);
    opacity: 0.05;
    top: 30%;
    right: 8%;
    animation: rotate-float 20s infinite;
}

.square-1 {
    width: 120px;
    height: 120px;
    background: var(--accent);
    opacity: 0.04;
    bottom: 20%;
    right: 20%;
    transform: rotate(45deg);
    animation: pulse-rotate 16s infinite;
}

@keyframes float-1 {

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

    25% {
        transform: translate(30px, -40px) scale(1.1);
    }

    50% {
        transform: translate(-20px, -80px) scale(0.9);
    }

    75% {
        transform: translate(-40px, -40px) scale(1.05);
    }
}

@keyframes float-2 {

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

    33% {
        transform: translate(-50px, 30px) scale(1.15);
    }

    66% {
        transform: translate(40px, -50px) scale(0.95);
    }
}

@keyframes float-3 {

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

    50% {
        transform: translate(60px, 60px) scale(1.2);
    }
}

@keyframes rotate-float {

    0%,
    100% {
        transform: rotate(0deg) translateY(0);
    }

    25% {
        transform: rotate(90deg) translateY(-30px);
    }

    50% {
        transform: rotate(180deg) translateY(0);
    }

    75% {
        transform: rotate(270deg) translateY(30px);
    }
}

@keyframes pulse-rotate {

    0%,
    100% {
        transform: rotate(45deg) scale(1);
        opacity: 0.04;
    }

    50% {
        transform: rotate(225deg) scale(1.3);
        opacity: 0.08;
    }
}

/* Mandoob Content Layout */
.mandoob-content {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: visible;
    /* Allow cards to fly in from outside viewport */
}

/* Character */
.mandoob-character {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    width: 280px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: character-float 6s ease-in-out infinite;
}

.mandoob-character img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(128, 0, 0, 0.15));
}

@keyframes character-float {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        transform: translate(-50%, -55%) scale(1.03);
    }
}

/* Service Cards */
.mandoob-service {
    position: absolute;
    opacity: 0;
    transform: translateY(100px) scale(0.3);
    z-index: 3;
    pointer-events: none;
    will-change: transform, opacity;
}

/* /* Service Flying Objects - More Random Staggered Positions (3 Left, 3 Right) */
.mandoob-service.left.service-1 {
    left: 4%;
    top: 15%;
}

.mandoob-service.right.service-2 {
    right: 6%;
    top: 25%;
}

.mandoob-service.left.service-3 {
    left: 14%;
    top: 45%;
}

.mandoob-service.right.service-4 {
    right: 12%;
    top: 55%;
}

.mandoob-service.left.service-5 {
    left: 6%;
    top: 75%;
}

.mandoob-service.right.service-6 {
    right: 18%;
    top: 85%;
}

/* Flying animations from center */
@keyframes fly-in-left-1 {
    0% {
        transform: translate(300px, 100px) scale(0.3) rotate(45deg);
        opacity: 0;
    }

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

@keyframes fly-in-left-2 {
    0% {
        transform: translate(300px, 0) scale(0.3) rotate(-30deg);
        opacity: 0;
    }

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

@keyframes fly-in-left-3 {
    0% {
        transform: translate(300px, -100px) scale(0.3) rotate(60deg);
        opacity: 0;
    }

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

@keyframes fly-in-right-1 {
    0% {
        transform: translate(-300px, 100px) scale(0.3) rotate(-45deg);
        opacity: 0;
    }

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

@keyframes fly-in-right-2 {
    0% {
        transform: translate(-300px, -100px) scale(0.3) rotate(30deg);
        opacity: 0;
    }

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

/* Service Card Design */
.service-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 32px 28px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(128, 0, 0, 0.1);
    max-width: 320px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--gold) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease;
}

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

.mandoob-service:hover .service-card {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(128, 0, 0, 0.15);
    border-color: var(--accent);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--gold) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.mandoob-service:hover .service-icon {
    transform: rotate(10deg) scale(1.1);
}

.service-icon i {
    font-size: 32px;
    color: #ffffff;
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 12px;
    line-height: 1.3;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Responsive Mandoob Section */
@media (max-width: 1400px) {
    .mandoob-service.left.service-1 {
        left: 2%;
    }

    .mandoob-service.left.service-2 {
        left: 3%;
    }

    .mandoob-service.left.service-3 {
        left: 2%;
    }

    .mandoob-service.right.service-4 {
        right: 2%;
    }

    .mandoob-service.right.service-5 {
        right: 3%;
    }
}

@media (max-width: 1200px) {
    .mandoob-character {
        width: 320px;
        height: 320px;
    }

    .service-card {
        max-width: 280px;
        padding: 24px 20px;
    }

    .service-card h3 {
        font-size: 1.15rem;
    }

    .service-card p {
        font-size: 0.88rem;
    }
}

@media (max-width: 992px) {
    .mandoob-section {
        padding: 80px 0;
    }

    .mandoob-content {
        flex-direction: column;
        gap: 40px;
        min-height: auto;
    }

    .mandoob-character {
        position: relative;
        top: auto;
        transform: none;
        width: 280px;
        height: 280px;
        margin-bottom: 40px;
    }

    .mandoob-service {
        position: relative !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
        opacity: 1;
        transform: none;
        margin: 0 auto;
    }

    .service-card {
        max-width: 100%;
    }

    /* Stack services vertically on mobile */
    .mandoob-service.service-1,
    .mandoob-service.service-2,
    .mandoob-service.service-3,
    .mandoob-service.service-4,
    .mandoob-service.service-5 {
        animation: fade-in-up 0.6s ease-out forwards;
    }

    @keyframes fade-in-up {
        from {
            opacity: 0;
            transform: translateY(30px);
        }

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

@media (max-width: 576px) {
    .mandoob-title {
        font-size: 2.5rem;
    }

    .mandoob-character {
        width: 220px;
        height: 220px;
    }

    .service-card {
        padding: 20px 16px;
    }

    .service-icon {
        width: 60px;
        height: 60px;
    }

    .service-icon i {
        font-size: 28px;
    }
}

/* ===== MANDOOB MODAL/POPUP ===== */
.mandoob-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.mandoob-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
}

.modal-content {
    position: relative;
    background: #fff;
    width: 90%;
    max-width: 600px;
    border-radius: 40px;
    padding: 60px 40px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.2);
    transform: translateY(40px) scale(0.95);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid var(--border-color);
}

.mandoob-modal.active .modal-content {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #f5f5f5;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.modal-close:hover {
    background: var(--accent);
    color: #fff;
    transform: rotate(90deg);
}

.modal-badge {
    display: inline-block;
    padding: 8px 18px;
    background: rgba(128, 0, 0, 0.05);
    color: var(--accent);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.modal-body h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 20px;
    line-height: 1.2;
}

.modal-body p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 35px;
}

.modal-features {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 40px;
}

.m-feat {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 8px;
}

.m-feat i {
    color: var(--gold);
}

/* =====================================================
   COMPREHENSIVE RESPONSIVE STYLES
   Breakpoints:
   - Big Monitors / 4K: 1800px+
   - Large Desktop: 1400px–1800px (already handled above)
   - Laptop / Desktop: 992px–1400px
   - Tablet: 768px–992px
   - Mobile Large: 576px–768px
   - Mobile Small: < 576px
   ===================================================== */

/* --- Big Monitors / Wide Screens (1800px+) --- */
@media (min-width: 1800px) {
    :root {
        --container-max: 1700px;
    }

    .frame-hero-title h1 {
        font-size: 4rem;
    }

    .fs-title {
        font-size: 4rem;
    }

    .hero-title {
        font-size: 4.5rem;
    }

    .about-title {
        font-size: 3.5rem;
    }

    .nav-links {
        gap: 40px;
        padding: 14px 40px;
    }

    .nav-links a {
        font-size: 1rem;
    }

    .stat-card .stat-number {
        font-size: 3.5rem;
    }

    .testimonial-card {
        width: 500px;
    }

    .team-card-new img,
    .team-img img {
        height: 520px;
    }

    .mandoob-character {
        width: 360px;
        height: 360px;
    }

    .service-card {
        max-width: 380px;
    }

    .section-title {
        font-size: 4.5rem;
    }

    .py-large {
        padding: 10rem 0;
    }

    .modal-content {
        max-width: 720px;
        padding: 70px 60px;
    }
}

/* --- Laptop / Standard Desktop (992px–1400px) --- */
@media (max-width: 1400px) and (min-width: 992px) {
    .about-grid {
        grid-template-columns: 1.2fr 1fr;
        gap: 32px;
    }

    .premium-stats {
        gap: 20px;
    }

    .stat-card {
        padding: 20px 15px;
    }

    .about-bottom {
        width: 22%;
    }
}

/* --- Tablet (768px–992px) --- */
@media (max-width: 992px) {

    /* Nav */
    .nav-links,
    .nav-actions,
    .nav-actions .btn-outline {
        display: none;
    }

    .menu-toggle {
        display: block;
        color: #fff;
        margin-left: auto;
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: rgba(255, 255, 255, .14);
        border: 1px solid rgba(255, 255, 255, .22);
        backdrop-filter: blur(10px);
    }

    .navbar.scrolled .menu-toggle {
        color: var(--text-main);
        background: rgba(255, 255, 255, .92);
        border-color: var(--border-color);
    }

    /* Spacing */
    .py-large {
        padding: 5rem 0;
    }

    /* Hero */
    .about-intro-section {
        padding: 120px 0 80px;
        background-attachment: scroll;
    }

    .hero-title {
        font-size: clamp(2rem, 6vw, 3.5rem);
    }

    /* About grid: stack */
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-left {
        max-width: 100%;
    }

    .about-main-img {
        min-height: 340px;
    }

    .about-bottom {
        width: 28%;
    }

    .about-stats-row {
        flex-wrap: wrap;
        gap: 32px;
        margin-top: 60px;
    }

    .stat-item {
        flex: 1 1 40%;
    }

    /* Services */
    .services-carousel-section {
        padding: 80px 0;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    /* Team */
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    /* Blog */
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Works */
    .works-grid {
        grid-template-columns: 1fr;
    }

    .w-small {
        margin-top: 0;
    }

    /* Footer */
    .footer-top {
        flex-direction: column;
        gap: 32px;
    }

    .footer-contact-info {
        text-align: left;
    }

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

    /* Mandoob section */
    .mandoob-section {
        min-height: auto;
        padding: 80px 0;
    }

    .mandoob-content {
        position: relative;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }

    .mandoob-character {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        width: 240px;
        height: 240px;
        margin: 0 auto 20px;
        animation: character-float 6s ease-in-out infinite;
    }

    .mandoob-service {
        position: relative !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
        opacity: 1 !important;
        transform: none !important;
        pointer-events: auto !important;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .service-card {
        max-width: 100%;
    }

    /* FAQ */
    .faq-section .row {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* CTA */
    .cta-title {
        font-size: clamp(1.8rem, 4vw, 2.5rem);
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* --- Mobile Large (576px–768px) --- */
@media (max-width: 768px) {

    /* Reset fixed cursor on touch devices */
    body {
        cursor: auto;
    }

    .cursor-dot,
    .cursor-ring {
        display: none;
    }

    /* Container padding */
    .container {
        padding: 0 16px;
    }

    /* Navbar */
    .navbar {
        padding: 16px 0;
    }

    .nav-brand img {
        height: 36px;
    }

    body:not(.ml-page) .nav-brand {
        width: 64px;
        height: 64px;
        min-width: 64px;
        min-height: 64px;
        padding: 8px 12px;
        border-radius: 18px;
    }

    body:not(.ml-page) .nav-brand img {
        height: 36px;
    }

    /* Hero */
    .about-intro-section {
        padding: 100px 0 60px;
        background-attachment: scroll;
    }

    .hero-title {
        font-size: clamp(1.8rem, 7vw, 2.8rem);
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .hero-cta .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    /* Frame Hero Text */
    .frame-hero-title h1 {
        font-size: clamp(1.6rem, 6vw, 2.5rem);
        padding: 0 16px;
    }

    .frame-hero-title p {
        font-size: 0.8rem;
        letter-spacing: 1px;
        padding: 0 16px;
    }

    .frame-service-text {
        bottom: 12%;
        left: 4%;
        right: 4%;
    }

    .fs-title {
        font-size: clamp(1.8rem, 7vw, 2.8rem);
    }

    .fs-desc {
        font-size: 0.9rem;
        max-width: 100%;
    }

    /* About section */
    .py-large {
        padding: 4rem 0;
    }

    .about-header {
        margin-bottom: 40px;
    }

    .about-title {
        font-size: clamp(1.6rem, 5vw, 2.5rem);
    }

    .about-main-img {
        min-height: 260px;
        border-radius: 24px;
    }

    .about-bottom {
        width: 35%;
    }

    .about-right {
        gap: 24px;
    }

    .story-card {
        padding: 60px 24px 28px;
    }

    .about-stats-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        margin-top: 40px;
    }

    .stat-item {
        flex: none;
        width: 100%;
    }

    .stat-number {
        font-size: clamp(2.5rem, 8vw, 4rem);
    }

    /* Premium stats */
    .premium-stats {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .stat-card {
        padding: 20px 16px;
    }

    .stat-card .stat-number {
        font-size: 2rem;
    }

    /* Services carousel */
    .services-carousel-section {
        padding: 60px 0;
    }

    .service-content {
        padding: 20px;
    }

    .service-content h3 {
        font-size: 1.4rem;
    }

    /* Team */
    .team-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .team-card-new img,
    .team-img img {
        height: 340px;
    }

    /* Blog */
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .blog-content {
        padding: 20px;
    }

    /* Testimonials */
    .testimonial-card {
        width: 320px;
        padding: 28px;
    }

    /* FAQ */
    .faq-section {
        padding: 60px 0;
    }

    .faq-header h4 {
        font-size: 1rem;
    }

    .faq-header {
        padding: 24px 0;
    }

    /* Works */
    .works-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    /* CTA */
    .cta-section {
        padding: 60px 0;
    }

    .cta-title {
        font-size: clamp(1.6rem, 5vw, 2.2rem);
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }

    /* Footer */
    .footer {
        padding: 60px 0 24px;
    }

    .footer-top {
        padding-bottom: 40px;
        margin-bottom: 40px;
    }

    .footer-links-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
        margin-bottom: 48px;
    }

    .contact-link {
        font-size: 1.2rem;
    }

    /* Mandoob Modal */
    .modal-content {
        padding: 40px 24px;
        border-radius: 28px;
    }

    .modal-features {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    /* Swiper buttons */
    .swiper-btn {
        width: 48px;
        height: 48px;
        font-size: 1rem;
    }

    /* Section headers */
    .section-title {
        font-size: clamp(1.8rem, 6vw, 3rem);
    }

    .section-desc {
        font-size: 1rem;
    }

    /* Badge cutout */
    .badge-cutout-container {
        width: 110px;
        height: 110px;
    }

    /* Mandoob section on mobile - disable scroll animation, show static */
    .mandoob-section {
        min-height: auto;
        padding: 60px 0;
    }

    .mandoob-content {
        position: relative;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0 16px;
        gap: 20px;
    }

    .mandoob-character {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        width: 200px;
        height: 200px;
        margin: 0 auto 12px;
    }

    .mandoob-service {
        position: relative !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        opacity: 1 !important;
        transform: none !important;
        pointer-events: auto !important;
        width: 100%;
    }

    .service-card {
        max-width: 100%;
        padding: 24px 20px;
    }

    .mandoob-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }
}

/* --- Mobile Small (< 576px) --- */
@media (max-width: 576px) {

    .container {
        padding: 0 14px;
    }

    /* Typography scale down */
    .section-title {
        font-size: clamp(1.5rem, 7vw, 2.2rem);
    }

    .hero-title {
        font-size: clamp(1.6rem, 8vw, 2.4rem);
    }

    .about-title {
        font-size: clamp(1.4rem, 7vw, 2rem);
    }

    .fs-title {
        font-size: clamp(1.6rem, 8vw, 2.4rem);
    }

    /* Frame hero: tighten */
    .frame-hero-title {
        top: 40%;
        width: 90%;
    }

    /* About */
    .about-main-img {
        min-height: 220px;
        border-radius: 16px;
    }

    .about-bottom {
        width: 44%;
    }

    .story-card {
        padding: 50px 16px 20px;
        border-radius: 24px;
    }

    .story-tab {
        font-size: 1.2rem;
        padding: 14px 28px 14px 0;
    }

    /* Stats */
    .premium-stats {
        grid-template-columns: 1fr;
    }

    .stat-card .stat-number {
        font-size: 1.8rem;
    }

    /* Footer */
    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-logo {
        font-size: 1.8rem;
    }

    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .footer-bottom {
        font-size: 0.8rem;
    }

    /* Testimonials */
    .testimonial-card {
        width: 280px;
        padding: 20px;
    }

    .testi-quote {
        font-size: 0.9rem;
    }

    /* Buttons */
    .btn-lg {
        padding: 14px 24px;
        font-size: 0.95rem;
    }

    /* Service card in mandoob */
    .service-icon {
        width: 56px;
        height: 56px;
    }

    .service-icon i {
        font-size: 24px;
    }

    .service-card h3 {
        font-size: 1.1rem;
    }

    /* Nav brand logo */
    .nav-brand img {
        height: 30px;
    }

    body:not(.ml-page) .nav-brand {
        width: 56px;
        height: 56px;
        min-width: 56px;
        min-height: 56px;
        padding: 0px 5px;
        border-radius: 16px;
    }

    body:not(.ml-page) .nav-brand img {
        height: 44px;
    }

    /* Scroll indicator */
    .frame-scroll-indicator {
        right: 12px;
        bottom: 15px;
    }

    /* Swiper nav */
    .swiper-nav-buttons {
        gap: 10px;
    }

    .swiper-btn {
        width: 40px;
        height: 40px;
        font-size: 0.85rem;
    }

    /* CTA buttons full width */
    .cta-buttons .btn {
        max-width: 100%;
    }

    /* Modal */
    .modal-content {
        padding: 32px 18px;
        border-radius: 20px;
        width: 95%;
    }

    .modal-body h2 {
        font-size: 1.6rem;
    }

    .modal-body p {
        font-size: 0.95rem;
    }

    /* Badge cutout */
    .badge-cutout-container {
        width: 90px;
        height: 90px;
    }

    .badge-center-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* ===== MOBILE MENU CONTACT & SOCIAL (hidden by default) ===== */
.mobile-menu-contact,
.mobile-menu-social,
.mobile-menu-cta {
    display: none;
}

/* ===== MODERN MOBILE NAVIGATION DRAWER ===== */

/* Drawer overlay backdrop */
.mobile-menu-open::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 998;
    animation: overlayFadeIn 0.3s ease forwards;
}

@keyframes overlayFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* The drawer panel */
.mobile-menu-open .nav-links {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    width: min(360px, calc(100vw - 24px));
    max-width: calc(100vw - 24px);
    height: 100vh;
    height: 100dvh;
    background: linear-gradient(165deg, #ffffff 0%, #faf8f5 60%, #f5f0ea 100%);
    z-index: 1000;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    border-radius: 0;
    border: none;
    padding: 100px 28px 28px;
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.15);
    overflow-y: auto;
    overscroll-behavior: contain;
    animation: drawerSlideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes drawerSlideIn {
    from {
        transform: translateX(100%);
        opacity: 0.5;
    }

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

/* Decorative maroon accent stripe at top of drawer */
.mobile-menu-open .nav-links::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--gold));
}

/* Close button */
.mobile-menu-open .menu-toggle {
    position: fixed;
    top: 22px;
    right: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--border-color);
    color: var(--text-main) !important;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
    z-index: 1002;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mobile-menu-open .menu-toggle:active {
    transform: scale(0.92);
}

/* Navigation links styling */
.mobile-menu-open .nav-links a {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-main) !important;
    padding: 14px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(30px);
    animation: linkSlideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.mobile-menu-open .nav-links a:nth-child(1) {
    animation-delay: 0.08s;
}

.mobile-menu-open .nav-links a:nth-child(2) {
    animation-delay: 0.14s;
}

.mobile-menu-open .nav-links a:nth-child(3) {
    animation-delay: 0.20s;
}

.mobile-menu-open .nav-links a:nth-child(4) {
    animation-delay: 0.26s;
}

.mobile-menu-open .nav-links a:nth-child(5) {
    animation-delay: 0.32s;
}

@keyframes linkSlideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.mobile-menu-open .nav-links a::after {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.7rem;
    color: var(--text-muted);
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.3s ease;
}

.mobile-menu-open .nav-links a:hover::after,
.mobile-menu-open .nav-links a.active::after {
    opacity: 1;
    transform: translateX(0);
}

.mobile-menu-open .nav-links a:hover {
    color: var(--accent) !important;
    padding-left: 8px;
}

.mobile-menu-open .nav-links a.active {
    color: var(--accent) !important;
}

.mobile-menu-open .nav-links a:last-of-type {
    border-bottom: none;
}

/* Contact info in mobile menu */
.mobile-menu-open .mobile-menu-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    opacity: 0;
    animation: contactFadeIn 0.5s 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes contactFadeIn {
    to {
        opacity: 1;
    }
}

.mobile-menu-contact-title {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.mobile-menu-contact a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 12px;
    background: rgba(128, 0, 0, 0.04);
    border: 1px solid rgba(128, 0, 0, 0.06);
    color: var(--text-main);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mobile-menu-contact a:hover {
    background: rgba(128, 0, 0, 0.08);
    border-color: rgba(128, 0, 0, 0.12);
    transform: translateX(4px);
}

.mobile-menu-contact a i {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--accent);
    color: #fff;
    font-size: 0.8rem;
    flex-shrink: 0;
}

/* Social media row in mobile menu */
.mobile-menu-open .mobile-menu-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    opacity: 0;
    animation: contactFadeIn 0.5s 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.mobile-menu-social a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.06);
    color: var(--text-main);
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu-social a:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(128, 0, 0, 0.25);
}

/* CTA button in mobile menu */
.mobile-menu-open .mobile-menu-cta {
    display: block;
    margin-top: 20px;
    opacity: 0;
    animation: contactFadeIn 0.5s 0.55s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.mobile-menu-cta .btn {
    width: 100%;
    padding: 16px 24px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--accent) 0%, #5c0000 100%);
    color: #fff;
    border: none;
    box-shadow: 0 8px 24px rgba(128, 0, 0, 0.25);
    transition: all 0.3s ease;
}

.mobile-menu-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(128, 0, 0, 0.3);
}

/* Menu close icon */
.mobile-menu-open .menu-toggle .fa-bars::before {
    content: "\f00d";
}

.mobile-menu-open .menu-toggle .fa-xmark {
    font-size: 1.35rem;
}

/* Prevent body scroll when menu is open */
.mobile-menu-open {
    overflow: hidden;
}

/* ===== TOUCH DEVICE IMPROVEMENTS ===== */
@media (hover: none) and (pointer: coarse) {

    /* Disable hover-only effects on touch */
    .team-card:hover .team-overlay,
    .team-card-modern:hover .team-hover {
        opacity: 0;
    }

    .stat-card:hover,
    .blog-card:hover,
    .service-card-main:hover {
        transform: none;
        box-shadow: none;
    }

    /* Restore normal cursor */
    body {
        cursor: auto;
    }

    .cursor-dot,
    .cursor-ring {
        display: none;
    }

    /* Make background-attachment scroll on iOS */
    .about-intro-section,
    .hero-section {
        background-attachment: scroll;
    }
}

/* ===== PRINT / ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===== WHY CHOOSE US - 5 POINT MODERN GRID ===== */
.why-choose-5-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.why-card-modern {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 30px;
    padding: 45px 35px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.why-card-modern::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent) 0%, #6a0000 100%);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: -1;
}

.why-card-modern:hover {
    transform: translateY(-12px);
    border-color: var(--accent);
    box-shadow: 0 25px 50px rgba(128, 0, 0, 0.12);
}

.why-card-modern:hover::before {
    top: 0;
}

.why-card-icon {
    width: 65px;
    height: 65px;
    background: var(--accent-glow);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.why-card-icon i {
    font-size: 1.8rem;
    color: var(--accent);
    transition: all 0.3s ease;
}

.why-card-modern:hover .why-card-icon {
    background: rgba(255, 255, 255, 0.2);
    transform: rotateY(180deg);
}

.why-card-modern:hover .why-card-icon i {
    color: #ffffff;
}

.why-card-modern h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-main);
    transition: color 0.4s;
}

.why-card-modern p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    transition: color 0.4s;
}

.why-card-modern:hover h3,
.why-card-modern:hover p {
    color: #ffffff;
}

@media (min-width: 992px) {
    .why-choose-5-grid {
        grid-template-columns: repeat(6, 1fr);
    }

    .why-card-modern {
        grid-column: span 2;
    }

    /* First row: 3 cards (cols 1-2, 3-4, 5-6) */
    /* Second row: cards 4, 5 centered, card 6 on same row */
    .why-card-modern:nth-child(4) {
        grid-column: 1 / span 2;
    }

    .why-card-modern:nth-child(5) {
        grid-column: 3 / span 2;
    }

    .why-card-modern:nth-child(6) {
        grid-column: 5 / span 2;
    }
}

@media (max-width: 991px) {
    .why-choose-5-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .why-choose-5-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
           MANDOOB LIGHT THEME
        ============================================================ */


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

html {
    scroll-behavior: smooth;
    overflow-x: clip;
}

body.ml-page {
    --ml-bg: #f3f7ff;
    --ml-bg2: #ffffff;
    --ml-border: #dce7fb;
    --ml-accent: #0048b5;
    --ml-accent2: #001a70;
    --ml-gold: #28a7ff;
    --ml-gold-lt: #e8f5ff;
    --ml-red-lt: #eef5ff;
    --ml-text: #101827;
    --ml-muted: #5a6576;
    --accent: var(--ml-accent);
    --accent-glow: rgba(0, 72, 181, 0.16);
    background: var(--ml-bg);
    color: var(--ml-text);
    font-family: var(--font-b);
    line-height: 1.6;
    cursor: none;
}

/* Cursor */
.ml-cursor-dot,
.ml-cursor-ring {
    position: fixed;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
}

.ml-cursor-dot {
    width: 7px;
    height: 7px;
    background: var(--ml-accent);
    border-radius: 50%;
}

.ml-cursor-ring {
    width: 30px;
    height: 30px;
    border: 2px solid rgba(0, 72, 181, .3);
    border-radius: 50%;
    transition: border-color .2s, transform .2s;
}

/* ── NAVBAR ── */
body.ml-page .navbar {
    background: rgba(243, 247, 255, .92);
    border-bottom: 1px solid var(--ml-border);
    backdrop-filter: blur(16px);
}

body.ml-page .navbar.scrolled {
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, .07);
}

body.ml-page .nav-links a {
    color: var(--ml-text);
}

body.ml-page .nav-links a:hover,
body.ml-page .nav-links a.active {
    color: var(--ml-accent);
}

body.ml-page .nav-links a.active::after {
    background: var(--ml-accent);
}

body.ml-page .menu-toggle {
    color: var(--ml-text);
}

body.ml-page .btn-primary {
    background: linear-gradient(135deg, var(--ml-accent), var(--ml-accent2));
    border-color: transparent;
    box-shadow: 0 8px 24px rgba(0, 72, 181, .2);
}

body.ml-page .btn-primary:hover {
    background: linear-gradient(135deg, #0056d6, var(--ml-accent2));
    box-shadow: 0 12px 28px rgba(0, 72, 181, .28);
}

body.ml-page .ml-nav-brand {
    width: 74px;
    height: 74px;
    padding: 6px;
    background: #fff;
    border: 1px solid rgba(0, 72, 181, .14);
    border-radius: 18px;
    box-shadow: 0 10px 26px rgba(0, 72, 181, .12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

body.ml-page .ml-nav-brand img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* ── UTILITIES ── */
.ml-wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

.ml-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 16px;
    background: rgba(0, 72, 181, .07);
    border: 1px solid rgba(0, 72, 181, .15);
    border-radius: var(--r-pill);
    font-size: .77rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--ml-accent);
    margin-bottom: 16px;
}

.ml-logo-hero {
    width: clamp(122px, 15vw, 168px);
    aspect-ratio: 1;
    padding: 10px;
    background: linear-gradient(145deg, #fff 0%, #eef5ff 100%);
    border: 1px solid rgba(0, 72, 181, .16);
    border-radius: 28px;
    box-shadow: 0 18px 48px rgba(0, 72, 181, .16);
    margin-bottom: 22px;
}

.ml-logo-hero img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    border-radius: 20px;
}

.ml-h1 {
    font-family: var(--font-d);
    font-size: clamp(2.8rem, 6.5vw, 5.2rem);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -.035em;
}

.ml-h1 .gr {
    background: linear-gradient(130deg, var(--ml-accent) 0%, var(--ml-gold) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ml-h2 {
    font-family: var(--font-d);
    font-size: clamp(1.75rem, 4vw, 2.7rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -.025em;
    color: var(--ml-text);
    margin-bottom: 14px;
}

.ml-h2 .gr {
    background: linear-gradient(130deg, var(--ml-accent), var(--ml-gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ml-lead {
    font-size: 1.05rem;
    color: var(--ml-muted);
    line-height: 1.75;
    max-width: 600px;
}

.ml-sec {
    padding: 100px 0;
}

.ml-sec-sm {
    padding: 70px 0;
}

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

.ml-sec-header .ml-lead {
    margin: 0 auto;
}

.ml-hr {
    height: 1px;
    background: var(--ml-border);
}

/* ══════════════ HERO ══════════════ */
.ml-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(155deg, #fff 0%, #f5f9ff 48%, #e7f1ff 100%);
    padding-top: 80px;
}

.ml-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(ellipse 60% 50% at 80% 15%, rgba(0, 72, 181, .08) 0%, transparent 100%),
        radial-gradient(ellipse 50% 50% at 10% 85%, rgba(40, 167, 255, .1) 0%, transparent 100%);
    pointer-events: none;
}

.ml-hero-dot-bg {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(0, 72, 181, .08) 1.2px, transparent 1.2px);
    background-size: 38px 38px;
    mask-image: radial-gradient(ellipse 75% 65% at 50% 50%, black 20%, transparent 100%);
    pointer-events: none;
}

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

.ml-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .84rem;
    color: var(--ml-muted);
    margin-bottom: 22px;
    transition: color .2s;
}

.ml-back:hover {
    color: var(--ml-accent);
}

.ml-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 18px;
    background: #fff;
    border: 1px solid var(--ml-border);
    border-radius: var(--r-pill);
    font-size: .79rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--ml-accent);
    margin-bottom: 24px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .06);
}

.ml-hero-sub {
    font-size: clamp(.95rem, 2vw, 1.13rem);
    color: var(--ml-muted);
    line-height: 1.72;
    margin: 18px 0 30px;
}

.ml-hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 34px;
}

.ml-pill {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 7px 15px;
    background: #fff;
    border: 1px solid var(--ml-border);
    border-radius: var(--r-pill);
    font-size: .82rem;
    font-weight: 500;
    color: var(--ml-text);
    box-shadow: 0 2px 8px rgba(0, 0, 0, .04);
}

.ml-pill i {
    color: var(--ml-accent);
    font-size: .7rem;
}

.ml-hero-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.ml-btn-p {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--ml-accent), var(--ml-accent2));
    color: #fff;
    border-radius: var(--r-pill);
    font-weight: 700;
    font-size: .96rem;
    box-shadow: 0 8px 28px rgba(0, 72, 181, .25);
    transition: all .3s;
    border: none;
    cursor: pointer;
}

.ml-btn-p:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(0, 72, 181, .34);
    color: #fff;
}

.ml-btn-o {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 13px 26px;
    background: transparent;
    color: var(--ml-text);
    border: 1.5px solid var(--ml-border);
    border-radius: var(--r-pill);
    font-weight: 600;
    font-size: .96rem;
    transition: all .3s;
    cursor: pointer;
}

.ml-btn-o:hover {
    border-color: var(--ml-accent);
    color: var(--ml-accent);
    background: var(--ml-red-lt);
}

/* Hero visual */
.ml-hero-right {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.ml-hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.ml-hero-glow {
    position: absolute;
    width: 460px;
    height: 460px;
    background: radial-gradient(circle, rgba(0, 72, 181, .1) 0%, transparent 68%);
    border-radius: 50%;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    animation: mlPulse 5s ease-in-out infinite;
}

@keyframes mlPulse {

    0%,
    100% {
        transform: translateX(-50%) scale(1);
        opacity: .7;
    }

    50% {
        transform: translateX(-50%) scale(1.08);
        opacity: 1;
    }
}

.ml-hero-orbit {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    border: 1.5px dashed rgba(0, 72, 181, .16);
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    animation: mlSpin 24s linear infinite;
}

.ml-hero-orbit::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    width: 10px;
    height: 10px;
    background: var(--ml-gold);
    border-radius: 50%;
    transform: translateX(-50%);
}

@keyframes mlSpin {
    to {
        transform: translateX(-50%) rotate(360deg);
    }
}

.ml-hero-char {
    position: relative;
    z-index: 2;
    width: 350px;
    max-width: 100%;
    filter: drop-shadow(0 20px 44px rgba(0, 72, 181, .16));
    animation: mlFloat 5s ease-in-out infinite;
}

@keyframes mlFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-16px);
    }
}

/* Floating badges */
.ml-fbadge {
    position: absolute;
    z-index: 4;
    background: #fff;
    border: 1px solid var(--ml-border);
    border-radius: 16px;
    padding: 11px 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .1);
    display: flex;
    align-items: center;
    gap: 11px;
    animation: mlFcard 6s ease-in-out infinite;
}

.ml-fbadge:nth-child(1) {
    top: 12%;
    right: 0;
    animation-delay: 0s;
}

.ml-fbadge:nth-child(2) {
    bottom: 20%;
    left: 0;
    animation-delay: 2s;
}

.ml-fbadge:nth-child(3) {
    top: 52%;
    right: -10px;
    animation-delay: 4s;
}

@keyframes mlFcard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-9px);
    }
}

.ml-fbadge-icon {
    width: 36px;
    height: 36px;
    background: var(--ml-red-lt);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ml-fbadge-icon i {
    color: var(--ml-accent);
    font-size: .9rem;
}

.ml-fbadge-val {
    font-family: var(--font-d);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--ml-text);
    line-height: 1;
}

.ml-fbadge-lbl {
    font-size: .7rem;
    color: var(--ml-muted);
}

/* ══════════════ MARQUEE STRIP ══════════════ */
.ml-strip {
    background: var(--ml-accent);
    padding: 15px 0;
    overflow: hidden;
}

.ml-strip-track {
    display: flex;
    gap: 56px;
    animation: mlMarquee 22s linear infinite;
    white-space: nowrap;
}

.ml-strip-item {
    display: flex;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, .82);
    font-size: .87rem;
    font-weight: 600;
    flex-shrink: 0;
}

.ml-strip-item i {
    color: var(--ml-gold);
    font-size: .7rem;
}

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

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

/* ══════════════ ABOUT ══════════════ */
.ml-about {
    background: #fff;
}

.ml-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 72px;
}

.ml-about-card {
    background: linear-gradient(145deg, var(--ml-red-lt) 0%, var(--ml-gold-lt) 100%);
    border: 1px solid var(--ml-border);
    border-radius: 32px;
    padding: 44px 36px;
    position: relative;
    overflow: hidden;
}

.ml-about-card::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 72, 181, .11), transparent 70%);
    border-radius: 50%;
}

.ml-about-char {
    width: 190px;
    display: block;
    margin: 0 auto 26px;
    filter: drop-shadow(0 10px 22px rgba(0, 72, 181, .18));
}

.ml-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.ml-stat {
    background: #fff;
    border: 1px solid var(--ml-border);
    border-radius: 14px;
    padding: 16px 10px;
    text-align: center;
}

.ml-stat .v {
    font-family: var(--font-d);
    font-size: 1.65rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--ml-accent), var(--ml-gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ml-stat .l {
    font-size: .72rem;
    color: var(--ml-muted);
    margin-top: 3px;
}

.ml-about-text p {
    color: var(--ml-muted);
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: .98rem;
}

.ml-about-text p strong {
    color: var(--ml-text);
}

/* Subscription highlight */
.ml-sub-box {
    background: var(--ml-red-lt);
    border: 1.5px solid rgba(0, 72, 181, .15);
    border-radius: 18px;
    padding: 26px 26px 22px;
    margin: 22px 0;
}

.ml-sub-box h4 {
    font-family: var(--font-d);
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--ml-accent);
    margin-bottom: 14px;
    text-align: center;
    line-height: 1.4;
}

.ml-sub-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.ml-sub-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: .93rem;
    color: var(--ml-text);
    font-weight: 600;
}

.ml-sub-list li i {
    color: var(--ml-accent);
    margin-top: 4px;
    font-size: .75rem;
}

/* ══════════════ FEATURES SCROLL ══════════════ */
.ml-feat-section {
    background: var(--ml-bg);
}

.ml-feat-spacer {
    height: 460vh;
    position: relative;
}

.ml-feat-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    background: var(--ml-bg);
}

.ml-feat-head {
    text-align: center;
    padding: 0 24px 24px;
}

.ml-feat-head p {
    color: var(--ml-muted);
    font-size: .93rem;
}

.ml-feat-track-wrap {
    overflow: hidden;
    padding: 8px 0 24px;
}

.ml-feat-track {
    display: flex;
    gap: 22px;
    padding: 0 10vw;
    will-change: transform;
}

.ml-feat-card {
    flex-shrink: 0;
    width: 290px;
    background: #fff;
    border: 1.5px solid var(--ml-border);
    border-radius: var(--r-card);
    padding: 34px 26px;
    transition: all .45s cubic-bezier(.16, 1, .3, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 14px rgba(0, 0, 0, .04);
}

.ml-feat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--ml-red-lt), var(--ml-gold-lt));
    opacity: 0;
    transition: opacity .4s;
    border-radius: var(--r-card);
}

.ml-feat-card:hover::before {
    opacity: 1;
}

.ml-feat-card:hover {
    border-color: rgba(0, 72, 181, .22);
    transform: translateY(-8px);
    box-shadow: 0 22px 44px rgba(0, 72, 181, .09);
}

.ml-feat-num {
    font-family: var(--font-d);
    font-size: 2.8rem;
    font-weight: 800;
    color: rgba(0, 72, 181, .07);
    line-height: 1;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.ml-feat-ico {
    width: 52px;
    height: 52px;
    background: var(--ml-red-lt);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: all .3s;
    position: relative;
    z-index: 1;
}

.ml-feat-card:hover .ml-feat-ico {
    background: rgba(0, 72, 181, .12);
}

.ml-feat-ico i {
    font-size: 1.3rem;
    color: var(--ml-accent);
}

.ml-feat-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--ml-text);
    margin-bottom: 10px;
    line-height: 1.35;
    position: relative;
    z-index: 1;
}

.ml-feat-card p {
    font-size: .86rem;
    color: var(--ml-muted);
    line-height: 1.65;
    position: relative;
    z-index: 1;
}

.ml-feat-chip {
    display: inline-block;
    margin-top: 14px;
    padding: 4px 12px;
    background: var(--ml-gold-lt);
    border-radius: var(--r-pill);
    font-size: .72rem;
    color: var(--ml-gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    position: relative;
    z-index: 1;
}

.ml-feat-dots {
    display: flex;
    justify-content: center;
    gap: 7px;
    padding-bottom: 6px;
}

.ml-feat-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--ml-border);
    transition: all .3s;
}

.ml-feat-dot.on {
    background: var(--ml-accent);
    width: 22px;
    border-radius: 4px;
}

/* ══════════════ MOBILE APP ══════════════ */
.ml-app {
    background: #fff;
}

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

.ml-app-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    min-height: 380px;
}

.ml-app-glow {
    position: absolute;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(184, 144, 78, .1) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
}

.ml-app-char {
    position: relative;
    z-index: 2;
    width: 240px;
    filter: drop-shadow(0 18px 40px rgba(0, 72, 181, .14));
    animation: mlFloat 5s ease-in-out infinite;
}

.ml-app-char-back {
    position: absolute;
    z-index: 1;
    width: 200px;
    left: 10%;
    bottom: 0;
    opacity: .55;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, .08));
    animation: mlFloat 5s ease-in-out 1.2s infinite;
}

.ml-app-text p {
    color: var(--ml-muted);
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: .98rem;
}

.ml-app-text p strong {
    color: var(--ml-text);
}

.ml-app-feat {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 22px 0;
}

.ml-app-feat li {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    font-size: .95rem;
    color: var(--ml-text);
}

.ml-app-feat li i {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    background: var(--ml-red-lt);
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ml-accent);
    font-size: .62rem;
    margin-top: 2px;
}

.ml-stores {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.ml-store-btn {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 11px 20px;
    border-radius: 13px;
    transition: all .3s;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .12);
}

.ml-store-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, .18);
}

.ml-store-btn i {
    font-size: 1.5rem;
}

.ml-store-btn-t small {
    display: block;
    font-size: .65rem;
    opacity: .7;
}

.ml-store-btn-t strong {
    display: block;
    font-size: .9rem;
    font-weight: 700;
}

.ml-ios {
    background: var(--ml-text);
    color: #fff;
}

.ml-ios:hover {
    color: #fff;
}

.ml-android {
    background: linear-gradient(135deg, #2da44e, #155c2a);
    color: #fff;
}

.ml-android:hover {
    color: #fff;
}

.ml-web {
    background: linear-gradient(135deg, var(--ml-accent), var(--ml-accent2));
    color: #fff;
}

.ml-web:hover {
    color: #fff;
}

/* ══════════════ AI PRO ══════════════ */
.ml-ai {
    background: var(--ml-bg);
}

.ml-ai-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 72px;
}

.ml-ai-card {
    background: linear-gradient(145deg, var(--ml-red-lt) 0%, var(--ml-gold-lt) 100%);
    border: 1.5px solid rgba(0, 72, 181, .1);
    border-radius: 30px;
    padding: 40px 34px;
}

.ml-ai-ico {
    width: 68px;
    height: 68px;
    background: #fff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    box-shadow: 0 4px 18px rgba(0, 72, 181, .1);
}

.ml-ai-ico i {
    font-size: 1.9rem;
    color: var(--ml-accent);
}

.ml-ai-card h3 {
    font-family: var(--font-d);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--ml-text);
    margin-bottom: 12px;
}

.ml-ai-card p {
    font-size: .95rem;
    color: var(--ml-muted);
    line-height: 1.75;
    margin-bottom: 10px;
}

.ml-ai-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.ml-ai-chip {
    padding: 5px 13px;
    background: #fff;
    border: 1px solid var(--ml-border);
    border-radius: var(--r-pill);
    font-size: .76rem;
    font-weight: 600;
    color: var(--ml-text);
}

.ml-ai-text p {
    color: var(--ml-muted);
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: .98rem;
}

.ml-check-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 13px;
    margin-top: 22px;
}

.ml-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    font-size: .94rem;
    color: var(--ml-text);
}

.ml-check-list li i {
    color: var(--ml-accent);
    margin-top: 4px;
    flex-shrink: 0;
}

/* ══════════════ HOW IT WORKS ══════════════ */
.ml-how {
    background: #fff;
}

.ml-how-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    position: relative;
}

.ml-how-grid::before {
    content: '';
    position: absolute;
    top: 37px;
    left: calc(12.5% + 16px);
    right: calc(12.5% + 16px);
    height: 2px;
    background: linear-gradient(90deg, var(--ml-accent) 0%, var(--ml-gold) 50%, var(--ml-accent) 100%);
}

.ml-how-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.ml-how-num {
    width: 74px;
    height: 74px;
    background: var(--ml-bg);
    border: 2px solid var(--ml-border);
    border-radius: 50%;
    margin: 0 auto 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-d);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--ml-accent);
    transition: all .4s;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .06);
}

.ml-how-step:hover .ml-how-num {
    background: var(--ml-accent);
    color: #fff;
    border-color: var(--ml-accent);
    box-shadow: 0 8px 26px rgba(0, 72, 181, .22);
    transform: scale(1.1);
}

.ml-how-step h3 {
    font-size: .98rem;
    font-weight: 700;
    margin-bottom: 9px;
    color: var(--ml-text);
}

.ml-how-step p {
    font-size: .87rem;
    color: var(--ml-muted);
    line-height: 1.6;
}

/* ══════════════ PLANS ══════════════ */
.ml-plans {
    background: var(--ml-bg);
}

.ml-plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 56px;
}

.ml-plan {
    background: #fff;
    border: 1.5px solid var(--ml-border);
    border-radius: 26px;
    padding: 38px 30px;
    transition: all .45s cubic-bezier(.16, 1, .3, 1);
    position: relative;
    overflow: hidden;
}

.ml-plan.star {
    background: linear-gradient(145deg, var(--ml-accent) 0%, var(--ml-accent2) 100%);
    border-color: var(--ml-accent);
    box-shadow: 0 18px 52px rgba(0, 72, 181, .2);
    transform: translateY(-12px);
}

.ml-plan:hover {
    box-shadow: 0 14px 36px rgba(0, 72, 181, .1);
    transform: translateY(-6px);
}

.ml-plan.star:hover {
    transform: translateY(-16px);
}

.ml-plan-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--ml-gold);
    color: #fff;
    font-size: .68rem;
    font-weight: 700;
    padding: 4px 11px;
    border-radius: var(--r-pill);
    text-transform: uppercase;
    letter-spacing: .05em;
}

.ml-plan-name {
    font-size: .82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--ml-gold);
    margin-bottom: 9px;
}

.ml-plan.star .ml-plan-name {
    color: rgba(255, 255, 255, .65);
}

.ml-plan-price {
    font-family: var(--font-d);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--ml-text);
}

.ml-plan.star .ml-plan-price {
    color: #fff;
}

.ml-plan-price span {
    font-size: .9rem;
    font-weight: 400;
    color: var(--ml-muted);
}

.ml-plan.star .ml-plan-price span {
    color: rgba(255, 255, 255, .55);
}

.ml-plan-desc {
    font-size: .88rem;
    color: var(--ml-muted);
    margin: 9px 0 20px;
    line-height: 1.55;
}

.ml-plan.star .ml-plan-desc {
    color: rgba(255, 255, 255, .6);
}

.ml-plan-hr {
    height: 1px;
    background: var(--ml-border);
    margin-bottom: 20px;
}

.ml-plan.star .ml-plan-hr {
    background: rgba(255, 255, 255, .18);
}

.ml-plan-feats {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin-bottom: 28px;
}

.ml-plan-feats li {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: .88rem;
    color: var(--ml-text);
}

.ml-plan.star .ml-plan-feats li {
    color: rgba(255, 255, 255, .86);
}

.ml-plan-feats li i {
    color: var(--ml-gold);
    font-size: .72rem;
}

.ml-plan-feats li.dim {
    opacity: .38;
}

.ml-plan-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    width: 100%;
    padding: 13px;
    border-radius: 11px;
    font-weight: 600;
    font-size: .92rem;
    transition: all .3s;
    cursor: pointer;
    border: 1.5px solid var(--ml-border);
    background: transparent;
    color: var(--ml-text);
}

.ml-plan-btn:hover {
    border-color: var(--ml-accent);
    color: var(--ml-accent);
}

.ml-plan-btn-w {
    background: #fff;
    border-color: transparent;
    color: var(--ml-accent);
    box-shadow: 0 4px 14px rgba(0, 0, 0, .1);
}

.ml-plan-btn-w:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, .16);
}

/* ══════════════ CONTACT ══════════════ */
.ml-contact {
    background: #fff;
}

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

.ml-contact-info .ml-lead {
    margin-bottom: 32px;
}

.ml-citems {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ml-citem {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    padding: 14px 16px;
    background: var(--ml-bg);
    border: 1px solid var(--ml-border);
    border-radius: 14px;
    transition: all .3s;
}

.ml-citem:hover {
    border-color: rgba(0, 72, 181, .22);
    background: var(--ml-red-lt);
}

.ml-citem-ico {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    background: var(--ml-red-lt);
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ml-citem-ico i {
    color: var(--ml-accent);
    font-size: .96rem;
}

.ml-citem-lbl {
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: var(--ml-muted);
    margin-bottom: 1px;
}

.ml-citem-val {
    font-weight: 600;
    font-size: .93rem;
    color: var(--ml-text);
}

.ml-citem-val a {
    color: inherit;
}

.ml-citem-val a:hover {
    color: var(--ml-accent);
}

/* Form */
.ml-form {
    background: var(--ml-bg);
    border: 1.5px solid var(--ml-border);
    border-radius: 26px;
    padding: 38px 32px;
}

.ml-form h3 {
    font-family: var(--font-d);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--ml-text);
    margin-bottom: 5px;
}

.ml-form .sub {
    font-size: .88rem;
    color: var(--ml-muted);
    margin-bottom: 26px;
}

.ml-fg {
    margin-bottom: 16px;
}

.ml-fg label {
    display: block;
    font-size: .82rem;
    font-weight: 600;
    color: var(--ml-text);
    margin-bottom: 6px;
}

.ml-fg input,
.ml-fg select,
.ml-fg textarea {
    width: 100%;
    padding: 12px 15px;
    background: #fff;
    border: 1.5px solid var(--ml-border);
    border-radius: 11px;
    color: var(--ml-text);
    font-size: .93rem;
    font-family: var(--font-b);
    outline: none;
    transition: all .3s;
    -webkit-appearance: none;
}

.ml-fg input::placeholder,
.ml-fg textarea::placeholder {
    color: var(--ml-muted);
}

.ml-fg input:focus,
.ml-fg select:focus,
.ml-fg textarea:focus {
    border-color: rgba(0, 72, 181, .38);
    background: var(--ml-red-lt);
}

.ml-fg select option {
    background: #fff;
    color: var(--ml-text);
}

.ml-fg textarea {
    height: 95px;
    resize: vertical;
}

.ml-fg-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 13px;
}

.ml-submit {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--ml-accent), var(--ml-accent2));
    color: #fff;
    border: none;
    border-radius: 11px;
    font-size: .96rem;
    font-weight: 700;
    font-family: var(--font-b);
    cursor: pointer;
    transition: all .3s;
    box-shadow: 0 8px 26px rgba(0, 72, 181, .23);
}

.ml-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(0, 72, 181, .32);
}



/* ══════════════ RESPONSIVE ══════════════ */
@media (max-width: 992px) {
    body.ml-page .ml-nav-brand {
        width: 62px;
        height: 62px;
        border-radius: 16px;
    }

    .ml-hero-grid,
    .ml-about-grid,
    .ml-app-grid,
    .ml-ai-grid,
    .ml-contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ml-hero-grid {
        padding: 110px 0 60px;
    }

    .ml-hero-right {
        order: -1;
    }

    .ml-hero-char {
        width: 270px;
    }

    .ml-hero-glow {
        width: 360px;
        height: 360px;
    }

    .ml-hero-orbit {
        width: 320px;
        height: 320px;
        bottom: -24px;
    }

    .ml-fbadge {
        display: none;
    }

    .ml-feat-spacer {
        height: auto;
    }

    .ml-feat-sticky {
        position: relative;
        height: auto;
        display: block;
        overflow: visible;
        padding: 90px 0;
    }

    .ml-feat-track-wrap {
        overflow-x: auto;
        overflow-y: visible;
        padding: 8px 24px 8px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .ml-feat-track {
        gap: 18px;
        padding: 0;
        width: max-content;
        will-change: auto;
    }

    .ml-feat-card {
        scroll-snap-align: start;
    }

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

    .ml-how-grid::before {
        display: none;
    }

    .ml-plans-grid {
        grid-template-columns: 1fr;
    }

    .ml-plan.star {
        transform: none;
    }

    .ml-contact-grid {
        gap: 32px;
    }
}

@media (max-width: 767px) {
    body.ml-page .ml-nav-brand {
        width: 54px;
        height: 54px;
        padding: 5px;
        border-radius: 14px;
    }

    .ml-sec {
        padding: 65px 0;
    }

    .ml-wrap {
        padding: 0 16px;
    }

    .ml-hero {
        min-height: auto;
        padding-top: 70px;
    }

    .ml-hero-grid {
        gap: 30px;
        padding: 92px 0 40px;
    }

    .ml-h1 {
        font-size: clamp(2.35rem, 10vw, 3.8rem);
    }

    .ml-h2 {
        font-size: clamp(1.55rem, 8vw, 2.2rem);
    }

    .ml-lead,
    .ml-hero-sub,
    .ml-about-text p,
    .ml-app-text p,
    .ml-ai-text p {
        font-size: .95rem;
        line-height: 1.7;
    }

    .ml-logo-hero {
        width: 110px;
        padding: 8px;
        border-radius: 22px;
        margin-bottom: 18px;
    }

    .ml-hero-glow {
        width: 280px;
        height: 280px;
    }

    .ml-hero-orbit {
        width: 240px;
        height: 240px;
        bottom: -8px;
    }

    .ml-hero-char {
        width: min(240px, 74vw);
    }

    .ml-hero-cta {
        flex-direction: column;
    }

    .ml-btn-p,
    .ml-btn-o {
        width: 100%;
        justify-content: center;
    }

    .ml-about-card,
    .ml-ai-card,
    .ml-plan,
    .ml-form {
        padding: 26px 20px;
        border-radius: 22px;
    }

    .ml-about-char {
        width: 150px;
    }

    .ml-stats {
        grid-template-columns: 1fr;
    }

    .ml-stat {
        padding: 14px 12px;
    }

    .ml-feat-sticky {
        padding: 70px 0;
    }

    .ml-feat-head {
        padding: 0 16px 18px;
    }

    .ml-feat-track-wrap {
        padding: 8px 16px 8px;
    }

    .ml-feat-card {
        width: min(84vw, 290px);
        padding: 28px 20px;
    }

    .ml-feat-dots {
        display: none;
    }

    .ml-app-visual {
        min-height: 300px;
    }

    .ml-app-glow {
        width: 240px;
        height: 240px;
    }

    .ml-app-char {
        width: 200px;
    }

    .ml-how-grid {
        grid-template-columns: 1fr;
    }

    .ml-how-step {
        max-width: 420px;
        margin: 0 auto;
    }

    .ml-fg-row {
        grid-template-columns: 1fr;
    }

    .ml-form {
        padding: 26px 18px;
    }

    .ml-stores {
        flex-direction: column;
    }

    .ml-store-btn {
        width: 100%;
        justify-content: center;
    }

    .ml-citem {
        padding: 14px;
    }

    .ml-citem-val {
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .ml-app-char-back {
        display: none;
    }
}

/* ===== ABOUT US PAGE ===== */
body.about-page {
    background: #fff;
}

.about-page-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(110deg, rgba(18, 12, 10, .72), rgba(128, 0, 0, .42)),
        url("https://plus.unsplash.com/premium_photo-1697729983477-345d7407a0d3?q=80&w=2070&auto=format&fit=crop") center/cover;
}

.about-page-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 180px;
    background: linear-gradient(180deg, transparent, #fff);
    pointer-events: none;
}

.about-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 70px;
    align-items: center;
    padding-top: 120px;
}

.about-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .2);
    color: #e8c88a;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    margin-bottom: 26px;
}

.about-hero-title {
    color: #fff;
    font-size: clamp(3rem, 8vw, 5.4rem);
    font-weight: 800;
    /* line-height: .92; */
    letter-spacing: 0;
    max-width: 780px;
}

.about-hero-title span {
    color: #e8c88a;
}

.about-hero-copy {
    color: rgba(255, 255, 255, .82);
    font-size: 1.08rem;
    line-height: 1.75;
    max-width: 620px;
    margin: 28px 0 34px;
}

.about-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.about-hero-visual {
    position: relative;
    min-height: 560px;
}

.about-float-card {
    position: absolute;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, .22);
    box-shadow: 0 30px 80px rgba(0, 0, 0, .24);
    animation: aboutFloat 7s ease-in-out infinite;
}

.about-float-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.04);
}

.about-float-card.one {
    width: 58%;
    height: 62%;
    top: 4%;
    left: 5%;
}

.about-float-card.two {
    width: 48%;
    height: 44%;
    right: 0;
    top: 26%;
    animation-delay: -1.4s;
}

.about-float-card.three {
    width: 42%;
    height: 32%;
    left: 18%;
    bottom: 0;
    animation-delay: -2.8s;
}

.about-hero-stat {
    position: absolute;
    z-index: 2;
    right: 10%;
    bottom: 8%;
    width: 165px;
    height: 165px;
    border-radius: 50%;
    background: #fff;
    color: var(--accent);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 22px 50px rgba(0, 0, 0, .16);
    animation: rotate 18s linear infinite;
}

.about-hero-stat strong {
    font-size: 2.3rem;
    line-height: 1;
}

.about-hero-stat span {
    max-width: 92px;
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
}

@keyframes aboutFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-22px);
    }
}

.about-shell {
    position: relative;
    overflow: hidden;
}

.about-image-ribbon {
    padding: 92px 0 40px;
    background: #fff;
    overflow: hidden;
}

.presence-strip-section {
    padding: 26px 0 88px;
    background: linear-gradient(180deg, #fff 0%, #f8f6f2 100%);
}

.presence-strip-head {
    max-width: 820px;
    margin-bottom: 38px;
}

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

.presence-strip-card {
    padding: 28px;
    border-radius: 26px;
    background: rgba(255, 255, 255, .84);
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .04);
    transition: transform .4s cubic-bezier(.16, 1, .3, 1), box-shadow .4s, border-color .4s;
}

.presence-strip-card:hover {
    transform: translateY(-8px);
    border-color: rgba(128, 0, 0, .22);
    box-shadow: 0 24px 60px rgba(128, 0, 0, .08);
}

.presence-strip-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    margin-bottom: 18px;
    background: rgba(128, 0, 0, .08);
    color: var(--accent);
    font-size: 1.2rem;
}

.presence-strip-card h3 {
    margin-bottom: 10px;
    color: var(--text-main);
    font-size: 1.26rem;
}

.presence-strip-card p {
    color: var(--text-muted);
    line-height: 1.72;
    font-size: .95rem;
}

.leadership-section {
    padding: 110px 0;
    background: #fff;
}

.leadership-head {
    max-width: 860px;
    margin: 0 auto 46px;
}

.leadership-grid {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: 24px;
    align-items: stretch;
}

.leadership-mini-grid {
    display: grid;
    gap: 24px;
}

.leadership-card {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    border: 1px solid var(--border-color);
    background: #fff;
    box-shadow: 0 22px 60px rgba(0, 0, 0, .05);
    transition: transform .45s cubic-bezier(.16, 1, .3, 1), box-shadow .45s, border-color .45s;
}

.leadership-card:hover {
    transform: translateY(-8px);
    border-color: rgba(128, 0, 0, .22);
    box-shadow: 0 28px 60px rgba(128, 0, 0, .08);
}

.leadership-feature {
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    min-height: 430px;
}

.leadership-feature-media {
    position: relative;
    min-height: 100%;
}

.leadership-feature-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leadership-feature-copy {
    padding: 34px 34px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.leadership-feature-copy h3 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 16px;
}

.leadership-feature-copy p {
    color: var(--text-muted);
    line-height: 1.8;
}

.leadership-points {
    list-style: none;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.leadership-points li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-main);
    font-weight: 600;
}

.leadership-points li i {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(128, 0, 0, .08);
    color: var(--accent);
    font-size: .72rem;
}

.leadership-mini-grid .leadership-card {
    padding: 30px;
    background: linear-gradient(180deg, #f8f6f2 0%, #fff 100%);
}

.leadership-mini-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    margin-bottom: 18px;
    background: linear-gradient(135deg, var(--accent), #4e0000);
    color: #fff;
    font-size: 1.3rem;
}

.leadership-mini-grid h3 {
    margin-bottom: 10px;
    font-size: 1.28rem;
}

.leadership-mini-grid p {
    color: var(--text-muted);
    line-height: 1.75;
}

.ribbon-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: ribbonMove 26s linear infinite;
}

.ribbon-image {
    width: min(34vw, 420px);
    aspect-ratio: 4/5;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 22px 50px rgba(0, 0, 0, .08);
}

.ribbon-image:nth-child(even) {
    margin-top: 60px;
    aspect-ratio: 5/4;
}

.ribbon-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .8s cubic-bezier(.16, 1, .3, 1);
}

.ribbon-image:hover img {
    transform: scale(1.08);
}

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

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

.director-section,
.mission-section,
.presence-section {
    padding: 115px 0;
}

.director-section {
    background: #f8f6f2;
}

.director-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 70px;
    align-items: center;
}

.director-portrait {
    position: relative;
    border-radius: 36px;
    overflow: hidden;
    min-height: 560px;
    box-shadow: 0 26px 70px rgba(0, 0, 0, .1);
}

.director-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.director-badge {
    position: absolute;
    left: 26px;
    bottom: 26px;
    padding: 18px 22px;
    background: rgba(255, 255, 255, .92);
    border-radius: 20px;
    backdrop-filter: blur(12px);
}

.director-badge strong {
    display: block;
    color: var(--text-main);
    font-size: 1rem;
}

.director-badge span {
    color: var(--text-muted);
    font-size: .86rem;
}

.message-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 34px;
    padding: clamp(34px, 5vw, 58px);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .06);
    position: relative;
}

.message-mark {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: #fff;
    font-size: 1.6rem;
    margin-bottom: 28px;
}

.message-card p {
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: 18px;
    font-size: 1rem;
}

.mission-section {
    background: #fff;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
    margin-top: 52px;
}

.values-wrap {
    margin-top: 70px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-top: 44px;
}

.value-card {
    position: relative;
    overflow: hidden;
    padding: 28px 24px;
    border-radius: 28px;
    background: #fff;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 44px rgba(0, 0, 0, .04);
    transition: transform .4s cubic-bezier(.16, 1, .3, 1), box-shadow .4s, border-color .4s;
}

.value-card:hover {
    transform: translateY(-8px);
    border-color: rgba(128, 0, 0, .22);
    box-shadow: 0 24px 60px rgba(128, 0, 0, .08);
}

.value-card::after {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    right: -70px;
    bottom: -70px;
    border-radius: 50%;
    background: rgba(128, 0, 0, .07);
}

.value-icon {
    position: relative;
    z-index: 2;
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    margin-bottom: 18px;
    background: rgba(128, 0, 0, .08);
    color: var(--accent);
    font-size: 1.15rem;
}

.value-card h3 {
    position: relative;
    z-index: 2;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.value-card p {
    position: relative;
    z-index: 2;
    color: var(--text-muted);
    line-height: 1.75;
    font-size: .95rem;
}

.mv-card {
    position: relative;
    overflow: hidden;
    min-height: 390px;
    padding: 42px;
    border-radius: 34px;
    background: #f4f5f7;
    border: 1px solid var(--border-color);
    transition: transform .45s cubic-bezier(.16, 1, .3, 1), box-shadow .45s;
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 60px rgba(128, 0, 0, .12);
}

.mv-card::after {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    right: -90px;
    bottom: -90px;
    border-radius: 50%;
    background: rgba(128, 0, 0, .08);
}

.mv-icon {
    width: 74px;
    height: 74px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, var(--accent), #4e0000);
    font-size: 1.6rem;
    margin-bottom: 34px;
}

.mv-card h3 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    margin-bottom: 18px;
    color: var(--text-main);
}

.mv-card p {
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 520px;
}

.presence-section {
    background: linear-gradient(180deg, #f8f6f2 0%, #fff 100%);
}

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

.presence-map {
    position: relative;
    min-height: 520px;
    border-radius: 36px;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(128, 0, 0, .86), rgba(62, 0, 0, .78)),
        url("https://images.unsplash.com/photo-1601581875039-e899893d520c?q=80&w=1974&auto=format&fit=crop") center/cover;
    box-shadow: 0 28px 80px rgba(0, 0, 0, .12);
}

.presence-pin {
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #e8c88a;
    box-shadow: 0 0 0 14px rgba(232, 200, 138, .18), 0 0 0 28px rgba(232, 200, 138, .1);
    animation: pinPulse 2.5s ease-in-out infinite;
}

.presence-pin.one {
    top: 30%;
    left: 53%;
}

.presence-pin.two {
    top: 50%;
    left: 42%;
    animation-delay: .45s;
}

.presence-pin.three {
    top: 62%;
    left: 62%;
    animation-delay: .9s;
}

@keyframes pinPulse {

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

    50% {
        transform: scale(1.24);
    }
}

.presence-card {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 28px;
    padding: 24px;
    border-radius: 24px;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(14px);
}

.presence-card h3 {
    margin-bottom: 8px;
    color: var(--accent);
}

.presence-card p {
    color: var(--text-muted);
    line-height: 1.7;
}

.presence-list {
    display: grid;
    gap: 16px;
    margin-top: 32px;
}

.presence-item {
    display: flex;
    gap: 16px;
    padding: 18px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid var(--border-color);
    transition: transform .35s, border-color .35s;
}

.presence-item:hover {
    transform: translateX(8px);
    border-color: rgba(128, 0, 0, .25);
}

.presence-item i {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    background: rgba(128, 0, 0, .08);
    color: var(--accent);
}

.presence-item h4 {
    margin-bottom: 4px;
}

.presence-item p {
    color: var(--text-muted);
    font-size: .94rem;
    line-height: 1.6;
}

.branches-section {
    padding: 0 0 96px;
    background: #fff;
}

.branches-card {
    display: grid;
    grid-template-columns: 1.05fr .95fr auto;
    gap: 24px;
    align-items: center;
    padding: 34px;
    border-radius: 32px;
    background: linear-gradient(135deg, #f8f6f2, #fff);
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 54px rgba(0, 0, 0, .05);
}

.branches-copy p {
    margin-top: 12px;
    color: var(--text-muted);
    line-height: 1.75;
    max-width: 560px;
}

.branches-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-content: center;
}

.branches-list span {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 8px 16px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--border-color);
    color: var(--text-main);
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .04);
}

.branches-actions {
    display: flex;
    justify-content: flex-end;
}

.about-progress {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2000;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--gold));
}

.team-section.about-team {
    background: #fff;
    padding-top: 110px;
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity .8s ease, transform .8s cubic-bezier(.16, 1, .3, 1);
}

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

@media (max-width: 992px) {

    .about-hero-grid,
    .director-grid,
    .presence-grid,
    .leadership-grid,
    .branches-card {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .about-hero-visual {
        min-height: 450px;
    }

    .mv-grid,
    .values-grid,
    .presence-strip-grid {
        grid-template-columns: 1fr;
    }

    .leadership-feature {
        grid-template-columns: 1fr;
    }

    .leadership-feature-media {
        min-height: 320px;
    }

    .ribbon-image {
        width: 58vw;
    }
}

@media (max-width: 767px) {
    .about-page-hero {
        min-height: auto;
        padding: 120px 0 70px;
    }

    .about-hero-grid {
        padding-top: 0;
    }

    .about-hero-actions {
        flex-direction: column;
    }

    .about-hero-actions .btn {
        width: 100%;
    }

    .about-hero-visual {
        min-height: 360px;
    }

    .about-float-card.one {
        width: 66%;
        left: 0;
    }

    .about-float-card.two {
        width: 58%;
    }

    .about-hero-stat {
        width: 132px;
        height: 132px;
        right: 4%;
    }

    .director-section,
    .mission-section,
    .presence-section {
        padding: 78px 0;
    }

    .director-portrait,
    .presence-map {
        min-height: 420px;
    }

    .mv-card {
        padding: 30px;
        min-height: 330px;
    }

    .leadership-section {
        padding: 78px 0;
    }

    .presence-strip-section {
        padding: 18px 0 70px;
    }

    .presence-strip-card,
    .branches-card {
        padding: 24px 20px;
    }

    .branches-section {
        padding-bottom: 78px;
    }

    .branches-actions .btn {
        width: 100%;
    }

    .ribbon-image {
        width: 76vw;
    }
}

/* ===== SERVICES LIST PAGE ===== */
body.services-page {
    background: #fff;
}

.services-scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2000;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--gold));
}

.services-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #12080c;
}

.services-hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg, rgba(18, 8, 12, .94) 0%, rgba(128, 0, 0, .72) 48%, rgba(18, 8, 12, .88) 100%),
        url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=2070&auto=format&fit=crop") center/cover;
    transform: scale(1.05);
    animation: servicesHeroDrift 16s ease-in-out infinite alternate;
}

.services-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 170px;
    background: linear-gradient(180deg, transparent, #fff);
    pointer-events: none;
}

@keyframes servicesHeroDrift {
    from {
        transform: scale(1.05) translateX(-10px);
    }

    to {
        transform: scale(1.1) translateX(12px);
    }
}

.services-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 70px;
    align-items: center;
    padding-top: 120px;
}

.services-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    margin-bottom: 24px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .2);
    color: #e8c88a;
    font-size: .82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    backdrop-filter: blur(10px);
}

.services-hero-copy h1 {
    color: #fff;
    font-size: clamp(3rem, 7.5vw, 6rem);
    font-weight: 800;
    line-height: .96;
    letter-spacing: 0;
    max-width: 780px;
}

.services-hero-copy p {
    max-width: 620px;
    margin: 28px 0 34px;
    color: rgba(255, 255, 255, .82);
    font-size: 1.08rem;
    line-height: 1.75;
}

.services-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.services-hero .btn-outline {
    border-color: rgba(255, 255, 255, .42);
    color: #fff;
    background: rgba(255, 255, 255, .06);
}

.services-hero .btn-outline:hover {
    background: rgba(255, 255, 255, .14);
}

.services-hero-panel {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-orbit {
    position: relative;
    width: min(90vw, 460px);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-orbit-ring {
    position: absolute;
    inset: 12%;
    border-radius: 50%;
    border: 1px dashed rgba(232, 200, 138, .46);
    animation: rotate 24s linear infinite;
}

.services-orbit::before,
.services-orbit::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .14);
}

.services-orbit::before {
    inset: 0;
}

.services-orbit::after {
    inset: 24%;
    background: rgba(128, 0, 0, .24);
}

.services-orbit img {
    position: relative;
    z-index: 2;
    width: 54%;
    filter: drop-shadow(0 28px 44px rgba(0, 0, 0, .32));
    animation: servicesFloat 5.6s ease-in-out infinite;
}

@keyframes servicesFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-18px);
    }
}

.services-orbit-dot {
    position: absolute;
    z-index: 3;
    width: 74px;
    height: 74px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .18);
}

.services-orbit-dot::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--accent);
    font-size: 1.35rem;
}

.services-orbit-dot.dot-one {
    top: 9%;
    right: 13%;
    animation: servicesFloat 5s ease-in-out infinite;
}

.services-orbit-dot.dot-one::before {
    content: "\f2c2";
}

.services-orbit-dot.dot-two {
    left: 2%;
    top: 46%;
    animation: servicesFloat 5.8s ease-in-out .5s infinite;
}

.services-orbit-dot.dot-two::before {
    content: "\f1ad";
}

.services-orbit-dot.dot-three {
    right: 6%;
    bottom: 12%;
    animation: servicesFloat 6.2s ease-in-out 1s infinite;
}

.services-orbit-dot.dot-three::before {
    content: "\f058";
}

.services-quick-card {
    position: absolute;
    left: 0;
    bottom: 8%;
    z-index: 4;
    width: min(280px, 78vw);
    padding: 22px;
    border-radius: 24px;
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(255, 255, 255, .48);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .18);
    backdrop-filter: blur(14px);
}

.services-quick-card span {
    display: block;
    margin-bottom: 4px;
    color: var(--gold);
    font-size: .78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .09em;
}

.services-quick-card strong {
    display: block;
    color: var(--accent);
    font-size: 1.55rem;
    line-height: 1;
}

.services-quick-card p {
    margin-top: 10px;
    color: var(--text-muted);
    line-height: 1.55;
    font-size: .92rem;
}

.services-overview-section {
    padding: 90px 0 40px;
    background:
        radial-gradient(circle at 10% 20%, rgba(198, 168, 124, .18), transparent 28%),
        #fff;
}

.services-overview-card {
    position: relative;
    max-width: 920px;
    margin: 0 auto;
    padding: 56px 42px 36px;
    border-radius: 38px;
    background:
        linear-gradient(150deg, rgba(194, 45, 105, .96), rgba(142, 0, 65, .96)),
        linear-gradient(135deg, #7b003d, #c73275);
    color: #fff;
    text-align: center;
    overflow: visible;
    box-shadow: 0 26px 70px rgba(128, 0, 0, .18);
}

.services-overview-card::before,
.services-overview-card::after {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    pointer-events: none;
}

.services-overview-card::before {
    top: -120px;
    left: -80px;
}

.services-overview-card::after {
    right: -100px;
    bottom: -130px;
}

.overview-badge {
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    padding: 7px 28px;
    border-radius: 999px;
    background: #fff;
    color: #970044;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .04em;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .12);
}

.services-overview-card h2 {
    position: relative;
    z-index: 2;
    color: #fff;
    font-size: clamp(1.65rem, 3vw, 2.4rem);
    line-height: 1.18;
    margin-bottom: 22px;
}

.overview-pill-list {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

.overview-pill-list span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 8px 30px;
    border-radius: 999px;
    background: #47001f;
    color: #fff;
    font-size: clamp(.9rem, 2vw, 1.08rem);
    font-weight: 800;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12);
    transition: transform .35s cubic-bezier(.16, 1, .3, 1), background .35s;
}

.overview-pill-list span:hover {
    transform: translateX(8px) scale(1.03);
    background: #260010;
}

.services-overview-card p {
    position: relative;
    z-index: 2;
    color: #fff;
    font-size: clamp(1rem, 2vw, 1.18rem);
    font-weight: 800;
    line-height: 1.22;
}

.services-list-section {
    padding: 110px 0;
    background: #fff;
}

.services-list-section.setup-section {
    background: linear-gradient(180deg, #f8f6f2 0%, #fff 100%);
}

.services-section-head {
    max-width: 840px;
    margin-bottom: 52px;
}

.service-list-grid {
    display: grid;
    gap: 18px;
}

.service-list-item {
    position: relative;
    display: grid;
    grid-template-columns: 76px 72px minmax(0, 1fr) auto;
    gap: 22px;
    align-items: center;
    padding: 24px;
    border-radius: 28px;
    background: #fff;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition:
        transform .45s cubic-bezier(.16, 1, .3, 1),
        border-color .45s,
        box-shadow .45s,
        background .45s;
}

.setup-section .service-list-item {
    background: rgba(255, 255, 255, .82);
}

.service-list-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(128, 0, 0, .09), rgba(198, 168, 124, .12));
    transform: translateX(-105%);
    transition: transform .55s cubic-bezier(.16, 1, .3, 1);
}

.service-list-item::after {
    content: "";
    position: absolute;
    width: 160px;
    height: 160px;
    right: -90px;
    top: 50%;
    border-radius: 50%;
    background: rgba(128, 0, 0, .08);
    transform: translateY(-50%) scale(.6);
    opacity: 0;
    transition: transform .45s, opacity .45s;
}

.service-list-item:hover {
    transform: translateY(-8px) scale(1.01);
    border-color: rgba(128, 0, 0, .24);
    box-shadow: 0 24px 60px rgba(128, 0, 0, .11);
}

.service-list-item:hover::before {
    transform: translateX(0);
}

.service-list-item:hover::after {
    transform: translateY(-50%) scale(1);
    opacity: 1;
}

.service-item-number,
.service-item-icon,
.service-item-content,
.service-learn-btn {
    position: relative;
    z-index: 2;
}

.service-item-number {
    color: rgba(128, 0, 0, .22);
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    transition: color .35s, transform .35s;
}

.service-list-item:hover .service-item-number {
    color: var(--accent);
    transform: translateX(6px);
}

.service-item-icon {
    width: 66px;
    height: 66px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: rgba(128, 0, 0, .08);
    color: var(--accent);
    font-size: 1.35rem;
    transition: transform .45s cubic-bezier(.16, 1, .3, 1), background .35s, color .35s;
}

.service-list-item:hover .service-item-icon {
    transform: rotate(-8deg) scale(1.08);
    background: var(--accent);
    color: #fff;
}

.service-item-content h3 {
    margin-bottom: 8px;
    color: var(--text-main);
    font-size: clamp(1.15rem, 2vw, 1.45rem);
}

.service-item-content p {
    max-width: 720px;
    color: var(--text-muted);
    line-height: 1.7;
    font-size: .96rem;
}

.service-learn-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-width: 138px;
    padding: 12px 18px;
    border-radius: 999px;
    background: transparent;
    border: 1px solid rgba(128, 0, 0, .22);
    color: var(--accent);
    font-weight: 700;
    font-size: .9rem;
    white-space: nowrap;
    transition: transform .35s cubic-bezier(.16, 1, .3, 1), background .35s, color .35s, box-shadow .35s;
}

.service-learn-btn i {
    transition: transform .35s;
}

.service-list-item:hover .service-learn-btn {
    background: var(--accent);
    color: #fff;
    transform: translateX(-8px);
    box-shadow: 0 14px 34px rgba(128, 0, 0, .2);
}

.service-list-item:hover .service-learn-btn i {
    transform: translateX(5px);
}

.services-cta-band {
    padding: 90px 0;
    background: #fff;
}

.services-cta-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 34px;
    align-items: center;
    padding: 48px;
    border-radius: 34px;
    background: linear-gradient(135deg, #f8f6f2, #fff);
    border: 1px solid var(--border-color);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .06);
}

.services-cta-grid h2 {
    color: var(--text-main);
    font-size: clamp(2rem, 4vw, 3.4rem);
    margin-bottom: 12px;
}

.services-cta-grid p {
    color: var(--text-muted);
    max-width: 620px;
    line-height: 1.7;
}

@media (max-width: 992px) {

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

    .services-hero-panel {
        min-height: 430px;
        order: -1;
    }

    .service-list-item {
        grid-template-columns: 54px 62px minmax(0, 1fr);
    }

    .service-learn-btn {
        grid-column: 3;
        justify-self: start;
    }
}

@media (max-width: 767px) {
    .services-hero {
        min-height: auto;
        padding: 120px 0 72px;
    }

    .services-hero-grid {
        padding-top: 0;
        gap: 36px;
    }

    .services-hero-actions {
        flex-direction: column;
    }

    .services-hero-actions .btn {
        width: 100%;
    }

    .services-hero-panel {
        min-height: 340px;
    }

    .services-orbit-dot {
        width: 56px;
        height: 56px;
        border-radius: 17px;
    }

    .services-quick-card {
        left: 50%;
        bottom: -4px;
        transform: translateX(-50%);
    }

    .services-overview-section {
        padding-top: 76px;
    }

    .services-overview-card {
        padding: 48px 18px 30px;
        border-radius: 28px;
    }

    .overview-pill-list span {
        width: 100%;
        padding-left: 16px;
        padding-right: 16px;
    }

    .services-list-section {
        padding: 78px 0;
    }

    .service-list-item {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 22px;
    }

    .service-item-number {
        font-size: 1.4rem;
    }

    .service-learn-btn {
        grid-column: auto;
        width: 100%;
    }

    .service-list-item:hover .service-learn-btn {
        transform: translateY(-2px);
    }

    .services-cta-grid {
        padding: 30px 22px;
    }

    .services-cta-grid .btn {
        width: 100%;
    }
}

/* ===== CORPORATE SERVICES PAGE ===== */
body.corporate-services-page {
    background: #f6f2ee;
}

.corporate-scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2000;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #b61d63, var(--accent), var(--gold));
}

.corporate-services-page .navbar .nav-links a {
    color: rgba(255, 255, 255, 0.86);
}

.corporate-services-page .navbar .nav-links a:hover,
.corporate-services-page .navbar .nav-links a.active {
    color: #fff;
}

.corporate-services-page .navbar.scrolled .nav-links a {
    color: var(--text-muted);
}

.corporate-services-page .navbar.scrolled .nav-links a:hover,
.corporate-services-page .navbar.scrolled .nav-links a.active {
    color: var(--accent);
}

.corporate-hero {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    background:
        radial-gradient(circle at 16% 18%, rgba(255, 255, 255, 0.12), transparent 18%),
        linear-gradient(135deg, #17060d 0%, #4e001f 42%, #18070d 100%);
}

.corporate-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 180px;
    background: linear-gradient(180deg, transparent, #f6f2ee);
    pointer-events: none;
}

.corporate-hero-pattern {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        radial-gradient(circle at 72% 34%, rgba(232, 200, 138, 0.24), transparent 24%);
    background-size: 44px 44px, 44px 44px, cover;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.45));
    animation: corporatePatternDrift 20s linear infinite;
}

@keyframes corporatePatternDrift {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(-22px, 14px, 0);
    }
}

.corporate-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(480px, 0.95fr);
    gap: 56px;
    align-items: center;
    padding-top: 132px;
    padding-bottom: 88px;
}

.corporate-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    margin-bottom: 24px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #e8c88a;
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    backdrop-filter: blur(10px);
}

.corporate-hero-copy h1 {
    color: #fff;
    font-size: clamp(3.3rem, 8vw, 6.3rem);
    line-height: 0.98;
    letter-spacing: -0.04em;
    margin-bottom: 22px;
    max-width: 760px;
}

.corporate-hero-copy h1 span {
    display: block;
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.68);
    font-size: clamp(1.15rem, 2vw, 1.65rem);
    font-weight: 600;
    line-height: 1.28;
    letter-spacing: 0;
}

.corporate-hero-copy p {
    max-width: 640px;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.06rem;
    line-height: 1.78;
}

.corporate-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.corporate-hero .btn-outline {
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
}

.corporate-hero .btn-outline:hover {
    background: rgba(255, 255, 255, 0.14);
}

.corporate-hero-notes {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    max-width: 620px;
    margin-top: 34px;
}

.corporate-note-chip {
    padding: 18px 20px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: #fff;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(14px);
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.corporate-note-chip.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.corporate-note-chip span {
    display: block;
    margin-bottom: 6px;
    color: #e8c88a;
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.corporate-note-chip strong {
    display: block;
    font-size: 1rem;
    line-height: 1.4;
}

.corporate-hero-visual {
    position: relative;
    --pointer-x: 0px;
    --pointer-y: 0px;
    --visual-shift: 0px;
    transform: translate3d(var(--pointer-x), calc(var(--pointer-y) + var(--visual-shift)), 0);
    transition: transform 0.35s ease;
}

.corporate-visual-board {
    position: relative;
    min-height: 700px;
    max-width: 720px;
    margin-left: auto;
    padding: 28px;
    border-radius: 44px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.09);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.corporate-visual-board::before,
.corporate-visual-board::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.corporate-visual-board::before {
    inset: 22px;
    border-radius: 34px;
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.corporate-visual-board::after {
    inset: auto 22px 22px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.corporate-visual-glow {
    position: absolute;
    inset: 10% 14% auto;
    height: 70%;
    border-radius: 50%;
    background:
        radial-gradient(circle at 45% 40%, rgba(213, 65, 131, 0.5), transparent 28%),
        radial-gradient(circle at 70% 65%, rgba(232, 200, 138, 0.22), transparent 26%),
        radial-gradient(circle at 22% 75%, rgba(86, 0, 43, 0.64), transparent 24%);
    filter: blur(28px);
    animation: corporateGlowPulse 8s ease-in-out infinite;
}

@keyframes corporateGlowPulse {

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

    50% {
        transform: scale(1.08);
        opacity: 1;
    }
}

.corporate-visual-card {
    position: absolute;
    z-index: 2;
    backdrop-filter: blur(14px);
}

.corporate-visual-card {
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.18);
}

.corporate-visual-card--main {
    top: 50%;
    left: 50%;
    width: min(320px, 70%);
    padding: 36px 28px;
    text-align: center;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 240, 238, 0.96));
    transform: translate(-50%, -50%);
}

.corporate-visual-card--main img {
    width: 128px;
    margin: 0 auto 12px;
    display: block;
}

.corporate-visual-card--main strong {
    display: block;
    color: #0a3fa8;
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.corporate-visual-card--main small {
    display: block;
    margin-top: 6px;
    color: #5e0026;
    font-weight: 700;
}

.corporate-visual-card--main p {
    margin-top: 14px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.corporate-visual-card--service {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    max-width: 200px;
    padding: 16px 18px;
    background: rgba(255, 255, 255, 0.13);
    color: #fff;
    animation: corporateServiceFloat 7s ease-in-out infinite;
}

.corporate-visual-card--service i {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
    color: #f3d190;
    flex-shrink: 0;
}

.corporate-visual-card--service span {
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.35;
}

.card-business {
    top: 8%;
    left: 6%;
    animation-delay: -0.5s;
}

.card-pro {
    top: 7%;
    right: 6%;
    animation-delay: -1.8s;
}

.card-relations {
    top: 30%;
    right: -1%;
    animation-delay: -2.6s;
}

.card-employee {
    top: 30%;
    left: -1%;
    animation-delay: -1.2s;
}

.card-prequal {
    top: 45%;
    left: 4%;
    max-width: 216px;
    animation-delay: -2s;
}

.card-sponsor {
    top: 18%;
    right: 18%;
    max-width: 188px;
    animation-delay: -2.8s;
}

.card-payroll {
    left: 2%;
    bottom: 24%;
    animation-delay: -1.3s;
}

.card-compliance {
    right: 8%;
    bottom: 16%;
    animation-delay: -2.1s;
}

.card-tax {
    bottom: 3%;
    left: 50%;
    transform: translateX(-50%);
    max-width: 250px;
    animation-delay: -0.9s;
}

.card-classification {
    left: 18%;
    bottom: 8%;
    max-width: 202px;
    animation-delay: -1.7s;
}

.card-approvals {
    right: 4%;
    bottom: 38%;
    max-width: 192px;
    animation-delay: -2.4s;
}

@keyframes corporateServiceFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

.corporate-summary-band {
    position: relative;
    z-index: 3;
    margin-top: -34px;
    padding-bottom: 34px;
}

.corporate-summary-marquee {
    overflow: hidden;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(128, 0, 0, 0.12);
    box-shadow: 0 20px 44px rgba(17, 17, 17, 0.08);
}

.corporate-summary-track {
    display: flex;
    align-items: center;
    gap: 18px;
    width: max-content;
    padding: 18px 0;
    animation: corporateMarquee 24s linear infinite;
}

.corporate-summary-track span {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding-left: 26px;
    color: var(--accent);
    font-weight: 800;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.corporate-summary-track span::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d54183, var(--gold));
    box-shadow: 0 0 0 6px rgba(213, 65, 131, 0.1);
}

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

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

.corporate-intro-section {
    padding: 72px 0 104px;
}

.corporate-intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 32px;
    align-items: start;
}

.corporate-intro-copy p {
    max-width: 680px;
    margin-top: 18px;
    color: var(--text-muted);
    font-size: 1.02rem;
    line-height: 1.78;
}

.corporate-assurance-stack {
    display: grid;
    gap: 16px;
}

.corporate-assurance-card {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
    padding: 24px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(128, 0, 0, 0.08);
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.05);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease;
}

.corporate-assurance-card:hover {
    transform: translateY(-8px);
    border-color: rgba(128, 0, 0, 0.2);
}

.corporate-assurance-icon {
    width: 72px;
    height: 72px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(128, 0, 0, 0.12), rgba(198, 168, 124, 0.2));
    color: var(--accent);
    font-size: 1.5rem;
}

.corporate-assurance-card h3 {
    margin-bottom: 8px;
    font-size: 1.3rem;
}

.corporate-assurance-card p {
    color: var(--text-muted);
    line-height: 1.72;
}

.corporate-scope-section {
    padding: 0 0 104px;
}

.corporate-scope-shell {
    position: relative;
    padding: 82px 34px 34px;
    border-radius: 38px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.98)),
        #fff;
    border: 2px solid rgba(166, 23, 88, 0.44);
    box-shadow: 0 24px 70px rgba(78, 0, 31, 0.08);
    overflow: hidden;
}

.corporate-scope-shell::before {
    content: "";
    position: absolute;
    inset: auto -6% 0;
    height: 280px;
    background:
        linear-gradient(180deg, rgba(225, 118, 168, 0), rgba(225, 118, 168, 0.22)),
        radial-gradient(circle at 15% 100%, rgba(128, 0, 0, 0.18), transparent 24%),
        radial-gradient(circle at 85% 100%, rgba(128, 0, 0, 0.14), transparent 22%);
    pointer-events: none;
}

/* .corporate-scope-shell::after {
    content: "";
    position: absolute;
    top: 38px;
    right: 34px;
    width: 72px;
    height: 20px;
    border-radius: 999px;
    background: linear-gradient(90deg, #d14182, #b11a5f);
    box-shadow: 0 0 0 10px rgba(209, 65, 130, 0.08);
} */

.corporate-scope-head {
    position: absolute;
    inset: 0 0 auto;
    top: 0;
    display: flex;
    justify-content: center;
    width: 100%;
    pointer-events: none;
}

.corporate-scope-title {
    top:40px;
    position: relative;
    left: 0;
    transform: translateY(-50%);
    text-align: center;
    padding: 12px 34px;
    border-radius: 999px;
    background: linear-gradient(135deg, #f9f1f5, #ffffff);
    border: 1px solid rgba(128, 0, 0, 0.28);
    color: #5e0026;
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    font-weight: 800;
    line-height: 1;
    box-shadow: 0 16px 40px rgba(17, 17, 17, 0.08);
}

.corporate-scope-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.scope-service-card {
    position: relative;
    padding: 24px 24px 22px 92px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(128, 0, 0, 0.08);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.04);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease, box-shadow 0.35s ease;
}

.scope-service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(128, 0, 0, 0.2);
    box-shadow: 0 24px 48px rgba(128, 0, 0, 0.08);
}

.scope-service-icon {
    position: absolute;
    left: 22px;
    top: 22px;
    width: 52px;
    height: 52px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(128, 0, 0, 0.1), rgba(198, 168, 124, 0.18));
    color: var(--accent);
    font-size: 1.2rem;
}

.scope-service-card h3 {
    margin-bottom: 8px;
    color: #5e0026;
    font-size: 1.22rem;
}

.scope-service-card p {
    color: var(--text-muted);
    line-height: 1.72;
}

.corporate-fee-note {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    margin-top: 26px;
    padding: 22px 24px;
    border-radius: 28px;
    background: linear-gradient(135deg, #5e0026, #8f0f4c);
    color: #fff;
}

.corporate-fee-note-icon {
    width: 64px;
    height: 64px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    font-size: 1.35rem;
    color: #f4d396;
}

.corporate-fee-note p {
    font-size: 1rem;
    line-height: 1.72;
}

.corporate-cta-band {
    padding: 0 0 90px;
}

.corporate-cta-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    padding: 46px;
    border-radius: 34px;
    background: linear-gradient(135deg, #fff, #f7ede5);
    border: 1px solid rgba(128, 0, 0, 0.08);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.06);
}

.corporate-cta-grid h2 {
    font-size: clamp(2rem, 4vw, 3.4rem);
    margin-bottom: 12px;
}

.corporate-cta-grid p {
    max-width: 700px;
    color: var(--text-muted);
    line-height: 1.72;
}

@media (max-width: 1200px) {
    .corporate-hero-grid {
        grid-template-columns: 1fr;
    }

    .corporate-hero-visual {
        max-width: 780px;
        margin: 0 auto;
    }

    .corporate-intro-grid,
    .corporate-cta-grid {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 992px) {
    .corporate-hero {
        min-height: auto;
    }

    .corporate-hero-grid {
        gap: 40px;
        padding-bottom: 72px;
    }

    .corporate-visual-board {
        min-height: 700px;
        max-width: 640px;
    }

    .card-relations,
    .card-tax {
        max-width: 220px;
    }

    .corporate-scope-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .corporate-hero-grid {
        padding-top: 118px;
    }

    .corporate-hero-actions {
        flex-direction: column;
    }

    .corporate-hero-actions .btn,
    .corporate-cta-grid .btn {
        width: 100%;
    }

    .corporate-hero-notes {
        grid-template-columns: 1fr;
    }

    .corporate-visual-board {
        min-height: auto;
        display: grid;
        gap: 14px;
        padding: 20px;
    }

    .corporate-visual-glow {
        inset: 22% 4% auto;
        height: 34%;
    }

    .corporate-visual-card,
    .corporate-visual-card--main,
    .corporate-visual-card--service,
    .card-business,
    .card-pro,
    .card-relations,
    .card-employee,
    .card-prequal,
    .card-sponsor,
    .card-payroll,
    .card-compliance,
    .card-tax,
    .card-classification,
    .card-approvals {
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
        width: 100%;
        max-width: 100%;
        transform: none;
        animation: none;
    }

    .corporate-visual-card--main {
        order: -1;
        width: 100%;
        padding: 30px 22px;
    }

    .corporate-visual-card--main img {
        width: 112px;
    }

    .corporate-visual-card--service {
        background: rgba(255, 255, 255, 0.1);
        width: 100%;
        max-width: 100%;
    }

    .corporate-summary-band {
        margin-top: -12px;
    }

    .corporate-summary-track {
        padding: 14px 0;
    }

    .corporate-intro-section {
        padding: 54px 0 78px;
    }

    .corporate-assurance-card,
    .corporate-fee-note {
        grid-template-columns: 1fr;
    }

    .corporate-scope-shell {
        padding: 72px 18px 20px;
        border-radius: 28px;
    }

    .corporate-scope-title {
        padding: 10px 20px;
        text-align: center;
    }

    .scope-service-card {
        padding: 88px 18px 20px;
    }

    .corporate-cta-grid {
        padding: 30px 22px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .corporate-hero-pattern,
    .corporate-visual-glow,
    .corporate-visual-card--service,
    .corporate-summary-track {
        animation: none;
    }

    .corporate-hero-visual {
        transform: none;
    }
}

/* ===== PRO SERVICES PAGE ===== */
body.pro-detail-page {
    background: #f7f1ed;
}

.pro-scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2000;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #d93d86, var(--accent), var(--gold));
}

.pro-detail-page .navbar .nav-links a {
    color: rgba(255, 255, 255, 0.86);
}

.pro-detail-page .navbar .nav-links a:hover,
.pro-detail-page .navbar .nav-links a.active {
    color: #fff;
}

.pro-detail-page .navbar.scrolled .nav-links a {
    color: var(--text-muted);
}

.pro-detail-page .navbar.scrolled .nav-links a:hover,
.pro-detail-page .navbar.scrolled .nav-links a.active {
    color: var(--accent);
}

.pro-hero {
    position: relative;
    padding: 120px 0 38px;
    overflow: hidden;
    background:
        radial-gradient(circle at 18% 14%, rgba(255, 255, 255, 0.1), transparent 18%),
        linear-gradient(180deg, #0b0b0d 0%, #240614 100%);
}

.pro-hero-pattern {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.38));
    animation: proPatternDrift 18s linear infinite;
}

@keyframes proPatternDrift {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(-24px, 16px, 0);
    }
}

.pro-hero-stage {
    position: relative;
    min-height: 760px;
    border-radius: 42px;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01)),
        linear-gradient(135deg, #121215 0%, #1e0611 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.25);
    --hero-x: 0px;
    --hero-y: 0px;
    --hero-scale: 1;
    transform: translate3d(var(--hero-x), var(--hero-y), 0) scale(var(--hero-scale));
    transition: transform 0.25s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.pro-hero-stage.is-focus {
    border-color: rgba(255, 255, 255, 0.16);
    box-shadow: 0 40px 110px rgba(0, 0, 0, 0.3);
}

.pro-hero-stage::before {
    content: "";
    position: absolute;
    inset: 0 0 0 auto;
    width: 66%;
    background: linear-gradient(135deg, rgba(244, 74, 157, 0.96), rgba(112, 9, 62, 0.96));
    clip-path: polygon(30% 0, 100% 0, 100% 70%, 0 70%);
}

.pro-hero-stage::after {
    content: "";
    position: absolute;
    left: -12%;
    right: -12%;
    bottom: 62px;
    height: 16px;
    background: linear-gradient(90deg, rgba(113, 9, 63, 0.9), rgba(233, 70, 149, 0.9), rgba(113, 9, 63, 0.9));
    box-shadow: 0 18px 28px rgba(0, 0, 0, 0.25);
}

.pro-ribbon {
    position: absolute;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02));
    animation: proRibbonMove 10s ease-in-out infinite;
}

.pro-ribbon-a {
    right: 9%;
    bottom: 94px;
    width: 320px;
    height: 74px;
    clip-path: polygon(18% 0, 100% 0, 82% 100%, 0 100%);
}

.pro-ribbon-b {
    right: 19%;
    bottom: 94px;
    width: 240px;
    height: 74px;
    background: linear-gradient(90deg, rgba(189, 32, 106, 0.7), rgba(255, 255, 255, 0.04));
    clip-path: polygon(18% 0, 100% 0, 82% 100%, 0 100%);
    animation-delay: -2s;
}

.pro-ribbon-c {
    left: -4%;
    bottom: 48px;
    width: 430px;
    height: 10px;
    background: linear-gradient(90deg, rgba(185, 31, 103, 0.86), rgba(110, 8, 60, 0.9));
    animation-delay: -4s;
}

@keyframes proRibbonMove {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(12px);
    }
}

.pro-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: 44px;
    min-height: 760px;
    padding: 48px;
}

.pro-hero-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 34px;
}

.pro-hero-kicker {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #f0d39d;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    backdrop-filter: blur(10px);
}

.pro-hero-left h1 {
    color: #fff;
    font-size: clamp(3.3rem, 8vw, 6.2rem);
    line-height: 0.94;
    letter-spacing: -0.05em;
    max-width: 620px;
}

.pro-hero-left h1 span {
    display: block;
    color: rgba(255, 255, 255, 0.92);
    font-weight: 300;
    animation: proTextDrift 6s ease-in-out infinite;
}

@keyframes proTextDrift {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(6px);
    }
}

.pro-hero-photo {
    position: relative;
    width: min(460px, 88%);
    min-height: 340px;
    margin-top: auto;
    border-radius: 28px;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.58)),
        url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=1600&auto=format&fit=crop") center/cover;
    filter: grayscale(1);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.28);
    clip-path: polygon(0 0, 70% 0, 100% 100%, 0 100%);
    transform-origin: center;
    animation: proPhotoBreath 7.5s ease-in-out infinite;
}

.pro-hero-photo::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.12));
}

.pro-hero-photo::after {
    content: "";
    position: absolute;
    inset: -20% auto -20% -35%;
    width: 28%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
    transform: rotate(18deg);
    animation: proShineSweep 8s ease-in-out infinite;
}

@keyframes proPhotoBreath {

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

    50% {
        transform: scale(1.035);
    }
}

@keyframes proShineSweep {

    0%,
    100% {
        left: -35%;
        opacity: 0;
    }

    18% {
        opacity: 0.8;
    }

    36% {
        left: 112%;
        opacity: 0;
    }
}

.pro-hero-photo-badge {
    position: absolute;
    left: 18px;
    bottom: 18px;
    max-width: 250px;
    padding: 12px 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #fff;
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.5;
    backdrop-filter: blur(10px);
}

.pro-hero-right {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}

.pro-hero-masthead {
    max-width: 100%;
    padding-top: 10px;
    text-align: right;
}

.pro-hero-masthead span {
    display: block;
    color: rgba(255, 255, 255, 0.52);
    font-size: clamp(2.4rem, 4vw, 4.5rem);
    font-weight: 800;
    line-height: 0.96;
    text-transform: uppercase;
    letter-spacing: -0.03em;
}

.pro-intro-section {
    padding: 34px 0 22px;
    background: #fff;
}

.pro-intro-card {
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
    padding: 18px 24px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(128, 0, 0, 0.08);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.04);
    transform: scale(0.97);
    opacity: 0.82;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.45s ease, box-shadow 0.45s ease, border-color 0.45s ease;
}

.pro-intro-card.is-focus {
    transform: scale(1.02);
    opacity: 1;
    border-color: rgba(128, 0, 0, 0.18);
    box-shadow: 0 24px 48px rgba(128, 0, 0, 0.08);
}

.pro-intro-card p {
    color: #433c37;
    font-size: clamp(1.08rem, 2vw, 1.42rem);
    line-height: 1.48;
    letter-spacing: -0.02em;
}

.pro-why-section {
    padding: 54px 0 96px;
    background:
        linear-gradient(180deg, #fff 0%, #f7f1ed 100%);
}

.pro-why-shell {
    position: relative;
    padding: 70px 32px 30px;
    border-radius: 34px;
    background: #fff;
    border: 2px solid rgba(166, 23, 88, 0.45);
    box-shadow: 0 24px 60px rgba(97, 12, 55, 0.08);
    overflow: hidden;
    transform: scale(0.98);
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.45s ease;
}

.pro-why-shell.is-focus {
    transform: scale(1.01);
    box-shadow: 0 28px 72px rgba(97, 12, 55, 0.12);
}

.pro-why-shell::before {
    content: "";
    position: absolute;
    top: 14px;
    right: 18px;
    width: 56px;
    height: 20px;
    border-radius: 999px;
    background: linear-gradient(90deg, #d64183, #b11a5f);
    box-shadow: 0 0 0 8px rgba(214, 65, 131, 0.08);
}

.pro-section-chip {
    position: absolute;
    top: 45px;
    left: 32px;
    transform: translateY(-50%);
    padding: 10px 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, #f9f0f5, #fff);
    border: 1px solid rgba(128, 0, 0, 0.28);
    color: #5d0027;
    font-size: clamp(1.2rem, 2vw, 1.9rem);
    font-weight: 800;
    box-shadow: 0 16px 40px rgba(17, 17, 17, 0.08);
}

.pro-why-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 250px;
    gap: 24px;
    align-items: center;
}

.pro-bullet-list {
    list-style: none;
    display: grid;
    gap: 12px;
}

.pro-bullet-list li {
    position: relative;
    padding-left: 24px;
    color: #6a0a38;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.44;
}

.pro-bullet-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.58em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #8f0f4c;
}

.pro-mandoob-tile {
    padding: 26px 20px;
    border-radius: 30px;
    background: linear-gradient(180deg, #fff, #f8fbff);
    border: 3px solid #0f52d9;
    text-align: center;
    box-shadow: 0 18px 36px rgba(15, 82, 217, 0.08);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.pro-mandoob-tile:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 46px rgba(15, 82, 217, 0.14);
}

.pro-mandoob-tile.is-focus {
    transform: translateY(-10px) scale(1.04);
    border-color: #0b49c1;
    box-shadow: 0 28px 56px rgba(15, 82, 217, 0.16);
}

.pro-mandoob-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.pro-mandoob-logo img {
    width: 126px;
}

.pro-mandoob-tile strong {
    display: block;
    color: #0a3fa8;
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.pro-mandoob-tile span {
    display: block;
    margin-top: 6px;
    color: #0a3fa8;
    font-style: italic;
    font-size: 1rem;
}

.pro-offerings-section {
    position: relative;
    padding: 0 0 110px;
    background:
        radial-gradient(circle at 10% 12%, rgba(214, 65, 131, 0.08), transparent 24%),
        linear-gradient(180deg, #f7f1ed 0%, #fff 100%);
}

.pro-offerings-head {
    max-width: 860px;
    margin-bottom: 44px;
}

.pro-offerings-stack {
    position: relative;
    display: grid;
    gap: 38px;
}

.pro-offerings-stack::before {
    content: "";
    position: absolute;
    top: 10px;
    bottom: 10px;
    left: 50%;
    width: 1px;
    background: linear-gradient(180deg, rgba(128, 0, 0, 0), rgba(128, 0, 0, 0.14), rgba(128, 0, 0, 0));
    transform: translateX(-50%);
}

.pro-offering-card {
    position: relative;
    width: min(100%, 980px);
    padding: 52px 30px 28px;
    border-radius: 26px;
    background: linear-gradient(135deg, #70083c, #5d002f);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 54px rgba(97, 5, 49, 0.16);
    opacity: 0;
    transform: translateY(28px);
    transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.55s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    overflow: visible;
}

.pro-offering-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(255, 255, 255, 0.06), transparent 34%),
        radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.07), transparent 28%);
    pointer-events: none;
    border-radius: inherit;
}

.pro-offering-card::after {
    content: "";
    position: absolute;
    top: 20px;
    right: 26px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0) 68%);
    filter: blur(4px);
    pointer-events: none;
    opacity: 0.75;
}

.pro-offering-card.is-active {
    opacity: 1;
    transform: translateY(0);
}

.pro-offering-card.is-focus {
    transform: translateY(0) scale(1.025);
    box-shadow: 0 34px 72px rgba(97, 5, 49, 0.26);
    z-index: 3;
}

.pro-offering-card.is-dim {
    opacity: 0.74;
    transform: translateY(0) scale(0.975);
}

.pro-offering-card:hover {
    transform: translateY(-6px) scale(1.03);
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: 0 36px 80px rgba(97, 5, 49, 0.3);
}

.rail-left {
    justify-self: start;
    margin-right: 16%;
}

.rail-right {
    justify-self: end;
    margin-left: 16%;
}

.compact-offering {
    width: min(100%, 760px);
}

.pro-offering-label {
    position: absolute;
    top: 0;
    left: 20px;
    z-index: 4;
    transform: translateY(-58%);
    padding: 11px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, #fff, #f4edf1);
    border: 1px solid rgba(128, 0, 0, 0.22);
    color: #79063f;
    font-size: 1.15rem;
    font-weight: 800;
    box-shadow: 0 14px 34px rgba(17, 17, 17, 0.08);
    white-space: nowrap;
}

.pro-offering-list {
    position: relative;
    z-index: 2;
    list-style: none;
    padding-left: 0;
    display: grid;
    gap: 10px;
    min-height: 100%;
}

.pro-offering-list li {
    position: relative;
    padding: 0 0 0 24px;
    color: rgba(255, 255, 255, 0.97);
    line-height: 1.46;
    font-size: 1.02rem;
}

.pro-offering-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f7d391, #ffffff);
    box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.06);
}

.pro-offering-card .pro-offering-list::after {
    content: "";
    position: absolute;
    top: -10px;
    bottom: 6px;
    left: 3px;
    width: 1px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0));
    pointer-events: none;
}

.pro-cta-band {
    padding: 0 0 92px;
    background: #fff;
}

.pro-cta-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 26px;
    align-items: center;
    padding: 42px;
    border-radius: 34px;
    background: linear-gradient(135deg, #fff 0%, #f8ece4 100%);
    border: 1px solid rgba(128, 0, 0, 0.08);
    box-shadow: 0 20px 54px rgba(0, 0, 0, 0.06);
}

.pro-cta-shell h2 {
    font-size: clamp(2rem, 4vw, 3.3rem);
    line-height: 1.04;
}

@media (max-width: 1200px) {
    .pro-hero-grid,
    .pro-why-grid,
    .pro-cta-shell {
        grid-template-columns: 1fr;
    }

    .pro-hero-right {
        justify-content: flex-start;
    }

    .pro-hero-masthead {
        max-width: 540px;
        text-align: left;
    }
}

@media (max-width: 992px) {
    .pro-hero {
        padding-top: 116px;
    }

    .pro-hero-stage,
    .pro-hero-grid {
        min-height: auto;
    }

    .pro-hero-grid {
        gap: 34px;
        padding: 30px 24px 112px;
    }

    .pro-hero-stage::before {
        width: 100%;
        clip-path: polygon(46% 0, 100% 0, 100% 62%, 20% 62%);
    }

    .pro-hero-photo {
        width: min(420px, 100%);
    }

    .pro-offerings-stack::before {
        display: none;
    }

    .rail-left,
    .rail-right,
    .compact-offering {
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 767px) {
    .pro-hero {
        padding-top: 108px;
    }

    .pro-hero-stage {
        border-radius: 28px;
    }

    .pro-hero-grid {
        padding: 22px 18px 88px;
    }

    .pro-hero-stage::before {
        clip-path: polygon(32% 0, 100% 0, 100% 58%, 4% 58%);
    }

    .pro-hero-stage::after {
        bottom: 44px;
        height: 10px;
    }

    .pro-ribbon-a,
    .pro-ribbon-b {
        height: 44px;
        width: 170px;
        bottom: 66px;
    }

    .pro-ribbon-b {
        right: 26%;
        width: 130px;
    }

    .pro-ribbon-c {
        width: 220px;
        bottom: 34px;
    }

    .pro-hero-left h1 {
        font-size: clamp(2.5rem, 12vw, 4.1rem);
    }

    .pro-hero-masthead span {
        font-size: clamp(1.9rem, 9vw, 3.1rem);
    }

    .pro-hero-photo {
        min-height: 250px;
        width: 100%;
        clip-path: none;
        border-radius: 22px;
    }

    .pro-why-shell {
        padding: 70px 20px 24px;
        border-radius: 26px;
    }

    .pro-section-chip {
        left: 18px;
        right: 18px;
        width: auto;
        text-align: center;
        font-size: 1.05rem;
    }

    .pro-bullet-list li,
    .pro-offering-list li {
        font-size: 0.96rem;
    }

    .pro-offering-card {
        padding: 40px 18px 20px;
        border-radius: 22px;
    }

    .pro-offering-label {
        left: 14px;
        right: 14px;
        width: auto;
        font-size: 1rem;
        text-align: center;
        white-space: normal;
    }

    .pro-cta-shell {
        padding: 28px 22px;
    }

    .pro-cta-shell .btn {
        width: 100%;
    }

    .pro-intro-card.is-focus,
    .pro-why-shell.is-focus,
    .pro-mandoob-tile.is-focus,
    .pro-offering-card.is-focus,
    .pro-offering-card.is-dim {
        transform: none;
    }

    .pro-offering-card.is-dim {
        opacity: 1;
    }
}

@media (prefers-reduced-motion: reduce) {
    .pro-hero-pattern,
    .pro-ribbon,
    .pro-offering-card,
    .pro-hero-stage,
    .pro-hero-left h1 span,
    .pro-hero-photo,
    .pro-hero-photo::after {
        animation: none;
        transform: none;
    }
}

/* ===== CONTACT PAGE ===== */
body.contact-page {
    background: #fff;
}

.contact-scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2000;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--gold));
}

.contact-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #16070c 0%, #470018 48%, #14070b 100%);
}

.contact-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 160px;
    background: linear-gradient(180deg, transparent, #fff);
    pointer-events: none;
}

.contact-hero-pattern {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px),
        linear-gradient(120deg, rgba(255, 255, 255, .06), transparent 50%);
    background-size: 38px 38px, 38px 38px, cover;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 1), rgba(0, 0, 0, .38));
}

.contact-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 70px;
    align-items: center;
    padding-top: 120px;
}

.contact-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    margin-bottom: 24px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .2);
    color: #e8c88a;
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.contact-hero-copy h1 {
    color: #fff;
    font-size: clamp(3rem, 7vw, 5.8rem);
    line-height: .96;
    letter-spacing: 0;
}

.contact-hero-copy p {
    max-width: 620px;
    margin: 28px 0 34px;
    color: rgba(255, 255, 255, .82);
    font-size: 1.08rem;
    line-height: 1.75;
}

.contact-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.contact-hero .btn-outline {
    border-color: rgba(255, 255, 255, .42);
    color: #fff;
    background: rgba(255, 255, 255, .06);
}

.contact-hero .btn-outline:hover {
    background: rgba(255, 255, 255, .14);
}

.contact-hero-stack {
    position: relative;
    display: grid;
    gap: 20px;
    padding-left: 34px;
}

.contact-hero-stack::before {
    content: "";
    position: absolute;
    inset: 10px auto 10px 0;
    width: 1px;
    background: linear-gradient(180deg, rgba(232, 200, 138, 0), rgba(232, 200, 138, .7), rgba(232, 200, 138, 0));
}

.contact-hero-card {
    padding: 26px;
    border-radius: 28px;
    background: rgba(255, 255, 255, .09);
    border: 1px solid rgba(255, 255, 255, .12);
    backdrop-filter: blur(12px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .14);
}

.contact-hero-card.current {
    background: linear-gradient(135deg, rgba(255, 255, 255, .94), rgba(248, 246, 242, .98));
    border-color: rgba(255, 255, 255, .7);
}

.contact-hero-card span {
    display: block;
    margin-bottom: 6px;
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: #e8c88a;
}

.contact-hero-card.current span {
    color: var(--accent);
}

.contact-hero-card strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1.65rem;
    color: #fff;
}

.contact-hero-card.current strong {
    color: var(--accent);
}

.contact-hero-card p {
    color: rgba(255, 255, 255, .75);
    line-height: 1.7;
    margin: 0;
    font-size: .95rem;
}

.contact-hero-card.current p {
    color: var(--text-muted);
}

.contact-hero-metric {
    width: 160px;
    height: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
    color: var(--accent);
    box-shadow: 0 22px 60px rgba(0, 0, 0, .18);
    /* animation: rotate 18s linear infinite; */
}

.contact-hero-metric strong {
    font-size: 2.3rem;
    line-height: 1;
}

.contact-hero-metric span {
    max-width: 88px;
    text-align: center;
    font-size: .78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.branch-network-section {
    padding: 108px 0;
    background: linear-gradient(180deg, #fff 0%, #f8f6f2 100%);
}

.branch-network-head {
    max-width: 860px;
    margin: 0 auto 46px;
}

.branch-network-grid {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 28px;
    align-items: start;
}

.branch-list {
    display: grid;
    gap: 16px;
}

.branch-card {
    text-align: left;
    padding: 24px;
    border-radius: 28px;
    border: 1px solid var(--border-color);
    background: #fff;
    cursor: pointer;
    transition: transform .4s cubic-bezier(.16, 1, .3, 1), box-shadow .4s, border-color .4s, background .4s;
    box-shadow: 0 18px 44px rgba(0, 0, 0, .04);
}

.branch-card:hover,
.branch-card:focus-visible,
.branch-card.active {
    transform: translateY(-6px);
    border-color: rgba(128, 0, 0, .28);
    box-shadow: 0 24px 60px rgba(128, 0, 0, .09);
    outline: none;
}

.branch-card.current-branch {
    background: linear-gradient(135deg, #7a0039, #b31962);
    border-color: #7a0039;
}

.branch-card.current-branch:hover,
.branch-card.current-branch:focus-visible,
.branch-card.current-branch.active {
    box-shadow: 0 28px 60px rgba(122, 0, 57, .24);
}

.branch-card-top {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    margin-bottom: 14px;
}

.branch-badge {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(128, 0, 0, .08);
    color: var(--accent);
    font-size: .76rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.current-branch .branch-badge {
    background: rgba(255, 255, 255, .14);
    color: #fff;
}

.branch-card-top i {
    color: var(--accent);
    font-size: 1.08rem;
}

.current-branch .branch-card-top i {
    color: #fff;
}

.branch-card h3 {
    margin-bottom: 8px;
    color: var(--text-main);
    font-size: 1.38rem;
}

.current-branch h3 {
    color: #fff;
}

.branch-card p {
    color: var(--text-muted);
    line-height: 1.72;
    font-size: .95rem;
}

.current-branch p {
    color: rgba(255, 255, 255, .82);
}

.branch-map-panel {
    padding: 24px;
    border-radius: 32px;
    background: #fff;
    border: 1px solid var(--border-color);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .05);
}

.branch-map-head {
    margin-bottom: 18px;
}

.branch-map-head span {
    display: block;
    margin-bottom: 6px;
    color: var(--gold);
    font-size: .78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.branch-map-head h3 {
    margin-bottom: 8px;
    font-size: 1.7rem;
}

.branch-map-head p {
    color: var(--text-muted);
    line-height: 1.7;
}

.branch-map-frame-wrap {
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid var(--border-color);
    min-height: 460px;
    background: #f8f6f2;
}

.branch-map-frame {
    width: 100%;
    height: 460px;
    border: 0;
    display: block;
}

.contact-connect-section {
    padding: 100px 0;
    background: #fff;
}

.contact-connect-grid {
    display: grid;
    gap: 34px;
}

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

.contact-method-card {
    display: block;
    padding: 28px 24px;
    border-radius: 28px;
    background: linear-gradient(180deg, #fff, #f8f6f2);
    border: 1px solid var(--border-color);
    box-shadow: 0 18px 44px rgba(0, 0, 0, .04);
    transition: transform .4s cubic-bezier(.16, 1, .3, 1), box-shadow .4s, border-color .4s;
}

.contact-method-card:hover {
    transform: translateY(-7px);
    border-color: rgba(128, 0, 0, .22);
    box-shadow: 0 24px 60px rgba(128, 0, 0, .08);
}

.contact-method-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 18px;
    background: rgba(128, 0, 0, .08);
    color: var(--accent);
    font-size: 1.18rem;
}

.contact-method-card h3 {
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.contact-method-card p {
    color: var(--text-muted);
    line-height: 1.7;
}

.contact-form-section {
    padding: 0 0 110px;
    background:
        linear-gradient(rgba(0, 0, 0, .03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, .03) 1px, transparent 1px),
        linear-gradient(180deg, #fff 0%, #f8f6f2 100%);
    background-size: 34px 34px, 34px 34px, cover;
}

.contact-form-shell {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 28px;
    align-items: stretch;
}

.contact-support-side,
.contact-form-card {
    border-radius: 34px;
    border: 1px solid var(--border-color);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .05);
}

.contact-support-side {
    position: relative;
    overflow: hidden;
    padding: 38px 34px 24px;
    background: linear-gradient(135deg, #f8f6f2 0%, #fff 70%);
}

.contact-support-side::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(128, 0, 0, .06), transparent 34%),
        linear-gradient(180deg, transparent, rgba(198, 168, 124, .08));
    pointer-events: none;
}

.contact-support-copy {
    position: relative;
    z-index: 2;
    max-width: 520px;
}

.contact-support-copy p {
    margin-top: 14px;
    color: var(--text-muted);
    line-height: 1.78;
}

.contact-support-art {
    position: relative;
    z-index: 2;
    min-height: 420px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.contact-support-art img {
    width: min(320px, 72%);
    filter: drop-shadow(0 24px 40px rgba(0, 0, 0, .12));
    animation: servicesFloat 5.8s ease-in-out infinite;
}

.support-arrow {
    position: absolute;
    right: -8px;
    top: 50%;
    width: 160px;
    height: 26px;
    transform: translateY(-50%);
}

.support-arrow::before {
    content: "";
    position: absolute;
    inset: 50% 18px auto 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--gold));
    transform: translateY(-50%);
}

.support-arrow::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 14px;
    height: 14px;
    border-top: 2px solid var(--gold);
    border-right: 2px solid var(--gold);
    transform: translateY(-50%) rotate(45deg);
}

.support-bubble {
    position: absolute;
    padding: 10px 16px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--border-color);
    color: var(--text-main);
    font-size: .88rem;
    font-weight: 700;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
}

.bubble-one {
    top: 18%;
    left: 4%;
}

.bubble-two {
    right: 6%;
    top: 34%;
    color: var(--accent);
}

.contact-form-card {
    background: #fff;
    padding: 38px 34px;
}

.contact-form-card h3 {
    font-size: 1.8rem;
    margin-bottom: 6px;
}

.contact-form-sub {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
}

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

.contact-field {
    margin-bottom: 16px;
}

.contact-field label {
    display: block;
    margin-bottom: 6px;
    color: var(--text-main);
    font-size: .84rem;
    font-weight: 700;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
    width: 100%;
    padding: 13px 15px;
    border-radius: 14px;
    border: 1px solid var(--border-color);
    background: #fff;
    color: var(--text-main);
    font-family: var(--font-primary);
    font-size: .95rem;
    transition: border-color .3s, box-shadow .3s, background .3s;
    outline: none;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
    border-color: rgba(128, 0, 0, .35);
    box-shadow: 0 0 0 4px rgba(128, 0, 0, .08);
    background: #fcf9f7;
}

.contact-field textarea {
    min-height: 132px;
    resize: vertical;
}

.captcha-wrap {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 16px;
    align-items: end;
}

.captcha-canvas-wrap {
    display: grid;
    grid-template-columns: 1fr 52px;
    gap: 10px;
    align-items: center;
}

.captcha-canvas {
    width: 100%;
    height: 58px;
    border-radius: 14px;
    border: 1px solid var(--border-color);
    background: #f8f6f2;
}

.captcha-refresh {
    width: 52px;
    height: 52px;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    background: #fff;
    color: var(--accent);
    cursor: pointer;
    transition: transform .3s, border-color .3s, background .3s;
}

.captcha-refresh:hover {
    transform: rotate(20deg);
    border-color: rgba(128, 0, 0, .24);
    background: #fcf8f7;
}

.captcha-field {
    margin-bottom: 0;
}

.captcha-status {
    min-height: 24px;
    margin: 8px 0 18px;
    font-size: .92rem;
    font-weight: 600;
}

.captcha-status.error {
    color: #b42318;
}

.captcha-status.success {
    color: #1f7a3f;
}

.contact-submit {
    width: 100%;
}

@media (max-width: 992px) {

    .contact-hero-grid,
    .branch-network-grid,
    .contact-form-shell {
        grid-template-columns: 1fr;
    }

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

    .contact-hero-stack {
        padding-left: 0;
    }

    .contact-hero-stack::before {
        display: none;
    }

    .contact-support-art {
        min-height: 320px;
    }

    .support-arrow {
        display: none;
    }
}

@media (max-width: 767px) {
    .contact-hero {
        min-height: auto;
        padding: 120px 0 72px;
    }

    .contact-hero-grid {
        padding-top: 0;
        gap: 34px;
    }

    .contact-hero-actions {
        flex-direction: column;
    }

    .contact-hero-actions .btn,
    .contact-hero-metric,
    .contact-link-grid,
    .contact-form-row,
    .captcha-wrap {
        width: 100%;
    }

    .contact-link-grid,
    .contact-form-row,
    .captcha-wrap {
        grid-template-columns: 1fr;
    }

    .contact-hero-card,
    .branch-card,
    .branch-map-panel,
    .contact-method-card,
    .contact-support-side,
    .contact-form-card {
        padding: 22px;
        border-radius: 26px;
    }

    .branch-network-section,
    .contact-connect-section {
        padding: 78px 0;
    }

    .contact-form-section {
        padding-bottom: 78px;
    }

    .branch-map-frame-wrap,
    .branch-map-frame {
        min-height: 340px;
        height: 340px;
    }

    .contact-support-art img {
        width: min(260px, 80%);
    }

    .bubble-one,
    .bubble-two {
        position: static;
        margin-top: 14px;
    }
}

/* ===== BUSINESS SETUP PAGE ===== */
body.setup-qatar-page {
    background:
        radial-gradient(circle at 14% 12%, rgba(222, 62, 146, 0.12), transparent 28%),
        radial-gradient(circle at 86% 8%, rgba(128, 0, 0, 0.12), transparent 24%),
        linear-gradient(180deg, #f8f7f6 0%, #ffffff 30%, #f7f4f6 100%);
    color: var(--text-main);
}

.setup-scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 4px;
    z-index: 10000;
    background: linear-gradient(90deg, #ec4aa5 0%, #8d0d47 52%, #3f1732 100%);
    box-shadow: 0 0 18px rgba(236, 74, 165, 0.38);
}

.setup-qatar-page .navbar {
    background: transparent;
    backdrop-filter: none;
    border-bottom: 1px solid transparent;
}

.setup-qatar-page .navbar.scrolled {
    background: transparent;
}

.setup-hero {
    position: relative;
    padding: 132px 0 48px;
    overflow: clip;
}

.setup-hero-pattern {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0) 34%),
        radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.14), transparent 32%),
        linear-gradient(180deg, rgba(68, 7, 36, 0.08), rgba(68, 7, 36, 0));
    pointer-events: none;
}

.setup-hero-stage {
    --setup-scale: 1;
    --setup-x: 0px;
    --setup-y: 0px;
    position: relative;
    isolation: isolate;
    min-height: 720px;
    border-radius: 44px;
    overflow: clip;
    transform: translate3d(var(--setup-x), var(--setup-y), 0) scale(var(--setup-scale));
    transform-origin: center center;
    transition: transform 0.35s ease, box-shadow 0.45s ease;
    box-shadow: 0 34px 80px rgba(76, 7, 33, 0.18);
    background:
        linear-gradient(136deg, #0f0f12 0%, #16161a 35%, transparent 35.1%),
        linear-gradient(136deg, transparent 0%, transparent 49%, #ec4aa5 49.1%, #8a0c46 80%, #4e1735 100%);
}

.setup-hero-stage::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 28%),
        radial-gradient(circle at 24% 20%, rgba(255, 255, 255, 0.12), transparent 24%),
        radial-gradient(circle at 82% 22%, rgba(255, 255, 255, 0.1), transparent 16%);
    mix-blend-mode: screen;
    opacity: 0.65;
    pointer-events: none;
}

.setup-hero-stage::after {
    display: none;
}

.setup-hero-stage.is-focus {
    box-shadow: 0 38px 95px rgba(76, 7, 33, 0.24);
}

.setup-band {
    position: absolute;
    right: -6%;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(250, 109, 178, 0.95), rgba(110, 13, 60, 0.88));
    transform-origin: right center;
    animation: setupBandDrift 9s ease-in-out infinite;
}

.setup-band-a {
    top: 22%;
    width: 42%;
    height: 18px;
    animation-delay: -1s;
}

.setup-band-b {
    top: 28%;
    width: 31%;
    height: 12px;
    opacity: 0.75;
    animation-delay: -3s;
}

.setup-band-c {
    bottom: 25%;
    left: -8%;
    right: auto;
    width: 34%;
    height: 14px;
    background: linear-gradient(90deg, rgba(104, 16, 54, 0.92), rgba(236, 74, 165, 0.9));
    animation-delay: -5s;
}

.setup-plus {
    position: absolute;
    width: 86px;
    height: 86px;
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.04));
    backdrop-filter: blur(10px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28), 0 14px 30px rgba(0, 0, 0, 0.2);
    animation: setupFloat 7s ease-in-out infinite;
}

.setup-plus::before,
.setup-plus::after,
.setup-plus span {
    content: "";
    position: absolute;
    inset: 50%;
    transform: translate(-50%, -50%);
    border-radius: 999px;
}

.setup-plus::before {
    width: 54px;
    height: 16px;
    background: linear-gradient(90deg, #ee60af 0%, #6c143b 100%);
}

.setup-plus::after {
    width: 16px;
    height: 54px;
    background: linear-gradient(180deg, #ee60af 0%, #6c143b 100%);
}

.setup-plus span {
    width: 62px;
    height: 62px;
    border: 2px solid rgba(255, 255, 255, 0.44);
}

.plus-one {
    top: 10%;
    right: 8%;
}

.plus-two {
    bottom: 17%;
    right: 32%;
    width: 62px;
    height: 62px;
    border-radius: 20px;
    animation-delay: -2.5s;
}

.plus-two::before {
    width: 40px;
    height: 12px;
}

.plus-two::after {
    width: 12px;
    height: 40px;
}

.plus-two span {
    width: 46px;
    height: 46px;
}

.plus-three {
    top: 46%;
    left: 47%;
    width: 46px;
    height: 46px;
    border-radius: 16px;
    animation-delay: -4s;
}

.plus-three::before {
    width: 28px;
    height: 9px;
}

.plus-three::after {
    width: 9px;
    height: 28px;
}

.plus-three span {
    width: 32px;
    height: 32px;
}

.setup-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    align-items: stretch;
    min-height: 720px;
}

.setup-hero-copy,
.setup-hero-side {
    position: relative;
    padding: 72px 54px;
}

.setup-hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #ffffff;
}

.setup-hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.setup-hero-kicker::before {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #f5c4dc;
    box-shadow: 0 0 18px rgba(245, 196, 220, 0.8);
}

.setup-hero-copy h1 {
    max-width: 610px;
    font-size: clamp(3rem, 5.7vw, 5.6rem);
    line-height: 0.93;
    text-transform: uppercase;
    letter-spacing: -0.05em;
    margin: 34px 0 0;
}

.setup-hero-copy h1 span {
    display: block;
    color: #ffffff;
    font-weight: 300;
}

.setup-hero-photo {
    position: relative;
    margin-top: 38px;
    width: min(580px, 95%);
    min-height: 290px;
    border-radius: 32px;
    overflow: clip;
    background:
        linear-gradient(180deg, rgba(6, 6, 9, 0.08), rgba(6, 6, 9, 0.38)),
        url("../img/about-img-3.png") center/cover no-repeat;
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.28);
}

.setup-hero-photo::before {
    content: "";
    position: absolute;
    inset: auto auto 26px 26px;
    width: 154px;
    height: 154px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.01)),
        url("../img/Asset 2.png") center/78% no-repeat;
    border-radius: 28px;
    backdrop-filter: blur(8px);
    box-shadow: 0 18px 34px rgba(10, 10, 14, 0.26);
}

.setup-hero-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(255, 255, 255, 0.22), transparent 34%),
        linear-gradient(180deg, rgba(236, 74, 165, 0.08), rgba(10, 10, 14, 0.2));
    mix-blend-mode: screen;
}

.setup-hero-photo-badge {
    position: absolute;
    right: 24px;
    bottom: 22px;
    max-width: 230px;
    padding: 14px 16px;
    border-radius: 18px;
    color: #ffffff;
    font-size: 0.94rem;
    line-height: 1.45;
    background: rgba(20, 10, 18, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.28);
}

.setup-hero-side {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding-top: 72px;
}

.setup-hero-masthead {
    position: relative;
    width: min(380px, 100%);
    min-height: 255px;
    padding: 34px 30px 34px 36px;
    border-radius: 32px 32px 88px 32px;
    color: rgba(255, 236, 247, 0.78);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 0.98;
    font-size: clamp(2.1rem, 4vw, 4.2rem);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: right;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
        linear-gradient(145deg, rgba(196, 53, 125, 0.18), rgba(72, 11, 39, 0.22));
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 26px 46px rgba(60, 12, 32, 0.24);
}

.setup-hero-masthead::before {
    content: "";
    position: absolute;
    right: -14px;
    top: 50%;
    width: 120px;
    height: 20px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(252, 110, 185, 0.95), rgba(120, 18, 62, 0.9));
    transform: translateY(-50%);
    box-shadow: 0 8px 20px rgba(40, 10, 20, 0.24);
}

.setup-hero-masthead::after {
    content: "";
    position: absolute;
    left: 26px;
    bottom: -18px;
    width: 148px;
    height: 44px;
    background: linear-gradient(90deg, rgba(93, 19, 53, 0.98), rgba(145, 26, 77, 0.95));
    clip-path: polygon(0 20%, 100% 20%, 78% 100%, 0 100%);
}

.setup-intro-section {
    position: relative;
    padding: 20px 0 16px;
}

.setup-intro-card {
    max-width: 1060px;
    margin: 0 auto;
    padding: 26px 22px 10px;
    text-align: center;
}

.setup-intro-card p {
    margin: 0;
    color: #3a2c34;
    font-size: clamp(1.14rem, 2vw, 1.95rem);
    line-height: 1.22;
    letter-spacing: -0.03em;
}

.setup-glance-section {
    padding: 28px 0 42px;
}

.setup-glance-card {
    position: relative;
    max-width: 1180px;
    margin: 0 auto;
    padding: 52px 44px 34px;
    border-radius: 32px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(247, 243, 246, 0.95)),
        linear-gradient(135deg, rgba(223, 76, 157, 0.12), rgba(91, 23, 60, 0.1));
    border: 1px solid rgba(106, 24, 61, 0.1);
    box-shadow: 0 22px 48px rgba(84, 20, 52, 0.12);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.setup-glance-card::before {
    content: "";
    position: absolute;
    top: 18px;
    right: 24px;
    width: 168px;
    height: 56px;
    border-radius: 999px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent),
        linear-gradient(90deg, rgba(236, 74, 165, 0.18), rgba(84, 20, 52, 0.05));
    filter: blur(1px);
}

.setup-glance-card.is-focus,
.setup-glance-card:hover {
    transform: translateY(-8px) scale(1.012);
    box-shadow: 0 28px 58px rgba(84, 20, 52, 0.18);
}

.setup-glance-label {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 300px;
    padding: 14px 28px;
    border-radius: 999px;
    color: #ffffff;
    text-transform: none;
    font-size: clamp(1.4rem, 2vw, 2rem);
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(90deg, #bb2d76 0%, #8d0d47 48%, #6d153f 100%);
    box-shadow: 0 14px 34px rgba(141, 13, 71, 0.28);
}

.setup-glance-list {
    list-style: none;
    display: grid;
    gap: 16px;
    margin: 0;
    padding: 0;
}

.setup-glance-list li {
    position: relative;
    padding-left: 30px;
    color: #651a3d;
    font-size: clamp(1.12rem, 1.8vw, 1.58rem);
    font-weight: 700;
    line-height: 1.28;
    letter-spacing: -0.025em;
}

.setup-glance-list li::before {
    content: "";
    position: absolute;
    left: 4px;
    top: 0.58em;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: linear-gradient(180deg, #d63888, #6e143b);
    box-shadow: 0 0 0 6px rgba(214, 56, 136, 0.09);
    transform: translateY(-50%);
}

.setup-process-section {
    position: relative;
    padding: 46px 0 110px;
}

.setup-process-section::before {
    content: "";
    position: absolute;
    top: 162px;
    bottom: 110px;
    left: 50%;
    width: 2px;
    background: linear-gradient(180deg, rgba(187, 45, 118, 0.16), rgba(110, 20, 59, 0.4), rgba(187, 45, 118, 0.08));
    transform: translateX(-50%);
    pointer-events: none;
}

.setup-process-head {
    text-align: center;
    max-width: 980px;
    margin: 0 auto 48px;
}

.setup-process-head .badge-tag {
    margin-bottom: 18px;
}

.setup-process-head .about-title {
    margin-bottom: 14px;
}

.setup-process-head .section-desc {
    max-width: 820px;
    margin: 0 auto;
}

.setup-steps-stack {
    position: relative;
    display: grid;
    gap: 30px;
}

.setup-step-card {
    position: relative;
    width: min(820px, 74%);
    padding: 34px 34px 28px;
    border-radius: 34px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 245, 247, 0.98)),
        linear-gradient(135deg, rgba(224, 77, 156, 0.12), rgba(93, 20, 54, 0.08));
    border: 1px solid rgba(104, 23, 55, 0.12);
    box-shadow: 0 20px 42px rgba(75, 17, 46, 0.1);
    overflow: clip;
    transition: transform 0.38s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.38s ease, border-color 0.38s ease;
}

.setup-step-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(236, 74, 165, 0.14), transparent 36%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.42), transparent 24%);
    pointer-events: none;
}

.setup-step-card::after {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    right: -28px;
    bottom: -28px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0)),
        linear-gradient(180deg, rgba(224, 77, 156, 0.26), rgba(84, 20, 52, 0.2));
    clip-path: polygon(50% 0, 100% 34%, 100% 64%, 50% 100%, 0 64%, 0 34%);
    opacity: 0.92;
    pointer-events: none;
}

.setup-step-card:hover,
.setup-step-card.is-focus {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(141, 13, 71, 0.28);
    box-shadow: 0 28px 60px rgba(75, 17, 46, 0.16);
}

.step-left {
    margin-right: auto;
}

.step-right {
    margin-left: auto;
}

.wide-step {
    width: min(920px, 88%);
}

.setup-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 112px;
    padding: 10px 18px;
    margin-bottom: 14px;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #7a1846;
    background: rgba(236, 74, 165, 0.08);
    border: 1px solid rgba(122, 24, 70, 0.12);
}

.setup-step-pill {
    position: relative;
    display: inline-flex;
    align-items: center;
    margin-bottom: 16px;
    padding: 12px 22px 12px 20px;
    border-radius: 999px;
    font-size: clamp(1.18rem, 1.8vw, 1.8rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.03em;
    color: #6b123b;
    background: linear-gradient(180deg, #f0f0f1, #dfdfe3);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.setup-step-pill::before {
    content: "";
    width: 12px;
    height: 12px;
    margin-right: 12px;
    border-radius: 50%;
    background: linear-gradient(180deg, #d63888, #6e143b);
    box-shadow: 0 0 0 8px rgba(214, 56, 136, 0.08);
}

.setup-step-card p {
    position: relative;
    margin: 0;
    padding-left: 18px;
    color: #3f2a33;
    font-size: 1.08rem;
    line-height: 1.52;
}

.setup-step-card p::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.2em;
    bottom: 0.2em;
    width: 3px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(214, 56, 136, 0.75), rgba(84, 20, 52, 0.75));
}

.setup-cta-section {
    padding: 0 0 120px;
}

.setup-cta-shell {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 30px;
    padding: 38px 40px;
    border-radius: 34px;
    overflow: clip;
    color: #ffffff;
    background:
        linear-gradient(120deg, rgba(255, 255, 255, 0.08), transparent 22%),
        linear-gradient(90deg, #4a1632 0%, #7c1547 38%, #c23079 100%);
    box-shadow: 0 28px 60px rgba(72, 14, 41, 0.22);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.setup-cta-shell::before {
    content: "";
    position: absolute;
    top: -12px;
    right: 38px;
    width: 184px;
    height: 184px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0)),
        url("../img/Asset 2.png") center/80% no-repeat;
    opacity: 0.18;
    filter: saturate(0) brightness(2);
}

.setup-cta-shell::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 180px;
    height: 54px;
    background: linear-gradient(90deg, rgba(236, 74, 165, 0.9), rgba(236, 74, 165, 0));
    clip-path: polygon(0 100%, 0 32%, 100% 32%, 78% 100%);
}

.setup-cta-shell h2 {
    margin: 12px 0 0;
    max-width: 760px;
    font-size: clamp(1.8rem, 3vw, 3rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.setup-cta-shell .btn {
    position: relative;
    z-index: 1;
    white-space: nowrap;
}

.setup-cta-shell:hover,
.setup-cta-shell.is-focus {
    transform: translateY(-6px) scale(1.012);
    box-shadow: 0 34px 72px rgba(72, 14, 41, 0.28);
}

@keyframes setupBandDrift {
    0%,
    100% {
        transform: translateX(0) scaleX(1);
    }

    50% {
        transform: translateX(-18px) scaleX(1.04);
    }
}

@keyframes setupFloat {
    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-12px) rotate(2deg);
    }
}

@media (max-width: 1199px) {
    .setup-hero-stage,
    .setup-hero-grid {
        min-height: 660px;
    }

    .setup-hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
    }

    .setup-hero-copy,
    .setup-hero-side {
        padding: 58px 38px;
    }

    .setup-step-card {
        width: min(860px, 82%);
    }
}

@media (max-width: 991px) {
    .setup-hero {
        padding-top: 120px;
    }

    .setup-hero-stage,
    .setup-hero-grid {
        min-height: auto;
    }

    .setup-hero-grid {
        grid-template-columns: 1fr;
    }

    .setup-hero-copy {
        padding-bottom: 20px;
    }

    .setup-hero-side {
        padding-top: 0;
        align-items: flex-end;
    }

    .setup-hero-masthead {
        width: min(100%, 460px);
        margin-left: auto;
        min-height: 200px;
        font-size: clamp(1.8rem, 6vw, 3.4rem);
    }

    .setup-process-section::before {
        display: none;
    }

    .setup-step-card,
    .wide-step {
        width: 100%;
    }

    .setup-step-card {
        margin-left: 0;
        margin-right: 0;
    }

    .setup-cta-shell {
        grid-template-columns: 1fr;
        text-align: left;
    }
}

@media (max-width: 767px) {
    .setup-hero {
        padding: 108px 0 38px;
    }

    .setup-hero-stage {
        border-radius: 28px;
    }

    .setup-hero-stage::after {
        height: 110px;
        clip-path: polygon(0 56%, 58% 56%, 72% 12%, 100% 12%, 100% 58%, 78% 58%, 68% 90%, 0 90%);
    }

    .setup-hero-copy,
    .setup-hero-side {
        padding: 34px 22px;
    }

    .setup-hero-copy h1 {
        font-size: clamp(2.6rem, 14vw, 4rem);
        margin-top: 24px;
    }

    .setup-hero-photo {
        width: 100%;
        min-height: 220px;
        border-radius: 24px;
    }

    .setup-hero-photo::before {
        width: 102px;
        height: 102px;
        inset: auto auto 18px 18px;
        border-radius: 20px;
    }

    .setup-hero-photo-badge {
        right: 18px;
        left: 18px;
        max-width: none;
        font-size: 0.88rem;
    }

    .setup-hero-masthead {
        min-height: 162px;
        border-radius: 24px 24px 58px 24px;
        text-align: left;
        justify-content: flex-start;
        padding: 28px 22px;
    }

    .setup-hero-masthead::before {
        width: 82px;
        height: 14px;
        right: -8px;
    }

    .setup-hero-masthead::after {
        width: 100px;
        height: 30px;
    }

    .setup-band,
    .setup-plus {
        display: none;
    }

    .setup-intro-card {
        padding: 14px 6px 0;
    }

    .setup-intro-card p {
        font-size: 1.32rem;
    }

    .setup-glance-card {
        padding: 42px 22px 24px;
        border-radius: 24px;
    }

    .setup-glance-label {
        min-width: 0;
        width: calc(100% - 36px);
        font-size: 1.24rem;
        padding: 12px 18px;
    }

    .setup-glance-list li {
        font-size: 1rem;
        padding-left: 24px;
    }

    .setup-process-section {
        padding-bottom: 88px;
    }

    .setup-step-card {
        padding: 24px 18px 22px;
        border-radius: 24px;
    }

    .setup-step-pill {
        font-size: 1.05rem;
        padding: 10px 16px;
    }

    .setup-step-card p {
        font-size: 0.98rem;
        padding-left: 14px;
    }

    .setup-cta-shell {
        padding: 28px 22px;
        border-radius: 24px;
    }

    .setup-cta-shell h2 {
        font-size: 1.6rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .setup-band,
    .setup-plus {
        animation: none;
    }

    .setup-hero-stage,
    .setup-glance-card,
    .setup-step-card,
    .setup-cta-shell {
        transition: none;
    }
}

/* ===== BUSINESS SETUP PAGE REDESIGN ===== */
body.setup-qatar-page.services-page {
    background: #fff;
}

.setup-qatar-page .navbar {
    background: transparent;
    border-bottom: 1px solid transparent;
    backdrop-filter: none;
}

.setup-qatar-page .navbar .nav-links a {
    color: rgba(255, 255, 255, 0.86);
}

.setup-qatar-page .navbar .nav-links a:hover,
.setup-qatar-page .navbar .nav-links a.active {
    color: #fff;
}

.setup-qatar-page .navbar.scrolled {
    background: transparent;
    border-bottom-color: transparent;
    backdrop-filter: none;
}

.setup-qatar-page .navbar.scrolled .nav-links a {
    color: var(--text-muted);
}

.setup-qatar-page .navbar.scrolled .nav-links a:hover,
.setup-qatar-page .navbar.scrolled .nav-links a.active {
    color: var(--accent);
}

.setup-qatar-page .setup-services-hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: #12080c;
}

.setup-qatar-page .setup-hero-bg {
    background:
        linear-gradient(108deg, rgba(18, 8, 12, 0.96) 0%, rgba(18, 8, 12, 0.88) 38%, rgba(128, 0, 0, 0.74) 62%, rgba(18, 8, 12, 0.9) 100%),
        url("../img/about-img-3.png") center/cover;
    transform: scale(1.05);
    animation: servicesHeroDrift 16s ease-in-out infinite alternate;
}

.setup-qatar-page .setup-hero-stage {
    --setup-scale: 1;
    --setup-x: 0px;
    --setup-y: 0px;
    position: relative;
    z-index: 2;
    transform: translate3d(var(--setup-x), var(--setup-y), 0) scale(var(--setup-scale));
    transform-origin: center center;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.setup-qatar-page .setup-hero-stage.is-focus {
    opacity: 1;
    padding:10px;
}

.setup-qatar-page .setup-hero-panel {
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.setup-qatar-page .setup-hero-card {
    position: relative;
    width: min(440px, 100%);
    padding: 34px 30px 30px;
    border-radius: 34px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 243, 246, 0.94));
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 28px 64px rgba(22, 8, 14, 0.24);
    overflow: hidden;
}

.setup-qatar-page .setup-hero-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle at top right, rgba(214, 56, 136, 0.16), transparent 70%);
    pointer-events: none;
}

.setup-qatar-page .setup-hero-card::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 172px;
    height: 16px;
    background: linear-gradient(90deg, #c73275, #7b003d);
    clip-path: polygon(0 0, 100% 0, 84% 100%, 0 100%);
    pointer-events: none;
}

.setup-qatar-page .setup-hero-card-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 112px;
    height: 112px;
    margin-bottom: 20px;
    border-radius: 26px;
    background: #ffffff;
    box-shadow: 0 18px 34px rgba(128, 0, 0, 0.12);
}

.setup-qatar-page .setup-hero-card-mark img {
    width: 78px;
    height: auto;
}

.setup-qatar-page .setup-hero-card-label {
    display: block;
    margin-bottom: 8px;
    color: #b11a5f;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.setup-qatar-page .setup-hero-card strong {
    display: block;
    color: #4f0e2d;
    font-size: clamp(1.85rem, 3vw, 2.5rem);
    line-height: 1.02;
}

.setup-qatar-page .setup-hero-card p {
    margin: 14px 0 22px;
    color: #67515d;
    line-height: 1.65;
}

.setup-qatar-page .setup-hero-points {
    display: grid;
    gap: 12px;
}

.setup-qatar-page .setup-point-chip {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 12px;
    align-items: center;
    padding: 13px 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(128, 0, 0, 0.08);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.setup-qatar-page .setup-point-chip i {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(128, 0, 0, 0.08);
    color: var(--accent);
}

.setup-qatar-page .setup-point-chip span {
    color: #4f0e2d;
    font-weight: 700;
    line-height: 1.35;
}

.setup-qatar-page .setup-point-chip:hover {
    transform: translateY(-4px);
    border-color: rgba(128, 0, 0, 0.18);
    box-shadow: 0 14px 28px rgba(128, 0, 0, 0.08);
}

.setup-qatar-page .setup-overview-section {
    padding-top: 90px;
}

.setup-qatar-page .setup-section-head {
    max-width: 860px;
    margin: 0 auto 52px;
    text-align: center;
}

.setup-qatar-page .setup-overview-card {
    max-width: 1020px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.98)),
        #fff;
    color: #5e0026;
    border: 2px solid rgba(166, 23, 88, 0.22);
    box-shadow: 0 24px 70px rgba(78, 0, 31, 0.08);
}

.setup-qatar-page .setup-glance-card {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.setup-qatar-page .setup-glance-card.is-focus,
.setup-qatar-page .setup-glance-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 30px 72px rgba(128, 0, 0, 0.2);
}

.setup-qatar-page .setup-glance-pills {
    align-items: stretch;
    gap: 10px;
}

.setup-qatar-page .setup-overview-card::before,
.setup-qatar-page .setup-overview-card::after {
    background: rgba(177, 26, 95, 0.06);
}

.setup-qatar-page .setup-overview-card .overview-badge {
    background: linear-gradient(135deg, #f9f1f5, #ffffff);
    color: #5e0026;
    border: 1px solid rgba(128, 0, 0, 0.18);
}

.setup-qatar-page .setup-overview-card h2 {
    color: #5e0026;
}

.setup-qatar-page .setup-overview-card > p {
    color: #6a4b5a;
}

.setup-qatar-page .setup-glance-pills span {
    width: 100%;
    justify-content: flex-start;
    text-align: left;
    padding: 12px 20px;
    background: rgba(246, 239, 243, 0.96);
    color: #651a3d;
    border: 1px solid rgba(128, 0, 0, 0.08);
    line-height: 1.45;
    box-shadow: none;
}

.setup-qatar-page .setup-glance-pills span:hover {
    background: #ffffff;
    color: #4f0e2d;
}

.setup-qatar-page .setup-process-grid {
    gap: 20px;
}

.setup-qatar-page .setup-process-item {
    width: 100%;
    margin: 0;
    padding: 26px 28px;
    grid-template-columns: 76px 72px minmax(0, 1fr);
    background: rgba(255, 255, 255, 0.92);
}

.setup-qatar-page .setup-process-item::after {
    width: 118px;
    height: 118px;
    right: -56px;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(199, 50, 117, 0.12), rgba(128, 0, 0, 0.16));
    clip-path: polygon(50% 0, 100% 34%, 100% 66%, 50% 100%, 0 66%, 0 34%);
    transform: translateY(-50%) rotate(10deg) scale(0.62);
    opacity: 0;
}

.setup-qatar-page .setup-process-item:hover,
.setup-qatar-page .setup-process-item.is-focus {
    transform: translateY(-8px) scale(1.01);
    border-color: rgba(128, 0, 0, 0.24);
    box-shadow: 0 24px 60px rgba(128, 0, 0, 0.11);
}

.setup-qatar-page .setup-process-item:hover::before,
.setup-qatar-page .setup-process-item.is-focus::before {
    transform: translateX(0);
}

.setup-qatar-page .setup-process-item:hover::after,
.setup-qatar-page .setup-process-item.is-focus::after {
    transform: translateY(-50%) rotate(0deg) scale(1);
    opacity: 1;
}

.setup-qatar-page .setup-process-item .service-item-number {
    color: rgba(128, 0, 0, 0.22);
}

.setup-qatar-page .setup-process-item:hover .service-item-number,
.setup-qatar-page .setup-process-item.is-focus .service-item-number {
    color: var(--accent);
    transform: translateX(6px);
}

.setup-qatar-page .setup-process-item:hover .service-item-icon,
.setup-qatar-page .setup-process-item.is-focus .service-item-icon {
    transform: rotate(-8deg) scale(1.08);
    background: var(--accent);
    color: #fff;
}

.setup-qatar-page .setup-process-item .service-item-content h3 {
    margin-bottom: 10px;
    font-size: clamp(1.14rem, 2vw, 1.45rem);
}

.setup-qatar-page .setup-process-item .service-item-content p {
    max-width: none;
}

.setup-qatar-page .setup-cta-shell {
    position: relative;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.setup-qatar-page .setup-cta-shell::before {
    content: "";
    position: absolute;
    right: -16px;
    top: -16px;
    width: 180px;
    height: 180px;
    background: url("../img/Asset 2.png") center/contain no-repeat;
    opacity: 0.08;
    pointer-events: none;
}

.setup-qatar-page .setup-cta-shell::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 200px;
    height: 16px;
    background: linear-gradient(90deg, #c73275, #7b003d);
    clip-path: polygon(0 0, 100% 0, 86% 100%, 0 100%);
    pointer-events: none;
}

.setup-qatar-page .setup-cta-shell h2 {
    color: #ffffff;
}

.setup-qatar-page .setup-cta-shell p {
    color: var(--text-muted);
}

.setup-qatar-page .setup-cta-shell:hover,
.setup-qatar-page .setup-cta-shell.is-focus {
    transform: translateY(-6px);
    box-shadow: 0 28px 70px rgba(128, 0, 0, 0.12);
}

@media (max-width: 992px) {
    .setup-qatar-page .setup-hero-panel {
        min-height: 430px;
    }
}

@media (max-width: 767px) {
    .setup-qatar-page .setup-hero-card {
        width: 100%;
        padding: 24px 20px 24px;
        border-radius: 24px;
    }

    .setup-qatar-page .setup-hero-card-mark {
        width: 88px;
        height: 88px;
        border-radius: 22px;
    }

    .setup-qatar-page .setup-hero-card-mark img {
        width: 60px;
    }

    .setup-qatar-page .setup-point-chip {
        grid-template-columns: 38px 1fr;
        gap: 10px;
        padding: 12px;
    }

    .setup-qatar-page .setup-point-chip i {
        width: 38px;
        height: 38px;
        border-radius: 12px;
    }

    .setup-qatar-page .setup-glance-pills span {
        padding: 12px 16px;
    }

    .setup-qatar-page .setup-process-item {
        grid-template-columns: 1fr;
        padding: 22px;
    }
}

/* Animated Know More Button for Service Cards */
.service-know-more-btn {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 999px;
    background: rgba(128, 0, 0, 0.1);
    border: 1.5px solid var(--accent);
    color: var(--accent);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.service-know-more-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: -1;
}

.service-know-more-btn:hover {
    border-color: var(--accent);
    color: #fff;
    box-shadow: 0 12px 32px rgba(128, 0, 0, 0.25);
}

.service-know-more-btn:hover::before {
    transform: scaleX(1);
}

.service-know-more-btn i {
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-know-more-btn:hover i {
    transform: translateX(6px);
}

/* Update Corporate Service Card to accommodate Know More button */
.corporate-service-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.corporate-service-card h3 {
    margin-top: 4px;
}

.corporate-service-card .service-know-more-btn {
    margin-top: auto;
}

/* Service Item Images */
.service-item-image {
    position: absolute;
    top: 0;
    right: -60px;
    width: 280px;
    height: 200px;
    border-radius: 20px;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1), transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
    box-shadow: 0 20px 50px rgba(128, 0, 0, 0.15);
}

.service-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-list-item:hover .service-item-image {
    opacity: 0.95;
    transform: translateX(-320px);
}

/* Corporate Services Section */
.corporate-services-section {
    background: linear-gradient(135deg, rgba(128, 0, 0, 0.04), rgba(198, 168, 124, 0.06));
}

.corporate-intro-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
    padding: 32px;
    background: #fff;
    border-radius: 24px;
    border: 1px solid var(--border-color);
}

.corporate-summary-note {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.summary-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(128, 0, 0, 0.08);
    color: var(--accent);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.corporate-summary-note h3 {
    font-size: 1.05rem;
    margin-bottom: 4px;
    color: var(--text-main);
}

.corporate-summary-note p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.corporate-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    margin-bottom: 60px;
}

.corporate-service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 28px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid var(--border-color);
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), 
                border-color 0.45s,
                box-shadow 0.45s,
                background 0.45s;
    overflow: hidden;
}

.corporate-service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(128, 0, 0, 0.06), rgba(198, 168, 124, 0.08));
    transform: translateY(105%);
    transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 0;
}

.corporate-service-card:hover {
    transform: translateY(-12px);
    border-color: rgba(128, 0, 0, 0.24);
    box-shadow: 0 28px 70px rgba(128, 0, 0, 0.12);
}

.corporate-service-card:hover::before {
    transform: translateY(0);
}

.corporate-service-image {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 200px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(128, 0, 0, 0.1);
}

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

.corporate-service-card:hover .corporate-service-image img {
    transform: scale(1.08);
}

.corporate-service-icon {
    position: relative;
    z-index: 2;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(128, 0, 0, 0.08);
    color: var(--accent);
    font-size: 1.25rem;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), background 0.35s, color 0.35s;
}

.corporate-service-card:hover .corporate-service-icon {
    transform: rotate(-8deg) scale(1.12);
    background: var(--accent);
    color: #fff;
}

.corporate-service-card h3 {
    position: relative;
    z-index: 2;
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--text-main);
}

.corporate-service-card p {
    position: relative;
    z-index: 2;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.65;
}

.corporate-benefits-section {
    padding: 48px;
    border-radius: 28px;
    background: #fff;
    border: 1px solid var(--border-color);
}

.benefits-header {
    margin-bottom: 40px;
}

.benefits-header h3 {
    font-size: clamp(1.5rem, 3vw, 1.85rem);
    color: var(--text-main);
    margin-top: 12px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
}

.benefit-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 28px;
    border-radius: 20px;
    background: rgba(128, 0, 0, 0.04);
    border: 1px solid var(--border-color);
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
                background 0.35s,
                border-color 0.35s;
}

.benefit-card:hover {
    transform: translateY(-8px);
    background: rgba(128, 0, 0, 0.08);
    border-color: rgba(128, 0, 0, 0.24);
}

.benefit-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(128, 0, 0, 0.12);
    color: var(--accent);
    font-size: 1.35rem;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), background 0.35s;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.15) rotate(-8deg);
    background: var(--accent);
    color: #fff;
}

.benefit-card h4 {
    font-size: 1.05rem;
    color: var(--text-main);
    margin-bottom: 4px;
}

.benefit-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.65;
}

@media (max-width: 768px) {
    .service-list-item {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .service-item-number {
        font-size: 1.5rem;
    }

    .service-item-image {
        position: static;
        width: 100%;
        height: 180px;
        right: auto;
        opacity: 1 !important;
        transform: none !important;
        margin-bottom: 12px;
    }

    .service-list-item:hover .service-item-image {
        transform: none;
    }

    .corporate-services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .corporate-service-card {
        padding: 20px;
    }

    .corporate-service-image {
        height: 160px;
    }

    .corporate-benefits-section {
        padding: 32px 20px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .benefit-card {
        padding: 20px;
    }
}
