/* ============================================
   PROFIXPC — STYLE.CSS
   Light theme · Accent #047afa
   ============================================ */

/* ===== TOKENS ===== */
:root {
    /* Brand */
    --brand: #047afa;
    --brand-dark: #0360c4;
    --brand-darker: #024ea0;
    --brand-50: #eef5ff;
    --brand-100: #d8e7ff;
    --brand-200: #b4d0ff;

    /* WhatsApp */
    --whatsapp: #25d366;
    --whatsapp-dark: #128c7e;
    --whatsapp-darker: #0e6e63;

    /* Neutrals */
    --ink: #0a1729;
    --ink-2: #1f2a44;
    --ink-3: #475569;
    --ink-4: #64748b;
    --ink-5: #94a3b8;

    /* Surfaces */
    --bg: #ffffff;
    --bg-soft: #f5f8ff;
    --bg-soft-2: #eef3fb;
    --border: #e2e8f0;
    --border-strong: #cbd5e1;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04), 0 1px 3px rgba(15, 23, 42, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.06), 0 2px 4px -2px rgba(15, 23, 42, 0.04);
    --shadow-lg: 0 12px 28px -8px rgba(4, 122, 250, 0.18), 0 8px 14px -6px rgba(15, 23, 42, 0.06);
    --shadow-blue: 0 8px 24px -6px rgba(4, 122, 250, 0.35);
    --shadow-green: 0 8px 24px -6px rgba(37, 211, 102, 0.40);

    /* Radii */
    --r-sm: 8px;
    --r-md: 12px;
    --r-lg: 18px;
    --r-xl: 24px;
    --r-2xl: 32px;

    /* Layout */
    --header-h: 72px;
    --container: 1200px;

    /* Type */
    --font-display: 'Bricolage Grotesque', system-ui, sans-serif;
    --font-body: 'Manrope', system-ui, sans-serif;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--ink-2);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; border: none; background: none; cursor: pointer; color: inherit; }
ul { padding: 0; margin: 0; list-style: none; }
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    color: var(--ink);
    margin: 0;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

/* ===== UTILITIES ===== */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}
.container-narrow { max-width: 880px; }

.grad {
    background: linear-gradient(135deg, var(--brand) 0%, #3b95ff 60%, var(--brand-dark) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.eyebrow, .section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--brand);
}

.section-eyebrow {
    padding: 6px 14px;
    background: var(--brand-50);
    border-radius: 999px;
    border: 1px solid var(--brand-100);
}
.eyebrow-on-blue {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.28);
    color: #fff;
}
.eyebrow-on-dark {
    background: rgba(4, 122, 250, 0.20);
    border-color: rgba(4, 122, 250, 0.4);
    color: #7eb6ff;
}

.eyebrow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brand);
    box-shadow: 0 0 0 4px var(--brand-50);
    animation: pulse 2.4s ease-out infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(4, 122, 250, 0.4); }
    50% { box-shadow: 0 0 0 6px rgba(4, 122, 250, 0); }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 22px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    border-radius: var(--r-md);
    transition: all 0.2s ease;
    white-space: nowrap;
    cursor: pointer;
    border: 1.5px solid transparent;
}
.btn-lg {
    padding: 16px 28px;
    font-size: 16px;
    border-radius: 14px;
}

.btn-whatsapp {
    background: var(--whatsapp);
    color: #fff;
}
.btn-whatsapp:hover {
    background: var(--whatsapp-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-green);
}

.btn-primary {
    background: var(--brand);
    color: #fff;
}
.btn-primary:hover {
    background: var(--brand-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-blue);
}

.btn-secondary {
    background: var(--bg);
    color: var(--ink);
    border-color: var(--border-strong);
}
.btn-secondary:hover {
    border-color: var(--brand);
    color: var(--brand);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-light {
    background: #fff;
    color: var(--brand-darker);
}
.btn-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px -10px rgba(0, 0, 0, 0.3);
}

/* ===== HEADER ===== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.site-header.scrolled {
    border-bottom-color: var(--border);
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-h);
    gap: 24px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 22px;
    color: var(--ink);
    flex-shrink: 0;
}
.logo-img {
    height: 44px;
    width: auto;
    display: block;
}
.logo-mark {
    width: 32px;
    height: 32px;
    color: var(--brand);
    flex-shrink: 0;
}
.logo-text { letter-spacing: -0.02em; }
.logo-accent { color: var(--brand); }

.main-nav ul {
    display: flex;
    gap: 4px;
}
.main-nav a {
    display: inline-block;
    padding: 8px 14px;
    font-weight: 500;
    font-size: 15px;
    color: var(--ink-3);
    border-radius: 8px;
    transition: all 0.2s;
}
.main-nav a:hover {
    color: var(--brand);
    background: var(--brand-50);
}

.btn-header {
    padding: 10px 18px;
    font-size: 14px;
}

.burger {
    display: none;
    width: 40px;
    height: 40px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    border-radius: 8px;
}
.burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: all 0.25s ease;
}
.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
    position: relative;
    overflow: hidden;
    padding: 80px 0 100px;
    isolation: isolate;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 70%);
}
.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(4, 122, 250, 0.06) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(4, 122, 250, 0.06) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 70%);
}
.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
}
.hero-blob-1 {
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(4, 122, 250, 0.4), transparent 70%);
    top: -100px;
    right: -80px;
}
.hero-blob-2 {
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(59, 149, 255, 0.3), transparent 70%);
    bottom: -50px;
    left: -50px;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 56px;
    align-items: center;
}

.hero-content {
    animation: fadeUp 0.8s ease-out backwards;
}
.eyebrow {
    margin-bottom: 20px;
    padding: 6px 14px;
    background: var(--bg);
    border: 1px solid var(--brand-100);
    border-radius: 999px;
    box-shadow: var(--shadow-sm);
}

.hero h1 {
    font-size: clamp(40px, 6vw, 68px);
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -0.035em;
}
.hero-sub {
    font-size: 18px;
    color: var(--ink-3);
    margin: 0 0 32px;
    max-width: 560px;
    line-height: 1.65;
}
.hero-sub strong { color: var(--ink); font-weight: 600; }

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

.hero-note {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--ink-4);
    margin: 0 0 28px;
    padding: 8px 12px;
    background: var(--bg-soft-2);
    border-radius: 8px;
}
.hero-note svg { color: var(--ink-4); flex-shrink: 0; }
.hero-note strong { color: var(--ink-2); font-weight: 600; }

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}
.trust-badges li {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    color: var(--ink-2);
}
.trust-badges svg {
    color: var(--whatsapp);
    flex-shrink: 0;
}

/* Hero visual */
.hero-visual {
    position: relative;
    animation: fadeUp 0.8s ease-out 0.15s backwards;
}
.visual-card {
    position: relative;
    background: #fff;
    border-radius: var(--r-2xl);
    padding: 18px;
    box-shadow:
        0 30px 60px -20px rgba(4, 122, 250, 0.25),
        0 18px 40px -25px rgba(15, 23, 42, 0.18),
        0 0 0 1px var(--border);
    transform: rotate(-1deg);
    transition: transform 0.4s ease;
}
.visual-card:hover { transform: rotate(0) translateY(-4px); }
.visual-screen {
    background: #f5f8ff;
    border-radius: var(--r-lg);
    padding: 20px;
    margin-bottom: 16px;
}
.visual-dots {
    display: flex;
    gap: 6px;
    margin-bottom: 16px;
}
.visual-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-strong);
}
.visual-dots span:nth-child(1) { background: #ff6058; }
.visual-dots span:nth-child(2) { background: #ffbd2d; }
.visual-dots span:nth-child(3) { background: #28c840; }

.visual-screen svg {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
}
.visual-status {
    margin: 0;
    font-size: 13px;
    color: var(--ink-4);
    text-align: center;
}
.visual-status span {
    color: var(--whatsapp-dark);
    font-weight: 600;
}

.visual-meta {
    display: grid;
    gap: 8px;
    padding: 6px 4px;
}
.meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: var(--bg-soft);
    border-radius: 8px;
    font-size: 13px;
}
.meta-label { color: var(--ink-4); }
.meta-value {
    color: var(--ink);
    font-weight: 600;
}
.meta-emoji { color: var(--whatsapp-dark); font-size: 16px; }

.floating-tag {
    position: absolute;
    background: #fff;
    padding: 10px 16px;
    border-radius: 999px;
    box-shadow: var(--shadow-lg);
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--border);
    animation: float 4s ease-in-out infinite;
}
.floating-tag-1 {
    top: 12%;
    left: -12%;
    animation-delay: 0.4s;
}
.floating-tag-2 {
    bottom: 16%;
    right: -8%;
    animation-delay: 0s;
}
.tag-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--whatsapp);
    box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.2);
}

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

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== SECTIONS GENERIC ===== */
.section { padding: 96px 0; }
.section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 56px;
}
.section-head h2 {
    font-size: clamp(32px, 4.5vw, 48px);
    margin: 16px 0 16px;
    font-weight: 800;
}
.section-lead {
    font-size: 17px;
    color: var(--ink-3);
    margin: 0;
    line-height: 1.7;
}

/* ===== DIENSTEN ===== */
.section-diensten { background: var(--bg); }

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.service-card {
    padding: 32px 28px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}
.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--brand-50) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
}
.service-card:hover {
    border-color: var(--brand-200);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.service-card:hover::before { opacity: 1; }

.service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--brand-50);
    color: var(--brand);
    border-radius: 14px;
    margin-bottom: 20px;
    transition: all 0.3s;
}
.service-card:hover .service-icon {
    background: var(--brand);
    color: #fff;
    transform: scale(1.06) rotate(-4deg);
}
.service-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 700;
}
.service-card p {
    margin: 0;
    color: var(--ink-3);
    font-size: 15px;
    line-height: 1.6;
}

.services-more {
    text-align: center;
    margin: 48px auto 0;
    font-size: 15px;
    color: var(--ink-3);
    max-width: 600px;
}
.services-more span { font-weight: 600; color: var(--ink); }
.services-more a {
    color: var(--brand);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: var(--brand-100);
    text-underline-offset: 3px;
    transition: text-decoration-color 0.2s;
}
.services-more a:hover { text-decoration-color: var(--brand); }

/* ===== WERKWIJZE ===== */
.section-werkwijze {
    background: var(--bg-soft);
    position: relative;
}
.steps {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: stretch;
    gap: 12px;
    max-width: 1100px;
    margin: 0 auto;
}
.step {
    background: #fff;
    padding: 36px 28px;
    border-radius: var(--r-xl);
    border: 1px solid var(--border);
    position: relative;
    transition: all 0.3s;
}
.step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--brand-200);
}
.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
    color: #fff;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 20px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-blue);
}
.step h3 {
    font-size: 19px;
    margin-bottom: 10px;
}
.step p {
    margin: 0;
    color: var(--ink-3);
    font-size: 15px;
    line-height: 1.6;
}
.step p strong { color: var(--ink); font-weight: 600; }

.step-connector {
    align-self: center;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--border-strong), transparent, var(--border-strong));
    background-size: 8px 2px;
    background-repeat: repeat-x;
    background-position: center;
    background-image: radial-gradient(circle, var(--border-strong) 1px, transparent 1px);
}

/* ===== TARIEVEN ===== */
.section-tarieven {
    background: var(--bg);
    padding: 64px 0;
}
.pricing-card {
    background: linear-gradient(135deg, var(--brand) 0%, #0e63c8 50%, var(--brand-darker) 100%);
    color: #fff;
    border-radius: var(--r-2xl);
    padding: 64px 56px;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    box-shadow: 0 30px 60px -20px rgba(4, 122, 250, 0.4);
}
.pricing-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.18), transparent 40%),
                      radial-gradient(circle at 10% 90%, rgba(255, 255, 255, 0.10), transparent 40%);
    z-index: -1;
}
.pricing-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000, transparent);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000, transparent);
    z-index: -1;
}

.pricing-content {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}
.pricing-card h2 {
    color: #fff;
    font-size: clamp(30px, 4vw, 44px);
    margin: 16px 0 16px;
}
.pricing-lead {
    color: rgba(255, 255, 255, 0.85);
    font-size: 17px;
    margin: 0 0 36px;
}

.pricing-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 40px;
    text-align: left;
}
.pricing-list li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px 18px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--r-md);
    backdrop-filter: blur(8px);
}
.pricing-list svg {
    flex-shrink: 0;
    margin-top: 2px;
    background: rgba(255,255,255,0.15);
    padding: 4px;
    border-radius: 6px;
    width: 26px;
    height: 26px;
}
.pricing-list strong {
    display: block;
    font-weight: 700;
    margin-bottom: 2px;
    color: #fff;
}
.pricing-list span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.78);
}

/* ===== WERKGEBIED ===== */
.section-werkgebied { background: var(--bg-soft); }

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
    max-width: 1000px;
    margin: 0 auto 32px;
}
.cities-grid li {
    padding: 14px 18px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    font-size: 15px;
    font-weight: 500;
    color: var(--ink-2);
    text-align: center;
    transition: all 0.2s;
    position: relative;
}
.cities-grid li:hover {
    border-color: var(--brand);
    color: var(--brand);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.cities-note {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 auto;
    padding: 12px 20px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 14px;
    color: var(--ink-3);
    box-shadow: var(--shadow-sm);
    text-align: center;
    width: fit-content;
    display: flex;
}
.section-werkgebied .container { display: flex; flex-direction: column; align-items: center; }
.section-werkgebied .section-head,
.section-werkgebied .cities-grid { width: 100%; }
.cities-note strong { color: var(--ink); }
.cities-note svg { color: var(--brand); }

/* ===== FAQ ===== */
.section-faq { background: var(--bg); }

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.faq-item {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    transition: all 0.25s;
    overflow: hidden;
}
.faq-item:hover { border-color: var(--brand-200); }
.faq-item[open] {
    border-color: var(--brand);
    box-shadow: var(--shadow-md);
    background: var(--bg-soft);
}

.faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    color: var(--ink);
    list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }

.faq-toggle {
    flex-shrink: 0;
    position: relative;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--brand-50);
    transition: all 0.25s;
}
.faq-toggle::before,
.faq-toggle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 11px;
    height: 2px;
    background: var(--brand);
    border-radius: 2px;
    transform: translate(-50%, -50%);
    transition: transform 0.25s;
}
.faq-toggle::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item[open] .faq-toggle {
    background: var(--brand);
}
.faq-item[open] .faq-toggle::before,
.faq-item[open] .faq-toggle::after {
    background: #fff;
}
.faq-item[open] .faq-toggle::after { transform: translate(-50%, -50%) rotate(0); }

.faq-answer {
    padding: 0 24px 22px;
    color: var(--ink-3);
    font-size: 15px;
    line-height: 1.7;
}
.faq-answer p { margin: 0; }
.faq-answer a {
    color: var(--brand);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.faq-answer strong { color: var(--ink); font-weight: 600; }

/* ===== CONTACT ===== */
.section-contact {
    background: linear-gradient(180deg, #0a1729 0%, #112141 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}
.section-contact::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 80% 20%, rgba(4, 122, 250, 0.18), transparent 50%),
                      radial-gradient(circle at 20% 80%, rgba(37, 211, 102, 0.10), transparent 50%);
    z-index: -1;
}
.section-head-light h2 { color: #fff; }
.section-lead-light { color: rgba(255, 255, 255, 0.75); }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: var(--r-xl);
    color: #fff;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}
.contact-card[href]:hover {
    background: rgba(255, 255, 255, 0.10);
    border-color: rgba(255, 255, 255, 0.22);
    transform: translateY(-4px);
}

.contact-card-primary {
    background: linear-gradient(135deg, var(--whatsapp) 0%, var(--whatsapp-dark) 100%);
    border-color: rgba(255, 255, 255, 0.18);
    grid-column: span 2;
}
.contact-card-primary:hover {
    background: linear-gradient(135deg, var(--whatsapp-dark) 0%, var(--whatsapp-darker) 100%);
    box-shadow: var(--shadow-green);
}

.contact-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-card-primary .contact-icon {
    background: rgba(255, 255, 255, 0.20);
}

.contact-info { flex: 1; min-width: 0; }
.contact-label {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.70);
    margin-bottom: 4px;
}
.contact-card-primary .contact-label { color: rgba(255, 255, 255, 0.88); }

.contact-value {
    display: block;
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 2px;
    color: #fff;
}
.contact-meta {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.60);
}
.contact-card-primary .contact-meta { color: rgba(255, 255, 255, 0.85); }

.contact-arrow {
    flex-shrink: 0;
    font-size: 24px;
    color: rgba(255, 255, 255, 0.50);
    transition: transform 0.25s;
}
.contact-card[href]:hover .contact-arrow {
    transform: translateX(4px);
    color: #fff;
}

/* ===== FOOTER ===== */
.site-footer {
    background: #06101f;
    color: rgba(255, 255, 255, 0.65);
    padding: 56px 0 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
}
.footer-brand p {
    margin: 16px 0 0;
    font-size: 14px;
    line-height: 1.6;
    max-width: 360px;
}
.logo-footer { color: #fff; }
.logo-footer .logo-img {
    height: 56px;
}
.logo-footer .logo-mark { color: var(--brand); }
.logo-footer .logo-accent { color: var(--brand); }

.footer-col h4 {
    color: #fff;
    font-family: var(--font-body);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col a, .footer-col li {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    transition: color 0.2s;
}
.footer-col a:hover { color: var(--brand); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.40);
}
.footer-bottom p { margin: 0; }
.footer-tagline { color: rgba(255, 255, 255, 0.50); }

/* ===== STICKY WHATSAPP (mobile only) ===== */
.sticky-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 90;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--whatsapp);
    color: #fff;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px -4px rgba(37, 211, 102, 0.5),
                0 0 0 0 rgba(37, 211, 102, 0.4);
    animation: pulseRing 2.4s ease-out infinite;
    transition: transform 0.2s;
}
.sticky-whatsapp:hover {
    transform: scale(1.05);
}
@keyframes pulseRing {
    0% { box-shadow: 0 8px 24px -4px rgba(37, 211, 102, 0.5), 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 8px 24px -4px rgba(37, 211, 102, 0.5), 0 0 0 16px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 8px 24px -4px rgba(37, 211, 102, 0.5), 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-inner { gap: 40px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-card { padding: 48px 36px; }
    .pricing-list { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; gap: 32px; }
}

@media (max-width: 880px) {
    .main-nav {
        position: fixed;
        top: var(--header-h);
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
        padding: 12px 24px 18px;
        transform: translateY(-110%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.3s ease, opacity 0.3s ease;
        max-height: calc(100vh - var(--header-h));
        overflow-y: auto;
    }
    .main-nav.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
    .main-nav ul { flex-direction: column; gap: 0; }
    .main-nav a {
        display: block;
        padding: 14px 12px;
        border-radius: 8px;
        font-size: 16px;
        font-weight: 600;
        color: var(--ink);
        border-bottom: 1px solid var(--border);
    }
    .main-nav li:last-child a { border-bottom: none; }

    .burger { display: flex; }
    .btn-header { display: none; }

    .hero { padding: 56px 0 72px; }
    .hero-inner { grid-template-columns: 1fr; gap: 48px; text-align: center; }
    .hero-content { text-align: center; }
    .hero-sub { margin-left: auto; margin-right: auto; }
    .hero-cta { justify-content: center; }
    .hero-note { margin-left: auto; margin-right: auto; }
    .trust-badges { justify-content: center; }
    .eyebrow { margin: 0 auto 20px; }
    .hero-visual { max-width: 380px; margin: 0 auto; }
    .floating-tag-1 { left: 0%; top: 8%; }
    .floating-tag-2 { right: 0%; bottom: 12%; }

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

    .services-grid { grid-template-columns: 1fr; gap: 16px; }

    .steps {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .step-connector { display: none; }

    .pricing-card { padding: 40px 24px; border-radius: var(--r-xl); }

    .contact-grid { grid-template-columns: 1fr; }
    .contact-card-primary { grid-column: span 1; }
    .contact-card { padding: 22px; gap: 16px; }
    .contact-icon { width: 52px; height: 52px; }
    .contact-icon svg { width: 26px; height: 26px; }
    .contact-value { font-size: 19px; }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .footer-bottom { flex-direction: column; align-items: flex-start; }

    .sticky-whatsapp { display: flex; }
}

@media (max-width: 480px) {
    .container { padding: 0 18px; }
    .header-inner { gap: 12px; }
    .logo-text { font-size: 19px; }
    .hero h1 { font-size: 38px; }
    .hero-sub { font-size: 16px; }
    .btn-lg { font-size: 15px; padding: 14px 22px; width: 100%; }
    .hero-cta { flex-direction: column; }
    .hero-cta .btn { width: 100%; }
    .floating-tag { font-size: 12px; padding: 8px 12px; }
    .section-head h2 { font-size: 28px; }
    .pricing-card { padding: 32px 22px; }
    .pricing-card h2 { font-size: 26px; }
    .service-card { padding: 24px 22px; }
    .step { padding: 28px 22px; }
    .faq-item summary { padding: 16px 18px; font-size: 15px; }
    .faq-answer { padding: 0 18px 18px; font-size: 14px; }
    .cities-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
