/*
Theme Name: ClickTec
Theme URI: https://clicktec.ca
Author: ClickTec
Author URI: https://clicktec.ca
Description: Custom WordPress theme for ClickTec — Toronto-based managed services provider serving collections, legal, financial services and contact-centre operations. Includes home, services, industries, about and contact templates with the brand 2026 identity.
Version: 1.1.1
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: clicktec
Tags: business, msp, technology, one-column, custom-menu, featured-images, threaded-comments
*/

/* ============================================
   ClickTec — Managed Services Provider
   Brand: Deep Blue (#1B4A8A) + Charcoal (#1F2A37)
   ============================================ */

:root {
    --brand-blue: #1B4A8A;
    --brand-blue-dark: #143868;
    --brand-blue-light: #2E68B5;
    --brand-accent: #2EA8FF;
    --charcoal: #1F2A37;
    --charcoal-soft: #2D3A4B;
    --ink: #0F172A;
    --muted: #64748B;
    --line: #E5E9F0;
    --bg: #FFFFFF;
    --bg-soft: #F6F8FB;
    --bg-dark: #0E1A2E;
    --bg-darker: #081224;
    --success: #1BA37A;
    --radius: 12px;
    --radius-lg: 18px;
    --shadow-sm: 0 2px 8px rgba(15,23,42,.05);
    --shadow-md: 0 10px 30px rgba(15,23,42,.08);
    --shadow-lg: 0 24px 60px rgba(15,23,42,.14);
    --container: 1200px;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-display: 'Space Grotesk', 'Inter', sans-serif;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.65;
    color: var(--charcoal);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand-blue); text-decoration: none; transition: color .2s; }
a:hover { color: var(--brand-blue-dark); }

h1, h2, h3, h4 {
    font-family: var(--font-display);
    color: var(--ink);
    letter-spacing: -0.02em;
    line-height: 1.15;
}

h1 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }

p { color: var(--charcoal-soft); }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.eyebrow {
    display: inline-block;
    font-size: .8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .15em;
    color: var(--brand-blue);
    margin-bottom: 14px;
}

.section { padding: 96px 0; }
.section-dark { background: var(--bg-dark); color: #E5ECF5; }
.section-dark h1, .section-dark h2, .section-dark h3 { color: #fff; }
.section-dark p { color: #B7C5D6; }
.section-dark .eyebrow { color: var(--brand-accent); }

.section-head { max-width: 760px; margin: 0 auto 56px; text-align: center; }
.section-head p { font-size: 1.1rem; margin-top: 16px; }
.section-head.light .eyebrow { color: var(--brand-accent); }

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 600;
    font-size: .95rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all .2s ease;
    line-height: 1;
}
.btn-lg { padding: 16px 30px; font-size: 1rem; }
.btn-primary { background: var(--brand-blue); color: #fff; }
.btn-primary:hover { background: var(--brand-blue-dark); color: #fff; transform: translateY(-1px); box-shadow: 0 10px 24px rgba(27,74,138,.3); }
.btn-outline { border-color: rgba(255,255,255,.4); color: #fff; }
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,.08); color: #fff; }
.btn-ghost { border-color: var(--line); color: var(--charcoal); background: #fff; }
.btn-ghost:hover { border-color: var(--brand-blue); color: var(--brand-blue); }

/* ===== Header ===== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,.92);
    backdrop-filter: saturate(180%) blur(10px);
    border-bottom: 1px solid var(--line);
}

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

.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 56px; width: auto; }

.primary-nav {
    display: flex;
    gap: 6px;
    align-items: center;
}
.primary-nav a {
    color: var(--charcoal);
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: 500;
    font-size: .95rem;
    transition: all .15s;
}
.primary-nav a:hover { background: var(--bg-soft); color: var(--brand-blue); }
.primary-nav a.active { color: var(--brand-blue); background: rgba(27,74,138,.07); }

.nav-cta { margin-left: 8px; }

.nav-toggle {
    display: none;
    background: none;
    border: 0;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    border-radius: 2px;
    transition: all .2s;
}

/* ===== Hero ===== */
.hero {
    position: relative;
    padding: 90px 0 110px;
    background: linear-gradient(135deg, #0E1A2E 0%, #143868 55%, #1B4A8A 100%);
    color: #fff;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 12% 18%, rgba(46,168,255,.18), transparent 38%),
        radial-gradient(circle at 88% 80%, rgba(46,104,181,.25), transparent 42%);
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
    pointer-events: none;
}
.hero .container { position: relative; z-index: 2; }
.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 56px;
    align-items: center;
}
.hero h1 { color: #fff; margin-bottom: 22px; }
.hero h1 .accent {
    background: linear-gradient(90deg, #6FC0FF, #2EA8FF);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero .lead { color: #C9D6E8; font-size: 1.15rem; max-width: 580px; margin-bottom: 32px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }

.hero-trust {
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 36px;
    list-style: none;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,.12);
    max-width: 600px;
}
.hero-trust strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: #fff;
    font-weight: 700;
    margin-bottom: 4px;
}
.hero-trust span {
    color: #95A7BD;
    font-size: .85rem;
    line-height: 1.4;
    display: block;
}

/* Hero visual: floating cards */
.hero-visual {
    position: relative;
    height: 480px;
}
.visual-card {
    position: absolute;
    background: rgba(255,255,255,.06);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: var(--radius-lg);
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 14px;
    color: #fff;
    box-shadow: 0 20px 50px rgba(0,0,0,.3);
    animation: float 6s ease-in-out infinite;
}
.visual-card strong { display: block; font-size: 1rem; margin-bottom: 2px; }
.visual-card span { color: #B7C5D6; font-size: .82rem; }
.vc-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--brand-blue-light), var(--brand-accent));
    flex-shrink: 0;
    position: relative;
}
.vc-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    background: center/22px no-repeat;
}
.icon-shield::after { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M12 2L4 6v6c0 5 3.5 9.5 8 10 4.5-.5 8-5 8-10V6l-8-4z'/><path d='M9 12l2 2 4-4'/></svg>"); }
.icon-call::after { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.13.96.37 1.9.72 2.81a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45c.91.35 1.85.59 2.81.72A2 2 0 0 1 22 16.92z'/></svg>"); }
.icon-server::after { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><rect x='2' y='3' width='20' height='6' rx='1.5'/><rect x='2' y='13' width='20' height='6' rx='1.5'/><line x1='6' y1='6' x2='6.01' y2='6'/><line x1='6' y1='16' x2='6.01' y2='16'/></svg>"); }
.icon-cloud::after { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M18 10h-1.26A8 8 0 1 0 9 20h9a5 5 0 0 0 0-10z'/></svg>"); }

.card-1 { top: 30px; left: 0; width: 280px; animation-delay: 0s; }
.card-2 { top: 180px; right: 0; width: 290px; animation-delay: 1.5s; }
.card-3 { bottom: 30px; left: 30px; width: 290px; animation-delay: 3s; }

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

/* ===== Logos / clients strip ===== */
.client-strip {
    padding: 38px 0;
    background: var(--bg-soft);
    border-bottom: 1px solid var(--line);
}
.client-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.client-strip-label {
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-weight: 600;
    color: var(--muted);
    flex-shrink: 0;
}
.client-list {
    display: flex;
    gap: 38px;
    flex-wrap: wrap;
    align-items: center;
}
.client-list span {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--charcoal);
    font-size: 1.05rem;
    opacity: .7;
    transition: opacity .2s;
}
.client-list span:hover { opacity: 1; color: var(--brand-blue); }

/* ===== Grids ===== */
.ct-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.ct-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}
.ct-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* ===== Feature cards ===== */
.feature {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: all .25s ease;
    position: relative;
}
.feature:hover {
    border-color: var(--brand-blue);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(27,74,138,.08), rgba(46,168,255,.12));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    color: var(--brand-blue);
}
.feature-icon svg { width: 26px; height: 26px; }
.feature h3 { margin-bottom: 10px; }
.feature p { font-size: .95rem; }
.feature-num {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--brand-blue);
    margin-bottom: 14px;
    letter-spacing: .04em;
}

/* ===== Process / steps ===== */
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    position: relative;
}
.step {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.10);
    border-radius: var(--radius-lg);
    padding: 30px 26px;
}
.step h3 { color: #fff; margin-bottom: 10px; }
.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-blue-light), var(--brand-accent));
    color: #fff;
    font-family: var(--font-display);
    font-weight: 700;
    margin-bottom: 18px;
}

/* ===== CTA Band ===== */
.cta-band {
    background: linear-gradient(120deg, var(--brand-blue) 0%, var(--brand-blue-light) 100%);
    padding: 70px 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.cta-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 80% 50%, rgba(255,255,255,.10), transparent 50%);
}
.cta-band-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}
.cta-band h2 { color: #fff; margin-bottom: 6px; }
.cta-band p { color: rgba(255,255,255,.85); }
.cta-band .btn-primary {
    background: #fff;
    color: var(--brand-blue);
}
.cta-band .btn-primary:hover { background: #F6F8FB; color: var(--brand-blue-dark); }

/* ===== Stats ===== */
.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding: 56px 0;
}
.stat {
    text-align: center;
    padding: 24px;
    border-right: 1px solid var(--line);
}
.stat:last-child { border-right: none; }
.stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--brand-blue);
    margin-bottom: 6px;
    letter-spacing: -.02em;
}
.stat span {
    color: var(--muted);
    font-size: .9rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 600;
}

/* ===== About / split content ===== */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.split-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-blue-dark));
}
.split-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
    background-size: 40px 40px;
}
.split-img-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    z-index: 2;
}
.split-img-content svg { width: 120px; height: 120px; opacity: .9; }

.checklist {
    list-style: none;
    margin-top: 24px;
}
.checklist li {
    padding: 10px 0 10px 32px;
    position: relative;
    color: var(--charcoal);
    font-size: .98rem;
}
.checklist li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(27,74,138,.10) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231B4A8A' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/10px no-repeat;
}

/* ===== Industry cards ===== */
.industry-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: all .25s;
}
.industry-card:hover {
    border-color: var(--brand-blue);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.industry-card .feature-icon { margin-bottom: 18px; }
.industry-card ul {
    list-style: none;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
}
.industry-card li {
    font-size: .9rem;
    padding: 4px 0 4px 18px;
    color: var(--charcoal-soft);
    position: relative;
}
.industry-card li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--brand-blue);
    font-weight: 700;
}

/* ===== Service detail ===== */
.service-block {
    padding: 60px 0;
    border-bottom: 1px solid var(--line);
}
.service-block:last-child { border-bottom: none; }
.service-block-inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}
.service-block-inner.reverse { grid-template-columns: 1.2fr 1fr; }
.service-block-inner.reverse .service-detail-img { order: 2; }
.service-detail-img {
    border-radius: var(--radius-lg);
    padding: 50px;
    background: linear-gradient(135deg, #F6F8FB 0%, #EDF2F8 100%);
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 4/3;
    color: var(--brand-blue);
}
.service-detail-img svg { width: 100%; max-width: 200px; height: auto; }
.service-detail h2 { margin-bottom: 16px; }
.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 22px;
}
.service-tags span {
    padding: 5px 12px;
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: .82rem;
    color: var(--charcoal-soft);
    font-weight: 500;
}

/* ===== Compliance badges ===== */
.badge-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 18px;
}
.badge {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px 18px;
    text-align: center;
    transition: all .2s;
}
.badge:hover { border-color: var(--brand-blue); transform: translateY(-2px); }
.badge strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.05rem;
    color: var(--ink);
    margin-bottom: 4px;
}
.badge span { font-size: .82rem; color: var(--muted); }

/* ===== Contact ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
}
.contact-info-card {
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 32px;
    margin-top: 24px;
}
.contact-line {
    display: flex;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
}
.contact-line:last-child { border-bottom: none; }
.contact-line-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(27,74,138,.08);
    color: var(--brand-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-line-icon svg { width: 20px; height: 20px; }
.contact-line strong { display: block; font-size: .85rem; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 2px; }
.contact-line a { color: var(--ink); font-weight: 500; }
.contact-line a:hover { color: var(--brand-blue); }

.form {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 18px; }
.field label {
    display: block;
    font-size: .88rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 7px;
}
.field input, .field select, .field textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 10px;
    font-family: inherit;
    font-size: .95rem;
    color: var(--ink);
    background: #fff;
    transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
    outline: none;
    border-color: var(--brand-blue);
    box-shadow: 0 0 0 3px rgba(27,74,138,.12);
}
.field textarea { min-height: 120px; resize: vertical; }
.form .btn { width: 100%; justify-content: center; }

/* ===== Page banner (non-home) ===== */
.page-banner {
    background: linear-gradient(135deg, #0E1A2E 0%, #143868 100%);
    color: #fff;
    padding: 80px 0 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse at center, #000 30%, transparent 70%);
}
.page-banner .container { position: relative; z-index: 2; }
.page-banner h1 { color: #fff; margin-bottom: 14px; }
.page-banner p { color: #C9D6E8; max-width: 640px; margin: 0 auto; font-size: 1.1rem; }
.page-banner .eyebrow { color: var(--brand-accent); }

/* ===== Footer ===== */
.site-footer {
    background: var(--bg-darker);
    color: #B7C5D6;
    padding-top: 70px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 50px;
}
.footer-logo { height: 72px; margin-bottom: 18px; border-radius: 10px; }
.footer-col h4 { color: #fff; margin-bottom: 18px; font-size: .85rem; }
.footer-col ul { list-style: none; }
.footer-col li { padding: 6px 0; font-size: .92rem; }
.footer-col a { color: #B7C5D6; }
.footer-col a:hover { color: var(--brand-accent); }
.badge-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.badge-list li {
    padding: 4px 10px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 6px;
    font-size: .78rem;
    color: #C9D6E8;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 22px 0;
    font-size: .85rem;
    color: #8295AC;
}
.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

/* ===== Pitch / why us ===== */
.pitch .feature {
    padding: 36px 30px;
}

/* ===== Responsive ===== */
@media (max-width: 980px) {
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual { height: 380px; max-width: 480px; }
    .split { grid-template-columns: 1fr; gap: 32px; }
    .service-block-inner, .service-block-inner.reverse { grid-template-columns: 1fr; gap: 36px; }
    .service-block-inner.reverse .service-detail-img { order: 0; }
    .ct-grid-3, .ct-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .steps { grid-template-columns: repeat(2, 1fr); }
    .stats { grid-template-columns: repeat(2, 1fr); }
    .stat { border-right: none; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
    .section { padding: 70px 0; }
    .hero { padding: 60px 0 80px; }
    .primary-nav, .nav-cta { display: none; }
    .nav-toggle { display: flex; }
    .primary-nav.open {
        display: flex;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 18px;
        border-bottom: 1px solid var(--line);
        box-shadow: var(--shadow-md);
        align-items: stretch;
    }
    .primary-nav.open a { padding: 12px 16px; }
    .hero-trust { grid-template-columns: repeat(3, 1fr); gap: 14px; }
    .hero-trust strong { font-size: 1.2rem; }
    .ct-grid-3, .ct-grid-2, .ct-grid-4 { grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .cta-band-inner { flex-direction: column; align-items: flex-start; }
    .visual-card { width: 260px !important; }
    .card-2 { right: 0; }
    .card-3 { left: 0; }
}
