/* =====================================================
   BD CLOUD HOSTING — style.css
   Brand colors extracted from logo:
     Navy Blue  #0d3b7d / #1a6edb
     Green      #1a6e38 / #1a8a52
     Red        #c0392b
     White      #ffffff
   ===================================================== */

:root {
    /* — Brand Navy — */
    --navy-950: #060f1e;
    --navy-900: #0a1e3d;
    --navy-800: #0d3060;
    --navy-700: #0d3b7d;
    --navy-600: #1255a8;
    --navy-500: #1a6edb;
    --navy-400: #3b88e8;
    --navy-300: #6aaaf0;
    --navy-100: #d6e9fb;
    --navy-50: #edf5fd;

    /* — Brand Green — */
    --green-700: #145430;
    --green-600: #1a6e38;
    --green-500: #1a8a52;
    --green-400: #22a863;
    --green-100: #d4f0e2;
    --green-50: #eafaf2;

    /* — Brand Red — */
    --red-600: #a12d22;
    --red-500: #c0392b;
    --red-400: #e0483a;
    --red-50: #fdecea;

    /* — Neutrals — */
    --dark: #060f1e;
    --dark-2: #0a1a35;
    --dark-3: #0f2448;
    --white: #ffffff;
    --off-white: #f5f8fd;
    --gray-100: #eef2f7;
    --gray-200: #dde5f0;
    --gray-400: #8fa3c0;
    --gray-600: #4a6080;
    --text-primary: #0a1e3d;
    --text-secondary: #3d5570;
    --text-muted: #7a95b0;
    --border: rgba(13, 59, 125, 0.1);
    --border-light: rgba(13, 59, 125, 0.06);

    /* — Shadows — */
    --shadow-sm: 0 2px 8px rgba(13, 59, 125, 0.08);
    --shadow-md: 0 8px 32px rgba(13, 59, 125, 0.13);
    --shadow-lg: 0 20px 60px rgba(13, 59, 125, 0.18);
    --shadow-navy: 0 8px 32px rgba(26, 110, 219, 0.3);

    /* — Radius — */
    --r-sm: 8px;
    --r-md: 14px;
    --r-lg: 20px;
    --r-xl: 28px;
    --r-full: 9999px;

    /* — Font — */
    --font: 'Plus Jakarta Sans', sans-serif;

    /* — Misc — */
    --nav-h: 76px;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --t: all 0.3s var(--ease);
}

/* ── Reset ── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-h);
}

body {
    font-family: var(--font);
    color: var(--text-primary);
    background: var(--white);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    cursor: pointer;
    font-family: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
}

.section {
    padding: 100px 0;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 26px;
    border-radius: var(--r-full);
    font-family: var(--font);
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.01em;
    border: 2px solid transparent;
    transition: var(--t);
    cursor: pointer;
    white-space: nowrap;
    line-height: 1;
}

.btn-lg {
    padding: 15px 34px;
    font-size: 0.95rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--navy-500), var(--navy-600));
    color: var(--white);
    border-color: var(--navy-500);
    box-shadow: 0 4px 20px rgba(26, 110, 219, 0.35);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--navy-400), var(--navy-500));
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(26, 110, 219, 0.45);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(12px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--white);
    color: var(--navy-700);
    border-color: var(--white);
    font-weight: 800;
}

.btn-white:hover {
    background: var(--navy-50);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-nav {
    background: var(--navy-500);
    color: var(--white);
    padding: 10px 20px;
    font-size: 0.83rem;
    box-shadow: 0 2px 12px rgba(26, 110, 219, 0.3);
}

.btn-nav:hover {
    background: var(--navy-400);
    transform: translateY(-1px);
}

/* ── Section header ── */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    background: var(--navy-50);
    color: var(--navy-600);
    border: 1.5px solid var(--navy-100);
    padding: 5px 16px;
    border-radius: var(--r-full);
    font-size: 0.73rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
    letter-spacing: -0.025em;
    margin-bottom: 14px;
}

.section-sub {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 400;
}

.gradient-text {
    background: linear-gradient(135deg, #4aa3f0 0%, #a8e063 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ══════════════════════════════════════
   NAVBAR
══════════════════════════════════════ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-h);
    transition: var(--t);
    border-bottom: 1px solid #dfdfdf2e;
}

.navbar.scrolled {
    background: rgba(6, 15, 30, 0.96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06), 0 4px 30px rgba(0, 0, 0, 0.35);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-h);
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.logo-img {
    width: 85px;
    height: auto;
    padding: 5px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(26, 110, 219, 0.4));
}

.logo-wordmark {
    font-size: 32px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.02em;
    line-height: 1;
}

.logo-accent {
    color: #4aa3f0;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.87rem;
    font-weight: 600;
    padding: 8px 13px;
    border-radius: var(--r-sm);
    transition: var(--t);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 3px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #4aa3f0;
    border-radius: var(--r-full);
    transition: width 0.25s var(--ease);
}

.nav-link:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.07);
}

.nav-link:hover::after {
    width: 55%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 8px;
    border-radius: var(--r-sm);
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--t);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
    min-height: 100vh;
    background: var(--navy-950);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: calc(var(--nav-h) + 48px) 0 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(26, 110, 219, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(26, 110, 219, 0.07) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 0%, transparent 100%);
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.3;
}

.hero-orb-1 {
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, var(--navy-500) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    animation: floatOrb 9s ease-in-out infinite;
}

.hero-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--green-500) 0%, transparent 70%);
    bottom: -100px;
    left: -80px;
    animation: floatOrb 12s ease-in-out infinite reverse;
    opacity: 0.18;
}

.hero-orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--navy-700) 0%, transparent 70%);
    top: 45%;
    left: 35%;
    animation: floatOrb 15s ease-in-out infinite 3s;
}

@keyframes floatOrb {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(25px, -18px) scale(1.04);
    }

    66% {
        transform: translate(-18px, 28px) scale(0.96);
    }
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 64px;
    align-items: center;
}

/* Hero Left */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(26, 110, 219, 0.14);
    border: 1px solid rgba(74, 163, 240, 0.3);
    color: #8ec8f8;
    padding: 7px 16px;
    border-radius: var(--r-full);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 26px;
    backdrop-filter: blur(10px);
    letter-spacing: 0.01em;
    animation: fadeSlideUp 0.6s ease both;
}

.badge-dot {
    width: 7px;
    height: 7px;
    background: #4ae0a0;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 8px #4ae0a0;
    animation: pulseDot 2s infinite;
}

@keyframes pulseDot {

    0%,
    100% {
        box-shadow: 0 0 8px #4ae0a0;
    }

    50% {
        box-shadow: 0 0 18px #4ae0a0, 0 0 36px rgba(74, 224, 160, 0.3);
    }
}

.hero-title {
    font-size: clamp(2.2rem, 4.5vw, 4rem);
    text-align: left;
    font-weight: 800;
    color: var(--white);
    line-height: 1.12;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    animation: fadeSlideUp 0.6s ease 0.1s both;
}

.hero-subtitle {
    font-size: 1.02rem;
    text-align: left;
    color: rgba(255, 255, 255, 0.58);
    line-height: 1.82;
    margin-bottom: 36px;
    font-weight: 400;
    animation: fadeSlideUp 0.6s ease 0.2s both;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 48px;
    animation: fadeSlideUp 0.6s ease 0.3s both;
}

.hero-stats {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.09);
    backdrop-filter: blur(16px);
    border-radius: var(--r-lg);
    padding: 18px 24px;
    gap: 0;
    animation: fadeSlideUp 0.6s ease 0.4s both;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
}

.stat-num {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    letter-spacing: -0.03em;
}

.stat-plus {
    font-size: 0.95rem;
    color: #4aa3f0;
}

.stat-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-top: 5px;
}

.stat-divider {
    width: 1px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

/* Hero Right — Logo Display */
.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeSlideUp 0.7s ease 0.2s both;
}

.hero-logo-display {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

.logo-glow {
    position: absolute;
    width: 340px;
    height: 340px;
    background: radial-gradient(circle, rgba(26, 110, 219, 0.25) 0%, transparent 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(40px);
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {

    0%,
    100% {
        opacity: 0.7;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.hero-logo-img {
    width: 450px;
    height: 450px;
    object-fit: contain;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 8px 40px rgba(26, 110, 219, 0.5));
    animation: logoFloat 6s ease-in-out infinite;
}

@keyframes logoFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

.hero-logo-cards {
    display: flex;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.hero-mini-card {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px);
    color: rgba(255, 255, 255, 0.85);
    padding: 8px 14px;
    border-radius: var(--r-full);
    font-size: 0.77rem;
    font-weight: 600;
    white-space: nowrap;
    transition: var(--t);
}

.hero-mini-card:hover {
    background: rgba(26, 110, 219, 0.25);
    border-color: rgba(74, 163, 240, 0.4);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 30px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.35), transparent);
    animation: scrollPulse 1.6s ease-in-out infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.35;
    }

    50% {
        opacity: 1;
    }
}

/* ══════════════════════════════════════
   TRUST STRIP
══════════════════════════════════════ */
.trust-strip {
    background: var(--navy-900);
    padding: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 16px 28px;
    letter-spacing: 0.01em;
    transition: color 0.2s;
}

.trust-item:hover {
    color: rgba(255, 255, 255, 0.9);
}

.trust-sep {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

/* ══════════════════════════════════════
   SERVICES
══════════════════════════════════════ */
.services {
    background: var(--off-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(268px, 1fr));
    gap: 22px;
}

.service-card {
    background: var(--white);
    border: 1.5px solid var(--border-light);
    border-radius: var(--r-lg);
    padding: 30px 26px 26px;
    position: relative;
    transition: var(--t);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--navy-500), #4aa3f0);
    opacity: 0;
    transition: opacity 0.3s;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(26, 110, 219, 0.18);
}

.service-card:hover::after {
    opacity: 1;
}

.service-card.featured {
    border-color: rgba(26, 110, 219, 0.22);
    background: linear-gradient(160deg, #edf5fd 0%, var(--white) 60%);
    box-shadow: var(--shadow-md);
}

.service-card.featured::after {
    opacity: 1;
}

.featured-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: linear-gradient(135deg, var(--navy-500), var(--navy-600));
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: var(--r-full);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    box-shadow: 0 2px 10px rgba(26, 110, 219, 0.35);
}

.service-icon-wrap {
    width: 54px;
    height: 54px;
    background: var(--icbg);
    border: 1.5px solid color-mix(in srgb, var(--ic) 15%, transparent);
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ic);
    margin-bottom: 18px;
    transition: var(--t);
    flex-shrink: 0;
}

.service-card:hover .service-icon-wrap {
    transform: scale(1.06);
    box-shadow: 0 4px 16px color-mix(in srgb, var(--ic) 25%, transparent);
}

.service-title {
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.service-desc {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.7;
    flex: 1;
    margin-bottom: 20px;
}

.service-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
}

.service-price {
    background: var(--navy-50);
    color: var(--navy-600);
    border: 1px solid var(--navy-100);
    font-size: 0.78rem;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: var(--r-full);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.service-cta-link {
    font-size: 0.83rem;
    font-weight: 700;
    color: var(--navy-500);
    transition: var(--t);
    white-space: nowrap;
}

.service-cta-link:hover {
    color: var(--navy-400);
    transform: translateX(3px);
    display: inline-block;
}

/* ══════════════════════════════════════
   WHY US
══════════════════════════════════════ */
.why-us {
    background: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.why-card {
    padding: 34px 30px;
    border-radius: var(--r-lg);
    border: 1.5px solid var(--border-light);
    background: var(--white);
    transition: var(--t);
    position: relative;
    overflow: hidden;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(26, 110, 219, 0.18);
}

.why-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--navy-50), #daedfb);
    border: 1.5px solid var(--navy-100);
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-600);
    margin-bottom: 18px;
    transition: var(--t);
}

.why-card:hover .why-icon {
    background: linear-gradient(135deg, var(--navy-500), var(--navy-400));
    border-color: transparent;
    color: var(--white);
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(26, 110, 219, 0.3);
}

.why-card h3 {
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 9px;
    letter-spacing: -0.01em;
}

.why-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.75;
}

/* ══════════════════════════════════════
   CTA BANNER
══════════════════════════════════════ */
.cta-banner {
    background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 50%, var(--navy-700) 100%);
    padding: 88px 0;
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.28;
}

.cta-orb-1 {
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, var(--navy-500), transparent 70%);
    top: -160px;
    left: -80px;
}

.cta-orb-2 {
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, var(--green-500), transparent 70%);
    bottom: -120px;
    right: -60px;
    opacity: 0.15;
}

.cta-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    flex-wrap: wrap;
}

.cta-eyebrow {
    display: block;
    color: #4aa3f0;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.cta-content h2 {
    font-size: clamp(1.55rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 10px;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.97rem;
    max-width: 420px;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    flex-shrink: 0;
}

/* ══════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════ */
.testimonials {
    background: var(--off-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 22px;
}

.testi-card {
    background: var(--white);
    border: 1.5px solid var(--border-light);
    border-radius: var(--r-lg);
    padding: 28px 26px;
    transition: var(--t);
    position: relative;
    overflow: hidden;
}

.testi-card::before {
    content: '"';
    position: absolute;
    top: 14px;
    right: 20px;
    font-size: 5rem;
    line-height: 1;
    color: var(--navy-50);
    font-family: Georgia, serif;
    pointer-events: none;
}

.testi-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(26, 110, 219, 0.14);
}

.testi-stars {
    color: #f5a623;
    font-size: 0.95rem;
    letter-spacing: 1.5px;
    margin-bottom: 14px;
}

.testi-text {
    font-size: 0.89rem;
    color: var(--text-secondary);
    line-height: 1.78;
    font-style: italic;
    margin-bottom: 22px;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testi-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.82rem;
    font-weight: 800;
    flex-shrink: 0;
}

.testi-info strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: -0.01em;
}

.testi-info span {
    font-size: 0.77rem;
    color: var(--text-muted);
}

/* ══════════════════════════════════════
   FAQ
══════════════════════════════════════ */
.faq {
    background: var(--white);
}

.faq-list {
    max-width: 740px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    border: 1.5px solid var(--border);
    border-radius: var(--r-md);
    overflow: hidden;
    background: var(--white);
    transition: box-shadow 0.3s, border-color 0.3s;
}

.faq-item.open {
    box-shadow: var(--shadow-md);
    border-color: rgba(26, 110, 219, 0.22);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 19px 22px;
    background: none;
    border: none;
    text-align: left;
    font-size: 0.93rem;
    font-weight: 700;
    color: var(--dark);
    transition: background 0.2s;
    letter-spacing: -0.01em;
}

.faq-question:hover {
    background: var(--off-white);
}

.faq-icon {
    flex-shrink: 0;
    color: var(--navy-500);
    transition: transform 0.35s var(--ease);
}

.faq-item.open .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease);
}

.faq-answer p {
    padding: 14px 22px 20px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.78;
    border-top: 1px solid var(--border-light);
}

/* ══════════════════════════════════════
   CONTACT
══════════════════════════════════════ */
.contact {
    background: var(--off-white);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.65fr;
    gap: 44px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-card {
    background: var(--white);
    border: 1.5px solid var(--border-light);
    border-radius: var(--r-md);
    padding: 18px 20px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    transition: var(--t);
}

.contact-card:hover {
    border-color: rgba(26, 110, 219, 0.2);
    box-shadow: var(--shadow-sm);
    transform: translateX(4px);
}

.contact-icon {
    width: 42px;
    height: 42px;
    background: var(--navy-50);
    border: 1.5px solid var(--navy-100);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-600);
    flex-shrink: 0;
}

.contact-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.09em;
    margin-bottom: 4px;
}

.contact-value {
    font-size: 0.93rem;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: -0.01em;
    transition: color 0.2s;
}

a.contact-value:hover {
    color: var(--navy-500);
}

.contact-form {
    background: var(--white);
    border: 1.5px solid var(--border-light);
    border-radius: var(--r-xl);
    padding: 38px 34px;
    box-shadow: var(--shadow-md);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-group {
    margin-bottom: 18px;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: 0.01em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 15px;
    border: 1.5px solid var(--border);
    border-radius: var(--r-sm);
    font-family: var(--font);
    font-size: 0.9rem;
    color: var(--text-primary);
    background: var(--white);
    transition: var(--t);
    outline: none;
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--navy-500);
    box-shadow: 0 0 0 3px rgba(26, 110, 219, 0.1);
}

.form-success {
    display: flex;
    align-items: center;
    gap: 9px;
    background: var(--green-50);
    border: 1.5px solid var(--green-400);
    color: var(--green-600);
    border-radius: var(--r-sm);
    padding: 13px 16px;
    font-size: 0.88rem;
    font-weight: 600;
    margin-top: 14px;
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer {
    background: var(--navy-950);
    color: rgba(255, 255, 255, 0.6);
}

.footer-top {
    padding: 72px 0 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.7fr 1fr 1fr 1fr;
    gap: 48px;
}

.footer-logo-wrap {
    display: inline-flex;
    margin-bottom: 16px;
}

.footer-logo-img {
    width: 110px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 12px rgba(26, 110, 219, 0.35));
}

.footer-desc {
    font-size: 0.875rem;
    line-height: 1.78;
    margin-bottom: 22px;
    color: rgba(255, 255, 255, 0.42);
}

.footer-contact-quick {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-quick-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.55);
    transition: color 0.2s;
}

.footer-quick-link:hover {
    color: #4aa3f0;
}

.footer-col-title {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 18px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.footer-links a {
    font-size: 0.855rem;
    color: rgba(255, 255, 255, 0.45);
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #4aa3f0;
}

.footer-trust-badges {
    margin-top: 22px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ftrust-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.77rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.38);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    padding: 6px 11px;
    border-radius: var(--r-sm);
    width: fit-content;
}

.footer-bottom {
    padding: 18px 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 6px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.28);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.45);
    transition: color 0.2s;
}

.footer-bottom a:hover {
    color: #4aa3f0;
}

/* ══════════════════════════════════════
   FLOATING BUTTONS
══════════════════════════════════════ */
.float-buttons {
    position: fixed;
    bottom: 26px;
    right: 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 900;
}

.float-btn {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 13px 20px;
    border-radius: var(--r-full);
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.28);
    transition: var(--t);
    white-space: nowrap;
    letter-spacing: 0.01em;
}

.float-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

.float-btn.whatsapp {
    background: #25D366;
    color: var(--white);
}

.float-btn.call {
    background: var(--navy-500);
    color: var(--white);
}

/* ══════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════ */
@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(26px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

[data-aos] {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* staggered delay */
.services-grid .service-card:nth-child(1) {
    transition-delay: .04s
}

.services-grid .service-card:nth-child(2) {
    transition-delay: .08s
}

.services-grid .service-card:nth-child(3) {
    transition-delay: .12s
}

.services-grid .service-card:nth-child(4) {
    transition-delay: .16s
}

.services-grid .service-card:nth-child(5) {
    transition-delay: .20s
}

.services-grid .service-card:nth-child(6) {
    transition-delay: .24s
}

.services-grid .service-card:nth-child(7) {
    transition-delay: .28s
}

.services-grid .service-card:nth-child(8) {
    transition-delay: .32s
}

.why-grid .why-card:nth-child(1) {
    transition-delay: .04s
}

.why-grid .why-card:nth-child(2) {
    transition-delay: .09s
}

.why-grid .why-card:nth-child(3) {
    transition-delay: .14s
}

.why-grid .why-card:nth-child(4) {
    transition-delay: .19s
}

.why-grid .why-card:nth-child(5) {
    transition-delay: .24s
}

.why-grid .why-card:nth-child(6) {
    transition-delay: .29s
}

.testimonials-grid .testi-card:nth-child(1) {
    transition-delay: .04s
}

.testimonials-grid .testi-card:nth-child(2) {
    transition-delay: .09s
}

.testimonials-grid .testi-card:nth-child(3) {
    transition-delay: .14s
}

.testimonials-grid .testi-card:nth-child(4) {
    transition-delay: .19s
}

.testimonials-grid .testi-card:nth-child(5) {
    transition-delay: .24s
}

.testimonials-grid .testi-card:nth-child(6) {
    transition-delay: .29s
}

/* ══════════════════════════════════════
   RESPONSIVE — TABLET
══════════════════════════════════════ */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-left {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-right {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .contact-info {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}

/* ══════════════════════════════════════
   RESPONSIVE — MOBILE
══════════════════════════════════════ */
@media (max-width: 768px) {
    :root {
        --nav-h: 66px;
    }

    .section {
        padding: 72px 0;
    }

    .container {
        padding: 0 18px;
    }

    /* Nav mobile — right-side drawer */
    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 75%;
        max-width: 320px;
        background: rgba(6, 15, 30, 0.99);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: calc(var(--nav-h) + 12px) 0 32px;
        border-left: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: -8px 0 40px rgba(0,0,0,0.5);
        transform: translateX(100%);
        opacity: 1;
        transition: transform 0.38s var(--ease);
        pointer-events: none;
        z-index: 999;
        overflow-y: auto;
    }

    .nav-links.open {
        transform: translateX(0);
        pointer-events: all;
    }

    /* Overlay behind drawer */
    .nav-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.55);
        z-index: 998;
        backdrop-filter: blur(2px);
    }

    .nav-overlay.show {
        display: block;
    }

    .nav-link {
        padding: 15px 26px;
        border-radius: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        font-size: 0.95rem;
    }

    .nav-link::after {
        display: none;
    }

    .btn-nav {
        margin: 20px 26px 0;
        justify-content: center;
        border-radius: var(--r-full);
    }

    .hamburger {
        display: flex;
    }

    /* Hero mobile */
    .hero-inner {
        grid-template-columns: 1fr;
    }

    .hero-right {
        display: none;
    }

    .hero-left {
        align-items: flex-start;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        width: 100%;
        justify-content: space-around;
        padding: 14px 10px;
    }

    .stat-item {
        padding: 0 8px;
    }

    .hero-scroll-indicator {
        display: none;
    }

    /* Trust strip */
    .trust-inner {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding: 0 8px;
    }

    .trust-item {
        flex-shrink: 0;
        padding: 14px 16px;
    }

    .trust-sep {
        display: none;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* Why */
    .why-grid {
        grid-template-columns: 1fr;
    }

    /* CTA */
    .cta-inner {
        flex-direction: column;
        text-align: center;
    }

    .cta-content p {
        margin: 0 auto;
    }

    .cta-actions {
        width: 100%;
        flex-direction: column;
    }

    .cta-actions .btn {
        width: 100%;
        justify-content: center;
    }

    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    /* Contact */
    .contact-info {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 26px 18px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    /* Float buttons */
    .float-btn span {
        display: none;
    }

    .float-btn {
        padding: 13px;
        border-radius: 50%;
    }

    .float-buttons {
        bottom: 18px;
        right: 14px;
        gap: 9px;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        flex-wrap: wrap;
        row-gap: 10px;
    }

    .stat-divider {
        display: none;
    }

    .section-header {
        margin-bottom: 36px;
    }

    .hero-title {
        font-size: 2rem;
    }
}