/* ═══════════════════════════════════════════════════════════════════════════
   The Web Builders EU — Master Design System
   ═══════════════════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=JetBrains+Mono:wght@500&display=swap');

:root {
    --c-navy: #0a0e27;
    --c-navy-light: #141937;
    --c-blue: #2563eb;
    --c-blue-bright: #3b82f6;
    --c-blue-glow: rgba(37, 99, 235, 0.15);
    --c-mint: #10b981;
    --c-mint-glow: rgba(16, 185, 129, 0.12);
    --c-purple: #8b5cf6;
    --c-orange: #f59e0b;
    --c-white: #ffffff;
    --c-off-white: #f8fafc;
    --c-grey-50: #f1f5f9;
    --c-grey-100: #e2e8f0;
    --c-grey-200: #cbd5e1;
    --c-grey-400: #94a3b8;
    --c-grey-600: #475569;
    --c-grey-800: #1e293b;
    --c-text: #334155;
    --c-heading: #0f172a;
    --c-danger: #ef4444;
    --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
    --shadow-glow: 0 0 40px rgba(37, 99, 235, 0.2);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body.twb-page {
    font-family: var(--font-main);
    color: var(--c-text);
    line-height: 1.65;
    background: var(--c-white);
    overflow-x: hidden;
}

.twb-page img { max-width: 100%; height: auto; }
.twb-page a { color: var(--c-blue); text-decoration: none; transition: var(--transition); }
.twb-page a:hover { color: var(--c-blue-bright); }

/* ─── LAYOUT ──────────────────────────────────────────────────────────────── */
.twb-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.twb-container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.twb-section {
    padding: 100px 0;
    position: relative;
}

.twb-section-sm { padding: 60px 0; }
.twb-section-grey { background: var(--c-off-white); }
.twb-section-dark { background: var(--c-navy); color: var(--c-white); }

.twb-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; align-items: center; }
.twb-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.twb-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.twb-text-center { text-align: center; }

/* ─── TYPOGRAPHY ──────────────────────────────────────────────────────────── */
.twb-page h1, .twb-page h2, .twb-page h3, .twb-page h4 {
    font-family: var(--font-main);
    color: var(--c-heading);
    line-height: 1.15;
    font-weight: 800;
}

.twb-section-dark h1, .twb-section-dark h2, .twb-section-dark h3, .twb-section-dark h4 {
    color: var(--c-white);
}

.twb-hero-title {
    font-size: clamp(40px, 5.5vw, 72px);
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.twb-section-title {
    font-size: clamp(32px, 4vw, 48px);
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.twb-section-subtitle {
    font-size: 18px;
    color: var(--c-grey-600);
    max-width: 640px;
    line-height: 1.6;
}

.twb-section-dark .twb-section-subtitle {
    color: var(--c-grey-400);
}

.twb-text-center .twb-section-subtitle {
    margin: 0 auto 48px;
}

.twb-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--c-blue);
    margin-bottom: 16px;
}

.twb-label::before {
    content: '';
    width: 32px;
    height: 2px;
    background: var(--c-blue);
    border-radius: 2px;
}

.twb-highlight { color: var(--c-blue); }
.twb-highlight-mint { color: var(--c-mint); }

/* ─── BUTTONS ─────────────────────────────────────────────────────────────── */
.twb-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: var(--radius-md);
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 16px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    line-height: 1;
}

.twb-btn-lg { padding: 20px 40px; font-size: 17px; border-radius: var(--radius-lg); }

.twb-btn-primary {
    background: var(--c-blue);
    color: var(--c-white);
    border-color: var(--c-blue);
}

.twb-btn-primary:hover {
    background: #1d4ed8;
    border-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35);
    color: var(--c-white);
}

.twb-btn-white {
    background: var(--c-white);
    color: var(--c-navy);
    border-color: var(--c-white);
}

.twb-btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
    color: var(--c-navy);
}

.twb-btn-outline {
    background: transparent;
    color: var(--c-blue);
    border-color: var(--c-grey-200);
}

.twb-btn-outline:hover {
    border-color: var(--c-blue);
    background: var(--c-blue-glow);
    color: var(--c-blue);
}

.twb-btn-dark-outline {
    background: transparent;
    color: var(--c-white);
    border-color: rgba(255,255,255,0.25);
}

.twb-btn-dark-outline:hover {
    border-color: var(--c-white);
    background: rgba(255,255,255,0.08);
    color: var(--c-white);
}

.twb-btn-mint {
    background: var(--c-mint);
    color: var(--c-white);
    border-color: var(--c-mint);
}

.twb-btn-mint:hover {
    background: #059669;
    border-color: #059669;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.35);
    color: var(--c-white);
}

.twb-btn-sm { padding: 10px 20px; font-size: 14px; border-radius: var(--radius-sm); }
.twb-btn-full { width: 100%; justify-content: center; }
.twb-btn-group { display: flex; gap: 16px; flex-wrap: wrap; }

/* ─── HEADER / NAV ────────────────────────────────────────────────────────── */
.twb-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 14, 39, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 0;
}

.twb-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

.twb-logo {
    font-size: 22px;
    font-weight: 800;
    color: var(--c-white);
    text-decoration: none;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 10px;
}

.twb-logo span { color: var(--c-blue-bright); }
.twb-logo:hover { color: var(--c-white); }

.twb-logo-dot {
    width: 8px;
    height: 8px;
    background: var(--c-mint);
    border-radius: 50%;
    display: inline-block;
}

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

.twb-nav a {
    color: var(--c-grey-400);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
}

.twb-nav a:hover { color: var(--c-white); }

.twb-nav a.active {
    color: var(--c-white);
}

.twb-nav-cta {
    background: var(--c-blue);
    color: var(--c-white) !important;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-weight: 600 !important;
    font-size: 14px !important;
}

.twb-nav-cta:hover {
    background: #1d4ed8;
    color: var(--c-white) !important;
    transform: translateY(-1px);
}

/* Mobile nav toggle */
.twb-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.twb-nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--c-white);
    margin: 5px 0;
    transition: var(--transition);
}

/* ─── HERO ────────────────────────────────────────────────────────────────── */
.twb-hero {
    background: var(--c-navy);
    padding: 160px 0 120px;
    position: relative;
    overflow: hidden;
}

.twb-hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.twb-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.twb-hero-content {
    position: relative;
    z-index: 2;
}

.twb-hero h1 { color: var(--c-white); }
.twb-hero p.twb-hero-sub {
    font-size: 20px;
    color: var(--c-grey-400);
    max-width: 560px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.twb-hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 56px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.twb-hero-stat-value {
    font-size: 32px;
    font-weight: 800;
    color: var(--c-white);
    line-height: 1;
    margin-bottom: 6px;
}

.twb-hero-stat-label {
    font-size: 14px;
    color: var(--c-grey-400);
}

/* Hero illustration - abstract browser mockup */
.twb-hero-visual {
    position: relative;
}

.twb-browser-mockup {
    background: var(--c-navy-light);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl), 0 0 80px rgba(37, 99, 235, 0.1);
}

.twb-browser-bar {
    background: rgba(255, 255, 255, 0.03);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.twb-browser-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.twb-browser-dot:nth-child(1) { background: #ef4444; }
.twb-browser-dot:nth-child(2) { background: #f59e0b; }
.twb-browser-dot:nth-child(3) { background: #10b981; }

.twb-browser-url {
    flex: 1;
    margin-left: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    padding: 6px 14px;
    font-size: 13px;
    color: var(--c-grey-400);
    font-family: var(--font-mono);
}

.twb-browser-body {
    padding: 32px;
    min-height: 300px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(16, 185, 129, 0.03) 100%);
}

.twb-browser-skeleton {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.twb-skel-line {
    height: 12px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 6px;
}

.twb-skel-line:nth-child(1) { width: 65%; height: 20px; background: rgba(37, 99, 235, 0.15); }
.twb-skel-line:nth-child(2) { width: 90%; }
.twb-skel-line:nth-child(3) { width: 75%; }
.twb-skel-line:nth-child(4) { width: 45%; height: 36px; background: var(--c-blue); border-radius: 8px; margin-top: 8px; }

.twb-skel-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 24px;
}

.twb-skel-card {
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-sm);
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.twb-skel-card-line {
    height: 8px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 4px;
    margin-bottom: 10px;
}

.twb-skel-card-line:first-child { width: 50%; height: 10px; background: rgba(255, 255, 255, 0.1); }

/* ─── FEATURE CARDS ───────────────────────────────────────────────────────── */
.twb-feature-card {
    background: var(--c-white);
    border: 1px solid var(--c-grey-100);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.twb-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--c-blue), var(--c-mint));
    opacity: 0;
    transition: var(--transition);
}

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

.twb-feature-card:hover::before { opacity: 1; }

.twb-feature-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 20px;
    background: var(--c-blue-glow);
}

.twb-feature-icon-mint { background: var(--c-mint-glow); }
.twb-feature-icon-purple { background: rgba(139, 92, 246, 0.1); }
.twb-feature-icon-orange { background: rgba(245, 158, 11, 0.1); }

.twb-feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.twb-feature-card p {
    color: var(--c-grey-600);
    font-size: 15px;
    line-height: 1.6;
}

/* ─── SERVICE CARDS (Large) ───────────────────────────────────────────────── */
.twb-service-block {
    background: var(--c-white);
    border: 1px solid var(--c-grey-100);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition);
}

.twb-service-block:hover {
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.twb-service-visual {
    background: linear-gradient(135deg, var(--c-navy) 0%, var(--c-navy-light) 100%);
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
    min-height: 240px;
    display: flex;
    align-items: flex-end;
}

.twb-service-visual::after {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.twb-service-visual h3 {
    color: var(--c-white);
    font-size: 28px;
    position: relative;
    z-index: 2;
}

.twb-service-body {
    padding: 36px 40px;
}

.twb-service-body p {
    color: var(--c-grey-600);
    font-size: 16px;
    margin-bottom: 24px;
    line-height: 1.65;
}

.twb-service-features {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 32px;
}

.twb-service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--c-grey-600);
}

.twb-service-features li::before {
    content: '✓';
    color: var(--c-mint);
    font-weight: 700;
    font-size: 15px;
}

.twb-service-price {
    font-size: 14px;
    color: var(--c-grey-400);
    margin-bottom: 24px;
}

.twb-service-price strong {
    font-size: 28px;
    color: var(--c-heading);
    font-weight: 800;
}

/* ─── PRICING ─────────────────────────────────────────────────────────────── */
.twb-pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 48px;
    background: var(--c-grey-50);
    padding: 6px;
    border-radius: var(--radius-full);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.twb-pricing-tab {
    padding: 12px 28px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    border: none;
    background: transparent;
    color: var(--c-grey-600);
    font-family: var(--font-main);
    transition: var(--transition);
}

.twb-pricing-tab.active {
    background: var(--c-white);
    color: var(--c-heading);
    box-shadow: var(--shadow-sm);
}

.twb-pricing-tab:hover:not(.active) { color: var(--c-heading); }

/* Pricing card */
.twb-price-card {
    background: var(--c-white);
    border: 2px solid var(--c-grey-100);
    border-radius: var(--radius-xl);
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition);
}

.twb-price-card:hover {
    border-color: var(--c-blue);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    transform: translateY(-6px);
}

.twb-price-card-popular {
    border-color: var(--c-blue);
    box-shadow: var(--shadow-lg), 0 0 60px rgba(37, 99, 235, 0.1);
    transform: scale(1.03);
}

.twb-price-card-popular:hover {
    transform: scale(1.03) translateY(-6px);
}

.twb-price-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--c-blue), var(--c-purple));
    color: var(--c-white);
    padding: 6px 24px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
}

.twb-price-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--c-heading);
    margin-bottom: 8px;
}

.twb-price-desc {
    font-size: 14px;
    color: var(--c-grey-600);
    margin-bottom: 24px;
    line-height: 1.5;
}

.twb-price-amount {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 8px;
}

.twb-price-currency {
    font-size: 24px;
    font-weight: 700;
    color: var(--c-heading);
}

.twb-price-value {
    font-size: 56px;
    font-weight: 800;
    color: var(--c-heading);
    line-height: 1;
    letter-spacing: -0.03em;
}

.twb-price-period {
    font-size: 16px;
    color: var(--c-grey-400);
    font-weight: 500;
}

.twb-price-hosting {
    font-size: 13px;
    color: var(--c-grey-600);
    padding: 10px 14px;
    background: var(--c-grey-50);
    border-radius: var(--radius-sm);
    margin-bottom: 24px;
}

.twb-price-divider {
    height: 1px;
    background: var(--c-grey-100);
    margin: 20px 0;
}

.twb-price-features {
    list-style: none;
    flex: 1;
    margin-bottom: 32px;
}

.twb-price-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: var(--c-text);
}

.twb-price-features li .check {
    color: var(--c-mint);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ─── TRUST BAR ───────────────────────────────────────────────────────────── */
.twb-trust-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 32px 0;
    flex-wrap: wrap;
}

.twb-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--c-grey-600);
    font-weight: 500;
}

.twb-trust-item-icon {
    font-size: 20px;
}

/* ─── PROCESS STEPS ───────────────────────────────────────────────────────── */
.twb-process-steps {
    counter-reset: step;
}

.twb-step {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    padding: 32px 0;
    position: relative;
}

.twb-step + .twb-step {
    border-top: 1px solid var(--c-grey-100);
}

.twb-step-number {
    counter-increment: step;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--c-blue-glow);
    color: var(--c-blue);
    font-size: 22px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.twb-step-number::after { content: counter(step); }

.twb-step-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.twb-step-content p {
    color: var(--c-grey-600);
    font-size: 15px;
    line-height: 1.6;
}

/* ─── TESTIMONIALS ────────────────────────────────────────────────────────── */
.twb-testimonial {
    background: var(--c-white);
    border: 1px solid var(--c-grey-100);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: relative;
}

.twb-testimonial-quote {
    font-size: 48px;
    color: var(--c-blue);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: -8px;
    font-family: Georgia, serif;
}

.twb-testimonial p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--c-text);
    margin-bottom: 20px;
    font-style: italic;
}

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

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

.twb-testimonial-name {
    font-weight: 700;
    color: var(--c-heading);
    font-size: 15px;
}

.twb-testimonial-role {
    font-size: 13px;
    color: var(--c-grey-400);
}

/* ─── FAQ ──────────────────────────────────────────────────────────────────── */
.twb-faq-item {
    border: 1px solid var(--c-grey-100);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.twb-faq-item.active {
    border-color: var(--c-blue);
    box-shadow: 0 2px 12px rgba(37, 99, 235, 0.08);
}

.twb-faq-question {
    padding: 20px 24px;
    font-weight: 600;
    font-size: 16px;
    color: var(--c-heading);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--c-white);
    border: none;
    width: 100%;
    text-align: left;
    font-family: var(--font-main);
}

.twb-faq-question:hover { color: var(--c-blue); }

.twb-faq-toggle {
    font-size: 20px;
    transition: var(--transition);
    color: var(--c-grey-400);
}

.twb-faq-item.active .twb-faq-toggle { transform: rotate(45deg); color: var(--c-blue); }

.twb-faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.35s ease;
}

.twb-faq-item.active .twb-faq-answer {
    padding: 0 24px 20px;
    max-height: 400px;
}

.twb-faq-answer p {
    color: var(--c-grey-600);
    font-size: 15px;
    line-height: 1.65;
}

/* ─── CTA BANNER ──────────────────────────────────────────────────────────── */
.twb-cta-banner {
    background: var(--c-navy);
    border-radius: var(--radius-xl);
    padding: 72px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.twb-cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}

.twb-cta-banner h2 { color: var(--c-white); margin-bottom: 16px; position: relative; z-index: 2; }
.twb-cta-banner p { color: var(--c-grey-400); margin-bottom: 32px; font-size: 18px; position: relative; z-index: 2; }
.twb-cta-banner .twb-btn-group { justify-content: center; position: relative; z-index: 2; }

/* ─── FOOTER ──────────────────────────────────────────────────────────────── */
.twb-footer {
    background: var(--c-navy);
    color: var(--c-grey-400);
    padding: 80px 0 0;
}

.twb-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.twb-footer-brand p {
    font-size: 15px;
    line-height: 1.65;
    margin-top: 16px;
    max-width: 300px;
}

.twb-footer h4 {
    color: var(--c-white);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.twb-footer-links { list-style: none; }

.twb-footer-links li { margin-bottom: 12px; }

.twb-footer-links a {
    color: var(--c-grey-400);
    font-size: 15px;
    text-decoration: none;
    transition: var(--transition);
}

.twb-footer-links a:hover { color: var(--c-white); }

.twb-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 14px;
}

.twb-footer-legal {
    display: flex;
    gap: 24px;
}

.twb-footer-legal a { color: var(--c-grey-400); }
.twb-footer-legal a:hover { color: var(--c-white); }

/* ─── FORMS ───────────────────────────────────────────────────────────────── */
.twb-form-group { margin-bottom: 20px; }

.twb-form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--c-heading);
    margin-bottom: 8px;
}

.twb-form-input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--c-grey-100);
    border-radius: var(--radius-md);
    font-size: 15px;
    font-family: var(--font-main);
    color: var(--c-text);
    background: var(--c-white);
    transition: var(--transition);
}

.twb-form-input:focus {
    outline: none;
    border-color: var(--c-blue);
    box-shadow: 0 0 0 4px var(--c-blue-glow);
}

.twb-form-input::placeholder { color: var(--c-grey-200); }

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

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

.twb-form-card {
    background: var(--c-white);
    border: 1px solid var(--c-grey-100);
    border-radius: var(--radius-xl);
    padding: 48px 40px;
    box-shadow: var(--shadow-md);
    max-width: 520px;
}

/* ─── PAGE HERO (sub-pages) ───────────────────────────────────────────────── */
.twb-page-hero {
    background: var(--c-navy);
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}

.twb-page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.twb-page-hero h1 { color: var(--c-white); font-size: clamp(36px, 4vw, 52px); margin-bottom: 16px; }
.twb-page-hero p { color: var(--c-grey-400); font-size: 18px; max-width: 640px; line-height: 1.6; }
.twb-page-hero .twb-label { color: var(--c-blue-bright); }
.twb-page-hero .twb-label::before { background: var(--c-blue-bright); }

/* ─── INCLUDE LIST ────────────────────────────────────────────────────────── */
.twb-includes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 16px;
}

.twb-include-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 20px;
    background: var(--c-white);
    border: 1px solid var(--c-grey-100);
    border-radius: var(--radius-md);
    font-size: 14px;
    color: var(--c-text);
}

.twb-include-item .check-icon {
    color: var(--c-mint);
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: -1px;
}

.twb-include-item strong {
    color: var(--c-heading);
}

/* ─── CONTACT INFO BOX ────────────────────────────────────────────────────── */
.twb-contact-info {
    background: var(--c-navy);
    border-radius: var(--radius-xl);
    padding: 40px;
    color: var(--c-grey-400);
}

.twb-contact-info h3 { color: var(--c-white); margin-bottom: 24px; }

.twb-contact-info-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 15px;
}

.twb-contact-info-item:last-child { border-bottom: none; }

.twb-contact-info-icon {
    font-size: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ─── ABOUT VALUES CARDS ──────────────────────────────────────────────────── */
.twb-value-card {
    text-align: center;
    padding: 40px 28px;
}

.twb-value-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: var(--c-blue-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.twb-value-card h3 { font-size: 18px; margin-bottom: 10px; }
.twb-value-card p { color: var(--c-grey-600); font-size: 14px; line-height: 1.6; }

/* ─── RESPONSIVE ──────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .twb-grid-2 { grid-template-columns: 1fr; gap: 40px; }
    .twb-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .twb-footer-grid { grid-template-columns: 1fr 1fr; }
    .twb-service-features { grid-template-columns: 1fr; }
    .twb-cta-banner { padding: 48px 32px; }
}

@media (max-width: 768px) {
    .twb-section { padding: 64px 0; }
    .twb-hero { padding: 120px 0 80px; }
    .twb-grid-3 { grid-template-columns: 1fr; }
    .twb-grid-4 { grid-template-columns: 1fr; }
    .twb-hero-stats { flex-direction: column; gap: 24px; }
    .twb-price-card-popular { transform: none; }
    .twb-price-card-popular:hover { transform: translateY(-6px); }
    .twb-pricing-tabs { flex-wrap: wrap; }
    .twb-footer-grid { grid-template-columns: 1fr; }
    .twb-footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .twb-btn-group { flex-direction: column; }
    .twb-btn-group .twb-btn { width: 100%; justify-content: center; }
    .twb-form-row { grid-template-columns: 1fr; }
    .twb-trust-bar { flex-direction: column; gap: 16px; }
    .twb-browser-mockup { display: none; }
    .twb-step { gap: 20px; }
    .twb-form-card { padding: 32px 24px; }

    /* Mobile nav */
    .twb-nav-toggle { display: block; }
    .twb-nav {
        display: none;
        position: absolute;
        top: 76px;
        left: 0;
        right: 0;
        background: var(--c-navy);
        padding: 24px;
        flex-direction: column;
        gap: 16px;
        border-top: 1px solid rgba(255,255,255,0.06);
    }
    .twb-nav.open { display: flex; }
}
