/* ═══════════════════════════════════════════
   PLUS DEALS FOR YOU - MASTER STYLESHEET
   Version: 2.0
   Last Updated: July 24, 2026
   ═══════════════════════════════════════════ */

/* ═══ TABLE OF CONTENTS ═══
   1. RESET & BASE
   2. VARIABLES (CSS Custom Properties)
   3. TYPOGRAPHY
   4. CONTAINER & LAYOUT
   5. BUTTONS
   6. TOP BAR
   7. RETAILER NOTICE
   8. HEADER & NAVIGATION
   9. HERO SECTION
   10. FINDER SECTION
   11. PROVIDERS SECTION
   12. FEATURES BAR
   13. HOW IT WORKS
   14. TESTIMONIALS
   15. BLOG SECTION
   16. CTA SECTION
   17. FOOTER
   18. COOKIE CONSENT
   19. BACK TO TOP
   20. PAGE HERO (Inner Pages)
   21. LEGAL PAGES (Privacy, Terms)
   22. PROVIDER DETAIL PAGE
   23. CONTACT PAGE
   24. BLOG PAGE
   25. 404 ERROR PAGE
   26. RESPONSIVE BREAKPOINTS
   27. UTILITY CLASSES
   ═══════════════════════════════════════════ */

/* ═══ 1. RESET & BASE ═══ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul,
ol {
    list-style: none;
}

/* ═══ 2. CSS VARIABLES ═══ */
:root {
    /* ─── Primary Colors ─── */
    --primary: #0066ff;
    --primary-dark: #0044cc;
    --primary-light: #3385ff;
    --primary-rgb: 0, 102, 255;

    /* ─── Secondary Colors ─── */
    --secondary: #ff6b35;
    --secondary-dark: #e53e00;
    --secondary-light: #ff8a5c;

    /* ─── Success Colors ─── */
    --success: #00c853;
    --success-dark: #009624;
    --success-light: #33d966;

    /* ─── Gold / Warning ─── */
    --gold: #f7971e;
    --gold-light: #ffd200;
    --gold-dark: #d47d00;

    /* ─── Neutral Colors ─── */
    --dark: #0a1628;
    --dark-light: #1a365d;
    --gray: #94a3b8;
    --gray-light: #cbd5e1;
    --gray-dark: #64748b;
    --light-gray: #e9edf2;
    --bg: #f4f7fc;
    --white: #ffffff;

    /* ─── Shadows ─── */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 15px 50px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 20px 60px rgba(0, 0, 0, 0.12);
    --shadow-primary: 0 4px 20px rgba(0, 102, 255, 0.3);
    --shadow-primary-hover: 0 8px 40px rgba(0, 102, 255, 0.5);

    /* ─── Border Radius ─── */
    --radius-sm: 8px;
    --radius: 16px;
    --radius-lg: 20px;
    --radius-xl: 24px;
    --radius-full: 50px;

    /* ─── Transitions ─── */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);

    /* ─── Typography ─── */
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;

    /* ─── Spacing ─── */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
    --spacing-2xl: 48px;
    --spacing-3xl: 64px;
    --spacing-4xl: 80px;

    /* ─── Container Width ─── */
    --container-max: 1200px;
    --container-padding: 24px;

    /* ─── Z-Index Scale ─── */
    --z-dropdown: 100;
    --z-header: 100;
    --z-modal: 200;
    --z-tooltip: 300;
    --z-cookie: 999;
    --z-back-to-top: 99;
}

/* ═══ 3. TYPOGRAPHY ═══ */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
}

h1 {
    font-size: clamp(2rem, 4vw, 3.8rem);
    font-weight: 900;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(1.6rem, 3vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    font-weight: 700;
}

h4 {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    font-weight: 600;
}

p {
    font-size: 1rem;
    color: var(--gray-dark);
    line-height: 1.7;
}

/* ─── Links ─── */
a:hover {
    color: var(--primary);
}

/* ─── Selection ─── */
::selection {
    background: var(--primary);
    color: var(--white);
}

::-moz-selection {
    background: var(--primary);
    color: var(--white);
}

/* ═══ 4. CONTAINER & LAYOUT ═══ */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section-padding {
    padding: var(--spacing-3xl) 0;
}

.section-padding-sm {
    padding: var(--spacing-2xl) 0;
}

.section-padding-lg {
    padding: var(--spacing-4xl) 0;
}

/* ═══ 5. BUTTONS ═══ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: var(--transition-bounce);
    text-align: center;
    letter-spacing: 0.02em;
    line-height: 1.2;
    position: relative;
    overflow: hidden;
    font-family: var(--font);
    text-decoration: none;
    white-space: nowrap;
}

/* ─── Button Hover Overlay ─── */
.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent);
    opacity: 0;
    transition: var(--transition);
    border-radius: var(--radius-full);
}

.btn:hover::after {
    opacity: 1;
}

/* ─── Button Sizes ─── */
.btn-lg {
    padding: 16px 40px;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.85rem;
}

.btn-xs {
    padding: 6px 14px;
    font-size: 0.75rem;
}

.btn-block {
    display: flex;
    width: 100%;
    justify-content: center;
}

/* ─── Button Variants ─── */
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-primary-hover);
    color: var(--white);
}

.btn-primary:active {
    transform: scale(0.96);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.5);
    color: var(--white);
}

.btn-success {
    background: linear-gradient(135deg, var(--success), var(--success-dark));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 200, 83, 0.3);
}

.btn-success:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(0, 200, 83, 0.5);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--dark);
    transform: translateY(-2px);
}

.btn-glow {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--dark);
    box-shadow: 0 4px 20px rgba(255, 210, 0, 0.4);
    animation: pulse-glow 2s infinite;
}

.btn-glow:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 40px rgba(255, 210, 0, 0.6);
    color: var(--dark);
}

.btn-ghost {
    background: transparent;
    color: var(--dark);
    border: 1px solid var(--light-gray);
}

.btn-ghost:hover {
    background: var(--bg);
    transform: translateY(-2px);
}

.btn-danger {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.btn-danger:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(220, 53, 69, 0.5);
    color: var(--white);
}

/* ─── Button Animations ─── */
@keyframes pulse-glow {
    0%,
    100% {
        box-shadow: 0 4px 20px rgba(255, 210, 0, 0.3);
    }
    50% {
        box-shadow: 0 4px 40px rgba(255, 210, 0, 0.7);
    }
}

/* ─── Button Disabled State ─── */
.btn:disabled,
.btn.loading {
    opacity: 0.7;
    pointer-events: none;
    cursor: not-allowed;
}

.btn.loading::after {
    content: ' ⏳';
    display: inline-block;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* ═══ 6. TOP BAR ═══ */
.top-bar {
    background: var(--dark);
    color: var(--gray);
    padding: 8px 0;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    position: relative;
    z-index: 101;
}

.top-bar-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.top-bar a {
    color: #60a5fa;
    font-weight: 600;
    transition: var(--transition);
}

.top-bar a:hover {
    color: var(--white);
}

.top-bar span {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ═══ 7. RETAILER NOTICE ═══ */
.retailer-notice {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border-bottom: 2px solid #f59e0b;
    padding: 10px 0;
    position: relative;
    z-index: 101;
}

.retailer-notice-content {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 0.82rem;
    color: #78350f;
    line-height: 1.6;
}

.notice-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.retailer-notice-content p {
    flex: 1;
    margin: 0;
    color: #78350f;
}

.retailer-notice-content strong {
    color: #451a03;
}

.notice-close {
    background: none;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    color: #78350f;
    padding: 0 4px;
    flex-shrink: 0;
    opacity: 0.7;
    transition: var(--transition);
}

.notice-close:hover {
    opacity: 1;
    transform: scale(1.1);
    color: #451a03;
}

.retailer-notice.closed {
    display: none;
}

/* ═══ 8. HEADER & NAVIGATION ═══ */
.main-header {
    background: var(--white);
    padding: 12px 0;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: var(--z-header);
    transition: var(--transition);
}

.main-header.scrolled {
    box-shadow: var(--shadow-md);
    padding: 8px 0;
}

.header-grid {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 30px;
}

/* ─── Logo ─── */
.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.logo-text {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--dark);
    letter-spacing: -0.5px;
}

.logo-text span {
    color: var(--primary);
}

/* ─── Navigation ─── */
.nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    padding: 4px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2.5px;
    background: var(--primary);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

/* ─── Dropdown ─── */
.nav-links .dropdown {
    position: relative;
}

.nav-links .dropdown-content {
    display: none;
    position: absolute;
    background: var(--white);
    min-width: 210px;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-sm);
    padding: 8px 0;
    top: 100%;
    left: 0;
    border: 1px solid var(--light-gray);
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-links .dropdown:hover .dropdown-content {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.nav-links .dropdown-content a {
    display: block;
    padding: 10px 20px;
    color: var(--dark);
    font-weight: 400;
    font-size: 0.9rem;
}

.nav-links .dropdown-content a::after {
    display: none;
}

.nav-links .dropdown-content a:hover {
    background: var(--bg);
    color: var(--primary);
}

.nav-links .dropdown-content .divider {
    height: 1px;
    background: var(--light-gray);
    margin: 4px 12px;
}

/* ─── Header Actions ─── */
.header-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--dark);
    padding: 4px 8px;
    transition: var(--transition);
    line-height: 1;
}

.mobile-menu-btn:hover {
    color: var(--primary);
}

/* ═══ 9. HERO SECTION ═══ */
.hero {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
    padding: 70px 0 80px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.12;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.6), rgba(26, 54, 93, 0.4));
}

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

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

.hero-badge {
    display: inline-block;
    background: rgba(255, 210, 0, 0.12);
    color: var(--gold-light);
    padding: 6px 18px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 16px;
    border: 1px solid rgba(255, 210, 0, 0.15);
    backdrop-filter: blur(10px);
}

.hero h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.08;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    color: var(--white);
}

.hero h1 span {
    background: linear-gradient(135deg, #60a5fa, var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.2rem;
    color: var(--gray-light);
    margin-bottom: 30px;
    max-width: 500px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

/* ─── Hero Trust Indicators ─── */
.hero-trust {
    display: flex;
    gap: 40px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.trust-item {
    text-align: center;
}

.trust-item span {
    display: block;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--white);
}

.trust-item small {
    font-size: 0.8rem;
    color: var(--gray);
}

/* ─── Hero Card ─── */
.hero-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-xl);
    padding: 4px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-card-content {
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-lg);
    padding: 35px;
}

.hero-card .price-big {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 900;
    color: #60a5fa;
    line-height: 1;
}

.hero-card .price-big small {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--gray);
}

.hero-card p {
    color: var(--gray-light);
    margin: 12px 0 20px;
    max-width: 100%;
    font-size: 1rem;
}

.deal-features {
    list-style: none;
    margin-bottom: 20px;
}

.deal-features li {
    padding: 5px 0;
    color: var(--gray-light);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.deal-note {
    display: block;
    margin-top: 10px;
    font-size: 0.75rem;
    color: var(--gray);
}

/* ═══ 10. FINDER SECTION ═══ */
.finder-section {
    padding: 50px 0 60px;
    background: var(--white);
    margin-top: -30px;
    border-radius: 30px 30px 0 0;
    position: relative;
    z-index: 3;
}

.finder-box {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 45px;
    border: 1px solid var(--light-gray);
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: var(--shadow-sm);
}

.finder-header {
    text-align: center;
    margin-bottom: 30px;
}

.finder-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 8px;
}

.finder-box h2 {
    font-size: clamp(1.6rem, 2.5vw, 2rem);
    font-weight: 800;
}

.finder-box .sub {
    color: var(--gray-dark);
    margin-top: 4px;
}

/* ─── Finder Form ─── */
.finder-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 16px;
    align-items: end;
}

.finder-grid .form-group {
    margin: 0;
}

.finder-grid label {
    font-weight: 600;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 6px;
    color: var(--dark);
}

.finder-grid select,
.finder-grid input {
    width: 100%;
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    border: 2px solid var(--light-gray);
    font-size: 1rem;
    background: var(--white);
    transition: var(--transition);
    font-family: var(--font);
    color: var(--dark);
    appearance: auto;
}

.finder-grid select:focus,
.finder-grid input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.08);
}

.finder-grid select:hover,
.finder-grid input:hover {
    border-color: var(--gray);
}

.finder-grid .btn {
    padding: 14px 36px;
    min-height: 54px;
}

/* ═══ 11. PROVIDERS SECTION ═══ */
.providers {
    padding: 60px 0;
    background: var(--bg);
}

.section-header {
    text-align: center;
    margin-bottom: 45px;
}

.section-tag {
    display: inline-block;
    background: rgba(0, 102, 255, 0.08);
    color: var(--primary);
    padding: 4px 16px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

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

.section-header p {
    color: var(--gray-dark);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* ─── Provider Grid ─── */
.provider-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 25px;
}

.provider-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--light-gray);
    transition: var(--transition-bounce);
    position: relative;
}

.provider-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.provider-card.featured {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px var(--primary), var(--shadow);
}

.provider-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--primary);
    color: var(--white);
    padding: 4px 14px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 2;
    box-shadow: var(--shadow-sm);
}

.provider-image {
    width: 100%;
    height: 160px;
    overflow: hidden;
    background: var(--light-gray);
}

.provider-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.provider-card:hover .provider-image img {
    transform: scale(1.05);
}

.provider-info {
    padding: 20px 22px 25px;
    text-align: center;
}

.provider-icon {
    font-size: 2.8rem;
    margin-bottom: 4px;
    display: block;
}

.provider-info h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 4px;
}

/* ─── Tags ─── */
.tag {
    display: inline-block;
    padding: 2px 14px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    margin: 6px 0 10px;
}

.tag-fiber {
    background: rgba(0, 102, 255, 0.1);
    color: var(--primary);
}

.tag-cable {
    background: rgba(255, 107, 53, 0.1);
    color: var(--secondary);
}

.tag-satellite {
    background: rgba(0, 200, 83, 0.1);
    color: var(--success);
}

.tag-dsl {
    background: rgba(128, 128, 128, 0.1);
    color: #666;
}

.tag-fiber-plus {
    background: rgba(0, 102, 255, 0.15);
    color: var(--primary-dark);
}

/* ─── Provider Price ─── */
.provider-info .price {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--dark);
}

.provider-info .price small {
    font-size: 1rem;
    font-weight: 400;
    color: var(--gray);
}

.provider-rating {
    font-size: 0.85rem;
    color: var(--gray);
    margin: 6px 0 14px;
}

.provider-info .btn {
    margin-top: 4px;
}

.view-all-wrap {
    text-align: center;
    margin-top: 35px;
}

/* ═══ 12. FEATURES BAR ═══ */
.features-bar {
    background: var(--white);
    padding: 50px 0;
    border-top: 1px solid var(--light-gray);
    border-bottom: 1px solid var(--light-gray);
}

.features-grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.feature-item .feature-icon {
    font-size: 2.8rem;
    display: block;
}

.feature-item h4 {
    font-weight: 700;
    margin: 10px 0 4px;
    font-size: 1.1rem;
}

.feature-item p {
    color: var(--gray-dark);
    font-size: 0.9rem;
}

/* ═══ 13. HOW IT WORKS ═══ */
.how-it-works {
    padding: 60px 0;
    background: var(--bg);
}

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

.step {
    text-align: center;
    padding: 30px 20px 25px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--light-gray);
    transition: var(--transition-bounce);
    position: relative;
}

.step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.step-number {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
}

.step-icon {
    font-size: 3rem;
    margin: 10px 0 12px;
    display: block;
}

.step h4 {
    font-size: 1.2rem;
    font-weight: 700;
}

.step p {
    color: var(--gray-dark);
    font-size: 0.95rem;
    margin-top: 4px;
}

/* ═══ 14. TESTIMONIALS ═══ */
.testimonial {
    padding: 60px 0;
    background: var(--white);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--bg);
    padding: 30px;
    border-radius: var(--radius);
    border: 1px solid var(--light-gray);
    transition: var(--transition-bounce);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.testimonial-stars {
    color: #f59e0b;
    font-size: 1.2rem;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.testimonial-card p {
    font-style: italic;
    color: var(--dark);
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid var(--light-gray);
}

.testimonial-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.testimonial-author .author {
    font-weight: 700;
    color: var(--dark);
}

.testimonial-author .location {
    font-size: 0.85rem;
    color: var(--gray);
}

/* ═══ 15. BLOG SECTION ═══ */
.blog-preview {
    padding: 60px 0;
    background: var(--bg);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--light-gray);
    transition: var(--transition-bounce);
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.blog-card a {
    display: block;
    text-decoration: none;
    color: inherit;
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover img {
    transform: scale(1.03);
}

.blog-content {
    padding: 22px 25px;
}

.blog-category {
    display: inline-block;
    background: rgba(0, 102, 255, 0.08);
    color: var(--primary);
    padding: 2px 12px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.blog-content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
}

.blog-content p {
    color: var(--gray-dark);
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.blog-read-more {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.blog-card:hover .blog-read-more {
    color: var(--primary-dark);
    gap: 8px;
}

/* ═══ 16. CTA SECTION ═══ */
.cta-section {
    padding: 60px 0 70px;
    background: linear-gradient(135deg, var(--dark), var(--dark-light));
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.05), transparent 70%);
    border-radius: 50%;
}

.cta-section h2 {
    font-size: clamp(2rem, 3vw, 2.6rem);
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--white);
}

.cta-section p {
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
}

.cta-section .btn-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.cta-phone {
    margin-top: 20px;
    font-size: 1.1rem;
    color: var(--gray);
}

.cta-phone a {
    color: var(--white);
    font-weight: 700;
    font-size: 1.4rem;
    transition: var(--transition);
}

.cta-phone a:hover {
    color: #60a5fa;
}

/* ═══ 17. FOOTER ═══ */
footer {
    background: var(--dark);
    color: var(--gray);
    padding: 50px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

/* ─── Footer Notice ─── */
.footer-notice {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    margin-bottom: 35px;
}

.footer-notice p {
    font-size: 0.8rem;
    color: var(--gray);
    line-height: 1.7;
    margin: 0;
}

.footer-notice strong {
    color: var(--gray-light);
}

/* ─── Footer Grid ─── */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand img {
    margin-bottom: 8px;
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--gray);
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 12px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    transition: var(--transition);
    font-size: 1.2rem;
    color: var(--gray);
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-grid h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 16px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.footer-grid ul {
    list-style: none;
}

.footer-grid ul li {
    margin-bottom: 8px;
}

.footer-grid a {
    color: var(--gray);
    transition: var(--transition);
    text-decoration: none;
}

.footer-grid a:hover {
    color: #60a5fa;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 4px 0;
}

.business-hours {
    color: var(--gray);
    font-size: 0.85rem;
    margin-top: 4px;
}

/* ─── Footer Bottom ─── */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
}

.footer-disclaimer {
    font-size: 0.75rem;
    color: var(--gray-dark);
    margin-top: 4px;
}

/* ═══ 18. COOKIE CONSENT ═══ */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: var(--gray);
    padding: 16px 24px;
    z-index: var(--z-cookie);
    transform: translateY(100%);
    transition: transform 0.4s ease;
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.2);
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    font-size: 0.9rem;
    color: var(--gray);
    flex: 1;
    margin: 0;
}

.cookie-content a {
    color: #60a5fa;
    font-weight: 500;
}

.cookie-content .btn {
    flex-shrink: 0;
}

/* ═══ 19. BACK TO TOP ═══ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    border: none;
    font-size: 1.4rem;
    cursor: pointer;
    box-shadow: var(--shadow-primary);
    transition: var(--transition-bounce);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: var(--z-back-to-top);
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-primary-hover);
}

/* ═══ 20. PAGE HERO (Inner Pages) ═══ */
.page-hero {
    background: linear-gradient(135deg, var(--dark), var(--dark-light));
    padding: 50px 0;
    color: var(--white);
    text-align: center;
}

.page-hero h1 {
    color: var(--white);
}

.page-hero p {
    color: var(--gray-light);
    max-width: 700px;
    margin: 10px auto 0;
    font-size: 1.15rem;
}

/* ═══ 21. LEGAL PAGES (Privacy, Terms) ═══ */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 0;
}

.legal-content h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.legal-content .last-updated {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 30px;
}

.legal-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 30px 0 15px;
    color: var(--dark);
}

.legal-content p {
    color: var(--gray-dark);
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-content ul {
    margin: 10px 0 20px 20px;
    color: var(--gray-dark);
    line-height: 1.8;
}

.legal-content ul li {
    margin-bottom: 8px;
    list-style-type: disc;
}

.legal-content a {
    color: var(--primary);
}

.legal-content a:hover {
    text-decoration: underline;
}

/* ═══ 22. PROVIDER DETAIL PAGE ═══ */
.provider-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.provider-detail-card {
    background: var(--bg);
    padding: 30px;
    border-radius: var(--radius);
    border: 1px solid var(--light-gray);
    text-align: center;
}

.provider-detail-card .icon {
    font-size: 4rem;
    display: block;
    margin-bottom: 10px;
}

.provider-detail-card h2 {
    font-size: 1.8rem;
}

.provider-detail-price {
    background: var(--bg);
    padding: 30px;
    border-radius: var(--radius);
    border: 1px solid var(--light-gray);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.provider-detail-price .price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark);
}

.provider-detail-price .price small {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--gray);
}

/* ─── Plans Grid ─── */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.plan-card {
    border: 1px solid var(--light-gray);
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
    transition: var(--transition);
}

.plan-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.plan-card.featured-plan {
    border: 2px solid var(--primary);
    position: relative;
}

.plan-card .plan-badge {
    position: absolute;
    top: -10px;
    right: 10px;
    background: var(--primary);
    color: var(--white);
    padding: 2px 14px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
}

.plan-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
}

.plan-card .plan-price {
    font-size: 1.8rem;
    font-weight: 800;
    margin: 10px 0;
}

.plan-card .plan-price small {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--gray);
}

.plan-card ul {
    list-style: none;
    text-align: left;
    font-size: 0.9rem;
    color: var(--gray-dark);
    margin: 10px 0 15px;
}

.plan-card ul li {
    padding: 4px 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.plan-card ul li::before {
    content: '✓';
    color: var(--success);
    font-weight: 700;
}

/* ─── Enquiry Form ─── */
.enquiry-section {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 40px;
    border: 1px solid var(--light-gray);
    margin-top: 40px;
}

.enquiry-section h2 {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.enquiry-section .sub-text {
    color: var(--gray-dark);
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    border: 2px solid var(--light-gray);
    font-size: 1rem;
    font-family: var(--font);
    transition: var(--transition);
    background: var(--white);
    color: var(--dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.08);
}

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

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

.form-success {
    display: none;
    background: #d4edda;
    color: #155724;
    padding: 20px 25px;
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--success);
    margin-top: 20px;
}

.form-success.show {
    display: block;
    animation: fadeIn 0.5s ease;
}

.form-error {
    display: none;
    background: #f8d7da;
    color: #721c24;
    padding: 15px 20px;
    border-radius: var(--radius-sm);
    border-left: 4px solid #dc3545;
    margin-top: 15px;
}

.form-error.show {
    display: block;
}

.btn-loading {
    opacity: 0.7;
    pointer-events: none;
}

.btn-loading::after {
    content: ' ⏳';
    animation: spin 1s linear infinite;
    display: inline-block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ═══ 23. CONTACT PAGE ═══ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-info-card {
    padding: 20px 0;
}

.contact-info-card h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.contact-info-card .info-item {
    margin-bottom: 30px;
}

.contact-info-card .info-item h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.contact-info-card .info-item p {
    color: var(--dark);
}

.contact-info-card .info-item a {
    color: var(--primary);
    font-weight: 600;
}

.contact-form-card {
    background: var(--bg);
    padding: 35px;
    border-radius: var(--radius);
    border: 1px solid var(--light-gray);
}

.contact-form-card h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

/* ═══ 24. BLOG PAGE ═══ */
.blog-grid-wrap {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.blog-post-full {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    border: 1px solid var(--light-gray);
    margin-bottom: 30px;
    transition: var(--transition);
}

.blog-post-full:hover {
    box-shadow: var(--shadow-hover);
}

.blog-post-full img {
    width: 100%;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
}

.blog-post-full .post-meta {
    display: flex;
    gap: 20px;
    color: var(--gray);
    font-size: 0.85rem;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.blog-post-full .post-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-post-full h2 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.blog-post-full h2 a {
    color: var(--dark);
    transition: var(--transition);
}

.blog-post-full h2 a:hover {
    color: var(--primary);
}

.blog-post-full .excerpt {
    color: var(--gray-dark);
    font-size: 1.05rem;
    line-height: 1.7;
}

.blog-post-full .read-more {
    display: inline-block;
    margin-top: 15px;
    color: var(--primary);
    font-weight: 600;
    transition: var(--transition);
}

.blog-post-full .read-more:hover {
    color: var(--primary-dark);
    transform: translateX(4px);
}

.blog-sidebar {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    border: 1px solid var(--light-gray);
    position: sticky;
    top: 100px;
}

.blog-sidebar h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--light-gray);
}

.blog-sidebar ul li {
    padding: 8px 0;
    border-bottom: 1px solid var(--light-gray);
}

.blog-sidebar ul li:last-child {
    border-bottom: none;
}

.blog-sidebar ul a {
    color: var(--dark);
    transition: var(--transition);
    display: flex;
    justify-content: space-between;
}

.blog-sidebar ul a:hover {
    color: var(--primary);
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-cloud a {
    background: var(--bg);
    padding: 4px 14px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    color: var(--dark);
    transition: var(--transition);
}

.tag-cloud a:hover {
    background: var(--primary);
    color: var(--white);
}

.pagination {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 30px;
}

.pagination a {
    padding: 10px 16px;
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-sm);
    color: var(--dark);
    transition: var(--transition);
}

.pagination a:hover,
.pagination a.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* ═══ 25. 404 ERROR PAGE ═══ */
.error-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    background: var(--bg);
}

.error-content {
    max-width: 600px;
}

.error-code {
    font-size: 8rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 10px;
}

.error-content h1 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--dark);
}

.error-content p {
    color: var(--gray-dark);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

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

/* ═══ 26. RESPONSIVE BREAKPOINTS ═══ */

/* ─── Tablet Landscape & Small Desktops ─── */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero p {
        margin: 0 auto 30px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
    }

    .finder-grid {
        grid-template-columns: 1fr 1fr;
    }

    .finder-grid .btn {
        grid-column: span 2;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .blog-grid-wrap {
        grid-template-columns: 1fr;
    }

    .blog-sidebar {
        position: static;
    }

    .plans-grid {
        grid-template-columns: 1fr 1fr;
    }

    .provider-detail-grid {
        grid-template-columns: 1fr;
    }
}

/* ─── Tablets & Mobile Landscape ─── */
@media (max-width: 768px) {
    /* Header */
    .header-grid {
        grid-template-columns: 1fr auto;
        gap: 12px;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 20px;
        box-shadow: var(--shadow-lg);
        border-top: 1px solid var(--light-gray);
        gap: 12px;
        align-items: stretch;
        max-height: 80vh;
        overflow-y: auto;
    }

    .nav-links.open {
        display: flex;
        animation: fadeIn 0.2s ease;
    }

    .nav-links .dropdown-content {
        position: static;
        box-shadow: none;
        padding-left: 16px;
        border: none;
        display: none;
        opacity: 1;
        transform: none;
    }

    .nav-links .dropdown:hover .dropdown-content {
        display: none;
    }

    .nav-links .dropdown.open .dropdown-content {
        display: block;
    }

    .mobile-menu-btn {
        display: block;
    }

    /* Hero */
    .hero {
        padding: 40px 0 50px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-card .price-big {
        font-size: 2.5rem;
    }

    .hero-trust {
        gap: 20px;
        flex-wrap: wrap;
    }

    /* Finder */
    .finder-grid {
        grid-template-columns: 1fr;
    }

    .finder-grid .btn {
        grid-column: span 1;
    }

    .finder-box {
        padding: 25px;
    }

    /* Sections */
    .section-header h2 {
        font-size: 2rem;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-notice p {
        font-size: 0.7rem;
    }

    /* CTAs */
    .cta-section h2 {
        font-size: 2rem;
    }

    .cta-section .btn-group {
        flex-direction: column;
        align-items: center;
    }

    .cta-section .btn-group .btn {
        width: 100%;
        max-width: 300px;
    }

    /* Top Bar */
    .top-bar-flex {
        justify-content: center;
        text-align: center;
        font-size: 0.8rem;
    }

    /* Cookie */
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-content .btn {
        width: 100%;
        max-width: 200px;
    }

    /* Retailer Notice */
    .retailer-notice-content {
        font-size: 0.7rem;
        gap: 8px;
    }

    .notice-icon {
        font-size: 0.9rem;
    }

    /* Plans */
    .plans-grid {
        grid-template-columns: 1fr;
    }

    .plans-grid .plan-card {
        max-width: 400px;
        margin: 0 auto;
    }

    /* Form */
    .form-row {
        grid-template-columns: 1fr;
    }

    .enquiry-section {
        padding: 25px;
    }

    /* Provider Detail */
    .provider-detail-grid {
        grid-template-columns: 1fr;
    }

    /* Blog */
    .blog-post-full {
        padding: 25px;
    }

    .blog-post-full h2 {
        font-size: 1.3rem;
    }

    /* Error */
    .error-code {
        font-size: 5rem;
    }

    .error-content h1 {
        font-size: 1.5rem;
    }
}

/* ─── Small Mobile ─── */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        padding: 30px 0 40px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-card-content {
        padding: 20px;
    }

    .hero-card .price-big {
        font-size: 2rem;
    }

    .btn-lg {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
        white-space: normal;
    }

    .provider-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .features-grid-4 {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .back-to-top {
        bottom: 16px;
        right: 16px;
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .logo img {
        width: 32px;
        height: 32px;
    }

    .finder-box {
        padding: 18px;
    }

    .finder-box h2 {
        font-size: 1.4rem;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .error-actions {
        flex-direction: column;
        align-items: center;
    }

    .error-actions .btn {
        width: 100%;
        max-width: 280px;
    }

    .legal-content {
        padding: 20px 0;
    }

    .legal-content h1 {
        font-size: 2rem;
    }

    .legal-content h2 {
        font-size: 1.2rem;
    }

    .cta-section {
        padding: 40px 0 50px;
    }

    .cta-section h2 {
        font-size: 1.6rem;
    }

    .retailer-notice {
        padding: 8px 0;
    }

    .retailer-notice-content {
        font-size: 0.65rem;
    }

    .footer-notice p {
        font-size: 0.65rem;
    }

    .top-bar {
        font-size: 0.7rem;
    }

    .top-bar-flex {
        gap: 4px;
    }
}

/* ─── Extra Small (Below 360px) ─── */
@media (max-width: 360px) {
    .hero h1 {
        font-size: 1.5rem;
    }

    .hero-badge {
        font-size: 0.7rem;
        padding: 4px 12px;
    }

    .btn {
        font-size: 0.8rem;
        padding: 10px 16px;
    }

    .btn-lg {
        font-size: 0.85rem;
        padding: 10px 16px;
    }
}

/* ═══ 27. UTILITY CLASSES ═══ */

/* ─── Text ─── */
.text-center {
    text-align: center;
}
.text-left {
    text-align: left;
}
.text-right {
    text-align: right;
}

.text-primary {
    color: var(--primary);
}
.text-secondary {
    color: var(--secondary);
}
.text-success {
    color: var(--success);
}
.text-gold {
    color: var(--gold);
}
.text-gray {
    color: var(--gray);
}
.text-white {
    color: var(--white);
}

/* ─── Font Weight ─── */
.fw-400 {
    font-weight: 400;
}
.fw-500 {
    font-weight: 500;
}
.fw-600 {
    font-weight: 600;
}
.fw-700 {
    font-weight: 700;
}
.fw-800 {
    font-weight: 800;
}
.fw-900 {
    font-weight: 900;
}

/* ─── Spacing ─── */
.m-0 {
    margin: 0;
}
.m-1 {
    margin: var(--spacing-sm);
}
.m-2 {
    margin: var(--spacing-md);
}
.m-3 {
    margin: var(--spacing-lg);
}
.m-4 {
    margin: var(--spacing-xl);
}

.mt-1 {
    margin-top: var(--spacing-sm);
}
.mt-2 {
    margin-top: var(--spacing-md);
}
.mt-3 {
    margin-top: var(--spacing-lg);
}
.mt-4 {
    margin-top: var(--spacing-xl);
}
.mt-5 {
    margin-top: var(--spacing-2xl);
}

.mb-1 {
    margin-bottom: var(--spacing-sm);
}
.mb-2 {
    margin-bottom: var(--spacing-md);
}
.mb-3 {
    margin-bottom: var(--spacing-lg);
}
.mb-4 {
    margin-bottom: var(--spacing-xl);
}
.mb-5 {
    margin-bottom: var(--spacing-2xl);
}

.p-0 {
    padding: 0;
}
.p-1 {
    padding: var(--spacing-sm);
}
.p-2 {
    padding: var(--spacing-md);
}
.p-3 {
    padding: var(--spacing-lg);
}
.p-4 {
    padding: var(--spacing-xl);
}
.p-5 {
    padding: var(--spacing-2xl);
}

/* ─── Display ─── */
.d-none {
    display: none;
}
.d-block {
    display: block;
}
.d-inline-block {
    display: inline-block;
}
.d-flex {
    display: flex;
}
.d-grid {
    display: grid;
}

/* ─── Flexbox ─── */
.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}
.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.flex-column {
    flex-direction: column;
}
.flex-wrap {
    flex-wrap: wrap;
}
.gap-1 {
    gap: var(--spacing-sm);
}
.gap-2 {
    gap: var(--spacing-md);
}
.gap-3 {
    gap: var(--spacing-lg);
}
.gap-4 {
    gap: var(--spacing-xl);
}

/* ─── Width ─── */
.w-100 {
    width: 100%;
}
.w-50 {
    width: 50%;
}
.w-33 {
    width: 33.333%;
}
.w-25 {
    width: 25%;
}

/* ─── Border Radius ─── */
.rounded-sm {
    border-radius: var(--radius-sm);
}
.rounded {
    border-radius: var(--radius);
}
.rounded-lg {
    border-radius: var(--radius-lg);
}
.rounded-xl {
    border-radius: var(--radius-xl);
}
.rounded-full {
    border-radius: var(--radius-full);
}

/* ─── Shadows ─── */
.shadow-sm {
    box-shadow: var(--shadow-sm);
}
.shadow {
    box-shadow: var(--shadow);
}
.shadow-md {
    box-shadow: var(--shadow-md);
}
.shadow-lg {
    box-shadow: var(--shadow-lg);
}
.shadow-hover {
    transition: var(--transition);
}
.shadow-hover:hover {
    box-shadow: var(--shadow-hover);
}

/* ─── Backgrounds ─── */
.bg-white {
    background: var(--white);
}
.bg-dark {
    background: var(--dark);
}
.bg-primary {
    background: var(--primary);
}
.bg-gray {
    background: var(--bg);
}
.bg-light-gray {
    background: var(--light-gray);
}
.bg-gradient {
    background: linear-gradient(135deg, var(--dark), var(--dark-light));
}
.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

/* ─── Overflow ─── */
.overflow-hidden {
    overflow: hidden;
}
.overflow-auto {
    overflow: auto;
}

/* ─── Position ─── */
.relative {
    position: relative;
}
.absolute {
    position: absolute;
}
.fixed {
    position: fixed;
}
.sticky {
    position: sticky;
}

/* ─── Screen Reader Only ─── */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* ─── Animations ─── */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-slide-up {
    animation: slideUp 0.6s ease forwards;
}

.animate-fade-in {
    animation: fadeIn 0.5s ease forwards;
}

/* ─── Print Styles ─── */
@media print {
    .top-bar,
    .retailer-notice,
    .main-header,
    .footer-notice,
    .footer-social,
    .footer-grid,
    .back-to-top,
    .cookie-consent,
    .cta-section,
    .hero-bg {
        display: none !important;
    }

    .hero {
        background: var(--white) !important;
        color: var(--dark) !important;
        padding: 20px 0 !important;
    }

    .hero h1 {
        color: var(--dark) !important;
    }

    .hero h1 span {
        -webkit-text-fill-color: var(--primary) !important;
    }

    .hero p {
        color: var(--gray-dark) !important;
    }

    .container {
        max-width: 100% !important;
        padding: 0 !important;
    }

    .provider-card,
    .testimonial-card,
    .blog-card {
        break-inside: avoid;
        page-break-inside: avoid;
        box-shadow: none !important;
        border: 1px solid #ddd !important;
    }

    body {
        background: var(--white) !important;
        color: var(--dark) !important;
    }
}

/* ═══ END OF STYLESHEET ═══ */