/* ============================================
   GLOBAL STYLES & RESET
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #1A293E;
    --color-accent: #0EA5E9;
    --color-accent-dark: #0284c7;
    --color-dark: #0d1b2a;
    --color-light: #f8f9fa;
    --color-gray: #6b7280;
    --color-gray-light: #e5e7eb;
    --color-white: #ffffff;
    --color-success: #10b981;

    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Poppins', 'Inter', sans-serif;

    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;

    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;

    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--color-primary);
    background-color: var(--color-white);
    line-height: 1.6;
    font-size: 1rem;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-primary);
}

h2 {
    font-size: 2.25rem;
    color: var(--color-primary);
}

h3 {
    font-size: 1.5rem;
    color: var(--color-primary);
}

h4 {
    font-size: 1.25rem;
    color: var(--color-primary);
}

p {
    margin-bottom: var(--spacing-md);
    color: var(--color-gray);
}

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

a:hover {
    color: var(--color-primary);
}

/* ============================================
   CONTAINER & LAYOUT
   ============================================ */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

section {
    padding: 5rem 0;
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
    background: var(--color-primary);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-logo a {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--color-primary);
    text-decoration: none;
}

.logo-icon {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    color: var(--color-white);
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    font-weight: 800;
    font-size: 1rem;
}

.logo-text {
    font-family: var(--font-heading);
    color: var(--color-white);
    font-size: 1.15rem;
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-subtitle {
    font-size: 0.65rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.footer-brand-sub {
    font-weight: 500;
    font-size: 1rem;
    opacity: 0.8;
}

.logo-svg {
    width: 2.25rem;
    height: 2.25rem;
    color: var(--color-white);
    flex-shrink: 0;
}

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

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-accent);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--color-accent);
    border-radius: 2px;
}

.nav-cta {
    background: var(--color-accent);
    color: var(--color-white) !important;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-md);
}

.nav-cta:hover {
    background: var(--color-white);
    color: var(--color-primary) !important;
}

.nav-cta.active::after {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
    min-width: 44px;
    min-height: 44px;
    padding: 8px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--color-white);
    border-radius: 2px;
    transition: var(--transition);
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-lg);
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    font-size: 1rem;
    text-decoration: none;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

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

.btn-primary:hover {
    background: var(--color-accent-dark);
    box-shadow: var(--shadow-lg);
}

.btn-lg {
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: 1.125rem;
}

.btn-secondary {
    background: var(--color-white);
    color: var(--color-accent);
    border: 2px solid var(--color-accent);
}

.btn-secondary:hover {
    background: var(--color-accent);
    color: var(--color-white);
}

/* ============================================
   ANIMATIONS
   ============================================ */

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

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

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

.fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    background: linear-gradient(135deg, var(--color-primary) 0%, #0d1b2a 60%, #0a1628 100%);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle, rgba(14, 165, 233, 0.08) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: 0 0;
    z-index: 0;
    pointer-events: none;
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2.5rem;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-tagline {
    color: var(--color-accent);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--spacing-md);
}

.hero-content h1 {
    font-size: 3.25rem;
    color: var(--color-white);
    margin-bottom: var(--spacing-lg);
    line-height: 1.15;
    font-weight: 800;
}

.hero-accent {
    color: var(--color-accent);
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--spacing-xl);
    line-height: 1.7;
    max-width: 560px;
}

.hero-actions {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
    flex-wrap: wrap;
}

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

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

.hero-badges {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.hero-badge {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    padding: 0.4rem 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 2rem;
    font-weight: 500;
    border-left: 3px solid var(--color-accent);
    padding-left: 0.7rem;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-icon-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xl);
}

.hero-building-icon {
    width: 180px;
    height: 180px;
    color: rgba(14, 165, 233, 0.25);
}

.hero-services-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    text-align: center;
}

.hero-services-list span {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    padding: 0.5rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.hero-services-list span:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

/* ============================================
   IMAGES & PLACEHOLDERS
   ============================================ */

.image-placeholder {
    width: 100%;
    aspect-ratio: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e5e7eb, #f3f4f6);
}

.image-placeholder svg {
    width: 100%;
    height: 100%;
}

.service-image-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(14, 165, 233, 0.05));
}

.gradient-blue {
    background: linear-gradient(135deg, var(--color-light), var(--color-white));
}

.gradient-teal {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), var(--color-white));
}

.gradient-slate {
    background: linear-gradient(135deg, rgba(100, 116, 139, 0.1), var(--color-white));
}

.gradient-green {
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.1), var(--color-white));
}

.gradient-orange {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), var(--color-white));
}

.about-hero {
    aspect-ratio: 3/4;
}

/* ============================================
   TRUST SIGNALS
   ============================================ */

.trust-signals {
    background: var(--color-white);
    padding: 4rem 0;
}

.trust-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--spacing-lg);
}

.trust-item {
    text-align: center;
    padding: var(--spacing-lg);
    background: var(--color-white);
    border: 1px solid var(--color-gray-light);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

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

.trust-icon {
    width: 40px;
    height: 40px;
    background: var(--color-accent);
    border-radius: 50%;
    margin: 0 auto var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
}

.trust-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-accent);
    font-family: var(--font-heading);
    margin-bottom: var(--spacing-sm);
}

.trust-label {
    font-weight: 500;
    font-size: 1.1rem;
    color: var(--color-primary);
}

/* ============================================
   SERVICES OVERVIEW
   ============================================ */

.services-overview {
    background: var(--color-light);
}

.services-overview h2 {
    text-align: center;
    margin-bottom: var(--spacing-sm);
}

.section-subtitle {
    text-align: center;
    color: var(--color-gray);
    margin-bottom: var(--spacing-2xl);
    font-size: 1.125rem;
}

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

.service-card {
    background: var(--color-white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

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

.service-icon {
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-accent), var(--color-primary));
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-md);
    color: var(--color-white);
}

.service-icon svg {
    width: 1.75rem;
    height: 1.75rem;
}

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

.service-card p {
    flex-grow: 1;
    margin-bottom: var(--spacing-md);
}

.service-link {
    color: var(--color-accent);
    font-weight: 600;
    display: inline-block;
}

.cta-section,
.cta-box {
    text-align: center;
    padding: var(--spacing-xl);
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: var(--radius-lg);
    margin-top: var(--spacing-xl);
}

.cta-section p,
.cta-box p {
    color: var(--color-white);
    margin-bottom: var(--spacing-md);
    font-size: 1.25rem;
}

/* ============================================
   WHY CHOOSE SECTION
   ============================================ */

.why-choose {
    background: var(--color-white);
}

.why-choose h2 {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

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

.reason-item {
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, var(--color-light), var(--color-white));
    border-radius: var(--radius-md);
    transition: var(--transition);
    text-align: center;
}

.reason-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.reason-icon {
    width: 48px;
    height: 48px;
    background: var(--color-accent);
    border-radius: 50%;
    margin: 0 auto var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
}

.reason-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-accent);
    font-family: var(--font-heading);
    margin-bottom: var(--spacing-sm);
}

.reason-item h3 {
    margin-bottom: var(--spacing-sm);
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonials {
    background: var(--color-light);
}

.testimonials h2 {
    text-align: center;
    margin-bottom: var(--spacing-sm);
}

.testimonials .section-subtitle {
    margin-bottom: var(--spacing-2xl);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
}

.testimonial-card {
    background: var(--color-white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border-top: 4px solid var(--color-accent);
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
}

.stars {
    color: #f59e0b;
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    letter-spacing: 2px;
}

.testimonial-card p {
    font-style: italic;
    color: var(--color-gray);
    margin-bottom: var(--spacing-md);
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-accent);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
}

.testimonial-meta {
    margin-top: var(--spacing-md);
}

.testimonial-author {
    font-weight: 600;
    color: var(--color-primary);
    font-size: 0.95rem;
    display: block;
    margin-bottom: var(--spacing-xs);
}

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

/* ============================================
   FINAL CTA
   ============================================ */

.final-cta {
    background: linear-gradient(135deg, var(--color-primary), var(--color-dark));
    color: var(--color-white);
    text-align: center;
    padding: var(--spacing-2xl) 0;
}

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

.final-cta > .container > p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-lg);
    font-size: 1.125rem;
}

.contact-quick {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
    justify-content: center;
    margin-top: var(--spacing-lg);
    margin-bottom: 0;
}

.quick-link {
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.1);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-md);
    transition: var(--transition);
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}

.quick-link:hover {
    background: var(--color-accent);
}

/* ============================================
   PAGE HEADER
   ============================================ */

.page-header {
    background: linear-gradient(135deg, var(--color-primary), var(--color-dark));
    color: var(--color-white);
    padding: var(--spacing-2xl) 0;
    text-align: center;
    position: relative;
}

.page-header h1 {
    color: var(--color-white);
    margin-bottom: var(--spacing-md);
    position: relative;
    z-index: 1;
}

.page-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* ============================================
   SERVICES DETAIL
   ============================================ */

.services-detail {
    padding: var(--spacing-2xl) 0;
}

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

.service-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

.service-layout.reverse {
    direction: rtl;
}

.service-layout.reverse > * {
    direction: ltr;
}

.service-text h2 {
    margin-bottom: var(--spacing-md);
}

.service-text > p {
    margin-bottom: var(--spacing-md);
}

.service-text h3 {
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-sm);
}

.service-list {
    list-style: none;
    margin-bottom: var(--spacing-lg);
}

.service-list li {
    padding-left: var(--spacing-lg);
    position: relative;
    margin-bottom: var(--spacing-sm);
    color: var(--color-gray);
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: bold;
}

/* ============================================
   ABOUT SECTION
   ============================================ */

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

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

.about-text h2 {
    margin-bottom: var(--spacing-md);
}

.about-text > p {
    margin-bottom: var(--spacing-md);
}

.about-text h3 {
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-sm);
}

.approach-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    margin: var(--spacing-lg) 0;
}

.approach-item {
    padding: var(--spacing-md);
    background: var(--color-light);
    border-radius: var(--radius-md);
}

.approach-item h4 {
    margin-bottom: var(--spacing-sm);
}

.approach-item p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* ============================================
   VALUES SECTION
   ============================================ */

.values-section {
    background: var(--color-light);
}

.values-section h2 {
    text-align: center;
    margin-bottom: var(--spacing-sm);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--spacing-lg);
}

.value-card {
    background: var(--color-white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.value-icon {
    width: 3rem;
    height: 3rem;
    margin: 0 auto var(--spacing-md);
    color: var(--color-accent);
}

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

/* ============================================
   PROCESS / HOW WE WORK SECTION
   ============================================ */

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

.process-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
    position: relative;
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 80px;
    right: 80px;
    height: 2px;
    background: var(--color-gray-light);
    z-index: 0;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.process-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 3px solid var(--color-accent);
    background: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-accent);
    margin-bottom: var(--spacing-md);
}

.process-step h3 {
    margin-bottom: var(--spacing-sm);
    font-size: 1.25rem;
}

.process-step p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

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

.contact-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-2xl);
}

.contact-form-wrapper h2 {
    margin-bottom: var(--spacing-md);
}

.contact-form-wrapper > p {
    margin-bottom: var(--spacing-lg);
}

/* ============================================
   FORMS
   ============================================ */

.form-group {
    margin-bottom: var(--spacing-lg);
    display: flex;
    flex-direction: column;
}

label {
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    color: var(--color-primary);
}

input,
select,
textarea {
    padding: var(--spacing-sm);
    border: 1px solid var(--color-gray-light);
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition);
    min-height: 44px;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

textarea {
    resize: vertical;
    min-height: 120px;
    padding: var(--spacing-sm);
}

.form-note {
    font-size: 0.85rem;
    color: var(--color-gray);
    margin-top: var(--spacing-md);
}

/* ============================================
   CONTACT INFO
   ============================================ */

.contact-info {
    padding: var(--spacing-lg);
    background: var(--color-light);
    border-radius: var(--radius-lg);
    height: fit-content;
    top: 100px;
    position: sticky;
}

.contact-info h2 {
    margin-bottom: var(--spacing-lg);
}

.contact-card {
    margin-bottom: var(--spacing-lg);
    padding: var(--spacing-md);
    background: var(--color-white);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--color-accent);
}

.contact-card.highlight {
    background: linear-gradient(135deg, var(--color-accent), var(--color-primary));
    color: var(--color-white);
    border-left-color: var(--color-white);
}

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

.contact-card p {
    margin-bottom: var(--spacing-xs);
    font-size: 0.95rem;
}

.contact-link {
    color: var(--color-accent);
    font-weight: 600;
}

.contact-list {
    list-style: none;
    color: var(--color-white);
}

.contact-list li {
    padding-left: var(--spacing-lg);
    position: relative;
    margin-bottom: var(--spacing-sm);
    min-height: 44px;
    display: flex;
    align-items: center;
}

.contact-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    font-weight: bold;
}

.contact-note {
    font-size: 0.85rem;
    color: var(--color-gray);
    margin-top: var(--spacing-xs);
}

/* ============================================
   FAQ
   ============================================ */

.faq {
    margin-top: var(--spacing-lg);
}

.faq-item {
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-lg);
    border-bottom: 1px solid var(--color-gray-light);
}

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

.faq-item h4 {
    color: var(--color-primary);
    margin-bottom: var(--spacing-sm);
}

.faq-item p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ============================================
   BLOG
   ============================================ */

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

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

.blog-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

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

.blog-image {
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(14, 165, 233, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-image .image-placeholder {
    border-radius: 0;
    aspect-ratio: auto;
    height: 100%;
}

.blog-content {
    padding: var(--spacing-lg);
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    font-size: 0.85rem;
}

.blog-date {
    color: var(--color-gray);
    font-weight: 500;
}

.blog-tag {
    background: var(--color-accent);
    color: var(--color-white);
    padding: 0.25rem var(--spacing-sm);
    border-radius: var(--radius-sm);
    font-weight: 600;
}

.blog-card h3 {
    margin-bottom: var(--spacing-md);
}

.blog-card p {
    flex-grow: 1;
    margin-bottom: var(--spacing-md);
    font-size: 0.95rem;
}

.blog-link {
    color: var(--color-accent);
    font-weight: 600;
    display: inline-block;
}

.blog-cta {
    text-align: center;
    padding: var(--spacing-xl);
    background: linear-gradient(135deg, var(--color-primary), var(--color-dark));
    color: var(--color-white);
    border-radius: var(--radius-lg);
}

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

.blog-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-lg);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--color-primary);
    color: var(--color-white);
    padding: var(--spacing-2xl) 0 var(--spacing-lg);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-2xl);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2.5rem;
}

.footer-section h4 {
    color: var(--color-white);
    margin-bottom: var(--spacing-md);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--spacing-sm);
}

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

.footer-section ul li {
    margin-bottom: var(--spacing-xs);
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

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

.footer-contact {
    margin-top: var(--spacing-md);
}

.footer-brand {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-white);
    margin-bottom: var(--spacing-md);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-lg);
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
}

/* ============================================
   SERVICE AREA
   ============================================ */

.service-area {
    background: var(--color-light);
    text-align: center;
}

.service-area h2 {
    margin-bottom: var(--spacing-md);
}

.service-area p {
    margin-bottom: var(--spacing-lg);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (min-width: 769px) and (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.25rem;
    }

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

    .navbar-container {
        padding: 0.75rem var(--spacing-md);
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-primary);
        flex-direction: column;
        gap: 0;
        display: none;
        box-shadow: var(--shadow-lg);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-link {
        display: block;
        padding: var(--spacing-md);
    }

    .nav-link.active::after {
        display: none;
    }

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

    .hero-inner {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        padding: 3rem 1.5rem;
    }

    .hero-content h1 {
        font-size: 2.25rem;
    }

    .hero-description {
        font-size: 1.05rem;
    }

    .hero-visual {
        display: flex;
        justify-content: center;
        gap: var(--spacing-lg);
    }

    .hero-building-icon {
        display: none;
    }

    .hero-services-list {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-services-list span {
        font-size: 0.9rem;
        padding: 0.4rem 1rem;
    }

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

    .service-layout,
    .about-layout {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .service-layout.reverse {
        direction: ltr;
    }

    .approach-list {
        grid-template-columns: 1fr;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .contact-info {
        position: static;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }

    .trust-number {
        font-size: 2rem;
    }

    .trust-label {
        font-size: 1rem;
    }

    .process-grid::before {
        display: none;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
}

@media (max-width: 480px) {
    :root {
        --spacing-xl: 2rem;
        --spacing-2xl: 2.5rem;
    }

    .container {
        padding: 0 var(--spacing-sm);
    }

    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

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

    .hero-inner {
        padding: 2.5rem 1.25rem;
    }

    .hero-content h1 {
        font-size: 1.75rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .trust-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .services-grid,
    .testimonials-grid,
    .reasons-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .contact-quick {
        flex-direction: column;
        gap: var(--spacing-md);
    }

    .quick-link,
    .contact-quick a {
        width: 100%;
        text-align: center;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .btn-lg {
        width: 100%;
        padding: var(--spacing-md) var(--spacing-lg);
    }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

@media (prefers-color-scheme: dark) {
    body {
        background-color: var(--color-dark);
        color: rgba(255, 255, 255, 0.9);
    }

    .service-card,
    .contact-info,
    .blog-card,
    .testimonial-card,
    .value-card,
    .trust-item {
        background: #1a1f2e;
        border-color: rgba(255, 255, 255, 0.1);
    }

    input,
    select,
    textarea {
        background: #2d3748;
        border-color: #4a5568;
        color: var(--color-white);
    }

    .services-overview,
    .testimonials,
    .values-section,
    .trust-signals {
        background: #0f1419;
    }

    p {
        color: rgba(255, 255, 255, 0.75);
    }
}

/* ============================================
   ENHANCED FOCUS INDICATORS
   ============================================ */

.btn:focus-visible,
.nav-link:focus-visible,
a:focus-visible {
    outline: 3px solid var(--color-accent);
    outline-offset: 3px;
}

.hamburger:focus-visible {
    outline: 3px solid var(--color-accent);
    outline-offset: 3px;
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

/* ============================================
   SKIP NAVIGATION
   ============================================ */

.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    background: var(--color-accent);
    color: var(--color-white);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    z-index: 200;
    font-weight: 600;
    text-decoration: none;
    transition: top 0.2s;
}

.skip-link:focus {
    top: 1rem;
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
    .navbar,
    .hamburger,
    nav,
    .hero-visual {
        display: none;
    }

    body {
        color: #000;
        background: #fff;
    }

    a {
        color: #000;
        text-decoration: underline;
    }

    h1, h2, h3, h4, h5, h6 {
        color: #000;
    }

    section {
        page-break-inside: avoid;
        padding: 2rem 0;
    }

    .service-card,
    .testimonial-card,
    .blog-card,
    .value-card {
        page-break-inside: avoid;
        box-shadow: none;
        border: 1px solid #000;
    }
}

/* ============================================
   BRAND REFRESH v2 — real logo assets
   Balcony Boss PW — Navy #1A293E / White
   ============================================ */

/* Nav logo: icon + wordmark horizontal lockup */
.navbar-logo .logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.navbar-logo .logo-icon {
    /* Legacy — superseded by .navbar-brand__icon. Left in place for safety. */
    background: transparent;
    border-radius: 0;
    width: 2.5rem;
    height: 2.5rem;
    display: block;
    padding: 0;
}

.navbar-logo .logo-text {
    font-family: var(--font-heading);
    color: var(--color-white);
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: 0.01em;
    display: flex;
    flex-direction: column;
}

.navbar-logo .logo-subtitle {
    font-size: 0.62rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-top: 0.1rem;
}

/* Hero lockup — the full vertical brand mark */
.hero-lockup {
    width: min(360px, 80%);
    height: auto;
    display: block;
    margin: 0 auto;
    opacity: 0.92;
}

@media (max-width: 768px) {
    .hero-lockup { width: 220px; }
    .navbar-logo .logo-icon { width: 2rem; height: 2rem; }
    .navbar-logo .logo-text { font-size: 1rem; }
}

/* Footer brand mark */
.footer-brand {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    letter-spacing: 0.01em;
}

.footer-brand-sub {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    opacity: 0.7;
    margin-top: 0.1rem;
}

/* Testimonials — softer, more "editorial" feel */
.testimonials {
    background: linear-gradient(180deg, #f8f9fa 0%, #eef2f6 100%);
}

.testimonial-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 2px rgba(26,41,62,0.04);
}

.stars {
    letter-spacing: 0.08em;
    color: #f59e0b;
    font-size: 1rem;
}
.stars .half { color: #f59e0b; opacity: 0.45; }

.testimonial-source {
    font-size: 0.72rem;
    color: var(--color-gray);
    margin-top: 0.4rem;
    letter-spacing: 0.02em;
}

/* Procedure callouts used on services page */
.surface-badge {
    display: inline-block;
    background: #1A293E;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    margin-right: 0.4rem;
}

/* --- Footer logo lockup (replaces text "Balcony Boss Pressure Washing") --- */
.footer-logo-mark {
    display: block;
    width: 200px;
    max-width: 80%;
    height: auto;
    margin-bottom: var(--spacing-md, 1rem);
    /* Asset is pre-colored (white on transparent) — footer is navy, no filter needed */
    opacity: 0.95;
}

/* --- Page header with icon (inner pages) --- */
.page-hero {
    background: linear-gradient(135deg, #1A293E 0%, #0EA5E9 100%);
    color: #fff;
    padding: 4rem 1rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: "";
    position: absolute;
    top: 50%;
    right: -60px;
    width: 320px;
    height: 320px;
    background: none;
    transform: translateY(-50%);
    opacity: 0.08;
    pointer-events: none;
}
.page-hero__icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1rem;
    display: block;
    border-radius: 8px;
    opacity: 0.95;
}
.page-hero h1 {
    margin: 0 0 0.5rem;
    font-size: clamp(2rem, 5vw, 3rem);
    color: #fff;
}
.page-hero p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 640px;
    margin: 0 auto;
}

/* --- Service card icon watermark --- */
.service-card {
    position: relative;
    overflow: hidden;
}
.service-card::after {
    content: "";
    position: absolute;
    right: -40px;
    bottom: -40px;
    width: 180px;
    height: 180px;
    background: none;
    opacity: 0.06;
    pointer-events: none;
    z-index: 0;
}
.service-card > * { position: relative; z-index: 1; }

/* --- 404 hero-style branded block --- */
.error-logo {
    width: 180px;
    height: auto;
    display: block;
    margin: 0 auto 1.5rem;
    opacity: 0.95;
}

/* --- Inner-page header watermark + icon (extends .page-header) --- */
.page-header { overflow: hidden; }
.page-header .container { position: relative; z-index: 2; }
.page-header::before {
    content: "";
    position: absolute;
    top: 50%;
    right: -80px;
    width: 360px;
    height: 360px;
    background: none;
    transform: translateY(-50%);
    opacity: 0.08;
    pointer-events: none;
    z-index: 1;
}
.page-header__icon {
    width: 64px;
    height: 64px;
    display: block;
    margin: 0 auto 1rem;
    border-radius: 8px;
    opacity: 0.95;
}
@media (max-width: 640px) {
    .page-header__icon { width: 52px; height: 52px; }
    .page-header::before { width: 240px; height: 240px; right: -60px; }
}

/* ====================================================================
   v3 REFRESH — navbar + hero rebuild (navy-dominant)
   This block intentionally overrides earlier .navbar-logo/.hero rules.
   ==================================================================== */

/* Skip-link that doesn't dump "Skip to main content" visibly into the page */
.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 1000;
    background: #1A293E;
    color: #fff;
    padding: 0.6rem 1rem;
    border-radius: 0 0 6px 0;
    font-weight: 600;
    text-decoration: none;
}
.skip-link:focus { left: 0; }

/* Navbar — navy band */
.navbar {
    background: #1A293E;
    box-shadow: 0 2px 8px rgba(0,0,0,0.18);
    position: sticky;
    top: 0;
    z-index: 100;
}
.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.85rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

/* Clean brand block (icon + stacked wordmark, white on navy) */
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
    color: #fff;
    line-height: 1;
}
.navbar-brand__icon {
    width: 40px;
    height: 40px;
    display: block;
    border-radius: 4px;
    /* asset is already white-on-navy — no filter needed */
}
.navbar-brand__text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}
.navbar-brand__name {
    font-family: 'Poppins', system-ui, sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 0.005em;
    color: #fff;
}
.navbar-brand__sub {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-top: 0.18rem;
}

/* Nav links — white on navy */
.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 1.75rem;
    margin: 0;
    padding: 0;
}
.nav-menu .nav-link {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.98rem;
    padding: 0.4rem 0;
    transition: color 150ms ease;
}
.nav-menu .nav-link:hover,
.nav-menu .nav-link.active { color: #0EA5E9; }
.nav-menu .nav-link.active::after {
    content: "";
    display: block;
    height: 2px;
    background: #0EA5E9;
    margin-top: 0.25rem;
    border-radius: 2px;
}
.nav-menu .nav-cta,
.nav-menu .nav-cta.active {
    background: #0EA5E9;
    color: #fff;
    padding: 0.55rem 1.1rem;
    border-radius: 6px;
    font-weight: 600;
    transition: background 150ms ease, transform 150ms ease;
}
.nav-menu .nav-cta:hover { background: #0284c7; color: #fff; }
.nav-menu .nav-cta.active::after { display: none; }

/* ----- HERO — navy slab, centered, lockup-led ----- */
.hero {
    background:
        radial-gradient(ellipse at top right, rgba(14,165,233,0.18) 0%, transparent 55%),
        linear-gradient(180deg, #1A293E 0%, #142133 100%);
    color: #fff;
    padding: 5rem 1.5rem 5.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(14,165,233,0.06) 1px, transparent 1px);
    background-size: 38px 38px;
    pointer-events: none;
    z-index: 0;
}
.hero__inner {
    max-width: 820px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.hero__lockup {
    width: 240px;
    max-width: 65%;
    height: auto;
    display: block;
    margin: 0 auto 2rem;
    /* Asset is pre-colored (white on transparent) — hero is navy, no filter */
    opacity: 0.96;
}
.hero__eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.78rem;
    font-weight: 600;
    color: #0EA5E9;
    margin: 0 0 1rem;
}
.hero__title {
    font-family: 'Poppins', system-ui, sans-serif;
    font-weight: 800;
    font-size: clamp(2.1rem, 4.6vw, 3.4rem);
    line-height: 1.12;
    margin: 0 0 1.25rem;
    color: #fff;
}
.hero__title-accent {
    color: #0EA5E9;
    font-weight: 700;
}
.hero__lede {
    font-size: clamp(1rem, 1.4vw, 1.15rem);
    line-height: 1.6;
    color: rgba(255,255,255,0.78);
    max-width: 620px;
    margin: 0 auto 2rem;
}
.hero__cta {
    display: flex;
    gap: 0.9rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.75rem;
}
.hero__trust {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
    margin: 0;
    letter-spacing: 0.02em;
}

/* Ghost button on dark background */
.btn-ghost {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.4);
    transition: background 150ms ease, border-color 150ms ease;
}
.btn-ghost:hover {
    background: rgba(255,255,255,0.08);
    border-color: #fff;
    color: #fff;
}

/* Defuse the legacy two-column hero/old phone-icon styles in case any reference them */
.hero-inner, .hero-content, .hero-visual, .hero-icon-display,
.hero-services-list, .hero-tagline, .hero-actions,
.hero-badges, .hero-badge, .badge-checkmark, .phone-icon { display: none !important; }

/* But the new BEM hero classes need to render */
.hero .hero__inner { display: block; }
.hero .hero__cta   { display: flex; }

/* Trust signals — give it a soft cream band so it doesn't fight the hero */
.trust-signals {
    background: #f5f7fa;
    padding: 3rem 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}
.trust-signals .trust-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    text-align: center;
}
.trust-signals .trust-icon {
    width: 38px;
    height: 38px;
    margin: 0 auto 0.6rem;
    color: #0EA5E9;
}
.trust-signals .trust-icon svg { width: 100%; height: 100%; }
.trust-signals .trust-number {
    font-family: 'Poppins', system-ui, sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #1A293E;
    line-height: 1.1;
}
.trust-signals .trust-label {
    font-size: 0.88rem;
    color: #475569;
    margin-top: 0.25rem;
}

/* Mobile */
@media (max-width: 768px) {
    .navbar-container { padding: 0.7rem 1rem; }
    .navbar-brand__name { font-size: 1rem; }
    .navbar-brand__sub  { font-size: 0.6rem; }
    .nav-menu { gap: 1.1rem; }
    .hero { padding: 3rem 1.25rem 3.5rem; }
    .hero__lockup { width: 180px; margin-bottom: 1.5rem; }
    .hero__cta .btn { flex: 1 1 100%; }
}
@media (max-width: 480px) {
    .navbar-brand__sub { display: none; }
}

/* ====================================================================
   Founder block + Strata CTA — honest-launch replacement for testimonials
   ==================================================================== */
.founder-block {
    background: linear-gradient(180deg, #fafbfc 0%, #eef2f6 100%);
    padding: 5rem 1.5rem;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}
.founder-container {
    max-width: 1080px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: start;
}
.founder-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.78rem;
    font-weight: 700;
    color: #0EA5E9;
    margin: 0 0 0.75rem;
}
.founder-body h2 {
    margin: 0 0 1rem;
    font-size: clamp(1.8rem, 3.2vw, 2.4rem);
    color: #1A293E;
}
.founder-lede {
    font-size: 1.05rem;
    line-height: 1.65;
    color: #334155;
    margin: 0 0 1.5rem;
}
.founder-note {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-left: 4px solid #1A293E;
    border-radius: 6px;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 1px 2px rgba(26,41,62,0.04);
}
.founder-note p {
    margin: 0 0 0.6rem;
    color: #1A293E;
    font-size: 0.95rem;
}
.founder-note ul {
    margin: 0;
    padding-left: 1.2rem;
    color: #334155;
    font-size: 0.92rem;
    line-height: 1.55;
}
.founder-note ul li { margin-bottom: 0.5rem; }
.founder-note ul li:last-child { margin-bottom: 0; }
.founder-note a { color: #0EA5E9; font-weight: 600; }

.strata-cta {
    background: #1A293E;
    color: #fff;
    border-radius: 10px;
    padding: 1.75rem 1.75rem 1.5rem;
    box-shadow: 0 10px 30px rgba(26,41,62,0.18);
}
.strata-cta h3 {
    margin: 0 0 0.75rem;
    color: #fff;
    font-size: 1.3rem;
    line-height: 1.25;
}
.strata-cta > p {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    line-height: 1.55;
    margin: 0 0 1rem;
}
.strata-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}
.strata-list li {
    color: rgba(255,255,255,0.9);
    font-size: 0.92rem;
    line-height: 1.5;
    padding: 0.5rem 0 0.5rem 1.6rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    position: relative;
}
.strata-list li:last-child { border-bottom: none; }
.strata-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.9rem;
    width: 8px;
    height: 8px;
    background: #0EA5E9;
    border-radius: 2px;
}
.strata-list li strong { color: #fff; }
.strata-cta-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}
.btn-ghost-dark {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.35);
    padding: 0.7rem 1.1rem;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: background 150ms ease, border-color 150ms ease;
}
.btn-ghost-dark:hover {
    background: rgba(255,255,255,0.08);
    border-color: #fff;
}

@media (max-width: 860px) {
    .founder-container { grid-template-columns: 1fr; gap: 2rem; }
    .founder-block { padding: 3.5rem 1.25rem; }
}

/* de-jank: suppress page-header watermark icons */
.page-header__icon { display: none !important; }

/* About page — quote panel replacing gradient placeholder */
.about-quote {
    background: #1A293E;
    color: #fff;
    padding: 3rem 2.25rem;
    border-radius: 14px;
    margin: 0;
    position: relative;
    overflow: hidden;
}
.about-quote::before {
    content: "\201C";
    position: absolute;
    top: -0.75rem;
    left: 1.25rem;
    font-family: Georgia, serif;
    font-size: 8rem;
    color: rgba(14, 165, 233, 0.28);
    line-height: 1;
}
.about-quote blockquote {
    position: relative;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.35rem;
    line-height: 1.45;
    margin: 0 0 1.25rem 0;
    color: #fff;
}
.about-quote figcaption {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.72);
    letter-spacing: 0.02em;
}

/* About page — honest status panel (replaces generic core values) */
.honest-status {
    max-width: 760px;
    margin: 2rem auto 0;
    background: #fff;
    border: 1px solid #E4E9EF;
    border-left: 4px solid #0EA5E9;
    border-radius: 10px;
    padding: 2rem 2.25rem;
}
.status-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.status-list li {
    padding: 0.85rem 0;
    border-bottom: 1px solid #EEF1F4;
    font-size: 1rem;
    line-height: 1.55;
    color: #2F3A48;
}
.status-list li:last-child { border-bottom: 0; }
.status-list li strong { color: #1A293E; }
.status-list a { color: #0EA5E9; text-decoration: underline; text-underline-offset: 2px; }

/* Hero title — drop the line break / accent split now that copy is one line */
.hero__title { line-height: 1.1; }

/* de-jank: hide decorative gradient placeholder art on services/blog — it reads as unfinished */
.service-layout .service-image,
.blog-image .image-placeholder { display: none; }
.service-layout { grid-template-columns: 1fr !important; display: block !important; }
.service-text { max-width: 820px; margin: 0 auto; }

/* ============================================================
   ALL-NAVY THEME — single navy background, white icon + text
   Overrides prior section backgrounds. Applied sitewide.
   ============================================================ */

html, body { background: #1A293E !important; color: #fff !important; }

/* Kill the big page-header banner block on inner pages */
.page-header,
.page-header .container {
    background: transparent !important;
    color: #fff !important;
    padding: 3rem 1.25rem 1rem !important;
    border: 0 !important;
    box-shadow: none !important;
    text-align: center !important;
    overflow: visible !important;
}
.page-header::before,
.page-header::after { display: none !important; content: none !important; }
.page-header h1 {
    color: #fff !important;
    font-size: clamp(1.75rem, 4vw, 2.5rem) !important;
    margin: 0.5rem 0 0.4rem !important;
}
.page-header p { color: rgba(255,255,255,0.72) !important; }

/* All section containers: transparent, so navy body shows through */
section,
main,
.trust-signals,
.services-overview,
.services-section,
.service-section,
.process-section,
.why-choose,
.founder-block,
.final-cta,
.cta-section,
.blog-section,
.about-section,
.values-section,
.contact-section,
.service-area-section,
.contact-form-section,
.faq-section,
.hero {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
}

/* Typography on navy */
h1, h2, h3, h4, h5, h6 { color: #fff !important; }
p, li, label, span, dt, dd { color: rgba(255,255,255,0.88); }
a { color: #0EA5E9; }
a:hover { color: #38BDF8; }
.section-subtitle { color: rgba(255,255,255,0.65) !important; }

/* Card-style blocks: translucent light overlay instead of white cards */
.trust-item,
.service-card,
.process-step,
.reason-item,
.value-card,
.contact-card,
.faq-item,
.approach-item,
.standard-card,
.kpi,
.strata-cta,
.blog-card {
    background: rgba(255,255,255,0.04) !important;
    border: 1px solid rgba(255,255,255,0.10) !important;
    color: #fff !important;
    box-shadow: none !important;
}
.trust-item h3, .service-card h3, .process-step h3, .reason-item h3,
.value-card h3, .contact-card h3, .faq-item h4, .approach-item h4,
.standard-card h3, .standard-card h4, .strata-cta h3, .blog-card h3 {
    color: #fff !important;
}
.trust-label, .trust-number { color: #fff !important; }
.trust-icon svg, .service-icon svg, .process-number, .reason-icon svg, .value-icon svg {
    color: #0EA5E9 !important;
    stroke: #0EA5E9 !important;
    fill: none;
}
.value-icon svg { fill: #0EA5E9 !important; stroke: none !important; }
.process-number {
    background: #0EA5E9 !important;
    color: #fff !important;
}

/* Honest-status / about-quote read well on navy already but ensure palette */
.honest-status {
    background: rgba(255,255,255,0.04) !important;
    border: 1px solid rgba(255,255,255,0.10) !important;
    border-left: 4px solid #0EA5E9 !important;
}
.status-list li {
    color: rgba(255,255,255,0.88) !important;
    border-bottom-color: rgba(255,255,255,0.08) !important;
}
.status-list li strong { color: #fff !important; }

/* Hero — already navy; just ensure centered and logo sized */
.hero { padding: 4rem 1.25rem 3rem !important; }
.hero__inner { text-align: center; }
.hero__lockup {
    display: block;
    margin: 0 auto 1.5rem;
    width: 100%;
    max-width: 460px;
    height: auto;
}
.hero__eyebrow { color: rgba(255,255,255,0.72) !important; letter-spacing: 0.04em; }
.hero__title { color: #fff !important; }
.hero__lede { color: rgba(255,255,255,0.82) !important; }

/* Forms on navy */
.contact-form,
.contact-form-section .contact-form { background: rgba(255,255,255,0.04) !important; border: 1px solid rgba(255,255,255,0.10) !important; color: #fff; }
.contact-form input,
.contact-form select,
.contact-form textarea,
input[type="text"], input[type="email"], input[type="tel"], textarea, select {
    background: rgba(255,255,255,0.06) !important;
    color: #fff !important;
    border: 1px solid rgba(255,255,255,0.18) !important;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255,255,255,0.45) !important; }
.contact-form label,
form label { color: rgba(255,255,255,0.85) !important; }

/* Ghost button on navy */
.btn-ghost {
    background: transparent !important;
    color: #fff !important;
    border: 1px solid rgba(255,255,255,0.35) !important;
}
.btn-ghost:hover { background: rgba(255,255,255,0.08) !important; border-color: #fff !important; }

/* Procedures doc page — logo sized, body navy */
.proc-doc { color: #fff !important; }
.proc-doc .standard-card ul li,
.proc-doc ul li,
.proc-doc ol li,
.proc-doc p { color: rgba(255,255,255,0.88) !important; }
.proc-doc a { color: #0EA5E9 !important; }
.proc-doc a.btn-primary { color: #fff !important; }
.proc-doc a.btn-primary:hover { color: #fff !important; }

/* About page — quote panel tweak so it reads on continuous navy */
.about-quote {
    background: rgba(255,255,255,0.05) !important;
    border: 1px solid rgba(255,255,255,0.10) !important;
}

/* About layout — keep grid but ensure quote column doesn't dominate */
.about-layout { background: transparent !important; }
.about-text, .about-text p, .about-text li { color: rgba(255,255,255,0.88) !important; }
.about-text h2, .about-text h3, .about-text h4 { color: #fff !important; }

/* Final CTA bar — subtle top border instead of heavy section bg */
.final-cta {
    padding: 3rem 1.25rem !important;
    border-top: 1px solid rgba(255,255,255,0.08) !important;
    text-align: center;
}
.final-cta h2 { color: #fff !important; }
.final-cta p { color: rgba(255,255,255,0.75) !important; }
.contact-quick .quick-link { color: rgba(255,255,255,0.85) !important; }

/* Footer already dark — just make sure the logo shows and dividers read */
.footer { background: #101b2c !important; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-logo-mark { max-width: 260px; height: auto; }
.footer a { color: rgba(255,255,255,0.80); }
.footer a:hover { color: #0EA5E9; }
.footer-bottom { border-top-color: rgba(255,255,255,0.06) !important; }
.footer p, .footer li { color: rgba(255,255,255,0.72) !important; }

/* Service-area / other light-bg helpers — force transparent */
.service-area-section,
.contact-layout,
.contact-info { background: transparent !important; }

/* Strata CTA on homepage sits in founder-container; use deeper navy */
.strata-cta {
    background: rgba(14, 165, 233, 0.08) !important;
    border: 1px solid rgba(14, 165, 233, 0.25) !important;
}
.strata-cta, .strata-cta h3, .strata-cta p, .strata-cta li { color: #fff !important; }

/* KPI chips on procedures page */
.kpi .k { color: rgba(255,255,255,0.65) !important; }
.kpi .v { color: #fff !important; }

/* Service list bullets + text */
.service-list li { color: rgba(255,255,255,0.88) !important; }
.service-text em { color: rgba(255,255,255,0.70) !important; }

/* ============================================================
   OUTWEST-STYLE HEADER — fixed, transparent, scroll-tinted
   Supersedes .navbar / .nav-menu chrome. HTML uses .site-header.
   ============================================================ */

/* Kill the old navbar styling so the new header is the only chrome */
.navbar, .navbar-container, .nav-menu, .navbar-brand { all: unset !important; display: none !important; }

/* Fixed, lightly-tinted header — floats over hero (Outwest + Newphoria inspired) */
.site-header {
    position: fixed !important;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(16, 26, 44, 0.55);
    backdrop-filter: blur(10px) saturate(1.4);
    -webkit-backdrop-filter: blur(10px) saturate(1.4);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: background .25s ease, padding .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}
.site-header.is-scrolled {
    background: rgba(10, 17, 32, 0.92);
    backdrop-filter: blur(14px) saturate(1.5);
    -webkit-backdrop-filter: blur(14px) saturate(1.5);
    padding: 10px 0;
    border-bottom-color: rgba(255,255,255,0.10);
}

.site-header__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.site-header__logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.site-header__logo img {
    height: 44px;
    width: auto;
    display: block;
    transition: height .25s ease;
}
.site-header.is-scrolled .site-header__logo img { height: 34px; }

.site-nav {
    display: flex;
    align-items: center;
    gap: 36px;
}
.site-nav__link {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: color .2s ease;
    padding: 4px 0;
    position: relative;
}
.site-nav__link:hover,
.site-nav__link.is-active { color: #fff; }
.site-nav__link.is-active::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: -4px;
    height: 2px;
    background: #0EA5E9;
    border-radius: 1px;
}
.site-nav__cta,
.site-nav__cta.is-active {
    background: #0EA5E9;
    color: #fff !important;
    padding: 0.55rem 1.15rem;
    border-radius: 999px;
    font-weight: 600;
    transition: background .2s ease;
}
.site-nav__cta:hover { background: #0284c7; color: #fff; }
.site-nav__cta.is-active::after { display: none; }

/* Hamburger for mobile */
.site-header__menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
    border: 0;
    cursor: pointer;
    z-index: 1001;
}
.site-header__menu span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    transition: transform .3s ease, opacity .2s ease;
}
.site-header__menu.is-open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.site-header__menu.is-open span:nth-child(2) { opacity: 0; }
.site-header__menu.is-open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Offset the first section so the fixed header doesn't overlap content */
main > *:first-child,
.hero,
.page-header { padding-top: calc(80px + 3rem) !important; }
.hero { padding-top: calc(80px + 2.5rem) !important; }

@media (max-width: 860px) {
    .site-header__menu { display: flex; }
    .site-nav {
        position: fixed;
        top: 0; right: 0;
        height: 100vh;
        width: min(320px, 82vw);
        background: rgba(16, 26, 44, 0.98);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 0;
        padding: 96px 28px 28px;
        transform: translateX(100%);
        transition: transform .3s ease;
        box-shadow: -8px 0 32px rgba(0,0,0,0.4);
    }
    .site-nav.is-open { transform: translateX(0); }
    .site-nav__link,
    .site-nav__cta {
        width: 100%;
        padding: 14px 0;
        font-size: 1.05rem;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .site-nav__cta,
    .site-nav__cta.is-active {
        margin-top: 12px;
        border-radius: 999px;
        padding: 12px 20px;
        text-align: center;
        border-bottom: 0;
    }
    .site-nav__link.is-active::after { display: none; }
}

/* Suppress any legacy white sections that the override block missed */
.trust-signals-section,
.features,
.highlight-section,
section.bg-light,
section.bg-white { background: transparent !important; }

/* Screen-reader-only skip link (keeps a11y without the visible chrome) */
.skip-link {
    position: absolute !important;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
}
.skip-link:focus {
    position: fixed !important;
    left: 12px; top: 12px;
    width: auto; height: auto;
    padding: 10px 16px;
    clip: auto;
    background: #0EA5E9;
    color: #fff;
    border-radius: 6px;
    z-index: 2000;
}

/* ============================================================
   PLACEMENT REVIEW refinements (after header rebuild)
   ============================================================ */

/* Hero reads cleaner now that the logo is only in the header */
.hero__eyebrow {
    font-size: 0.72rem !important;
    letter-spacing: 0.22em !important;
    color: #0EA5E9 !important;
    margin-bottom: 1rem !important;
    text-transform: uppercase;
    font-weight: 600;
}
.hero__title {
    font-size: clamp(2.3rem, 5vw, 3.8rem) !important;
    line-height: 1.08 !important;
    margin-bottom: 1.4rem !important;
    letter-spacing: -0.01em !important;
}
.hero__lede {
    font-size: clamp(1.02rem, 1.25vw, 1.18rem) !important;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}
.hero__cta { margin-top: 2rem !important; }

/* Inner page headers — more breathing room under the fixed header */
.page-header h1 {
    margin-top: 0.5rem !important;
    letter-spacing: -0.01em;
}
.page-header p {
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

/* Trust grid: gap + separation from hero */
.trust-signals { padding: 3rem 1.25rem !important; }
.trust-grid { gap: 1.25rem !important; }

/* Section rhythm: consistent vertical cadence */
.services-overview,
.service-section,
.process-section,
.values-section,
.contact-section,
.about-section,
.blog-section,
.faq-section { padding: 4rem 1.25rem !important; }

/* Footer a little tighter and the wordmark mark a touch smaller to match header scale */
.footer { padding: 3rem 1.25rem 1rem !important; }
.footer-logo-mark { max-width: 220px !important; margin-bottom: 1rem; }

/* ============================================================
   HAMBURGER-ONLY HEADER (redesign v2)
   Supersedes the Outwest-style horizontal nav.
   ============================================================ */

/* Hide the legacy horizontal site-nav entirely on every breakpoint */
.site-nav { display: none !important; }

/* Brand lockup — icon + stacked wordmark */
.site-header__brand {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: #fff;
    flex-shrink: 0;
}
.site-header__icon {
    height: 44px;
    width: 44px;
    display: block;
    transition: height .25s ease, width .25s ease;
    flex-shrink: 0;
}
.site-header.is-scrolled .site-header__icon {
    height: 36px;
    width: 36px;
}
.site-header__wordmark {
    display: flex;
    flex-direction: column;
    line-height: 1;
    gap: 4px;
}
.site-header__wordmark-top {
    font-family: var(--font-heading, 'Poppins', sans-serif);
    font-weight: 800;
    font-size: 1.05rem;
    color: #fff;
    letter-spacing: 0.02em;
    text-transform: none;
}
.site-header__wordmark-sub {
    font-family: var(--font-primary, 'Inter', sans-serif);
    font-weight: 500;
    font-size: 0.68rem;
    color: rgba(255,255,255,0.72);
    letter-spacing: 0.22em;
    text-transform: uppercase;
}
@media (max-width: 520px) {
    .site-header__icon { height: 38px; width: 38px; }
    .site-header__wordmark-top { font-size: 0.95rem; }
    .site-header__wordmark-sub { font-size: 0.62rem; letter-spacing: 0.18em; }
}

/* Show hamburger at every breakpoint (no horizontal nav anywhere) */
.site-header__menu {
    display: flex !important;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 10px;
    cursor: pointer;
    z-index: 1001;
    transition: background .2s ease, border-color .2s ease;
}
.site-header__menu:hover {
    background: rgba(14, 165, 233, 0.15);
    border-color: rgba(14, 165, 233, 0.5);
}
.site-header__menu.is-open {
    background: rgba(14, 165, 233, 0.2);
    border-color: rgba(14, 165, 233, 0.6);
}

/* Off-canvas drawer */
.site-drawer-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(6, 11, 20, 0.72);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease;
    z-index: 1002;
}
.site-drawer-backdrop.is-open {
    opacity: 1;
    visibility: visible;
}
.site-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(460px, 92vw);
    height: 100vh;
    background: linear-gradient(180deg, rgba(10, 17, 32, 0.98) 0%, rgba(6, 11, 20, 0.99) 100%);
    backdrop-filter: blur(20px) saturate(1.5);
    -webkit-backdrop-filter: blur(20px) saturate(1.5);
    border-left: 1px solid rgba(255,255,255,0.08);
    box-shadow: -16px 0 60px rgba(0,0,0,0.55);
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(0.32, 0.72, 0.25, 1);
    z-index: 1003;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    padding: 32px 40px;
}
.site-drawer.is-open { transform: translateX(0); }

.site-drawer__close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.10);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .2s ease, border-color .2s ease;
}
.site-drawer__close svg { width: 22px; height: 22px; }
.site-drawer__close:hover {
    background: rgba(14, 165, 233, 0.18);
    border-color: rgba(14, 165, 233, 0.55);
}

.site-drawer__inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    margin-top: 80px;
    gap: 48px;
}

.site-drawer__nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.site-drawer__link {
    display: flex;
    align-items: baseline;
    gap: 24px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.88);
    text-decoration: none;
    font-family: var(--font-heading, 'Poppins', sans-serif);
    font-weight: 700;
    font-size: 1.75rem;
    letter-spacing: -0.01em;
    transition: color .2s ease, padding-left .25s ease;
}
.site-drawer__link:hover {
    color: #0EA5E9;
    padding-left: 8px;
}
.site-drawer__link.is-active { color: #0EA5E9; }
.site-drawer__num {
    font-family: var(--font-primary, 'Inter', sans-serif);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: rgba(255,255,255,0.35);
    min-width: 28px;
}
.site-drawer__link.is-active .site-drawer__num { color: rgba(14, 165, 233, 0.65); }
.site-drawer__cta { color: #fff; }
.site-drawer__cta:hover { color: #0EA5E9; }

.site-drawer__contact {
    margin-top: auto;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-bottom: 32px;
}
.site-drawer__label {
    font-family: var(--font-primary, 'Inter', sans-serif);
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 6px;
}
.site-drawer__contact-item {
    color: #fff !important;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 500;
    transition: color .2s ease;
}
.site-drawer__contact-item:hover { color: #0EA5E9 !important; }
.site-drawer__meta {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.58);
    margin-top: 12px;
    line-height: 1.5;
}

@media (max-width: 520px) {
    .site-drawer { padding: 24px 28px; }
    .site-drawer__inner { margin-top: 72px; gap: 36px; }
    .site-drawer__link { font-size: 1.45rem; padding: 14px 0; }
}

body.drawer-open { overflow: hidden; }

/* Hero + interior page-header base positioning (visual treatment lives in v3 block) */
.hero,
.page-header {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}
.hero__inner { position: relative; z-index: 1; }
.page-header > * { position: relative; z-index: 1; }

/* Service sections — clean navy, subtle separation */
.service-section {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.service-section:first-of-type { border-top: 0; }

/* Kill any lingering light section artifacts */
.page-header { background: transparent !important; }

/* ============================================================
   v3 DESIGN REFRESH — 2026-04-14
   Proper header with desktop nav, smaller icon, hero with
   illustration + atmospheric background, polished page headers.
   This block is intentionally last so it wins the cascade.
   ============================================================ */

/* ---- Header: smaller icon, tighter brand, desktop nav visible ---- */
.site-header { padding: 14px 0 !important; }
.site-header.is-scrolled { padding: 8px 0 !important; }

.site-header__inner {
    max-width: 1240px !important;
    padding: 0 28px !important;
    gap: 16px !important;
}

.site-header__brand { gap: 10px !important; }
.site-header__icon {
    height: 32px !important;
    width: 32px !important;
}
.site-header.is-scrolled .site-header__icon {
    height: 26px !important;
    width: 26px !important;
}
.site-header__wordmark { gap: 2px !important; }
.site-header__wordmark-top {
    font-size: 1rem !important;
    font-weight: 800 !important;
    letter-spacing: -0.005em !important;
}
.site-header__wordmark-sub {
    font-size: 0.58rem !important;
    letter-spacing: 0.26em !important;
    font-weight: 600 !important;
}

/* Desktop nav — hidden by default, shown on wide screens */
.site-header__nav {
    display: none;
    align-items: center;
    gap: 30px;
    margin-left: auto;
    margin-right: 8px;
}
.site-header__nav-link {
    color: rgba(255, 255, 255, 0.78);
    font-family: var(--font-primary, 'Inter', sans-serif);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    padding: 8px 0;
    position: relative;
    transition: color .2s ease;
}
.site-header__nav-link:hover { color: #fff; }
body.page-home     .site-header__nav-link[data-nav="home"],
body.page-services .site-header__nav-link[data-nav="services"],
body.page-about    .site-header__nav-link[data-nav="about"],
body.page-procedures .site-header__nav-link[data-nav="procedures"] { color: #fff; }
body.page-home     .site-header__nav-link[data-nav="home"]::after,
body.page-services .site-header__nav-link[data-nav="services"]::after,
body.page-about    .site-header__nav-link[data-nav="about"]::after,
body.page-procedures .site-header__nav-link[data-nav="procedures"]::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 2px;
    background: #0EA5E9;
    border-radius: 1px;
}

.site-header__actions {
    display: flex;
    align-items: center;
    gap: 12px;
}
.site-header__phone {
    display: none;
    color: rgba(255,255,255,0.80);
    text-decoration: none;
    font-family: var(--font-primary, 'Inter', sans-serif);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    transition: color .2s ease;
    white-space: nowrap;
}
.site-header__phone:hover { color: #0EA5E9; }
.site-header__cta {
    display: none;
    background: #0EA5E9;
    color: #fff !important;
    text-decoration: none;
    padding: 0.55rem 1.1rem;
    border-radius: 999px;
    font-family: var(--font-primary, 'Inter', sans-serif);
    font-size: 0.88rem;
    font-weight: 600;
    transition: background .2s ease, transform .15s ease, box-shadow .2s ease;
    white-space: nowrap;
}
.site-header__cta:hover {
    background: #0284c7;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px -6px rgba(14, 165, 233, 0.5);
}

@media (min-width: 960px) {
    .site-header__nav   { display: flex; }
    .site-header__phone { display: inline-flex; align-items: center; }
    .site-header__cta   { display: inline-flex; align-items: center; }
    .site-header__menu  { display: none !important; }
}

/* ---- Hero: 2-col layout with illustration + atmospheric background ---- */
.hero {
    background:
        radial-gradient(ellipse at 85% 18%, rgba(14, 165, 233, 0.22), transparent 55%),
        radial-gradient(ellipse at 5% 90%, rgba(14, 165, 233, 0.08), transparent 50%),
        linear-gradient(135deg, #1A293E 0%, #0d1b2a 65%, #0a1628 100%) !important;
    position: relative;
    overflow: hidden;
    padding: clamp(6rem, 14vh, 10rem) 1.5rem clamp(4rem, 8vh, 6rem) !important;
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(14, 165, 233, 0.16) 1px, transparent 1.5px);
    background-size: 30px 30px;
    pointer-events: none;
    -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 35%, transparent 82%);
            mask-image: radial-gradient(ellipse at 50% 50%, black 35%, transparent 82%);
    opacity: 0.7;
}
.hero::after {
    content: "";
    position: absolute;
    top: -15%; right: -15%;
    width: 65%; height: 130%;
    background: linear-gradient(120deg, transparent 45%, rgba(14, 165, 233, 0.06) 58%, transparent 64%);
    pointer-events: none;
    transform: rotate(-6deg);
}

.hero__inner {
    position: relative;
    z-index: 2;
    max-width: 1240px;
    margin: 0 auto !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 2.5rem !important;
    align-items: center;
    text-align: left !important;
}
.hero__content {
    max-width: 640px;
    position: relative;
    z-index: 2;
}
.hero__art {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.hero__mark {
    width: clamp(240px, 32vw, 400px);
    height: auto;
    opacity: 0.92;
    filter: drop-shadow(0 20px 50px rgba(14, 165, 233, 0.25));
}
.hero__art::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: clamp(280px, 38vw, 480px);
    height: clamp(280px, 38vw, 480px);
    background: radial-gradient(circle, rgba(14, 165, 233, 0.22) 0%, rgba(14, 165, 233, 0.06) 45%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

@media (min-width: 960px) {
    .hero__inner {
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr) !important;
        gap: 4rem !important;
    }
}

@media (max-width: 959px) {
    .hero__inner { text-align: center !important; }
    .hero__content { margin: 0 auto; }
    .hero__eyebrow { justify-content: center; }
    .hero__lede { margin-left: auto !important; margin-right: auto !important; }
    .hero__cta { justify-content: center !important; }
    .hero__art { order: -1; }
    .hero__mark {
        width: min(50vw, 280px);
        opacity: 0.9;
    }
}

.hero__eyebrow {
    display: inline-flex !important;
    align-items: center;
    gap: 12px;
    font-size: 0.76rem !important;
    letter-spacing: 0.26em !important;
    color: #0EA5E9 !important;
    text-transform: uppercase;
    font-weight: 700 !important;
    margin-bottom: 1.2rem !important;
}
.hero__eyebrow::before {
    content: "";
    width: 34px; height: 2px;
    background: #0EA5E9;
    border-radius: 1px;
}

.hero__title {
    font-size: clamp(2.4rem, 5.4vw, 4.4rem) !important;
    line-height: 1.02 !important;
    letter-spacing: -0.025em !important;
    margin-bottom: 1.3rem !important;
    color: #fff !important;
    font-weight: 800 !important;
}

.hero__lede {
    font-size: clamp(1.02rem, 1.2vw, 1.2rem) !important;
    color: rgba(255,255,255,0.78) !important;
    max-width: 560px !important;
    margin: 0 0 2.2rem 0 !important;
    line-height: 1.65 !important;
}

.hero__cta {
    display: flex !important;
    flex-wrap: wrap;
    gap: 14px !important;
    justify-content: flex-start !important;
    margin-top: 0 !important;
}
@media (max-width: 520px) {
    .hero__cta .btn { flex: 1 1 auto; min-width: 0; }
}

/* ---- Interior page headers: restore proper gradient + breathing room ---- */
.page-header {
    padding: clamp(7rem, 16vh, 10rem) 1.5rem clamp(3rem, 6vh, 5rem) !important;
    background:
        radial-gradient(ellipse at 85% 25%, rgba(14, 165, 233, 0.18), transparent 55%),
        linear-gradient(135deg, #1A293E, #0d1b2a) !important;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.page-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(14, 165, 233, 0.12) 1px, transparent 1.5px);
    background-size: 28px 28px;
    opacity: 0.55;
    -webkit-mask-image: linear-gradient(to bottom, black 10%, transparent 90%);
            mask-image: linear-gradient(to bottom, black 10%, transparent 90%);
    pointer-events: none;
}
.page-header > .container {
    position: relative;
    max-width: 860px;
    margin: 0 auto;
}
.page-header h1 {
    font-size: clamp(2.2rem, 4.8vw, 3.6rem) !important;
    line-height: 1.05 !important;
    letter-spacing: -0.02em !important;
    color: #fff !important;
    margin-bottom: 0.9rem !important;
}
.page-header p {
    font-size: clamp(1rem, 1.15vw, 1.15rem) !important;
    color: rgba(255,255,255,0.78) !important;
    max-width: 640px;
    margin: 0 auto !important;
    line-height: 1.6;
}

/* ---- Drawer: tighten and give active state more presence ---- */
.site-drawer__link.is-active {
    color: #fff !important;
    background: rgba(14, 165, 233, 0.08);
    border-radius: 6px;
    padding-left: 0.75rem !important;
    margin-left: -0.75rem;
}

/* ---- Services page: clean, text-only service sections ---- */
.services-detail .container { max-width: 820px !important; }
.service-section {
    padding: 3.5rem 0 !important;
    margin: 0 !important;
    background: transparent !important;
}
.service-section + .service-section {
    border-top: 1px solid rgba(255,255,255,0.08);
}
.service-section .service-text { max-width: 100%; }
.service-section h2 {
    font-size: clamp(1.8rem, 3.2vw, 2.4rem) !important;
    line-height: 1.15 !important;
    letter-spacing: -0.015em !important;
    color: #fff !important;
    margin-bottom: 0.75rem !important;
    position: relative;
    padding-left: 1rem;
}
.service-section h2::before {
    content: "";
    position: absolute;
    left: 0; top: 0.4em; bottom: 0.3em;
    width: 3px;
    background: #0EA5E9;
    border-radius: 2px;
}
.service-section h3 {
    font-size: 0.78rem !important;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: #0EA5E9 !important;
    font-weight: 700 !important;
    margin-top: 2rem !important;
    margin-bottom: 0.85rem !important;
}
.service-section > .service-text > p:first-of-type {
    font-size: 1.1rem !important;
    color: rgba(255,255,255,0.82) !important;
    max-width: 680px;
    line-height: 1.6;
    margin-bottom: 1rem;
}
.service-section .service-list {
    list-style: none;
    padding: 0;
    margin: 0 0 0.5rem 0;
}
.service-section .service-list li {
    color: rgba(255,255,255,0.85) !important;
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.service-section .service-list li::before {
    content: "";
    position: absolute;
    left: 0; top: 0.95em;
    width: 8px; height: 2px;
    background: #0EA5E9;
    border-radius: 1px;
}
.service-section .service-list li strong { color: #fff !important; }
.service-section em {
    display: block;
    margin: 1.25rem 0 1.5rem;
    padding-left: 1rem;
    border-left: 2px solid rgba(14, 165, 233, 0.4);
    color: rgba(255,255,255,0.72) !important;
    font-style: normal;
    font-size: 0.95rem;
    line-height: 1.55;
}
.service-section .btn-primary { margin-top: 0.5rem; }

/* Hide any legacy layout artifacts left in markup */
.image-placeholder,
.service-image { display: none !important; }
.service-layout { display: block !important; }
body.page-services { background: linear-gradient(180deg, #0d1b2a 0%, #0a1628 100%); }
body.page-services .services-detail { background: transparent !important; }

/* ---- Service-area CTA section on services page ---- */
body.page-services .service-area {
    background: transparent !important;
    padding: 3rem 1.5rem 5rem !important;
}
body.page-services .service-area h2 { color: #fff !important; }
body.page-services .service-area p { color: rgba(255,255,255,0.78) !important; }
body.page-services .cta-box {
    background: rgba(14, 165, 233, 0.08);
    border: 1px solid rgba(14, 165, 233, 0.22);
    padding: 2rem !important;
    border-radius: 12px;
    text-align: center;
    margin-top: 2rem;
}
body.page-services .cta-box h3 { color: #fff !important; margin-bottom: 1rem; }

/* ============================================================
   v3.1 POLISH — founder copy, services cards redesign, list bullets
   ============================================================ */

/* Shane Smith founder block — lighten body copy on navy */
.founder-eyebrow {
    color: #0EA5E9 !important;
}
.founder-body h2,
.founder-block h2 {
    color: #fff !important;
}
.founder-lede {
    color: rgba(255, 255, 255, 0.82) !important;
    font-size: clamp(1rem, 1.15vw, 1.1rem) !important;
    line-height: 1.7 !important;
}
.founder-block .service-link {
    color: #0EA5E9 !important;
    font-weight: 600;
}

/* Redesigned homepage service cards — no icons, typographic accent */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
}
.service-card {
    display: flex !important;
    flex-direction: column;
    text-decoration: none !important;
    padding: 2rem 1.75rem !important;
    background: rgba(255, 255, 255, 0.035) !important;
    border: 1px solid rgba(255, 255, 255, 0.10) !important;
    border-radius: 12px;
    transition: background .25s ease, border-color .25s ease, transform .25s ease;
    position: relative;
    overflow: hidden;
    min-height: 230px;
}
.service-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 3px;
    height: 0;
    background: #0EA5E9;
    transition: height .3s ease;
}
.service-card:hover {
    background: rgba(14, 165, 233, 0.07) !important;
    border-color: rgba(14, 165, 233, 0.45) !important;
    transform: translateY(-2px);
}
.service-card:hover::before { height: 100%; }
.service-card__label {
    font-family: var(--font-primary, 'Inter', sans-serif);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #0EA5E9 !important;
    margin-bottom: 1rem;
}
.service-card h3 {
    font-family: var(--font-heading, 'Poppins', sans-serif);
    font-size: 1.3rem !important;
    font-weight: 800 !important;
    line-height: 1.2;
    color: #fff !important;
    margin: 0 0 0.75rem !important;
    letter-spacing: -0.01em;
}
.service-card p {
    color: rgba(255, 255, 255, 0.72) !important;
    font-size: 0.95rem !important;
    line-height: 1.55 !important;
    margin: 0 0 1.5rem !important;
    flex: 1;
}
.service-card__link {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-primary, 'Inter', sans-serif);
    font-size: 0.88rem;
    font-weight: 600;
    color: #0EA5E9 !important;
    margin-top: auto;
    transition: color .2s ease;
}
.service-card:hover .service-card__link { color: #38BDF8 !important; }

/* Hide any legacy icon markup left in cards */
.service-card .service-icon { display: none !important; }

/* Strata-list bullets: proper circle, centered with first line */
.strata-list li {
    display: flex !important;
    align-items: flex-start;
    gap: 14px;
    padding: 0.6rem 0 !important;
    padding-left: 0 !important;
}
.strata-list li::before {
    position: static !important;
    flex-shrink: 0;
    width: 8px !important;
    height: 8px !important;
    border-radius: 50% !important;
    margin-top: 0.55rem !important;
    background: #0EA5E9 !important;
}

/* ---- v3.1: FAQ + How-We-Work need rounded corners + padding to match other cards ---- */
.process-step {
    padding: var(--spacing-lg) var(--spacing-md) !important;
    border-radius: var(--radius-lg) !important;
}
/* Hide legacy timeline connector — cards self-contain the sequence via numbered badges */
.process-grid::before { display: none !important; }

/* Proper section dividers: consistent hairline between major sections across all pages.
   Trust-signals is intentionally excluded — it sits directly below the hero and the
   hairline there clashes with the hero's own bottom edge treatment. */
.services-overview,
.process-section,
.founder-block,
.final-cta,
.cta-section,
.values-section,
.service-area,
.about-section {
    border-top: 1px solid rgba(255,255,255,0.10) !important;
    margin-top: 1rem !important;
}
/* Kill legacy light-grey border-bottoms that doubled up against the new top hairlines */
.trust-signals,
.founder-block {
    border-bottom: 0 !important;
}
/* Also kill the hairline on the very first section after the hero (trust-signals) */
.trust-signals {
    border-top: 0 !important;
    margin-top: 0 !important;
}
.faq-item {
    padding: var(--spacing-md) !important;
    padding-bottom: var(--spacing-md) !important;
    border-radius: var(--radius-md) !important;
    border-bottom: 1px solid rgba(255,255,255,0.10) !important;
    margin-bottom: var(--spacing-md) !important;
}
.faq-item:last-child {
    border-bottom: 1px solid rgba(255,255,255,0.10) !important;
    margin-bottom: 0 !important;
}
