/* ============================================================
   ANU&CO – Complete Design System
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

/* ─── Tokens ────────────────────────────────────────────────── */
:root {
    --primary: #1a56db;
    --primary-dark: #1341b5;
    --primary-light: #3b82f6;
    --accent: #0891b2;
    --accent-light: #38bdf8;
    --success: #059669;
    --warning: #d97706;
    --danger: #dc2626;

    --bg: #f8fafc;
    --bg-dark: #0a0f1e;
    --surface: #ffffff;
    --surface-2: #f1f5f9;
    --border: #e2e8f0;

    --text-1: #0f172a;
    --text-2: #1e293b;
    --text-3: #64748b;
    --text-inv: #ffffff;

    --shadow-sm: 0 1px 3px rgba(0, 0, 0, .06), 0 1px 2px rgba(0, 0, 0, .04);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, .09);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, .11);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, .14);

    --radius-sm: .5rem;
    --radius-md: .875rem;
    --radius-lg: 1.25rem;
    --radius-xl: 2rem;
    --radius-full: 9999px;

    --ease: cubic-bezier(.4, 0, .2, 1);
    --t: all .3s var(--ease);
    --t-slow: all .6s var(--ease);

    --font-main: 'Poppins', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;
    --nav-h: 76px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text-2);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

ul {
    list-style: none;
}

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

input,
textarea,
select {
    font-family: inherit;
    font-size: 1rem;
    outline: none;
}

/* ─── Layout ─────────────────────────────────────────────────── */
.container {
    width: min(1200px, 100% - 2rem);
    margin-inline: auto;
}

.container-wide {
    width: min(1440px, 100% - 2rem);
    margin-inline: auto;
}

.section {
    padding: 6rem 0;
}

.section-sm {
    padding: 3.5rem 0;
}

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

/* ─── Eyebrow / Tag ──────────────────────────────────────────── */
.tag {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    font-family: var(--font-main);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--primary);
    background: rgba(26, 86, 219, .09);
    padding: .4rem 1rem;
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
}

.tag::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
    display: block;
}

/* ─── Typography ─────────────────────────────────────────────── */
.section-title {
    font-family: var(--font-main);
    font-size: clamp(1.85rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: var(--text-1);
    line-height: 1.2;
    margin-bottom: .8rem;
}

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

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-3);
    max-width: 620px;
    margin-inline: auto;
    margin-bottom: 3.5rem;
    line-height: 1.75;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ─── Buttons ────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    padding: .9rem 2.2rem;
    border-radius: var(--radius-full);
    font-family: var(--font-main);
    font-size: .92rem;
    font-weight: 600;
    transition: var(--t);
    position: relative;
    overflow: hidden;
    letter-spacing: .01em;
}

.btn:active {
    transform: scale(.97);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #1a4fcf 100%);
    color: #fff;
    box-shadow: 0 4px 20px rgba(26, 86, 219, .38);
}

.btn-primary:hover {
    box-shadow: 0 8px 30px rgba(26, 86, 219, .5);
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid rgba(255, 255, 255, .55);
    color: #fff;
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(6px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, .18);
    border-color: #fff;
    transform: translateY(-2px);
}

.btn-accent {
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary-light) 100%);
    color: #fff;
    box-shadow: 0 4px 20px rgba(8, 145, 178, .38);
}

.btn-accent:hover {
    box-shadow: 0 8px 30px rgba(8, 145, 178, .5);
    transform: translateY(-2px);
}

.btn-white {
    background: #fff;
    color: var(--primary);
    font-family: var(--font-main);
    font-weight: 700;
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, .18);
}

/* ─── Cards ──────────────────────────────────────────────────── */
.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--t);
}

.card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
    border-color: #c7d7f8;
}

/* ─── Form Elements ──────────────────────────────────────────── */
.form-group {
    display: flex;
    flex-direction: column;
    gap: .4rem;
    margin-bottom: 1.25rem;
}

.form-group label {
    font-size: .85rem;
    font-weight: 600;
    color: var(--text-2);
    font-family: var(--font-main);
}

.form-control {
    width: 100%;
    padding: .88rem 1.2rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--surface);
    color: var(--text-1);
    font-size: .93rem;
    transition: var(--t);
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26, 86, 219, .1);
}

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

textarea.form-control {
    resize: vertical;
    min-height: 130px;
}

/* ─── Navbar ─────────────────────────────────────────────────── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    transition: var(--t);
}

.navbar.transparent {
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(24px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, .08), 0 4px 20px rgba(0, 0, 0, .06);
}

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

/* ─── Brand Logo ─────────────────────────────────────────────── */
.navbar-brand {
    display: flex;
    align-items: center;
    gap: .65rem;
    text-decoration: none;
    flex-shrink: 0;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.brand-logo-mark {
    /* SVG-driven mark — no emoji */
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.brand-logo-mark svg {
    width: 22px;
    height: 22px;
    fill: #fff;
}

.brand-wordmark {
    font-family: var(--font-main);
    font-size: 1.45rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -.02em;
    transition: var(--t);
}

.brand-wordmark .amp {
    color: var(--accent-light);
    font-weight: 900;
}

.navbar.scrolled .brand-wordmark {
    color: var(--text-1);
}

.navbar.scrolled .brand-wordmark .amp {
    color: var(--primary);
}

/* ─── Nav Links ──────────────────────────────────────────────── */
.navbar-nav {
    display: flex;
    align-items: center;
    gap: .15rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.navbar-nav a {
    font-family: var(--font-main);
    font-size: .875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, .85);
    padding: .5rem .95rem;
    border-radius: var(--radius-sm);
    transition: var(--t);
    position: relative;
    white-space: nowrap;
}

.navbar-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: .95rem;
    right: .95rem;
    height: 2px;
    background: var(--accent-light);
    transform: scaleX(0);
    transition: transform .3s var(--ease);
    border-radius: 2px;
}

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

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

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

.navbar-cta {
    margin-left: .65rem;
}

.btn-nav {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .62rem 1.4rem;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    font-family: var(--font-main);
    font-size: .85rem;
    font-weight: 600;
    transition: var(--t);
    box-shadow: 0 4px 16px rgba(26, 86, 219, .35);
    letter-spacing: .01em;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(26, 86, 219, .5);
}

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

.hamburger span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: #fff;
    border-radius: 2px;
    transition: var(--t);
}

.navbar.scrolled .hamburger span {
    background: var(--text-1);
}

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

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

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, .99);
    backdrop-filter: blur(24px);
    padding: 1.5rem 1.5rem 2rem;
    border-bottom: 1px solid var(--border);
    display: none;
    flex-direction: column;
    gap: .2rem;
    z-index: 999;
    box-shadow: var(--shadow-xl);
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu a {
    padding: .9rem 1rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-main);
    font-size: .95rem;
    font-weight: 500;
    color: var(--text-2);
    transition: var(--t);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: .65rem;
}

.mobile-menu a:last-child {
    border-bottom: none;
}

.mobile-menu a:hover {
    background: var(--surface-2);
    color: var(--primary);
    padding-left: 1.5rem;
}

.mobile-menu .m-btn {
    margin-top: 1rem;
}

/* ─── HERO ───────────────────────────────────────────────────── */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: #0a1628;
    z-index: 0;
}

.hero-bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .22;
    transition: opacity 1s ease;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg,
            rgba(10, 22, 40, .96) 0%,
            rgba(15, 35, 70, .88) 55%,
            rgba(8, 90, 140, .6) 100%);
    z-index: 1;
}

/* Animated gradient orbs */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 1;
}

.hero-orb-1 {
    width: 500px;
    height: 500px;
    background: rgba(26, 86, 219, .18);
    top: -100px;
    right: -50px;
    animation: orbFloat 12s ease-in-out infinite;
}

.hero-orb-2 {
    width: 350px;
    height: 350px;
    background: rgba(8, 145, 178, .12);
    bottom: -50px;
    left: 10%;
    animation: orbFloat 9s ease-in-out infinite reverse;
}

@keyframes orbFloat {

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

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

    66% {
        transform: translate(-20px, 20px) scale(.95);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: var(--nav-h);
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    font-family: var(--font-main);
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--accent-light);
    background: rgba(56, 189, 248, .1);
    border: 1px solid rgba(56, 189, 248, .2);
    padding: .4rem 1rem;
    border-radius: var(--radius-full);
    margin-bottom: 1.5rem;
}

.hero-eyebrow-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent-light);
    animation: blink 2s ease-in-out infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .3
    }
}

.hero h1 {
    font-family: var(--font-main);
    font-size: clamp(2.4rem, 5.5vw, 4.6rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.09;
    margin-bottom: 1.5rem;
    letter-spacing: -.02em;
}

.hero h1 em {
    font-style: normal;
    color: var(--accent-light);
}

.hero-lead {
    font-size: clamp(1rem, 2vw, 1.18rem);
    color: rgba(255, 255, 255, .72);
    max-width: 540px;
    margin-bottom: 2.5rem;
    line-height: 1.75;
    font-weight: 400;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

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

/* Stats strip inside hero */
.hero-stats {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.hero-stat .num {
    font-family: var(--font-main);
    font-size: 2.1rem;
    font-weight: 800;
    color: var(--accent-light);
    line-height: 1;
}

.hero-stat .lbl {
    font-size: .78rem;
    color: rgba(255, 255, 255, .55);
    margin-top: .3rem;
    font-weight: 500;
}

/* ─── Stats Strip ────────────────────────────────────────────── */
.stats-strip {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 2.5rem 0;
}

.stats-strip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item .num {
    font-family: var(--font-main);
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: .3rem;
}

.stat-item .lbl {
    font-size: .85rem;
    color: var(--text-3);
    font-weight: 500;
}

/* Vertical dividers */
.stat-divider {
    width: 1px;
    background: var(--border);
}

/* ─── Services Grid ──────────────────────────────────────────── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
    gap: 1.75rem;
}

.service-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem 1.8rem 1.75rem;
    transition: var(--t);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 86, 219, .03), rgba(8, 145, 178, .03));
    opacity: 0;
    transition: var(--t);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: #c7d7f8;
}

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

.service-card-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    display: block;
    transition: var(--t);
    position: relative;
    z-index: 1;
}

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

.service-icon-wrap {
    width: 62px;
    height: 62px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--t);
    position: relative;
    z-index: 1;
}

.service-card:hover .service-icon-wrap {
    transform: scale(1.08) rotate(-4deg);
}

.service-card h3 {
    font-family: var(--font-main);
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--text-1);
    margin-bottom: .55rem;
    position: relative;
    z-index: 1;
}

.service-card p {
    font-size: .9rem;
    color: var(--text-3);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.service-card .arrow-link {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .83rem;
    font-weight: 600;
    color: var(--primary);
    margin-top: 1.1rem;
    transition: var(--t);
    position: relative;
    z-index: 1;
}

.service-card:hover .arrow-link {
    gap: .75rem;
}

/* Icon color classes */
.ic-blue {
    background: rgba(26, 86, 219, .1);
    color: var(--primary);
}

.ic-cyan {
    background: rgba(8, 145, 178, .1);
    color: var(--accent);
}

.ic-green {
    background: rgba(5, 150, 105, .1);
    color: var(--success);
}

.ic-amber {
    background: rgba(217, 119, 6, .1);
    color: var(--warning);
}

.ic-purple {
    background: rgba(109, 40, 217, .1);
    color: #7c3aed;
}

.ic-rose {
    background: rgba(225, 29, 72, .1);
    color: #e11d48;
}

.ic-teal {
    background: rgba(13, 148, 136, .1);
    color: #0d9488;
}

.ic-indigo {
    background: rgba(79, 70, 229, .1);
    color: #4f46e5;
}

.ic-orange {
    background: rgba(234, 88, 12, .1);
    color: #ea580c;
}

/* ─── Why Choose Us ──────────────────────────────────────────── */
.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.split-img {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    height: 520px;
    box-shadow: var(--shadow-xl);
}

.split-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.split-img-badge {
    position: absolute;
    bottom: 2rem;
    right: -1.5rem;
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.75rem;
    box-shadow: var(--shadow-xl);
    text-align: center;
    min-width: 150px;
}

.split-img-badge .b-num {
    font-family: var(--font-main);
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}

.split-img-badge .b-lbl {
    font-size: .78rem;
    color: var(--text-3);
    margin-top: .3rem;
    font-weight: 500;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    margin-top: 2rem;
}

.feat-item {
    display: flex;
    gap: 1.1rem;
    align-items: flex-start;
    padding: 1.25rem 1.4rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: var(--t);
}

.feat-item:hover {
    border-color: #c7d7f8;
    box-shadow: var(--shadow-md);
}

.feat-icon {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
}

.feat-item h4 {
    font-family: var(--font-main);
    font-weight: 700;
    font-size: .94rem;
    color: var(--text-1);
    margin-bottom: .2rem;
}

.feat-item p {
    font-size: .85rem;
    color: var(--text-3);
    line-height: 1.6;
}

/* ─── How It Works ───────────────────────────────────────────── */
.dark-section {
    background: linear-gradient(135deg, #080e1f 0%, #0a2040 60%, #062a42 100%);
}

.steps-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    margin-top: 1rem;
}

.steps-row::before {
    content: '';
    position: absolute;
    top: 46px;
    left: calc(16.67% + 1.5rem);
    right: calc(16.67% + 1.5rem);
    height: 1px;
    background: linear-gradient(to right, rgba(56, 189, 248, .5), rgba(26, 86, 219, .5), rgba(56, 189, 248, .5));
}

.step-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
}

.step-num-wrap {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-main);
    font-size: 1.6rem;
    font-weight: 900;
    color: #fff;
    margin: 0 auto 2rem;
    box-shadow: 0 8px 32px rgba(26, 86, 219, .45);
    position: relative;
}

.step-num-wrap::after {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 1px solid rgba(56, 189, 248, .3);
}

.step-card h3 {
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: .75rem;
}

.step-card p {
    font-size: .9rem;
    color: rgba(255, 255, 255, .55);
    line-height: 1.7;
}

/* ─── Testimonials ───────────────────────────────────────────── */
.testi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(315px, 1fr));
    gap: 1.75rem;
}

.testi-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--t);
    position: relative;
}

.testi-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: #c7d7f8;
}

.quote-icon {
    font-family: Georgia, serif;
    font-size: 5.5rem;
    line-height: 1;
    color: var(--primary);
    opacity: .1;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    pointer-events: none;
    user-select: none;
}

.stars {
    color: #f59e0b;
    letter-spacing: .1em;
    font-size: .95rem;
    margin-bottom: 1rem;
}

.testi-body {
    font-size: .93rem;
    color: var(--text-2);
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testi-author {
    display: flex;
    gap: .85rem;
    align-items: center;
}

.testi-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2.5px solid var(--border);
    background: #ddd;
}

.author-name {
    font-family: var(--font-main);
    font-weight: 700;
    font-size: .93rem;
    color: var(--text-1);
}

.author-role {
    font-size: .78rem;
    color: var(--text-3);
    margin-top: .15rem;
}

/* ─── CTA Banner ─────────────────────────────────────────────── */
.cta-band {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: var(--radius-xl);
    padding: 5rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-band::before {
    content: '';
    position: absolute;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .07);
    top: -180px;
    right: -120px;
    pointer-events: none;
}

.cta-band::after {
    content: '';
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .05);
    bottom: -120px;
    left: -80px;
    pointer-events: none;
}

.cta-band h2 {
    font-family: var(--font-main);
    font-size: clamp(1.9rem, 3.5vw, 2.7rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.cta-band p {
    color: rgba(255, 255, 255, .8);
    font-size: 1.05rem;
    margin-bottom: 2.25rem;
    position: relative;
    z-index: 1;
}

.cta-band .btn-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* ─── Footer ─────────────────────────────────────────────────── */
.footer {
    background: var(--bg-dark);
    color: rgba(255, 255, 255, .65);
    padding: 5.5rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.1fr;
    gap: 3rem;
    margin-bottom: 3.5rem;
}

.footer-about p {
    font-size: .88rem;
    color: rgba(255, 255, 255, .5);
    line-height: 1.75;
    max-width: 290px;
    margin-top: 1rem;
}

.footer-social {
    display: flex;
    gap: .7rem;
    margin-top: 1.6rem;
}

.soc-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .07);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .55);
    font-size: .95rem;
    transition: var(--t);
}

.soc-btn:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
}

.footer-col h4 {
    font-family: var(--font-main);
    font-weight: 700;
    font-size: .9rem;
    color: #fff;
    margin-bottom: 1.25rem;
    padding-bottom: .7rem;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: .55rem;
}

.footer-col ul li a {
    font-size: .85rem;
    color: rgba(255, 255, 255, .5);
    transition: var(--t);
    display: inline-flex;
    align-items: center;
    gap: .4rem;
}

.footer-col ul li a::before {
    content: '›';
    color: var(--accent-light);
}

.footer-col ul li a:hover {
    color: #fff;
    padding-left: .3rem;
}

.fc-contact-item {
    display: flex;
    gap: .75rem;
    align-items: flex-start;
    margin-bottom: .9rem;
}

.fc-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    border-radius: 7px;
    background: rgba(26, 86, 219, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-light);
    font-size: .85rem;
}

.fc-contact-item p {
    font-size: .85rem;
    color: rgba(255, 255, 255, .5);
    line-height: 1.55;
}

.fc-contact-item a {
    color: rgba(255, 255, 255, .7);
    transition: var(--t);
}

.fc-contact-item a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .06);
    padding: 1.4rem 0;
    text-align: center;
    font-size: .82rem;
    color: rgba(255, 255, 255, .3);
}

.footer-bottom span {
    color: var(--accent-light);
}

/* Footer brand in footer */
.footer-brand-logo {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-family: var(--font-main);
    font-weight: 800;
    font-size: 1.4rem;
    color: #fff;
}

.footer-brand-logo .brand-logo-mark {
    width: 36px;
    height: 36px;
}

.footer-brand-logo .brand-wordmark {
    color: #fff;
    font-size: 1.35rem;
}

/* ─── WhatsApp / Scroll Top ──────────────────────────────────── */
.wa-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1100;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.65rem;
    color: #fff;
    box-shadow: 0 6px 24px rgba(37, 211, 102, .5);
    transition: var(--t);
    text-decoration: none;
    animation: waGlow 2.5s ease-in-out infinite;
}

.wa-float:hover {
    transform: scale(1.15);
    box-shadow: 0 10px 32px rgba(37, 211, 102, .65);
    animation: none;
}

@keyframes waGlow {

    0%,
    100% {
        box-shadow: 0 6px 24px rgba(37, 211, 102, .5);
    }

    50% {
        box-shadow: 0 6px 24px rgba(37, 211, 102, .5), 0 0 0 12px rgba(37, 211, 102, .12);
    }
}

.scroll-top {
    position: fixed;
    bottom: 6.5rem;
    right: 2rem;
    z-index: 1100;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: var(--primary);
    color: #fff;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(26, 86, 219, .4);
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: var(--t);
    cursor: pointer;
}

.scroll-top.show {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px) !important;
}

/* ─── Page Banner ────────────────────────────────────────────── */
.page-banner {
    background: linear-gradient(120deg, #060d1e 0%, #0a2040 50%, #072a42 100%);
    padding: 9rem 0 5.5rem;
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(ellipse at 65% 50%, rgba(26, 86, 219, .18) 0%, transparent 65%);
}

.page-banner .container {
    position: relative;
    z-index: 1;
}

.page-banner h1 {
    font-family: var(--font-main);
    font-size: clamp(2.2rem, 5vw, 3.75rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: .65rem;
    letter-spacing: -.02em;
}

.page-banner p {
    color: rgba(255, 255, 255, .65);
    font-size: 1.05rem;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .83rem;
    color: rgba(255, 255, 255, .45);
    margin-bottom: .85rem;
}

.breadcrumb a {
    color: var(--accent-light);
}

.breadcrumb .sep {
    color: rgba(255, 255, 255, .25);
}

/* ─── Badge ──────────────────────────────────────────────────── */
.badge {
    display: inline-block;
    padding: .28rem .75rem;
    border-radius: var(--radius-full);
    font-size: .74rem;
    font-weight: 700;
    font-family: var(--font-main);
}

.badge-primary {
    background: rgba(26, 86, 219, .1);
    color: var(--primary);
}

.badge-success {
    background: rgba(5, 150, 105, .1);
    color: var(--success);
}

.badge-warning {
    background: rgba(217, 119, 6, .1);
    color: var(--warning);
}

.badge-danger {
    background: rgba(220, 38, 38, .1);
    color: var(--danger);
}

/* ─── Grid helpers ───────────────────────────────────────────── */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

/* ─── AOS pointer fix ────────────────────────────────────────── */
[data-aos] {
    pointer-events: none;
}

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

/* ─── Responsive ─────────────────────────────────────────────── */
@media(max-width:1100px) {
    .split-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .split-img {
        height: 400px;
    }

    .split-img-badge {
        right: 1rem;
    }

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

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

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

    .hamburger {
        display: flex;
    }

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

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

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

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

    .cta-band {
        padding: 3rem 1.5rem;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .page-banner {
        padding: 8rem 0 4.5rem;
    }

    .section {
        padding: 4rem 0;
    }

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

    .wa-float {
        width: 52px;
        height: 52px;
        font-size: 1.5rem;
        bottom: 1.5rem;
        right: 1.5rem;
        z-index: 9999;
    }

    .scroll-top {
        bottom: 5.8rem;
        right: 1.5rem;
    }
}

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

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

    .hero h1 {
        font-size: 2.2rem;
    }

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

    .hero-btns {
        flex-direction: column;
        align-items: flex-start;
    }

    .stats-strip-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.25rem;
    }

    .two-col {
        grid-template-columns: 1fr;
    }

    .cta-band h2 {
        font-size: 1.6rem;
    }
}