/* ============================================================
   CWV Technologies — Design System
   Restrained corporate palette: warm gray / deep navy / one accent
   ============================================================ */

:root {
    --bg: #edf1f7;
    --bg-grad: linear-gradient(160deg, #f3f7fc 0%, #e6eef9 100%);
    --surface: #ffffff;
    --ink: #082d4f;
    --ink-soft: #45607a;
    --ink-faint: #7a8ea0;
    --accent: #1668d9;
    --accent-dark: #0e4fa8;
    --accent-tint: #e8f1fd;
    --line: #dce4ef;
    --line-dark: rgba(255, 255, 255, 0.14);
    --radius: 12px;
    --radius-lg: 20px;
    --shadow-sm: 0 1px 2px rgba(8, 45, 79, 0.05), 0 4px 16px rgba(8, 45, 79, 0.06);
    --shadow-md: 0 2px 6px rgba(8, 45, 79, 0.06), 0 16px 40px rgba(8, 45, 79, 0.10);
    --font-display: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Figtree', sans-serif;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --header-h: 72px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--ink);
    line-height: 1.65;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
/* Fixed faded datacentre backdrop — content scrolls over it */
body::before {
    content: '';
    position: fixed; inset: 0;
    background: url('datacentre-bg.jpg') center / cover no-repeat;
    opacity: 0.16;
    pointer-events: none;
    z-index: 0;
}
main { position: relative; z-index: 1; }
ul { list-style: none; }
img, svg { display: block; }
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

::selection { background: var(--accent); color: #fff; }

/* ---------- Typography helpers ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--ink); line-height: 1.18; }
.eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}
.eyebrow::before {
    content: '';
    display: inline-block;
    width: 22px; height: 2px;
    background: var(--accent);
    vertical-align: middle;
    margin-right: 10px;
    transform: translateY(-2px);
}
.lead { font-size: 1.13rem; color: var(--ink-soft); max-width: 640px; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 9px;
    padding: 13px 28px;
    border-radius: 999px;
    font-family: var(--font-body);
    font-weight: 600; font-size: 0.95rem;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: all 0.25s var(--ease);
    white-space: nowrap;
}
.btn svg { width: 15px; height: 15px; transition: transform 0.25s var(--ease); }
.btn:hover svg { transform: translateX(3px); }
.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { background: var(--accent); }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--accent-dark); }
.btn-outline { background: transparent; color: var(--ink); border-color: rgba(8, 45, 79, 0.35); }
.btn-outline:hover { border-color: var(--ink); background: var(--ink); color: #fff; }
.btn-white { background: #fff; color: var(--ink); }
.btn-white:hover { background: var(--accent); color: #fff; }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.45); }
.btn-outline-white:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.header {
    position: sticky; top: 0; z-index: 1000;
    background: rgba(237, 241, 247, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
}
.header .container { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); }
.logo { display: flex; align-items: center; gap: 11px; font-family: var(--font-display); font-weight: 800; font-size: 1.18rem; color: var(--ink); letter-spacing: -0.01em; }
.logo-mark {
    width: 34px; height: 34px; border-radius: 9px;
    background: var(--ink);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.logo-mark svg { width: 18px; height: 18px; }
.logo em { font-style: normal; font-weight: 500; color: var(--ink-soft); }
.nav { display: flex; align-items: center; gap: 30px; }
.nav > a {
    font-weight: 600; font-size: 0.92rem; color: var(--ink-soft);
    transition: color 0.25s var(--ease);
    position: relative; padding: 6px 0;
}
.nav > a:hover { color: var(--ink); }
.nav > a.active { color: var(--ink); }
.nav > a.active::after {
    content: ''; position: absolute; left: 0; right: 0; bottom: -2px;
    height: 2px; background: var(--accent); border-radius: 2px;
}
.nav .btn { padding: 10px 22px; font-size: 0.88rem; }
.nav > a.nav-trial {
    color: var(--accent-dark); font-weight: 700;
    background: var(--accent-tint);
    border: 1px solid rgba(22, 104, 217, 0.28);
    padding: 8px 18px; border-radius: 999px;
    transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.nav > a.nav-trial:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.burger { display: none; background: none; border: none; cursor: pointer; width: 40px; height: 40px; flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.burger span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: all 0.3s var(--ease); }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { padding: 108px 0 96px; position: relative; z-index: 0; overflow: hidden; background: linear-gradient(160deg, rgba(243, 247, 252, 0.9) 0%, rgba(230, 238, 249, 0.9) 100%); }
.hero::before {
    content: ''; position: absolute; top: -260px; left: 50%; transform: translateX(-50%);
    width: 900px; height: 900px; border-radius: 50%;
    background: radial-gradient(circle, rgba(22, 104, 217, 0.07) 0%, transparent 62%);
    pointer-events: none;
}
.hero-inner { position: relative; text-align: center; max-width: 820px; margin: 0 auto; }
.hero h1 { font-size: clamp(2.4rem, 5.2vw, 3.7rem); font-weight: 800; letter-spacing: -0.025em; margin-bottom: 22px; }
.hero h1 .accent { color: var(--accent); }
.hero .lead { margin: 0 auto 36px; }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.hero-compact { padding: 84px 0 72px; }
.hero-compact h1 { font-size: clamp(2.1rem, 4.4vw, 3rem); }

/* ---------- Stats strip ---------- */
.stats { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255, 255, 255, 0.82); }
.stats .container { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 34px 20px; text-align: center; border-left: 1px solid var(--line); }
.stat:first-child { border-left: none; }
.stat .num { font-family: var(--font-display); font-size: 2rem; font-weight: 800; color: var(--ink); letter-spacing: -0.02em; }
.stat .num sup { font-size: 1.1rem; color: var(--accent); }
.stat .lbl { font-size: 0.82rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-faint); margin-top: 4px; }

/* ---------- Sections ---------- */
.section { position: relative; z-index: 0; padding: 96px 0; background: linear-gradient(160deg, rgba(243, 247, 252, 0.78) 0%, rgba(230, 238, 249, 0.78) 100%); }
.section-white { position: relative; z-index: 0; background: rgba(255, 255, 255, 0.88); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.7rem, 3.4vw, 2.35rem); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 14px; }
.section-head p { color: var(--ink-soft); font-size: 1.05rem; }

/* ---------- Pillars (home services) ---------- */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.pillar { background: rgba(255, 255, 255, 0.82); padding: 40px 34px; transition: background 0.3s var(--ease); }
.pillar:hover { background: #fbfcfe; }
.pillar-icon {
    width: 46px; height: 46px; border-radius: 12px;
    background: var(--accent-tint);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 22px;
}
.pillar-icon svg { width: 22px; height: 22px; color: var(--accent); }
.pillar h3 { font-size: 1.18rem; font-weight: 700; margin-bottom: 10px; }
.pillar p { font-size: 0.94rem; color: var(--ink-soft); margin-bottom: 18px; }
.pillar a { font-size: 0.9rem; font-weight: 700; color: var(--accent); display: inline-flex; align-items: center; gap: 7px; }
.pillar a svg { width: 14px; height: 14px; transition: transform 0.25s var(--ease); }
.pillar a:hover svg { transform: translateX(3px); }

/* ---------- Bundle cards ---------- */
.bundle-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.bundle-grid.two { grid-template-columns: repeat(2, 1fr); max-width: 820px; margin: 0 auto; }
.bundle-card {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 34px 30px;
    display: flex; flex-direction: column;
    position: relative;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.bundle-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: rgba(22, 104, 217, 0.35); }
.bundle-card.featured { border: 1.5px solid var(--accent); box-shadow: 0 12px 44px rgba(22, 104, 217, 0.14); }
.bundle-badge {
    position: absolute; top: -13px; left: 30px;
    background: var(--accent); color: #fff;
    font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
    padding: 5px 14px; border-radius: 999px;
}
.bundle-icon {
    width: 46px; height: 46px; border-radius: 12px;
    background: var(--accent-tint);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
}
.bundle-icon svg { width: 22px; height: 22px; color: var(--accent); }
.bundle-kicker { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 6px; }
.bundle-card h3 { font-size: 1.28rem; font-weight: 800; letter-spacing: -0.01em; margin-bottom: 8px; }
.bundle-sub { font-size: 0.92rem; color: var(--ink-soft); margin-bottom: 22px; min-height: 44px; }
.bundle-price { padding: 18px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin-bottom: 22px; }
.bundle-price .amount { font-family: var(--font-display); font-size: 2.1rem; font-weight: 800; color: var(--ink); letter-spacing: -0.02em; }
.bundle-price .amount sup { font-size: 1.05rem; font-weight: 700; top: -0.75em; color: var(--ink-soft); }
.bundle-price .per { color: var(--ink-faint); font-size: 0.88rem; font-weight: 500; }
.bundle-price .save {
    display: inline-block; margin-top: 9px;
    background: var(--accent-tint); color: var(--accent-dark);
    font-size: 0.76rem; font-weight: 700; padding: 4px 12px; border-radius: 999px;
}
.bundle-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; flex: 1; }
.bundle-features li { display: flex; gap: 10px; font-size: 0.9rem; color: var(--ink-soft); align-items: flex-start; }
.bundle-features li strong { color: var(--ink); font-weight: 600; }
.check { flex-shrink: 0; width: 17px; height: 17px; margin-top: 3px; border-radius: 50%; background: var(--accent-tint); display: inline-flex; align-items: center; justify-content: center; }
.check svg { width: 9px; height: 9px; color: var(--accent); stroke-width: 3; }

/* ---------- Flagship wide card ---------- */
.flagship {
    background: var(--ink);
    border-radius: var(--radius-lg);
    color: #fff;
    padding: 56px 52px;
    display: grid; grid-template-columns: 1.35fr 1fr; gap: 52px; align-items: center;
    position: relative; overflow: hidden;
}
.flagship::before {
    content: ''; position: absolute; top: -180px; right: -140px;
    width: 480px; height: 480px; border-radius: 50%;
    background: radial-gradient(circle, rgba(22, 104, 217, 0.35) 0%, transparent 65%);
}
.flagship > * { position: relative; }
.flagship .bundle-kicker { color: #7fb3ef; }
.flagship h3 { color: #fff; font-size: 1.75rem; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 12px; }
.flagship p { color: rgba(255, 255, 255, 0.78); font-size: 0.98rem; margin-bottom: 26px; }
.flagship-features { display: grid; grid-template-columns: 1fr 1fr; gap: 11px 22px; }
.flagship-features li { display: flex; gap: 10px; font-size: 0.9rem; color: rgba(255, 255, 255, 0.9); align-items: flex-start; }
.flagship-features .check { background: rgba(255, 255, 255, 0.12); }
.flagship-features .check svg { color: #7fb3ef; }
.flagship-price {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--line-dark);
    border-radius: var(--radius-lg);
    padding: 36px 32px; text-align: center;
}
.flagship-price .from { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: #7fb3ef; }
.flagship-price .amount { font-family: var(--font-display); font-size: 2.7rem; font-weight: 800; margin: 8px 0 2px; letter-spacing: -0.02em; }
.flagship-price .amount sup { font-size: 1.2rem; top: -0.85em; color: rgba(255,255,255,0.65); }
.flagship-price .per { color: rgba(255, 255, 255, 0.65); font-size: 0.9rem; margin-bottom: 8px; }
.flagship-price .note { font-size: 0.84rem; color: #7fb3ef; margin-bottom: 24px; line-height: 1.5; }

/* ---------- Comparison table ---------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius-lg); background: rgba(255, 255, 255, 0.82); box-shadow: var(--shadow-sm); }
.compare { width: 100%; border-collapse: collapse; min-width: 900px; }
.compare th, .compare td { padding: 15px 16px; text-align: center; font-size: 0.88rem; }
.compare thead th {
    background: var(--ink); color: #fff;
    font-family: var(--font-display); font-weight: 700; font-size: 0.85rem;
    white-space: nowrap;
}
.compare thead th:first-child { text-align: left; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.6); }
.compare tbody td { border-bottom: 1px solid var(--line); color: var(--ink-soft); }
.compare tbody td:first-child { text-align: left; color: var(--ink); font-weight: 600; }
.compare tbody tr:last-child td { border-bottom: none; }
.compare tbody tr:hover td { background: #f7fafd; }
.compare .yes { display: inline-flex; width: 22px; height: 22px; border-radius: 50%; background: var(--accent-tint); align-items: center; justify-content: center; }
.compare .yes svg { width: 11px; height: 11px; color: var(--accent); stroke-width: 3; }
.compare .no { display: inline-block; width: 16px; height: 1.5px; background: #c9d2da; border-radius: 2px; }
.compare .opt { font-size: 0.8rem; font-weight: 700; color: var(--accent-dark); background: var(--accent-tint); padding: 3px 10px; border-radius: 999px; }
.compare .price-row td { background: #f0f6fd; font-family: var(--font-display); font-weight: 800; color: var(--ink); font-size: 0.98rem; }
.compare .price-row td small { display: block; font-family: var(--font-body); font-weight: 500; font-size: 0.72rem; color: var(--ink-faint); }
.compare .price-row td:first-child { background: #f0f6fd; }

/* ---------- Notes panel ---------- */
.notes {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 32px 36px;
    margin-top: 48px;
    box-shadow: var(--shadow-sm);
}
.notes h3 { font-size: 1rem; font-weight: 700; margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
.notes h3 svg { width: 18px; height: 18px; color: var(--accent); }
.notes ul { display: grid; grid-template-columns: 1fr 1fr; gap: 9px 32px; }
.notes li { font-size: 0.88rem; color: var(--ink-soft); padding-left: 16px; position: relative; }
.notes li::before { content: ''; position: absolute; left: 0; top: 9px; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }

/* ---------- FAQ ---------- */
.faq { max-width: 780px; margin: 0 auto; }
.faq-item { background: rgba(255, 255, 255, 0.82); border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; }
.faq-q {
    width: 100%; background: none; border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    padding: 20px 24px; text-align: left;
    font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--ink);
}
.faq-q svg { width: 16px; height: 16px; color: var(--ink-soft); flex-shrink: 0; transition: transform 0.3s var(--ease); }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease); }
.faq-a p { padding: 0 24px 22px; font-size: 0.93rem; color: var(--ink-soft); }

/* ---------- Split feature (why us / about) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split h2 { font-size: clamp(1.7rem, 3.2vw, 2.2rem); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 16px; }
.split > div > p { color: var(--ink-soft); margin-bottom: 26px; }
.tick-list { display: flex; flex-direction: column; gap: 14px; }
.tick-list li { display: flex; gap: 13px; align-items: flex-start; font-size: 0.96rem; color: var(--ink-soft); }
.tick-list li strong { color: var(--ink); font-weight: 700; display: block; }
.tick-list .check { width: 20px; height: 20px; margin-top: 2px; }
.tick-list .check svg { width: 10px; height: 10px; }

/* Dark panel inside split */
.dark-panel {
    background: var(--ink); color: #fff;
    border-radius: var(--radius-lg);
    padding: 44px 40px;
    position: relative; overflow: hidden;
}
.dark-panel::before {
    content: ''; position: absolute; bottom: -160px; right: -120px;
    width: 380px; height: 380px; border-radius: 50%;
    background: radial-gradient(circle, rgba(22, 104, 217, 0.3) 0%, transparent 65%);
}
.dark-panel > * { position: relative; }
.dark-panel h3 { color: #fff; font-size: 1.3rem; font-weight: 800; margin-bottom: 24px; }
.dark-panel .metric { display: flex; align-items: baseline; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line-dark); }
.dark-panel .metric:last-child { border-bottom: none; }
.dark-panel .metric .val { font-family: var(--font-display); font-size: 1.9rem; font-weight: 800; color: #7fb3ef; min-width: 110px; letter-spacing: -0.02em; }
.dark-panel .metric .desc { font-size: 0.9rem; color: rgba(255, 255, 255, 0.75); }

/* ---------- Steps (approach) ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.step { background: rgba(255, 255, 255, 0.82); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px 26px; position: relative; }
.step::before {
    counter-increment: step; content: counter(step, decimal-leading-zero);
    font-family: var(--font-display); font-size: 0.82rem; font-weight: 800; letter-spacing: 0.1em;
    color: var(--accent); display: block; margin-bottom: 16px;
}
.step h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.step p { font-size: 0.88rem; color: var(--ink-soft); }

/* ---------- Values ---------- */
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value { background: rgba(255, 255, 255, 0.82); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px 28px; }
.value h3 { font-size: 1.08rem; font-weight: 700; margin: 18px 0 8px; }
.value p { font-size: 0.9rem; color: var(--ink-soft); }

/* ---------- CTA band ---------- */
.cta-band { background: var(--ink); border-radius: var(--radius-lg); padding: 64px 56px; text-align: center; color: #fff; position: relative; overflow: hidden; }
.cta-band::before {
    content: ''; position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
    width: 700px; height: 700px; border-radius: 50%;
    background: radial-gradient(circle, rgba(22, 104, 217, 0.28) 0%, transparent 62%);
}
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; font-size: clamp(1.6rem, 3.2vw, 2.2rem); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 14px; }
.cta-band p { color: rgba(255, 255, 255, 0.78); max-width: 540px; margin: 0 auto 32px; }
.cta-band .hero-actions { margin-bottom: 0; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 28px; align-items: start; }
.form-card { background: rgba(255, 255, 255, 0.82); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 40px 38px; box-shadow: var(--shadow-sm); }
.form-card h2 { font-size: 1.4rem; font-weight: 800; margin-bottom: 6px; }
.form-card > p { font-size: 0.92rem; color: var(--ink-soft); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.82rem; font-weight: 700; color: var(--ink); margin-bottom: 7px; }
.field label span { color: var(--ink-faint); font-weight: 500; }
.field input, .field select, .field textarea {
    width: 100%; padding: 13px 16px;
    border: 1.5px solid var(--line); border-radius: 10px;
    font-family: var(--font-body); font-size: 0.94rem; color: var(--ink);
    background: #f6f9fc;
    transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
    appearance: none;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus {
    outline: none; border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(22, 104, 217, 0.14);
    background: #fff;
}
.field.select { position: relative; }
.field.select::after {
    content: ''; position: absolute; right: 18px; bottom: 20px;
    width: 8px; height: 8px;
    border-right: 2px solid var(--ink-soft); border-bottom: 2px solid var(--ink-soft);
    transform: rotate(45deg); pointer-events: none;
}
.form-note { font-size: 0.8rem; color: var(--ink-faint); margin-top: 14px; }
.form-success {
    display: none; text-align: center; padding: 40px 20px;
}
.form-success.show { display: block; }
.form-success .big-check {
    width: 64px; height: 64px; border-radius: 50%; background: var(--accent-tint);
    display: flex; align-items: center; justify-content: center; margin: 0 auto 20px;
}
.form-success .big-check svg { width: 30px; height: 30px; color: var(--accent); stroke-width: 2.5; }
.form-success h3 { font-size: 1.25rem; margin-bottom: 8px; }
.form-success p { color: var(--ink-soft); font-size: 0.94rem; max-width: 400px; margin: 0 auto; }

.contact-side { display: flex; flex-direction: column; gap: 24px; }
.side-card { background: rgba(255, 255, 255, 0.82); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px 28px; box-shadow: var(--shadow-sm); }
.side-card h3 { font-size: 1.02rem; font-weight: 700; margin-bottom: 18px; }
.side-line { display: flex; gap: 13px; align-items: flex-start; padding: 11px 0; border-bottom: 1px solid var(--line); font-size: 0.92rem; color: var(--ink-soft); }
.side-line:last-child { border-bottom: none; }
.side-line strong { color: var(--ink); display: block; font-size: 0.94rem; }
.side-line .s-icon { width: 36px; height: 36px; border-radius: 10px; background: var(--accent-tint); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.side-line .s-icon svg { width: 17px; height: 17px; color: var(--accent); }
.side-card.dark { background: var(--ink); color: #fff; border-color: var(--ink); }
.side-card.dark h3 { color: #fff; }
.side-card.dark p { font-size: 0.9rem; color: rgba(255, 255, 255, 0.75); margin-bottom: 20px; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: rgba(255, 255, 255, 0.65); margin-top: 96px; }
.footer-main { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 44px; padding: 64px 0 48px; }
.footer .logo { color: #fff; margin-bottom: 16px; }
.footer .logo .logo-mark { background: rgba(255, 255, 255, 0.1); }
.footer .logo em { color: rgba(255, 255, 255, 0.55); }
.footer-brand p { font-size: 0.9rem; max-width: 300px; margin-bottom: 20px; }
.badge-row { display: flex; gap: 10px; flex-wrap: wrap; }
.badge {
    display: inline-flex; align-items: center; gap: 7px;
    font-size: 0.76rem; font-weight: 600;
    border: 1px solid var(--line-dark); border-radius: 999px;
    padding: 6px 14px; color: rgba(255, 255, 255, 0.7);
}
.badge svg { width: 12px; height: 12px; color: #7fb3ef; }
.footer h4 { color: #fff; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 0.9rem; transition: color 0.25s var(--ease); }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid var(--line-dark); padding: 22px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 0.82rem; }

/* ---------- Blog ---------- */
.tag {
    display: inline-block; background: var(--accent-tint); color: var(--accent-dark);
    font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
    padding: 4px 12px; border-radius: 999px;
}
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.post-card {
    background: rgba(255, 255, 255, 0.82); border: 1px solid var(--line); border-radius: var(--radius-lg);
    padding: 28px 26px; display: flex; flex-direction: column;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.post-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: rgba(22, 104, 217, 0.35); }
.post-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 16px; flex-wrap: wrap; }
.post-date { font-size: 0.78rem; font-weight: 600; color: var(--ink-faint); white-space: nowrap; }
.post-card h2 { font-size: 1.12rem; font-weight: 700; line-height: 1.35; margin-bottom: 10px; }
.post-card p { font-size: 0.9rem; color: var(--ink-soft); margin-bottom: 20px; flex: 1; }
.post-link { display: inline-flex; align-items: center; gap: 7px; font-size: 0.88rem; font-weight: 700; color: var(--accent); }
.post-link svg { width: 14px; height: 14px; transition: transform 0.25s var(--ease); }
.post-card:hover .post-link svg, .post-featured:hover .post-link svg { transform: translateX(3px); }
.post-featured {
    display: block; background: var(--ink); color: #fff; border-radius: var(--radius-lg);
    margin-bottom: 40px; position: relative; overflow: hidden;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.post-featured:hover { transform: translateY(-4px); box-shadow: 0 18px 50px rgba(8, 45, 79, 0.25); }
.post-featured::before {
    content: ''; position: absolute; top: -160px; right: -120px; width: 420px; height: 420px;
    border-radius: 50%; background: radial-gradient(circle, rgba(22, 104, 217, 0.35) 0%, transparent 65%);
}
.post-featured-body { position: relative; padding: 44px 44px; max-width: 720px; }
.post-featured h2 { color: #fff; font-size: clamp(1.35rem, 2.6vw, 1.8rem); font-weight: 800; letter-spacing: -0.015em; margin-bottom: 12px; line-height: 1.3; }
.post-featured p { color: rgba(255, 255, 255, 0.78); font-size: 0.98rem; margin-bottom: 22px; }
.post-featured .post-date { color: #7fb3ef; }
.post-featured .post-link { color: #7fb3ef; }

/* ---------- Article page ---------- */
.article-hero { position: relative; z-index: 0; padding: 84px 0 0; background: linear-gradient(160deg, rgba(243, 247, 252, 0.78) 0%, rgba(230, 238, 249, 0.78) 100%); }
.article-head { max-width: 780px; margin: 0 auto; text-align: center; }
.article-head h1 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); font-weight: 800; letter-spacing: -0.02em; margin: 18px 0 14px; line-height: 1.25; }
.article-meta { font-size: 0.85rem; font-weight: 600; color: var(--ink-faint); }
.article-body { max-width: 780px; margin: 0 auto; }
.article-body h2 { font-size: 1.25rem; font-weight: 800; letter-spacing: -0.01em; margin: 38px 0 14px; }
.article-body h2:first-child { margin-top: 8px; }
.article-body p { font-size: 1rem; color: var(--ink-soft); margin-bottom: 16px; line-height: 1.75; }
.article-source { font-size: 0.85rem; color: var(--ink-faint); border-top: 1px solid var(--line); padding-top: 20px; margin-top: 34px; }
.article-source a { color: var(--accent); font-weight: 600; }
.article-source a:hover { text-decoration: underline; }
.article-cta {
    max-width: 780px; margin: 44px auto 0; text-align: center;
    background: rgba(255, 255, 255, 0.82); border: 1px solid var(--line); border-radius: var(--radius-lg);
    padding: 40px 36px; box-shadow: var(--shadow-sm);
}
.article-cta h3 { font-size: 1.25rem; font-weight: 800; margin-bottom: 8px; }
.article-cta p { color: var(--ink-soft); font-size: 0.95rem; margin-bottom: 22px; }
.article-back { display: inline-block; margin-top: 20px; font-size: 0.88rem; font-weight: 600; color: var(--ink-faint); }
.article-back:hover { color: var(--accent); }
@media (max-width: 1020px) { .post-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .post-grid { grid-template-columns: 1fr; } .post-featured-body { padding: 32px 26px; } }

/* ---------- Breadcrumbs ---------- */
.crumbs { font-size: 0.82rem; color: var(--ink-faint); margin-bottom: 26px; display: block; }
.crumbs a { color: var(--accent); font-weight: 600; }
.crumbs a:hover { text-decoration: underline; }
.crumbs .sep { margin: 0 8px; color: #aeb9c4; }

/* ---------- Legal pages ---------- */
.legal { max-width: 800px; margin: 0 auto; }
.legal-intro {
    background: rgba(255, 255, 255, 0.82); border: 1px solid var(--line); border-radius: var(--radius-lg);
    padding: 30px 34px; margin-bottom: 14px; box-shadow: var(--shadow-sm);
}
.legal-intro p { color: var(--ink-soft); font-size: 0.96rem; }
.legal-intro strong { color: var(--ink); }
.legal-section { padding: 28px 4px; border-bottom: 1px solid var(--line); }
.legal-section h2 {
    font-size: 1.12rem; font-weight: 800; letter-spacing: -0.01em;
    margin-bottom: 14px; display: flex; align-items: baseline; gap: 10px;
}
.legal-section p { font-size: 0.92rem; color: var(--ink-soft); margin-bottom: 10px; }
.legal-section p:last-child { margin-bottom: 0; }
.legal-section a { color: var(--accent); font-weight: 600; }
.legal-section a:hover { text-decoration: underline; }
.legal-contact {
    margin-top: 40px; background: var(--accent-tint); border: 1px solid rgba(22, 104, 217, 0.2);
    border-radius: var(--radius-lg); padding: 28px 32px;
}
.legal-contact h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.legal-contact p { font-size: 0.92rem; color: var(--ink-soft); }
.legal-contact a { color: var(--accent); font-weight: 600; }
.legal-contact a:hover { text-decoration: underline; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
    .bundle-grid { grid-template-columns: repeat(2, 1fr); }
    .flagship { grid-template-columns: 1fr; padding: 44px 36px; gap: 36px; }
    .steps { grid-template-columns: repeat(2, 1fr); }
    .footer-main { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
    .nav {
        position: fixed; top: var(--header-h); right: -100%;
        width: min(320px, 85vw); height: calc(100vh - var(--header-h));
        background: rgba(255, 255, 255, 0.82);
        flex-direction: column; align-items: flex-start;
        padding: 32px 28px; gap: 22px;
        box-shadow: -10px 0 40px rgba(8, 45, 79, 0.1);
        transition: right 0.35s var(--ease);
    }
    .nav.open { right: 0; }
    .burger { display: flex; }
    .pillars { grid-template-columns: 1fr; }
    .split { grid-template-columns: 1fr; gap: 40px; }
    .stats .container { grid-template-columns: repeat(2, 1fr); }
    .stat:nth-child(3) { border-left: none; }
    .stat { border-top: 1px solid var(--line); }
    .stat:nth-child(-n+2) { border-top: none; }
    .values { grid-template-columns: 1fr; }
    .notes ul { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .section { padding: 68px 0; }
    .hero { padding: 76px 0 68px; }
    .bundle-grid, .bundle-grid.two { grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .cta-band { padding: 48px 28px; }
    .flagship-features { grid-template-columns: 1fr; }
    .footer-main { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { justify-content: center; text-align: center; }
}


/* ============================================================
   VIVID LAYER — richer use of the same navy/blue palette
   ============================================================ */
:root {
    --grad-navy: linear-gradient(120deg, #082d4f 0%, #0e4fa8 58%, #1668d9 100%);
    --grad-blue: linear-gradient(135deg, #1f7aec 0%, #0e4fa8 100%);
    --accent-sky: #8fc0ff;
}

/* ---------- Dark gradient heroes on every page ---------- */
.hero {
    background:
        linear-gradient(115deg, rgba(8, 45, 79, 0.96) 0%, rgba(10, 58, 110, 0.92) 45%, rgba(22, 104, 217, 0.84) 100%),
        url('datacentre-bg.jpg') center 28% / cover no-repeat;
}
.hero .eyebrow { color: var(--accent-sky); }
.hero .eyebrow::before { background: var(--accent-sky); }
.hero h1 { color: #fff; }
.hero h1 .accent { color: var(--accent-sky); }
.hero .lead { color: rgba(255, 255, 255, 0.84); }
.hero .btn-outline { color: #fff; border-color: rgba(255, 255, 255, 0.5); }
.hero .btn-outline:hover { background: #fff; color: var(--ink); border-color: #fff; }
.hero .crumbs, .article-hero .crumbs { color: rgba(255, 255, 255, 0.62); }
.hero .crumbs a, .article-hero .crumbs a { color: var(--accent-sky); }
.hero .crumbs .sep, .article-hero .crumbs .sep { color: rgba(255, 255, 255, 0.4); }

/* ---------- Article heroes share the dark treatment ---------- */
.article-hero {
    padding: 84px 0 64px;
    background:
        linear-gradient(115deg, rgba(8, 45, 79, 0.96) 0%, rgba(10, 58, 110, 0.92) 45%, rgba(22, 104, 217, 0.84) 100%),
        url('datacentre-bg.jpg') center 28% / cover no-repeat;
}
.article-head h1 { color: #fff; }
.article-meta { color: rgba(255, 255, 255, 0.66); }

/* ---------- Stats band: navy-to-blue gradient ---------- */
.stats { background: var(--grad-navy); border: none; }
.stat { border-left-color: rgba(255, 255, 255, 0.16); }
.stat .num { color: #fff; }
.stat .num sup { color: var(--accent-sky); }
.stat .lbl { color: rgba(255, 255, 255, 0.62); }

/* ---------- Richer section tints ---------- */
.section { background: linear-gradient(160deg, #e9f1fc 0%, #d8e5f9 100%); }
.section-white { background: rgba(255, 255, 255, 0.92); }

/* ---------- Gradient icon chips ---------- */
.pillar-icon, .bundle-icon {
    background: var(--grad-blue);
    box-shadow: 0 10px 24px rgba(22, 104, 217, 0.32);
}
.pillar-icon svg, .bundle-icon svg { color: #fff; }

/* ---------- Gradient buttons ---------- */
.btn-primary {
    background: var(--grad-blue);
    box-shadow: 0 8px 22px rgba(22, 104, 217, 0.35);
}
.btn-primary:hover { background: linear-gradient(135deg, #2f86ff 0%, #1668d9 100%); }
.btn-accent {
    background: linear-gradient(135deg, #2f86ff 0%, #1668d9 100%);
    box-shadow: 0 8px 22px rgba(22, 104, 217, 0.4);
}

/* ---------- Gradient panels ---------- */
.cta-band { background: var(--grad-navy); }
.dark-panel { background: linear-gradient(150deg, #0e4fa8 0%, #082d4f 72%); }
.flagship { background: var(--grad-navy); }
.post-featured { background: var(--grad-navy); }
.compare thead th { background: var(--grad-navy); }
.footer { background: linear-gradient(120deg, #072340 0%, #0a3a6e 100%); }

/* ---------- Featured bundle card: deep blue statement ---------- */
.bundle-card.featured {
    background: linear-gradient(165deg, #0e4fa8 0%, #082d4f 85%);
    border: 1.5px solid rgba(143, 192, 255, 0.55);
    box-shadow: 0 18px 54px rgba(8, 45, 79, 0.35);
}
.bundle-card.featured h3 { color: #fff; }
.bundle-card.featured .bundle-kicker { color: var(--accent-sky); }
.bundle-card.featured .bundle-sub { color: rgba(255, 255, 255, 0.78); }
.bundle-card.featured .bundle-price { border-color: rgba(255, 255, 255, 0.16); }
.bundle-card.featured .amount { color: #fff; }
.bundle-card.featured .amount sup { color: var(--accent-sky); }
.bundle-card.featured .per { color: rgba(255, 255, 255, 0.65); }
.bundle-card.featured .save { background: rgba(143, 192, 255, 0.16); color: #cfe3ff; }
.bundle-card.featured .bundle-features li { color: rgba(255, 255, 255, 0.85); }
.bundle-card.featured .bundle-features li strong { color: #fff; }
.bundle-card.featured .check { background: rgba(255, 255, 255, 0.14); }
.bundle-card.featured .check svg { color: var(--accent-sky); }
.bundle-card.featured .btn-accent { background: #fff; color: var(--ink); box-shadow: none; }
.bundle-card.featured .btn-accent:hover { background: #dceaff; }

/* ---------- Professional image frames ---------- */
.img-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(8, 45, 79, 0.28);
    border: 1px solid rgba(22, 104, 217, 0.3);
}
.img-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.img-caption {
    position: absolute; left: 0; right: 0; bottom: 0;
    padding: 44px 32px 24px;
    background: linear-gradient(180deg, transparent 0%, rgba(8, 45, 79, 0.92) 100%);
    color: #fff; display: flex; flex-direction: column; gap: 4px;
}
.img-caption strong { font-family: var(--font-display); font-size: 1.12rem; letter-spacing: -0.01em; }
.img-caption span { font-size: 0.88rem; color: rgba(255, 255, 255, 0.78); }
.split-stack { display: flex; flex-direction: column; gap: 28px; }
.split-stack .img-frame { height: 264px; flex-shrink: 0; }
.img-frame.img-wide { height: clamp(280px, 38vw, 460px); }
@media (max-width: 860px) { .split-stack .img-frame { height: 220px; } }

/* Form submit button while sending */
#contactForm button[type="submit"]:disabled { opacity: 0.65; cursor: progress; }
