/* ============================================
   LeadGeek.ai - Landing Page Styles
   Aesthetic: Refined Tech-Forward Minimalism
   ============================================ */

/* CSS Custom Properties */
:root {
    /* Colors */
    --color-primary: #0D9488;
    --color-primary-dark: #0F766E;
    --color-primary-light: #14B8A6;
    --color-primary-tint: #CCFBF1;
    --color-secondary: #F97316;
    --color-secondary-dark: #EA580C;
    --color-secondary-light: #FB923C;
    --color-text: #1E293B;
    --color-text-muted: #64748B;
    --color-text-light: #94A3B8;
    --color-bg: #F8FAFC;
    --color-bg-alt: #FFFFFF;
    --color-bg-dark: #0F172A;
    --color-border: #E2E8F0;

    /* Typography */
    --font-display: 'Instrument Serif', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

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

    /* Sizing */
    --container-max: 1200px;
    --container-narrow: 800px;

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

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --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);

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 5vw + 1rem, 4rem); }
h2 { font-size: clamp(2rem, 4vw + 0.5rem, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw + 0.5rem, 1.5rem); }

p {
    max-width: 65ch;
}

.highlight {
    color: var(--color-primary);
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.btn:hover::before {
    opacity: 1;
}

.btn-primary {
    background: var(--color-secondary);
    color: white;
    box-shadow: 0 4px 14px rgba(249, 115, 22, 0.35);
}

.btn-primary:hover {
    background: var(--color-secondary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.45);
}

.btn-primary:active {
    transform: translateY(0);
}

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

.btn svg {
    transition: transform var(--transition-base);
}

.btn:hover svg {
    transform: translateX(4px);
}

/* ============================================
   Navigation
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-sm) 0;
    transition: all var(--transition-base);
    background: transparent;
}

.nav.scrolled {
    background: rgba(248, 250, 252, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
    padding: 0.75rem 0;
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-lg);
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    text-decoration: none;
    color: var(--color-text);
}

.logo-icon {
    color: var(--color-primary);
}

.logo-text {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 600;
}

.logo-accent {
    color: var(--color-primary);
}

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

.nav-links a {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color var(--transition-fast);
    position: relative;
}

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

.nav-links a:hover {
    color: var(--color-text);
}

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

.nav-cta {
    padding: 0.625rem 1.25rem;
    font-size: 0.9375rem;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: all var(--transition-base);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--color-bg-alt);
    padding: var(--space-lg);
    border-bottom: 1px solid var(--color-border);
    transform: translateY(-100%);
    opacity: 0;
    transition: all var(--transition-base);
    z-index: 999;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.mobile-menu-links a {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--color-text);
    text-decoration: none;
    padding: var(--space-xs) 0;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: calc(80px + var(--space-2xl)) 0 var(--space-2xl);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, var(--color-primary-tint) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 20%, rgba(249, 115, 22, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-alt) 100%);
}

.hero-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary-tint) 0%, rgba(13, 148, 136, 0.1) 100%);
    animation: float 20s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 50%;
    right: 10%;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1) 0%, rgba(249, 115, 22, 0.05) 100%);
    animation-delay: -5s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 5%;
    animation-delay: -10s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    top: 30%;
    left: 15%;
    animation-delay: -7s;
}

.shape-5 {
    width: 80px;
    height: 80px;
    bottom: 30%;
    right: 25%;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.08) 0%, transparent 100%);
    animation-delay: -12s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(20px, -30px) rotate(5deg);
    }
    50% {
        transform: translate(-10px, -20px) rotate(-5deg);
    }
    75% {
        transform: translate(15px, 10px) rotate(3deg);
    }
}

.hero-content {
    text-align: center;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 0.5rem 1rem;
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text-muted);
    margin-bottom: var(--space-lg);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--color-primary);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

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

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    margin-bottom: var(--space-xl);
    margin-left: auto;
    margin-right: auto;
}

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

.hero-cta-note {
    font-size: 0.875rem;
    color: var(--color-text-light);
}

.hero-proof {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-lg);
    padding: var(--space-md) var(--space-lg);
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.proof-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.proof-number {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--color-primary);
}

.proof-label {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
}

.proof-divider {
    width: 1px;
    height: 40px;
    background: var(--color-border);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    color: var(--color-text-light);
    font-size: 0.75rem;
    animation: fadeIn 1s ease 2s both;
}

.scroll-arrow {
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* ============================================
   Animation Classes
   ============================================ */
.animate-fade-up {
    animation: fadeUp 0.8s ease both;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

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

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

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   Section Styles
   ============================================ */
section {
    padding: var(--space-3xl) 0;
}

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

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

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

.section-desc {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   Pain Points Section
   ============================================ */
.pain-points {
    background: var(--color-bg-alt);
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
}

.pain-card {
    padding: var(--space-lg);
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

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

.pain-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--color-primary-tint);
    border-radius: var(--radius-md);
    color: var(--color-primary);
    margin-bottom: var(--space-md);
}

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

.pain-desc {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* ============================================
   Solution Section
   ============================================ */
.solution {
    background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-alt) 100%);
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-md);
}

.solution-card {
    padding: var(--space-lg);
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.solution-card:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-md);
}

.solution-card:hover .solution-icon {
    background: var(--color-primary);
    color: white;
}

.solution-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--color-primary-tint);
    border-radius: var(--radius-sm);
    color: var(--color-primary);
    margin-bottom: var(--space-md);
    transition: all var(--transition-base);
}

.solution-card h3 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.0625rem;
    margin-bottom: var(--space-xs);
}

.solution-card p {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* ============================================
   How It Works Section
   ============================================ */
.how-it-works {
    background: var(--color-bg-alt);
}

.steps-container {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.steps-line {
    position: absolute;
    left: 28px;
    top: 40px;
    bottom: 40px;
    width: 2px;
    background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-primary-tint) 100%);
}

.step {
    display: flex;
    gap: var(--space-lg);
    padding: var(--space-lg) 0;
    position: relative;
}

.step-number {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--color-primary);
    color: white;
    font-family: var(--font-display);
    font-size: 1.5rem;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.3);
    z-index: 1;
}

.step-content h3 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: var(--space-xs);
    color: var(--color-text);
}

.step-content p {
    font-size: 1rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: var(--space-sm);
}

.step-tag {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--color-primary);
    background: var(--color-primary-tint);
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-full);
}

/* ============================================
   Industries Section
   ============================================ */
.industries {
    background: linear-gradient(180deg, var(--color-bg-alt) 0%, var(--color-bg) 100%);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.industry-card {
    padding: var(--space-lg);
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition-base);
}

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

.industry-card:hover .industry-icon {
    transform: scale(1.1);
}

.industry-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    background: var(--color-primary-tint);
    border-radius: var(--radius-md);
    color: var(--color-primary);
    margin: 0 auto var(--space-md);
    transition: transform var(--transition-base);
}

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

.industry-card p {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.industries-note {
    text-align: center;
    font-size: 0.9375rem;
    color: var(--color-text-muted);
}

.industries-note strong {
    color: var(--color-primary);
}

/* ============================================
   FAQ Section
   ============================================ */
.faq {
    background: var(--color-bg);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    transition: all var(--transition-base);
}

.faq-item:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-md);
}

.faq-question {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.0625rem;
    margin-bottom: var(--space-sm);
    color: var(--color-text);
    line-height: 1.4;
}

.faq-answer {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

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

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
    position: relative;
    padding: var(--space-3xl) 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.cta-gradient {
    position: absolute;
    inset: 0;
    background: var(--color-bg-dark);
    background: linear-gradient(135deg, var(--color-bg-dark) 0%, #1a2744 100%);
}

.cta-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    animation: float 25s ease-in-out infinite;
}

.cta-shape-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(13, 148, 136, 0.15) 0%, transparent 70%);
    top: -100px;
    right: -100px;
}

.cta-shape-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.1) 0%, transparent 70%);
    bottom: -50px;
    left: -50px;
    animation-delay: -10s;
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.cta-text {
    color: white;
}

.cta-title {
    font-size: clamp(2rem, 4vw + 0.5rem, 2.75rem);
    margin-bottom: var(--space-md);
}

.cta-desc {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-lg);
    max-width: 500px;
}

.cta-benefits {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.cta-benefits li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-benefits svg {
    flex-shrink: 0;
    color: var(--color-primary-light);
}

.cta-calendly {
    display: flex;
    justify-content: center;
}

.calendly-container {
    background: var(--color-bg-alt);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    box-shadow: var(--shadow-xl);
    width: 100%;
    max-width: 450px;
    overflow: hidden;
}

.calendly-placeholder {
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-text-muted);
    border: 2px dashed var(--color-border);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
}

.calendly-placeholder p {
    font-weight: 500;
    margin-bottom: var(--space-xs);
}

.calendly-placeholder small {
    font-size: 0.8125rem;
}

/* Calendly widget styling */
.calendly-inline-widget {
    width: 100%;
    min-width: 280px;
    height: 700px;
}

.calendly-inline-widget iframe {
    width: 100% !important;
    min-width: 100% !important;
}

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

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

.footer-brand .logo {
    color: white;
    margin-bottom: var(--space-md);
}

.footer-brand .logo-icon {
    color: var(--color-primary-light);
}

.footer-tagline {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 300px;
}

.footer-col h4 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9375rem;
    margin-bottom: var(--space-md);
    color: rgba(255, 255, 255, 0.9);
}

.footer-col a {
    display: block;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    margin-bottom: var(--space-sm);
    transition: color var(--transition-fast);
}

.footer-col a:hover {
    color: var(--color-primary-light);
}

.social-links {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    transition: all var(--transition-fast);
}

.social-links a:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-2px);
}

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

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

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

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

.footer-legal a:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
    .cta-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cta-text {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .cta-benefits {
        align-items: center;
    }

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

    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    :root {
        --space-3xl: 4rem;
        --space-2xl: 3rem;
    }

    .nav-links,
    .nav-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }

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

    .proof-divider {
        width: 60px;
        height: 1px;
    }

    .hero-scroll-indicator {
        display: none;
    }

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

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

    .steps-line {
        display: none;
    }

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

    .step-number {
        margin: 0 auto;
    }

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

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

    .footer-brand {
        grid-column: span 1;
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }

    /* CTA section mobile fixes */
    .cta-section {
        padding: var(--space-2xl) 0;
    }

    .cta-title {
        font-size: 1.75rem;
    }

    .cta-desc {
        font-size: 1rem;
    }

    .cta-calendly {
        width: 100%;
    }

    .calendly-container {
        max-width: 100%;
        padding: var(--space-sm);
        margin: 0 auto;
    }

    .calendly-inline-widget {
        width: 100% !important;
        min-width: 100% !important;
        height: 650px !important;
    }

    .calendly-inline-widget iframe {
        width: 100% !important;
    }

    /* Hide animated shapes on mobile for performance */
    .hero-shapes {
        display: none;
    }

    .cta-shapes {
        display: none;
    }

    .shape,
    .cta-shape {
        animation: none;
    }
}

@media (max-width: 480px) {
    .industries-grid {
        grid-template-columns: 1fr;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }

    .hero-subtitle {
        font-size: 1.0625rem;
    }

    .btn-large {
        font-size: 1rem;
        padding: 0.875rem 1.5rem;
    }

    /* CTA section small screen fixes */
    .cta-title {
        font-size: 1.5rem;
    }

    .cta-desc {
        font-size: 0.9375rem;
    }

    .calendly-container {
        padding: var(--space-xs);
        border-radius: var(--radius-md);
    }

    .calendly-inline-widget {
        height: 600px !important;
        min-width: 100% !important;
    }

    .cta-benefits li {
        font-size: 0.875rem;
    }
}

@media (max-width: 375px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-badge {
        font-size: 0.6875rem;
    }

    .proof-number {
        font-size: 1.5rem;
    }

    .cta-title {
        font-size: 1.375rem;
    }

    .cta-desc {
        font-size: 0.875rem;
    }

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

    .calendly-inline-widget {
        height: 580px !important;
    }

    .calendly-container {
        padding: var(--space-xs);
        margin: 0 calc(-1 * var(--space-xs));
        width: calc(100% + var(--space-sm));
        border-radius: var(--radius-sm);
    }
}

/* ============================================
   Contact Page Styles
   ============================================ */
.nav-simple {
    background: var(--color-bg-alt);
    border-bottom: 1px solid var(--color-border);
}

.nav-simple .nav-container {
    justify-content: center;
}

.contact-section {
    min-height: calc(100vh - 80px);
    padding: calc(var(--space-3xl) + 5rem) 0 var(--space-2xl);
    background: var(--color-bg);
}

.contact-container {
    max-width: 640px;
    margin: 0 auto;
}

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

.contact-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 400;
    color: var(--color-text);
    margin-bottom: var(--space-sm);
}

.contact-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    max-width: 480px;
    margin: 0 auto;
}

/* Lead Form Styles */
.lead-form {
    background: var(--color-bg-alt);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
}

.form-row {
    display: grid;
    gap: var(--space-md);
}

.form-row-2 {
    grid-template-columns: 1fr 1fr;
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-group:last-of-type {
    margin-bottom: var(--space-lg);
}

.form-group label {
    display: block;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: var(--space-xs);
}

.form-group .required {
    color: #EF4444;
}

.form-group .optional {
    color: var(--color-text-muted);
    font-weight: 400;
    font-size: 0.875rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-text);
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-text-muted);
    opacity: 0.7;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 6L8 10L12 6' stroke='%2364748B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px var(--color-primary-tint);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #EF4444;
}

.form-group input.error:focus,
.form-group select.error:focus,
.form-group textarea.error:focus {
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}

.form-group .error-message,
.checkbox-error {
    font-size: 0.8125rem;
    color: #EF4444;
    margin-top: 0.375rem;
}

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

/* Checkbox Group */
.checkbox-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
    margin-top: var(--space-xs);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    font-size: 0.9375rem;
    color: var(--color-text);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: background-color var(--transition-fast);
}

.checkbox-label:hover {
    background: var(--color-bg);
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    flex-shrink: 0;
    cursor: pointer;
    accent-color: var(--color-primary);
}

/* Submit Button */
.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-text,
.btn-loading {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-loading {
    display: none;
}

.btn-loading .spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ============================================
   Booking Page Styles
   ============================================ */
.booking-section {
    min-height: calc(100vh - 80px);
    padding: var(--space-2xl) 0;
    background: var(--color-bg);
}

.booking-container {
    max-width: 800px;
    margin: 0 auto;
}

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

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary-tint);
    border-radius: 50%;
    color: var(--color-primary);
}

.booking-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 400;
    color: var(--color-text);
    margin-bottom: var(--space-sm);
}

.booking-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    max-width: 500px;
    margin: 0 auto;
}

.calendly-wrapper {
    background: var(--color-bg-alt);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    margin-bottom: var(--space-lg);
}

.calendly-wrapper .calendly-inline-widget {
    min-width: 100%;
    height: 650px;
}

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

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color var(--transition-fast);
}

.back-link:hover {
    color: var(--color-primary);
}

/* ============================================
   Contact/Booking Page Responsive
   ============================================ */
@media (max-width: 768px) {
    .contact-section,
    .booking-section {
        padding: calc(var(--space-2xl) + 3rem) 0 var(--space-xl);
    }

    .lead-form {
        padding: var(--space-lg);
    }

    .form-row-2 {
        grid-template-columns: 1fr;
    }

    .checkbox-group {
        grid-template-columns: 1fr;
    }

    .calendly-wrapper .calendly-inline-widget {
        height: 600px;
    }
}

@media (max-width: 480px) {
    .lead-form {
        padding: var(--space-md);
        border-radius: var(--radius-md);
    }

    .contact-subtitle,
    .booking-subtitle {
        font-size: 1rem;
    }

    .form-group label {
        font-size: 0.875rem;
    }

    .checkbox-label {
        font-size: 0.875rem;
        padding: 0.375rem;
    }

    .calendly-wrapper {
        padding: var(--space-sm);
    }

    .calendly-wrapper .calendly-inline-widget {
        height: 580px;
    }
}

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

    html {
        scroll-behavior: auto;
    }

    .animate-fade-up,
    .animate-on-scroll {
        opacity: 1;
        transform: none;
    }
}

/* Focus styles */
:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* Skip link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--color-primary);
    color: white;
    padding: 8px 16px;
    z-index: 9999;
    transition: top var(--transition-base);
}

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