/* ============================================================
   PJL TELECOM — SHARED DESIGN SYSTEM ("Sharpened Navy")
   Loaded by every page. Page-specific styles stay inline
   in each page's <style> block.
   Cache-bust by bumping ?v= in the <link> tag.
   ============================================================ */

/* ============================================
   RESET & TOKENS
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy-primary: #1B2B4B;
    --navy-dark: #0F1829;
    --navy-mid: #16223C;
    --blue-accent: #3B82F6;
    --blue-strong: #1D4ED8;
    --blue-light: #60A5FA;
    --blue-lighter: #DBEAFE;
    --white: #FFFFFF;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-900: #111827;
    --green-success: #10B981;
    --red-error: #EF4444;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 5rem;
    --spacing-3xl: 8rem;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--gray-900);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--navy-dark);
}

h1 { font-size: 3.5rem; font-weight: 800; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.5rem; }

p { color: var(--gray-900); }

@media (max-width: 768px) {
    h1 { font-size: 2.25rem; }
    h2 { font-size: 1.875rem; }
}

/* ============================================
   UTILITIES
   ============================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

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

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

.section-alt {
    background: var(--gray-50);
}

.eyebrow {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--blue-accent);
    margin-bottom: 0.75rem;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-top: var(--spacing-md);
    line-height: 1.7;
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.features-grid .fade-in:nth-child(1),
.problem-cards .fade-in:nth-child(1) { transition-delay: 0s; }
.features-grid .fade-in:nth-child(2),
.problem-cards .fade-in:nth-child(2) { transition-delay: 0.1s; }
.features-grid .fade-in:nth-child(3),
.problem-cards .fade-in:nth-child(3) { transition-delay: 0.2s; }
.features-grid .fade-in:nth-child(4),
.problem-cards .fade-in:nth-child(4) { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
    .fade-in {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.0625rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    text-align: center;
    font-family: var(--font-family);
}

.btn:focus-visible {
    outline: 3px solid var(--blue-light);
    outline-offset: 2px;
}

.btn-primary {
    background: var(--blue-strong);
    color: var(--white);
    box-shadow: 0 4px 14px 0 rgba(29, 78, 216, 0.4);
}

.btn-primary:hover {
    background: #1E40AF;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(30, 64, 175, 0.5);
}

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

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

.btn-white {
    background: var(--white);
    color: var(--navy-primary);
    box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
    background: var(--gray-50);
    transform: translateY(-2px);
}

.btn-login {
    display: inline-block;
    padding: 0.625rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    background: var(--gray-100);
    color: var(--navy-primary);
    border: 2px solid var(--gray-200);
}

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

.btn-store {
    display: inline-block;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    background: var(--green-success);
    color: var(--white) !important;
    border: 2px solid var(--green-success);
}

.btn-store:hover {
    background: #059669;
    border-color: #059669;
    color: var(--white) !important;
    transform: translateY(-2px);
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo img {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-xl);
    align-items: center;
}

.nav-menu a {
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--blue-accent);
}

.nav-cta {
    margin-left: var(--spacing-md);
}

.nav-cta .btn {
    padding: 0.625rem 1.5rem;
    font-size: 0.9375rem;
    color: var(--white) !important;
}

.nav-store,
.nav-login,
.nav-cta {
    margin-left: -0.5rem;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--navy-primary);
    cursor: pointer;
    padding: 0.5rem;
}

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

.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    cursor: pointer;
}

.nav-dropdown-toggle .dropdown-arrow {
    font-size: 0.625rem;
    transition: transform 0.2s ease;
    display: inline-block;
}

.nav-dropdown:hover .dropdown-arrow,
.nav-dropdown.open .dropdown-arrow {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12), 0 2px 6px rgba(0, 0, 0, 0.06);
    min-width: 220px;
    padding: 0.5rem;
    list-style: none;
    z-index: 1001;
    border: 1px solid var(--gray-200);
}

.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -0.5rem;
    left: 0;
    right: 0;
    height: 0.5rem;
    background: transparent;
}

.nav-dropdown:hover .nav-dropdown-menu {
    display: block;
}

.nav-dropdown-menu li {
    padding: 0;
    border: none;
}

.nav-dropdown-menu a {
    display: block;
    padding: 0.625rem 1rem;
    color: var(--gray-700) !important;
    font-size: 0.9375rem !important;
    font-weight: 500;
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: all 0.15s ease;
    white-space: nowrap;
}

.nav-dropdown-menu a:hover {
    background: var(--gray-100);
    color: var(--blue-accent) !important;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        gap: 0;
        padding: var(--spacing-lg);
        box-shadow: var(--shadow-lg);
        transform: translateX(100%);
        transition: transform 0.3s ease;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-menu li {
        width: 100%;
        padding: var(--spacing-sm) 0;
        border-bottom: 1px solid var(--gray-200);
    }

    .nav-cta {
        margin-left: 0;
        margin-top: var(--spacing-md);
    }

    .nav-cta .btn {
        width: 100%;
    }

    .nav-store,
    .nav-login {
        margin-left: 0;
    }

    .btn-store {
        width: 100%;
        text-align: center;
    }

    .nav-dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        border: none;
        border-radius: 0;
        min-width: auto;
        padding: 0;
        padding-left: 1rem;
        background: transparent;
        display: none;
    }

    .nav-dropdown-menu::before {
        display: none;
    }

    .nav-dropdown.open .nav-dropdown-menu {
        display: block;
    }

    .nav-dropdown:hover .nav-dropdown-menu {
        display: none;
    }

    .nav-dropdown.open:hover .nav-dropdown-menu {
        display: block;
    }

    .nav-dropdown-menu li {
        border-bottom: 1px solid var(--gray-100) !important;
    }

    .nav-dropdown-menu li:last-child {
        border-bottom: none !important;
    }

    .nav-dropdown-menu a {
        padding: 0.75rem 0.5rem;
        border-radius: 0;
        font-size: 0.9375rem !important;
    }

    .nav-dropdown-toggle .dropdown-arrow {
        margin-left: auto;
    }

    .nav-dropdown > a.nav-dropdown-toggle {
        display: flex;
        width: 100%;
        justify-content: space-between;
    }
}

/* ============================================
   HERO — deep navy, subtle signal texture
   ============================================ */
.hero {
    padding-top: 160px;
    padding-bottom: var(--spacing-3xl);
    background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy-mid) 55%, var(--navy-primary) 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -20%;
    width: 80%;
    height: 160%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.16) 0%, transparent 60%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(96, 165, 250, 0.12) 1px, transparent 1px);
    background-size: 28px 28px;
    mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.7) 40%, transparent 100%);
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.7) 40%, transparent 100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
}

.hero h1 {
    color: var(--white);
    margin-bottom: var(--spacing-lg);
    line-height: 1.1;
}

.hero-subheadline {
    font-size: 1.375rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--spacing-xl);
    line-height: 1.7;
    font-weight: 400;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--spacing-xl);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-2xl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.stat-badge {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: var(--spacing-lg);
    border-radius: var(--radius-xl);
    transition: all 0.3s ease;
}

.stat-badge:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-4px);
}

.stat-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--white);
    display: block;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.85);
}

/* Split hero variant — copy left, visual right */
.hero--split {
    min-height: 0;
}

.hero--split .hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

.hero--split .hero-content {
    text-align: left;
    margin: 0;
    max-width: none;
}

.hero--split .hero-subheadline {
    margin-left: 0;
    margin-right: 0;
}

.hero--split .hero-cta {
    justify-content: flex-start;
}

.hero-checklist {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem var(--spacing-md);
    margin-top: var(--spacing-xl);
    list-style: none;
}

.hero-checklist li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.9375rem;
    font-weight: 500;
}

.hero-checklist svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--green-success);
}

.hero-visual {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
}

.hero-visual svg {
    width: 100%;
    max-width: 480px;
    height: auto;
}

@media (max-width: 900px) {
    .hero--split .hero-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }

    .hero-visual {
        order: -1;
    }

    .hero-visual svg {
        max-width: 340px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding-top: 120px;
        padding-bottom: var(--spacing-2xl);
    }

    .hero-subheadline {
        font-size: 1.125rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero--split .hero-cta {
        flex-direction: column;
    }

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

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
    background: var(--white);
    padding: var(--spacing-xl) 0;
    border-bottom: 1px solid var(--gray-200);
}

.trust-text {
    text-align: center;
    color: var(--gray-600);
    font-size: 1.0625rem;
    font-weight: 500;
}

/* ============================================
   ICON TILES (SVG replacement for emoji icons)
   ============================================ */
.icon-tile {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-lg);
    background: var(--blue-lighter);
    color: var(--blue-strong);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    flex-shrink: 0;
}

.icon-tile svg {
    width: 28px;
    height: 28px;
}

.icon-tile--center {
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   CARD SECTIONS (problem / features / generic)
   ============================================ */
.problem-section {
    background: var(--white);
    padding: var(--spacing-3xl) 0;
}

.problem-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-2xl);
}

.problem-card {
    text-align: center;
    padding: var(--spacing-xl);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    background: var(--white);
    transition: all 0.3s ease;
}

.problem-card:hover {
    border-color: var(--blue-accent);
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
}

.problem-card h3 {
    margin-bottom: var(--spacing-sm);
    color: var(--navy-primary);
}

.problem-card p {
    font-size: 1rem;
    line-height: 1.7;
}

.features-preview {
    background: var(--gray-50);
    padding: var(--spacing-3xl) 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-2xl);
}

.feature-card {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
}

.feature-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
    border-color: var(--blue-accent);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--blue-accent), var(--blue-light));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
}

.feature-card h3 {
    margin-bottom: var(--spacing-sm);
}

.feature-card p {
    line-height: 1.7;
}

.features-cta {
    text-align: center;
    margin-top: var(--spacing-2xl);
}

/* ============================================
   COMPARISON TABLE / STRIP
   ============================================ */
.compare-section {
    background: var(--white);
    padding: var(--spacing-2xl) 0 var(--spacing-3xl);
}

.compare-table-wrap {
    overflow-x: auto;
    margin-top: var(--spacing-xl);
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-lg);
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    font-size: 1rem;
    min-width: 560px;
}

.compare-table th,
.compare-table td {
    padding: 1rem 1.25rem;
    text-align: left;
    border-bottom: 1px solid var(--gray-200);
}

.compare-table thead th {
    background: var(--gray-50);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gray-600);
}

.compare-table tbody tr:last-child td {
    border-bottom: none;
}

.compare-table .compare-col-pjl {
    background: rgba(219, 234, 254, 0.45);
    font-weight: 600;
    color: var(--navy-primary);
}

.compare-table thead .compare-col-pjl {
    background: var(--navy-primary);
    color: var(--white);
}

.compare-check {
    color: var(--green-success);
    font-weight: 700;
}

.compare-cross {
    color: var(--red-error);
    font-weight: 700;
}

.compare-note {
    margin-top: var(--spacing-md);
    text-align: center;
    color: var(--gray-600);
    font-size: 0.875rem;
}

/* ============================================
   SAVINGS CALCULATOR
   ============================================ */
.calc-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    margin-top: var(--spacing-xl);
}

.calc-inputs {
    padding: var(--spacing-xl);
}

.calc-field {
    margin-bottom: var(--spacing-md);
}

.calc-field label {
    display: block;
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--navy-primary);
    margin-bottom: 0.375rem;
}

.calc-field input,
.calc-field select {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1.0625rem;
    font-family: var(--font-family);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    color: var(--gray-900);
    background: var(--white);
    transition: border-color 0.2s ease;
}

.calc-field input:focus,
.calc-field select:focus {
    outline: none;
    border-color: var(--blue-accent);
}

.calc-hint {
    font-size: 0.8125rem;
    color: var(--gray-600);
    margin-top: 0.375rem;
}

.calc-result {
    background: linear-gradient(160deg, var(--navy-dark), var(--navy-primary));
    color: var(--white);
    padding: var(--spacing-xl);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: var(--spacing-md);
}

.calc-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: var(--spacing-sm);
}

.calc-row-label {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.8);
}

.calc-row-value {
    font-size: 1.375rem;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}

.calc-row--savings {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: var(--spacing-md);
}

.calc-row--savings .calc-row-value {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--green-success);
}

.calc-disclaimer {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.5;
}

.calc-result .btn {
    margin-top: var(--spacing-sm);
}

@media (max-width: 768px) {
    .calc-card {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   INDUSTRY TILES ("Who we serve")
   ============================================ */
.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-2xl);
}

.industry-tile {
    display: block;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: var(--spacing-lg);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.industry-tile:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--blue-accent);
}

.industry-tile h3 {
    font-size: 1.125rem;
    color: var(--navy-primary);
    margin-bottom: 0.375rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.industry-tile h3::after {
    content: '\2192';
    color: var(--blue-accent);
    font-size: 1rem;
    transition: transform 0.2s ease;
}

.industry-tile:hover h3::after {
    transform: translateX(4px);
}

.industry-tile p {
    color: var(--gray-600);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.industry-tile .icon-tile {
    width: 44px;
    height: 44px;
    margin-bottom: var(--spacing-sm);
}

.industry-tile .icon-tile svg {
    width: 22px;
    height: 22px;
}

/* ============================================
   OWNER / REAL-PERSON SECTION
   ============================================ */
.owner-section {
    background: var(--gray-50);
    padding: var(--spacing-3xl) 0;
}

.owner-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: var(--spacing-xl);
    max-width: 900px;
    margin: 0 auto;
}

.owner-photo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, var(--navy-primary), var(--blue-accent));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 800;
    flex-shrink: 0;
}

.owner-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.owner-body h3 {
    margin-bottom: var(--spacing-sm);
}

.owner-body p {
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: var(--spacing-sm);
}

.owner-meta {
    color: var(--gray-600);
    font-size: 0.9375rem;
}

.owner-meta a {
    color: var(--blue-strong);
    font-weight: 600;
    text-decoration: none;
}

.owner-meta a:hover {
    text-decoration: underline;
}

@media (max-width: 700px) {
    .owner-card {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
    }
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial-section {
    background: var(--white);
    padding: var(--spacing-3xl) 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-2xl);
}

.testimonial-card {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    border-top: 3px solid var(--blue-accent);
    transition: all 0.3s ease;
}

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

.testimonial-quote {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: var(--spacing-xl);
    position: relative;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--navy-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.0625rem;
    flex-shrink: 0;
}

.author-info {
    flex: 1;
}

.author-name {
    font-weight: 600;
    color: var(--navy-primary);
    font-size: 1.0625rem;
    margin-bottom: 0.25rem;
}

.author-title {
    color: var(--gray-600);
    font-size: 0.9375rem;
}

/* ============================================
   BLOG CARDS
   ============================================ */
.blog-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
}

.blog-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: var(--spacing-md);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    display: block;
}

.blog-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--blue-accent);
}

.blog-card-tag {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--blue-accent);
}

.blog-card h3 {
    font-size: 1.125rem;
    margin: 0.5rem 0;
    color: var(--navy-dark);
}

.blog-card p {
    color: var(--gray-600);
    font-size: 0.9375rem;
    margin: 0;
}

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
    background: linear-gradient(160deg, var(--navy-primary), var(--blue-strong));
    color: var(--white);
    text-align: center;
    padding: var(--spacing-3xl) 0;
}

.final-cta h2 {
    color: var(--white);
    margin-bottom: var(--spacing-md);
}

.final-cta p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto var(--spacing-xl);
    line-height: 1.7;
}

.final-cta-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

.final-cta .btn-secondary {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.6);
}

.final-cta .btn-secondary:hover {
    background: var(--white);
    color: var(--navy-primary);
    border-color: var(--white);
}

@media (max-width: 768px) {
    .final-cta-buttons {
        flex-direction: column;
        max-width: 300px;
        margin: 0 auto;
    }
}

/* ============================================
   STICKY CTA BAR
   ============================================ */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--navy-dark);
    padding: var(--spacing-md) var(--spacing-lg);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sticky-cta.visible {
    transform: translateY(0);
}

.sticky-cta-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-md);
}

.sticky-cta-text {
    color: var(--white);
    font-weight: 600;
    font-size: 1.0625rem;
}

.sticky-cta-actions {
    display: flex;
    gap: var(--spacing-md);
}

@media (max-width: 768px) {
    .sticky-cta {
        display: none;
    }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--navy-dark);
    color: rgba(255, 255, 255, 0.95);
    padding: var(--spacing-2xl) 0 var(--spacing-lg);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-column h3 {
    color: var(--white);
    margin-bottom: var(--spacing-md);
    font-size: 1.0625rem;
    font-weight: 600;
}

.footer-logo {
    margin-bottom: var(--spacing-md);
}

.footer-logo img {
    height: 35px;
    width: auto;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9375rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--spacing-sm);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--blue-light);
}

.footer-contact p {
    margin-bottom: var(--spacing-sm);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--blue-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-md);
    margin-top: var(--spacing-xl);
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.footer-bottom-links {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 0.75rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--blue-light);
}

/* ============================================
   GLOBAL RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .section {
        padding: var(--spacing-2xl) 0;
    }

    .problem-section,
    .features-preview,
    .testimonial-section,
    .owner-section {
        padding: var(--spacing-2xl) 0;
    }

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