/*
Theme Name: WebCraft Pro
Theme URI: https://growlynk.lovable.app
Author: WebCraft
Author URI: https://growlynk.lovable.app
Description: Premium one-page business theme for local service professionals. Mobile-first, conversion-focused design with smooth animations and glassmorphism effects.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: webcraft
Tags: one-column, custom-colors, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* ========================================
   CSS Variables / Design Tokens
======================================== */
:root {
    /* Colors */
    --background: hsl(210, 20%, 98%);
    --foreground: hsl(222, 47%, 11%);
    --card: hsl(0, 0%, 100%);
    --card-foreground: hsl(222, 47%, 11%);
    --primary: hsl(199, 89%, 48%);
    --primary-foreground: hsl(0, 0%, 100%);
    --secondary: hsl(210, 40%, 96%);
    --muted: hsl(210, 40%, 96%);
    --muted-foreground: hsl(215, 16%, 47%);
    --accent: hsl(32, 95%, 54%);
    --accent-foreground: hsl(0, 0%, 100%);
    --border: hsl(214, 32%, 91%);
    --pain: hsl(0, 84%, 60%);
    --success: hsl(142, 76%, 36%);
    --section-alt: hsl(210, 25%, 97%);

    /* Gradients */
    --hero-gradient: linear-gradient(135deg, hsl(199, 89%, 48%) 0%, hsl(217, 91%, 60%) 100%);
    --cta-gradient: linear-gradient(135deg, hsl(32, 95%, 54%) 0%, hsl(25, 95%, 53%) 100%);

    /* Shadows */
    --shadow-soft: 0 4px 30px hsla(199, 89%, 48%, 0.1);
    --shadow-cta: 0 8px 30px hsla(32, 95%, 54%, 0.35);
    --shadow-card: 0 4px 20px hsla(222, 47%, 11%, 0.08);

    /* Spacing */
    --radius: 0.75rem;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

/* ========================================
   Typography
======================================== */
.text-gradient {
    background: var(--hero-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.font-display {
    font-family: 'Space Grotesk', sans-serif;
}

/* ========================================
   Layout
======================================== */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

.section-padding {
    padding: 4rem 1rem;
}

@media (min-width: 640px) {
    .section-padding {
        padding: 5rem 1.5rem;
    }
}

@media (min-width: 1024px) {
    .section-padding {
        padding: 6rem 2rem;
    }
}

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

/* ========================================
   Components
======================================== */

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
}

.btn-cta {
    background: var(--cta-gradient);
    color: var(--accent-foreground);
    box-shadow: var(--shadow-cta);
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px hsla(32, 95%, 54%, 0.4);
}

.btn-cta-xl {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-whatsapp {
    background: var(--success);
    color: white;
}

.btn-whatsapp:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--primary-foreground);
}

/* Cards */
.card {
    background: var(--card);
    border-radius: 1rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px hsla(222, 47%, 11%, 0.12);
}

/* Badges */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}

.badge-primary {
    background: hsla(199, 89%, 48%, 0.1);
    color: var(--primary);
}

.badge-pain {
    background: hsla(0, 84%, 60%, 0.1);
    color: var(--pain);
}

.badge-success {
    background: hsla(142, 76%, 36%, 0.1);
    color: var(--success);
}

/* ========================================
   Header
======================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 1.25rem 0;
}

.site-header.scrolled {
    background: hsla(0, 0%, 100%, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-card);
    padding: 0.75rem 0;
}

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

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

.logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    background: var(--hero-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.25rem;
    font-family: 'Space Grotesk', sans-serif;
}

.logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
}

.main-nav {
    display: none;
}

@media (min-width: 1024px) {
    .main-nav {
        display: flex;
        align-items: center;
        gap: 2rem;
    }
}

.main-nav a {
    color: var(--muted-foreground);
    font-weight: 500;
    font-size: 0.875rem;
    transition: color 0.2s;
}

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

.header-cta {
    display: none;
}

@media (min-width: 1024px) {
    .header-cta {
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }
}

.mobile-menu-toggle {
    display: flex;
    padding: 0.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
}

@media (min-width: 1024px) {
    .mobile-menu-toggle {
        display: none;
    }
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding-top: 1rem;
    margin-top: 1rem;
    border-top: 1px solid var(--border);
}

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

@media (min-width: 1024px) {
    .mobile-menu {
        display: none !important;
    }
}

/* ========================================
   Hero Section
======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 5rem;
}

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

.hero-bg-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}

.hero-bg-circle-1 {
    top: 5rem;
    right: 2.5rem;
    width: 18rem;
    height: 18rem;
    background: hsla(199, 89%, 48%, 0.1);
    animation: pulse-soft 4s ease-in-out infinite;
}

.hero-bg-circle-2 {
    bottom: 5rem;
    left: 2.5rem;
    width: 24rem;
    height: 24rem;
    background: hsla(32, 95%, 54%, 0.1);
    animation: pulse-soft 4s ease-in-out infinite 0.3s;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 56rem;
    margin: 0 auto;
    padding: 0 1rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background: hsla(199, 89%, 48%, 0.1);
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

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

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .hero h1 {
        font-size: 3rem;
    }
}

@media (min-width: 768px) {
    .hero h1 {
        font-size: 3.75rem;
    }
}

@media (min-width: 1024px) {
    .hero h1 {
        font-size: 4.5rem;
    }
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    max-width: 42rem;
    margin: 0 auto 2.5rem;
}

@media (min-width: 640px) {
    .hero-subtitle {
        font-size: 1.25rem;
    }
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

@media (min-width: 640px) {
    .hero-cta {
        flex-direction: row;
        justify-content: center;
    }
}

.hero-trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--card);
    border-radius: 0.75rem;
    box-shadow: var(--shadow-card);
}

.trust-badge svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--primary);
}

.trust-badge span {
    font-size: 0.875rem;
    font-weight: 500;
}

/* Floating elements */
.floating-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    background: var(--card);
    border-radius: 1rem;
    box-shadow: var(--shadow-card);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 3s ease-in-out infinite;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator-inner {
    width: 1.5rem;
    height: 2.5rem;
    border: 2px solid hsla(215, 16%, 47%, 0.3);
    border-radius: 9999px;
    display: flex;
    justify-content: center;
    padding-top: 0.5rem;
}

.scroll-indicator-dot {
    width: 0.375rem;
    height: 0.75rem;
    background: hsla(215, 16%, 47%, 0.5);
    border-radius: 9999px;
    animation: pulse 2s ease-in-out infinite;
}

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

.section-header {
    max-width: 48rem;
    margin: 0 auto 4rem;
    text-align: center;
}

.section-header h2 {
    font-size: 1.875rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .section-header h2 {
        font-size: 2.25rem;
    }
}

@media (min-width: 768px) {
    .section-header h2 {
        font-size: 3rem;
    }
}

.section-header p {
    font-size: 1.125rem;
    color: var(--muted-foreground);
}

.text-pain {
    color: var(--pain);
}

.pain-grid {
    display: grid;
    gap: 1.5rem;
    max-width: 64rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .pain-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.pain-card {
    padding: 1.5rem;
    background: var(--card);
    border-radius: 1rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
}

.pain-card:hover {
    border-color: hsla(0, 84%, 60%, 0.3);
    transform: translateY(-4px);
}

.pain-card-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.pain-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background: hsla(0, 84%, 60%, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pain-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--pain);
}

.pain-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.pain-card p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.6;
}

.pain-footer {
    margin-top: 3rem;
    text-align: center;
    font-size: 1.125rem;
    font-weight: 600;
}

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

/* ========================================
   Offer Section
======================================== */
.offer-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .offer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.offer-content h2 {
    font-size: 1.875rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .offer-content h2 {
        font-size: 2.25rem;
    }
}

@media (min-width: 768px) {
    .offer-content h2 {
        font-size: 3rem;
    }
}

.offer-content > p {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
}

.offer-content strong {
    color: var(--foreground);
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    background: hsla(142, 76%, 36%, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--success);
}

.feature-item span {
    font-weight: 500;
}

/* Website Preview */
.website-preview {
    position: relative;
    background: var(--card);
    border-radius: 1.5rem;
    padding: 1rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border);
}

.browser-chrome {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding: 0 0.5rem;
}

.browser-dots {
    display: flex;
    gap: 0.375rem;
}

.browser-dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
}

.browser-dot-red { background: hsla(0, 84%, 60%, 0.6); }
.browser-dot-yellow { background: hsla(32, 95%, 54%, 0.6); }
.browser-dot-green { background: hsla(142, 76%, 36%, 0.6); }

.browser-url {
    flex: 1;
    background: var(--secondary);
    border-radius: 0.5rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

.preview-content {
    background: var(--secondary);
    border-radius: 1rem;
    padding: 1.5rem;
}

.preview-skeleton {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.skeleton-line {
    height: 0.5rem;
    background: var(--muted);
    border-radius: 0.25rem;
}

.skeleton-line-short { width: 66%; }
.skeleton-line-medium { width: 80%; }
.skeleton-line-full { width: 100%; }
.skeleton-line-primary { background: hsla(199, 89%, 48%, 0.2); }

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

.preview-card {
    background: var(--card);
    border-radius: 0.5rem;
    padding: 0.75rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.preview-card-icon {
    width: 2rem;
    height: 2rem;
    background: hsla(199, 89%, 48%, 0.1);
    border-radius: 0.5rem;
    margin-bottom: 0.5rem;
}

.preview-cta-row {
    display: flex;
    gap: 0.5rem;
}

.preview-cta-main {
    flex: 1;
    height: 2.5rem;
    background: var(--primary);
    border-radius: 0.5rem;
}

.preview-cta-secondary {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--success);
    border-radius: 0.5rem;
}

/* Floating badges */
.floating-badge {
    position: absolute;
    padding: 0.5rem 1rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 0.875rem;
    animation: float 3s ease-in-out infinite;
}

.floating-badge-accent {
    top: -1rem;
    right: -1rem;
    background: var(--cta-gradient);
    color: white;
    box-shadow: var(--shadow-cta);
}

.floating-badge-success {
    bottom: -1rem;
    left: -1rem;
    background: var(--card);
    box-shadow: var(--shadow-card);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.floating-badge-success svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--success);
}

/* ========================================
   Industries Section
======================================== */
.industries-grid {
    display: grid;
    gap: 1rem;
    max-width: 72rem;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .industries-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.industry-card {
    width: 100%;
    padding: 1.25rem;
    background: var(--card);
    border-radius: 1rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-card);
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px hsla(222, 47%, 11%, 0.12);
}

.industry-card.active {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px var(--primary);
}

.industry-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.industry-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background: hsla(199, 89%, 48%, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.industry-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary);
}

.industry-chevron {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--muted-foreground);
    transition: transform 0.3s;
}

.industry-card.active .industry-chevron {
    transform: rotate(180deg);
}

.industry-card h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.industry-tagline {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.industry-professions {
    display: none;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.industry-card.active .industry-professions {
    display: block;
}

.professions-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.profession-tag {
    padding: 0.25rem 0.5rem;
    background: var(--secondary);
    border-radius: 0.375rem;
    font-size: 0.75rem;
}

.industries-cta {
    margin-top: 4rem;
    text-align: center;
}

.industries-cta p {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
}

.industries-cta strong {
    color: var(--foreground);
}

/* ========================================
   Website Breakdown Section
======================================== */
.breakdown-grid {
    display: grid;
    gap: 1.5rem;
    max-width: 64rem;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .breakdown-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .breakdown-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.breakdown-card {
    padding: 1.5rem;
    background: var(--card);
    border-radius: 1rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
}

.breakdown-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px hsla(222, 47%, 11%, 0.12);
}

.breakdown-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: transform 0.3s;
}

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

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

.breakdown-icon-primary {
    background: hsla(199, 89%, 48%, 0.1);
    color: var(--primary);
}

.breakdown-icon-accent {
    background: hsla(32, 95%, 54%, 0.1);
    color: var(--accent);
}

.breakdown-icon-success {
    background: hsla(142, 76%, 36%, 0.1);
    color: var(--success);
}

.breakdown-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

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

/* ========================================
   How It Works Section
======================================== */
.steps-grid {
    display: grid;
    gap: 2rem;
    max-width: 64rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.step-wrapper {
    position: relative;
}

.step-connector {
    display: none;
    position: absolute;
    top: 3rem;
    left: 60%;
    width: 80%;
    height: 2px;
    background: linear-gradient(to right, hsla(199, 89%, 48%, 0.5), hsla(199, 89%, 48%, 0.1));
}

@media (min-width: 768px) {
    .step-wrapper:not(:last-child) .step-connector {
        display: block;
    }
}

.step-card {
    position: relative;
    padding: 2rem;
    background: var(--card);
    border-radius: 1.5rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px hsla(222, 47%, 11%, 0.12);
}

.step-number {
    position: absolute;
    top: -1rem;
    right: -0.5rem;
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background: var(--cta-gradient);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
    box-shadow: var(--shadow-cta);
}

.step-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    background: hsla(199, 89%, 48%, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.step-icon svg {
    width: 2rem;
    height: 2rem;
    color: var(--primary);
}

.step-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.step-card p {
    color: var(--muted-foreground);
}

.delivery-badge {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
}

.delivery-badge-inner {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    border-radius: 1rem;
    background: hsla(142, 76%, 36%, 0.1);
    border: 1px solid hsla(142, 76%, 36%, 0.2);
}

.delivery-badge-inner svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--success);
}

.delivery-badge-inner span {
    font-weight: 600;
}

.delivery-badge-inner .highlight {
    color: var(--success);
}

/* ========================================
   Testimonials Section
======================================== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 56rem;
    margin: 0 auto 4rem;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

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

.stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

@media (min-width: 640px) {
    .stat-number {
        font-size: 2.25rem;
    }
}

.stat-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.testimonials-grid {
    display: grid;
    gap: 1.5rem;
    max-width: 64rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    padding: 1.5rem;
    background: var(--card);
    border-radius: 1rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px hsla(222, 47%, 11%, 0.12);
}

.testimonial-quote-icon {
    width: 2rem;
    height: 2rem;
    color: hsla(199, 89%, 48%, 0.2);
    margin-bottom: 1rem;
}

.testimonial-text {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonial-stars svg {
    width: 1rem;
    height: 1rem;
    fill: var(--accent);
    color: var(--accent);
}

.testimonial-author {
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.testimonial-name {
    font-weight: 600;
}

.testimonial-role {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* ========================================
   Pricing Section
======================================== */
.pricing-card-wrapper {
    max-width: 32rem;
    margin: 0 auto;
}

.pricing-card {
    position: relative;
    padding: 2rem;
    background: var(--card);
    border-radius: 1.5rem;
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-soft);
}

.pricing-badge {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    background: var(--cta-gradient);
    color: white;
    font-weight: 700;
    font-size: 0.875rem;
    box-shadow: var(--shadow-cta);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing-badge svg {
    width: 1rem;
    height: 1rem;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-top: 1rem;
}

.pricing-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 0.5rem;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.pricing-currency {
    font-size: 1.5rem;
    color: var(--muted-foreground);
}

.pricing-amount {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.75rem;
    font-weight: 700;
}

.pricing-note {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-top: 0.5rem;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pricing-feature-icon {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background: hsla(142, 76%, 36%, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pricing-feature-icon svg {
    width: 1rem;
    height: 1rem;
    color: var(--success);
}

.pricing-cta {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* ========================================
   FAQ Section
======================================== */
.faq-list {
    max-width: 42rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--card);
    border-radius: 1rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.faq-item.active {
    box-shadow: 0 8px 30px hsla(222, 47%, 11%, 0.12);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: var(--foreground);
}

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

.faq-chevron {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--muted-foreground);
    transition: transform 0.3s;
    flex-shrink: 0;
}

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

.faq-answer {
    display: none;
    padding: 0 1.5rem 1.25rem;
    color: var(--muted-foreground);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    display: block;
}

/* ========================================
   Final CTA Section
======================================== */
.final-cta {
    position: relative;
    overflow: hidden;
}

.final-cta-bg {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background: var(--hero-gradient);
}

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

.final-cta-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}

.final-cta-circle-1 {
    top: 0;
    left: 0;
    width: 18rem;
    height: 18rem;
    background: hsla(199, 89%, 48%, 0.1);
}

.final-cta-circle-2 {
    bottom: 0;
    right: 0;
    width: 24rem;
    height: 24rem;
    background: hsla(32, 95%, 54%, 0.1);
}

.final-cta-content {
    position: relative;
    z-index: 10;
    max-width: 56rem;
    margin: 0 auto;
    text-align: center;
}

.final-cta h2 {
    font-size: 1.875rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .final-cta h2 {
        font-size: 2.25rem;
    }
}

@media (min-width: 768px) {
    .final-cta h2 {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .final-cta h2 {
        font-size: 3.75rem;
    }
}

.final-cta-subtitle {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    max-width: 42rem;
    margin: 0 auto 2.5rem;
}

@media (min-width: 640px) {
    .final-cta-subtitle {
        font-size: 1.25rem;
    }
}

.final-cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

@media (min-width: 640px) {
    .final-cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    color: var(--muted-foreground);
}

@media (min-width: 640px) {
    .contact-info {
        flex-direction: row;
        justify-content: center;
    }
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-info-item svg {
    width: 1.25rem;
    height: 1.25rem;
}

.contact-info-item svg.icon-primary {
    color: var(--primary);
}

.contact-info-item svg.icon-success {
    color: var(--success);
}

/* ========================================
   Footer
======================================== */
.site-footer {
    background: var(--foreground);
    color: var(--primary-foreground);
    padding: 3rem 0;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .footer-inner {
        flex-direction: row;
        justify-content: space-between;
    }
}

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

.footer-logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    background: var(--hero-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.25rem;
    font-family: 'Space Grotesk', sans-serif;
}

.footer-logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    font-size: 0.875rem;
    opacity: 0.8;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-copyright {
    font-size: 0.875rem;
    opacity: 0.6;
}

/* ========================================
   Animations
======================================== */
@keyframes fade-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scale-in {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse-soft {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

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

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

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

.animate-fade-in {
    animation: fade-in 0.5s ease-out forwards;
}

.animate-scale-in {
    animation: scale-in 0.4s ease-out forwards;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

/* Animation delays */
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }

/* Hidden initially for scroll animations */
.animate-on-scroll {
    opacity: 0;
}

.animate-on-scroll.visible {
    animation: fade-up 0.6s ease-out forwards;
}

/* ========================================
   Lead Capture Modal
======================================== */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal-overlay.active {
    display: flex;
    animation: fade-in 0.2s ease-out;
}

.modal-content {
    position: relative;
    width: 100%;
    max-width: 28rem;
    max-height: 90vh;
    overflow-y: auto;
    background: var(--card);
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: scale-in 0.2s ease-out;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--muted-foreground);
    border-radius: 0.375rem;
    transition: all 0.2s;
}

.modal-close:hover {
    background: var(--secondary);
    color: var(--foreground);
}

.modal-header {
    padding: 1.5rem 1.5rem 0;
}

.modal-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
}

.modal-title-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    background: var(--hero-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.modal-title-icon svg {
    width: 1.25rem;
    height: 1.25rem;
}

.modal-body {
    padding: 1.5rem;
}

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

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--foreground);
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--background);
    color: var(--foreground);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px hsla(199, 89%, 48%, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--muted-foreground);
}

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1rem;
    padding-right: 2.5rem;
}

.form-select:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-textarea {
    resize: none;
    min-height: 5rem;
}

.btn-submit {
    width: 100%;
    margin-top: 0.5rem;
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-note {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    text-align: center;
    margin-top: 0.75rem;
}

/* ========================================
   Utility Classes
======================================== */
.text-center { text-align: center; }
.hidden { display: none; }

@media (min-width: 1024px) {
    .lg\:block { display: block; }
    .lg\:hidden { display: none; }
}
