/**
 * Pacific Coast Wellness - Main Site Styles
 * StemWave-inspired color scheme
 */

:root {
    /* === AUTHENTIC STEMWAVE BRAND COLORS === */
    --brand-primary: #00C9C5;       /* StemWave main teal */
    --brand-primary-hover: #0BDE9F; /* StemWave hover teal */
    --brand-secondary: #00b4d8;     /* Secondary blue */

    /* === STEMWAVE DARK BACKGROUNDS === */
    --bg-darkest: #050c1e;          /* StemWave main background */
    --bg-dark: #08101c;             /* StemWave section background */
    --bg-card: #09101b;             /* StemWave cards */
    --bg-panel: #0a1628;            /* Raised sections */

    /* === STEMWAVE TEXT COLORS === */
    --text-main: #ffffff;           /* Pure white headings */
    --text-light: #e5e7eb;          /* Light gray body text */
    --text-muted: #b6bbc7;          /* Blue-tinted muted */
    --text-accent: #00C9C5;         /* Brand teal accent */

    /* === BORDERS & SHADOWS === */
    --border-light: rgba(255, 255, 255, 0.15);  /* StemWave border */
    --border-muted: rgba(255, 255, 255, 0.08);  /* Subtle border */

    --shadow-soft: rgba(0, 0, 0, 0.25);
    --shadow-strong: rgba(0, 0, 0, 0.55);

    /* === ALERT COLORS === */
    --success: #22c55e;
    --warning: #f59e0b;
    --danger:  #ef4444;

    /* === AUTHENTIC STEMWAVE GRADIENTS === */
    --gradient-hero: radial-gradient(circle at top left, #103d43 3%, #050d1e 50%, #050c1e 100%);
    --gradient-accent: linear-gradient(270deg, #00C9C5, #0BDE9F);
    --gradient-card: linear-gradient(180deg, #09101b 0%, #050c1e 100%);
}

/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background: var(--bg-darkest);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    color: var(--text-accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--brand-primary);
}

/* === NAVIGATION === */
.navbar {
    background: var(--bg-dark);
    border-bottom: 1px solid var(--border-muted);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

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

.logo h2 {
    color: var(--text-main);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.logo .tagline {
    color: var(--text-accent);
    font-size: 0.875rem;
    font-weight: 400;
}

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

.nav-links a {
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

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

.admin-link {
    background: var(--gradient-accent);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    color: white !important;
}

.admin-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--shadow-soft);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-main);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* === HERO SECTION === */
.hero {
    background: var(--gradient-hero);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

/* Hero Video Background */
.hero-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, 
        rgba(16, 61, 67, 0.85) 3%, 
        rgba(5, 13, 30, 0.85) 50%, 
        rgba(5, 12, 30, 0.9) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(0, 201, 197, 0.12), transparent);
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.location-badge {
    display: inline-block;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    color: var(--text-accent);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.hero-subtext {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.image-placeholder {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px var(--shadow-strong);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-device-image,
.hero-device-video {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.hero-device-image:hover,
.hero-device-video:hover {
    transform: scale(1.08);
}

/* === BUTTONS === */
.btn {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: var(--gradient-accent);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(79, 70, 229, 0.4);
}

.btn-secondary {
    background: var(--bg-panel);
    color: var(--text-main);
    border-color: var(--border-light);
}

.btn-secondary:hover {
    background: var(--bg-card);
    border-color: var(--brand-primary);
}

.btn-outline {
    background: transparent;
    color: var(--text-accent);
    border-color: var(--border-light);
}

.btn-outline:hover {
    background: var(--bg-card);
    border-color: var(--brand-primary);
    color: var(--brand-primary);
}

/* === STATS GRID === */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px var(--shadow-soft);
    border-color: var(--brand-primary);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--brand-primary);
    margin-bottom: 0.5rem;
}

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

/* === SECTIONS === */
section {
    padding: 5rem 0;
}

.section-badge {
    display: inline-block;
    background: var(--bg-card);
    border: 1px solid var(--brand-primary);
    color: var(--text-accent);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 1rem;
    text-align: center;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -15px;
    width: 80px;
    height: 4px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -25px;
    width: 40px;
    height: 2px;
    background: var(--brand-primary);
    opacity: 0.5;
    border-radius: 2px;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-light);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

/* === TECHNOLOGY SECTION === */
.technology-section {
    background: var(--bg-dark);
}

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

.tech-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    overflow: hidden;
}

.tech-image-placeholder {
    position: relative;
    overflow: hidden;
    background: var(--bg-darkest);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.tech-device-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.tech-device-image:hover {
    transform: scale(1.05);
}

.tech-specs {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.spec-item {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}

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

.spec-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--brand-primary);
}

.tech-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 1.25rem;
    font-size: 1rem;
    color: var(--text-light);
}

.feature-icon {
    color: var(--success);
    font-size: 1.5rem;
    font-weight: bold;
}

/* === HOW IT WORKS === */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.step-card {
    background: var(--gradient-card);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 12px;
    padding: 2px;
    background: linear-gradient(135deg, var(--brand-primary), transparent);
    -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.4s ease;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 201, 197, 0.2);
}

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

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.step-card h3 {
    color: var(--text-main);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

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

.benefits-highlight {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
}

.benefits-highlight h3 {
    color: var(--text-main);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.benefits-highlight p {
    color: var(--text-light);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.benefit-tags {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.tag {
    background: var(--bg-panel);
    border: 1px solid var(--brand-primary);
    color: var(--text-accent);
    padding: 0.625rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* === WHO WE HELP === */
.who-we-help {
    background: var(--bg-dark);
}

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

.condition-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.condition-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0%;
    background: var(--gradient-accent);
    transition: height 0.3s ease;
    border-radius: 12px 0 0 12px;
}

.condition-card:hover::before {
    height: 100%;
}

.condition-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--brand-primary);
    box-shadow: 0 15px 45px rgba(0, 201, 197, 0.2);
}

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

.why-choose {
    margin-top: 4rem;
}

.why-choose h3 {
    color: var(--text-main);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

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

.why-card {
    background: var(--gradient-card);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 2rem;
}

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

.why-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* === PRICING === */
.pricing-section {
    background: var(--bg-darkest);
}

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

.pricing-card {
    background: var(--bg-card);
    border: 2px solid transparent;
    background-clip: padding-box;
    border-radius: 16px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 16px;
    padding: 2px;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    -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.4s ease;
    z-index: -1;
}

.pricing-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(0, 201, 197, 0.2);
}

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

.pricing-card.popular {
    border-color: var(--brand-primary);
    border-width: 2px;
    box-shadow: 0 12px 40px rgba(79, 70, 229, 0.3);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-accent);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
}

.pricing-header h3 {
    color: var(--text-main);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price {
    margin-bottom: 1.5rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--brand-primary);
}

.price-unit {
    color: var(--text-muted);
    font-size: 0.95rem;
    display: block;
}

.package-desc {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.package-features {
    list-style: none;
    margin-bottom: 2rem;
}

.package-features li {
    color: var(--text-light);
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-muted);
}

.package-features li::before {
    content: '✓';
    color: var(--success);
    font-weight: bold;
    margin-right: 0.75rem;
}

/* === CONTACT === */
.contact-section {
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(0, 201, 197, 0.05) 25%, 
        rgba(11, 222, 159, 0.05) 50%, 
        rgba(0, 201, 197, 0.05) 75%, 
        transparent 100%);
    animation: shimmer 8s linear infinite;
    pointer-events: none;
}

@keyframes shimmer {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(50%); }
}

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

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

.info-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.info-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 201, 197, 0.1), transparent);
    transition: left 0.5s ease;
}

.info-card:hover::after {
    left: 100%;
}

.info-card:hover {
    transform: translateX(5px);
    border-color: var(--brand-primary);
    box-shadow: -5px 0 20px rgba(0, 201, 197, 0.2);
}

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

.info-card p {
    color: var(--text-light);
    line-height: 1.8;
}

.info-card a {
    color: var(--text-accent);
}

.contact-form-container {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 2.5rem;
}

.contact-form-container h3 {
    color: var(--text-main);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.forms-intro {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.consent-forms-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.form-download-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-panel);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.form-download-card:hover {
    border-color: var(--brand-primary);
    background: var(--bg-card);
    transform: translateX(5px);
    box-shadow: -4px 0 12px rgba(0, 201, 197, 0.15);
}

.form-icon {
    font-size: 2rem;
    min-width: 50px;
    text-align: center;
}

.form-details {
    flex: 1;
}

.form-details h4 {
    color: var(--text-main);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.form-details p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.download-icon {
    font-size: 1.5rem;
    color: var(--brand-primary);
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.form-download-card:hover .download-icon {
    opacity: 1;
}

.forms-cta {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-light);
}

.forms-cta p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.forms-cta a:not(.btn) {
    color: var(--brand-primary);
    text-decoration: none;
}

.forms-cta a:not(.btn):hover {
    text-decoration: underline;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    background: var(--bg-panel);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    color: var(--text-main);
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.form-group textarea {
    resize: vertical;
}

/* === DECORATIVE ELEMENTS === */
.text-decoration {
    position: relative;
    display: inline-block;
}

.text-decoration::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.text-decoration:hover::after {
    transform: scaleX(1);
}

/* Pulse animation for CTAs */
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 201, 197, 0.4); }
    50% { box-shadow: 0 0 0 20px rgba(0, 201, 197, 0); }
}

.btn-primary {
    animation: pulse 2s infinite;
}

/* Floating decorative circles */
.who-we-help::before,
.pricing-section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 201, 197, 0.08) 0%, transparent 70%);
    pointer-events: none;
    top: 10%;
    right: 5%;
    animation: float 6s ease-in-out infinite;
}

.who-we-help::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(11, 222, 159, 0.06) 0%, transparent 70%);
    pointer-events: none;
    bottom: 15%;
    left: 8%;
    animation: float 8s ease-in-out infinite reverse;
}

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

/* Decorative section elements */
.section-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid var(--brand-primary);
    opacity: 0.1;
}

.circle-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    animation: rotate 20s linear infinite;
}

.circle-2 {
    width: 250px;
    height: 250px;
    bottom: -50px;
    left: 10%;
    animation: rotate 15s linear infinite reverse;
}

.decoration-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--brand-primary), transparent);
    opacity: 0.1;
}

.line-1 {
    width: 60%;
    top: 30%;
    right: 0;
    animation: slide 8s ease-in-out infinite;
}

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

@keyframes slide {
    0%, 100% { transform: translateX(0); opacity: 0.1; }
    50% { transform: translateX(-30%); opacity: 0.2; }
}

/* Animated grid background for contact section */
.grid-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(var(--border-light) 1px, transparent 1px),
        linear-gradient(90deg, var(--border-light) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
    animation: gridMove 20s linear infinite;
    pointer-events: none;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

/* === FOOTER === */
.footer {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darkest) 100%);
    border-top: 1px solid var(--border-muted);
    padding: 3rem 0 1.5rem;
    position: relative;
}

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

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    color: var(--text-main);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-light);
    font-size: 0.95rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-muted);
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* === RESPONSIVE === */
@media (max-width: 968px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
    }
    
    .stats-grid,
    .steps-grid,
    .conditions-grid,
    .why-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 3rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-ctas {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
}
