/* ============================================================
   Intune Technologies — Design System
   ============================================================ */

/* --- Custom Properties --- */
:root {
    /* Brand Colors */
    --navy: #0a1628;
    --navy-light: #132038;
    --navy-mid: #1a2d4a;
    --blue: #0066cc;
    --blue-light: #1a8cff;
    --blue-dark: #004d99;
    --white: #ffffff;
    --grey-50: #f8f9fb;
    --grey-100: #f4f6f8;
    --grey-200: #e2e6ec;
    --grey-300: #c8ced8;
    --grey-400: #9aa3b2;
    --grey-500: #6b7685;
    --grey-600: #4a5568;
    --grey-700: #2d3748;
    --green: #00c853;
    --green-light: #e6f9ed;
    --red: #e53e3e;
    --red-light: #fee;
    --orange: #ed8936;
    --orange-light: #fff5eb;
    --yellow: #ecc94b;

    /* Typography */
    --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-mono: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;

    /* Spacing Scale */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.25rem;
    --space-xl: 1.5rem;
    --space-2xl: 2rem;
    --space-3xl: 3rem;
    --space-4xl: 4rem;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.07);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 50px rgba(0,0,0,0.15);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-normal: 250ms ease;
    --transition-slow: 400ms ease;

    /* Layout */
    --container-max: 1200px;
    --container-narrow: 800px;
    --header-height: 72px;
}

/* --- Reset & Base --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--grey-700);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--blue);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--blue-dark);
}

ul, ol {
    list-style: none;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--navy);
}

h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.25rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); }
h4 { font-size: 1.125rem; }
h5 { font-size: 1rem; }

p {
    margin-bottom: var(--space-md);
}

p:last-child {
    margin-bottom: 0;
}

.text-center { text-align: center; }
.text-small { font-size: 0.875rem; }
.text-muted { color: var(--grey-500); }
.text-white { color: var(--white); }
.text-blue { color: var(--blue); }
.text-green { color: var(--green); }

/* --- Layout --- */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.container--narrow {
    max-width: var(--container-narrow);
}

.section {
    padding: var(--space-3xl) 0;
}

.section--compact {
    padding: var(--space-2xl) 0;
}

.section--grey {
    background: var(--grey-100);
}

.section--navy {
    background: var(--navy);
    color: var(--white);
}

.section--navy h2,
.section--navy h3 {
    color: var(--white);
}

.grid {
    display: grid;
    gap: var(--space-lg);
}

.grid--2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

.flex {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.flex--between {
    justify-content: space-between;
}

.flex--center {
    justify-content: center;
}

.flex--wrap {
    flex-wrap: wrap;
}

/* --- Header & Navigation --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: var(--navy);
    z-index: 1000;
    transition: box-shadow var(--transition-normal);
}

.site-header.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    text-decoration: none;
}

.site-logo:hover {
    color: var(--white);
}

.site-logo svg {
    width: 36px;
    height: 36px;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.site-nav a {
    color: rgba(255,255,255,0.8);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    font-size: 0.9375rem;
    font-weight: 500;
    transition: all var(--transition-fast);
}

.site-nav a:hover,
.site-nav a.active {
    color: var(--white);
    background: rgba(255,255,255,0.1);
}

.nav-cta {
    background: var(--blue) !important;
    color: var(--white) !important;
    padding: var(--space-sm) var(--space-lg) !important;
}

.nav-cta:hover {
    background: var(--blue-light) !important;
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-sm);
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    margin: 5px 0;
    transition: all var(--transition-fast);
    border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .site-nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: var(--navy);
        flex-direction: column;
        padding: var(--space-lg);
        gap: var(--space-xs);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all var(--transition-normal);
        border-top: 1px solid rgba(255,255,255,0.1);
    }

    .site-nav.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .site-nav a {
        width: 100%;
        text-align: center;
        padding: var(--space-md);
    }
}

/* Spacer for fixed header */
.header-spacer {
    height: var(--header-height);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 0.75rem 1.5rem;
    font-family: var(--font-heading);
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1;
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
    text-decoration: none;
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn:active {
    transform: translateY(0);
}

.btn--primary {
    background: var(--blue);
    color: var(--white);
}

.btn--primary:hover {
    background: var(--blue-light);
    color: var(--white);
}

.btn--secondary {
    background: transparent;
    color: var(--blue);
    border-color: var(--blue);
}

.btn--secondary:hover {
    background: var(--blue);
    color: var(--white);
}

.btn--white {
    background: var(--white);
    color: var(--navy);
}

.btn--white:hover {
    background: var(--grey-100);
    color: var(--navy);
}

.btn--green {
    background: var(--green);
    color: var(--white);
}

.btn--green:hover {
    background: #00b348;
    color: var(--white);
}

.btn--danger {
    background: var(--red);
    color: var(--white);
}

.btn--sm {
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
}

.btn--lg {
    padding: 1rem 2rem;
    font-size: 1.0625rem;
}

.btn--block {
    width: 100%;
}

/* --- Cards --- */
.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--grey-200);
    transition: all var(--transition-normal);
}

.card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.card--flat:hover {
    transform: none;
    box-shadow: var(--shadow-sm);
}

.card--highlight {
    border-color: var(--blue);
    box-shadow: 0 0 0 1px var(--blue), var(--shadow-md);
    position: relative;
}

.card--highlight::before {
    content: 'Most Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--blue);
    color: var(--white);
    padding: 4px 16px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* --- Plan Cards --- */
.plan-card {
    text-align: center;
    padding: var(--space-2xl) var(--space-xl);
}

.plan-card__name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

.plan-card__speed {
    color: var(--blue);
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: var(--space-lg);
}

.plan-card__price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.plan-card__price sup {
    font-size: 1.5rem;
    vertical-align: super;
}

.plan-card__period {
    color: var(--grey-500);
    font-size: 0.875rem;
    margin-bottom: var(--space-xl);
}

.plan-card__features {
    text-align: left;
    margin-bottom: var(--space-xl);
}

.plan-card__features li {
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--grey-100);
    font-size: 0.9375rem;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.plan-card__features li::before {
    content: '';
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    background: var(--green-light);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2300c853' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

/* --- Hero Section --- */
.hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    color: var(--white);
    padding: var(--space-3xl) 0;
    position: relative;
    overflow: hidden;
    min-height: 520px;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(0,102,204,0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 40%;
    height: 80%;
    background: radial-gradient(circle, rgba(0,200,83,0.08) 0%, transparent 60%);
    pointer-events: none;
}

.hero__content {
    position: relative;
    z-index: 1;
    max-width: 640px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: rgba(255,255,255,0.1);
    color: var(--green);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: var(--space-lg);
    border: 1px solid rgba(0,200,83,0.3);
}

.hero__badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero h1 {
    color: var(--white);
    margin-bottom: var(--space-lg);
    font-size: clamp(2.25rem, 5vw, 3.5rem);
}

.hero h1 span {
    color: var(--blue-light);
}

.hero p {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: var(--space-xl);
    max-width: 500px;
}

.hero__actions {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.hero__stats {
    display: flex;
    gap: var(--space-2xl);
    margin-top: var(--space-3xl);
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255,255,255,0.1);
}

.hero__stat {
    text-align: center;
}

.hero__stat-value {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--white);
}

.hero__stat-label {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.6);
    margin-top: var(--space-xs);
}

/* --- Feature Grid --- */
.feature {
    text-align: center;
    padding: var(--space-xl);
}

.feature__icon {
    width: 56px;
    height: 56px;
    background: rgba(0,102,204,0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
}

.feature__icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--blue);
}

.feature h3 {
    margin-bottom: var(--space-sm);
    font-size: 1.125rem;
}

.feature p {
    color: var(--grey-500);
    font-size: 0.9375rem;
}

/* --- Section Headers --- */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--space-2xl);
}

.section-header p {
    color: var(--grey-500);
    font-size: 1.0625rem;
    margin-top: var(--space-md);
}

.section--navy .section-header p {
    color: rgba(255,255,255,0.7);
}

/* --- Testimonials --- */
.testimonial {
    padding: var(--space-xl);
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--grey-200);
}

.testimonial__text {
    font-size: 1.0625rem;
    font-style: italic;
    color: var(--grey-600);
    margin-bottom: var(--space-lg);
    line-height: 1.7;
}

.testimonial__text::before {
    content: '\201C';
    font-size: 3rem;
    color: var(--blue);
    line-height: 0;
    vertical-align: -0.5em;
    margin-right: 4px;
}

.testimonial__author {
    font-weight: 600;
    color: var(--navy);
}

.testimonial__role {
    font-size: 0.8125rem;
    color: var(--grey-500);
}

/* --- CTA Banner --- */
.cta-banner {
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
    color: var(--white);
    padding: var(--space-2xl) 0;
    text-align: center;
}

.cta-banner h2 {
    color: var(--white);
    margin-bottom: var(--space-md);
}

.cta-banner p {
    color: rgba(255,255,255,0.9);
    font-size: 1.125rem;
    max-width: 500px;
    margin: 0 auto var(--space-xl);
}

/* --- Forms --- */
.form-group {
    margin-bottom: var(--space-lg);
}

.form-label {
    display: block;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--grey-700);
    margin-bottom: var(--space-sm);
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--grey-700);
    background: var(--white);
    border: 1.5px solid var(--grey-300);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(0,102,204,0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--grey-400);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-error {
    color: var(--red);
    font-size: 0.8125rem;
    margin-top: var(--space-xs);
}

.form-input.error {
    border-color: var(--red);
}

/* --- Badges & Tags --- */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 2px 10px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.badge--green { background: var(--green-light); color: #059669; }
.badge--red { background: var(--red-light); color: var(--red); }
.badge--orange { background: var(--orange-light); color: #c05621; }
.badge--blue { background: rgba(0,102,204,0.1); color: var(--blue); }
.badge--grey { background: var(--grey-100); color: var(--grey-600); }

/* --- Tables --- */
.table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--grey-200);
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: 0.875rem 1rem;
    text-align: left;
    font-size: 0.9375rem;
}

th {
    background: var(--grey-50);
    font-weight: 600;
    color: var(--grey-600);
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border-bottom: 2px solid var(--grey-200);
}

td {
    border-bottom: 1px solid var(--grey-100);
}

tr:last-child td {
    border-bottom: none;
}

tr:hover td {
    background: var(--grey-50);
}

/* --- Alerts --- */
.alert {
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-md);
    font-size: 0.9375rem;
    margin-bottom: var(--space-lg);
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
}

.alert--success {
    background: var(--green-light);
    color: #059669;
    border: 1px solid rgba(0,200,83,0.2);
}

.alert--error {
    background: var(--red-light);
    color: var(--red);
    border: 1px solid rgba(229,62,62,0.2);
}

.alert--warning {
    background: var(--orange-light);
    color: #c05621;
    border: 1px solid rgba(237,137,54,0.2);
}

.alert--info {
    background: rgba(0,102,204,0.05);
    color: var(--blue);
    border: 1px solid rgba(0,102,204,0.15);
}

/* --- Footer --- */
.site-footer {
    background: var(--navy);
    color: rgba(255,255,255,0.7);
    padding: var(--space-3xl) 0 var(--space-lg);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-3xl);
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.footer-brand {
    max-width: 300px;
}

.footer-brand p {
    font-size: 0.9375rem;
    margin-top: var(--space-md);
    line-height: 1.7;
}

.footer-col h4 {
    color: var(--white);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-lg);
}

.footer-col a {
    display: block;
    color: rgba(255,255,255,0.6);
    padding: var(--space-xs) 0;
    font-size: 0.9375rem;
    transition: color var(--transition-fast);
}

.footer-col a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: var(--space-xl);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-md);
    font-size: 0.8125rem;
}

.footer-bottom a {
    color: rgba(255,255,255,0.5);
}

.footer-bottom a:hover {
    color: var(--white);
}

/* --- Page Headers --- */
.page-header {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    color: var(--white);
    padding: var(--space-2xl) 0;
    text-align: center;
}

.page-header h1 {
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.page-header p {
    color: rgba(255,255,255,0.7);
    font-size: 1.125rem;
    max-width: 500px;
    margin: 0 auto;
}

/* --- Breadcrumbs --- */
.breadcrumbs {
    font-size: 0.8125rem;
    margin-bottom: var(--space-lg);
    color: rgba(255,255,255,0.5);
}

.breadcrumbs a {
    color: rgba(255,255,255,0.5);
}

.breadcrumbs a:hover {
    color: var(--white);
}

.breadcrumbs span {
    margin: 0 var(--space-sm);
}

/* --- Coverage Map Section --- */
.coverage-areas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-md);
}

.coverage-area {
    padding: var(--space-lg);
    background: var(--white);
    border: 1px solid var(--grey-200);
    border-radius: var(--radius-md);
    text-align: center;
    transition: all var(--transition-fast);
}

.coverage-area:hover {
    border-color: var(--blue);
    box-shadow: var(--shadow-md);
}

.coverage-area h4 {
    margin-bottom: var(--space-xs);
}

.coverage-area .badge {
    margin-top: var(--space-sm);
}

/* --- Contact Info --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.contact-info-item svg {
    width: 24px;
    height: 24px;
    stroke: var(--blue);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-info-item h4 {
    margin-bottom: var(--space-xs);
}

.contact-info-item p {
    color: var(--grey-500);
    font-size: 0.9375rem;
}

/* --- Partners --- */
.partners {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3xl);
    flex-wrap: wrap;
    opacity: 0.6;
}

.partners img {
    height: 40px;
    filter: grayscale(100%);
    transition: all var(--transition-normal);
}

.partners img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* --- Pagination --- */
.pagination {
    display: flex;
    justify-content: center;
    gap: var(--space-xs);
    margin-top: var(--space-2xl);
}

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid var(--grey-200);
    color: var(--grey-600);
    transition: all var(--transition-fast);
}

.pagination a:hover {
    background: var(--blue);
    color: var(--white);
    border-color: var(--blue);
}

.pagination .active {
    background: var(--blue);
    color: var(--white);
    border-color: var(--blue);
}

/* --- Utilities --- */
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--space-md); }
.mt-2 { margin-top: var(--space-xl); }
.mt-3 { margin-top: var(--space-2xl); }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--space-md); }
.mb-2 { margin-bottom: var(--space-xl); }
.mb-3 { margin-bottom: var(--space-2xl); }

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* Skeleton loading */
.skeleton {
    background: linear-gradient(90deg, var(--grey-100) 25%, var(--grey-200) 50%, var(--grey-100) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: var(--radius-md);
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Fade-in animation */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Hero Split (text + illustration) --- */
.hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

@media (max-width: 768px) {
    .hero__grid {
        grid-template-columns: 1fr;
    }
    .hero__illustration {
        display: none;
    }
}

.hero__illustration {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__illustration svg {
    width: 100%;
    max-width: 420px;
    height: auto;
}

/* --- How It Works Steps --- */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-lg);
    counter-reset: step;
}

.step {
    text-align: center;
    padding: var(--space-lg);
    position: relative;
}

.step__number {
    width: 48px;
    height: 48px;
    background: var(--blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.25rem;
    margin: 0 auto var(--space-md);
}

.step h4 {
    margin-bottom: var(--space-xs);
}

.step p {
    color: var(--grey-500);
    font-size: 0.875rem;
}

/* Connector line between steps (desktop only) */
@media (min-width: 769px) {
    .step:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 36px;
        right: -10%;
        width: 20%;
        height: 2px;
        background: var(--grey-200);
    }
}

/* --- Network Stats Bar --- */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.stats-bar__item {
    padding: var(--space-lg);
    text-align: center;
    background: var(--navy-light);
}

.stats-bar__value {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--white);
}

.stats-bar__label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: var(--space-xs);
}

/* --- ISP Illustration Placeholder --- */
.illustration-box {
    background: linear-gradient(135deg, var(--grey-50) 0%, var(--grey-100) 100%);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 280px;
}

.illustration-box svg {
    width: 100%;
    max-width: 360px;
    height: auto;
}

.illustration-box--navy {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
}

/* --- Trust Banner / Partner Logos --- */
.trust-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2xl);
    flex-wrap: wrap;
    padding: var(--space-lg) 0;
    border-top: 1px solid var(--grey-200);
    border-bottom: 1px solid var(--grey-200);
}

.trust-bar__item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--grey-500);
    font-size: 0.875rem;
    font-weight: 500;
}

.trust-bar__item svg {
    width: 20px;
    height: 20px;
    stroke: var(--blue);
}

/* --- Two Col Content (text + image side by side) --- */
.split-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.split-content--reverse {
    direction: rtl;
}

.split-content--reverse > * {
    direction: ltr;
}

@media (max-width: 768px) {
    .split-content,
    .split-content--reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }
}

.split-content h3 {
    margin-bottom: var(--space-sm);
}

.split-content p {
    color: var(--grey-600);
    font-size: 0.9375rem;
    line-height: 1.7;
}

/* --- Print --- */
@media print {
    .site-header,
    .site-footer,
    .nav-toggle,
    .btn {
        display: none !important;
    }

    body {
        font-size: 12pt;
        color: #000;
    }
}
