/* ================================
   Bite Soft - Premium Agency CSS
   ================================ */

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

:root {
    /* Brand Colors */
    --primary: #ec4899;
    --primary-dark: #db2777;
    --primary-light: #f472b6;
    --primary-glow: rgba(236, 72, 153, 0.15);
    --accent: #8b5cf6;
    --accent-light: #a78bfa;
    --orange: #f97316;

    /* Neutrals (Dark theme) */
    --bg-primary: #050507;
    --bg-secondary: #0f0f12;
    --bg-tertiary: #1a1a1f;
    --bg-card: rgba(24, 24, 30, 0.6);
    --bg-card-hover: rgba(32, 32, 40, 0.8);

    /* Text */
    --text-primary: #fafafa;
    --text-secondary: #d4d4d8;
    --text-muted: #71717a;

    /* Borders */
    --border: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(236, 72, 153, 0.4);
    --border-glow: rgba(236, 72, 153, 0.6);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #ec4899 0%, #8b5cf6 50%, #f97316 100%);
    --gradient-subtle: linear-gradient(135deg, rgba(236, 72, 153, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    --gradient-hero: radial-gradient(ellipse at 30% 0%, rgba(236, 72, 153, 0.15) 0%, transparent 50%),
                     radial-gradient(ellipse at 70% 100%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    --gradient-mesh: radial-gradient(at 40% 20%, rgba(236, 72, 153, 0.08) 0px, transparent 50%),
                     radial-gradient(at 80% 0%, rgba(139, 92, 246, 0.06) 0px, transparent 50%),
                     radial-gradient(at 0% 50%, rgba(249, 115, 22, 0.05) 0px, transparent 50%),
                     radial-gradient(at 80% 50%, rgba(236, 72, 153, 0.05) 0px, transparent 50%),
                     radial-gradient(at 0% 100%, rgba(139, 92, 246, 0.08) 0px, transparent 50%);

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 5rem;
    --spacing-xxl: 8rem;

    /* Effects */
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --radius-full: 9999px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 40px rgba(236, 72, 153, 0.25);
    --shadow-glow-strong: 0 0 60px rgba(236, 72, 153, 0.4);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--bg-primary);
    background-image: var(--gradient-mesh);
    background-attachment: fixed;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    width: 100%;
}

/* Animated background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-hero);
    opacity: 0.8;
    z-index: -2;
    animation: gradientShift 20s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 0.5; }
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

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

.section-title {
    text-align: center;
    margin-bottom: var(--spacing-md);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--spacing-lg);
    font-size: 1.125rem;
    color: var(--text-secondary);
}

/* ================================
   Header
   ================================ */

.header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    max-width: 1280px;
    background: rgba(15, 15, 18, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-full);
    z-index: 1000;
    padding: 14px 28px;
    transition: var(--transition);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.header.scrolled {
    top: 12px;
    background: rgba(5, 5, 7, 0.9);
    border-color: rgba(236, 72, 153, 0.15);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4), var(--shadow-glow);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0;
    /* Reduced from 2px */
    font-weight: 700;
    font-size: 1.25rem;
}

.logo-donut {
    width: 32px;
    height: 32px;
    margin: 0 -4px;
    /* Pull letters closer */
    pointer-events: none;
}

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 0.5rem 0;
}

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

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

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

.cta-nav {
    background: var(--gradient-primary);
    color: white;
    padding: 0.6rem 1.75rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
    position: relative;
    overflow: hidden;
}

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

.cta-nav:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(236, 72, 153, 0.4);
}

.cta-nav:hover::before {
    opacity: 1;
}

.lang-switch {
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid var(--border);
}

.lang-switch:hover {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.1);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    margin: 5px 0;
    transition: var(--transition);
}

/* ================================
   Hero
   ================================ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 140px 0 var(--spacing-xl);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.15) 0%, rgba(139, 92, 246, 0.1) 40%, transparent 70%);
    filter: blur(100px);
    z-index: -1;
    animation: heroGlow 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: 10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.12) 0%, transparent 60%);
    filter: blur(80px);
    z-index: -1;
    animation: heroGlow 10s ease-in-out infinite reverse;
}

@keyframes heroGlow {
    0%, 100% { transform: translateX(-50%) scale(1); opacity: 1; }
    50% { transform: translateX(-50%) scale(1.1); opacity: 0.8; }
}

.hero-content {
    max-width: 950px;
    position: relative;
}

.hero-title {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.title-line {
    display: block;
    white-space: nowrap;
    background: linear-gradient(135deg, #fff 0%, #e4e4e7 50%, #fff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: titleShine 3s ease-in-out infinite;
}

@keyframes titleShine {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.1); }
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.1rem 2.75rem;
    font-weight: 600;
    font-size: 1.05rem;
    border-radius: var(--radius-full);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: none;
}

.cta-button.primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-glow);
}

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

.cta-button.primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--shadow-glow-strong);
}

.cta-button.primary:hover::before {
    opacity: 1;
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    backdrop-filter: blur(10px);
}

.cta-button.secondary:hover {
    border-color: var(--primary);
    background: rgba(236, 72, 153, 0.08);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(236, 72, 153, 0.15);
}

.hero-proof {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.proof-item {
    text-align: center;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    min-width: 160px;
}

.proof-item:hover {
    border-color: rgba(236, 72, 153, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.proof-item strong {
    display: block;
    font-size: 2.25rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.proof-item span {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: block;
    line-height: 1.5;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ================================
   Services Overview
   ================================ */

.services-overview {
    padding: var(--spacing-xxl) 0;
}

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

.service-card-primary {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 2.75rem;
    border-radius: var(--radius-lg);
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
}

.service-card-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition);
}

.service-card-primary:hover::before {
    opacity: 1;
}

.service-card-primary.featured {
    border-color: rgba(236, 72, 153, 0.3);
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.08) 0%, rgba(139, 92, 246, 0.05) 100%);
}

.service-card-primary.featured::before {
    opacity: 1;
}

.service-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 6px 20px;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
}

.service-card-primary:hover {
    transform: translateY(-8px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-glow), var(--shadow-lg);
    background: var(--bg-card-hover);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.25rem;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-subtle);
    border-radius: var(--radius-md);
    border: 1px solid rgba(236, 72, 153, 0.2);
    color: var(--primary);
    transition: var(--transition);
}

.service-card-primary:hover .service-icon {
    transform: scale(1.05);
    border-color: var(--primary);
    box-shadow: 0 0 25px rgba(236, 72, 153, 0.25);
}

.service-card-primary h3 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.service-tagline {
    color: var(--primary-light);
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-desc {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-outcomes {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-outcomes li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
}

.service-outcomes li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

.service-link {
    color: var(--primary);
    font-weight: 600;
}

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

/* ================================
   Business Automation Flagship
   ================================ */

.automation-flagship {
    padding: var(--spacing-xl) 0;
    background: rgba(255, 255, 255, 0.02);
}

.flagship-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
}

.flagship-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.flagship-intro {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-top: 1rem;
}

.automation-use-cases {
    margin-bottom: var(--spacing-lg);
}

.automation-use-cases h3 {
    text-align: center;
    margin-bottom: var(--spacing-md);
}

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

.use-case-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    padding: 1.5rem;
    border-radius: var(--radius-sm);
}

.use-case-card strong {
    display: block;
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.use-case-card ul {
    list-style: none;
}

.use-case-card li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.use-case-card li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary);
}

.automation-process {
    margin-bottom: var(--spacing-lg);
}

.automation-process h3 {
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
}

.step-num {
    font-size: 2rem;
    font-weight: 800;
    color: rgba(236, 72, 153, 0.3);
    min-width: 60px;
}

.timeline-step strong {
    display: block;
    color: var(--primary-light);
    margin-bottom: 0.5rem;
}

.timeline-step p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.automation-cta {
    text-align: center;
    padding: 3rem;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
}

.automation-cta h3 {
    margin-bottom: 2rem;
}

/* ================================
   Service Deep Dive Sections
   ================================ */

.service-deep-dive {
    padding: var(--spacing-xl) 0;
}

.service-deep-dive.alt {
    background: rgba(255, 255, 255, 0.02);
}

.service-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
}

.service-intro {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-top: 1rem;
    line-height: 1.8;
}

.service-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: var(--spacing-md);
}

.service-problem,
.service-solution {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 2rem;
    border-radius: var(--radius-md);
}

.service-problem h3,
.service-solution h3 {
    color: var(--primary-light);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.service-problem ul,
.service-solution ul {
    list-style: none;
}

.service-problem li,
.service-solution li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.service-problem li::before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #ef4444;
    font-weight: 700;
}

.service-solution li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

.service-outcomes-box {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.1), rgba(0, 0, 0, 0));
    border: 1px solid var(--primary);
    padding: 3rem;
    border-radius: var(--radius-md);
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.service-outcomes-box h3 {
    margin-bottom: 2rem;
}

.outcomes-grid {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

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

.outcome-item strong {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.outcome-item span {
    font-size: 0.95rem;
    color: var(--text-muted);
    display: block;
}

.service-tech {
    text-align: center;
    padding: 2rem;
    background: var(--bg-secondary);
    border-radius: var(--radius-sm);
}

.service-tech h3 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary-light);
    margin-bottom: 1rem;
}

.service-tech p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ================================
   Other Services Section
   ================================ */

.other-services {
    padding: var(--spacing-xl) 0;
    background: rgba(255, 255, 255, 0.02);
}

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

.other-service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 2rem;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.other-service-card:hover {
    transform: translateY(-3px);
    border-color: var(--border-hover);
}

.other-service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.other-service-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-quick-outcomes {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.service-quick-outcomes span {
    background: rgba(236, 72, 153, 0.1);
    border: 1px solid var(--border);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--primary-light);
    text-align: center;
}

.other-services-cta {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
}

.other-services-cta p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* ================================
   How We Work
   ================================ */

.how-we-work {
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
}

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

.engagement-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    position: relative;
    transition: var(--transition-slow);
    overflow: hidden;
}

.engagement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition);
}

.engagement-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-md);
}

.engagement-card:hover::before {
    opacity: 1;
}

.engagement-card.featured {
    border-color: rgba(236, 72, 153, 0.3);
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.08) 0%, rgba(139, 92, 246, 0.05) 100%);
}

.engagement-card.featured::before {
    opacity: 1;
}

.card-badge {
    position: absolute;
    top: -1px;
    right: 24px;
    background: var(--gradient-primary);
    color: white;
    padding: 6px 16px;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
}

.engagement-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.engagement-duration {
    color: var(--primary-light);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.engagement-price {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.engagement-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.engagement-card ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.engagement-card li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
}

.engagement-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
}

.engagement-outcome {
    display: block;
    color: var(--primary-light);
    margin-top: 1rem;
}

.what-happens-next {
    max-width: 900px;
    margin: var(--spacing-lg) auto 0;
    padding: 3rem;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
}

.what-happens-next h3 {
    text-align: center;
    margin-bottom: 2rem;
}

.steps-simple {
    display: grid;
    gap: 1.5rem;
}

.step strong {
    display: block;
    color: var(--primary-light);
    margin-bottom: 0.5rem;
}

.step p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ================================
   Proof Section
   ================================ */

.proof-section {
    padding: var(--spacing-xl) 0;
    background: rgba(255, 255, 255, 0.02);
}

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

.case-study {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 2rem;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 1rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition-slow);
}

.case-study::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-primary);
}

.case-study:hover {
    transform: translateY(-6px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-md);
}

.case-study h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.case-metric {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.case-study p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.case-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.case-tags span {
    background: rgba(236, 72, 153, 0.1);
    border: 1px solid var(--border);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--primary-light);
}

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

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

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

.faq-column h3 {
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--bg-card);
    transition: var(--transition);
    overflow: hidden;
}

.faq-item:hover {
    border-color: rgba(236, 72, 153, 0.2);
}

.faq-item[open] {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
}

.faq-item summary {
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-primary);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    font-size: 1.5rem;
    color: var(--primary);
    transition: var(--transition);
    flex-shrink: 0;
}

.faq-item[open] summary::after {
    content: "−";
    transform: rotate(180deg);
}

.faq-item p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ================================
   About / Team Section
   ================================ */

.about-section {
    padding: var(--spacing-xl) 0;
    background: rgba(255, 255, 255, 0.02);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
}

.team-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 3rem 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-glow), var(--shadow-lg);
}

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

.team-photo {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    padding: 3px;
    background: var(--gradient-primary);
    position: relative;
}

.team-photo img {
    border-radius: 50%;
}

.team-photo svg {
    width: 100%;
    height: 100%;
}

.team-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.team-role {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-bio {
    color: var(--text-secondary);
    line-height: 1.7;
}

.about-principles {
    max-width: 900px;
    margin: 0 auto;
}

.about-principles h3 {
    text-align: center;
    margin-bottom: 2rem;
}

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

.principle {
    text-align: center;
}

.principle strong {
    display: block;
    color: var(--primary-light);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.principle p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ================================
   Contact Section
   ================================ */

.contact-section {
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
}

.contact-simple {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 2rem;
}

.contact-email {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 3rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    min-width: 300px;
    justify-content: center;
}

.contact-email:hover {
    border-color: var(--primary);
    background: rgba(236, 72, 153, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(236, 72, 153, 0.2);
}

.email-icon {
    font-size: 1.5rem;
}

.contact-note {
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    line-height: 1.7;
}

/* New Contact Section Styles */
.contact-section {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.03) 0%, rgba(139, 92, 246, 0.03) 100%);
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-main {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition);
}

.contact-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(236, 72, 153, 0.15);
}

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

.contact-card h3 {
    font-size: var(--font-xl);
    margin-bottom: 1rem;
}

.contact-email-link {
    display: inline-block;
    font-size: var(--font-lg);
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

.contact-email-link:hover {
    color: var(--primary-light);
}

.contact-response-time {
    color: var(--text-tertiary);
    font-size: 0.9rem;
}

.contact-info-box {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
}

.contact-info-box h4 {
    font-size: var(--font-lg);
    margin-bottom: 1rem;
    color: var(--text-primary);
}

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

.contact-checklist li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-checklist li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.contact-team h3 {
    font-size: var(--font-xl);
    margin-bottom: 2rem;
    text-align: center;
}

.team-contacts {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.team-contact-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem;
    transition: var(--transition);
}

.team-contact-card:hover {
    border-color: var(--primary);
    transform: translateX(4px);
}

.contact-avatar {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.contact-avatar svg {
    width: 100%;
    height: 100%;
}

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

.contact-info strong {
    font-size: var(--font-lg);
    color: var(--text-primary);
}

.contact-info span {
    font-size: 0.9rem;
    color: var(--text-tertiary);
}

.linkedin-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 0.25rem;
    transition: var(--transition);
}

.linkedin-link:hover {
    color: var(--primary-light);
    gap: 0.75rem;
}

.linkedin-link svg {
    flex-shrink: 0;
}

@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ================================
   Footer
   ================================ */

.footer {
    padding: 5rem 0 2rem;
    border-top: 1px solid var(--border);
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-primary);
    opacity: 0.3;
}

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

.footer-brand p {
    color: var(--text-muted);
    margin-top: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0;
    /* Reduced from 2px */
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.logo-donut-small {
    width: 28px;
    height: 28px;
    margin: 0 -4px;
    /* Pull letters closer */
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    color: var(--primary-light);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.footer-column a {
    display: block;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-lang {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.footer-lang a.active {
    color: var(--primary);
    font-weight: 600;
}

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

@media (max-width: 1024px) {
    :root {
        --spacing-xl: 5rem;
        --spacing-xxl: 6rem;
    }

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

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

@media (max-width: 768px) {
    :root {
        --spacing-lg: 2.5rem;
        --spacing-xl: 4rem;
        --spacing-xxl: 5rem;
    }

    .container {
        padding: 0 1.25rem;
    }

    .header {
        width: 100%;
        top: 0;
        border-radius: 0;
        border: none;
        border-bottom: 1px solid var(--border);
        padding: 12px 20px;
        background: rgba(5, 5, 7, 0.95);
    }

    .header.scrolled {
        top: 0;
    }

    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-secondary);
        flex-direction: column;
        padding: 1.5rem;
        gap: 0;
        border-bottom: 1px solid var(--border);
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                    opacity 0.3s ease,
                    padding 0.3s ease;
    }

    .nav.active {
        max-height: 400px;
        opacity: 1;
        padding: 1.5rem;
    }

    .nav .nav-link {
        padding: 0.875rem 0;
        font-size: 1rem;
        border-bottom: 1px solid var(--border);
        width: 100%;
        text-align: center;
    }

    .nav .nav-link:last-of-type {
        border-bottom: none;
    }

    .nav .cta-nav {
        margin-top: 1rem;
        width: 100%;
        text-align: center;
        padding: 0.875rem 1.5rem;
    }

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

    /* Hero mobile */
    .hero {
        padding: 100px 0 var(--spacing-lg);
        min-height: auto;
    }

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

    .title-line {
        white-space: normal;
        line-height: 1.3;
    }

    h1 {
        font-size: clamp(1.75rem, 7vw, 2.5rem);
    }

    h2 {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
        line-height: 1.7;
    }

    .hero-subtitle br {
        display: none;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
        gap: 0.875rem;
        margin-bottom: 2rem;
    }

    .cta-button {
        width: 100%;
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .hero-proof {
        flex-direction: column;
        gap: 1rem;
    }

    .proof-item {
        padding: 1.25rem 1.5rem;
        min-width: auto;
    }

    .proof-item strong {
        font-size: 1.75rem;
    }

    .proof-item span {
        font-size: 0.8rem;
    }

    /* Section titles mobile */
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .section-intro {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    /* Service cards mobile */
    .services-grid-primary {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    .service-icon {
        width: 60px;
        height: 60px;
    }

    /* Use cases mobile */
    .use-cases-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .use-case-card {
        padding: 1.25rem;
    }

    /* Service content grid mobile */
    .service-content-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-problem,
    .service-solution {
        padding: 1.5rem;
    }

    /* Outcomes grid mobile */
    .outcomes-grid {
        flex-direction: column;
        gap: 1.5rem;
    }

    .service-outcomes-box {
        padding: 2rem 1.5rem;
    }

    /* Engagement models mobile */
    .engagement-models {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .engagement-card {
        padding: 2rem 1.5rem;
    }

    /* Case studies mobile */
    .case-studies {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* FAQ mobile */
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .faq-item summary {
        padding: 1rem 1.25rem;
        font-size: 0.95rem;
    }

    .faq-item p {
        padding: 0 1.25rem 1.25rem;
        font-size: 0.95rem;
    }

    /* Team mobile */
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .team-card {
        padding: 2rem 1.5rem;
    }

    .team-photo {
        width: 120px;
        height: 120px;
    }

    /* Principles mobile */
    .principles-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Contact mobile */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-card {
        padding: 2rem 1.5rem;
    }

    .team-contact-card {
        padding: 1.25rem;
    }

    .contact-avatar {
        width: 60px;
        height: 60px;
    }

    .contact-email {
        min-width: auto;
        width: 100%;
        padding: 1rem 1.5rem;
    }

    /* Footer mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    /* Timeline mobile */
    .timeline-step {
        flex-direction: column;
        gap: 1rem;
    }

    .step-num {
        font-size: 1.5rem;
        min-width: auto;
    }

    /* Blog grid mobile */
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .blog-card {
        padding: 1.5rem;
    }

    .blog-title {
        font-size: 1.25rem;
    }

    /* Other services mobile */
    .other-services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    /* What happens next mobile */
    .what-happens-next {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .logo {
        font-size: 1rem;
    }

    .logo-donut {
        width: 26px;
        height: 26px;
    }

    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.35rem;
    }

    .hero {
        padding: 90px 0 var(--spacing-md);
    }

    .proof-item {
        padding: 1rem 1.25rem;
    }

    .proof-item strong {
        font-size: 1.5rem;
    }

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

    .service-badge {
        font-size: 0.65rem;
        padding: 5px 14px;
    }

    .engagement-price {
        font-size: 1.5rem;
    }

    .case-metric {
        font-size: 1.5rem;
    }

    .outcome-item strong {
        font-size: 2rem;
    }
}

/* ================================
   Accessibility
   ================================ */

:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }

    html {
        scroll-behavior: auto;
    }
}

/* Screen reader only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* ================================
   New Additions (Blog, Form, Donuts)
   ================================ */

/* Background Donuts */
.bg-donut {
    position: absolute;
    z-index: -1;
    pointer-events: none;
    filter: blur(1px);
}

.bg-donut-1 {
    top: 5%;
    right: 0;
    width: 300px;
    height: 300px;
    opacity: 0.02;
    animation: float 25s infinite ease-in-out;
}

.bg-donut-2 {
    bottom: 15%;
    left: 0;
    width: 300px;
    height: 300px;
    opacity: 0.02;
    animation: float 30s infinite ease-in-out reverse;
}

.bg-donut-3 {
    top: 60%;
    right: 0;
    width: 400px;
    height: 400px;
    opacity: 0.015;
    animation: float 40s infinite ease-in-out;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-30px) rotate(15deg);
    }
}

/* Home Blog Section */
.home-blog-section {
    padding: var(--spacing-xxl) 0;
    /* Fallback to spacing-xl if xxl not defined but relying on cascade */
    padding: 8rem 0;
    position: relative;
    border-top: 1px solid var(--border);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    transition: var(--transition-slow);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.blog-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow), var(--shadow-md);
    background: var(--bg-card-hover);
}

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

.blog-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    display: flex;
    gap: 1rem;
    align-items: center;
}

.blog-tag {
    color: var(--primary-light);
    font-weight: 500;
    background: rgba(236, 72, 153, 0.1);
    padding: 2px 10px;
    border-radius: 20px;
    border: 1px solid rgba(236, 72, 153, 0.2);
}

.blog-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    line-height: 1.3;
}

.blog-excerpt {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    flex-grow: 1;
    line-height: 1.6;
}

.blog-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-link:hover {
    gap: 0.75rem;
    color: var(--primary-light);
}

/* Contact Form */
.contact-form {
    display: grid;
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: left;
}

.form-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.form-input,
.form-textarea {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
}

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

.form-submit {
    width: 100%;
    margin-top: 1rem;
}

/* Proof Visual Placeholders */
.proof-visual {
    width: 100%;
    height: 200px;
    background: var(--bg-tertiary);
    border: 1px dashed var(--border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: auto;
    /* Push to bottom */
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    /* Prevent squashing */
}

.proof-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.proof-visual::after {
    content: '';
    /* Removed text to avoid overlap with images */
}

/* ================================
   Cookie Consent Banner
   ================================ */

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(15, 15, 18, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--border);
    padding: 1.25rem 1.5rem;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-consent-content {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-consent-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    flex: 1;
    min-width: 280px;
}

.cookie-consent-buttons {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.65rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.cookie-btn-accept {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
}

.cookie-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(236, 72, 153, 0.4);
}

.cookie-btn-decline {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    border: 1px solid var(--border);
}

.cookie-btn-decline:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border-color: rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    .cookie-consent {
        padding: 1rem;
    }

    .cookie-consent-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .cookie-consent-content p {
        font-size: 0.875rem;
    }

    .cookie-consent-buttons {
        width: 100%;
        justify-content: center;
    }

    .cookie-btn {
        flex: 1;
        max-width: 140px;
    }
}

/* ================================
   Social Share Buttons
   ================================ */

.share-buttons {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    z-index: 100;
}

.share-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.share-btn:hover {
    transform: scale(1.1);
    border-color: var(--border-hover);
}

.share-btn.share-twitter:hover {
    background: #1da1f2;
    border-color: #1da1f2;
    color: white;
}

.share-btn.share-facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: white;
}

.share-btn.share-linkedin:hover {
    background: #0a66c2;
    border-color: #0a66c2;
    color: white;
}

.share-btn.share-copy:hover {
    background: #22c55e;
    border-color: #22c55e;
    color: white;
}

.share-btn.share-copy.copied {
    background: #22c55e;
    border-color: #22c55e;
    color: white;
}

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

@media (max-width: 1024px) {
    .share-buttons {
        right: 12px;
    }

    .share-btn {
        width: 40px;
        height: 40px;
    }

    .share-btn svg {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 768px) {
    .share-buttons {
        position: fixed;
        bottom: 80px;
        right: 12px;
        top: auto;
        transform: none;
        flex-direction: column;
    }

    .share-btn {
        width: 38px;
        height: 38px;
    }

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