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

:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --secondary: #ec4899;
    --secondary-light: #f472b6;
    --accent: #06b6d4;
    --success: #10b981;
    --text: #0f172a;
    --text-light: #64748b;
    --text-lighter: #94a3b8;
    --bg: #ffffff;
    --bg-gray: #f8fafc;
    --bg-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --bg-gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --bg-gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --border: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    --glow1: rgba(99, 102, 241, 0.35);
    --glow2: rgba(236, 72, 153, 0.15);
}

[data-theme='dark'] {
    --text: #e5e7eb;
    --text-light: #cbd5e1;
    --text-lighter: #94a3b8;
    --bg: #0b1220;
    --bg-gray: #0f172a;
    --border: rgba(255, 255, 255, 0.12);
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.5);
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.6), 0 2px 4px -2px rgb(0 0 0 / 0.6);
    --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.7), 0 8px 10px -6px rgb(0 0 0 / 0.7);
    --shadow-xl: 0 25px 50px -12px rgb(0 0 0 / 0.8);
}

/* (accent variant removed) */

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

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

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

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

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

/* Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.theme-toggle {
    margin-left: 1rem;
    background: transparent;
    border: 2px solid var(--border);
    color: var(--text);
    padding: 0.45rem 0.7rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.theme-toggle:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: transform 0.3s ease;
}

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

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

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    transition: color 0.3s;
}

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

.cta-button {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white !important;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Hero */
.hero {
    background: linear-gradient(135deg, #262a40 0%, #1a1f35 50%, #262a40 100%);
    color: #ffffff;
    padding: 7rem 0;
    text-align: center;
    position: relative;
    overflow: visible;
}
/* Hero layout */
.hero-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 2.5rem; align-items: center; }
.hero-copy { text-align: left; }
.hero-ctas { display: flex; gap: 0.75rem; margin: 1rem 0 0.5rem; flex-wrap: wrap; }
.hero-ctas .secondary { background: transparent; border: 2px solid rgba(255,255,255,0.25); box-shadow: none; }
.hero-ctas .secondary:hover { background: rgba(255,255,255,0.06); }
.hero-visual { position: relative; }
.ui-card {
    background:
      linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03)) padding-box,
      linear-gradient(135deg, var(--primary), var(--secondary)) border-box;
    border: 1px solid transparent;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.45);
    overflow: hidden;
    text-align: left;
}
.ui-header { display: flex; align-items: center; gap: 8px; padding: 10px 12px; border-bottom: 1px solid rgba(255,255,255,0.12); background: rgba(0,0,0,0.2); }
.ui-header .dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.35); }
.ui-header .ui-title { margin-left: auto; font-size: 0.85rem; color: rgba(255,255,255,0.75); }
.ui-code { margin: 0; padding: 16px 18px; color: #e5e7eb; text-align: left; }
.ui-code code { font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; font-size: 0.9rem; line-height: 1.5; white-space: pre-wrap; }

[data-theme='dark'] .navbar {
    background: rgba(15, 23, 42, 0.8);
}

[data-theme='dark'] .slogan,
[data-theme='dark'] .service-card,
[data-theme='dark'] .testimonial,
[data-theme='dark'] .problem-card,
[data-theme='dark'] .price-card,
[data-theme='dark'] .notification {
    background: rgba(255, 255, 255, 0.03);
}

[data-theme='dark'] .cta-button,
[data-theme='dark'] .hero-cta,
[data-theme='dark'] .submit-button {
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      repeating-linear-gradient(0deg, rgba(255,255,255,0.06) 0 1px, transparent 1px 32px),
      repeating-linear-gradient(90deg, rgba(255,255,255,0.06) 0 1px, transparent 1px 32px);
    opacity: 0.25;
    transform: translateZ(0);
}

.hero::after {
    content: '';
    position: absolute;
    top: -20%; left: -10%;
    width: 60vw; height: 60vw;
    background: radial-gradient(closest-side, var(--glow1), var(--glow2), transparent 65%);
    filter: blur(30px);
    z-index: 0;
}

/* Slogans */
.slogans {
    padding: 3rem 0;
    background: var(--bg);
    position: relative;
}

[data-theme='dark'] .slogans {
    background: rgba(255, 255, 255, 0.03);
}

.slogans::before { content: none; display: none; }

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

.slogan {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(99, 102, 241, 0.1);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.slogan:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(99, 102, 241, 0.3);
}

.slogan-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.slogan p {
    font-size: 1rem;
    color: var(--text);
    line-height: 1.4;
    font-weight: 500;
}

.hero h1 {
    font-size: 3.25rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    font-weight: 800;
    position: relative;
    z-index: 1;
    text-shadow: none;
    animation: fadeInUp 0.8s ease-out;
}

.tagline {
    font-size: 1.75rem;
    line-height: 1.3;
    letter-spacing: -0.01em;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
}

.subtitle {
    font-size: 1.25rem;
    line-height: 1.5;
    opacity: 0.95;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1.2s ease-out;
}

.hero-cta {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #ffffff;
    padding: 1.25rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    box-shadow: 0 15px 40px rgba(99,102,241,0.35);
    animation: fadeInUp 1.4s ease-out;
}

.hero-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 18px 50px rgba(236,72,153,0.35);
}

/* Badges under hero */
.badges {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.7rem;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.95);
    background: rgba(255,255,255,0.06);
    font-size: 0.9rem;
    backdrop-filter: blur(8px);
}

.icon { width: 16px; height: 16px; display: inline-block; }

[data-theme='dark'] .hero { background: linear-gradient(135deg, #0b1220 0%, #0f172a 100%); }
[data-theme='dark'] .ui-card { background: linear-gradient(180deg, rgba(99,102,241,0.06), rgba(236,72,153,0.04)) padding-box, linear-gradient(135deg, var(--primary), var(--secondary)) border-box; }

/* Problem Section */
.problem {
    padding: 5rem 0;
    background: var(--bg-gray);
}

.problem h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 800;
    color: var(--text);
}

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

.problem-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.problem-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.problem-card .icon {
    font-size: 3rem;
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    margin: 0 auto 1rem;
    line-height: 1;
    animation: float 3s ease-in-out infinite;
}

.problem-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* Services */
.services {
    padding: 5rem 0;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 800;
    color: var(--text);
}

/* Logos strip */
/* (removed Trusted by strip for now) */

/* Results (Before/After) */
.results {
    padding: 5rem 0;
    background: var(--bg);
}

.results h2 {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 0.75rem;
}

.results-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2rem;
}

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

.code-card {
    position: relative;
    border-radius: 16px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.code {
    display: block;
    padding: 1.25rem 1.5rem 2.25rem;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 0.9rem;
    line-height: 1.5;
    white-space: pre-wrap;
}

.code.before { background: #0b1220; color: #fca5a5; }
.code.after { background: #0b1220; color: #a7f3d0; }

.code-label {
    position: absolute;
    bottom: 10px;
    left: 12px;
    background: rgba(255,255,255,0.9);
    color: #111827;
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
}

[data-theme='dark'] .code-label {
    background: rgba(255,255,255,0.08);
    color: #e5e7eb;
}

.code-label-after {
    left: auto;
    right: 12px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

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

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid var(--border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(236, 72, 153, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

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

.service-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text);
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.service-card ul {
    margin-top: 1.5rem;
    list-style: none;
}

.service-card ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    z-index: 1;
}

.service-card ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
    font-size: 1.1rem;
}

/* Process */
.process {
    padding: 5rem 0;
    background: var(--bg-gray);
}

.process h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 800;
    color: var(--text);
}

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

.step {
    text-align: center;
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: bold;
    margin: 0 auto 1rem;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.step:hover .step-number {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-xl);
}

.step h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: var(--text);
}

/* Testimonials */
.testimonials {
    padding: 5rem 0;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 800;
    color: var(--text);
}

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

.testimonial {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    border-left: 5px solid transparent;
    border-image: linear-gradient(135deg, var(--primary), var(--secondary)) 1;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.author {
    color: var(--text-light);
    font-weight: 500;
}

/* Pricing */
.pricing {
    padding: 5rem 0;
    background: var(--bg-gray);
}

.pricing h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
    color: var(--text);
}

.pricing-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.25rem;
    margin-bottom: 3rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.price-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
    border: 2px solid var(--border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.price-card.featured {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(236, 72, 153, 0.05) 100%);
    border: 3px solid var(--primary);
    transform: scale(1.05);
    position: relative;
    overflow: hidden;
}

.price-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.price-card.featured::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: conic-gradient(from 0deg, var(--primary), var(--secondary), var(--accent), var(--primary));
    filter: blur(18px);
    opacity: 0.18;
    z-index: 0;
}

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

.price-card .badge {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 700;
    box-shadow: var(--shadow);
    animation: float 3s ease-in-out infinite;
}

.price-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--text);
}

.price { display: inline-flex; align-items: baseline; gap: 0.5rem; line-height: 1; margin-bottom: 0.5rem; }
.price .amount {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.price .period { font-size: 0.95rem; color: var(--text-light); font-weight: 600; }

.price-card > p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.price-card ul {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.price-card ul li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
}

.price-button {
    display: block;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.price-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Contact */
.contact {
    padding: 5rem 0;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
    color: var(--text);
}

.contact > .container > p {
    text-align: center;
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 1rem;
    border: 2px solid var(--border);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
    transform: translateY(-2px);
}

.submit-button {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 1.25rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.submit-button:active {
    transform: translateY(-1px);
}

/* Dark mode – form softness */
[data-theme='dark'] .contact-form input,
[data-theme='dark'] .contact-form select,
[data-theme='dark'] .contact-form textarea {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.18);
    color: var(--text);
}

[data-theme='dark'] .contact-form input::placeholder,
[data-theme='dark'] .contact-form textarea::placeholder {
    color: var(--text-light);
}

[data-theme='dark'] .contact-form input:focus,
[data-theme='dark'] .contact-form select:focus,
[data-theme='dark'] .contact-form textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.25);
}

/* Notification */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    padding: 1.25rem 1.75rem;
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    z-index: 10000;
    transform: translateX(400px);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 400px;
    border-left: 4px solid var(--success);
}

.notification.show {
    transform: translateX(0);
}

.notification-success {
    border-left-color: var(--success);
}

.notification-info {
    border-left-color: var(--accent);
}

.notification-error {
    border-left-color: var(--secondary);
}

/* Footer */
footer {
    background: var(--bg);
    color: var(--text);
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid var(--border);
}

footer p {
    margin: 0.5rem 0;
    opacity: 0.8;
}

.footer-links {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.footer-links span {
    color: var(--text-light);
    opacity: 0.5;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    left: 0; right: 0; bottom: 16px;
    transform: translateY(140%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2000;
}

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

.sticky-cta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: var(--bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 0.75rem 1rem;
    box-shadow: var(--shadow);
}

[data-theme='dark'] .sticky-cta-row {
    background: rgba(15,23,42,0.7);
}

.sticky-cta-button {
    text-decoration: none;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 0.6rem 1rem;
    border-radius: 10px;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
    /* Typography */
    .hero h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .tagline {
        font-size: 1.1rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .hero { padding: 4rem 0; }
    .hero-grid { grid-template-columns: 1fr; }
    .hero-copy { text-align: center; }
    .hero-ctas { justify-content: center; }

    .hero-cta {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }

    /* Navigation */
    .navbar .container {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 15px;
    }

    .logo {
        font-size: 1.25rem;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
        text-align: center;
    }

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

    .nav-links a {
        display: block;
        padding: 0.5rem;
    }

    .cta-button {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
        display: inline-block;
        width: auto;
    }

    /* Section headings */
    .problem h2,
    .services h2,
    .process h2,
    .testimonials h2,
    .pricing h2,
    .contact h2 {
        font-size: 1.75rem;
    }

    /* Spacing */
    .problem,
    .services,
    .process,
    .testimonials,
    .pricing,
    .contact {
        padding: 3rem 0;
    }

    /* Cards */
    .problem-card,
    .service-card,
    .testimonial,
    .price-card {
        padding: 1.5rem;
    }

    /* Disable hover effects on mobile */
    .problem-card:hover,
    .service-card:hover,
    .testimonial:hover,
    .price-card:hover,
    .step:hover .step-number {
        transform: none;
    }

    /* Pricing */
    .price-card.featured {
        transform: scale(1);
    }

    .price-card.featured:hover {
        transform: translateY(-5px);
    }

    .pricing-grid {
        gap: 1.5rem;
    }

    /* Contact form */
    .contact-form {
        padding: 0 1rem;
    }

    .submit-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    /* Step numbers */
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    /* Slogans */
    .slogan-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .slogan {
        padding: 1rem;
    }

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

    .slogan p {
        font-size: 0.95rem;
    }

    /* Notification */
    .notification {
        right: 10px;
        left: 10px;
        max-width: none;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.75rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .subtitle {
        font-size: 0.9rem;
    }

    .nav-links {
        gap: 0.3rem;
        font-size: 0.85rem;
    }

    .container {
        padding: 0 15px;
    }

    .problem h2,
    .services h2,
    .process h2,
    .testimonials h2,
    .pricing h2,
    .contact h2 {
        font-size: 1.5rem;
    }

    .price {
        font-size: 2.5rem;
    }

    .price-card h3 {
        font-size: 1.5rem;
    }
}
.faq {
    padding: 5rem 0;
    background: var(--bg);
}

.faq h2 {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 2rem;
}

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

.faq-list details {
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--bg);
    padding: 0.75rem 1rem;
    box-shadow: var(--shadow-sm);
}

.faq-list summary {
    list-style: none;
    cursor: pointer;
    font-weight: 700;
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.faq-list summary::after {
    content: '+';
    color: var(--text-light);
    font-weight: 700;
}

.faq-list details[open] summary::after {
    content: '–';
}

.faq-list p {
    margin-top: 0.75rem;
    color: var(--text-light);
}
