/* ===========================
   Root Variables & Reset
   Author: Ronnie Barnard
   Date: 2025-11-17
   =========================== */
:root {
    --bg: #05060a;
    --bg-alt: #0b0d14;
    --bg-light: #0f111a;
    --accent: #d4af37;
    --accent-soft: rgba(212, 175, 55, 0.16);
    --text-main: #f5f5f7;
    --text-muted: #a1a1aa;
    --text-soft: #8d8e99;
    --border-subtle: #232533;
    --font-main: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
    
    /* Legacy variables for compatibility */
    --primary-color: #d4af37;
    --primary-dark: #b48b21;
    --secondary-color: #d4af37;
    --accent-color: #d4af37;
    --text-dark: #1a202c;
    --text-gray: #4a5568;
    --text-light: #718096;
    --bg-white: #ffffff;
    --border-color: #232533;
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Dark theme colors */
    --dark-bg-primary: #05060a;
    --dark-bg-secondary: #0b0d14;
    --dark-bg-tertiary: #0f111a;
    --dark-text-primary: #f5f5f7;
    --dark-text-secondary: #a1a1aa;
    --dark-text-muted: #8d8e99;
    --dark-border: #232533;
    --dark-overlay: rgba(5, 6, 10, 0.96);
    --dark-overlay-light: rgba(5, 6, 10, 0.88);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: var(--font-main);
    color: var(--text-main);
    line-height: 1.6;
    background: radial-gradient(circle at top, #151728 0, #02030a 55%, #000 100%);
    overflow-x: hidden;
}

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

/* ===========================
   Navigation
   =========================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    backdrop-filter: blur(16px);
    background: linear-gradient(to bottom,
        rgba(5, 6, 12, 0.96),
        rgba(5, 6, 12, 0.88),
        transparent
    );
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    z-index: 1000;
    transition: var(--transition);
}

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

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--dark-text-primary);
}

.logo-mark {
    width: 75px;
    height: 75px;
    object-fit: contain;
    display: block;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--dark-text-primary);
    transition: var(--transition);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--dark-text-secondary);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--text-main);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.2s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.cta-nav {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    padding: 0.55rem 1.25rem;
    border-radius: 999px;
    border: 1px solid rgba(212, 175, 55, 0.8);
    color: var(--accent);
    background: radial-gradient(circle at top, rgba(212, 175, 55, 0.18), transparent);
    box-shadow: 0 0 16px rgba(212, 175, 55, 0.28);
    transition: var(--transition);
}

.cta-nav:hover {
    background: radial-gradient(circle at top, rgba(212, 175, 55, 0.25), transparent);
}

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

/* ===========================
   Hero Section
   =========================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 8rem 0 4rem;
    background-image: url('images/Office-Background-Ronnie.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 31, 54, 0) 0%, rgba(15, 18, 25, 0) 100%);
    z-index: 1;
}

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

.hero .hero-content {
    max-width: 100%;
    margin: 0 !important;
    margin-left: 0 !important;
    position: relative;
    z-index: 2;
    display: block;
    padding-left: 20%;
    padding-right: 2rem;
    width: 100%;
}

/* Hero Text Content */
.hero-text-content {
    max-width: 650px;
    text-align: left;
    margin-left: 20vw;
    padding-left: 0;
}

.hero-tagline {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--dark-text-secondary);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-title span {
    display: block;
}

.title-line-1 {
    color: white;
}

.title-line-2 {
    color: var(--accent);
}

.section-header h2.title-line-2 {
    color: var(--accent);
}

.hero-title-wrapper {
    margin-bottom: 1.5rem;
}

.hero-subtitle-above {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    font-weight: 500;
    color: var(--dark-text-secondary);
    margin-bottom: 0.75rem;
    text-transform: none;
    letter-spacing: normal;
}

.hero-subtitle-below {
    font-size: clamp(0.875rem, 1.2vw, 1rem);
    font-weight: 400;
    color: var(--dark-text-secondary);
    margin-top: 0.5rem;
    opacity: 0.9;
}

.hero-subheading {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 600;
    color: var(--accent);
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    color: var(--dark-text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-cta {
    margin-top: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.hero-buttons .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    text-align: left;
    flex-wrap: wrap;
}

.hero-buttons .cta-icon {
    font-size: 1.35rem;
}

.hero-buttons .cta-text {
    font-weight: 600;
}

.hero-buttons .cta-arrow {
    font-size: 0.95rem;
}

.hero-alt-lines {
    margin: 2.5rem auto 0;
    display: grid;
    gap: 0.75rem;
    max-width: 820px;
}

.hero-alt-lines .alt-line {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.25rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.65);
    color: var(--dark-text-primary);
    border: 1px solid rgba(148, 163, 184, 0.35);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: clamp(0.85rem, 1.25vw, 0.95rem);
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #f6e7b2, #d4af37, #b48b21);
    color: #111;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.8), 0 0 30px rgba(212, 175, 55, 0.4);
    border-radius: 999px;
    padding: 0.9rem 1.7rem;
    font-size: 0.9rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border: 1px solid transparent;
}

.btn-primary:hover {
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: var(--text-main);
    border-color: var(--border-subtle);
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.03), transparent);
    border-radius: 999px;
    padding: 0.9rem 1.7rem;
    font-size: 0.9rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border: 1px solid var(--border-subtle);
}

.btn-secondary:hover {
    border-color: rgba(212, 175, 55, 0.7);
    background-color: rgba(212, 175, 55, 0.08);
}

.btn-full {
    width: 100%;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--dark-text-muted);
    font-size: 0.875rem;
    font-weight: 500;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--dark-text-muted);
    font-size: 0.875rem;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-left: 2px solid var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    transform: rotate(-45deg);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) rotate(-45deg);
    }
    40% {
        transform: translateY(-10px) rotate(-45deg);
    }
    60% {
        transform: translateY(-5px) rotate(-45deg);
    }
}

/* ===========================
   Quote Section
   =========================== */
.quote-section {
    padding: 4rem 0 2rem 0;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.main-quote {
    font-size: clamp(1.1rem, 2vw, 1.75rem);
    font-weight: 400;
    line-height: 1.6;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    font-style: italic;
}

.main-quote cite {
    display: block;
    margin-top: 1.5rem;
    font-style: normal;
    font-size: 1rem;
    color: var(--accent);
}

/* ===========================
   Leadership Vision Section
   =========================== */
.leadership-vision-section {
    padding: 5rem 0 2.5rem 0;
    background: rgba(5, 6, 12, 0.9);
    position: relative;
    overflow: hidden;
}

.leadership-vision-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(118, 75, 162, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.leadership-vision-section .container {
    position: relative;
    z-index: 1;
    max-width: 900px;
    text-align: center;
}

.vision-lead {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 500;
    color: var(--dark-text-primary);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.vision-statement {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: var(--dark-text-secondary);
    line-height: 1.7;
    font-weight: 400;
}

/* ===========================
   Section Headers
   =========================== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--dark-text-primary);
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--dark-text-secondary);
    font-size: 1.125rem;
    max-width: 700px;
    margin: 1rem auto 0;
}

/* ===========================
   About Section
   =========================== */
.about-section {
    padding: 6rem 0 3rem 0;
    background: rgba(5, 6, 12, 0.9);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.about-left {
    display: flex;
    flex-direction: column;
}

.about-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.brand-visual {
    background: var(--dark-bg-tertiary);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(148, 163, 184, 0.2);
}

.brand-visual img {
    display: block;
    width: 100%;
    height: auto;
}

.company-glance {
    background: var(--dark-bg-tertiary);
    padding: 2rem;
    border-radius: 12px;
}

.company-glance h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-text-primary);
}

.glance-list {
    list-style: none;
}

.glance-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--dark-border);
    color: var(--dark-text-secondary);
}

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

.glance-list strong {
    color: var(--dark-text-primary);
}

.why-built-firm {
    background: rgba(10, 11, 20, 0.96);
    padding: 2.5rem;
    border-radius: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-left: 4px solid var(--accent);
}

.why-built-firm h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.why-built-firm p {
    color: var(--dark-text-secondary);
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.mission-statement {
    font-size: 1.15rem !important;
    font-weight: 500;
    color: var(--text-main) !important;
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.16), rgba(5, 6, 12, 0.95));
    margin-top: 1.5rem !important;
    margin-bottom: 1rem !important;
}

.mission-signature {
    font-style: italic;
    color: var(--accent-color) !important;
    text-align: right;
    font-size: 1rem !important;
    margin-top: 1rem !important;
    margin-bottom: 0 !important;
    font-weight: 500;
    padding-right: 1.5rem;
}

.signature {
    font-style: italic;
    color: var(--accent) !important;
    text-align: right;
    font-size: 1rem !important;
    margin-bottom: 0 !important;
    font-weight: 600;
}

.about-image {
    width: 100%;
}

.profile-placeholder {
    width: 100%;
    aspect-ratio: 3 / 4;
    background: var(--bg-light);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.profile-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-placeholder svg {
    width: 80%;
    height: 80%;
}

/* ===========================
   Problems Section
   =========================== */
.problems-section {
    padding: 6rem 0 3rem 0;
    background: rgba(5, 6, 12, 0.9);
}

#ai-advantage-system {
    scroll-margin-top: 100px;
}

.badge {
    display: block;
    padding: 0.28rem 0.7rem;
    background: rgba(12, 12, 20, 0.9);
    border-radius: 999px;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 500;
    text-align: center;
    margin: 2rem auto 0;
    border: 1px solid rgba(255, 255, 255, 0.06);
    line-height: 1.6;
    width: fit-content;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.problems-grid-two-column {
    max-width: 1000px;
    margin: 0 auto;
    grid-template-columns: repeat(2, 1fr);
}

.services-section .problems-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 1200px;
    margin: 0 auto;
}

.problem-card {
    background: rgba(6, 7, 14, 0.96);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.04);
    opacity: 0;
    transform: translateY(40px) scale(0.95);
}

.problem-card.animate-in {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.problem-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: var(--shadow-xl);
    border-color: rgba(212, 175, 55, 0.3);
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
}

@keyframes iconBounce {
    0% {
        transform: scale(0.3) rotate(-180deg);
    }
    50% {
        transform: scale(1.15) rotate(10deg);
    }
    70% {
        transform: scale(0.95) rotate(-5deg);
    }
    100% {
        transform: scale(1) rotate(0);
    }
}

.problem-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--dark-text-primary);
}

.problem-card p {
    color: var(--dark-text-secondary);
}

.problem-card ul {
    list-style: none;
}

.problem-card li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    color: var(--dark-text-secondary);
    position: relative;
}

.problem-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0.1rem;
    font-size: 0.7rem;
    color: var(--accent);
    font-weight: bold;
}

/* ===========================
   Services Section
   =========================== */
.services-section {
    padding: 6rem 0 3rem 0;
    background: var(--bg-alt);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.services-aspirational {
    font-size: 1.1rem;
    color: var(--dark-text-secondary);
    max-width: 800px;
    margin: 1.5rem auto 0;
    line-height: 1.7;
    font-style: italic;
    font-weight: 400;
}

/* Two-column text layout for standard body text */
.section-text-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-top: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.section-text-columns p {
    font-size: 1rem;
    color: var(--dark-text-secondary);
    line-height: 1.7;
    font-style: normal;
    font-weight: 400;
    margin: 0 0 1.5rem 0;
}

.section-text-columns p:last-child {
    margin-bottom: 0;
}

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

.service-card {
    background: rgba(6, 7, 14, 0.96);
    padding: 2.5rem;
    border-radius: 1rem;
    border-left: 4px solid var(--accent);
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

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

.service-icon-img {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.service-icon-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-text-primary);
}

.service-card ul {
    list-style: none;
}

.service-card li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    color: var(--dark-text-secondary);
    position: relative;
}

.service-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0.1rem;
    font-size: 0.7rem;
    color: var(--accent);
    font-weight: bold;
}

.service-card li a {
    color: var(--dark-text-secondary);
    text-decoration: underline;
    transition: var(--transition);
}

.service-card li a:hover {
    color: var(--accent);
}

/* ===========================
   Process/Timeline Section
   =========================== */
.process-section {
    padding: 6rem 0 3rem 0;
    background: rgba(5, 6, 12, 0.9);
}

/* ===========================
   Framework Container
   =========================== */
.framework-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 4rem auto;
    padding: 2rem;
}

/* Left Side: Steps */
.framework-steps {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.steps-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.steps-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 1rem;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f6e7b2, #d4af37, #b48b21);
    color: #111;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
}

.step-text h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-text-primary);
    margin-bottom: 0.5rem;
}

.step-text p {
    color: var(--dark-text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Right Side: Image */
.framework-image {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
    padding: 1rem;
}

.framework-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    object-fit: contain;
}

/* Right Side: Circular Pinwheel */
.framework-circle-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.pinwheel-circle {
    position: relative;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Center Circle */
.pinwheel-center {
    position: absolute;
    width: 200px;
    height: 200px;
    background: white;
    border: 6px solid #1e293b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.center-text {
    text-align: center;
    color: #1e293b;
}

.center-text strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.center-text span {
    display: block;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Pinwheel Segments */
.pinwheel-segment {
    position: absolute;
    width: 250px;
    height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 2rem;
    background: linear-gradient(135deg, #0891b2, #06b6d4);
    clip-path: polygon(50% 50%, 0% 0%, 100% 0%);
    transform-origin: center;
}

/* Position each segment */
.segment-assess {
    top: 0;
    left: 50%;
    transform: translateX(-50%) rotate(0deg);
    clip-path: polygon(50% 50%, 15% 0%, 85% 0%);
}

.segment-design {
    top: 50%;
    right: 0;
    transform: translateY(-50%) rotate(90deg);
    clip-path: polygon(50% 50%, 15% 0%, 85% 0%);
}

.segment-implement {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) rotate(180deg);
    clip-path: polygon(50% 50%, 15% 0%, 85% 0%);
}

.segment-measure {
    top: 50%;
    left: 0;
    transform: translateY(-50%) rotate(270deg);
    clip-path: polygon(50% 50%, 15% 0%, 85% 0%);
}

/* Segment badges */
.segment-badge {
    width: 70px;
    height: 70px;
    background: white;
    border: 5px solid #0891b2;
    color: #0891b2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
    position: absolute;
    z-index: 5;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.segment-assess .segment-badge {
    top: 20px;
}

.segment-design .segment-badge {
    top: 20px;
}

.segment-implement .segment-badge {
    top: 20px;
}

.segment-measure .segment-badge {
    top: 20px;
}

/* Segment labels */
.segment-label {
    position: absolute;
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    z-index: 5;
}

.segment-assess .segment-label {
    top: 105px;
}

.segment-design .segment-label {
    top: 105px;
}

.segment-implement .segment-label {
    top: 105px;
}

.segment-measure .segment-label {
    top: 105px;
}

/* Pinwheel Dividers */
.pinwheel-divider {
    position: absolute;
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #f0a4b4, #e88ca0);
    clip-path: polygon(50% 50%, 50% 0%, 100% 0%);
    transform-origin: center;
}

.divider-1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
}

.divider-2 {
    top: 50%;
    right: 0;
    transform: translateY(-50%) rotate(135deg);
}

.divider-3 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) rotate(225deg);
}

.divider-4 {
    top: 50%;
    left: 0;
    transform: translateY(-50%) rotate(315deg);
}

/* ===========================
   Outcomes Section
   =========================== */
.outcomes-section {
    padding: 6rem 0 3rem 0;
    background: rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.outcomes-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.outcomes-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.05;
}

.outcomes-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.05;
}

.outcomes-section .container {
    position: relative;
    z-index: 1;
}

.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
}

.outcomes-grid .outcome-card:nth-child(1),
.outcomes-grid .outcome-card:nth-child(2) {
    grid-column: span 3;
}

.outcomes-grid .outcome-card:nth-child(3),
.outcomes-grid .outcome-card:nth-child(4),
.outcomes-grid .outcome-card:nth-child(5) {
    grid-column: span 2;
}

.outcome-card {
    background: radial-gradient(circle at top, #191b2b, #05060a);
    padding: 2.5rem;
    border-radius: 1rem;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

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

.outcome-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.outcome-stat {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.outcome-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--dark-text-primary);
}

.outcome-card p {
    color: var(--dark-text-secondary);
    font-size: 0.95rem;
}

.outcomes-grid-three {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.outcomes-grid-three .outcome-card {
    grid-column: span 1;
}

/* ===========================
   Social Proof Section
   =========================== */
.social-proof-section {
    padding: 6rem 0 3rem 0;
    background: rgba(5, 6, 12, 0.96);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.social-proof-section .section-header {
    margin-bottom: 3rem;
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.proof-item {
    background: radial-gradient(circle at top, #191b2b, #05060a);
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    transition: var(--transition);
}

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

.quote-mark {
    font-size: 5rem;
    line-height: 1;
    color: var(--accent);
    opacity: 0.3;
    font-family: Georgia, serif;
    position: absolute;
    top: 1rem;
    left: 2rem;
}

.proof-quote {
    font-size: 1.25rem;
    color: var(--dark-text-primary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    padding-top: 2rem;
    font-style: italic;
}

.proof-attribution {
    font-size: 1rem;
    color: var(--accent);
    font-weight: 600;
}

.social-proof-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* Testimonial Carousel Styles */
.testimonial-carousel {
    position: relative;
    min-height: 250px;
}

.carousel-container {
    position: relative;
}

.carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.carousel-item.active {
    position: relative;
    opacity: 1;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 2rem;
}

.carousel-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-subtle);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dots .dot:hover {
    background: rgba(212, 175, 55, 0.6);
    transform: scale(1.2);
}

.carousel-dots .dot.active {
    background: var(--accent);
    width: 32px;
    border-radius: 6px;
}

/* ===========================
   Value Driver Framework Section
   =========================== */
.value-driver-section {
    padding: 6rem 0;
    background: var(--dark-bg-primary);
}

.value-drivers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.value-driver-card {
    background: var(--dark-bg-secondary);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--dark-border);
    display: flex;
    flex-direction: column;
}

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

.driver-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-driver-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-text-primary);
}

.value-driver-card p {
    color: var(--dark-text-secondary);
    line-height: 1.7;
}

.value-driver-card p strong {
    color: var(--primary-color);
    font-weight: 600;
}

.value-driver-note {
    text-align: center;
    color: var(--dark-text-muted);
    font-style: italic;
    font-size: 0.95rem;
    max-width: 800px;
    margin: 0 auto;
}

/* ===========================
   Use Cases Section
   =========================== */
.use-cases-section {
    padding: 6rem 0;
    background: var(--dark-bg-secondary);
}

.use-cases-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.use-case-group {
    background: var(--dark-bg-secondary);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--dark-border);
}

.use-case-group h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--dark-text-primary);
}

.use-case-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.use-case-item {
    padding: 1rem;
    background: var(--dark-bg-tertiary);
    border-radius: 8px;
    color: var(--dark-text-secondary);
}

.use-case-item strong {
    color: var(--primary-color);
}

.use-case-group.highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.use-case-group.highlight h3 {
    color: white;
}

.use-case-group.highlight p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
}

/* ===========================
   Engagement Section
   =========================== */
.engagement-section {
    padding: 6rem 0 3rem 0;
    background: var(--dark-bg-secondary);
}

.engagement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.engagement-card {
    background: var(--dark-bg-tertiary);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition);
    border: 1px solid var(--dark-border);
}

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

.engagement-card.featured {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.engagement-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.engagement-card h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: var(--dark-text-primary);
}

.engagement-card.featured h3,
.engagement-card.featured h4 {
    color: white;
}

.engagement-subtitle {
    color: var(--dark-text-muted);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.engagement-deliverables {
    margin-bottom: 2rem;
    flex: 1;
}

.engagement-deliverables h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: var(--dark-text-primary);
}

.engagement-deliverables ul {
    list-style: none;
}

.engagement-deliverables li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--dark-text-secondary);
}

.engagement-card.featured .engagement-deliverables li {
    color: rgba(255, 255, 255, 0.95);
}

.engagement-deliverables li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.engagement-card.featured .engagement-deliverables li::before {
    color: white;
}

.engagement-note {
    text-align: center;
    color: var(--dark-text-muted);
    font-style: italic;
}

/* ===========================
   Why Choose Section
   =========================== */
.why-choose-section {
    padding: 6rem 0;
    background: var(--dark-bg-primary);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.why-card {
    background: var(--dark-bg-secondary);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--dark-border);
}

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

.why-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.why-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--dark-text-primary);
}

.why-card p {
    color: var(--dark-text-secondary);
}

/* ===========================
   Emotional Transition Section
   =========================== */
.emotional-transition-section {
    padding: 3rem 0 1.5rem 0;
    background: rgba(5, 6, 12, 0.9);
    position: relative;
    overflow: hidden;
}

.emotional-transition-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(118, 75, 162, 0.08) 0%, transparent 50%);
    z-index: 0;
}

.emotional-transition-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem;
    border-left: 2px solid var(--accent-soft);
    border-right: 2px solid var(--accent-soft);
}

.transition-lead {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 500;
    color: var(--dark-text-primary);
    line-height: 1.5;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.transition-statement {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: var(--dark-text-secondary);
    line-height: 1.7;
    font-weight: 400;
}

/* ===========================
   CTA Mini Section
   =========================== */
.cta-mini-section {
    padding: 4rem 0 2rem 0;
    background: radial-gradient(circle at top, rgba(212, 175, 55, 0.2), #05060a);
    border-top: 1px solid rgba(212, 175, 55, 0.36);
    border-bottom: 1px solid rgba(212, 175, 55, 0.36);
    position: relative;
    overflow: hidden;
}

.cta-mini-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    z-index: 0;
}

.cta-mini-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-mini-content h3 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: white;
    margin-bottom: 2rem;
    font-weight: 600;
    line-height: 1.3;
}

.cta-mini-content .btn-primary {
    background: linear-gradient(135deg, #f6e7b2, #d4af37, #b48b21);
    color: #111;
    font-size: 1.125rem;
    padding: 1.25rem 2.5rem;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.8), 0 0 30px rgba(212, 175, 55, 0.4);
}

.cta-mini-content .btn-primary:hover {
    transform: translateY(-1px);
}

/* ===========================
   Security Section
   =========================== */
.security-section {
    padding: 6rem 0 3rem 0;
    background: var(--text-dark);
    color: white;
}

.security-section .section-header h2 {
    color: white;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.security-item {
    text-align: center;
    padding: 2rem;
}

.security-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.security-item p {
    color: rgba(255, 255, 255, 0.9);
}

/* ===========================
   Checklist Section
   =========================== */
.checklist-section {
    padding: 6rem 0 3rem 0;
    background: var(--dark-bg-primary);
}

.checklist-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.checklist-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.checklist-item {
    background: var(--dark-bg-secondary);
    padding: 1.5rem;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--dark-border);
}

.checklist-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.checklist-item p {
    flex: 1;
    color: var(--dark-text-secondary);
    margin-top: 0.5rem;
}

.checklist-scoring {
    background: var(--dark-bg-secondary);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    height: fit-content;
    border: 1px solid var(--dark-border);
}

.checklist-scoring h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--dark-text-primary);
}

.score-range {
    margin-bottom: 2rem;
}

.score-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.score-badge.high {
    background: linear-gradient(135deg, #10b981, #059669);
}

.score-badge.medium {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.score-badge.low {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.score-range p {
    color: var(--dark-text-secondary);
}

/* ===========================
   Contact Section
   =========================== */
.contact-section {
    padding: 6rem 0 3rem 0;
    background: rgba(5, 6, 12, 0.9);
    position: relative;
    overflow: hidden;
}

.contact-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.contact-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.contact-section .container {
    position: relative;
    z-index: 1;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

.contact-lead {
    font-size: 1.25rem;
    color: var(--dark-text-secondary);
    margin-bottom: 2rem;
}

.next-steps {
    background: rgba(10, 11, 20, 0.96);
    padding: 2rem;
    border-radius: 1.2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.next-steps h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-text-primary);
}

.next-steps ol {
    padding-left: 1.5rem;
}

.next-steps li {
    margin-bottom: 1rem;
    color: var(--dark-text-secondary);
    padding-left: 0.5rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-detail {
    color: var(--dark-text-secondary);
}

.contact-detail a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}

.contact-detail a:hover {
    text-decoration: underline;
}

.contact-form {
    background: var(--dark-bg-tertiary);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--dark-border);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--dark-text-primary);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.7rem 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.7rem;
    font-family: inherit;
    font-size: 0.9rem;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
    background: rgba(8, 8, 16, 0.95);
    color: var(--text-main);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(212, 175, 55, 0.8);
    box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.3);
    background: rgba(10, 10, 20, 0.98);
}

.form-group textarea {
    resize: vertical;
}

/* ===========================
   FAQ Section
   =========================== */
.faq-section {
    padding: 6rem 0 3rem 0;
    background: rgba(5, 6, 12, 0.9);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(6, 7, 14, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 1rem;
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    padding: 1.75rem 2rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-text-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--accent);
}

.faq-icon {
    font-size: 1.75rem;
    font-weight: 300;
    color: var(--accent);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.75rem 2rem;
}

.faq-answer p {
    color: var(--dark-text-secondary);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* ===========================
   Footer
   =========================== */
.footer {
    background: rgba(5, 6, 12, 0.9);
    color: var(--text-soft);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand .footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.125rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.footer-tagline {
    font-style: italic;
    color: var(--accent);
}

.footer-tagline a {
    color: white;
    text-decoration: none;
}

.footer-tagline a:hover {
    color: var(--accent);
    text-decoration: underline;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
    align-items: center;
}

.footer-social a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

.footer-social a svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

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

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.footer-column h4 {
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

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

.footer-column li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
}

/* ===========================
   Responsive Design
   =========================== */

/* iPad and tablet landscape */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero {
        padding: 7rem 0 4rem;
        min-height: 90vh;
        background-position: right center;
        background-image: url('images/Office-Background-Ronnie-Smallscreen.png');
    }
    .hero .container {
        padding: 0 2rem !important;
    }
    
    .hero .hero-content {
        padding-left: 4rem !important;
        padding-right: 4rem !important;
        margin: 0 auto !important;
    }
    
    .hero-text-content {
        max-width: 550px;
        margin-left: 0 !important;
        text-align: left;
        padding-left: 0;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 4vw, 3.5rem);
    }
    
    .hero-description {
        text-align: left;
        margin-left: 0;
        max-width: 550px;
    }
    
    .hero-cta {
        text-align: left;
    }
    
    .hero-background-overlay {
        background: linear-gradient(135deg, rgba(26, 31, 54, 0.2) 0%, rgba(15, 18, 25, 0.3) 100%);
    }
}

@media (max-width: 968px) {
    .outcomes-grid {
        grid-template-columns: 1fr;
    }
    
    .outcomes-grid .outcome-card:nth-child(1),
    .outcomes-grid .outcome-card:nth-child(2),
    .outcomes-grid .outcome-card:nth-child(3),
    .outcomes-grid .outcome-card:nth-child(4),
    .outcomes-grid .outcome-card:nth-child(5) {
        grid-column: span 1;
    }

    .about-content,
    .contact-content,
    .use-cases-container,
    .checklist-content {
        grid-template-columns: 1fr;
    }

    .about-image {
        max-width: 300px;
        margin: 0 auto;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Framework responsive - tablet */
    .framework-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 1.5rem;
    }
    
    .framework-image {
        order: 2;
    }
    
    .framework-steps {
        order: 1;
    }
    
    .framework-image img {
        max-width: 400px;
    }
    
    .pinwheel-circle {
        width: 400px;
        height: 400px;
    }
    
    .pinwheel-segment {
        width: 200px;
        height: 200px;
    }
    
    .pinwheel-divider {
        width: 200px;
        height: 200px;
    }
    
    .pinwheel-center {
        width: 160px;
        height: 160px;
    }
    
    .center-text strong {
        font-size: 1.25rem;
    }
    
    .center-text span {
        font-size: 0.95rem;
    }
    
    .segment-badge {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .segment-label {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    /* Hide outcomes video on mobile for better performance */
    .outcomes-bg-video {
        display: none;
    }
    
    /* Hero responsive */
    .hero {
        padding: 5rem 0 3rem;
        min-height: auto;
        background-position: right center;
    }
    
    .hero .container {
        margin: 0 auto !important;
        padding: 0 1.5rem !important;
    }
    
    .hero .hero-content {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
        margin: 0 auto !important;
    }
    
    .hero-text-content {
        text-align: center;
        max-width: 100%;
        margin-left: 0 !important;
    }
    
    .hero-tagline {
        font-size: 0.75rem;
    }
    
    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
        margin-bottom: 1.25rem;
    }
    
    .hero-description {
        max-width: 100%;
        text-align: center;
        margin: 0 auto 2rem;
    }
    
    .hero-cta {
        text-align: center;
    }
    
    .hero-background-overlay {
        background: linear-gradient(135deg, rgba(26, 31, 54, 0.4) 0%, rgba(15, 18, 25, 0.4) 100%);
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--dark-bg-secondary);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: var(--transition);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    
    .hero-subtitle {
        margin-bottom: 2rem;
        font-size: 1.125rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        margin-bottom: 2.5rem;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .hero-stats {
        margin-bottom: 2rem;
    }
    
    .scroll-indicator {
        position: relative;
        bottom: auto;
        margin-top: 2rem;
    }

    .services-grid,
    .engagement-grid,
    .proof-grid {
        grid-template-columns: 1fr;
    }

    /* Force all grid layouts to single column on mobile */
    .problems-grid-two-column {
        grid-template-columns: 1fr !important;
    }

    .services-section .problems-grid {
        grid-template-columns: 1fr !important;
    }

    .outcomes-grid-three {
        grid-template-columns: 1fr !important;
    }

    .social-proof-grid {
        grid-template-columns: 1fr !important;
    }

    .section-text-columns {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .container {
        padding: 0 1.5rem;
    }

    /* FAQ Mobile Styles */
    .faq-question {
        padding: 1.25rem 1.5rem;
        font-size: 1.1rem;
    }

    .faq-answer {
        padding: 0 1.5rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.25rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 5rem 0 2rem;
        min-height: 70vh;
    }
    
    .hero .container {
        padding: 0 1rem !important;
    }
    
    .hero .hero-content {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
    
    .hero-text-content {
        margin-left: 0 !important;
    }
    
    .hero-background-overlay {
        background: linear-gradient(135deg, rgba(26, 31, 54, 0.4) 0%, rgba(15, 18, 25, 0.4) 100%);
    }
    
    .hero-tagline {
        font-size: 0.7rem;
        letter-spacing: 1px;
    }
    
    .hero-title {
        font-size: 1.75rem;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .hero-buttons {
        margin-bottom: 2rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .stat {
        padding: 0.5rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .scroll-indicator {
        font-size: 0.875rem;
    }

    /* Framework responsive - mobile */
    .framework-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1rem;
    }
    
    .framework-image {
        order: 2;
    }
    
    .framework-steps {
        order: 1;
    }
    
    .framework-image img {
        max-width: 100%;
    }
    
    .steps-title {
        font-size: 1.5rem;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-text h4 {
        font-size: 1.1rem;
    }
    
    .step-text p {
        font-size: 0.9rem;
    }
    
    .pinwheel-circle {
        width: 320px;
        height: 320px;
    }
    
    .pinwheel-segment {
        width: 160px;
        height: 160px;
    }
    
    .pinwheel-divider {
        width: 160px;
        height: 160px;
    }
    
    .pinwheel-center {
        width: 130px;
        height: 130px;
    }
    
    .center-text strong {
        font-size: 1rem;
    }
    
    .center-text span {
        font-size: 0.85rem;
    }
    
    .segment-badge {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
        border: 3px solid #0891b2;
    }
    
    .segment-label {
        font-size: 0.9rem;
    }
    
    .segment-assess .segment-badge,
    .segment-design .segment-badge,
    .segment-implement .segment-badge,
    .segment-measure .segment-badge {
        top: 15px;
    }
    
    .segment-assess .segment-label,
    .segment-design .segment-label,
    .segment-implement .segment-label,
    .segment-measure .segment-label {
        top: 75px;
    }
    
    /* Badge responsive */
    .badge {
        font-size: 0.85rem;
        padding: 0.75rem 1.5rem;
        margin: 1.5rem auto 0;
    }

    /* Ensure all grids are single column on small mobile */
    .problems-grid,
    .problems-grid-two-column,
    .services-section .problems-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    .outcomes-grid-three {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    .social-proof-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }

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

/* Small screen background image (less than 412x915) */
@media (max-width: 412px) and (max-height: 915px) {
    .hero {
        background-image: url('images/Office-Background-Ronnie-Smallscreen.png');
    }
}

