/* ==========================================
   Global Styles & Reset
   ========================================== */

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

:root {
    /* Color Palette - Sunset Glow Theme */
    --sunset-orange: #ff6b35;
    --sunset-coral: #ff8c61;
    --sunset-pink: #ff5e78;
    --sunset-magenta: #d62898;
    --sunset-gold: #ffc857;
    --sunset-amber: #f77f00;
    --sunset-rose: #ef476f;
    --sunset-purple: #a855f7;
    --sunset-lavender: #c084fc;

    /* Background Colors */
    --dark-bg: #0f0722;
    --dark-bg-secondary: #1a0b2e;
    --dark-card: #1f1039;
    --dark-card-hover: #2a1548;
    --dark-purple: #2d1b4e;
    --deep-purple: #1e0f3a;

    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #ffb4a8;
    --text-muted: #b794c5;
    --text-accent: #ffc857;

    /* Border & Dividers */
    --border-color: #3d2764;
    --border-glow: rgba(255, 107, 53, 0.3);

    /* Status Colors */
    --success: #ff8c61;
    --warning: #ffc857;
    --error: #ff5e78;

    /* Gradients - Sunset Magic */
    --gradient-primary: linear-gradient(135deg, #ff6b35 0%, #d62898 50%, #a855f7 100%);
    --gradient-secondary: linear-gradient(135deg, #f77f00 0%, #ff5e78 100%);
    --gradient-sunset: linear-gradient(180deg, #1a0b2e 0%, #2d1b4e 50%, #4a2463 100%);
    --gradient-warm: linear-gradient(135deg, #ffc857 0%, #ff8c61 50%, #ff6b35 100%);
    --gradient-radial: radial-gradient(circle at 50% 0%, rgba(255, 107, 53, 0.15) 0%, rgba(214, 40, 152, 0.08) 50%, transparent 80%);
    --gradient-radial-glow: radial-gradient(circle at center, rgba(255, 107, 53, 0.4) 0%, rgba(214, 40, 152, 0.2) 35%, rgba(168, 85, 247, 0.15) 60%, transparent 80%);

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

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-size-xs: 0.875rem;
    --font-size-sm: 1rem;
    --font-size-md: 1.125rem;
    --font-size-lg: 1.5rem;
    --font-size-xl: 2rem;
    --font-size-2xl: 3rem;
    --font-size-3xl: 4rem;

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;

    /* Borders */
    --border-radius-sm: 0.5rem;
    --border-radius-md: 1rem;
    --border-radius-lg: 1.5rem;
    --border-radius-full: 9999px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background: var(--dark-bg);
    background-image:
        radial-gradient(ellipse at top, rgba(255, 107, 53, 0.04) 0%, transparent 60%),
        radial-gradient(ellipse at bottom right, rgba(214, 40, 152, 0.03) 0%, transparent 60%),
        radial-gradient(ellipse at bottom left, rgba(168, 85, 247, 0.025) 0%, transparent 60%);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    background: linear-gradient(180deg,
        rgba(255, 107, 53, 0.02) 0%,
        rgba(214, 40, 152, 0.015) 30%,
        transparent 50%,
        rgba(168, 85, 247, 0.015) 70%,
        rgba(255, 140, 97, 0.02) 100%
    );
    pointer-events: none;
    z-index: -1;
    animation: gradient-shift 15s ease-in-out infinite;
}

@keyframes gradient-shift {
    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, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-title {
    font-size: var(--font-size-2xl);
    margin-bottom: var(--spacing-sm);
}

.section-subtitle {
    font-size: var(--font-size-md);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================
   Buttons
   ========================================== */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: var(--font-size-sm);
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--border-radius-full);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 25px rgba(255, 107, 53, 0.4), 0 0 40px rgba(214, 40, 152, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 35px rgba(255, 107, 53, 0.6), 0 0 60px rgba(214, 40, 152, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
    position: relative;
}

.btn-secondary:hover {
    border-color: var(--sunset-orange);
    background: rgba(255, 107, 53, 0.1);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.2);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: var(--font-size-md);
}

/* ==========================================
   Navigation
   ========================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 7, 34, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 4px 30px rgba(255, 107, 53, 0.1);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    text-decoration: none;
    color: var(--text-primary);
    transition: transform var(--transition-fast);
}

.logo:hover {
    transform: scale(1.05);
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    transition: color var(--transition-fast);
}

.nav-menu a:not(.btn):hover {
    color: var(--text-primary);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 0.375rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 1.5rem;
    height: 2px;
    background: var(--text-primary);
    transition: all var(--transition-fast);
}

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

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 6rem;
    overflow: hidden;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background: var(--gradient-radial);
    pointer-events: none;
    animation: hero-glow 8s ease-in-out infinite;
}

@keyframes hero-glow {
    0%, 100% {
        opacity: 0.8;
        filter: blur(80px);
    }
    50% {
        opacity: 0.5;
        filter: blur(90px);
    }
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 107, 53, 0.15);
    border: 1px solid rgba(255, 140, 97, 0.5);
    border-radius: var(--border-radius-full);
    font-size: var(--font-size-xs);
    color: var(--sunset-coral);
    margin-bottom: var(--spacing-md);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.2);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--sunset-orange);
    border-radius: 50%;
    animation: pulse-glow 2s infinite;
    box-shadow: 0 0 10px var(--sunset-orange);
}

@keyframes pulse-glow {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 10px var(--sunset-orange);
    }
    50% {
        opacity: 0.6;
        box-shadow: 0 0 20px var(--sunset-orange);
    }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-title {
    font-size: clamp(2rem, 5vw, 4rem);
    margin-bottom: var(--spacing-md);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: var(--font-size-md);
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--spacing-lg);
}

/* ==========================================
   Problem Section
   ========================================== */

.problem-section {
    padding: var(--spacing-xl) 0;
    background: var(--dark-card);
}

.problem-content .section-title {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

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

.problem-card {
    text-align: center;
    padding: var(--spacing-md);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(214, 40, 152, 0.05) 100%);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    transition: all var(--transition-base);
    overflow: visible;
    position: relative;
}

.problem-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, var(--sunset-orange), var(--sunset-magenta));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.problem-card:hover::before {
    opacity: 0.6;
}

.problem-card:hover {
    border-color: var(--sunset-orange);
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.3), 0 0 60px rgba(214, 40, 152, 0.2);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(214, 40, 152, 0.08) 100%);
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

.problem-card h3 {
    font-size: var(--font-size-md);
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

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

.problem-cta {
    text-align: center;
    padding-top: var(--spacing-lg);
}

.problem-text {
    font-size: var(--font-size-lg);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

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

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

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

.service-card {
    background: var(--dark-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-md);
    transition: all var(--transition-base);
    position: relative;
    overflow: visible;
}

.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: var(--gradient-radial-glow);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 0;
}

.service-card:hover::after {
    opacity: 1;
}

.service-card > * {
    position: relative;
    z-index: 1;
}

.service-card:hover {
    background: var(--dark-card-hover);
    border-color: var(--sunset-orange);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.3), 0 0 80px rgba(214, 40, 152, 0.2);
}

.service-number {
    display: inline-block;
    font-size: var(--font-size-xl);
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-sm);
}

.service-title {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-sm);
}

.service-description {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
}

.service-result {
    padding: var(--spacing-sm);
    background: linear-gradient(90deg, rgba(255, 107, 53, 0.15) 0%, rgba(214, 40, 152, 0.1) 100%);
    border-radius: var(--border-radius-sm);
    font-size: var(--font-size-xs);
    color: var(--text-secondary);
    border-left: 3px solid var(--sunset-orange);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.1);
}

.service-result strong {
    color: var(--sunset-coral);
    font-weight: 700;
}

/* ==========================================
   Process Section
   ========================================== */

.process {
    padding: var(--spacing-xl) 0;
    background: var(--dark-card);
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 2rem;
    top: 5rem;
    width: 2px;
    height: calc(100% + var(--spacing-md));
    background: linear-gradient(180deg, var(--sunset-orange) 0%, var(--sunset-magenta) 50%, var(--sunset-purple) 100%);
    opacity: 0.5;
    box-shadow: 0 0 10px var(--sunset-orange);
}

.step-number {
    flex-shrink: 0;
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-lg);
    font-weight: 800;
    background: var(--gradient-primary);
    border-radius: var(--border-radius-md);
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.5), 0 0 50px rgba(214, 40, 152, 0.3);
    color: white;
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-sm);
}

.step-description {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-sm);
    line-height: 1.7;
}

.step-duration {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 140, 97, 0.15);
    border: 1px solid rgba(255, 107, 53, 0.4);
    border-radius: var(--border-radius-full);
    font-size: var(--font-size-xs);
    color: var(--sunset-coral);
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.2);
}

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

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

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

.about-image {
    display: flex;
    justify-content: center;
}

.image-placeholder {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--border-color);
    transition: all var(--transition-base);
}

.image-placeholder:hover {
    border-color: var(--sunset-orange);
    box-shadow: 0 0 40px rgba(255, 107, 53, 0.4), 0 0 60px rgba(214, 40, 152, 0.2);
    transform: scale(1.05);
}

.about-content .section-title {
    text-align: left;
    margin-bottom: var(--spacing-md);
}

.about-text {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

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

.about-values h3 {
    margin-bottom: var(--spacing-sm);
    font-size: var(--font-size-md);
    color: var(--text-primary);
}

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

.values-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
    line-height: 1.6;
}

.values-list svg {
    flex-shrink: 0;
    margin-top: 0.125rem;
}

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

.faq {
    padding: var(--spacing-xl) 0;
    background: var(--dark-card);
}

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

.faq-item {
    border-bottom: 1px solid var(--border-color);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) 0;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: var(--font-size-md);
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: color var(--transition-fast);
}

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

.faq-icon {
    flex-shrink: 0;
    transition: transform var(--transition-base);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: var(--spacing-md);
}

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

/* ==========================================
   CTA Section
   ========================================== */

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

.cta-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-title {
    font-size: clamp(1.5rem, 4vw, 3rem);
    margin-bottom: var(--spacing-md);
}

.cta-subtitle {
    font-size: var(--font-size-md);
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
}

.cta-form {
    background: var(--dark-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

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

.form-group {
    margin-bottom: var(--spacing-sm);
    text-align: left;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    background: var(--dark-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    color: var(--text-primary);
    font-family: var(--font-family);
    font-size: var(--font-size-sm);
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--sunset-orange);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.15), 0 0 20px rgba(255, 107, 53, 0.1);
}

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

.cta-form button {
    width: 100%;
    margin-top: var(--spacing-sm);
}

.form-disclaimer {
    margin-top: var(--spacing-sm);
    font-size: var(--font-size-xs);
    color: var(--text-muted);
    text-align: center;
}

.cta-contact-options {
    text-align: center;
}

.cta-alt-text {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-sm);
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.12) 0%, rgba(214, 40, 152, 0.08) 100%);
    border: 1px solid rgba(255, 107, 53, 0.4);
    border-radius: var(--border-radius-full);
    color: var(--text-primary);
    text-decoration: none;
    transition: all var(--transition-base);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.1);
}

.contact-method:hover {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2) 0%, rgba(214, 40, 152, 0.15) 100%);
    border-color: var(--sunset-orange);
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.3);
    transform: translateY(-2px);
}

.contact-method svg {
    color: var(--sunset-orange);
}

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

.footer {
    background: var(--dark-card);
    border-top: 1px solid var(--border-color);
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    text-decoration: none;
    color: var(--text-primary);
    display: inline-block;
    margin-bottom: var(--spacing-sm);
}

.footer-tagline {
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
}

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

.footer-column h4 {
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
    font-size: var(--font-size-sm);
}

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

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

.footer-column a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: var(--font-size-sm);
    transition: color var(--transition-fast);
}

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

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--border-color);
    font-size: var(--font-size-xs);
    color: var(--text-muted);
}

.footer-legal {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.footer-legal a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: var(--sunset-coral);
    text-decoration: underline;
}

.footer-legal span {
    opacity: 0.5;
}

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

@media (max-width: 1024px) {
    .about-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-content .section-title {
        text-align: center;
    }

    .image-placeholder {
        width: 250px;
        height: 250px;
    }
}

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

    .mobile-menu-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: var(--dark-card);
        flex-direction: column;
        align-items: flex-start;
        padding: 6rem 2rem 2rem;
        transition: right var(--transition-base);
        border-left: 1px solid var(--border-color);
    }

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

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        width: 100%;
        padding: 1rem 0;
    }

    .hero {
        min-height: auto;
        padding: 8rem 0 4rem;
    }

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

    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }

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

    .process-step {
        flex-direction: column;
    }

    .process-step:not(:last-child)::after {
        display: none;
    }

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

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

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

    .contact-methods {
        flex-direction: column;
    }

    .contact-method {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: var(--font-size-xl);
    }

    .hero-title {
        font-size: 2rem;
    }

    .problem-icon {
        font-size: 2.5rem;
    }
}

/* ==========================================
   Animations
   ========================================== */

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

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

.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   3D Card Effects - Ethereal Glow
   ========================================== */

/* 3D Scene Container */
.card-3d-scene {
    perspective: 1000px;
    transform-style: preserve-3d;
}

/* Enhanced 3D Cards */
.card-3d {
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out;
    position: relative;
    overflow: visible;
}

/* Glansig reflektion (Sheen) - Sunset Version */
.card-3d::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle at var(--sheen-x, 50%) var(--sheen-y, 50%),
        rgba(255, 107, 53, 0.4) 0%,
        rgba(214, 40, 152, 0.25) 20%,
        rgba(168, 85, 247, 0.15) 40%,
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    mix-blend-mode: overlay;
    border-radius: inherit;
    z-index: 1;
}

.card-3d:hover::after {
    opacity: 1;
}

/* Ambient glow border - Sunset Gradient */
.card-3d::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border-radius: inherit;
    background: linear-gradient(
        var(--border-angle, 45deg),
        rgba(255, 107, 53, 0.6),
        rgba(214, 40, 152, 0.5),
        rgba(168, 85, 247, 0.4),
        rgba(255, 140, 97, 0.3)
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: -1;
}

.card-3d:hover::before {
    opacity: 0.7;
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.5), inset 0 0 20px rgba(214, 40, 152, 0.3);
}

/* Content inside cards should stay flat */
.card-3d > * {
    position: relative;
    z-index: 2;
}

/* Dynamic background glow - Sunset Magic */
.glow-background {
    position: fixed;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(
        circle at center,
        rgba(255, 107, 53, 0.25) 0%,
        rgba(214, 40, 152, 0.18) 25%,
        rgba(168, 85, 247, 0.12) 50%,
        rgba(255, 140, 97, 0.08) 65%,
        transparent 80%
    );
    filter: blur(80px);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: -1;
    animation: glow-pulse 4s ease-in-out infinite;
}

.glow-background.active {
    opacity: 1;
}

@keyframes glow-pulse {
    0%, 100% {
        filter: blur(60px);
        transform: scale(1);
    }
    50% {
        filter: blur(70px);
        transform: scale(1.03);
    }
}

/* Subtil textur overlay med starfield */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(1px 1px at 20% 30%, rgba(255, 107, 53, 0.15), transparent),
        radial-gradient(1px 1px at 60% 70%, rgba(214, 40, 152, 0.15), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(168, 85, 247, 0.15), transparent),
        radial-gradient(1px 1px at 80% 10%, rgba(255, 140, 97, 0.12), transparent),
        radial-gradient(1px 1px at 90% 60%, rgba(255, 107, 53, 0.12), transparent),
        radial-gradient(1px 1px at 33% 80%, rgba(214, 40, 152, 0.12), transparent),
        radial-gradient(1px 1px at 15% 90%, rgba(168, 85, 247, 0.12), transparent);
    background-size: 200% 200%, 200% 200%, 200% 200%, 200% 200%, 200% 200%, 200% 200%, 200% 200%;
    animation: starfield-twinkle 20s ease-in-out infinite;
    opacity: 0.08;
    pointer-events: none;
    z-index: 10000;
}

@keyframes starfield-twinkle {
    0%, 100% {
        opacity: 0.08;
        background-position: 0% 0%, 100% 100%, 50% 50%, 80% 10%, 90% 60%, 33% 80%, 15% 90%;
    }
    50% {
        opacity: 0.12;
        background-position: 100% 100%, 0% 0%, 60% 40%, 70% 20%, 80% 70%, 43% 90%, 25% 80%;
    }
}

/* ==========================================
   Utility Classes
   ========================================== */

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

.mt-1 { margin-top: var(--spacing-sm); }
.mt-2 { margin-top: var(--spacing-md); }
.mt-3 { margin-top: var(--spacing-lg); }

.mb-1 { margin-bottom: var(--spacing-sm); }
.mb-2 { margin-bottom: var(--spacing-md); }
.mb-3 { margin-bottom: var(--spacing-lg); }

.hidden {
    display: none;
}

.visible {
    display: block;
}

/* ==========================================
   Chatbot Widget Styles
   ========================================== */

#chatbot-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 10000;
}

/* Chat Button */
.chat-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 25px rgba(255, 107, 53, 0.5), 0 0 40px rgba(214, 40, 152, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    animation: chat-pulse 3s ease-in-out infinite;
}

@keyframes chat-pulse {
    0%, 100% {
        box-shadow: 0 4px 25px rgba(255, 107, 53, 0.5), 0 0 40px rgba(214, 40, 152, 0.3);
    }
    50% {
        box-shadow: 0 6px 35px rgba(255, 107, 53, 0.7), 0 0 60px rgba(214, 40, 152, 0.5);
    }
}

.chat-button:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 40px rgba(255, 107, 53, 0.7), 0 0 70px rgba(214, 40, 152, 0.5);
    animation: none;
}

.chat-button svg {
    width: 30px;
    height: 30px;
    fill: white;
}

.chat-button.active .chat-icon {
    display: none;
}

.chat-button .close-icon {
    display: none;
}

.chat-button.active .close-icon {
    display: block;
}

/* Notification Badge */
.notification-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: #EF4444;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 12px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
}

/* Chat Window */
.chat-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 380px;
    height: 550px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    display: none;
    flex-direction: column;
    overflow: hidden;
    animation: slideUp 0.3s ease;
}

.chat-window.active {
    display: flex;
}

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

/* Chat Header */
.chat-header {
    background: var(--gradient-primary);
    color: white;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.chat-header-info h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 2px;
}

.chat-header-info p {
    font-size: 12px;
    opacity: 0.9;
}

/* Chat Messages */
.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    background: #F9FAFB;
}

.chat-messages::-webkit-scrollbar {
    width: 6px;
}

.chat-messages::-webkit-scrollbar-thumb {
    background: #D1D5DB;
    border-radius: 3px;
}

.message {
    margin-bottom: 16px;
    display: flex;
    gap: 10px;
}

.message.user {
    flex-direction: row-reverse;
}

.message-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.message.user .message-avatar {
    background: var(--success);
}

.message-content {
    max-width: 70%;
}

.message-bubble {
    background: white;
    padding: 12px 16px;
    border-radius: 18px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    font-size: 14px;
    line-height: 1.5;
    color: #1F2937;
}

.message.user .message-bubble {
    background: var(--gradient-primary);
    color: white;
}

.message-time {
    font-size: 11px;
    color: #6B7280;
    margin-top: 4px;
    padding: 0 4px;
}

/* Typing Indicator */
.typing-indicator {
    display: none;
    padding: 12px 16px;
    background: white;
    border-radius: 18px;
    width: fit-content;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.typing-indicator.active {
    display: block;
}

.typing-indicator span {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--sunset-orange);
    margin: 0 2px;
    animation: typing 1.4s infinite;
    box-shadow: 0 0 5px var(--sunset-orange);
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {
    0%, 60%, 100% {
        transform: translateY(0);
        opacity: 0.7;
    }
    30% {
        transform: translateY(-10px);
        opacity: 1;
    }
}

/* Quick Replies */
.quick-replies {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.quick-reply {
    background: white;
    border: 2px solid var(--sunset-orange);
    color: var(--sunset-orange);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: var(--font-family);
}

.quick-reply:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

/* Chat Input */
.chat-input {
    padding: 20px;
    background: white;
    border-top: 1px solid #E5E7EB;
    display: flex;
    gap: 12px;
}

.chat-input input {
    flex: 1;
    border: 2px solid #E5E7EB;
    border-radius: 24px;
    padding: 12px 20px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s ease;
    font-family: var(--font-family);
    color: #1F2937;
}

.chat-input input:focus {
    border-color: var(--sunset-orange);
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.2);
}

.chat-input input::placeholder {
    color: #9CA3AF;
}

.send-button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient-primary);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.send-button:hover {
    transform: scale(1.1);
}

.send-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.send-button svg {
    width: 20px;
    height: 20px;
    fill: white;
}

/* Powered By */
.powered-by {
    text-align: center;
    padding: 8px;
    font-size: 11px;
    color: #9CA3AF;
    background: #F9FAFB;
}

/* Mobile Responsive */
@media (max-width: 480px) {
    #chatbot-widget {
        bottom: 10px;
        right: 10px;
    }

    .chat-window {
        width: calc(100vw - 20px);
        height: calc(100vh - 100px);
        bottom: 80px;
        right: 0;
    }

    .chat-button {
        width: 56px;
        height: 56px;
    }

    .chat-button svg {
        width: 26px;
        height: 26px;
    }
}

/* ==========================================
   Sticky CTA Button
   ========================================== */

.sticky-cta {
    position: fixed;
    bottom: 90px;
    left: 20px;
    z-index: 9999;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.sticky-cta.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.sticky-cta .btn {
    box-shadow: 0 4px 25px rgba(255, 107, 53, 0.5), 0 0 40px rgba(214, 40, 152, 0.3);
    animation: pulse-cta 2s infinite;
}

@keyframes pulse-cta {
    0%, 100% {
        box-shadow: 0 4px 25px rgba(255, 107, 53, 0.5), 0 0 40px rgba(214, 40, 152, 0.3);
    }
    50% {
        box-shadow: 0 6px 35px rgba(255, 107, 53, 0.7), 0 0 60px rgba(214, 40, 152, 0.5);
    }
}

@media (max-width: 768px) {
    .sticky-cta {
        bottom: 80px;
        left: 50%;
        transform: translateX(-50%) translateY(100px);
        width: calc(100% - 40px);
    }

    .sticky-cta.visible {
        transform: translateX(-50%) translateY(0);
    }

    .sticky-cta .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================
   Exit-Intent Popup
   ========================================== */

.exit-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10001;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.exit-popup.active {
    display: flex;
    opacity: 1;
}

.exit-popup-content {
    background: var(--dark-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    max-width: 600px;
    width: calc(100% - 40px);
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.exit-popup.active .exit-popup-content {
    transform: scale(1);
}

.exit-popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 24px;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.exit-popup-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

.exit-popup-title {
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-sm);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.exit-popup-subtitle {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    font-size: var(--font-size-md);
}

.exit-popup-benefits {
    list-style: none;
    margin-bottom: var(--spacing-md);
}

.exit-popup-benefits li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
}

.exit-popup-benefits svg {
    flex-shrink: 0;
}

.exit-popup-form {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
}

.exit-popup-form input {
    flex: 1;
    padding: 0.875rem 1rem;
    background: var(--dark-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    color: var(--text-primary);
    font-family: var(--font-family);
    font-size: var(--font-size-sm);
    transition: all var(--transition-fast);
}

.exit-popup-form input:focus {
    outline: none;
    border-color: var(--sunset-orange);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.15), 0 0 20px rgba(255, 107, 53, 0.1);
}

.exit-popup-disclaimer {
    font-size: var(--font-size-xs);
    color: var(--text-muted);
    text-align: center;
}

@media (max-width: 768px) {
    .exit-popup-form {
        flex-direction: column;
    }
}

/* ==========================================
   Trust Badges
   ========================================== */

.trust-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    margin-top: var(--spacing-lg);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.12) 0%, rgba(214, 40, 152, 0.08) 100%);
    border: 1px solid rgba(255, 107, 53, 0.4);
    border-radius: var(--border-radius-full);
    color: var(--text-primary);
    font-size: var(--font-size-sm);
    font-weight: 500;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
}

.trust-badge:hover {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2) 0%, rgba(214, 40, 152, 0.15) 100%);
    box-shadow: 0 6px 30px rgba(255, 107, 53, 0.3);
    transform: translateY(-2px);
}

.trust-badge svg {
    color: var(--sunset-orange);
    filter: drop-shadow(0 0 8px var(--sunset-orange));
}

/* ==========================================
   Case Studies Section
   ========================================== */

.case-studies {
    padding: var(--spacing-xl) 0;
    background: var(--dark-bg);
}

.case-study-card {
    background: var(--dark-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
    transition: all var(--transition-base);
    overflow: visible;
    position: relative;
}

.case-study-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: var(--gradient-radial-glow);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.case-study-card:hover::before {
    opacity: 0.3;
}

.case-study-card > * {
    position: relative;
    z-index: 1;
}

.case-study-card:hover {
    border-color: var(--sunset-orange);
    box-shadow: 0 15px 50px rgba(255, 107, 53, 0.3), 0 0 80px rgba(214, 40, 152, 0.2);
}

.case-study-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.case-study-logo {
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius-md);
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    color: white;
    box-shadow: 0 0 25px rgba(255, 107, 53, 0.5), 0 0 40px rgba(214, 40, 152, 0.3);
}

.case-study-info h3 {
    font-size: var(--font-size-lg);
    margin-bottom: 0.25rem;
}

.case-study-info p {
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
}

.case-study-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.case-study-stat {
    text-align: center;
    padding: var(--spacing-sm);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08) 0%, rgba(214, 40, 152, 0.05) 100%);
    border-radius: var(--border-radius-sm);
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
}

.case-study-stat:hover {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, rgba(214, 40, 152, 0.1) 100%);
    border-color: var(--sunset-orange);
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.2);
    transform: translateY(-2px);
}

.case-study-stat-number {
    font-size: var(--font-size-xl);
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.25rem;
}

.case-study-stat-label {
    font-size: var(--font-size-xs);
    color: var(--text-secondary);
}

.case-study-quote {
    font-style: italic;
    color: var(--text-secondary);
    border-left: 3px solid var(--sunset-orange);
    padding-left: var(--spacing-md);
    margin: var(--spacing-md) 0;
    background: linear-gradient(90deg, rgba(255, 107, 53, 0.05) 0%, transparent 100%);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
}

.case-study-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: var(--spacing-md);
}

.case-study-author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
}

.case-study-author-info strong {
    color: var(--text-primary);
    display: block;
}

.case-study-author-info span {
    color: var(--text-secondary);
    font-size: var(--font-size-xs);
}