/* ============================================
   Game Change Financial - Master Stylesheet
   Creative Planning + Carson Wealth Inspired
   ============================================ */

/* Modern CSS Reset */
*, *::before, *::after {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
}

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

body {
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #3D4449;
    background-color: #FDFCF9;
}

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}

input, button, textarea, select {
    font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
}

/* ============================================
   CSS Custom Properties (Variables)
   ============================================ */
:root {
    /* Brand Colors */
    --color-primary-navy: #1E3A5F;
    --color-accent-gold: #E5A92D;
    --color-dark-navy: #14304A;
    --color-soft-gold: #DFC88A;
    --color-cream-bg: #FDFCF9;
    --color-warm-cream: #F7F5F0;
    --color-light-blue: #EAF5FF;
    --color-text-dark: #1A1D21;
    --color-text-body: #3D4449;
    --color-text-muted: #6B7280;
    --color-white: #FFFFFF;
    --color-border: #E5E7EB;

    /* Typography */
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Responsive Font Sizes */
    --font-size-xs: 0.75rem;
    --font-size-sm: clamp(0.875rem, 0.8rem + 0.25vw, 1rem);
    --font-size-base: clamp(1rem, 0.9rem + 0.5vw, 1.125rem);
    --font-size-lg: clamp(1.125rem, 1rem + 0.5vw, 1.25rem);
    --font-size-xl: clamp(1.25rem, 1rem + 1vw, 1.5rem);
    --font-size-2xl: clamp(1.5rem, 1.2rem + 1.5vw, 2rem);
    --font-size-3xl: clamp(2rem, 1.5rem + 2vw, 2.75rem);
    --font-size-4xl: clamp(2.25rem, 1.75rem + 2.5vw, 3.25rem);
    --font-size-5xl: clamp(2.75rem, 2rem + 3vw, 4rem);

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;

    /* Section Padding */
    --section-padding-y: clamp(40px, 5vw, 60px);
    --section-padding-x: clamp(20px, 5vw, 40px);

    /* Container */
    --container-max: 1280px;
    --container-narrow: 800px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-card: 0 2px 8px rgba(30, 58, 95, 0.08);

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms ease;
}

/* ============================================
   Accessibility - Skip Link
   ============================================ */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary-navy);
    color: var(--color-white);
    padding: var(--space-sm) var(--space-md);
    text-decoration: none;
    font-weight: 600;
    border-radius: var(--radius-md);
    z-index: 9999;
    transition: top var(--transition-fast);
}

.skip-link:focus {
    top: var(--space-sm);
}

/* ============================================
   Container & Layout
   ============================================ */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding-left: var(--section-padding-x);
    padding-right: var(--section-padding-x);
}

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

.section {
    padding-top: var(--section-padding-y);
    padding-bottom: var(--section-padding-y);
}

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

h1 { font-size: var(--font-size-5xl); }
h2 { font-size: var(--font-size-3xl); }
h3 { font-size: var(--font-size-2xl); }
h4 { font-size: var(--font-size-xl); }
h5 { font-size: var(--font-size-lg); }
h6 { font-size: var(--font-size-base); }

p {
    font-size: var(--font-size-base);
    line-height: 1.7;
    color: var(--color-text-body);
}

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

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

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

.section-header h2 {
    margin-bottom: var(--space-sm);
}

.section-header p {
    max-width: 700px;
    margin: 0 auto;
    font-size: var(--font-size-lg);
}

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

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

.btn-primary:hover {
    background: var(--color-dark-navy);
    border-color: var(--color-dark-navy);
}

.btn-gold {
    background: var(--color-accent-gold);
    color: var(--color-white);
    border-color: var(--color-accent-gold);
}

.btn-gold:hover {
    background: #D49A22;
    border-color: #D49A22;
}

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

.btn-outline:hover {
    background: var(--color-primary-navy);
    color: var(--color-white);
}

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

.btn-white:hover {
    background: var(--color-cream-bg);
    border-color: var(--color-cream-bg);
}

.btn-lg {
    padding: 1rem 2.25rem;
    font-size: var(--font-size-lg);
}

.btn-sm {
    padding: 0.625rem 1.25rem;
    font-size: var(--font-size-sm);
}

/* ============================================
   Header & Navigation
   ============================================ */
.site-header {
    position: sticky;
    top: 0;
    background: var(--color-white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    padding: var(--space-sm) 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
}

.site-logo {
    flex-shrink: 0;
}

.site-logo img {
    height: 72px;
    width: auto;
}

@media (min-width: 768px) {
    .site-logo img {
        height: 88px;
    }
}

.main-nav {
    display: none;
    align-items: center;
    gap: var(--space-lg);
}

.main-nav a {
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--color-text-dark);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.main-nav a:hover {
    color: var(--color-primary-navy);
}

.header-cta {
    display: none;
}

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text-dark);
    transition: var(--transition-fast);
}

@media (min-width: 1024px) {
    .main-nav {
        display: flex;
    }

    .header-cta {
        display: block;
    }

    .mobile-menu-toggle {
        display: none;
    }
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: var(--color-white);
    z-index: 1001;
    padding: var(--space-xl);
    transition: right var(--transition-base);
    overflow-y: auto;
}

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

.mobile-menu-close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    padding: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 24px;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-top: var(--space-2xl);
}

.mobile-nav a {
    font-size: var(--font-size-lg);
    font-weight: 500;
    color: var(--color-text-dark);
    text-decoration: none;
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--color-border);
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
}

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

/* ============================================
   HERO SECTION - Creative Planning Style
   Full-width image with overlay, text left, tabs right
   ============================================ */
.hero-fullwidth {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Full-width Background Image */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

/* Dark overlay for text readability - Creative Planning style */
.hero-dark-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(20, 48, 74, 0.85) 0%,
        rgba(20, 48, 74, 0.75) 35%,
        rgba(20, 48, 74, 0.55) 60%,
        rgba(20, 48, 74, 0.35) 100%
    );
    z-index: 2;
}

/* Strong fade on right edge - for connected buttons area */
.hero-fade-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: 100%;
    background: linear-gradient(
        to left,
        rgba(253, 252, 249, 0.95) 0%,
        rgba(253, 252, 249, 0.85) 30%,
        rgba(253, 252, 249, 0.5) 60%,
        transparent 100%
    );
    z-index: 3;
    pointer-events: none;
}

/* Hero Content Container - overlaid on image */
.hero-fullwidth-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: var(--space-xl) var(--section-padding-x);
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

/* Left Side: Text Content */
.hero-text-left {
    flex: 1;
    max-width: 650px;
}

.hero-text-left h1 {
    color: var(--color-white);
    font-size: var(--font-size-4xl);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--space-md);
}

.hero-text-left h1 .gold-text {
    color: var(--color-accent-gold);
    display: block;
    margin-top: 0.25em;
}

.hero-subtext {
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--font-size-lg);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
    max-width: 550px;
}

.hero-main-cta {
    display: inline-flex;
}

/* Right Side: Connected Service Buttons Container */
.hero-tabs-right {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 340px;
}

/* Connected Buttons Wrapper - holds buttons and SVG connectors */
.connected-buttons-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* SVG Curved Connector Lines */
.connector-svg {
    position: absolute;
    left: 22px;
    top: 0;
    width: 40px;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.connector-path {
    fill: none;
    stroke: var(--color-accent-gold);
    stroke-width: 2;
    stroke-dasharray: 6, 4;
    opacity: 0.7;
}

/* Gold dots on connector line */
.connector-dot {
    fill: var(--color-accent-gold);
}

/* Individual Connected Tab Button */
.hero-vertical-tab {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem 1rem 3.5rem;
    background: linear-gradient(135deg, rgba(229, 169, 45, 0.15) 0%, rgba(223, 200, 138, 0.2) 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(229, 169, 45, 0.35);
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: all var(--transition-base);
    cursor: pointer;
    margin-bottom: 1.5rem;
}

.hero-vertical-tab:last-of-type {
    margin-bottom: 0;
}

.hero-vertical-tab:hover {
    background: linear-gradient(135deg, rgba(229, 169, 45, 0.25) 0%, rgba(223, 200, 138, 0.3) 100%);
    border-color: var(--color-accent-gold);
    transform: translateX(5px);
    box-shadow: 0 4px 20px rgba(229, 169, 45, 0.25);
}

.hero-vertical-tab.active {
    background: linear-gradient(135deg, rgba(229, 169, 45, 0.3) 0%, rgba(223, 200, 138, 0.35) 100%);
    border-color: var(--color-accent-gold);
    box-shadow: 0 4px 20px rgba(229, 169, 45, 0.3);
}

/* Gold circle connector dot on each button */
.hero-vertical-tab::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: var(--color-accent-gold);
    border-radius: 50%;
    border: 3px solid var(--color-white);
    box-shadow: 0 2px 8px rgba(229, 169, 45, 0.4);
    z-index: 3;
}

/* Tab Icon */
.hero-tab-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(229, 169, 45, 0.25);
    border-radius: 50%;
}

.hero-tab-icon svg {
    width: 22px;
    height: 22px;
    color: var(--color-accent-gold);
}

/* Tab Text */
.hero-tab-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.hero-tab-title {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text-dark);
    line-height: 1.2;
}

.hero-tab-subtitle {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    line-height: 1.3;
}

/* Tab Arrow */
.hero-tab-arrow {
    flex-shrink: 0;
    opacity: 0.6;
    transition: var(--transition-fast);
}

.hero-tab-arrow svg {
    width: 18px;
    height: 18px;
    color: var(--color-text-muted);
}

.hero-vertical-tab:hover .hero-tab-arrow {
    opacity: 1;
    transform: translateX(3px);
    color: var(--color-accent-gold);
}

/* "One Coordinated Strategy" Label Below Buttons */
.connected-strategy-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.25rem;
    padding: 0.75rem 1.5rem;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-text-dark);
    box-shadow: var(--shadow-sm);
}

.connected-strategy-label svg {
    width: 18px;
    height: 18px;
    color: var(--color-accent-gold);
}

/* ============================================
   TAB CONTENT PANELS - Below Hero
   ============================================ */
.hero-tab-panels {
    background: var(--color-warm-cream);
}

.hero-tab-panel {
    display: none;
    padding: var(--space-xl) 0;
    animation: fadeSlideIn 0.4s ease;
}

.hero-tab-panel.active {
    display: block;
}

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

.tab-panel-inner {
    max-width: 800px;
}

.tab-panel-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: var(--space-md);
}

.tab-panel-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(229, 169, 45, 0.15) 0%, rgba(223, 200, 138, 0.1) 100%);
    border: 2px solid rgba(229, 169, 45, 0.3);
    border-radius: 50%;
}

.tab-panel-icon svg {
    width: 24px;
    height: 24px;
    color: var(--color-accent-gold);
}

.tab-panel-header h3 {
    color: var(--color-primary-navy);
    font-size: var(--font-size-2xl);
    line-height: 1.2;
    margin: 0;
}

.tab-panel-intro {
    font-size: var(--font-size-lg);
    color: var(--color-text-body);
    margin-bottom: var(--space-md);
    line-height: 1.7;
}

.tab-panel-list {
    list-style: none;
    margin-bottom: var(--space-lg);
    padding: 0;
}

.tab-panel-list li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    color: var(--color-text-body);
    font-size: var(--font-size-base);
    line-height: 1.6;
}

.tab-panel-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 10px;
    height: 10px;
    background: var(--color-accent-gold);
    border-radius: 50%;
}

/* ============================================
   HERO RESPONSIVE - Desktop Layout
   ============================================ */
@media (min-width: 1024px) {
    .hero-fullwidth {
        min-height: 75vh;
    }

    .hero-fullwidth-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: var(--space-3xl) var(--section-padding-x);
    }

    .hero-text-left {
        flex: 0 0 55%;
        max-width: 600px;
    }

    .hero-text-left h1 {
        font-size: var(--font-size-5xl);
    }

    .hero-tabs-right {
        flex: 0 0 40%;
        max-width: 380px;
    }

    .hero-vertical-tab {
        padding: 1.25rem 1.5rem 1.25rem 3.5rem;
        margin-bottom: 1.75rem;
    }

    .hero-vertical-tab:last-of-type {
        margin-bottom: 0;
    }

    .connected-strategy-label {
        padding: 0.875rem 2rem;
    }

    .tab-panel-inner {
        max-width: 900px;
    }
}

/* ============================================
   HERO RESPONSIVE - Tablet Layout
   ============================================ */
@media (min-width: 768px) and (max-width: 1023px) {
    .hero-fullwidth {
        min-height: 70vh;
    }

    .hero-fullwidth-content {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-xl);
    }

    .hero-text-left h1 {
        font-size: var(--font-size-3xl);
    }

    .hero-tabs-right {
        max-width: 100%;
    }

    .hero-vertical-tab {
        padding: 1rem 1.25rem 1rem 3.25rem;
        margin-bottom: 1.25rem;
    }

    .hero-vertical-tab::before {
        left: 10px;
        width: 18px;
        height: 18px;
    }

    .connected-strategy-label {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }
}

/* ============================================
   HERO RESPONSIVE - Mobile Layout
   ============================================ */
@media (max-width: 767px) {
    .hero-fullwidth {
        min-height: auto;
        padding: var(--space-2xl) 0;
    }

    .hero-dark-overlay {
        background: linear-gradient(
            to bottom,
            rgba(20, 48, 74, 0.85) 0%,
            rgba(20, 48, 74, 0.75) 50%,
            rgba(20, 48, 74, 0.65) 100%
        );
    }

    .hero-fullwidth-content {
        flex-direction: column;
        gap: var(--space-lg);
        padding: var(--space-lg) var(--section-padding-x);
    }

    .hero-text-left h1 {
        font-size: var(--font-size-2xl);
    }

    .hero-text-left h1 .gold-text {
        font-size: 0.95em;
    }

    .hero-subtext {
        font-size: var(--font-size-base);
    }

    .hero-fade-right {
        width: 100%;
        background: linear-gradient(
            to top,
            rgba(253, 252, 249, 0.95) 0%,
            rgba(253, 252, 249, 0.7) 50%,
            transparent 100%
        );
    }

    .hero-tabs-right {
        max-width: 100%;
    }

    .hero-vertical-tab {
        padding: 0.875rem 1rem 0.875rem 3rem;
        margin-bottom: 1rem;
    }

    .hero-vertical-tab::before {
        left: 8px;
        width: 16px;
        height: 16px;
        border-width: 2px;
    }

    .hero-tab-icon {
        width: 40px;
        height: 40px;
    }

    .hero-tab-icon svg {
        width: 20px;
        height: 20px;
    }

    .hero-tab-title {
        font-size: 1rem;
    }

    .hero-tab-subtitle {
        font-size: 0.75rem;
    }

    .connected-strategy-label {
        padding: 0.625rem 1.25rem;
        font-size: 0.8125rem;
    }

    .tab-panel-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .tab-panel-header h3 {
        font-size: var(--font-size-xl);
    }
}

/* ============================================
   TRUST BAR / SOCIAL PROOF
   ============================================ */
.trust-bar {
    background: var(--color-primary-navy);
    padding: var(--space-lg) 0;
}

.trust-bar-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: var(--space-lg) var(--space-xl);
    text-align: center;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.trust-number {
    font-family: var(--font-heading);
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--color-accent-gold);
}

.trust-label {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (min-width: 768px) {
    .trust-bar-inner {
        justify-content: space-around;
    }

    .trust-item {
        flex-direction: row;
        gap: var(--space-sm);
    }
}

/* ============================================
   WHO WE SERVE SECTION
   ============================================ */
.who-we-serve {
    background: var(--color-white);
}

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

.serve-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    position: relative;
}

/* Gold accent bar on top of each card */
.serve-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--color-accent-gold);
    z-index: 1;
}

.serve-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(30, 58, 95, 0.15);
    border-color: var(--color-accent-gold);
}

.serve-card-image {
    overflow: hidden;
    position: relative;
}

.serve-card-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    transition: transform var(--transition-slow);
}

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

.serve-card-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-primary-navy) 0%, var(--color-dark-navy) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: var(--font-size-sm);
}

.serve-card-content {
    padding: var(--space-lg);
    background: var(--color-white);
}

.serve-card-content h3 {
    color: var(--color-primary-navy);
    margin-bottom: var(--space-sm);
    font-size: var(--font-size-xl);
    font-weight: 700;
}

.serve-card-content p {
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

.serve-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-accent-gold);
    font-weight: 700;
    text-decoration: none;
    transition: gap var(--transition-fast), color var(--transition-fast);
    font-size: var(--font-size-sm);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.serve-card-link:hover {
    gap: 0.75rem;
    color: var(--color-primary-navy);
}

.serve-card-link svg {
    width: 16px;
    height: 16px;
    transition: transform var(--transition-fast);
}

.serve-card-link:hover svg {
    transform: translateX(3px);
}

@media (min-width: 768px) {
    .serve-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-xl);
    }
}

/* ============================================
   WHAT WE DO SECTION - 3x3 Service Grid
   ============================================ */
.what-we-do {
    background: var(--color-light-blue);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

.service-card {
    background: var(--color-white);
    padding: 1.25rem;
    border-radius: var(--radius-md);
    text-align: center;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-accent-gold);
}

.service-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 0.5rem;
    background: linear-gradient(135deg, rgba(229, 169, 45, 0.12) 0%, rgba(223, 200, 138, 0.08) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

/* Subtle gold ring accent */
.service-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(229, 169, 45, 0.25);
    transition: border-color var(--transition-base);
}

.service-card:hover .service-icon {
    transform: scale(1.08);
    box-shadow: 0 4px 20px rgba(229, 169, 45, 0.2);
}

.service-card:hover .service-icon::before {
    border-color: var(--color-accent-gold);
}

.service-icon svg {
    width: 20px;
    height: 20px;
    color: var(--color-accent-gold);
    stroke-width: 1.5;
    transition: transform var(--transition-base);
}

.service-card:hover .service-icon svg {
    transform: scale(1.05);
}

/* Legacy placeholder - hidden when SVG icons are used */
.service-icon-placeholder {
    display: none;
}

.service-card h4 {
    color: var(--color-primary-navy);
    margin-bottom: 0.25rem;
    font-size: 1.0625rem;
    font-weight: 700;
}

.service-card p {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.service-link {
    font-size: var(--font-size-sm);
    color: var(--color-primary-navy);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    transition: gap var(--transition-fast);
}

.service-link:hover {
    gap: 0.5rem;
}

@media (min-width: 640px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.875rem;
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .service-card {
        padding: 1.5rem;
    }
}

/* ============================================
   PROCESS SECTION - How It Works
   ============================================ */
.process-section {
    background: var(--color-white);
}

.process-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: var(--space-lg);
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--color-primary-navy);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: var(--font-size-2xl);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.step-content h4 {
    color: var(--color-primary-navy);
    margin-bottom: var(--space-xs);
}

.step-content p {
    color: var(--color-text-body);
}

@media (min-width: 768px) {
    .process-steps {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-lg);
        text-align: center;
    }

    .process-step {
        flex-direction: column;
        align-items: center;
    }
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials {
    background: var(--color-cream-bg);
}

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

.testimonial-card {
    background: var(--color-white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

.testimonial-quote {
    font-size: var(--font-size-lg);
    font-style: italic;
    color: var(--color-text-body);
    margin-bottom: var(--space-lg);
    line-height: 1.7;
}

.testimonial-quote::before {
    content: '"';
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--color-accent-gold);
    line-height: 0;
    display: block;
    margin-bottom: var(--space-sm);
}

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

.testimonial-author-info h5 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: var(--font-size-base);
    color: var(--color-text-dark);
}

.testimonial-author-info span {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, var(--color-primary-navy) 0%, var(--color-dark-navy) 100%);
    padding: var(--space-3xl) var(--section-padding-x);
    text-align: center;
}

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

.cta-content h2 {
    color: var(--color-white);
    margin-bottom: var(--space-sm);
}

.cta-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-xl);
}

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

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--color-dark-navy);
    color: var(--color-white);
    padding: var(--space-2xl) 0 var(--space-lg);
}

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

.footer-brand img {
    height: 42px;
    margin-bottom: var(--space-md);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--font-size-sm);
    max-width: 300px;
}

.footer-nav h5 {
    color: var(--color-white);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: var(--font-size-base);
    margin-bottom: var(--space-md);
}

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

.footer-nav li {
    margin-bottom: var(--space-xs);
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: var(--font-size-sm);
    transition: color var(--transition-fast);
}

.footer-nav a:hover {
    color: var(--color-accent-gold);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--font-size-sm);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--space-lg);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-md);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: var(--font-size-xs);
}

.footer-legal {
    display: flex;
    gap: var(--space-md);
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: var(--font-size-xs);
    transition: color var(--transition-fast);
}

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

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

/* ============================================
   UTILITIES
   ============================================ */
.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;
}

.gold-text {
    color: var(--color-accent-gold);
}

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

/* ============================================
   WHY WE'RE DIFFERENT SECTION
   ============================================ */
.why-different {
    background: var(--color-warm-cream);
}

.why-different .section-header .emphasis-text {
    margin-top: var(--space-sm);
    font-weight: 600;
    font-size: var(--font-size-lg);
    color: var(--color-text-dark);
}

.callout-box {
    background: transparent;
    border-left: 4px solid var(--color-accent-gold);
    margin: var(--space-lg) auto;
    padding: var(--space-sm) var(--space-lg);
    max-width: 700px;
}

.callout-box p {
    color: var(--color-text-body);
    font-size: var(--font-size-lg);
    font-style: italic;
    font-weight: 500;
    line-height: 1.6;
}

.mb-4 {
    margin-bottom: var(--space-lg);
}

.differentiators {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.diff-card {
    text-align: center;
    padding: var(--space-lg);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

.diff-card__icon {
    margin-bottom: var(--space-md);
}

.diff-card__icon svg {
    margin: 0 auto;
}

.diff-card h4 {
    color: var(--color-primary-navy);
    margin-bottom: var(--space-xs);
    font-size: var(--font-size-lg);
}

.diff-card p {
    font-size: var(--font-size-sm);
    color: var(--color-text-body);
}

@media (min-width: 640px) {
    .differentiators {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .differentiators {
        grid-template-columns: repeat(4, 1fr);
    }
}

.section-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--color-accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-sm);
}

/* ============================================
   WHO WE SERVE - Four Column Grid
   ============================================ */
.serve-grid--four {
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .serve-grid--four {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .serve-grid--four {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Placeholder for cards without images */
.serve-card-image--placeholder {
    background: linear-gradient(135deg, var(--color-primary-navy) 0%, var(--color-dark-navy) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.serve-placeholder-icon svg {
    width: 64px;
    height: 64px;
    opacity: 0.7;
}

/* First-person quote styling in serve cards */
.serve-card-content p {
    font-style: italic;
    color: var(--color-text-body);
}

/* ============================================
   CTA SECTION SUBTEXT
   ============================================ */
.cta-subtext {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.6);
    margin-top: var(--space-md);
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */
@media (max-width: 767px) {
    .section {
        padding-top: var(--space-xl);
        padding-bottom: var(--space-xl);
    }

    .hero-headline h1 {
        font-size: var(--font-size-3xl);
    }
}

/* ============================================
   VERSION 2: OVERLAY HERO STYLE
   Full-width image with text overlay
   ============================================ */
.hero--overlay {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.85) 0%, rgba(20, 48, 74, 0.75) 100%);
}

.hero-overlay-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: var(--space-3xl) 0;
    text-align: center;
}

.hero--overlay .container {
    max-width: 900px;
}

.hero-tagline {
    display: inline-block;
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--color-accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: var(--space-md);
}

.hero--overlay h1 {
    color: var(--color-white);
    font-size: var(--font-size-4xl);
    margin-bottom: var(--space-lg);
    line-height: 1.15;
}

.hero--overlay .hero-subheadline {
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--font-size-lg);
    max-width: 750px;
    margin: 0 auto var(--space-xl);
    line-height: 1.7;
}

.hero-cta-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    align-items: center;
}

.btn-outline-white {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: var(--color-white);
    padding: 0.875rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-base);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-white);
}

@media (min-width: 768px) {
    .hero--overlay h1 {
        font-size: var(--font-size-5xl);
    }

    .hero-cta-group {
        flex-direction: row;
        justify-content: center;
    }
}

/* Service Pillars Section - Below Overlay Hero */
.service-pillars {
    background: var(--color-white);
    padding: var(--space-xl) 0;
    border-bottom: 1px solid var(--color-border);
}

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

.pillar-card {
    text-align: center;
    padding: var(--space-lg);
}

.pillar-card h3 {
    color: var(--color-primary-navy);
    font-size: var(--font-size-xl);
    margin-bottom: var(--space-xs);
}

.pillar-card p {
    color: var(--color-text-body);
    font-size: var(--font-size-base);
    margin-bottom: var(--space-sm);
}

.pillar-link {
    color: var(--color-accent-gold);
    font-weight: 600;
    text-decoration: none;
}

.pillar-link:hover {
    text-decoration: underline;
}

@media (min-width: 768px) {
    .pillars-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .pillar-card {
        border-right: 1px solid var(--color-border);
    }

    .pillar-card:last-child {
        border-right: none;
    }
}

/* ============================================
   PREMIUM HERO SECTION
   Inspired by Creative Planning, Carson Wealth, Fisher Investments
   Image LEFT (prominent), Content RIGHT
   ============================================ */

.hero-premium {
    background: var(--color-cream-bg);
    min-height: calc(100vh - 100px);
    display: flex;
    align-items: stretch;
    overflow: hidden;
}

.hero-premium-inner {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: calc(100vh - 100px);
}

/* ============================================
   LEFT SIDE: Hero Image - Premium Treatment
   ============================================ */
.hero-premium-image {
    position: relative;
    width: 100%;
    min-height: 300px;
    flex-shrink: 0;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 300px;
    overflow: hidden;
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    /* ENHANCED: Richer colors, higher contrast - no washed out appearance */
    filter: contrast(1.08) saturate(1.12) brightness(1.02);
    transition: transform 0.8s ease;
}

/* Subtle sophisticated overlay - NOT washed out */
.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Minimal overlay - keeps image prominent */
    background: linear-gradient(
        to right,
        transparent 0%,
        transparent 60%,
        rgba(253, 252, 249, 0.15) 80%,
        rgba(253, 252, 249, 0.4) 100%
    );
    pointer-events: none;
}

/* ============================================
   RIGHT SIDE: Content Area
   ============================================ */
.hero-premium-content {
    background: var(--color-cream-bg);
    padding: var(--space-xl) var(--section-padding-x);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

/* Eyebrow / Tag */
.hero-eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-accent-gold);
    margin-bottom: var(--space-sm);
    padding: 0.375rem 0.875rem;
    background: rgba(229, 169, 45, 0.1);
    border-radius: 100px;
    border: 1px solid rgba(229, 169, 45, 0.25);
}

/* Premium Headline */
.hero-premium-headline h1 {
    font-family: var(--font-heading);
    font-size: var(--font-size-3xl);
    font-weight: 700;
    line-height: 1.15;
    color: var(--color-primary-navy);
    margin-bottom: var(--space-md);
}

.gold-accent {
    color: var(--color-accent-gold);
    display: block;
    margin-top: 0.15em;
}

.hero-premium-subhead {
    font-size: var(--font-size-base);
    line-height: 1.7;
    color: var(--color-text-body);
    margin-bottom: var(--space-lg);
}

/* ============================================
   SERVICE SELECTOR - SOLID PREMIUM BUTTONS
   Not ghostly - proper contrast and weight
   ============================================ */
.hero-service-selector {
    margin-top: var(--space-md);
}

.service-selector-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: var(--space-sm);
}

.service-buttons-container {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    padding-left: 2rem;
}

/* ============================================
   CONNECTOR LINE SVG - Elegant Integration Visual
   ============================================ */
.connector-line-svg {
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 100%;
    z-index: 1;
}

.connector-line-svg line {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawLine 1.5s ease forwards 0.3s;
}

.connector-line-svg circle {
    opacity: 0;
    transform: scale(0);
    animation: popIn 0.4s ease forwards;
}

.connector-line-svg circle:nth-child(2) { animation-delay: 0.6s; }
.connector-line-svg circle:nth-child(3) { animation-delay: 0.9s; }
.connector-line-svg circle:nth-child(4) { animation-delay: 1.2s; }

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

@keyframes popIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ============================================
   SERVICE BUTTONS - SOLID, PROFESSIONAL
   Premium navy/gold - NOT transparent/ghostly
   ============================================ */
.service-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    padding: 1rem 1.25rem;
    background: var(--color-white);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all 0.25s ease;
    text-align: left;
    position: relative;
    box-shadow: 0 2px 8px rgba(30, 58, 95, 0.06);
}

.service-btn:hover {
    border-color: var(--color-primary-navy);
    box-shadow: 0 4px 16px rgba(30, 58, 95, 0.12);
    transform: translateX(4px);
}

/* ACTIVE STATE - Solid Navy Background (Premium Look) */
.service-btn.active {
    background: var(--color-primary-navy);
    border-color: var(--color-primary-navy);
    box-shadow: 0 6px 20px rgba(30, 58, 95, 0.25);
}

.service-btn.active .service-btn-title {
    color: var(--color-white);
}

.service-btn.active .service-btn-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.service-btn.active .service-btn-icon {
    background: rgba(229, 169, 45, 0.2);
    border-color: var(--color-accent-gold);
}

.service-btn.active .service-btn-icon svg {
    color: var(--color-accent-gold);
}

.service-btn.active .service-btn-arrow svg {
    color: var(--color-accent-gold);
}

/* Service Button Icon */
.service-btn-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(229, 169, 45, 0.1);
    border: 2px solid rgba(229, 169, 45, 0.3);
    border-radius: 50%;
    transition: all 0.25s ease;
}

.service-btn-icon svg {
    width: 22px;
    height: 22px;
    color: var(--color-accent-gold);
    transition: color 0.25s ease;
}

/* Service Button Text */
.service-btn-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.service-btn-title {
    font-family: var(--font-heading);
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--color-primary-navy);
    line-height: 1.2;
    transition: color 0.25s ease;
}

.service-btn-subtitle {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    line-height: 1.3;
    transition: color 0.25s ease;
}

/* Service Button Arrow */
.service-btn-arrow {
    flex-shrink: 0;
    opacity: 0.5;
    transition: all 0.25s ease;
}

.service-btn-arrow svg {
    width: 20px;
    height: 20px;
    color: var(--color-text-muted);
    transition: all 0.25s ease;
}

.service-btn:hover .service-btn-arrow {
    opacity: 1;
    transform: translateX(3px);
}

.service-btn:hover .service-btn-arrow svg {
    color: var(--color-primary-navy);
}

/* ============================================
   INTEGRATION BADGE
   ============================================ */
.integration-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.25rem;
    padding: 0.625rem 1rem;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text-dark);
    box-shadow: var(--shadow-sm);
}

.integration-badge svg {
    width: 18px;
    height: 18px;
    color: var(--color-accent-gold);
}

/* ============================================
   SERVICE DETAIL PANELS
   ============================================ */
.service-detail-panels {
    background: var(--color-warm-cream);
}

.service-panel {
    display: none;
    padding: var(--space-2xl) 0;
    animation: fadeSlideUp 0.5s ease;
}

.service-panel.active {
    display: block;
}

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

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

.panel-header {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: var(--space-lg);
}

.panel-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary-navy) 0%, var(--color-dark-navy) 100%);
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(30, 58, 95, 0.2);
}

.panel-icon svg {
    width: 26px;
    height: 26px;
    color: var(--color-accent-gold);
}

.panel-header h2 {
    font-family: var(--font-heading);
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--color-primary-navy);
    line-height: 1.2;
    margin: 0;
}

.panel-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-lg) 0;
}

.panel-benefits li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.875rem;
    font-size: var(--font-size-base);
    color: var(--color-text-body);
    line-height: 1.65;
}

.panel-benefits li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 10px;
    height: 10px;
    background: var(--color-accent-gold);
    border-radius: 50%;
}

/* Premium Navy Button */
.btn-premium-navy {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-size: var(--font-size-base);
    font-weight: 700;
    text-decoration: none;
    background: var(--color-primary-navy);
    color: var(--color-white);
    border: 2px solid var(--color-primary-navy);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(30, 58, 95, 0.2);
}

.btn-premium-navy:hover {
    background: var(--color-dark-navy);
    border-color: var(--color-dark-navy);
    box-shadow: 0 6px 20px rgba(30, 58, 95, 0.3);
    transform: translateY(-2px);
}

/* Alternative: Premium Gold Button */
.btn-premium-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-size: var(--font-size-base);
    font-weight: 700;
    text-decoration: none;
    background: var(--color-accent-gold);
    color: var(--color-white);
    border: 2px solid var(--color-accent-gold);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(229, 169, 45, 0.25);
}

.btn-premium-gold:hover {
    background: #D49A22;
    border-color: #D49A22;
    box-shadow: 0 6px 20px rgba(229, 169, 45, 0.35);
    transform: translateY(-2px);
}

/* ============================================
   PREMIUM HERO - DESKTOP LAYOUT (1024px+)
   Image LEFT, Content RIGHT - Side by Side
   ============================================ */
@media (min-width: 1024px) {
    .hero-premium {
        min-height: calc(100vh - 100px);
    }

    .hero-premium-inner {
        flex-direction: row;
        align-items: stretch;
    }

    /* Image takes 50% - prominent placement */
    .hero-premium-image {
        width: 50%;
        min-height: calc(100vh - 100px);
    }

    .hero-image-container {
        height: 100%;
        min-height: calc(100vh - 100px);
    }

    .hero-image-container img {
        height: 100%;
        object-position: center center;
    }

    /* Refined overlay for desktop - subtle fade to content */
    .hero-image-overlay {
        background: linear-gradient(
            to right,
            transparent 0%,
            transparent 70%,
            rgba(253, 252, 249, 0.3) 85%,
            rgba(253, 252, 249, 0.7) 100%
        );
    }

    /* Content takes 50% */
    .hero-premium-content {
        width: 50%;
        padding: var(--space-2xl) var(--space-2xl) var(--space-2xl) var(--space-xl);
        display: flex;
        align-items: center;
    }

    .hero-content-inner {
        max-width: 520px;
        margin: 0;
    }

    .hero-premium-headline h1 {
        font-size: var(--font-size-4xl);
    }

    .hero-premium-subhead {
        font-size: var(--font-size-lg);
    }

    .service-btn {
        padding: 1.125rem 1.5rem;
    }

    .service-btn-icon {
        width: 52px;
        height: 52px;
    }

    .service-btn-title {
        font-size: 1.125rem;
    }
}

/* ============================================
   PREMIUM HERO - LARGE DESKTOP (1280px+)
   ============================================ */
@media (min-width: 1280px) {
    .hero-premium-content {
        padding: var(--space-3xl) var(--space-3xl) var(--space-3xl) var(--space-2xl);
    }

    .hero-content-inner {
        max-width: 560px;
    }

    .hero-premium-headline h1 {
        font-size: clamp(2.5rem, 3vw, 3.25rem);
    }

    .service-buttons-container {
        gap: 1rem;
    }

    .service-btn {
        padding: 1.25rem 1.75rem;
    }
}

/* ============================================
   PREMIUM HERO - TABLET (768px - 1023px)
   ============================================ */
@media (min-width: 768px) and (max-width: 1023px) {
    .hero-premium {
        min-height: auto;
    }

    .hero-premium-inner {
        flex-direction: column;
    }

    .hero-premium-image {
        width: 100%;
        min-height: 45vh;
    }

    .hero-image-container {
        min-height: 45vh;
    }

    .hero-image-overlay {
        background: linear-gradient(
            to bottom,
            transparent 0%,
            transparent 70%,
            rgba(253, 252, 249, 0.4) 100%
        );
    }

    .hero-premium-content {
        padding: var(--space-xl);
    }

    .hero-content-inner {
        max-width: 700px;
    }

    .hero-premium-headline h1 {
        font-size: var(--font-size-3xl);
    }

    .service-buttons-container {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.75rem;
        padding-left: 2rem;
    }

    .panel-header {
        flex-direction: row;
        align-items: center;
    }
}

/* ============================================
   PREMIUM HERO - MOBILE (< 768px)
   ============================================ */
@media (max-width: 767px) {
    .hero-premium {
        min-height: auto;
    }

    .hero-premium-inner {
        flex-direction: column;
    }

    .hero-premium-image {
        width: 100%;
        min-height: 280px;
        max-height: 45vh;
    }

    .hero-image-container {
        min-height: 280px;
        max-height: 45vh;
    }

    .hero-image-container img {
        object-position: center 25%;
    }

    .hero-image-overlay {
        background: linear-gradient(
            to bottom,
            transparent 0%,
            transparent 60%,
            rgba(253, 252, 249, 0.5) 100%
        );
    }

    .hero-premium-content {
        padding: var(--space-lg) var(--section-padding-x);
    }

    .hero-eyebrow {
        font-size: 0.6875rem;
        padding: 0.3rem 0.75rem;
    }

    .hero-premium-headline h1 {
        font-size: var(--font-size-2xl);
    }

    .gold-accent {
        font-size: 0.92em;
    }

    .hero-premium-subhead {
        font-size: var(--font-size-sm);
        line-height: 1.65;
    }

    .service-selector-label {
        font-size: 0.75rem;
    }

    .service-buttons-container {
        padding-left: 1.75rem;
        gap: 0.625rem;
    }

    .connector-line-svg {
        width: 20px;
    }

    .service-btn {
        padding: 0.875rem 1rem;
        gap: 0.75rem;
    }

    .service-btn-icon {
        width: 42px;
        height: 42px;
    }

    .service-btn-icon svg {
        width: 20px;
        height: 20px;
    }

    .service-btn-title {
        font-size: 0.9375rem;
    }

    .service-btn-subtitle {
        font-size: 0.75rem;
    }

    .service-btn-arrow svg {
        width: 16px;
        height: 16px;
    }

    .integration-badge {
        font-size: 0.8125rem;
        padding: 0.5rem 0.875rem;
    }

    .integration-badge svg {
        width: 16px;
        height: 16px;
    }

    /* Panel adjustments for mobile */
    .service-panel {
        padding: var(--space-xl) 0;
    }

    .panel-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .panel-icon {
        width: 48px;
        height: 48px;
    }

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

    .panel-header h2 {
        font-size: var(--font-size-xl);
    }

    .panel-benefits li {
        font-size: var(--font-size-sm);
        padding-left: 1.5rem;
    }

    .panel-benefits li::before {
        width: 8px;
        height: 8px;
        top: 0.4rem;
    }

    .btn-premium-navy,
    .btn-premium-gold {
        width: 100%;
        padding: 0.875rem 1.5rem;
        font-size: var(--font-size-sm);
    }
}
