/* Valley IT Services - Redesigned Theme */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;600;700&display=swap');

:root {
    --green: #3DDB82;
    --green-dim: rgba(61, 219, 130, 0.15);
    --purple: #B87FD8;
    --purple-dim: rgba(184, 127, 216, 0.15);
    --pink: #F25C8A;
    --pink-dim: rgba(242, 92, 138, 0.15);
    
    --bg-base: #08080a;
    --bg-surface: #0d0d10;
    --bg-raised: #131318;
    --bg-overlay: #1a1a21;
    --bg-hover: #222230;
    
    --border-subtle: rgba(255,255,255,0.05);
    --border-default: rgba(255,255,255,0.08);
    --border-strong: rgba(255,255,255,0.12);
    
    --text-primary: #ffffff;
    --text-secondary: #a0a0b0;
    --text-muted: #606070;
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--bg-base);
    color: var(--text-primary);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

h1 { font-size: clamp(3rem, 7vw, 5rem); }
h2 { font-size: clamp(2.25rem, 4vw, 3.25rem); }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.125rem; }

p { color: var(--text-secondary); }

a { color: inherit; text-decoration: none; }

/* Layout */
.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 32px;
}

.container--narrow {
    max-width: 900px;
}

/* ==================== */
/* HEADER / NAVBAR      */
/* ==================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.3s;
}

.site-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(8, 8, 10, 0.7);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
}

.header-inner {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 44px;
    width: auto;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.main-nav {
    display: flex;
    align-items: center;
    border-radius: 100px;
    padding: 6px;
}

.main-nav a {
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: 100px;
    transition: all 0.2s;
    white-space: nowrap;
}

.main-nav-divider {
    width: 1px;
    height: 20px;
    background: var(--border-default);
    margin: 0 8px;
    align-self: center;
}

.main-nav a:hover {
    color: var(--text-primary);
    background: var(--bg-hover);
}

.main-nav a.active {
    color: var(--text-primary);
    background: var(--bg-overlay);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: var(--green);
    color: #000 !important;
    font-size: 14px;
    font-weight: 600;
    border-radius: 100px;
    transition: all 0.2s;
    margin-left: 8px;
}

.nav-cta:hover {
    background: #2fc973;
    transform: translateY(-2px);
}

.nav-cta i {
    font-size: 14px;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: var(--bg-raised);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: 12px;
    width: 48px;
    height: 48px;
}

.mobile-toggle-bar {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-toggle.is-active .mobile-toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.is-active .mobile-toggle-bar:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.is-active .mobile-toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    background: var(--bg-surface);
    border-left: 1px solid var(--border-subtle);
    padding: 100px 24px 32px;
    z-index: 1000;
    transition: right 0.3s ease;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.mobile-menu.is-open {
    right: 0;
}

.mobile-menu-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.mobile-menu-nav a {
    display: block;
    padding: 14px 16px;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: var(--radius-md);
    transition: all 0.2s;
}

.mobile-menu-nav a:hover,
.mobile-menu-nav a.active {
    color: var(--text-primary);
    background: var(--bg-hover);
}

.mobile-menu-nav a.active {
    color: var(--green);
}

.mobile-menu-divider {
    border: none;
    border-top: 1px solid var(--border-subtle);
    margin: 12px 0;
}

.mobile-menu-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 24px;
    border-top: 1px solid var(--border-subtle);
    margin-top: auto;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.is-visible {
    opacity: 1;
    visibility: visible;
}

/* ==================== */
/* BUTTONS              */
/* ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

.btn i {
    font-size: 14px;
}

.btn--primary {
    background: var(--text-primary);
    color: var(--bg-base);
}

.btn--primary:hover {
    background: #e0e0e0;
    transform: translateY(-2px);
}

.btn--secondary {
    background: var(--bg-raised);
    color: var(--text-primary);
    border: 1px solid var(--border-default);
}

.btn--secondary:hover {
    background: var(--bg-overlay);
    border-color: var(--border-strong);
}

.btn--green { background: var(--green); color: #000; }
.btn--green:hover { background: #2fc973; }
.btn--purple { background: var(--purple); color: #000; }
.btn--pink { background: var(--pink); color: #000; }

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

.btn--full {
    width: 100%;
    justify-content: center;
}

.btn-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ==================== */
/* HOMEPAGE HERO        */
/* ==================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-gradient {
    position: absolute;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.3;
}

.hero-gradient--1 {
    top: -300px;
    left: -200px;
    background: var(--green);
}

.hero-gradient--2 {
    top: 0;
    right: -300px;
    background: var(--purple);
    opacity: 0.2;
}

.hero-gradient--3 {
    bottom: -400px;
    left: 30%;
    background: var(--pink);
    opacity: 0.15;
}

.hero-grid-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-text {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px 10px 14px;
    background: var(--bg-raised);
    border: 1px solid var(--border-default);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.hero-badge-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green-dim);
    border-radius: 50%;
    color: var(--green);
    font-size: 12px;
}

.hero h1 {
    margin-bottom: 28px;
}

.hero h1 .gradient {
    display: block;
    background: linear-gradient(135deg, var(--green) 0%, var(--purple) 50%, var(--pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text > p {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 40px;
    color: var(--text-secondary);
}

/* Hero Visual / Stats Card */
.hero-visual {
    position: relative;
}

.hero-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-xl);
    padding: 40px;
    position: relative;
}

.hero-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--radius-xl);
    padding: 1px;
    background: linear-gradient(135deg, var(--border-strong), transparent 50%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.hero-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-subtle);
}

.hero-card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green-dim);
    border-radius: var(--radius-md);
    color: var(--green);
    font-size: 20px;
}

.hero-card-header h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
}

.hero-card-header span {
    font-size: 13px;
    color: var(--text-muted);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.hero-stat {
    padding: 20px;
    background: var(--bg-raised);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
}

.hero-stat-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 4px;
}

.hero-stat:nth-child(1) .hero-stat-value { color: var(--green); }
.hero-stat:nth-child(2) .hero-stat-value { color: var(--purple); }
.hero-stat:nth-child(3) .hero-stat-value { color: var(--pink); }
.hero-stat:nth-child(4) .hero-stat-value { color: var(--green); }

.hero-stat-label {
    font-size: 13px;
    color: var(--text-muted);
}

/* Floating Elements */
.hero-float {
    position: absolute;
    background: var(--bg-raised);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-md);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    animation: float 6s ease-in-out infinite;
}

.hero-float i {
    color: var(--green);
}

.hero-float--1 {
    top: 20px;
    right: -30px;
    animation-delay: 0s;
}

.hero-float--2 {
    bottom: 60px;
    left: -40px;
    animation-delay: 2s;
}

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

/* ==================== */
/* PAGE HERO (Services) */
/* ==================== */
.page-hero {
    position: relative;
    padding: 160px 0 100px;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
}

.page-hero-gradient {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.25;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
}

.page-hero--green .page-hero-gradient { background: var(--green); }
.page-hero--purple .page-hero-gradient { background: var(--purple); }
.page-hero--pink .page-hero-gradient { background: var(--pink); }

.page-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.page-hero .back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 24px;
    transition: color 0.2s;
}

.page-hero .back-link:hover {
    color: var(--text-secondary);
}

.page-hero-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    font-size: 32px;
    margin-bottom: 28px;
}

.page-hero--green .page-hero-icon { background: var(--green-dim); color: var(--green); }
.page-hero--purple .page-hero-icon { background: var(--purple-dim); color: var(--purple); }
.page-hero--pink .page-hero-icon { background: var(--pink-dim); color: var(--pink); }

.page-hero h1 {
    margin-bottom: 20px;
}

.page-hero > .container > .page-hero-content > p {
    font-size: 1.25rem;
    max-width: 600px;
}

/* ==================== */
/* SECTIONS             */
/* ==================== */
.section {
    padding: 120px 0;
}

.section--alt {
    background: var(--bg-surface);
}

.section--bordered {
    border-top: 1px solid var(--border-subtle);
}

.section-header {
    margin-bottom: 64px;
}

.section-header--center {
    text-align: center;
}

.section-header--center p {
    margin-left: auto;
    margin-right: auto;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--green);
    margin-bottom: 16px;
}

.section-label i {
    font-size: 12px;
}

.section-header h2 {
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.125rem;
    max-width: 560px;
}

/* ==================== */
/* BROADBAND CHECKER    */
/* ==================== */
.section-broadband {
    padding: 0;
    background: var(--bg-surface);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.broadband-checker {
    padding: 48px 0;
}

.broadband-checker-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}

.broadband-checker-text h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.broadband-checker-text p {
    color: var(--text-muted);
    font-size: 15px;
}

.broadband-checker-form {
    display: flex;
    gap: 12px;
    flex: 1;
    max-width: 600px;
}

.broadband-input-wrap {
    flex: 1;
    position: relative;
}

.broadband-input-wrap i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 16px;
}

.broadband-input {
    width: 100%;
    padding: 20px 20px 20px 52px;
    background: var(--bg-raised);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    font-size: 16px;
    color: var(--text-primary);
    transition: all 0.2s;
}

.broadband-input::placeholder {
    color: var(--text-muted);
}

.broadband-input:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 3px var(--green-dim);
}

.broadband-btn {
    padding: 20px 32px;
    white-space: nowrap;
    background: var(--green);
    color: #fff;
    border: none;
    font-size: 15px;
    font-weight: 600;
}

.broadband-btn:hover {
    background: #2bb06b;
}

/* ==================== */
/* SERVICES SECTION     */
/* ==================== */
.section-services {
    padding: 120px 0;
    border-top: 1px solid var(--border-subtle);
}

.services-intro {
    text-align: center;
    margin-bottom: 64px;
}

.services-intro h2 {
    margin-bottom: 12px;
}

.services-intro p {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

.service-showcase {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.service-panel {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    flex: 1 1 calc(20% - 16px);
    min-width: 220px;
    max-width: 280px;
}

.service-panel:hover {
    transform: translateY(-8px);
}

.service-panel-bg {
    position: absolute;
    inset: 0;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    transition: all 0.4s;
}

.service-panel:hover .service-panel-bg {
    border-color: var(--border-default);
}

.service-panel--green .service-panel-bg {
    background: linear-gradient(180deg, rgba(61, 219, 130, 0.08) 0%, var(--bg-surface) 50%);
}

.service-panel--purple .service-panel-bg {
    background: linear-gradient(180deg, rgba(184, 127, 216, 0.08) 0%, var(--bg-surface) 50%);
}

.service-panel--pink .service-panel-bg {
    background: linear-gradient(180deg, rgba(242, 92, 138, 0.08) 0%, var(--bg-surface) 50%);
}

.service-panel-glow {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.service-panel--green .service-panel-glow { background: var(--green); }
.service-panel--purple .service-panel-glow { background: var(--purple); }
.service-panel--pink .service-panel-glow { background: var(--pink); }

.service-panel:hover .service-panel-glow {
    opacity: 0.3;
}

.service-panel-content {
    position: relative;
    z-index: 1;
    padding: 32px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-panel-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.service-panel-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    font-size: 28px;
    margin-bottom: 32px;
    transition: transform 0.3s;
}

.service-panel:hover .service-panel-icon {
    transform: scale(1.1);
}

.service-panel--green .service-panel-icon {
    background: var(--green-dim);
    color: var(--green);
}

.service-panel--purple .service-panel-icon {
    background: var(--purple-dim);
    color: var(--purple);
}

.service-panel--pink .service-panel-icon {
    background: var(--pink-dim);
    color: var(--pink);
}

.service-panel h3 {
    font-size: 1.375rem;
    margin-bottom: 12px;
    line-height: 1.3;
}

.service-panel p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    flex: 1;
}

.service-panel-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    margin-top: 24px;
    transition: gap 0.3s;
}

.service-panel--green .service-panel-link { color: var(--green); }
.service-panel--purple .service-panel-link { color: var(--purple); }
.service-panel--pink .service-panel-link { color: var(--pink); }

.service-panel:hover .service-panel-link {
    gap: 14px;
}

/* ==================== */
/* CLIENTS SECTION      */
/* ==================== */
.section-clients {
    padding: 80px 0;
    background: var(--bg-surface);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.clients-header {
    text-align: center;
    margin-bottom: 48px;
}

.clients-header span {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.clients-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: nowrap;
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
    filter: grayscale(100%) brightness(0.7);
    opacity: 0.6;
    transition: all 0.3s;
}

.client-logo:hover {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
}

.client-logo--invert {
    filter: grayscale(100%) brightness(0.7) invert(1);
}

.client-logo--invert:hover {
    filter: grayscale(0%) brightness(1) invert(1);
}

.client-logo img {
    max-height: 100%;
    max-width: 140px;
    width: auto;
    object-fit: contain;
}

/* ==================== */
/* CTA CARD SECTION     */
/* ==================== */
.section-cta {
    padding: 60px 0 120px;
}

.cta-card {
    position: relative;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: 80px 60px;
    text-align: center;
    overflow: hidden;
}

.cta-card-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.cta-card .cta-gradient {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
}

.cta-card .cta-gradient--1 {
    top: -200px;
    left: -100px;
    background: var(--green);
}

.cta-card .cta-gradient--2 {
    bottom: -200px;
    right: -100px;
    background: var(--purple);
}

.cta-card-content {
    position: relative;
    z-index: 1;
}

.cta-card .cta-dots {
    margin-bottom: 32px;
}

.cta-card h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.cta-card > .cta-card-content > p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto 40px;
}

.cta-card .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.cta-location {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-muted);
}

.cta-location i {
    color: var(--pink);
}

/* ==================== */
/* FEATURE CARDS        */
/* ==================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 32px;
    transition: all 0.2s;
}

.feature-card:hover {
    border-color: var(--border-default);
}

.feature-card-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-raised);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-sm);
    font-size: 20px;
    margin-bottom: 20px;
}

.feature-card--green .feature-card-icon { color: var(--green); }
.feature-card--purple .feature-card-icon { color: var(--purple); }
.feature-card--pink .feature-card-icon { color: var(--pink); }

.feature-card h4 {
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-muted);
}

/* ==================== */
/* PROCESS / STEPS      */
/* ==================== */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.process-card {
    position: relative;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 32px;
    text-align: center;
}

.process-card::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -12px;
    width: 24px;
    height: 2px;
    background: var(--border-default);
}

.process-card:last-child::after {
    display: none;
}

.process-number {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green-dim);
    border-radius: 50%;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--green);
    margin: 0 auto 20px;
}

.process-card h4 {
    margin-bottom: 8px;
}

.process-card p {
    font-size: 14px;
    color: var(--text-muted);
}

/* ==================== */
/* CLIENTS              */
/* ==================== */
.clients-section {
    padding: 100px 0;
    background: var(--bg-surface);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.client-card {
    background: var(--bg-raised);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 28px 20px;
    text-align: center;
    transition: all 0.2s;
}

.client-card:hover {
    border-color: var(--border-default);
    transform: translateY(-2px);
}

.client-card h4 {
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    margin-bottom: 6px;
}

.client-card span {
    font-size: 12px;
    color: var(--text-muted);
}

/* ==================== */
/* CASE STUDIES PAGE    */
/* ==================== */
.cases-hero {
    padding: 160px 0 80px;
    background: var(--bg-base);
    text-align: center;
}

.cases-hero-content {
    max-width: 600px;
    margin: 0 auto;
}

.cases-hero-tag {
    display: inline-block;
    padding: 8px 16px;
    background: var(--purple-dim);
    color: var(--purple);
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 24px;
}

.cases-hero h1 {
    font-size: 3rem;
    margin-bottom: 16px;
}

.cases-hero p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Case Study */
.case-study {
    padding: 80px 0;
}

.case-study-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 48px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border-subtle);
}

.case-study-client {
    display: flex;
    align-items: center;
    gap: 24px;
}

.case-study-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    background: var(--bg-surface);
    border-radius: var(--radius-md);
    padding: 12px;
}

.case-study-client h2 {
    font-size: 2rem;
    margin-bottom: 4px;
}

.case-study-type {
    font-size: 16px;
    color: var(--text-muted);
}

.case-study-tags {
    display: flex;
    gap: 8px;
}

.case-tag {
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 500;
    border-radius: var(--radius-full);
}

.case-tag--purple {
    background: var(--purple-dim);
    color: var(--purple);
}

.case-tag--green {
    background: var(--green-dim);
    color: var(--green);
}

.case-tag--pink {
    background: var(--pink-dim);
    color: var(--pink);
}

.case-study-content {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 64px;
}

.case-study-main {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.case-study-section h3 {
    font-size: 1.25rem;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.case-study-section p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.case-study-section p:last-child {
    margin-bottom: 0;
}

.case-study-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 24px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.case-study-list li {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
    padding-left: 24px;
    position: relative;
}

.case-study-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
}

.case-study-list li strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Case Study Sidebar */
.case-study-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.case-study-stats {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.case-stat {
    text-align: center;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-subtle);
}

.case-stat:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.case-stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--green);
    margin-bottom: 4px;
}

.case-stat-label {
    font-size: 14px;
    color: var(--text-muted);
}

.case-study-services {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 32px;
}

.case-study-services h4 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.case-study-services ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.case-study-services li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text-secondary);
}

.case-study-services li i {
    color: var(--green);
    font-size: 14px;
}

/* Case Study Locations */
.case-study-locations {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 32px;
}

.case-study-locations h4 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.case-location-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.case-location-tags span {
    padding: 8px 16px;
    background: var(--bg-raised);
    border-radius: var(--radius-sm);
    font-size: 13px;
    color: var(--text-secondary);
}

/* Full-width locations */
.case-study-locations--full {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--border-subtle);
}

.case-study-locations--full .case-location-tags {
    justify-content: flex-start;
}

/* Dual company layout */
.case-study-dual {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 20px;
}

.case-study-dual-item {
    padding: 24px;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
}

.case-study-dual-item h4 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--green);
}

.case-study-dual-item p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.case-study-logo--light-bg {
    background: #fff;
    padding: 6px;
}

.case-study-logos {
    display: flex;
    align-items: center;
    gap: 12px;
}

.case-study-logos .case-study-logo {
    width: 64px;
    height: 64px;
}

.case-study-logos-divider {
    font-size: 24px;
    font-weight: 300;
    color: var(--text-muted);
}

/* Case Divider */
.case-divider {
    padding: 0;
}

.case-divider hr {
    border: none;
    border-top: 1px solid var(--border-subtle);
    margin: 0;
}

/* Cases CTA */
.cases-cta {
    padding: 100px 0;
    background: var(--bg-surface);
    text-align: center;
}

.cases-cta-content {
    max-width: 500px;
    margin: 0 auto;
}

.cases-cta h2 {
    font-size: 2.25rem;
    margin-bottom: 12px;
}

.cases-cta-content > p {
    font-size: 17px;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.cases-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* Case Studies Responsive */
@media (max-width: 1024px) {
    .case-study-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .case-study-sidebar {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .case-study-stats,
    .case-study-services {
        flex: 1;
        min-width: 200px;
    }
    
    .case-study-stats {
        flex-direction: row;
        gap: 0;
    }
    
    .case-stat {
        flex: 1;
        padding: 0 24px;
        border-bottom: none;
        border-right: 1px solid var(--border-subtle);
    }
    
    .case-stat:last-child {
        border-right: none;
    }
}

@media (max-width: 768px) {
    .cases-hero {
        padding: 120px 0 60px;
    }
    
    .cases-hero h1 {
        font-size: 2.25rem;
    }
    
    .case-study-header {
        flex-direction: column;
        gap: 20px;
    }
    
    .case-study-client {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .case-study-sidebar {
        flex-direction: column;
    }
    
    .case-study-stats {
        flex-direction: column;
        gap: 24px;
    }
    
    .case-stat {
        padding: 0 0 24px 0;
        border-right: none;
        border-bottom: 1px solid var(--border-subtle);
    }
    
    .cases-cta-buttons {
        flex-direction: column;
    }
    
    .case-study-logos {
        flex-wrap: wrap;
    }
    
    .case-study-logos .case-study-logo {
        width: 56px;
        height: 56px;
    }
}

/* ==================== */
/* CONTACT PAGE         */
/* ==================== */
.contact-hero {
    padding: 160px 0 80px;
    background: var(--bg-base);
    text-align: center;
}

.contact-hero-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 16px;
}

.contact-hero p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Contact Methods */
.contact-methods {
    padding: 0 0 80px;
    background: var(--bg-base);
    margin-top: -20px;
}

.contact-methods-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 32px;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

a.contact-method:hover {
    border-color: var(--green);
    transform: translateY(-2px);
}

.contact-method--location {
    cursor: default;
}

.contact-method-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green-dim);
    color: var(--green);
    border-radius: var(--radius-md);
    font-size: 22px;
    flex-shrink: 0;
}

.contact-method-content h3 {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.contact-method-value {
    display: block;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.contact-method-content p {
    font-size: 14px;
    color: var(--text-muted);
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 64px;
    align-items: start;
}

/* Contact Form */
.contact-form-wrap h2 {
    font-size: 1.75rem;
    margin-bottom: 8px;
}

.contact-form-wrap > p {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.contact-form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-form-field label {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
}

.contact-form-field input,
.contact-form-field select,
.contact-form-field textarea {
    padding: 14px 16px;
    background: var(--bg-surface);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-md);
    font-size: 16px;
    color: var(--text-primary);
    font-family: inherit;
    transition: border-color 0.2s ease;
}

.contact-form-field input:focus,
.contact-form-field select:focus,
.contact-form-field textarea:focus {
    outline: none;
    border-color: var(--green);
}

.contact-form-field textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form-field select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23888' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
}

/* Contact Sidebar */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-sidebar-card {
    padding: 32px;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
}

.contact-sidebar-card h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.contact-sidebar-card > p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

.contact-areas {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.contact-areas span {
    padding: 6px 12px;
    background: var(--bg-raised);
    border-radius: var(--radius-sm);
    font-size: 13px;
    color: var(--text-secondary);
}

.contact-areas-note {
    font-size: 13px;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 0;
}

.contact-sidebar-card--highlight {
    background: var(--bg-raised);
    border-color: var(--green);
    text-align: center;
}

.contact-sidebar-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green-dim);
    color: var(--green);
    border-radius: var(--radius-full);
    font-size: 24px;
    margin: 0 auto 16px;
}

.contact-sidebar-card--highlight p {
    margin-bottom: 20px;
}

/* Contact Services */
.contact-services {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.contact-service {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 32px 40px;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: var(--text-secondary);
    transition: all 0.2s ease;
}

.contact-service:hover {
    border-color: var(--green);
    color: var(--text-primary);
    transform: translateY(-2px);
}

.contact-service i {
    font-size: 28px;
    color: var(--green);
}

.contact-service span {
    font-size: 15px;
    font-weight: 500;
}

/* Contact Responsive */
@media (max-width: 1024px) {
    .contact-methods-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .contact-sidebar {
        order: -1;
    }
    
    .contact-services {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 120px 0 60px;
    }
    
    .contact-hero h1 {
        font-size: 2.25rem;
    }
    
    .contact-form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-services {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-service {
        padding: 24px;
    }
}

/* ==================== */
/* BROADBAND PAGE       */
/* ==================== */
.broadband-hero {
    padding: 160px 0 100px;
    background: var(--bg-base);
}

.broadband-hero .container {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 80px;
    align-items: center;
}

.broadband-hero-tag {
    display: inline-block;
    padding: 8px 16px;
    background: var(--green-dim);
    color: var(--green);
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 24px;
}

.broadband-hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.broadband-hero h1 span {
    color: var(--green);
}

.broadband-hero-content > p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 32px;
}

.broadband-hero-checker {
    display: flex;
    gap: 12px;
}

.broadband-input-wrap--hero {
    flex: 1;
}

.broadband-input-wrap--hero .broadband-input {
    width: 100%;
}

.broadband-hero-speeds {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.broadband-speed-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    text-align: center;
}

.broadband-speed-card--alt {
    background: var(--bg-raised);
}

.broadband-speed-label {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.broadband-speed-value {
    font-size: 4rem;
    font-weight: 800;
    color: var(--green);
    line-height: 1;
}

.broadband-speed-value span {
    font-size: 1.5rem;
    font-weight: 600;
}

.broadband-speed-type {
    display: block;
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 8px;
}

/* Message Section */
.broadband-message {
    padding: 80px 0;
    background: var(--bg-raised);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.broadband-message-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.broadband-message h2 {
    font-size: 2.25rem;
    margin-bottom: 20px;
    color: var(--green);
}

.broadband-message p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: var(--text-secondary);
}

.broadband-message p:last-child {
    margin-bottom: 0;
}

.broadband-message strong {
    font-weight: 600;
    color: var(--text-primary);
}

/* Journey Section */
.broadband-journey {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.broadband-journey-item {
    position: relative;
    text-align: center;
    padding-top: 20px;
}

.broadband-journey-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green);
    color: #000;
    border-radius: var(--radius-full);
    font-size: 24px;
    margin: 0 auto 24px;
    position: relative;
    z-index: 1;
}

.broadband-journey-line {
    position: absolute;
    top: 52px;
    left: calc(50% + 40px);
    width: calc(100% - 48px);
    height: 2px;
    background: var(--border-subtle);
}

.broadband-journey-item:last-child .broadband-journey-line {
    display: none;
}

.broadband-journey-item h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.broadband-journey-item p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Options */
.broadband-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.broadband-option {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: 40px;
}

.broadband-option--business {
    background: var(--bg-raised);
}

.broadband-option-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.broadband-option-header i {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green-dim);
    color: var(--green);
    border-radius: var(--radius-md);
    font-size: 20px;
}

.broadband-option-header h3 {
    font-size: 1.5rem;
}

.broadband-option > p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
}

.broadband-option-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.broadband-option-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text-secondary);
}

.broadband-option-list li i {
    color: var(--green);
    font-size: 14px;
}

/* Extras */
.broadband-extras {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.broadband-extra {
    text-align: center;
    padding: 32px 24px;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
}

.broadband-extra i {
    font-size: 28px;
    color: var(--green);
    margin-bottom: 16px;
}

.broadband-extra h4 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.broadband-extra p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Broadband CTA */
.broadband-cta {
    padding: 100px 0;
    background: var(--bg-base);
}

.broadband-cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    padding: 56px 64px;
    background: var(--bg-surface);
    border: 2px solid var(--green);
    border-radius: var(--radius-xl);
}

.broadband-cta h2 {
    font-size: 1.75rem;
    margin-bottom: 8px;
}

.broadband-cta-content > p {
    font-size: 16px;
    color: var(--text-muted);
}

.broadband-cta-actions {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

/* Broadband Responsive */
@media (max-width: 1024px) {
    .broadband-hero .container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .broadband-hero-speeds {
        flex-direction: row;
    }
    
    .broadband-speed-card {
        flex: 1;
    }
    
    .broadband-journey {
        grid-template-columns: repeat(2, 1fr);
        gap: 48px;
    }
    
    .broadband-journey-line {
        display: none;
    }
    
    .broadband-options {
        grid-template-columns: 1fr;
    }
    
    .broadband-extras {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .broadband-cta-box {
        flex-direction: column;
        text-align: center;
        padding: 48px;
    }
}

@media (max-width: 768px) {
    .broadband-hero {
        padding: 120px 0 60px;
    }
    
    .broadband-hero h1 {
        font-size: 2.5rem;
    }
    
    .broadband-hero-checker {
        flex-direction: column;
    }
    
    .broadband-hero-speeds {
        flex-direction: column;
    }
    
    .broadband-speed-value {
        font-size: 3rem;
    }
    
    .broadband-journey {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .broadband-extras {
        grid-template-columns: 1fr;
    }
    
    .broadband-cta-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .broadband-cta-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ==================== */
/* ALARM PAGE           */
/* ==================== */
.alarm-hero {
    padding: 160px 0 100px;
    background: var(--bg-base);
}

.alarm-hero-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 80px;
    align-items: center;
}

.alarm-hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.alarm-hero-content > p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 32px;
}

.alarm-hero-cta {
    display: flex;
    align-items: center;
    gap: 20px;
}

.alarm-hero-note {
    font-size: 14px;
    color: var(--text-muted);
}

.alarm-brand-card {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 48px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.alarm-brand-logo {
    max-width: 280px;
    height: auto;
}

.alarm-brand-label {
    display: block;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.8;
    margin-bottom: 12px;
}

.alarm-brand-name {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.alarm-brand-tagline {
    font-size: 15px;
    opacity: 0.9;
}

/* Wireless Section */
.alarm-wireless {
    padding: 100px 0;
    background: var(--bg-surface);
}

.alarm-wireless-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.alarm-wireless-header h2 {
    font-size: 2.25rem;
    margin-bottom: 16px;
}

.alarm-wireless-header p {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.alarm-wireless-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.alarm-wireless-item {
    text-align: center;
}

.alarm-wireless-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--purple-dim);
    color: var(--purple);
    border-radius: var(--radius-lg);
    font-size: 24px;
    margin: 0 auto 20px;
}

.alarm-wireless-item h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.alarm-wireless-item p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* App Section */
.alarm-app {
    padding: 100px 0;
    background: var(--bg-base);
}

.alarm-app-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.alarm-app-visual {
    display: flex;
    justify-content: center;
}

.alarm-app-phone {
    width: 280px;
    height: 500px;
    background: var(--bg-raised);
    border: 3px solid var(--border-default);
    border-radius: 40px;
    padding: 16px;
    position: relative;
}

.alarm-app-phone::before {
    content: '';
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 24px;
    background: var(--bg-base);
    border-radius: 20px;
}

.alarm-app-screen {
    background: var(--bg-surface);
    border-radius: 28px;
    height: 100%;
    padding: 60px 20px 20px;
}

.alarm-app-status {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 32px;
    background: var(--green-dim);
    border-radius: var(--radius-lg);
    margin-bottom: 24px;
}

.alarm-app-status i {
    font-size: 48px;
    color: var(--green);
}

.alarm-app-status span {
    font-size: 18px;
    font-weight: 600;
    color: var(--green);
}

.alarm-app-sensors {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.alarm-app-sensor {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--bg-raised);
    border-radius: var(--radius-md);
    font-size: 14px;
    color: var(--text-secondary);
}

.alarm-app-sensor i {
    color: var(--purple);
}

.alarm-app-content h2 {
    font-size: 2.25rem;
    margin-bottom: 16px;
}

.alarm-app-content > p {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
}

.alarm-app-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.alarm-app-features li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.alarm-app-features li i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--purple-dim);
    color: var(--purple);
    border-radius: var(--radius-md);
    font-size: 16px;
    flex-shrink: 0;
}

.alarm-app-features li span {
    font-size: 16px;
    color: var(--text-secondary);
    padding-top: 8px;
}

/* Components */
.alarm-components {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
}

.alarm-component {
    text-align: center;
    padding: 32px 16px;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
}

.alarm-component-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--purple-dim);
    color: var(--purple);
    border-radius: var(--radius-md);
    font-size: 22px;
    margin: 0 auto 16px;
}

.alarm-component h4 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.alarm-component p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Why AJAX */
.alarm-why {
    padding: 100px 0;
    background: var(--bg-base);
}

.alarm-why-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: 60px;
}

.alarm-why-header {
    text-align: center;
    max-width: 500px;
    margin: 0 auto 48px;
}

.alarm-why-header h2 {
    font-size: 2rem;
    margin-bottom: 12px;
}

.alarm-why-header p {
    font-size: 16px;
    color: var(--text-muted);
}

.alarm-why-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.alarm-why-point {
    display: flex;
    gap: 20px;
}

.alarm-why-point > i {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--purple-dim);
    color: var(--purple);
    border-radius: var(--radius-md);
    font-size: 20px;
    flex-shrink: 0;
}

.alarm-why-point h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.alarm-why-point p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Monitoring */
.alarm-monitoring {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 48px;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
}

.alarm-monitoring-label {
    display: inline-block;
    padding: 6px 14px;
    background: var(--purple-dim);
    color: var(--purple);
    font-size: 13px;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 20px;
}

.alarm-monitoring h2 {
    font-size: 1.75rem;
    margin-bottom: 16px;
}

.alarm-monitoring-content > p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.alarm-monitoring-note {
    font-size: 14px;
    color: var(--text-muted);
    font-style: italic;
}

/* Alarm CTA */
.alarm-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--purple) 0%, #9B5FC0 100%);
    text-align: center;
}

.alarm-cta-content {
    max-width: 500px;
    margin: 0 auto;
}

.alarm-cta h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 12px;
}

.alarm-cta-content > p {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 32px;
}

.alarm-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.alarm-cta .btn--primary {
    background: #fff;
    color: var(--purple);
}

.alarm-cta .btn--primary:hover {
    background: rgba(255,255,255,0.9);
}

.alarm-cta .btn--secondary {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.3);
    color: #fff;
}

.alarm-cta .btn--secondary:hover {
    background: rgba(255,255,255,0.25);
}

/* Alarm Responsive */
@media (max-width: 1200px) {
    .alarm-components {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .alarm-hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .alarm-brand-card {
        max-width: 400px;
    }
    
    .alarm-wireless-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .alarm-app-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .alarm-app-visual {
        order: -1;
    }
    
    .alarm-why-points {
        grid-template-columns: 1fr;
    }
    
    .alarm-why-card {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .alarm-hero {
        padding: 120px 0 60px;
    }
    
    .alarm-hero h1 {
        font-size: 2.5rem;
    }
    
    .alarm-hero-cta {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .alarm-brand-name {
        font-size: 3rem;
    }
    
    .alarm-wireless-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .alarm-app-phone {
        width: 240px;
        height: 420px;
    }
    
    .alarm-components {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .alarm-cta-buttons {
        flex-direction: column;
    }
}

/* ==================== */
/* CCTV PAGE            */
/* ==================== */
.cctv-hero {
    padding: 160px 0 80px;
    background: var(--bg-base);
    text-align: center;
}

.cctv-hero-content {
    max-width: 700px;
    margin: 0 auto 60px;
}

.cctv-hero-label {
    display: inline-block;
    padding: 8px 20px;
    background: var(--green-dim);
    color: var(--green);
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 24px;
}

.cctv-hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.cctv-hero-content > p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
}

.cctv-hero-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.cctv-hero-features {
    display: flex;
    justify-content: center;
    gap: 48px;
    padding-top: 48px;
    border-top: 1px solid var(--border-subtle);
}

.cctv-hero-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 15px;
}

.cctv-hero-feature i {
    color: var(--green);
    font-size: 18px;
}

/* Split Panels */
.cctv-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.cctv-split-panel {
    padding: 80px 60px;
}

.cctv-split-panel--home {
    background: var(--bg-surface);
}

.cctv-split-panel--business {
    background: var(--bg-raised);
}

.cctv-split-content {
    max-width: 440px;
    margin-left: auto;
}

.cctv-split-panel--business .cctv-split-content {
    margin-left: 0;
    margin-right: auto;
}

.cctv-split-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green-dim);
    color: var(--green);
    border-radius: var(--radius-md);
    font-size: 24px;
    margin-bottom: 24px;
}

.cctv-split h2 {
    font-size: 1.75rem;
    margin-bottom: 16px;
}

.cctv-split-panel > .cctv-split-content > p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.cctv-split-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cctv-split-list li {
    position: relative;
    padding-left: 24px;
    color: var(--text-secondary);
    font-size: 15px;
}

.cctv-split-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
}

/* Includes Grid */
.cctv-includes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.cctv-includes-item {
    padding: 32px;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
}

.cctv-includes-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--green);
    opacity: 0.4;
    margin-bottom: 16px;
}

.cctv-includes-item h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.cctv-includes-item p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Trust Strip */
.cctv-trust {
    padding: 48px 0;
    background: var(--green);
}

.cctv-trust-grid {
    display: flex;
    justify-content: center;
    gap: 64px;
}

.cctv-trust-item {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #000;
}

.cctv-trust-item i {
    font-size: 28px;
    opacity: 0.7;
}

.cctv-trust-item strong {
    display: block;
    font-size: 16px;
    font-weight: 600;
}

.cctv-trust-item span {
    font-size: 14px;
    opacity: 0.8;
}

/* FAQ Grid */
.cctv-faq-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: start;
}

.cctv-faq-header h2 {
    font-size: 2rem;
    margin-bottom: 12px;
}

.cctv-faq-header p {
    font-size: 16px;
    color: var(--text-muted);
}

.cctv-faq-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.cctv-faq-item {
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border-subtle);
}

.cctv-faq-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.cctv-faq-item h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.cctv-faq-item p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* CCTV CTA */
.cctv-cta {
    padding: 100px 0;
    background: var(--bg-base);
    text-align: center;
}

.cctv-cta-content {
    max-width: 500px;
    margin: 0 auto;
}

.cctv-cta h2 {
    font-size: 2.25rem;
    margin-bottom: 12px;
}

.cctv-cta-content > p {
    font-size: 17px;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.cctv-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* CCTV Responsive */
@media (max-width: 1024px) {
    .cctv-hero-features {
        flex-wrap: wrap;
        gap: 24px 40px;
    }
    
    .cctv-split {
        grid-template-columns: 1fr;
    }
    
    .cctv-split-panel {
        padding: 60px 40px;
    }
    
    .cctv-split-content {
        max-width: 100%;
        margin: 0;
    }
    
    .cctv-includes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cctv-trust-grid {
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }
    
    .cctv-faq-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .cctv-hero {
        padding: 120px 0 60px;
    }
    
    .cctv-hero h1 {
        font-size: 2.25rem;
    }
    
    .cctv-hero-buttons {
        flex-direction: column;
    }
    
    .cctv-hero-features {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    
    .cctv-split-panel {
        padding: 48px 24px;
    }
    
    .cctv-includes-grid {
        grid-template-columns: 1fr;
    }
    
    .cctv-cta-buttons {
        flex-direction: column;
    }
}

/* ==================== */
/* SERVICE HERO         */
/* ==================== */
.service-hero {
    padding: 140px 0 100px;
    background: var(--bg-base);
}

.service-hero-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 60px;
    align-items: start;
}

.service-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--pink-dim);
    color: var(--pink);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.service-hero-content h1 {
    font-size: 3rem;
    line-height: 1.15;
    margin-bottom: 20px;
}

.service-hero-intro {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 540px;
}

.service-hero-actions {
    display: flex;
    gap: 16px;
}

.service-hero-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: 32px;
}

.service-hero-card-header {
    margin-bottom: 16px;
}

.service-hero-card-header span {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.service-hero-card-price {
    display: flex;
    align-items: baseline;
    margin-bottom: 8px;
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
}

.price-period {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-left: 4px;
}

.price-label {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.service-hero-card-detail {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-subtle);
}

.service-hero-card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-hero-card-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text-secondary);
}

.service-hero-card-features li i {
    color: var(--green);
    font-size: 14px;
}

.service-hero-badge--purple {
    background: var(--purple-dim);
    color: var(--purple);
}

.service-hero-badge--green {
    background: var(--green-dim);
    color: var(--green);
}

.service-hero-card-partner {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-subtle);
}

.partner-badge {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--purple-dim);
    color: var(--purple);
    border-radius: var(--radius-md);
    font-size: 20px;
    flex-shrink: 0;
}

.partner-badge--green {
    background: var(--green-dim);
    color: var(--green);
}

.partner-logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
    flex-shrink: 0;
}

.service-hero-card-partner p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ==================== */
/* PRODUCT CARDS        */
/* ==================== */
.product-category {
    margin-bottom: 48px;
}

.product-category:last-child {
    margin-bottom: 0;
}

.product-category-title {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-subtle);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.product-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.2s;
}

.product-card:hover {
    border-color: var(--border-default);
    transform: translateY(-2px);
}

.product-card-image {
    height: 180px;
    background: var(--bg-raised);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.product-card-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-card-content {
    padding: 24px;
}

.product-card-badge {
    display: inline-block;
    padding: 4px 10px;
    background: var(--purple-dim);
    color: var(--purple);
    font-size: 12px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
}

.product-card-badge--new {
    background: var(--green-dim);
    color: var(--green);
}

.product-card-badge--green {
    background: var(--green-dim);
    color: var(--green);
}

.product-card-content h4 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.product-card-content > p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 16px;
}

.product-card-spec {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-secondary);
    padding-top: 16px;
    border-top: 1px solid var(--border-subtle);
}

.product-card-spec i {
    color: var(--purple);
}

.visual-card-icon--purple {
    background: var(--purple-dim);
    color: var(--purple);
}

.visual-card-icon--green {
    background: var(--green-dim);
    color: var(--green);
}

.step-number--purple {
    background: var(--purple);
}

.step-number--green {
    background: var(--green);
}

/* ==================== */
/* ISSUES GRID          */
/* ==================== */
.issues-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.issue-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all 0.2s;
}

.issue-card:hover {
    border-color: var(--border-default);
    transform: translateY(-2px);
}

.issue-card-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    font-size: 22px;
    margin-bottom: 20px;
}

.issue-card-icon--pink {
    background: var(--pink-dim);
    color: var(--pink);
}

.issue-card-icon--green {
    background: var(--green-dim);
    color: var(--green);
}

.issue-card-icon--purple {
    background: var(--purple-dim);
    color: var(--purple);
}

.issue-card h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.issue-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ==================== */
/* SPLIT CONTENT        */
/* ==================== */
.split-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.split-content-text h2 {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.split-content-text > p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 28px;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: var(--text-secondary);
}

.check-list li i {
    color: var(--green);
    font-size: 14px;
}

.visual-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: 40px;
    text-align: center;
}

.visual-card-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--purple-dim);
    color: var(--purple);
    border-radius: var(--radius-lg);
    font-size: 28px;
    margin: 0 auto 24px;
}

.visual-card h4 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.visual-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ==================== */
/* PRICING CARDS        */
/* ==================== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: 40px;
}

.pricing-card--alt {
    background: var(--bg-raised);
}

.pricing-card-header {
    margin-bottom: 24px;
}

.pricing-card-header h3 {
    font-size: 1.5rem;
    margin-bottom: 4px;
}

.pricing-card-header p {
    font-size: 15px;
    color: var(--text-muted);
}

.pricing-card-price {
    display: flex;
    align-items: baseline;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border-subtle);
}

.pricing-card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pricing-card-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: var(--text-secondary);
}

.pricing-card-features li i {
    color: var(--green);
    font-size: 14px;
    margin-top: 3px;
}

/* ==================== */
/* AREAS GRID           */
/* ==================== */
.areas-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
}

.area-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-full);
    font-size: 15px;
    color: var(--text-secondary);
}

.area-tag i {
    color: var(--green);
    font-size: 12px;
}

.areas-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 24px;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    max-width: 600px;
    margin: 0 auto;
}

.areas-note i {
    color: var(--text-muted);
    font-size: 18px;
}

.areas-note p {
    font-size: 15px;
    color: var(--text-muted);
}

/* ==================== */
/* STEPS GRID           */
/* ==================== */
.steps-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.step-card {
    flex: 1;
    max-width: 280px;
    text-align: center;
    padding: 0 24px;
}

.step-number {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green);
    color: #fff;
    border-radius: var(--radius-full);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-card h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.step-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}

.step-connector {
    width: 60px;
    height: 2px;
    background: var(--border-subtle);
    margin-top: 28px;
    flex-shrink: 0;
}

/* ==================== */
/* CTA BOX              */
/* ==================== */
.section-cta {
    padding: 100px 0;
    background: var(--bg-base);
}

.cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 48px 56px;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
}

.cta-box-content h2 {
    font-size: 1.75rem;
    margin-bottom: 8px;
}

.cta-box-content p {
    font-size: 16px;
    color: var(--text-muted);
}

.cta-box-actions {
    display: flex;
    gap: 16px;
}

/* ==================== */
/* SERVICE LIST         */
/* ==================== */
.service-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.service-list-item {
    display: flex;
    gap: 24px;
    padding: 28px 32px;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    transition: all 0.2s;
}

.service-list-item:hover {
    border-color: var(--border-default);
    transform: translateX(4px);
}

.service-list-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    font-size: 22px;
    flex-shrink: 0;
}

.service-list-icon--green {
    background: var(--green-dim);
    color: var(--green);
}

.service-list-icon--purple {
    background: var(--purple-dim);
    color: var(--purple);
}

.service-list-icon--pink {
    background: var(--pink-dim);
    color: var(--pink);
}

.service-list-content h4 {
    font-size: 1.125rem;
    margin-bottom: 6px;
}

.service-list-content p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ==================== */
/* INFO CARD            */
/* ==================== */
.info-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
    padding: 48px;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
}

.info-card--horizontal {
    flex-direction: row;
    text-align: left;
    gap: 32px;
}

.info-card-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green-dim);
    color: var(--green);
    border-radius: var(--radius-lg);
    font-size: 28px;
    flex-shrink: 0;
}

.info-card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.info-card-content p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Broadband checker standalone version */
.broadband-checker--standalone {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
}

.broadband-checker-content--centered {
    flex-direction: column;
    text-align: center;
}

.broadband-checker--standalone .broadband-checker-text h3 {
    color: var(--text-primary);
}

.broadband-checker--standalone .broadband-checker-text p {
    color: var(--text-muted);
}

.broadband-checker-form--stacked {
    flex-direction: column;
    max-width: 400px;
    margin: 0 auto;
}

.broadband-checker--standalone .broadband-input {
    background: var(--bg-raised);
    border: 1px solid var(--border-subtle);
}

.broadband-checker--standalone .broadband-btn {
    background: var(--green);
    color: #fff;
}

.broadband-checker--standalone .broadband-btn:hover {
    background: #2bb06b;
}

/* ==================== */
/* PARTNERS / TECH      */
/* ==================== */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.partner-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    transition: all 0.2s;
}

.partner-card:hover {
    border-color: var(--border-default);
}

.partner-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-raised);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-sm);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    flex-shrink: 0;
}

.partner-info h4 {
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    margin-bottom: 4px;
}

.partner-info span {
    font-size: 13px;
    color: var(--text-muted);
}

/* ==================== */
/* CTA SECTION          */
/* ==================== */
.cta-section {
    position: relative;
    padding: 140px 0;
    text-align: center;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
}

.cta-gradient {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.2;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: var(--purple);
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

.cta-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.cta-dots span:nth-child(1) { background: var(--green); }
.cta-dots span:nth-child(2) { background: var(--purple); }
.cta-dots span:nth-child(3) { background: var(--pink); }

.cta-section h2 {
    margin-bottom: 16px;
}

.cta-section > .container > .cta-content > p {
    font-size: 1.125rem;
    max-width: 480px;
    margin: 0 auto 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 56px;
}

.contact-row {
    display: flex;
    justify-content: center;
    gap: 56px;
    padding-top: 48px;
    border-top: 1px solid var(--border-subtle);
}

.contact-item {
    text-align: left;
}

.contact-item label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.contact-item a,
.contact-item span {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-primary);
}

.contact-item a:hover {
    color: var(--green);
}

/* ==================== */
/* FOOTER               */
/* ==================== */
.site-footer {
    padding: 80px 0 32px;
    border-top: 1px solid var(--border-subtle);
    background: var(--bg-base);
}

/* ==================== */
/* 404 PAGE             */
/* ==================== */
.error-page {
    min-height: calc(100vh - 300px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 160px 0 100px;
}

.error-content {
    text-align: center;
    max-width: 500px;
}

.error-code {
    display: block;
    font-size: 8rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, var(--green), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.error-content h1 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.error-content > p {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 32px;
}

.error-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
}

@media (max-width: 768px) {
    .error-code {
        font-size: 5rem;
    }
    
    .error-actions {
        flex-direction: column;
    }
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--border-subtle);
    margin-bottom: 32px;
}

.footer-brand {
    max-width: 280px;
}

.footer-logo img {
    height: 32px;
    margin-bottom: 16px;
}

.footer-tagline {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-column h4 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column ul a {
    font-size: 15px;
    color: var(--text-muted);
    transition: color 0.2s;
}

.footer-column ul a:hover {
    color: var(--text-primary);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-contact li i {
    color: var(--green);
    font-size: 14px;
    width: 16px;
    text-align: center;
}

.footer-contact li span,
.footer-contact li a {
    font-size: 15px;
    color: var(--text-muted);
}

.footer-contact li a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: var(--text-muted);
}

/* ==================== */
/* RESPONSIVE           */
/* ==================== */
@media (max-width: 1200px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .hero-visual {
        max-width: 500px;
    }
    
    .hero-float {
        display: none;
    }
    
    .service-panel {
        flex: 1 1 calc(33.333% - 14px);
        max-width: none;
    }
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .footer-brand {
        grid-column: span 2;
        max-width: none;
    }
    
    .service-hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .service-hero-card {
        max-width: 400px;
    }
    
    .issues-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .split-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .steps-grid {
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }
    
    .step-connector {
        width: 2px;
        height: 40px;
        margin-top: 0;
    }
    
    .cta-box {
        flex-direction: column;
        text-align: center;
    }
    
    .broadband-checker-content {
        flex-direction: column;
        text-align: center;
        gap: 32px;
    }
    
    .broadband-checker-form {
        max-width: 100%;
        width: 100%;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-card::after {
        display: none;
    }
    
    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .clients-logos {
        gap: 32px;
    }
    
    .client-logo {
        height: 55px;
    }
    
    .client-logo img {
        max-width: 110px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .main-nav {
        display: none;
    }
    
    .nav-cta {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .hero {
        min-height: auto;
        padding: 120px 0 60px;
    }
    
    .hero-text > p {
        font-size: 1.1rem;
    }
    
    .section {
        padding: 80px 0;
    }
    
    .service-list-item {
        flex-direction: column;
        gap: 16px;
        padding: 24px;
    }
    
    .info-card {
        padding: 32px 24px;
    }
    
    .info-card--horizontal {
        flex-direction: column;
        text-align: center;
    }
    
    .service-hero {
        padding: 120px 0 60px;
    }
    
    .service-hero-content h1 {
        font-size: 2rem;
    }
    
    .service-hero-intro {
        font-size: 1.05rem;
    }
    
    .service-hero-actions {
        flex-direction: column;
    }
    
    .service-hero-card {
        padding: 24px;
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
    
    .issues-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-card-image {
        height: 140px;
    }
    
    .issue-card {
        padding: 24px;
    }
    
    .step-card {
        max-width: none;
        padding: 0;
    }
    
    .cta-box {
        padding: 32px 24px;
    }
    
    .cta-box-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-box-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .section-broadband {
        margin-top: 0;
    }
    
    .broadband-checker {
        padding: 32px 0;
    }
    
    .broadband-checker-form {
        flex-direction: column;
    }
    
    .broadband-input {
        padding: 18px 18px 18px 48px;
    }
    
    .broadband-btn {
        width: 100%;
        justify-content: center;
        padding: 18px 24px;
    }
    
    .section-services {
        padding: 80px 0;
    }
    
    .service-showcase {
        flex-direction: column;
    }
    
    .service-panel {
        flex: 1 1 100%;
        max-width: none;
        min-height: auto;
    }
    
    .service-panel-content {
        padding: 28px;
    }
    
    .service-panel-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin-bottom: 24px;
    }
    
    .section-clients {
        padding: 60px 0;
    }
    
    .clients-logos {
        gap: 24px;
        flex-wrap: wrap;
    }
    
    .client-logo {
        height: 50px;
    }
    
    .client-logo img {
        max-width: 100px;
    }
    
    .section-cta {
        padding: 40px 0 80px;
    }
    
    .cta-card {
        padding: 48px 24px;
    }
    
    .cta-card h2 {
        font-size: 2rem;
    }
    
    .cta-card .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-card .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-row {
        flex-direction: column;
        align-items: center;
        gap: 28px;
    }
    
    .contact-item {
        text-align: center;
    }
    
    .footer-inner {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
    
    .btn-row,
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .clients-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .clients-logos {
        gap: 20px;
    }
    
    .client-logo {
        height: 45px;
    }
    
    .client-logo img {
        max-width: 90px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-brand {
        grid-column: span 1;
    }
}
