/* Bantec IT — Landing v3
   Premium design: gradients, depth, professional polish
*/

:root {
    --primary: #0066cc;
    --primary-dark: #004999;
    --primary-light: #e6f0fa;
    --accent: #00c896;
    --accent-dark: #00a378;
    --dark: #0a0e27;
    --gray: #6b7280;
    --gray-light: #9ca3af;
    --light: #f8fafc;
    --border: #e5e7eb;
    --border-light: #f1f5f9;
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --shadow-sm: 0 1px 2px rgba(10, 14, 39, 0.04);
    --shadow: 0 4px 12px rgba(10, 14, 39, 0.06);
    --shadow-lg: 0 12px 40px rgba(10, 14, 39, 0.08);
    --shadow-xl: 0 24px 60px rgba(10, 14, 39, 0.12);
    --gradient: linear-gradient(135deg, #0066cc 0%, #00c896 100%);
    --gradient-soft: linear-gradient(135deg, #e6f0fa 0%, #f0fdf4 100%);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    color: var(--dark);
    line-height: 1.6;
    background: #ffffff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: var(--primary-dark);
}

/* ============== DECORATIVE BG ============== */
.bg-grid {
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(0, 102, 204, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 102, 204, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

.bg-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    pointer-events: none;
    z-index: 0;
}

.bg-blob-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #0066cc 0%, transparent 70%);
    top: -200px;
    right: -100px;
}

.bg-blob-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #00c896 0%, transparent 70%);
    bottom: 100px;
    left: -100px;
}

/* ============== NAVBAR ============== */
.navbar {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-light);
    z-index: 100;
    position: sticky;
}

.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    color: var(--dark);
    text-decoration: none;
    font-size: 18px;
}

.logo-mark {
    width: 40px;
    height: 40px;
    background: var(--gradient);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(0, 102, 204, 0.3);
}

.logo-text {
    letter-spacing: -0.02em;
}

.logo-accent {
    color: var(--primary);
    font-weight: 900;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a:not(.btn-nav) {
    color: var(--dark);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s;
}

.nav-links a:not(.btn-nav):hover {
    color: var(--primary);
}

.btn-nav {
    background: var(--dark);
    color: white !important;
    padding: 10px 18px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
}

.btn-nav:hover {
    background: var(--primary);
    color: white !important;
    transform: translateY(-1px);
}

/* ============== HERO ============== */
.hero {
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 640px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    border: 1px solid var(--border);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(0, 200, 150, 0.2);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-title {
    font-size: clamp(36px, 5vw, 60px);
    line-height: 1.05;
    font-weight: 900;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
    color: var(--dark);
}

.hero-gradient {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 19px;
    color: var(--gray);
    margin-bottom: 36px;
    line-height: 1.6;
}

.hero-subtitle strong {
    color: var(--dark);
    font-weight: 600;
}

.hero-cta {
    display: flex;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

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

.stat {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-size: 32px;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.02em;
    line-height: 1;
}

.stat-label {
    font-size: 13px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

/* HERO VISUAL */
.hero-visual {
    position: relative;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-card {
    position: absolute;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: var(--shadow);
    min-width: 220px;
}

.hero-card .hc-icon {
    font-size: 28px;
    width: 48px;
    height: 48px;
    background: var(--primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-card .hc-text {
    display: flex;
    flex-direction: column;
}

.hero-card .hc-text strong {
    font-size: 15px;
    color: var(--dark);
    font-weight: 700;
}

.hero-card .hc-text span {
    font-size: 12px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 2px;
}

.hero-card-1 { top: 30px; left: 0; animation: float 6s ease-in-out infinite; }
.hero-card-2 { top: 180px; right: 0; animation: float 6s ease-in-out infinite 1.5s; }
.hero-card-3 { bottom: 50px; left: 40px; animation: float 6s ease-in-out infinite 3s; }

.hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ============== BUTTONS ============== */
.btn-primary, .btn-secondary {
    padding: 14px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    border: none;
}

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

.btn-primary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 102, 204, 0.3);
}

.btn-secondary {
    background: white;
    color: var(--dark);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: var(--light);
    color: var(--dark);
    border-color: var(--gray-light);
    transform: translateY(-1px);
}

.btn-large {
    padding: 18px 32px;
    font-size: 16px;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ============== TRUST BAR ============== */
.trust-bar {
    padding: 40px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    background: var(--light);
}

.trust-label {
    text-align: center;
    color: var(--gray);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    font-weight: 500;
}

.trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    font-weight: 600;
    color: var(--gray);
    font-size: 15px;
}

.trust-logos span {
    opacity: 0.7;
    transition: all 0.2s;
}

.trust-logos span:hover {
    opacity: 1;
    color: var(--primary);
}

/* ============== SECTIONS ============== */
.section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.bg-light {
    background: var(--light);
}

.section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 64px;
}

.section-eyebrow {
    display: inline-block;
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.section-head h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    color: var(--dark);
}

.section-head p {
    color: var(--gray);
    font-size: 18px;
}

/* ============== PAIN GRID ============== */
.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.pain-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s;
}

.pain-card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.pain-icon {
    font-size: 32px;
    width: 56px;
    height: 56px;
    background: var(--light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pain-card p {
    color: var(--dark);
    font-size: 15px;
    font-style: italic;
    line-height: 1.5;
}

/* ============== SERVICES ============== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.service-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

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

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

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

.service-card-featured {
    background: var(--dark);
    color: white;
    border-color: var(--dark);
}

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

.service-card-featured h3 {
    color: white;
}

.service-card-featured p {
    color: rgba(255, 255, 255, 0.85);
}

.service-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary);
}

.service-icon-blue { background: #dbeafe; color: #0066cc; }
.service-icon-purple { background: #f3e8ff; color: #7c3aed; }
.service-icon-green { background: #d1fae5; color: #059669; }
.service-icon-orange { background: #fed7aa; color: #ea580c; }
.service-icon-red { background: #fecaca; color: #dc2626; }
.service-icon-yellow { background: #fef3c7; color: #ca8a04; }
.service-icon-cyan { background: #cffafe; color: #0891b2; }
.service-icon-gradient { background: var(--gradient); color: white; }

.service-card-featured .service-icon-gradient {
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.service-card p {
    color: var(--gray);
    font-size: 15px;
    line-height: 1.6;
}

.featured-tag {
    display: inline-block;
    background: var(--gradient);
    color: white;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.service-card-featured .featured-tag {
    background: rgba(255, 255, 255, 0.2);
}

/* ============== AGENTS ============== */
.agents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

.agent-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: all 0.3s;
    position: relative;
}

.agent-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.agent-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    margin-top: 20px;
}

.agent-card p {
    color: var(--gray);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.agent-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.agent-tags span {
    background: var(--light);
    color: var(--gray);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
}

.agent-icon-blue { background: linear-gradient(135deg, #dbeafe 0%, #93c5fd 100%); color: #0066cc; }
.agent-icon-green { background: linear-gradient(135deg, #d1fae5 0%, #6ee7b7 100%); color: #059669; }
.agent-icon-purple { background: linear-gradient(135deg, #f3e8ff 0%, #c4b5fd 100%); color: #7c3aed; }

.agent-card-featured {
    background: var(--gradient-soft);
    border-color: var(--primary);
}

.agents-cta {
    background: linear-gradient(135deg, #0a0e27 0%, #0066cc 100%);
    border-radius: var(--radius-xl);
    padding: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    color: white;
    position: relative;
    overflow: hidden;
}

.agents-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 200, 150, 0.3) 0%, transparent 70%);
    border-radius: 50%;
}

.agents-cta-content {
    flex: 1;
    min-width: 280px;
    position: relative;
}

.agents-cta-content h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.agents-cta-content p {
    font-size: 16px;
    opacity: 0.9;
}

.agents-cta .btn-primary {
    background: white;
    color: var(--primary);
    position: relative;
    z-index: 1;
}

.agents-cta .btn-primary:hover {
    background: var(--light);
    color: var(--primary-dark);
}

/* ============== PLANS ============== */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.plan-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    transition: all 0.3s;
    position: relative;
}

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

.plan-card-featured {
    background: var(--dark);
    color: white;
    border-color: var(--dark);
    transform: scale(1.02);
    box-shadow: var(--shadow-xl);
}

.plan-card-featured h3 {
    color: white;
}

.plan-card-featured .plan-sub {
    color: rgba(255, 255, 255, 0.7);
}

.plan-card-featured .plan-list li {
    color: rgba(255, 255, 255, 0.9);
}

.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: white;
    padding: 6px 18px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: var(--shadow);
}

.plan-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.plan-price {
    font-size: 40px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
    line-height: 1;
}

.plan-card-featured .plan-price {
    color: white;
}

.plan-price span {
    font-size: 14px;
    color: var(--gray);
    font-weight: 500;
}

.plan-card-featured .plan-price span {
    color: rgba(255, 255, 255, 0.7);
}

.plan-sub {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 28px;
    min-height: 42px;
}

.plan-list {
    list-style: none;
    margin-bottom: 32px;
}

.plan-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-light);
    color: var(--dark);
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.plan-card-featured .plan-list li {
    border-color: rgba(255, 255, 255, 0.1);
}

.plan-list li:last-child {
    border-bottom: none;
}

.plan-list li::before {
    content: '✓';
    color: var(--accent);
    font-weight: 700;
    flex-shrink: 0;
}

.plan-card-featured .plan-list li::before {
    color: var(--accent);
}

.plan-card-featured .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.2);
}

.plan-card-featured .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

.plan-card-featured .btn-primary {
    background: white;
    color: var(--dark);
}

.plan-card-featured .btn-primary:hover {
    background: var(--light);
    color: var(--primary);
}

/* ============== PROCESS ============== */
.process-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 24px;
    align-items: center;
}

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

.step-number {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    background: var(--primary-light);
    padding: 6px 12px;
    border-radius: 100px;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
}

.process-step h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.process-step p {
    color: var(--gray);
    font-size: 15px;
    line-height: 1.6;
}

.process-connector {
    width: 60px;
    height: 2px;
    background: linear-gradient(to right, var(--border) 0%, var(--primary) 50%, var(--border) 100%);
}

/* ============== CASES ============== */
.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.case-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all 0.3s;
}

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

.case-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-light);
    flex-wrap: wrap;
    gap: 12px;
}

.case-header strong {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.case-tag {
    background: var(--primary-light);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.case-card p {
    color: var(--gray);
    font-size: 15px;
    margin-bottom: 24px;
    line-height: 1.6;
}

.case-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
    padding: 20px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

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

.case-stat-num {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.02em;
}

.case-stat-label {
    font-size: 12px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 4px;
    display: block;
}

.case-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tech-tag {
    background: var(--light);
    color: var(--dark);
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid var(--border);
}

/* ============== CTA ============== */
.cta-section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.cta-card {
    background: var(--dark);
    border-radius: var(--radius-xl);
    padding: 80px 60px;
    position: relative;
    overflow: hidden;
    color: white;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 102, 204, 0.4) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-card::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 200, 150, 0.3) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-eyebrow {
    color: rgba(255, 255, 255, 0.7);
}

.cta-card h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    color: white;
}

.cta-card p {
    font-size: 18px;
    opacity: 0.85;
    margin-bottom: 36px;
}

.cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cta-card .btn-primary {
    background: white;
    color: var(--dark);
}

.cta-card .btn-primary:hover {
    background: var(--light);
    color: var(--primary);
}

.cta-card .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.cta-card .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

.cta-meta {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    font-size: 14px;
    opacity: 0.85;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cta-meta-item svg {
    opacity: 0.7;
}

/* ============== FOOTER ============== */
.footer {
    background: #0a0e27;
    color: #999;
    padding: 80px 0 32px;
    position: relative;
    z-index: 1;
}

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

.footer-brand .logo {
    color: white;
    margin-bottom: 16px;
}

.footer-brand p {
    color: #999;
    font-size: 14px;
    max-width: 300px;
}

.footer strong {
    display: block;
    color: white;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer ul {
    list-style: none;
}

.footer li {
    padding: 6px 0;
    font-size: 14px;
    color: #999;
    transition: color 0.2s;
}

.footer li:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
    text-align: center;
    font-size: 13px;
    color: #666;
}


/* TRUST STATS */
.trust-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.trust-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.trust-stat strong {
    font-size: 36px;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.02em;
    line-height: 1;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.trust-stat span {
    color: var(--gray);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

/* CASE CARD FEATURED */
.case-card-featured {
    background: var(--gradient-soft);
    border-color: var(--primary);
    position: relative;
}

.case-card-featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

/* ============== RESPONSIVE ============== */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        height: 360px;
        margin-top: 40px;
    }

    .nav-links a:not(.btn-nav) {
        display: none;
    }

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

    .process-connector {
        width: 2px;
        height: 40px;
        margin: 0 auto;
    }

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

    .cta-card {
        padding: 60px 32px;
    }
}

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

    .hero {
        padding: 60px 0;
    }

    .hero-card {
        font-size: 14px;
        padding: 14px 16px;
        min-width: 180px;
    }

    .hero-card .hc-icon {
        width: 40px;
        height: 40px;
        font-size: 22px;
    }

    .hero-card-1 { top: 0; left: 0; }
    .hero-card-2 { top: 140px; right: 0; }
    .hero-card-3 { bottom: 0; left: 20px; }

    .section {
        padding: 60px 0;
    }

    .section-head {
        margin-bottom: 40px;
    }

    .agents-cta {
        padding: 36px 24px;
        flex-direction: column;
        text-align: center;
    }

    .cta-card {
        padding: 48px 24px;
    }

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

    .footer {
        padding: 60px 0 24px;
    }

    .plan-card-featured {
        transform: scale(1);
    }
}
