/* =============================================================
   Nicky & Andre Technology Services — Stylesheet
   Refined professional theme: deep navy + electric blue + warm gold
   ============================================================= */

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

:root {
    --bg:          #0a1424;
    --bg-2:        #0d1a30;
    --surface:     #111f38;
    --surface-2:   #16264a;
    --border:      rgba(148, 184, 255, 0.10);
    --border-strong: rgba(148, 184, 255, 0.20);

    --text:        #e6edf7;
    --text-muted:  #9bafd0;
    --text-dim:    #5a6b85;

    --accent:      #4a8bff;   /* electric blue */
    --accent-2:    #6fb9ff;   /* sky highlight */
    --accent-soft: rgba(74, 139, 255, 0.10);
    --gold:        #f5a623;   /* matches logo orange */
    --gold-soft:   rgba(245, 166, 35, 0.12);
    --success:     #22c55e;
    --danger:      #ef4444;

    /* Backwards-compat aliases used elsewhere in markup */
    --navy: var(--bg);
    --accent2: var(--accent);
    --card: rgba(17, 31, 56, 0.78);
    --card-border: var(--border);

    --radius-sm: 8px;
    --radius:    14px;
    --radius-lg: 22px;

    --shadow-sm: 0 1px 2px rgba(0,0,0,0.20);
    --shadow:    0 12px 32px rgba(2, 8, 20, 0.45);
    --shadow-lg: 0 28px 70px rgba(2, 8, 20, 0.55);

    --gap: 96px;

    --font-display: 'Space Grotesk', 'Inter', system-ui, -apple-system, Segoe UI, sans-serif;
    --font-sans:    'Inter', system-ui, -apple-system, Segoe UI, sans-serif;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-sans);
    font-size: 15.5px;
    line-height: 1.65;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* normal cursor */
}

/* Subtle ambient background: one calm radial wash, no grid, no blobs */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 75% 0%, rgba(74, 139, 255, 0.10), transparent 60%),
        radial-gradient(ellipse 50% 40% at 15% 100%, rgba(245, 166, 35, 0.05), transparent 65%);
    pointer-events: none;
    z-index: 0;
}

/* Custom cursor elements: hidden (cursor reverts to normal) */
#cur, #curR { display: none !important; }

/* Legacy blob nodes (if ever rendered) – neutralized */
.blob { display: none !important; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); color: #fff; line-height: 1.15; letter-spacing: -0.01em; }
h1 { font-weight: 700; }
h2 { font-size: clamp(28px, 3vw, 42px); font-weight: 700; margin-bottom: 14px; }
h2 > em { font-style: normal; color: var(--accent-2); }
h4 { font-weight: 600; font-size: 18px; }

p { color: var(--text-muted); }
a { color: inherit; }

::selection { background: rgba(74, 139, 255, 0.35); color: #fff; }

/* ---------- Layout helpers ---------- */
.pd-t { padding-top: var(--gap); }
.pd-b { padding-bottom: var(--gap); }

.g2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.g3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.g4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.ga { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; }

/* Reveal animation already triggered by markup adding .vis */
.rv { opacity: 0; transform: translateY(20px); transition: opacity .6s cubic-bezier(.23,1,.32,1), transform .6s cubic-bezier(.23,1,.32,1); }
.rv.vis { opacity: 1; transform: none; }
.d1 { transition-delay: .08s; }
.d2 { transition-delay: .16s; }
.d3 { transition-delay: .24s; }
.d4 { transition-delay: .32s; }
.d5 { transition-delay: .40s; }

/* ---------- Icon system (inline SVGs) ----------
   Any container with .svc-icon, .svc-cat-icon, .hc-icon, .citem-ico, .sol-icon,
   .afeat-ico, .laptop-img > .ic, .ti > .ic gets a properly sized SVG.
*/
svg.ic {
    width: 56%;
    height: 56%;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
    display: block;
}
.svc-icon svg.ic, .svc-cat-icon svg.ic, .sol-icon svg.ic { width: 26px; height: 26px; }
.hc-icon svg.ic, .citem-ico svg.ic { width: 20px; height: 20px; }
.afeat-ico svg.ic { width: 18px; height: 18px; }
.ti svg.ic { width: 16px; height: 16px; }
.ft-contact svg.ic { width: 14px; height: 14px; flex-shrink: 0; opacity: .8; }

/* ---------- Header / Nav ---------- */
header.header-sec {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 20, 36, 0.78);
    backdrop-filter: saturate(140%) blur(18px);
    -webkit-backdrop-filter: saturate(140%) blur(18px);
    border-bottom: 1px solid var(--border);
}

nav { background: transparent !important; }
.logoBox img { max-height: 60px; display: block; }

.navbar-nav.nlinks,
.navbar-nav { gap: 4px; }

.nlinks { list-style: none; }

.navbar-nav .nav-link {
    font-size: 14px !important;
    font-weight: 500;
    color: var(--text-muted) !important;
    padding: 8px 14px !important;
    border-radius: 8px;
    transition: color .2s, background .2s;
    position: relative;
}

.navbar-nav .nav-link:hover { color: var(--text) !important; background: var(--accent-soft); }

.nav-item.active .nav-link { color: var(--accent-2) !important; }
.nav-item.active .nav-link::after {
    content: '';
    position: absolute;
    left: 14px; right: 14px; bottom: 4px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
}

.ncta {
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #fff !important;
    font-size: 13.5px;
    font-weight: 600;
    padding: 9px 18px !important;
    border-radius: 10px;
    text-decoration: none;
    border: none;
    box-shadow: 0 6px 18px rgba(74, 139, 255, 0.28);
    transition: transform .2s, box-shadow .2s;
}
.ncta:hover { transform: translateY(-1px); box-shadow: 0 10px 26px rgba(74, 139, 255, 0.42); }

.navbar-toggler {
    background: transparent;
    border: 1px solid var(--border-strong) !important;
    border-radius: 8px;
    padding: 6px 10px;
}
.navbar-toggler:focus { box-shadow: none; }
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='%23e6edf7' stroke-linecap='round' stroke-width='2' d='M4 8h22M4 15h22M4 22h22'/%3E%3C/svg%3E");
}

/* ---------- Buttons ---------- */
.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-sans);
    font-weight: 600;
    transition: transform .2s, box-shadow .2s, background .2s, border-color .2s, color .2s;
    z-index: 1;
}

.btn-p {
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #fff;
    font-size: 14.5px;
    padding: 12px 24px;
    border-radius: 11px;
    box-shadow: 0 8px 22px rgba(74, 139, 255, 0.32);
}
.btn-p:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(74, 139, 255, 0.45); color: #fff; }

.btn-g {
    background: transparent;
    color: var(--text);
    font-size: 14.5px;
    padding: 12px 22px;
    border-radius: 11px;
    border: 1px solid var(--border-strong);
}
.btn-g:hover { border-color: var(--accent); color: var(--accent-2); background: var(--accent-soft); }

.btn-sm { font-size: 13px; padding: 9px 18px; border-radius: 9px; }
.btn-p svg, .btn-g svg { transition: transform .2s; }
.btn-p:hover svg, .btn-g:hover svg { transform: translateX(3px); }

/* ---------- Section bits ---------- */
.sh { text-align: center; margin-bottom: 56px; }

.stag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--accent-2);
    background: var(--accent-soft);
    border: 1px solid var(--border-strong);
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 18px;
}

.stitle, .inner-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(30px, 3.4vw, 46px);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 14px;
    letter-spacing: -0.01em;
}
.stitle em, .inner-hero h1 em, h2 em { font-style: normal; color: var(--accent-2); }

.ssub {
    font-size: 15.5px;
    color: var(--text-muted);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ---------- HERO (homepage) ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 140px;
    padding-bottom: 80px;
    overflow: hidden;
    background: var(--bg);
}
/* Photo layer: real-human cyber/tech team, color-shifted into brand blue */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center right;
    filter: brightness(0.42) saturate(1.15) contrast(1.05) hue-rotate(195deg);
    z-index: 0;
    transform: scale(1.02); /* avoids hairline edges from filter */
}
/* Overlay layer: dark-on-left for text legibility + brand-color accent glows */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg,
            rgba(10, 20, 36, 0.96) 0%,
            rgba(10, 20, 36, 0.78) 35%,
            rgba(10, 20, 36, 0.50) 65%,
            rgba(10, 20, 36, 0.42) 100%),
        radial-gradient(ellipse 55% 70% at 78% 25%, rgba(74, 139, 255, 0.28), transparent 65%),
        radial-gradient(ellipse 40% 50% at 15% 95%, rgba(245, 166, 35, 0.06), transparent 65%);
    z-index: 1;
    pointer-events: none;
}
.hero > * { position: relative; z-index: 2; }

@media (max-width: 768px) {
    /* On mobile the right side has no cards, so flatten the gradient for uniform readability */
    .hero::after {
        background:
            linear-gradient(180deg,
                rgba(10, 20, 36, 0.88) 0%,
                rgba(10, 20, 36, 0.78) 60%,
                rgba(10, 20, 36, 0.72) 100%),
            radial-gradient(ellipse 100% 60% at 50% 20%, rgba(74, 139, 255, 0.22), transparent 70%);
    }
}

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

.hbadge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--accent-soft);
    border: 1px solid var(--border-strong);
    border-radius: 100px;
    padding: 6px 16px 6px 10px;
    font-size: 11.5px;
    font-weight: 600;
    color: var(--accent-2);
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 26px;
}
.hbdot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 4px rgba(74, 139, 255, 0.18);
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: .6; transform: scale(1.25); }
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(38px, 5.4vw, 60px);
    font-weight: 700;
    color: #fff;
    line-height: 1.05;
    margin-bottom: 22px;
    letter-spacing: -0.02em;
}
.hero h1 em { font-style: normal; color: var(--accent-2); }

.hero p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 520px;
    margin-bottom: 36px;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 56px;
    padding-top: 30px;
    border-top: 1px solid var(--border);
}
.hs-num {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 700;
    color: #fff;
}
.hs-num span { color: var(--gold); }
.hs-label { font-size: 12px; color: var(--text-muted); margin-top: 2px; letter-spacing: .03em; }

/* Clickable Google Reviews badge in the hero stats row */
.hs-rating-badge {
    display: block;
    text-decoration: none;
    color: inherit;
    padding: 8px 14px 8px 0;
    border-right: 1px solid var(--border);
    margin-right: 14px;
    transition: transform .2s;
}
.hs-rating-badge:hover {
    transform: translateY(-2px);
    color: inherit;
}
.hs-rating-badge:hover .hs-label { color: var(--gold); }
.hs-rating-stars {
    color: var(--gold);
    font-size: 15px;
    letter-spacing: 2px;
    line-height: 1;
    margin-bottom: 4px;
    text-shadow: 0 0 12px rgba(245, 166, 35, 0.4);
}

/* Hero visual stack (right side cards) */
.hero-visual {
    position: relative;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hv-stack { position: relative; width: 100%; height: 100%; max-width: 460px; margin-left: auto; }

.hcard {
    position: absolute;
    width: 86%;
    background: linear-gradient(160deg, rgba(22, 38, 74, 0.9), rgba(17, 31, 56, 0.85));
    border: 1px solid var(--border-strong);
    border-radius: 18px;
    padding: 22px 24px;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(14px);
    transition: transform .4s cubic-bezier(.23,1,.32,1), box-shadow .3s, border-color .3s;
    color: var(--text);
    text-decoration: none;
    display: block;
}
.hc-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent-2);
    letter-spacing: .02em;
    transition: gap .2s, color .2s;
}
.hcard:hover .hc-link { gap: 10px; color: #fff; }
a.hcard:hover { border-color: var(--accent); }
.hcard:nth-child(1) { top: 0;     right: 0;  transform: rotate(2.5deg); }
.hcard:nth-child(2) { top: 130px; right: 14px; z-index: 2; width: 92%; }
.hcard:nth-child(3) { bottom: 0;  right: 6px; transform: rotate(-2deg); }
.hcard:hover { transform: translateY(-4px) rotate(0); box-shadow: 0 30px 70px rgba(2,8,20,.6), 0 0 28px rgba(74,139,255,0.12); }

.hc-icon {
    width: 38px; height: 38px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, rgba(74,139,255,0.25), rgba(111,185,255,0.15));
    color: var(--accent-2);
    box-shadow: 0 4px 14px rgba(74,139,255,0.18);
    flex-shrink: 0;
}
.hc-tag {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--accent-2);
}
.hc-t { font-family: var(--font-display); font-size: 15px; font-weight: 600; color: #fff; margin: 8px 0 4px; }
.hc-d { font-size: 12.5px; color: var(--text-muted); line-height: 1.5; }
.hc-stat { display: flex; align-items: baseline; gap: 6px; margin-top: 12px; }
.hc-n { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--gold); }
.hc-nl { font-size: 11px; color: var(--text-muted); }

/* ---------- Trust bar ---------- */
.cat-sec { position: relative; z-index: 1; }
.tbar {
    display: flex;
    gap: 44px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 22px 5%;
    background: rgba(255,255,255,0.02);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.ti {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
}
.ti svg.ic { color: var(--accent-2); }

/* ---------- About strip on home ---------- */
.about-sec { padding: var(--gap) 0; position: relative; z-index: 1; }
.about-sec h2 { font-size: clamp(28px, 3vw, 42px); }
.about-sec p { font-size: 15.5px; line-height: 1.8; margin-bottom: 14px; }

.stat-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-align: center;
    padding: 32px 24px !important;
    transition: transform .3s, box-shadow .3s, border-color .3s;
}
.stat-card:hover { transform: translateY(-4px); border-color: var(--border-strong); box-shadow: var(--shadow); }
.stat-n {
    font-family: var(--font-display);
    font-size: 38px;
    font-weight: 700;
    color: var(--accent-2);
    line-height: 1;
    margin-bottom: 6px;
}
.stat-l { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); }

/* ---------- Services section (home) ---------- */
.services-sec { position: relative; z-index: 1; }

.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    transition: transform .3s cubic-bezier(.23,1,.32,1), box-shadow .3s, border-color .3s;
}
.card:hover { transform: translateY(-6px); border-color: var(--border-strong); box-shadow: var(--shadow-lg); }
.card-bar {
    position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    transform: scaleX(0); transform-origin: left;
    transition: transform .4s cubic-bezier(.23,1,.32,1);
}
.card:hover .card-bar { transform: scaleX(1); }

.svc-icon {
    width: 54px; height: 54px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, rgba(74,139,255,0.22), rgba(111,185,255,0.10));
    color: var(--accent-2);
    box-shadow: 0 6px 18px rgba(74,139,255,0.18);
    margin-bottom: 20px;
    transition: transform .3s;
}
.card:hover .svc-icon { transform: scale(1.06); }

.svc-num {
    position: absolute;
    right: 22px; top: 18px;
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 700;
    color: rgba(255,255,255,0.05);
    line-height: 1;
}
.svc-title {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}
.svc-desc { font-size: 14px; color: var(--text-muted); line-height: 1.65; margin-bottom: 18px; }
.svc-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }

.tag {
    font-size: 11.5px;
    padding: 4px 10px;
    border-radius: 100px;
    background: var(--accent-soft);
    border: 1px solid var(--border-strong);
    color: var(--accent-2);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.svc-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-2);
    text-decoration: none;
    transition: gap .2s, color .2s;
}
.svc-link:hover { gap: 10px; color: #fff; }
.svc-link svg { transition: transform .2s; }
.card:hover .svc-link svg { transform: translateX(3px); }

/* ---------- Who we serve ---------- */
.who-sec { position: relative; z-index: 1; }
.who-sec .vis,
.who-sec .rv.d2 {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: transform .3s, border-color .3s, box-shadow .3s;
    cursor: default;
}
.who-sec .rv.d2 { background: linear-gradient(160deg, rgba(74,139,255,0.10), rgba(17,31,56,0.6)); }
.who-sec .vis:hover { transform: translateY(-4px); border-color: var(--border-strong); box-shadow: var(--shadow); }
.who-sec .svc-icon { margin: 0 auto 18px; }
.who-sec h4 { font-family: var(--font-display); font-size: 19px; color: #fff; margin-bottom: 10px; }
.who-sec p { font-size: 14.5px; color: var(--text-muted); line-height: 1.65; }

/* ---------- How it works ---------- */
.work-sec { position: relative; z-index: 1; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.step {
    padding: 28px 22px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    position: relative;
    transition: transform .3s, border-color .3s, box-shadow .3s;
}
.step:hover { transform: translateY(-4px); border-color: var(--border-strong); box-shadow: var(--shadow); }
.step-num {
    font-family: var(--font-display);
    font-size: 38px;
    font-weight: 700;
    color: var(--accent);
    opacity: 0.18;
    line-height: 1;
    margin-bottom: 10px;
}
.step:hover .step-num { opacity: 0.4; }
.step h4 { font-family: var(--font-display); color: #fff; font-size: 17px; font-weight: 600; margin-bottom: 8px; }
.step p { font-size: 13.5px; color: var(--text-muted); line-height: 1.6; }
.step-conn {
    position: absolute;
    top: 36px; right: -14px;
    width: 12px; height: 2px;
    background: var(--border-strong);
}

/* ---------- Testimonials ---------- */
.testi-sec { position: relative; z-index: 1; }
.tcard {
    padding: 30px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: transform .3s, border-color .3s, box-shadow .3s;
}
.tcard:hover { transform: translateY(-4px); border-color: var(--border-strong); box-shadow: var(--shadow); }
.stars { color: var(--gold); font-size: 14px; letter-spacing: 3px; margin-bottom: 12px; }
.tq {
    font-size: 44px;
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--accent);
    opacity: 0.3;
    line-height: 0.5;
    margin-bottom: 16px;
    display: block;
}
.ttext { font-size: 14.5px; line-height: 1.75; color: var(--text); margin-bottom: 20px; }
.tauthor { display: flex; align-items: center; gap: 12px; }
.tav {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 13px;
    color: #fff;
    flex-shrink: 0;
}
.tname { font-size: 14px; font-weight: 600; color: #fff; }
.tdate { font-size: 11.5px; color: var(--text-muted); margin-top: 2px; }

/* ---------- CTA banner ---------- */
.cta-banner {
    margin: 0 5% var(--gap);
    padding: 56px 48px;
    background: linear-gradient(135deg, rgba(74,139,255,0.14), rgba(17,31,56,0.7));
    border: 1px solid var(--border-strong);
    border-radius: 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 50% 0%, rgba(74,139,255,0.18), transparent 60%);
    pointer-events: none;
}
.cta-banner > * { position: relative; }
.cta-banner h2 { font-size: clamp(26px, 3vw, 38px); margin-bottom: 12px; }
.cta-banner p { font-size: 16px; max-width: 540px; margin: 0 auto 28px; line-height: 1.7; }
.cta-banner-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ---------- Inner page hero ---------- */
.inner-hero {
    position: relative;
    padding: 150px 0 70px;
    text-align: center;
    overflow: hidden;
}
.inner-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(74,139,255,0.16), transparent 65%);
    z-index: -1;
}
.inner-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(38px, 5vw, 60px);
    font-weight: 700;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}
.inner-hero p {
    font-size: 16.5px;
    color: var(--text-muted);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.7;
}
.breadcrumb {
    font-size: 12.5px;
    color: var(--text-muted);
    margin-bottom: 18px;
    justify-content: center;
    gap: 7px;
    align-items: center;
    display: flex !important;
    background: transparent;
    padding: 0;
}
.breadcrumb a { color: var(--accent-2); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

/* ---------- Image-backed page hero (service & detail pages) ---------- */
.page-hero {
    position: relative;
    padding: 160px 0 80px;
    overflow: hidden;
    background: var(--bg);
    isolation: isolate;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--page-hero-img);
    background-size: cover;
    background-position: center;
    filter: brightness(0.42) saturate(1.15) contrast(1.05) hue-rotate(195deg);
    z-index: 0;
    transform: scale(1.02);
}
.page-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg,
            rgba(10, 20, 36, 0.94) 0%,
            rgba(10, 20, 36, 0.80) 40%,
            rgba(10, 20, 36, 0.62) 75%,
            rgba(10, 20, 36, 0.55) 100%),
        radial-gradient(ellipse 55% 80% at 82% 30%, rgba(74, 139, 255, 0.22), transparent 65%),
        radial-gradient(ellipse 40% 50% at 12% 95%, rgba(245, 166, 35, 0.05), transparent 65%);
    z-index: 1;
    pointer-events: none;
}
.page-hero > .container-fluid {
    position: relative;
    z-index: 2;
}
.page-hero .breadcrumb {
    justify-content: flex-start !important;
    margin-bottom: 22px;
}
.page-hero-content { max-width: 720px; }
.page-hero-content .stag { margin-bottom: 20px; }
.page-hero-content h1 {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    color: #fff;
    line-height: 1.05;
    margin-bottom: 18px;
    letter-spacing: -0.02em;
}
.page-hero-content h1 em { font-style: normal; color: var(--accent-2); }
.page-hero-content p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 640px;
    margin-bottom: 30px;
}
.page-hero-content .hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 0;
}

/* 2x2 stat card grid used inside service-detail pages */
.stat-card-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.stat-card-grid .stat-card {
    padding: 26px 22px !important;
    text-align: left;
}
.stat-card-grid .stat-n { font-size: 32px; }
.stat-card-grid .stat-l { font-size: 12.5px; line-height: 1.4; }

@media (max-width: 768px) {
    .page-hero { padding: 130px 0 60px; }
    .page-hero-content h1 { font-size: 34px; }
    .stat-card-grid { grid-template-columns: 1fr; }
}

/* ---------- About page ---------- */
.av-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}
.av-inner {
    height: 440px;
    background: linear-gradient(160deg, var(--surface), var(--bg-2));
    display: flex; align-items: center; justify-content: center;
    color: var(--accent-2);
    position: relative;
    overflow: hidden;
}
.av-inner::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(circle at 30% 40%, rgba(74,139,255,0.22), transparent 50%),
        radial-gradient(circle at 75% 70%, rgba(245,166,35,0.10), transparent 55%);
}
.av-inner svg.ic { width: 120px; height: 120px; stroke-width: 1.2; position: relative; }
.av-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: relative;
    z-index: 1;
    filter: saturate(1.05) brightness(0.95);
}
.av-inner:has(img)::before {
    background: linear-gradient(160deg, rgba(74,139,255,0.15), transparent 70%);
    mix-blend-mode: overlay;
    z-index: 2;
}
.afc {
    position: absolute; z-index: 2;
    background: rgba(10, 20, 36, 0.92);
    backdrop-filter: blur(14px);
    border: 1px solid var(--border-strong);
    border-radius: 14px;
    padding: 16px 20px;
    box-shadow: var(--shadow);
}
.afc:nth-child(2) { bottom: -18px; left: -18px; }
.afc:nth-child(3) { top: -16px; right: -16px; }
.afc-l { font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--accent-2); margin-bottom: 4px; }
.afc-v { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: #fff; }
.afc-s { font-size: 11.5px; color: var(--text-muted); margin-top: 2px; }

.afeats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 26px; }
.afeat {
    display: flex; gap: 12px; align-items: flex-start;
    padding: 14px 16px;
    background: rgba(74,139,255,0.04);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: border-color .2s, background .2s, transform .2s;
}
.afeat:hover { border-color: var(--border-strong); background: rgba(74,139,255,0.08); transform: translateX(3px); }
.afeat-ico {
    width: 32px; height: 32px;
    border-radius: 9px;
    display: flex; align-items: center; justify-content: center;
    background: var(--accent-soft);
    color: var(--accent-2);
    flex-shrink: 0;
}
.afeat-t { font-size: 13.5px; font-weight: 600; color: #fff; margin-bottom: 3px; }
.afeat-d { font-size: 12px; color: var(--text-muted); line-height: 1.5; }

/* About: second photo block */
.about-photo-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-strong);
    box-shadow: var(--shadow-lg);
    position: relative;
}
.about-photo-wrap img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
    display: block;
    transition: transform .5s cubic-bezier(.23,1,.32,1);
}
.about-photo-wrap:hover img { transform: scale(1.03); }
.about-photo-wrap::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(160deg, rgba(74,139,255,0.16), transparent 70%);
    pointer-events: none;
}

/* ---------- Services page ---------- */
.svc-category {
    padding: 44px 38px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}
.svc-cat-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--border);
}
.svc-cat-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(74,139,255,0.25), rgba(111,185,255,0.10));
    color: var(--accent-2);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 6px 18px rgba(74,139,255,0.18);
}
.svc-cat-name { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: #fff; }
.svc-cat-sub { font-size: 13px; color: var(--text-muted); margin-top: 3px; }
.svc-book-btn {
    margin-top: 8px;
    max-width: 170px;
    text-align: center;
    justify-content: center;
}

/* ---------- Solutions page ---------- */
.sol-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 22px;
    padding: 0 5% var(--gap);
}
.sol-card {
    padding: 32px 28px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    transition: transform .3s, border-color .3s, box-shadow .3s;
}
.sol-card:hover { transform: translateY(-6px); border-color: var(--border-strong); box-shadow: var(--shadow-lg); }
.sol-bar {
    position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    transform: scaleX(0); transform-origin: left;
    transition: transform .4s cubic-bezier(.23,1,.32,1);
}
.sol-card:hover .sol-bar { transform: scaleX(1); }
.sol-icon {
    width: 58px; height: 58px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    color: var(--accent-2);
    background: linear-gradient(135deg, rgba(74,139,255,0.20), rgba(111,185,255,0.08));
    margin-bottom: 20px;
    transition: transform .3s;
    box-shadow: 0 6px 18px rgba(74,139,255,0.18);
}
.sol-card:hover .sol-icon { transform: scale(1.06); }
.sol-title { font-family: var(--font-display); font-size: 19px; font-weight: 600; color: #fff; margin-bottom: 8px; }
.sol-desc { font-size: 14px; color: var(--text-muted); line-height: 1.65; margin-bottom: 18px; }
.sol-features { list-style: none; display: flex; flex-direction: column; gap: 7px; padding-left: 0; margin-bottom: 0; }
.sol-features li {
    font-size: 13px;
    color: var(--text);
    display: flex; align-items: center; gap: 9px;
    position: relative;
}
.sol-features li::before {
    content: '';
    width: 14px; height: 14px;
    flex-shrink: 0;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234a8bff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

/* ---------- Laptop stock page ---------- */
.laptop-filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 30px; }
.filter-btn {
    padding: 8px 16px;
    border-radius: 100px;
    border: 1px solid var(--border-strong);
    background: transparent;
    color: var(--text-muted);
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all .2s;
}
.filter-btn:hover { color: var(--text); border-color: var(--accent); }
.filter-btn.active {
    background: var(--accent-soft);
    border-color: var(--accent);
    color: var(--accent-2);
}

.laptop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 22px;
}
.laptop-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform .3s, border-color .3s, box-shadow .3s;
}
.laptop-card:hover { transform: translateY(-5px); border-color: var(--border-strong); box-shadow: var(--shadow-lg); }
.laptop-img {
    position: relative;
    height: 200px;
    background: linear-gradient(160deg, #f0f4fb, #dee5f0);
    display: flex; align-items: center; justify-content: center;
    color: var(--accent-2);
    overflow: hidden;
}
.laptop-img::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 70% 100% at 50% 100%, rgba(74,139,255,0.10), transparent 65%);
    pointer-events: none;
    z-index: 1;
}
.laptop-img svg.ic { width: 76px; height: 76px; stroke-width: 1.4; position: relative; color: var(--text-dim); }
.laptop-img > span:not(.laptop-badge) { display: none; } /* hide any legacy emoji span */
.laptop-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform .5s cubic-bezier(.23,1,.32,1);
    z-index: 0;
}
.laptop-card:hover .laptop-img img { transform: scale(1.04); }
/* When the image is portrait/uncertain, anchor to the top so the laptop face shows */
.laptop-img.img-top img { object-position: center top; }
.laptop-img.img-contain img { object-fit: contain; padding: 14px; }
.laptop-badge {
    position: absolute;
    top: 12px; right: 12px;
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    z-index: 2;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.badge-avail { background: rgba(34,197,94,0.14); border: 1px solid rgba(34,197,94,0.32); color: #22c55e; }
.badge-low   { background: var(--gold-soft); border: 1px solid rgba(245,166,35,0.32); color: var(--gold); }
.badge-out   { background: rgba(239,68,68,0.10); border: 1px solid rgba(239,68,68,0.25); color: var(--danger); }
.laptop-body { padding: 22px; }
.laptop-brand { font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--accent-2); margin-bottom: 5px; }
.laptop-name { font-family: var(--font-display); font-size: 17px; font-weight: 600; color: #fff; margin-bottom: 12px; }
.laptop-specs { display: flex; flex-direction: column; gap: 5px; margin-bottom: 16px; }
.laptop-spec { font-size: 12.5px; color: var(--text-muted); display: flex; align-items: center; gap: 7px; }
.laptop-spec::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
.laptop-price-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.laptop-price { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--gold); }
.laptop-condition {
    font-size: 11px;
    padding: 3px 10px;
    border-radius: 100px;
    background: var(--accent-soft);
    border: 1px solid var(--border-strong);
    color: var(--accent-2);
    font-weight: 600;
}
.laptop-btn { width: 100%; text-align: center; justify-content: center; }

/* ---------- Contact page ---------- */
.contact-sec { padding-bottom: var(--gap); position: relative; z-index: 1; }
.ci h2 { font-family: var(--font-display); font-size: clamp(26px, 2.8vw, 36px); margin-bottom: 14px; }
.ci p { font-size: 15.5px; line-height: 1.7; margin-bottom: 32px; }

.citems { display: flex; flex-direction: column; gap: 12px; }
.citem {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: all .2s;
    text-decoration: none;
    color: inherit;
}
.citem:hover { border-color: var(--accent); background: rgba(74,139,255,0.06); transform: translateX(4px); }
.citem-ico {
    width: 42px; height: 42px;
    border-radius: 11px;
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(74,139,255,0.22), rgba(111,185,255,0.10));
    color: var(--accent-2);
    display: flex; align-items: center; justify-content: center;
}
.citem-l { font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--accent-2); margin-bottom: 3px; }
.citem-v { font-size: 13.5px; font-weight: 500; color: var(--text); }

.cf {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow);
}
.cf-header { margin-bottom: 24px; }
.cf-title { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: #fff; margin-bottom: 4px; }
.cf-sub { font-size: 13px; color: var(--text-muted); }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.fg { display: flex; flex-direction: column; gap: 7px; margin-bottom: 14px; }
.fg label { font-size: 11.5px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); }
.fg input, .fg textarea, .fg select {
    background: rgba(0,0,0,0.25);
    border: 1px solid var(--border-strong);
    border-radius: 10px;
    padding: 12px 14px;
    font-family: var(--font-sans);
    font-size: 14px;
    color: var(--text);
    transition: border-color .2s, box-shadow .2s;
    outline: none;
    width: 100%;
}
.fg input::placeholder, .fg textarea::placeholder { color: var(--text-dim); }
.fg input:focus, .fg textarea:focus, .fg select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(74,139,255,0.18);
}
.fg textarea { resize: vertical; min-height: 120px; }
.fg select { cursor: pointer; }
.fg select option { background: var(--surface); color: var(--text); }

.fsub {
    width: 100%;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #fff;
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 600;
    padding: 14px;
    border-radius: 11px;
    border: none;
    cursor: pointer;
    transition: transform .2s, box-shadow .2s, opacity .2s;
    box-shadow: 0 8px 22px rgba(74,139,255,0.32);
    display: flex; align-items: center; justify-content: center;
    gap: 9px;
}
.fsub:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(74,139,255,0.45); }
.fsub:disabled { opacity: 0.65; cursor: wait; transform: none; box-shadow: 0 8px 22px rgba(74,139,255,0.20); }

/* Honeypot: invisible to humans, bots will fill it and trip server-side filter */
.cf-honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

/* Inline error banner for contact form submission failures */
.fg-error {
    display: none;
    background: rgba(239, 68, 68, 0.10);
    border: 1px solid rgba(239, 68, 68, 0.30);
    color: #fca5a5;
    padding: 11px 14px;
    border-radius: 10px;
    font-size: 13.5px;
    line-height: 1.5;
    margin-bottom: 14px;
}
.fg-error.show { display: block; }

.fsuccess { display: none; text-align: center; padding: 32px 20px; }
.fsuccess-ico { display: inline-flex; width: 64px; height: 64px; align-items: center; justify-content: center; border-radius: 50%; background: rgba(34,197,94,0.14); color: var(--success); margin-bottom: 14px; }
.fsuccess-ico svg.ic { width: 32px; height: 32px; }
.fsuccess h3 { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: #fff; margin-bottom: 8px; }
.fsuccess p { font-size: 14px; color: var(--text-muted); }

/* ---------- Footer ---------- */
footer {
    border-top: 1px solid var(--border);
    padding: 56px 5% 28px;
    position: relative;
    z-index: 1;
    background: rgba(10, 20, 36, 0.6);
}
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 40px;
}
.nlogo { display: inline-flex; align-items: center; }
.ft-brand-desc { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-top: 14px; max-width: 290px; }

/* Footer Google Reviews mini-block */
.ft-reviews {
    margin-top: 18px;
    padding: 14px 16px;
    background: linear-gradient(160deg, rgba(245, 166, 35, 0.10), rgba(74, 139, 255, 0.04));
    border: 1px solid rgba(245, 166, 35, 0.25);
    border-radius: 14px;
    max-width: 290px;
}
.ft-reviews-stars {
    color: var(--gold);
    font-size: 16px;
    letter-spacing: 2px;
    line-height: 1;
    margin-bottom: 4px;
}
.ft-reviews-rating {
    color: #fff;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0;
    margin-left: 6px;
}
.ft-reviews-text {
    font-size: 12.5px;
    color: var(--text-muted);
    margin-bottom: 10px;
}
.ft-reviews-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--gold);
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 100px;
    border: 1px solid rgba(245, 166, 35, 0.35);
    background: rgba(245, 166, 35, 0.08);
    transition: background .2s, transform .2s, border-color .2s;
}
.ft-reviews-cta:hover {
    background: rgba(245, 166, 35, 0.18);
    border-color: var(--gold);
    transform: translateY(-1px);
    color: var(--gold);
}
.ft-heading {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--text);
    margin-bottom: 16px;
}
.ft-links { display: flex; flex-direction: column; gap: 8px; list-style: none; padding-left: 0; }
.ft-links a {
    font-size: 13.5px;
    color: var(--text-muted);
    text-decoration: none;
    transition: color .2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.ft-links a:hover { color: var(--accent-2); }
.ft-links a:hover svg { transform: translateX(3px); }
.ft-links svg { width: 12px; height: 12px; transition: transform .2s; opacity: .6; }

.ft-contact {
    font-size: 13.5px;
    color: var(--text-muted);
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.ft-contact > div { display: flex; align-items: flex-start; gap: 10px; line-height: 1.6; }
.ft-contact a { color: var(--accent-2); text-decoration: none; }
.ft-contact a:hover { text-decoration: underline; }

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 22px;
    border-top: 1px solid var(--border);
}
.fcopy { font-size: 12.5px; color: var(--text-dim); }
.fcopy strong { color: var(--accent-2); font-weight: 600; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .hero-visual { display: none; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .steps { grid-template-columns: repeat(2, 1fr); }
    .step-conn { display: none; }
    .svc-category { padding: 32px 24px; }
}

@media (max-width: 768px) {
    :root { --gap: 64px; }
    .hero { padding-top: 120px; min-height: auto; }
    .hero h1 { font-size: 36px; }
    .hero-stats { gap: 24px; margin-top: 36px; }
    .g2, .g3, .g4 { grid-template-columns: 1fr; }
    .frow { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
    .afc:nth-child(3) { display: none; }
    .afeats { grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr; }
    .cta-banner { padding: 40px 24px; }
    .cf { padding: 26px 20px; }
}
