/*
Theme Name: Denver Willis Consulting
Theme URI: https://denverwillisconsulting.com
Author: SimonTodd
Author URI: https://simontodd.design
Description: A mobile-first WordPress theme for Denver Willis Consulting - Environmental and utilities consultancy. Features custom post types for services, case studies, and testimonials with full Customizer integration, modern admin interfaces, and comprehensive block support.
Version: 2.9.27
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: dwc-theme
Tags: business, one-column, two-columns, custom-colors, custom-menu, custom-logo, featured-images, full-width-template, theme-options, translation-ready

Denver Willis Consulting WordPress Theme
Brand Colors: Navy #1B3A5F, Teal #2B7A78, Dark Teal #17505E
Typography: Plus Jakarta Sans (headings), DM Sans (body)
*/

/* ============================================
   CSS Variables
   ============================================ */
:root {
    /* Brand Colors */
    --navy: #1B3A5F;
    --navy-dark: #142942;
    --navy-light: #2a4a6f;
    --teal: #2B7A78;
    --teal-dark: #17505E;
    --teal-light: #3d9896;
    
    /* Neutrals */
    --white: #FFFFFF;
    --off-white: #F8F9FA;
    --light-gray: #E9ECEF;
    --medium-gray: #5A6268;
    --dark-gray: #333333;
    --black: #1A1A1A;
    
    /* Typography */
    --font-heading: 'Plus Jakarta Sans', 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    
    /* Layout */
    --container-max: 1200px;
    --container-wide: 1400px;
    --header-height: 80px;
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms ease;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(27, 58, 95, 0.05);
    --shadow-md: 0 4px 12px rgba(27, 58, 95, 0.08);
    --shadow-lg: 0 8px 30px rgba(27, 58, 95, 0.12);
    --shadow-xl: 0 20px 50px rgba(27, 58, 95, 0.15);
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
}

/* ============================================
   Reset & Base (Mobile First)
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
}

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

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

/* Buttons should not inherit color */
a.btn {
    color: initial;
}

ul, ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ============================================
   Accessibility Utilities
   ============================================ */
/* Screen reader only - visually hidden but accessible */
.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;
}

/* Skip link for keyboard navigation */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--navy);
    color: var(--white);
    padding: var(--space-sm) var(--space-md);
    z-index: 10000;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 0;
}

/* Focus styles for accessibility */
:focus-visible {
    outline: 2px solid var(--teal);
    outline-offset: 2px;
}

/* Minimum touch target size */
button, 
a.btn,
input[type="submit"],
input[type="button"],
.nav-link,
.mobile-menu-toggle {
    min-height: 44px;
    min-width: 44px;
}

/* ============================================
   Typography
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--navy);
}

h1 { font-size: clamp(2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.75rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: var(--space-md);
}

p:last-child {
    margin-bottom: 0;
}

.lead {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--medium-gray);
}

/* ============================================
   Layout
   ============================================ */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.container-wide {
    max-width: var(--container-wide);
}

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

.section-alt {
    background-color: var(--off-white);
}

.section-dark {
    background-color: var(--navy);
    color: var(--white);
}

.section-dark .btn-white {
    background-color: #ffffff;
    color: #1B3A5F !important;
    border-color: #ffffff;
}

.section-dark .btn-outline-white,
.section-dark .btn-outline-light {
    background-color: transparent;
    color: #ffffff !important;
    border-color: #ffffff;
}

.section-dark .btn-outline-white:hover,
.section-dark .btn-outline-light:hover {
    background-color: #ffffff;
    color: #1B3A5F !important;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 0.875rem 1.75rem;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1;
    text-align: center;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    cursor: pointer;
    border: 2px solid transparent;
    text-decoration: none;
    position: relative;
}

.btn-primary {
    background-color: var(--navy);
    color: var(--white) !important;
    border-color: var(--navy);
}

.btn-primary:hover {
    background-color: var(--navy-dark);
    border-color: var(--navy-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: transparent;
    color: var(--navy) !important;
    border-color: var(--navy);
}

.btn-secondary:hover {
    background-color: var(--navy);
    color: var(--white) !important;
}

.btn-outline {
    background-color: transparent;
    color: var(--teal) !important;
    border-color: var(--teal);
}

.btn-outline:hover {
    background-color: var(--teal);
    color: var(--white) !important;
}

.btn-white {
    background-color: #ffffff;
    color: #1B3A5F !important;
    border-color: #ffffff;
}

.btn-white:hover {
    background-color: #f5f7fa;
    color: #1B3A5F !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline-white {
    background-color: transparent;
    color: #ffffff !important;
    border-color: #ffffff;
}

.btn-outline-white:hover {
    background-color: #ffffff;
    color: #1B3A5F !important;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-sm {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
}

/* ============================================
   Header (Mobile First)
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    background-color: var(--white);
    z-index: 1000;
    transition: all var(--transition-base);
}

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

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 var(--space-md);
    max-width: var(--container-max);
    margin: 0 auto;
}

/* Logo with SVG icon */
.site-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.site-logo .logo-icon {
    height: 40px;
    width: auto;
}

.site-logo .logo-text {
    display: flex;
    flex-direction: column;
}

.site-logo .logo-name {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--navy);
    line-height: 1.2;
}

.site-logo .logo-tagline {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.6rem;
    color: var(--teal);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Navigation - Hidden on mobile */
.main-nav {
    display: none;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-list > li {
    position: relative;
}

.nav-link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--dark-gray);
    padding: var(--space-sm) 0;
    position: relative;
    text-decoration: none;
    display: block;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--teal);
    transition: width var(--transition-base);
}

.nav-link:hover::after,
.current-menu-item > .nav-link::after,
.current-page-ancestor > .nav-link::after,
.current_page_item > .nav-link::after {
    width: 100%;
}

.nav-link:hover,
.current-menu-item > .nav-link,
.current-page-ancestor > .nav-link,
.current_page_item > .nav-link {
    color: var(--navy);
}

/* Dropdown arrow */
.dropdown-arrow {
    font-size: 0.7rem;
    margin-left: 0.25rem;
    color: var(--medium-gray);
    transition: transform var(--transition-fast);
}

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

/* Mega Menu */
.nav-dropdown {
    position: relative;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background-color: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: var(--space-lg);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    min-width: 480px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    z-index: 1000;
}

.nav-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-menu-column {
    min-width: 180px;
}

.mega-menu-heading {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--teal);
    margin: 0 0 var(--space-md) 0;
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid var(--light-gray);
}

.mega-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mega-menu-list li {
    margin: 0;
}

.mega-menu-list a {
    display: block;
    padding: var(--space-sm) 0;
    font-size: 0.9375rem;
    color: var(--dark-gray);
    transition: color var(--transition-fast);
    text-decoration: none;
}

.mega-menu-list a:hover {
    color: var(--navy);
}

/* Hide sub-menu (WordPress default) */
.sub-menu {
    display: none;
}

/* Header CTA - Hidden on mobile */
.header-cta {
    display: none;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--navy);
}

.phone-link svg {
    color: var(--teal);
}

/* Mobile Menu Toggle - Modern Hamburger */
.mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    cursor: pointer;
    background: var(--off-white);
    border: none;
    border-radius: var(--radius-md);
    padding: 0;
    transition: all var(--transition-fast);
}

.mobile-menu-toggle:hover {
    background: var(--light-gray);
}

.mobile-menu-toggle-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 16px;
    position: relative;
}

.mobile-menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background-color: var(--navy);
    border-radius: 1px;
    transition: all var(--transition-base);
    position: absolute;
    left: 0;
}

.mobile-menu-toggle span:nth-child(1) {
    top: 0;
}

.mobile-menu-toggle span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.mobile-menu-toggle span:nth-child(3) {
    bottom: 0;
}

.mobile-menu-toggle.active {
    background: var(--navy);
}

.mobile-menu-toggle.active span {
    background-color: var(--white);
}

.mobile-menu-toggle.active span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateY(-50%) scaleX(0);
}

.mobile-menu-toggle.active span:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

/* Mobile Navigation - Slide-in Panel */
.mobile-nav {
    position: fixed;
    top: 70px; /* Start below fixed header */
    right: -100%;
    width: 100%;
    max-width: 300px;
    height: calc(100vh - 70px);
    height: calc(100dvh - 70px);
    background: var(--white);
    z-index: 999;
    overflow: hidden;
    transition: right 0.3s ease;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--light-gray);
}

.mobile-nav.active {
    right: 0;
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(27, 58, 95, 0.4);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Nav Content */
.mobile-nav-content {
    flex: 1;
    overflow-y: auto;
    padding: 0;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-list > li {
    border-bottom: 1px solid var(--light-gray);
}

.mobile-nav-list > li:last-child {
    border-bottom: none;
}

.mobile-nav-list > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md) var(--space-lg);
    font-size: 1rem;
    font-weight: 500;
    color: var(--dark-gray);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.mobile-nav-list > li > a:hover {
    color: var(--navy);
    background: var(--off-white);
}

.mobile-nav-list > li > a.current {
    color: var(--navy);
    background: var(--off-white);
    border-left: 3px solid var(--teal);
}

/* Services Dropdown Toggle */
.mobile-nav-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: var(--space-md) var(--space-lg);
    font-size: 1rem;
    font-weight: 500;
    color: var(--dark-gray);
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all var(--transition-fast);
}

.mobile-nav-dropdown-toggle:hover {
    color: var(--navy);
    background: var(--off-white);
}

.mobile-nav-dropdown-toggle svg {
    width: 16px;
    height: 16px;
    stroke: var(--medium-gray);
    transition: transform var(--transition-fast);
}

.mobile-nav-dropdown-toggle.active svg {
    transform: rotate(180deg);
}

/* Mobile Nav Submenu */
.mobile-nav-submenu {
    display: none;
    background: var(--off-white);
    padding: var(--space-sm) 0;
}

.mobile-nav-submenu.active {
    display: block;
}

.mobile-nav-submenu-section {
    padding: var(--space-sm) var(--space-lg);
}

.mobile-nav-submenu-title {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--teal);
    margin-bottom: var(--space-sm);
    padding-bottom: var(--space-xs);
    border-bottom: 1px solid rgba(43, 122, 120, 0.2);
}

.mobile-nav-submenu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2px;
}

.mobile-nav-submenu-list a {
    display: block;
    padding: var(--space-sm) var(--space-sm);
    font-size: 0.9375rem;
    color: var(--dark-gray);
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.mobile-nav-submenu-list a:hover {
    color: var(--navy);
    background: var(--white);
}

/* Mobile Nav Footer (CTA section) */
.mobile-nav-footer {
    flex-shrink: 0;
    padding: var(--space-lg);
    background: var(--navy);
    margin-top: auto;
}

.mobile-nav-footer .btn {
    width: 100%;
    justify-content: center;
    margin-bottom: var(--space-sm);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.mobile-nav-footer .btn:last-of-type {
    margin-bottom: 0;
}

.mobile-nav-footer .btn svg {
    flex-shrink: 0;
}

.mobile-nav-footer .btn-primary {
    background: var(--teal);
    border-color: var(--teal);
    color: var(--white) !important;
}

.mobile-nav-footer .btn-primary:hover {
    background: var(--teal-dark);
    border-color: var(--teal-dark);
}

.mobile-nav-footer .btn-secondary {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--white) !important;
}

.mobile-nav-footer .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.mobile-nav-contact {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    padding-top: var(--space-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: var(--space-md);
}

.mobile-nav-contact a {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.mobile-nav-contact a:hover {
    color: var(--white);
}

.mobile-nav-contact svg {
    width: 16px;
    height: 16px;
    stroke: var(--teal-light);
}

.mobile-nav-cta .btn {
    width: 100%;
    margin-bottom: var(--space-md);
}

/* ============================================
   Hero Section (Mobile First)
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 70px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, #f8fafa 0%, #ffffff 100%);
    overflow: hidden;
}

/* Subtle gradient accents */
.hero-gradient {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 100% 80% at 80% 30%, rgba(43, 122, 120, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse 60% 60% at 10% 80%, rgba(27, 58, 95, 0.03) 0%, transparent 50%);
}

/* Elegant topographic wave pattern */
.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.4;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 800' preserveAspectRatio='xMidYMid slice'%3E%3Cdefs%3E%3ClinearGradient id='w' x1='0%25' y1='0%25' x2='100%25' y2='0%25'%3E%3Cstop offset='0%25' stop-color='%232B7A78' stop-opacity='0.12'/%3E%3Cstop offset='50%25' stop-color='%231B3A5F' stop-opacity='0.08'/%3E%3Cstop offset='100%25' stop-color='%232B7A78' stop-opacity='0.12'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg fill='none' stroke='url(%23w)' stroke-width='1'%3E%3Cpath d='M-100 650 Q300 600 600 650 T1100 630 T1600 660'/%3E%3Cpath d='M-100 550 Q300 500 600 550 T1100 530 T1600 560'/%3E%3Cpath d='M-100 450 Q300 400 600 450 T1100 430 T1600 460'/%3E%3Cpath d='M-100 350 Q300 300 600 350 T1100 330 T1600 360'/%3E%3Cpath d='M-100 250 Q300 200 600 250 T1100 230 T1600 260'/%3E%3Cpath d='M-100 150 Q300 100 600 150 T1100 130 T1600 160'/%3E%3C/g%3E%3C/svg%3E");
    background-size: cover;
    background-position: center bottom;
}

/* Custom background image from customizer */
.hero-bg-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Hide old animated elements */
.hero-shapes,
.hero-grid-pattern,
.hero-decorations {
    display: none !important;
}

.hero-container {
    display: flex;
    flex-direction: column;
    gap: var(--space-2xl);
    padding: var(--space-2xl) var(--space-md);
    text-align: center;
}

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

.hero-tagline {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--teal);
    margin-bottom: var(--space-md);
}

.hero-title {
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--space-lg);
    color: var(--navy);
}

.hero-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--medium-gray);
    margin-bottom: var(--space-xl);
}

.hero-ctas {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

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

/* Hero Graphic - Chart/Infographic */
.hero-graphic {
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-lg);
    display: flex;
    justify-content: center;
    position: relative;
}

/* Subtle divider line below chart */
.hero-graphic::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(43, 122, 120, 0.2), transparent);
}

/* Hide divider when disabled */
.hero-graphic.no-divider::after {
    display: none;
}

.hero-graphic.no-divider {
    padding-bottom: var(--space-md);
}

.hero-chart {
    text-align: center;
}

.chart-svg {
    width: 100%;
    max-width: 380px;
    height: auto;
}

/* Chart animations */
.chart-line {
    stroke-dasharray: 500;
    stroke-dashoffset: 500;
    animation: drawLine 1.5s ease-out forwards;
    animation-delay: 0.3s;
}

.chart-area {
    opacity: 0;
    animation: fadeIn 0.8s ease-out forwards;
    animation-delay: 1s;
}

.chart-point {
    opacity: 0;
    transform-origin: center;
    animation: popIn 0.3s ease-out forwards;
}

.chart-point-1 { animation-delay: 0.5s; }
.chart-point-2 { animation-delay: 0.7s; }
.chart-point-3 { animation-delay: 0.9s; }
.chart-point-4 { animation-delay: 1.1s; }
.chart-point-5 { animation-delay: 1.3s; }
.chart-point-6 { animation-delay: 1.5s; }

@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes popIn {
    0% {
        opacity: 0;
        transform: scale(0);
    }
    70% {
        transform: scale(1.2);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.chart-label {
    display: block;
    margin-top: var(--space-sm);
    font-size: 0.75rem;
    color: var(--medium-gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

/* Hero Brand Mark (W Icon) */
.hero-brand-mark {
    display: flex;
    justify-content: center;
    align-items: center;
}

.brand-w-icon {
    width: 120px;
    height: 100px;
}

.brand-w-path {
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    animation: drawW 1.2s ease-out forwards;
    animation-delay: 0.3s;
}

@keyframes drawW {
    to {
        stroke-dashoffset: 0;
    }
}

/* Clean inline stats with dividers */
.hero-stats {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    align-items: center;
}

.stat-item {
    text-align: center;
    padding: var(--space-sm) 0;
}

.stat-divider {
    display: none;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 2px;
    letter-spacing: -0.01em;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--medium-gray);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
}

/* Hero Background Image */
.hero-bg-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Hero Scroll Indicator - Hidden on mobile */
.hero-scroll {
    display: none;
}





/* ============================================
   Section Headers
   ============================================ */
.section-header {
    margin-bottom: var(--space-2xl);
    text-align: center;
}

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

.section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--teal);
    margin-bottom: var(--space-md);
}

.section-label-light {
    color: var(--teal-light);
}

.section-title {
    margin-bottom: var(--space-md);
}

.section-title-light {
    color: var(--white);
}

.section-description {
    font-size: 1rem;
    color: var(--medium-gray);
    max-width: 600px;
    margin: 0 auto;
}

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

/* ============================================
   Services Grid (Mobile First)
   ============================================ */
.services-overview {
    position: relative;
}

.services-overview::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(43, 122, 120, 0.03) 100%);
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

.service-card {
    display: block;
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    border: 1px solid var(--light-gray);
    border-left: 3px solid transparent;
    transition: all var(--transition-base);
}

.service-card:hover {
    border-color: var(--light-gray);
    border-left-color: var(--teal);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(43, 122, 120, 0.08);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
    color: var(--teal);
    transition: all var(--transition-base);
}

.service-card:hover .service-icon {
    background: var(--teal);
    color: var(--white);
}

.service-title {
    font-family: var(--font-body);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.service-description {
    font-size: 0.9375rem;
    color: var(--medium-gray);
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

.service-link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--teal);
    transition: color var(--transition-fast);
}

.service-card:hover .service-link {
    color: var(--navy);
}

/* ============================================
   About Preview (Mobile First)
   ============================================ */
.about-preview-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-2xl);
}

.about-preview-text {
    font-size: 1rem;
    color: var(--medium-gray);
    margin-bottom: var(--space-md);
    line-height: 1.7;
}

/* Mission & Vision Statements */
.about-statements {
    margin-top: var(--space-xl);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--light-gray);
}

.about-statement {
    margin-bottom: var(--space-lg);
}

.about-statement:last-child {
    margin-bottom: 0;
}

.about-statement .about-statement-title,
.about-statement h2 {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--teal);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-sm);
}

.about-statement p {
    font-size: 0.9375rem;
    color: var(--medium-gray);
    line-height: 1.7;
    margin: 0;
}

.about-values {
    margin: var(--space-xl) 0;
}

.value-item {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.value-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--teal);
    color: var(--white);
    border-radius: 50%;
}

.value-content .value-title,
.value-content h3 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--space-xs);
}

.value-content p {
    font-size: 0.9375rem;
    color: var(--medium-gray);
    margin: 0;
}

/* About Visual */
.about-preview-visual {
    position: relative;
}

.experience-badge {
    position: absolute;
    top: -20px;
    right: 10px;
    width: 100px;
    height: 100px;
    background: var(--navy);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 10;
    box-shadow: var(--shadow-xl);
}

.experience-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.experience-text {
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.3;
    margin-top: var(--space-xs);
}

.about-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: var(--space-sm);
    height: 300px;
    position: relative;
}

.about-image {
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}

/* Subtle placeholder styling */
.about-image:not([style*="url"]) {
    background: linear-gradient(145deg, #e8eef3 0%, #f5f7fa 100%);
}

.about-image:not([style*="url"])::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border: 2px solid rgba(43, 122, 120, 0.1);
    border-radius: 50%;
}

.about-image-1 {
    grid-column: 1;
    grid-row: 1 / 3;
}

/* Teal accent on second image */
.about-image-2:not([style*="url"]) {
    background: linear-gradient(145deg, rgba(43, 122, 120, 0.08) 0%, rgba(43, 122, 120, 0.04) 100%);
}

.about-image-2:not([style*="url"])::before {
    border-color: rgba(43, 122, 120, 0.15);
}

.about-image-3 {
    background-color: #f0f4f8;
}

/* ============================================
   About Founder Section (New Design)
   ============================================ */
.about-founder {
    padding: var(--space-3xl) 0;
}

.founder-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    align-items: start;
}

.founder-image-wrapper {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.founder-image {
    aspect-ratio: 4/5;
    background-size: cover;
    background-position: center top;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.founder-image-placeholder {
    background: linear-gradient(145deg, #f0f4f8 0%, #e8eef3 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.founder-image-placeholder .placeholder-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    color: var(--medium-gray);
}

.founder-image-placeholder .placeholder-content svg {
    opacity: 0.4;
}

.founder-image-placeholder .placeholder-content span {
    font-size: 0.875rem;
    font-weight: 500;
    opacity: 0.6;
}

.founder-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 110px;
    height: 110px;
    background: var(--navy);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 10;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--white);
}

.founder-badge .badge-number {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1;
}

.founder-badge .badge-text {
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.3;
    margin-top: var(--space-xs);
}

.founder-content {
    padding-top: var(--space-md);
}

.founder-content .section-label {
    display: inline-block;
    margin-bottom: var(--space-sm);
}

.founder-name {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: var(--space-xs);
}

.founder-title {
    font-size: 1.125rem;
    color: var(--teal);
    font-weight: 500;
    margin-bottom: var(--space-lg);
}

.founder-bio p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: var(--space-md);
}

.founder-bio p:last-child {
    margin-bottom: 0;
}

.founder-signature {
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--light-gray);
}

.signature-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--teal), var(--navy));
    margin-bottom: var(--space-sm);
}

.signature-text {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--navy);
}

/* ============================================
   About Approach Section
   ============================================ */
.about-approach {
    background: var(--off-white);
}

.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-2xl);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--medium-gray);
    line-height: 1.7;
    margin-top: var(--space-md);
}

.approach-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

.approach-card {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    border: 1px solid var(--light-gray);
    text-align: center;
    transition: all var(--transition-base);
}

.approach-card:hover {
    border-color: var(--teal);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.approach-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(43, 122, 120, 0.1) 0%, rgba(27, 58, 95, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    color: var(--teal);
}

.approach-card h3 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: var(--space-sm);
}

.approach-card p {
    font-size: 0.9375rem;
    color: var(--medium-gray);
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   About Experience Section
   ============================================ */
.about-experience {
    padding: var(--space-3xl) 0;
}

.experience-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
}

.experience-content .section-label {
    display: inline-block;
    margin-bottom: var(--space-sm);
}

.experience-content h2 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: var(--space-md);
}

.experience-content > p {
    font-size: 1rem;
    color: var(--medium-gray);
    line-height: 1.8;
    margin-bottom: var(--space-xl);
}

.experience-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.experience-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.experience-list li:last-child {
    margin-bottom: 0;
}

.experience-list li svg {
    flex-shrink: 0;
    color: var(--teal);
    margin-top: 2px;
}

.experience-list li span {
    font-size: 0.9375rem;
    color: var(--dark-gray);
    line-height: 1.6;
}

.experience-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

.stat-card {
    background: linear-gradient(145deg, var(--off-white) 0%, var(--white) 100%);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid var(--light-gray);
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--medium-gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.4;
}

/* ============================================
   Industries (Mobile First)
   ============================================ */
.industries-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

.industry-card {
    text-align: center;
    padding: var(--space-xl);
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--light-gray);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--teal), var(--navy));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

.industry-card:hover {
    border-color: var(--teal);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.industry-card:hover::before {
    transform: scaleX(1);
}

.industry-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(43, 122, 120, 0.15), rgba(27, 58, 95, 0.1));
    border-radius: 50%;
    margin-bottom: var(--space-md);
    color: var(--teal);
    position: relative;
}

.industry-icon::after {
    content: '';
    position: absolute;
    inset: -4px;
    border: 2px dashed rgba(43, 122, 120, 0.2);
    border-radius: 50%;
}

.industry-card h3 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.industry-card p {
    font-size: 0.875rem;
    color: var(--medium-gray);
    margin: 0;
}

/* ============================================
   Testimonials (Mobile First)
   ============================================ */
.testimonials {
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 50%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(43, 122, 120, 0.3) 0%, transparent 70%);
    pointer-events: none;
}

.testimonials::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 40%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(23, 80, 94, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.testimonials-slider-wrapper {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.testimonials-slider {
    display: flex;
    gap: var(--space-lg);
    transition: transform 0.5s ease;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    /* Single card on mobile, 2 on larger screens */
    flex: 0 0 100%;
    min-width: 0;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
    pointer-events: none;
}

.testimonial-content {
    position: relative;
    flex: 1;
}

.quote-icon {
    position: absolute;
    top: 0;
    left: 0;
    color: var(--teal-light);
    opacity: 0.5;
    width: 24px;
    height: 24px;
}

.testimonial-text {
    font-size: 0.8125rem;
    line-height: 1.65;
    margin-bottom: var(--space-sm);
    padding-top: var(--space-lg);
    color: rgba(255, 255, 255, 0.9);
}

.testimonial-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--space-sm);
    margin-top: auto;
    flex-shrink: 0;
}

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

/* Testimonial Slider Navigation */
.testimonials-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.testimonials-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.testimonials-nav-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.testimonials-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none;
}

.testimonials-dots {
    display: flex;
    align-items: center;
    gap: 8px;
}

.testimonials-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.testimonials-dot:hover {
    background: rgba(255, 255, 255, 0.5);
}

.testimonials-dot.active {
    background: var(--teal);
}

.author-avatar {
    width: 56px;
    height: 56px;
    background: var(--teal);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.author-logo {
    width: 56px;
    height: 56px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.author-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.author-info {
    flex: 1;
    min-width: 0;
}

.author-info strong {
    display: block;
    font-size: 0.8125rem;
    margin-bottom: 2px;
}

.author-info span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.75);
}

.author-attribution {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.4;
}

/* ============================================
   Case Studies (Mobile First)
   ============================================ */
.case-studies-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}

.case-study-card {
    display: flex;
    flex-direction: column;
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 4px 20px rgba(27, 58, 95, 0.06);
    transition: all 0.3s ease;
}

.case-study-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(27, 58, 95, 0.12);
}

.case-study-image {
    height: 200px;
    min-height: 200px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--teal-dark) 100%);
    background-size: cover;
    background-position: center;
    position: relative;
    flex-shrink: 0;
}

/* Subtle overlay for better text contrast */
.case-study-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(27, 58, 95, 0.4) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.case-study-card:hover .case-study-image::before {
    opacity: 1;
}

/* Category badge on image */
.case-study-image .case-study-category {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    background: var(--white);
    padding: 6px 12px;
    border-radius: var(--radius-full);
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--teal);
    margin: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    z-index: 2;
}

.case-study-content {
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* Hide duplicate category in content if it's in the image */
.case-study-content .case-study-category {
    display: none;
}

.case-study-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: var(--space-sm);
    line-height: 1.4;
}

.case-study-excerpt {
    font-size: 0.9375rem;
    color: var(--medium-gray);
    margin-bottom: var(--space-md);
    line-height: 1.6;
    flex-grow: 1;
}

.case-study-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--teal);
    transition: all 0.2s ease;
}

.case-study-link::after {
    content: '→';
    transition: transform 0.2s ease;
}

.case-study-card:hover .case-study-link {
    color: var(--navy);
}

.case-study-card:hover .case-study-link::after {
    transform: translateX(4px);
}
}

.case-study-card:hover .case-study-link {
    color: var(--navy);
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
    background: var(--teal);
    padding: var(--space-3xl) 0;
    color: #ffffff;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.cta-content h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: #ffffff;
    margin-bottom: var(--space-md);
}

.cta-content p {
    font-size: 1rem;
    color: #ffffff;
    opacity: 0.95;
    margin-bottom: var(--space-xl);
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    position: relative;
    z-index: 2;
}

.cta-buttons .btn {
    position: relative;
    z-index: 2;
}

/* Explicit CTA button styling */
.cta-section .btn-white {
    background-color: #ffffff;
    color: #1B3A5F !important;
    border: 2px solid #ffffff;
}

.cta-section .btn-white:hover {
    background-color: #f5f7fa;
    color: #1B3A5F !important;
}

.cta-section .btn-outline-white {
    background-color: transparent;
    color: #ffffff !important;
    border: 2px solid #ffffff;
}

.cta-section .btn-outline-white:hover {
    background-color: #ffffff;
    color: #1B3A5F !important;
}

/* Force all button colors in dark sections */
.cta-section a.btn,
.section-dark a.btn,
.page-hero a.btn {
    text-decoration: none;
}

.cta-section a.btn-white,
.cta-section .cta-buttons a.btn-white {
    background: #ffffff !important;
    color: #1B3A5F !important;
    border-color: #ffffff !important;
}

.cta-section a.btn-outline-white,
.cta-section .cta-buttons a.btn-outline-white {
    background: transparent !important;
    color: #ffffff !important;
    border-color: #ffffff !important;
}

.cta-section .cta-buttons a.btn-outline-white:hover {
    background: #ffffff !important;
    color: #1B3A5F !important;
}

/* ============================================
   Insights/Blog (Mobile First)
   ============================================ */

/* Blog Layout with Sidebar */
.blog-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}

.blog-main {
    min-width: 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}

/* Blog Sidebar */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.blog-sidebar-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: 0 2px 12px rgba(27, 58, 95, 0.06);
}

.blog-sidebar-card h3 {
    font-size: 1rem;
    color: var(--navy);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--light-gray);
}

.blog-categories-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-categories-list li {
    margin-bottom: 2px;
}

.blog-categories-list a,
.category-filter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    border-radius: var(--radius-md);
    color: var(--dark-gray);
    font-size: 0.9375rem;
    transition: all 0.2s ease;
    text-decoration: none;
}

.blog-categories-list a:hover,
.category-filter:hover {
    background: rgba(43, 122, 120, 0.08);
    color: var(--teal);
}

.blog-categories-list a.active,
.category-filter.active {
    background: var(--teal);
    color: var(--white);
}

.blog-categories-list a.active .category-count,
.category-filter.active .category-count {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.category-count {
    background: var(--light-gray);
    color: var(--medium-gray);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: var(--radius-full);
    min-width: 28px;
    text-align: center;
}

/* Sidebar Newsletter CTA */
.blog-sidebar-cta {
    background: linear-gradient(135deg, var(--navy) 0%, var(--teal-dark) 100%);
    color: var(--white);
}

.blog-sidebar-cta h3 {
    color: var(--white);
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.blog-sidebar-cta p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

.sidebar-newsletter-form .form-group {
    margin-bottom: var(--space-sm);
}

.sidebar-newsletter-form input[type="email"] {
    width: 100%;
    padding: 12px 14px;
    font-size: 0.9375rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transition: all 0.2s ease;
}

.sidebar-newsletter-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.sidebar-newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: var(--teal-light);
    background: rgba(255, 255, 255, 0.15);
}

/* Sidebar Contact CTA */
.blog-sidebar-contact {
    background: var(--off-white);
    border: 1px solid var(--light-gray);
}

.blog-sidebar-contact h3 {
    border-bottom-color: var(--light-gray);
}

.blog-sidebar-contact p {
    font-size: 0.875rem;
    color: var(--dark-gray);
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

.insights-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}

.insight-card,
.blog-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(27, 58, 95, 0.06);
    transition: all 0.3s ease;
}

.insight-card:hover,
.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(27, 58, 95, 0.12);
}

.insight-image,
.blog-card-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
    position: relative;
}

/* Date badge on image */
.insight-image .insight-date-badge {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    background: var(--white);
    padding: 8px 12px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    line-height: 1;
}

.insight-date-badge .day {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy);
}

.insight-date-badge .month {
    display: block;
    font-size: 0.625rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--teal);
    margin-top: 2px;
}

.insight-content,
.blog-card-content {
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.insight-date {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--teal);
    margin-bottom: var(--space-sm);
}

.insight-title,
.blog-card-title {
    font-family: var(--font-body);
    font-size: 1.0625rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: var(--space-sm);
    color: var(--navy);
    transition: color 0.2s ease;
}

.insight-card:hover .insight-title,
.blog-card:hover .blog-card-title {
    color: var(--teal);
}

.insight-excerpt,
.blog-card-excerpt {
    font-size: 0.9375rem;
    color: var(--medium-gray);
    margin: 0;
    line-height: 1.6;
    flex-grow: 1;
}

.insight-link,
.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--teal);
    margin-top: var(--space-md);
    transition: all 0.2s ease;
}

.insight-link::after,
.blog-card-link::after {
    content: '→';
    transition: transform 0.2s ease;
}

.insight-card:hover .insight-link::after,
.blog-card:hover .blog-card-link::after {
    transform: translateX(4px);
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    font-size: 0.75rem;
    color: var(--medium-gray);
    margin-bottom: var(--space-sm);
}

.blog-card-category {
    display: inline-block;
    background: rgba(43, 122, 120, 0.15);
    color: #1f615f;
    font-weight: 600;
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 10px;
    border-radius: var(--radius-full);
}

/* Insight Mini Card (for related articles slider) */
.insight-card-mini {
    flex: 0 0 280px;
    min-width: 280px;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(27, 58, 95, 0.08);
    transition: all 0.3s ease;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.insight-card-mini:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(27, 58, 95, 0.12);
}

.insight-mini-image {
    height: 120px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--teal-dark) 100%);
    background-size: cover;
    background-position: center;
}

.insight-mini-content {
    padding: var(--space-md);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.insight-mini-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--navy);
    margin: 0 0 var(--space-sm);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.insight-mini-link {
    font-size: 0.8125rem;
    color: var(--teal);
    font-weight: 500;
    margin-top: auto;
    transition: color 0.2s ease;
}

.insight-card-mini:hover .insight-mini-link {
    color: var(--teal-dark);
}

/* Related Articles Section */
.related-articles .section-cta {
    text-align: center;
    margin-top: var(--space-xl);
}

/* ============================================
   Newsletter
   ============================================ */
.newsletter {
    padding: var(--space-3xl) 0;
    background: linear-gradient(180deg, #f7fafa 0%, #f0f5f4 100%);
    position: relative;
    overflow: hidden;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--teal);
    border-radius: 2px;
}

.newsletter::after {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(43, 122, 120, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.newsletter-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    text-align: center;
    position: relative;
    z-index: 1;
}

.newsletter-text h2 {
    font-size: 1.75rem;
    margin-bottom: var(--space-sm);
    color: var(--navy);
}

.newsletter-text p {
    color: var(--dark-gray);
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form {
    background: var(--white);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(27, 58, 95, 0.08);
    border: 1px solid rgba(43, 122, 120, 0.1);
}

.newsletter-form .form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.newsletter-form input[type="email"] {
    padding: 1rem 1.25rem;
    font-size: 1rem;
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    background: var(--white);
}

.newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 0 4px rgba(43, 122, 120, 0.1);
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    font-size: 0.8125rem;
    color: var(--dark-gray);
    text-align: left;
}

.form-checkbox input {
    margin-top: 2px;
    accent-color: var(--teal);
}

.form-checkbox a {
    color: var(--teal);
    font-weight: 500;
}

.form-checkbox a:hover {
    text-decoration: underline;
}

/* ============================================
   Footer (Mobile First)
   ============================================ */
/* ============================================
   Footer - Modern Design
   ============================================ */
.site-footer {
    background: linear-gradient(180deg, #0f2439 0%, #0a1829 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.footer-top-accent {
    height: 4px;
    background: linear-gradient(90deg, var(--teal) 0%, var(--teal-dark) 50%, var(--navy) 100%);
}

.footer-bg-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(43, 122, 120, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

/* Main Footer Grid */
.footer-main {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    padding: var(--space-3xl) 0;
    position: relative;
    z-index: 1;
}

/* Brand Column */
.footer-brand {
    max-width: 320px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.footer-logo .logo-icon {
    height: 48px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-logo .logo-name {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    color: var(--white);
    line-height: 1.2;
}

.footer-logo .logo-tagline {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.6875rem;
    color: var(--teal-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-tagline {
    font-size: 0.875rem;
    color: var(--teal-light);
    margin-bottom: var(--space-md);
    font-weight: 500;
}

.footer-description {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

/* Social Links */
.footer-social {
    display: flex;
    gap: var(--space-sm);
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--teal);
    border-color: var(--teal);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(43, 122, 120, 0.3);
}

/* Navigation Columns */
.footer-nav {
    min-width: 0;
}

.footer-nav-title {
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--white);
    margin-bottom: var(--space-lg);
    position: relative;
    padding-bottom: var(--space-sm);
}

.footer-nav-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 2px;
    background: var(--teal);
    border-radius: 1px;
}

.footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav-list li {
    margin-bottom: 2px;
}

.footer-nav-list a {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.65);
    transition: all 0.2s ease;
    display: inline-block;
    padding: 4px 0;
}

.footer-nav-list a:hover,
.footer-nav-list a:focus {
    color: var(--teal-light);
    transform: translateX(4px);
}

/* Contact Column */
.footer-contact {
    min-width: 0;
}

.footer-address {
    font-style: normal;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-contact-icon {
    flex-shrink: 0;
    color: var(--teal);
    margin-top: 2px;
}

.footer-contact-item a {
    color: var(--teal-light);
    transition: color 0.2s ease;
}

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

/* Footer Bottom */
.footer-bottom {
    padding: var(--space-lg) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 1;
}

.footer-bottom-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    text-align: center;
}

.footer-copyright {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.8125rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.65);
    transition: color 0.2s ease;
}

.footer-bottom-links a:hover,
.footer-bottom-links a:focus {
    color: #fff;
}

.footer-divider {
    color: rgba(255, 255, 255, 0.4);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--navy);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

.back-to-top:hover {
    background: var(--teal);
    border-color: var(--teal);
    transform: translateY(-3px);
}

/* ============================================
   Page Hero (Inner Pages)
   ============================================ */
.page-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--teal-dark) 100%);
    padding: calc(var(--header-height) + var(--space-xl)) 0 var(--space-xl);
    color: var(--white);
}

.page-hero-content {
    max-width: 650px;
}

.page-hero .section-label {
    color: var(--teal-light);
    margin-bottom: var(--space-sm);
}

.page-hero h1 {
    color: var(--white);
    margin-bottom: var(--space-sm);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

.page-hero .lead {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-xs);
    font-size: 0.8125rem;
    margin-bottom: var(--space-md);
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
}

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

.breadcrumb span {
    color: rgba(255, 255, 255, 0.4);
}

/* ============================================
   Content Pages (Mobile First)
   ============================================ */
.content-section {
    padding: var(--space-3xl) 0;
}

.content-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-2xl);
}

.content-main {
    max-width: 800px;
}

.content-main h2 {
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
}

.content-main h2:first-child {
    margin-top: 0;
}

.content-main p {
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.content-main ul,
.content-main ol {
    margin-bottom: var(--space-md);
    padding-left: var(--space-lg);
}

.content-main li {
    margin-bottom: var(--space-sm);
    line-height: 1.7;
}

.content-main ul li {
    list-style-type: disc;
}

.content-main ol li {
    list-style-type: decimal;
}

/* Links in content areas - distinguishable without color alone */
.content-main a:not(.btn):not(.related-service-card):not(.service-card):not(.blog-card),
.entry-content a:not(.btn):not(.related-service-card):not(.service-card):not(.blog-card),
.post-content a:not(.btn):not(.related-service-card):not(.service-card):not(.blog-card) {
    color: var(--teal);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
    transition: color var(--transition-fast);
}

.content-main a:not(.btn):not(.related-service-card):not(.service-card):not(.blog-card):hover,
.content-main a:not(.btn):not(.related-service-card):not(.service-card):not(.blog-card):focus,
.entry-content a:not(.btn):not(.related-service-card):not(.service-card):not(.blog-card):hover,
.entry-content a:not(.btn):not(.related-service-card):not(.service-card):not(.blog-card):focus,
.post-content a:not(.btn):not(.related-service-card):not(.service-card):not(.blog-card):hover,
.post-content a:not(.btn):not(.related-service-card):not(.service-card):not(.blog-card):focus {
    color: var(--navy);
}

/* Sidebar */
.sidebar {
    /* On mobile, sidebar appears after main content (natural HTML order) */
}

.sidebar-widget {
    background: var(--off-white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.sidebar-widget h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.sidebar-widget ul li {
    margin-bottom: var(--space-sm);
}

.sidebar-widget a {
    font-size: 0.9375rem;
    color: var(--dark-gray);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.sidebar-widget a:hover {
    color: var(--teal);
}

.sidebar-widget a.active {
    color: var(--navy);
    font-weight: 500;
}

/* Contact CTA Widget */
.sidebar-cta {
    background: var(--teal);
    color: var(--white);
}

.sidebar-cta h4 {
    color: var(--white);
}

.sidebar-cta p {
    font-size: 0.9375rem;
    color: #ffffff;
    margin-bottom: var(--space-md);
}

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

.sidebar-cta .btn-white {
    background-color: #ffffff;
    color: var(--teal) !important;
    border-color: #ffffff;
}

.sidebar-cta .btn-white:hover {
    background-color: var(--off-white);
}

/* ============================================
   Forms
   ============================================ */
.form-group {
    margin-bottom: var(--space-lg);
}

.form-label {
    display: block;
    font-size: 0.9375rem;
    font-weight: 500;
    margin-bottom: var(--space-sm);
    color: var(--dark-gray);
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-md);
    background-color: var(--white);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(43, 122, 120, 0.1);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

/* ============================================
   Service Page Specific
   ============================================ */
.service-introduction {
    margin-bottom: var(--space-xl);
}

.service-introduction p {
    font-size: 1.125rem;
    line-height: 1.7;
}

.service-section {
    margin-bottom: var(--space-xl);
}

.service-section h2 {
    margin-bottom: var(--space-lg);
}

.service-section h3.content-subheading,
.service-introduction h3.content-subheading {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--teal);
    margin: var(--space-lg) 0 var(--space-sm);
}

.service-section h3.content-subheading:first-child,
.service-introduction h3.content-subheading:first-child {
    margin-top: 0;
}

.service-benefits {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
    margin: var(--space-lg) 0;
}

.benefit-card {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: var(--off-white);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--teal);
}

.benefit-icon {
    flex-shrink: 0;
    color: var(--teal);
    margin-top: 2px;
}

.benefit-card h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.benefit-card p {
    font-size: 0.9375rem;
    color: var(--dark-gray);
    margin: 0;
    line-height: 1.5;
}

/* Related Services Slider */
.related-services-slider {
    margin-top: var(--space-2xl);
    padding-top: var(--space-2xl);
    border-top: 1px solid var(--light-gray);
}

.related-services-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-lg);
}

.related-services-header h3 {
    margin: 0;
}

.slider-nav {
    display: flex;
    gap: var(--space-sm);
}

.slider-btn {
    width: 40px;
    height: 40px;
    border: 1px solid var(--light-gray);
    background: var(--white);
    border-radius: var(--radius-md);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    transition: all 0.2s ease;
}

.slider-btn:hover {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--white);
}

.slider-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.slider-btn:disabled:hover {
    background: var(--white);
    border-color: var(--light-gray);
    color: var(--navy);
}

.slider-track-wrapper {
    overflow: hidden;
    margin: 0 -var(--space-sm);
    padding: 0 var(--space-sm);
}

.slider-track {
    display: flex;
    gap: var(--space-md);
    transition: transform 0.4s ease;
}

.related-service-card {
    flex: 0 0 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: var(--off-white);
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: inherit;
    border: 1px solid transparent;
    transition: all 0.2s ease;
}

.related-service-card:hover {
    border-color: var(--teal);
    background: var(--white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-decoration: none;
}

.related-service-card * {
    text-decoration: none;
}

.related-service-content {
    flex: 1;
    min-width: 0;
}

.related-service-type {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 3px 8px;
    border-radius: 3px;
    margin-bottom: var(--space-xs);
    text-decoration: none;
}

.related-service-type.core {
    background: var(--navy);
    color: var(--white);
}

.related-service-type.associated {
    background: var(--teal);
    color: var(--white);
}

.related-service-card h4 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    margin: var(--space-xs) 0;
    color: var(--navy);
    text-decoration: none;
}

.related-service-card:hover h4 {
    text-decoration: none;
    color: var(--teal);
}

.related-service-card p {
    font-size: 0.875rem;
    color: var(--medium-gray);
    margin: 0;
    line-height: 1.5;
    text-decoration: none;
}

.related-service-arrow {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 50%;
    color: var(--teal);
    transition: all 0.2s ease;
}

.related-service-card:hover .related-service-arrow {
    background: var(--teal);
    color: var(--white);
    transform: translateX(4px);
}

/* Legacy support */
.related-services {
    margin-top: var(--space-2xl);
    padding-top: var(--space-2xl);
    border-top: 1px solid var(--light-gray);
}

.related-services h3 {
    margin-bottom: var(--space-lg);
}

.related-services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

/* ============================================
   Contact Page
   ============================================ */
.contact-section {
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(270deg, rgba(43, 122, 120, 0.03) 0%, transparent 100%);
    pointer-events: none;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-2xl);
    position: relative;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: var(--off-white);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-md);
    position: relative;
    transition: all var(--transition-base);
}

.contact-info-card:hover {
    transform: translateY(-2px);
}

.contact-info-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(43, 122, 120, 0.1);
    color: var(--teal);
    border-radius: var(--radius-md);
}

.contact-info-content .contact-info-title,
.contact-info-content h3 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--space-xs);
}

.contact-info-content p,
.contact-info-content a {
    font-size: 0.9375rem;
    color: var(--medium-gray);
    margin: 0;
}

.contact-info-content a:hover {
    color: var(--teal);
}

.contact-form-card {
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    position: relative;
    overflow: hidden;
}

.contact-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--teal), var(--navy));
}

.contact-form-card h3 {
    margin-bottom: var(--space-lg);
}

.contact-info h2 {
    margin-bottom: var(--space-sm);
}

.contact-intro {
    color: var(--medium-gray);
    margin-bottom: var(--space-lg);
}

/* Map Section */
.map-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.styled-map {
    width: 100%;
    height: 450px;
}

.map-info-card {
    position: absolute;
    bottom: var(--space-lg);
    left: var(--space-lg);
    background: var(--white);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 280px;
    z-index: 10;
}

.map-info-card .map-card-title,
.map-info-card h3 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--navy);
    margin: 0 0 var(--space-sm);
}

.map-info-card p {
    font-size: 0.875rem;
    color: var(--medium-gray);
    line-height: 1.6;
    margin: 0 0 var(--space-md);
}

.map-directions-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--teal);
    text-decoration: none;
    transition: color 0.2s ease;
}

.map-directions-btn:hover {
    color: var(--teal-dark);
}

.map-directions-btn svg {
    transition: transform 0.2s ease;
}

.map-directions-btn:hover svg {
    transform: translateX(3px);
}

.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.map-container iframe {
    display: block;
}

.map-placeholder {
    background: linear-gradient(145deg, #e8eef3 0%, #f5f7fa 100%);
    border-radius: var(--radius-lg);
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--navy);
    border: 1px solid var(--light-gray);
}

.map-placeholder svg {
    margin-bottom: var(--space-md);
    opacity: 0.5;
    stroke: var(--teal);
}

.map-placeholder p {
    margin: 0;
    color: var(--medium-gray);
}

.map-placeholder .map-address {
    margin-top: var(--space-sm);
    font-size: 0.875rem;
    color: var(--medium-gray);
}

/* FAQ Section */
.faq-section {
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(90deg, rgba(43, 122, 120, 0.03) 0%, transparent 100%);
    pointer-events: none;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.faq-item {
    border-bottom: 1px solid var(--light-gray);
    position: relative;
}

.faq-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--teal), var(--navy));
    transform: scaleY(0);
    transform-origin: top;
    transition: transform var(--transition-base);
}

.faq-item.active::before {
    transform: scaleY(1);
}

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

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-lg) 0;
    padding-left: var(--space-md);
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: padding-left var(--transition-base);
}

.faq-item.active .faq-question {
    padding-left: var(--space-lg);
}

.faq-question span {
    font-family: var(--font-heading);
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--navy);
}

.faq-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(43, 122, 120, 0.1);
    border-radius: 50%;
    color: var(--teal);
    transition: all 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    background: var(--teal);
    color: var(--white);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding-bottom: var(--space-lg);
    padding-left: var(--space-lg);
}

.faq-answer-content p {
    color: var(--medium-gray);
    margin: 0;
    line-height: 1.7;
}

/* ============================================
   Case Study Single - Redesigned
   ============================================ */

/* Hero Section */
.case-study-hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: flex-end;
    padding: var(--space-3xl) 0;
    padding-top: calc(var(--header-height) + var(--space-xl));
    overflow: hidden;
}

.case-study-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.case-study-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(27, 58, 95, 0.95) 0%, rgba(23, 80, 94, 0.9) 100%);
    z-index: 2;
}

.case-study-hero .container {
    position: relative;
    z-index: 3;
}

.case-study-hero .breadcrumb {
    margin-bottom: var(--space-lg);
}

.case-study-hero .breadcrumb,
.case-study-hero .breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
}

.case-study-hero .breadcrumb a:hover {
    color: var(--white);
}

.case-study-hero-content {
    max-width: 800px;
}

.case-study-hero-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--teal);
    background: rgba(43, 122, 120, 0.2);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-md);
}

.case-study-hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--white);
    margin-bottom: var(--space-md);
    line-height: 1.2;
}

.case-study-hero-lead {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin: 0;
}

/* Stats Bar */
.case-study-stats {
    background: var(--white);
    border-bottom: 1px solid var(--light-gray);
    padding: var(--space-xl) 0;
}

.case-study-stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

.case-study-stat {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--off-white);
    border-radius: var(--radius-md);
}

.case-study-stat-highlight {
    background: rgba(43, 122, 120, 0.1);
    border: 1px solid rgba(43, 122, 120, 0.2);
}

.case-study-stat-highlight .case-study-stat-icon {
    background: var(--teal);
    color: var(--white);
}

.case-study-stat-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    color: var(--teal);
    border-radius: var(--radius-md);
}

.case-study-stat-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.case-study-stat-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--medium-gray);
}

.case-study-stat-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
}

/* Content Layout */
.case-study-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
}

.case-study-main {
    max-width: 100%;
}

.case-study-section {
    margin-bottom: var(--space-2xl);
    padding-bottom: var(--space-2xl);
    border-bottom: 1px solid var(--light-gray);
}

.case-study-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.case-study-section-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.case-study-section-number {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--white);
    background: var(--teal);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.case-study-section-header h2 {
    font-size: 1.5rem;
    color: var(--navy);
    margin: 0;
}

.case-study-section-content {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--dark-gray);
}

.case-study-section-content p {
    margin-bottom: var(--space-md);
}

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

/* Client Intro */
.case-study-client-intro {
    background: var(--off-white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    margin-bottom: var(--space-xl);
    border-left: 4px solid var(--teal);
}

.case-study-client-intro p {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--dark-gray);
    margin: 0;
}

/* Content Sub-headings (within sections) */
.case-study-section-content .content-subheading {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
    margin: var(--space-lg) 0 var(--space-sm);
}

.case-study-section-content .content-subheading:first-child {
    margin-top: 0;
}

/* Lists within sections */
.case-study-section-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-md);
}

.case-study-section-content ul li {
    position: relative;
    padding-left: var(--space-lg);
    margin-bottom: var(--space-sm);
    line-height: 1.7;
}

.case-study-section-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 6px;
    height: 6px;
    background: var(--teal);
    border-radius: 50%;
}

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

/* Sidebar */
.case-study-sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.case-study-sidebar-card {
    background: var(--off-white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
}

.case-study-sidebar-card h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: var(--space-md);
}

.case-study-services-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.case-study-services-list li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) 0;
    font-size: 0.9375rem;
    color: var(--dark-gray);
    border-bottom: 1px solid var(--light-gray);
}

.case-study-services-list li:last-child {
    border-bottom: none;
}

.case-study-services-list svg {
    color: var(--teal);
    flex-shrink: 0;
}

.case-study-sidebar-cta {
    background: var(--teal);
    color: var(--white);
}

.case-study-sidebar-cta h3,
.case-study-sidebar-cta h4 {
    color: var(--white);
}

.case-study-sidebar-cta p {
    font-size: 0.9375rem;
    color: #ffffff;
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

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

/* ============================================
   Related Case Studies Slider
   ============================================ */
.section-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: var(--space-xl);
    gap: var(--space-lg);
}

.section-header-row .section-header {
    margin-bottom: 0;
}

.slider-controls {
    display: flex;
    gap: var(--space-sm);
}

.slider-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--light-gray);
    background: var(--white);
    color: var(--navy);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.slider-btn:hover {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--white);
}

.slider-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.slider-btn:disabled:hover {
    background: var(--white);
    color: var(--navy);
    border-color: var(--light-gray);
}

.related-slider-wrapper {
    position: relative;
    overflow: hidden;
    margin: 0 -var(--space-md);
    padding: 0 var(--space-md);
}

.related-slider {
    display: flex;
    gap: var(--space-lg);
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: var(--space-sm) 0;
    scroll-snap-type: x mandatory;
}

.related-slider::-webkit-scrollbar {
    display: none;
}

/* Mini Case Study Card */
.case-study-card-mini {
    flex: 0 0 280px;
    min-width: 280px;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(27, 58, 95, 0.08);
    transition: all 0.3s ease;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
}

.case-study-card-mini:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(27, 58, 95, 0.12);
}

.case-study-mini-image {
    height: 140px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--teal-dark) 100%);
    background-size: cover;
    background-position: center;
    position: relative;
}

.case-study-mini-category {
    position: absolute;
    top: var(--space-sm);
    left: var(--space-sm);
    background: var(--white);
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-size: 0.625rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--teal);
}

.case-study-mini-content {
    padding: var(--space-md);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.case-study-mini-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: var(--space-xs);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.case-study-mini-result {
    font-size: 0.8125rem;
    color: var(--teal);
    font-weight: 500;
    margin-top: auto;
}

/* Legacy meta styles (keep for backwards compatibility) */
.case-study-meta {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
    background: var(--off-white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.meta-item {
    text-align: left;
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--light-gray);
}

.meta-item:last-child {
    border-bottom: none;
}

.meta-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--teal);
    margin-bottom: var(--space-xs);
}

.meta-value {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--navy);
}

/* ============================================
   Article Single (Blog Post)
   ============================================ */

/* Article Hero */
.article-hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: flex-end;
    padding: var(--space-3xl) 0;
    overflow: hidden;
    background: linear-gradient(135deg, var(--navy) 0%, var(--teal-dark) 100%);
}

.article-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.article-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(27, 58, 95, 0.9) 0%, rgba(23, 80, 94, 0.85) 100%);
    z-index: 2;
}

.article-hero .container {
    position: relative;
    z-index: 3;
}

.article-hero .breadcrumb,
.article-hero .breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
}

.article-hero .breadcrumb a:hover {
    color: var(--white);
}

.article-hero-content {
    max-width: 800px;
}

.article-hero-category {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--white);
    background: var(--teal);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-md);
}

.article-hero h1 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--white);
    margin-bottom: var(--space-md);
    line-height: 1.3;
}

.article-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-lg);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9375rem;
}

.article-hero-meta span {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.article-hero-meta svg {
    opacity: 0.7;
}

/* Article Layout */
.article-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
}

.article-main {
    max-width: 100%;
}

/* Article Body */
.article-body {
    font-size: 1.0625rem;
    line-height: 1.85;
    color: var(--dark-gray);
}

.article-body h2 {
    font-size: 1.5rem;
    color: var(--navy);
    margin-top: var(--space-2xl);
    margin-bottom: var(--space-md);
}

.article-body h2:first-child {
    margin-top: 0;
}

.article-body h3 {
    font-size: 1.25rem;
    color: var(--navy);
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
}

.article-body p {
    margin-bottom: var(--space-md);
}

.article-body ul,
.article-body ol {
    margin-bottom: var(--space-md);
    padding-left: var(--space-lg);
}

.article-body li {
    margin-bottom: var(--space-sm);
}

.article-body blockquote {
    margin: var(--space-xl) 0;
    padding: var(--space-lg);
    background: var(--off-white);
    border-left: 4px solid var(--teal);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-size: 1.125rem;
    font-style: italic;
    color: var(--navy);
}

.article-body blockquote p:last-child {
    margin-bottom: 0;
}

/* Article Tags */
.article-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--space-sm);
    margin-top: var(--space-2xl);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--light-gray);
}

.article-tags-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--navy);
}

.article-tag {
    display: inline-block;
    font-size: 0.8125rem;
    padding: var(--space-xs) var(--space-sm);
    background: var(--off-white);
    color: var(--dark-gray);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.article-tag:hover {
    background: var(--teal);
    color: var(--white);
}

/* Article Share */
.article-share {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--space-md);
    margin-top: var(--space-xl);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--light-gray);
}

.article-share-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--navy);
}

.article-share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.article-share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--off-white);
    color: var(--dark-gray);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    position: relative;
}

.article-share-btn:hover {
    background: var(--navy);
    color: var(--white);
}

.article-share-btn.copied {
    background: var(--teal);
    color: var(--white);
}

.article-share-btn.copied::after {
    content: 'Copied!';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--navy);
    color: var(--white);
    font-size: 0.75rem;
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    white-space: nowrap;
    margin-bottom: 4px;
}

/* Case Study Share Styles */
.case-study-sidebar-share .case-study-share {
    margin-top: var(--space-md);
}

.case-study-sidebar-share .case-study-share-label {
    display: none;
}

.case-study-sidebar-share .case-study-share-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-sm);
}

.case-study-share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 44px;
    background: var(--white);
    color: var(--dark-gray);
    border-radius: var(--radius-md);
    border: 1px solid var(--light-gray);
    transition: all var(--transition-fast);
    position: relative;
}

.case-study-share-btn:hover {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

.case-study-share-btn.copied {
    background: var(--teal);
    color: var(--white);
    border-color: var(--teal);
}

.case-study-share-btn.copied::after {
    content: 'Copied!';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--navy);
    color: var(--white);
    font-size: 0.75rem;
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    white-space: nowrap;
    margin-bottom: 4px;
}

/* Article Sidebar */
.article-sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.article-sidebar-card {
    background: var(--off-white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
}

.article-sidebar-card h2 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: var(--space-md);
}

.article-categories-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.article-categories-list li {
    border-bottom: 1px solid var(--light-gray);
}

.article-categories-list li:last-child {
    border-bottom: none;
}

.article-categories-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-sm) 0;
    font-size: 0.9375rem;
    color: var(--dark-gray);
    transition: color var(--transition-fast);
}

.article-categories-list a:hover {
    color: var(--teal);
}

.category-count {
    font-size: 0.8125rem;
    color: var(--medium-gray);
    background: var(--white);
    padding: 2px 8px;
    border-radius: var(--radius-sm);
}

.article-sidebar-cta {
    background: var(--teal);
    color: var(--white);
}

.article-sidebar-cta h2 {
    color: var(--white);
}

.article-sidebar-cta p {
    font-size: 0.9375rem;
    color: #ffffff;
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

/* ============================================
   Pagination
   ============================================ */
.pagination {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-top: var(--space-2xl);
    flex-wrap: wrap;
}

.pagination a,
.pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    font-size: 0.9375rem;
    font-weight: 500;
    border-radius: var(--radius-md);
    border: 1px solid var(--light-gray);
    color: var(--dark-gray);
    transition: all var(--transition-fast);
}

.pagination a:hover {
    border-color: var(--teal);
    color: var(--teal);
}

.pagination .current {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--white);
}

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

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes scroll {
    0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
    50% { opacity: 0.5; transform: translateX(-50%) translateY(10px); }
}

/* ============================================
   Utility Classes
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.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); }
.mb-4 { margin-bottom: var(--space-3xl); }

.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); }
.mt-4 { margin-top: var(--space-3xl); }

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* WordPress Specific */
.alignleft {
    float: left;
    margin-right: var(--space-lg);
}

.alignright {
    float: right;
    margin-left: var(--space-lg);
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption {
    max-width: 100%;
}

.wp-caption-text {
    font-size: 0.875rem;
    color: var(--medium-gray);
    margin-top: var(--space-sm);
}

/* Admin Bar adjustment */
body.admin-bar .site-header {
    top: 32px;
}

body.admin-bar .mobile-nav {
    top: calc(70px + 32px);
}

@media screen and (max-width: 782px) {
    body.admin-bar .site-header {
        top: 46px;
    }
    body.admin-bar .mobile-nav {
        top: calc(70px + 46px);
    }
}

/* Map mobile adjustments */
@media screen and (max-width: 600px) {
    .styled-map {
        height: 350px;
    }
    
    .map-info-card {
        position: relative;
        bottom: auto;
        left: auto;
        max-width: none;
        margin-top: calc(-1 * var(--space-xl));
        margin-left: var(--space-md);
        margin-right: var(--space-md);
        border-radius: var(--radius-md);
    }
}

/* ============================================
   Tablet Breakpoint (768px)
   ============================================ */
@media (min-width: 768px) {
    :root {
        --header-height: 80px;
    }
    
    .container {
        padding: 0 var(--space-lg);
    }
    
    .section {
        padding: var(--space-4xl) 0;
    }
    
    /* Map Info Card - larger on tablet+ */
    .map-info-card {
        max-width: 320px;
        padding: var(--space-xl);
    }
    
    /* Header */
    .site-header {
        height: var(--header-height);
    }
    
    .site-logo .logo-icon {
        height: 45px;
    }
    
    .site-logo .logo-name {
        font-size: 1rem;
    }
    
    .site-logo .logo-tagline {
        font-size: 0.65rem;
    }
    
    /* Hero */
    .hero {
        padding-top: var(--header-height);
    }
    
    .hero-container {
        padding: var(--space-3xl) var(--space-lg);
    }
    
    .hero-ctas {
        flex-direction: row;
        justify-content: center;
    }
    
    /* Inline stats with dividers */
    .hero-stats {
        flex-direction: row;
        justify-content: flex-start;
        gap: 0;
    }
    
    .stat-item {
        padding: 0 var(--space-lg);
    }
    
    .stat-item:first-child {
        padding-left: 0;
    }
    
    .stat-item:last-child {
        padding-right: 0;
    }
    
    .stat-divider {
        display: block;
        width: 1px;
        height: 40px;
        background: rgba(27, 58, 95, 0.12);
    }
    
    /* Hero chart larger on tablet */
    .chart-svg {
        max-width: 450px;
    }
    
    .brand-w-icon {
        width: 200px;
        height: 170px;
    }
    
    /* Services */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Industries */
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Testimonials - 2 cards visible */
    .testimonial-card {
        flex: 0 0 calc(50% - var(--space-md));
    }
    
    /* Case Studies */
    .case-studies-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Insights */
    .insights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Blog Layout */
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* CTA */
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    /* Newsletter */
    .newsletter-form .form-group {
        flex-direction: row;
    }
    
    .newsletter-form input[type="email"] {
        flex: 1;
    }
    
    /* Footer */
    /* Footer - Tablet */
    .footer-main {
        grid-template-columns: repeat(4, 1fr);
        gap: var(--space-xl);
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        max-width: 100%;
        margin-bottom: var(--space-lg);
    }
    
    .footer-bottom-inner {
        flex-direction: row;
        justify-content: space-between;
    }
    
    /* Page Hero */
    .page-hero {
        padding: calc(var(--header-height) + var(--space-4xl)) 0 var(--space-4xl);
    }
    
    /* Service Benefits */
    .service-benefits {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Forms */
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
    
    /* Related Services */
    .related-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Related Services Slider */
    .related-service-card {
        flex: 0 0 calc(50% - var(--space-sm));
    }
    
    /* Case Study Meta */
    .case-study-meta {
        grid-template-columns: repeat(3, 1fr);
        text-align: center;
    }
    
    .meta-item {
        text-align: center;
        padding: 0;
        border-bottom: none;
    }
    
    /* Case Study Hero */
    .case-study-hero {
        min-height: 450px;
    }
    
    /* Case Study Stats */
    .case-study-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* About */
    .about-image-grid {
        height: 400px;
    }
    
    .experience-badge {
        width: 120px;
        height: 120px;
    }
    
    .experience-number {
        font-size: 2.25rem;
    }
    
    /* Founder Section - Tablet */
    .founder-image-wrapper {
        max-width: 320px;
    }
    
    .founder-badge {
        width: 100px;
        height: 100px;
    }
    
    .founder-name {
        font-size: 2.25rem;
    }
    
    /* Approach Section - Tablet */
    .approach-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .approach-card {
        text-align: left;
    }
    
    .approach-icon {
        margin: 0 0 var(--space-md) 0;
    }
    
    /* Experience Section - Tablet */
    .experience-stats {
        grid-template-columns: repeat(4, 1fr);
    }
    
    /* Mobile Nav */
    .mobile-nav {
        top: var(--header-height);
    }
}

/* ============================================
   Desktop Breakpoint (1024px)
   ============================================ */
@media (min-width: 1024px) {
    /* Header */
    .main-nav {
        display: block;
    }
    
    .header-cta {
        display: flex;
        align-items: center;
        gap: var(--space-lg);
    }
    
    .mobile-menu-toggle {
        display: none;
    }
    
    /* Hero */
    .hero-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--space-3xl);
        align-items: center;
        text-align: left;
    }
    
    .hero-content {
        margin: 0;
    }
    
    .hero-ctas {
        justify-content: flex-start;
    }
    
    .hero-scroll {
        display: flex;
        position: absolute;
        bottom: var(--space-2xl);
        left: 50%;
        transform: translateX(-50%);
        flex-direction: column;
        align-items: center;
        gap: var(--space-sm);
    }
    
    .hero-scroll span {
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: var(--medium-gray);
    }
    
    .scroll-indicator {
        width: 24px;
        height: 40px;
        border: 2px solid var(--teal);
        border-radius: 12px;
        position: relative;
    }
    
    .scroll-indicator::after {
        content: '';
        position: absolute;
        top: 8px;
        left: 50%;
        transform: translateX(-50%);
        width: 4px;
        height: 8px;
        background-color: var(--teal);
        border-radius: 2px;
        animation: scroll 2s infinite;
    }
    
    /* Hero Stats - larger on desktop */
    .stat-item {
        padding: 0 var(--space-xl);
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .stat-divider {
        height: 48px;
    }
    
    /* Hero chart larger on desktop */
    .chart-svg {
        max-width: 480px;
    }
    
    .brand-w-icon {
        width: 220px;
        height: 180px;
    }
    
    /* Services */
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* About */
    .about-preview-grid {
        flex-direction: row;
        align-items: center;
    }
    
    .about-preview-text-wrapper {
        flex: 1;
    }
    
    .about-preview-visual {
        flex: 1;
    }
    
    .about-image-grid {
        height: 450px;
    }
    
    .experience-badge {
        width: 140px;
        height: 140px;
        top: -20px;
        right: -20px;
    }
    
    .experience-number {
        font-size: 2.5rem;
    }
    
    /* Founder Section - Desktop */
    .founder-grid {
        grid-template-columns: 380px 1fr;
        gap: var(--space-3xl);
        align-items: start;
    }
    
    .founder-image-wrapper {
        margin: 0;
    }
    
    .founder-badge {
        width: 130px;
        height: 130px;
        bottom: -25px;
        right: -25px;
    }
    
    .founder-badge .badge-number {
        font-size: 2rem;
    }
    
    .founder-name {
        font-size: 2.5rem;
    }
    
    .founder-title {
        font-size: 1.25rem;
    }
    
    .founder-bio p {
        font-size: 1.0625rem;
    }
    
    /* Approach Section - Desktop */
    .approach-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Experience Section - Desktop */
    .experience-grid {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
    
    .experience-content h2 {
        font-size: 2rem;
    }
    
    .stat-card {
        padding: var(--space-xl);
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.8125rem;
    }

    /* Industries */
    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Testimonials - still 2 cards visible on desktop */
    .testimonial-card {
        flex: 0 0 calc(50% - var(--space-md));
    }
    
    /* Case Studies */
    .case-studies-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
    }
    
    .case-study-card-large {
        grid-column: 1;
        grid-row: 1 / 3;
        display: flex;
        flex-direction: column;
    }
    
    .case-study-card-large .case-study-image {
        height: 280px;
        min-height: 280px;
    }
    
    .case-study-card-large .case-study-content {
        flex-grow: 1;
        padding: var(--space-xl);
    }
    
    .case-study-card-large .case-study-title {
        font-size: 1.5rem;
        margin-bottom: var(--space-md);
    }
    
    .case-study-card-large .case-study-excerpt {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    /* Case Study Single Layout */
    .case-study-hero {
        min-height: 500px;
    }
    
    .case-study-stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .case-study-layout {
        grid-template-columns: 1fr 320px;
        gap: var(--space-3xl);
    }
    
    .case-study-sidebar {
        position: sticky;
        top: calc(var(--header-height) + var(--space-xl));
        align-self: start;
    }
    
    /* Article Single Layout */
    .article-layout {
        grid-template-columns: 1fr 300px;
        gap: var(--space-3xl);
    }
    
    .article-sidebar {
        position: sticky;
        top: calc(var(--header-height) + var(--space-xl));
        align-self: start;
    }
    
    /* Blog Archive Layout */
    .blog-layout {
        grid-template-columns: 1fr 320px;
        gap: var(--space-3xl);
    }
    
    .blog-sidebar {
        position: sticky;
        top: calc(var(--header-height) + var(--space-xl));
        align-self: start;
    }
    
    /* Insights */
    .insights-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Newsletter */
    .newsletter-content {
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: var(--space-3xl);
    }
    
    .newsletter-text {
        flex: 1;
    }
    
    .newsletter-text p {
        margin: 0;
        max-width: none;
    }
    
    .newsletter-form {
        flex: 1;
        max-width: 480px;
    }
    
    /* Footer - Desktop */
    .footer-main {
        grid-template-columns: 1.5fr repeat(4, 1fr);
        gap: var(--space-2xl);
    }
    
    .footer-brand {
        grid-column: auto;
        display: block;
        max-width: 300px;
    }
    
    /* Content Pages */
    .content-grid {
        flex-direction: row;
    }
    
    .content-main {
        flex: 1;
    }
    
    .sidebar {
        order: 0;
        width: 350px;
        flex-shrink: 0;
        position: sticky;
        top: calc(var(--header-height) + var(--space-xl));
        align-self: flex-start;
    }
    
    /* Contact */
    .contact-grid {
        flex-direction: row;
    }
    
    .contact-info,
    .contact-form {
        flex: 1;
    }
    
    /* Related Services */
    .related-services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Related Services Slider - Desktop */
    .related-service-card {
        flex: 0 0 calc(50% - var(--space-sm));
    }
    
    /* Blog Grid - 2 columns with sidebar */
    .blog-layout .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Blog Grid - 3 columns full width (no sidebar) */
    .blog-section > .container > .blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ============================================
   Large Desktop Breakpoint (1280px)
   ============================================ */
@media (min-width: 1280px) {
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-description {
        font-size: 1.125rem;
    }
    
    /* Hero chart even larger on big screens */
    .chart-svg {
        max-width: 540px;
    }
    
    .brand-w-icon {
        width: 260px;
        height: 210px;
    }
    
    .stat-card {
        padding: var(--space-xl);
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .lead {
        font-size: 1.25rem;
    }
    
    .service-card {
        padding: var(--space-2xl);
    }
    
    .service-icon {
        width: 64px;
        height: 64px;
    }
    
    .industry-icon {
        width: 80px;
        height: 80px;
    }
    
    .testimonial-text {
        font-size: 1.0625rem;
    }
}

/* ============================================
   Legal/Policy Pages
   ============================================ */
.policy-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .policy-layout {
        grid-template-columns: 1fr;
    }
    .policy-nav {
        display: none;
    }
}

.policy-nav {
    position: sticky;
    top: 100px;
    align-self: start;
}

.policy-nav-inner {
    background: var(--off-white);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}

.policy-nav h3 {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-500);
    margin-bottom: 1rem;
}

.policy-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.policy-nav li {
    margin-bottom: 0.5rem;
}

.policy-nav a {
    display: block;
    font-size: 0.875rem;
    color: var(--gray-700);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    border-left: 2px solid transparent;
    transition: all var(--transition-fast);
}

.policy-nav a:hover {
    color: var(--teal);
    background: var(--white);
    border-left-color: var(--teal);
}

.policy-nav a.active {
    color: var(--navy);
    background: var(--white);
    border-left-color: var(--navy);
    font-weight: 500;
}

.policy-content {
    max-width: 720px;
}

.policy-meta {
    display: flex;
    gap: 2rem;
    padding: 1rem 1.5rem;
    background: var(--off-white);
    border-radius: var(--radius-md);
    margin-bottom: 2.5rem;
    font-size: 0.9375rem;
}

.policy-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-500);
}

.policy-meta-item strong {
    color: var(--gray-700);
}

.policy-meta-item svg {
    width: 18px;
    height: 18px;
    color: var(--teal);
}

.policy-content-inner h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--navy);
    margin: 2.5rem 0 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--off-white);
    scroll-margin-top: 100px;
}

.policy-content-inner h2:first-child {
    margin-top: 0;
}

.policy-content-inner h3 {
    font-family: var(--font-body);
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--navy);
    margin: 1.5rem 0 0.75rem;
}

.policy-content-inner p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.policy-content-inner ul,
.policy-content-inner ol {
    margin: 1rem 0;
    padding-left: 1.25rem;
}

.policy-content-inner li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.policy-content-inner li strong {
    color: var(--navy);
}

/* Policy Card (for contact info boxes) */
.policy-card,
.wp-block-group.has-background.policy-card {
    background: linear-gradient(135deg, var(--navy) 0%, var(--teal-dark) 100%) !important;
    color: var(--white);
    padding: 1.75rem;
    border-radius: var(--radius-lg);
    margin: 1.5rem 0;
}

.policy-card p {
    margin: 0 0 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.policy-card p:last-child {
    margin-bottom: 0;
}

.policy-card strong {
    color: var(--white);
}

.policy-card a {
    color: var(--teal-light);
}

.policy-card a:hover {
    text-decoration: underline;
}

/* Rights Grid (for Your Rights section) */
.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.right-item {
    background: var(--off-white);
    padding: 1.25rem;
    border-radius: var(--radius-md);
    border-left: 3px solid var(--teal);
}

.right-item h4 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.right-item p {
    font-size: 0.875rem;
    margin: 0;
    color: var(--gray-500);
}

/* Feature Grid (for Accessibility features) */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.feature-item {
    background: var(--off-white);
    padding: 1.25rem;
    border-radius: var(--radius-md);
    border-left: 3px solid var(--teal);
}

.feature-item h4 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-item h4 svg {
    width: 18px;
    height: 18px;
    color: var(--teal);
}

.feature-item p {
    font-size: 0.875rem;
    margin: 0;
    color: var(--gray-500);
}

@media (max-width: 600px) {
    .policy-meta {
        flex-direction: column;
        gap: 0.75rem;
    }
}
