/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-tertiary: #1a1a1a;
    --bg-card: #161616;
    --accent: #00bcd4;
    --accent-hover: #00a5bb;
    --accent-glow: rgba(0, 188, 212, 0.15);
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --text-muted: #666666;
    --border-color: #2a2a2a;
    --border-light: #333333;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    background-color: var(--bg-primary);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    padding: 16px 0;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.logo {
    z-index: 1001;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-img {
    display: block;
    height: 36px;
    width: auto;
}

.logo:hover .logo-img,
.footer-logo:hover .logo-img {
    opacity: 0.85;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    position: relative;
    width: 24px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-line {
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
    position: absolute;
}

.hamburger-line:nth-child(1) {
    top: 0;
}

.hamburger-line:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger-line:nth-child(3) {
    bottom: 0;
}

.hamburger.active .hamburger-line:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

.nav {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--text-primary);
}

.header-cta {
    margin-left: 20px;
}

/* Buttons */
.btn {
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s;
    display: inline-block;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--bg-primary);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    box-shadow: 0 4px 20px var(--accent-glow);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-light);
}

.btn-secondary:hover {
    background-color: var(--bg-tertiary);
    border-color: var(--text-secondary);
}

.btn-outline {
    background-color: transparent;
    color: var(--accent);
    border: 1px solid var(--accent);
}

.btn-outline:hover {
    background-color: var(--accent);
    color: var(--bg-primary);
}

/* Hero Section */
.hero {
    padding: 140px 0 120px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse 80% 50% at 50% -20%, var(--accent-glow), transparent);
    pointer-events: none;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background-color: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.hero-badge-flag {
    flex-shrink: 0;
    border-radius: 2px;
}

.hero-title {
    font-size: 64px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -2px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent) 0%, #4dd0e1 50%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-features {
    display: flex;
    gap: 40px;
    justify-content: center;
    margin-top: 60px;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-secondary);
}

.hero-feature-icon {
    color: var(--accent);
}

.social-links {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: none;
    background: none;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.social-link svg {
    width: 22px;
    height: 22px;
    display: block;
}

.social-link--instagram svg {
    width: 19px;
    height: 19px;
}

/* X and Threads glyphs sit smaller in the viewBox than the Instagram mark */
.social-link--x svg,
.social-link--threads svg {
    width: 32px;
    height: 32px;
}

.social-link:hover {
    color: var(--accent);
}

.social-link:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 4px;
}

.social-links--hero {
    margin-top: 18px;
    justify-content: center;
}

.social-links--footer {
    margin-top: 14px;
}

/* Section Styles */
.section {
    padding: 120px 0;
}

.products-grid-section {
    padding: 24px 0 80px 0;
}

.section-dark {
    background-color: var(--bg-secondary);
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px auto;
    line-height: 1.6;
}

/* Services Section (flex centers incomplete last row, e.g. 5 cards) */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.service-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 40px;
    transition: all 0.3s ease;
    flex: 0 1 340px;
    max-width: 100%;
    box-sizing: border-box;
}

.service-card:hover {
    border-color: var(--border-light);
    transform: translateY(-4px);
}

.service-icon {
    width: 48px;
    height: 48px;
    background-color: var(--accent-glow);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--accent);
}

.service-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.service-description {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Tech Stack Tags */
.tech-stack {
    text-align: center;
    margin-top: 60px;
}

.tech-stack-label {
    font-size: 14px;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.tech-stack-intro {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.65;
    max-width: 640px;
    margin: 0 auto;
}

.tech-stack-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.tech-tag {
    padding: 8px 18px;
    font-size: 14px;
    color: var(--text-secondary);
    background-color: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.tech-tag:hover {
    color: var(--accent);
    border-color: var(--accent);
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text h3 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.about-text p {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-visual {
    position: relative;
}

.about-image {
    width: 100%;
    height: auto;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    display: block;
}

.swiss-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background-color: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px;
    color: var(--text-secondary);
}

.swiss-badge svg {
    width: 20px;
    height: 20px;
}

/* Process Section */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.process-step {
    text-align: center;
    padding: 40px 24px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    position: relative;
}

.process-number {
    width: 48px;
    height: 48px;
    background-color: var(--accent);
    color: var(--bg-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    margin: 0 auto 20px auto;
}

.process-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.process-description {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* CTA Section */
/* AI Section */
.ai-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.ai-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    background-color: var(--accent-glow);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

.ai-description {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

.cta-section {
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse 80% 50% at 50% 120%, var(--accent-glow), transparent);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.cta-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-email {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background-color: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--accent);
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    margin-top: 20px;
    cursor: pointer;
    font-family: inherit;
}

.cta-email:hover {
    border-color: var(--accent);
    background-color: var(--accent-glow);
}

.cta-email.copied {
    border-color: #4caf50;
    color: #4caf50;
}

/* Contact Form */
.contact-form {
    max-width: 560px;
    margin: 0 auto 30px auto;
    text-align: left;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 16px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    font-family: inherit;
    color: var(--text-primary);
    background-color: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none;
}

.form-input::placeholder {
    color: var(--text-muted);
}

.form-input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-range {
    --range-fill: 50%;
    width: 100%;
    height: 6px;
    margin: 12px 0 4px 0;
    -webkit-appearance: none;
    appearance: none;
    background: linear-gradient(to right, var(--accent) 0%, var(--accent) var(--range-fill), var(--bg-tertiary) var(--range-fill), var(--bg-tertiary) 100%);
    border-radius: 3px;
    outline: none;
}

.form-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent);
    cursor: pointer;
    border: 2px solid var(--accent);
    box-shadow: 0 0 0 2px var(--bg-tertiary);
}

.form-range::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent);
    cursor: pointer;
    border: 2px solid var(--accent);
}

.budget-display {
    display: block;
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 4px;
}

.form-submit {
    width: 100%;
    margin-top: 8px;
    font-size: 16px;
    padding: 14px 28px;
}

@media (max-width: 480px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Footer */
.footer {
    background-color: var(--bg-secondary);
    padding: 60px 0 30px 0;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    text-decoration: none;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
}

.footer-tagline {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.footer-links {
    display: flex;
    gap: 60px;
}

.footer-column h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-column a {
    display: block;
    font-size: 14px;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: var(--text-primary);
}

.footer-column--nav {
    min-width: 0;
}

.footer-nav-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 40px;
    align-items: start;
}

.footer-info {
    display: block;
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.footer-copyright {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
}

/* Products Page */
.products-hero {
    padding: 140px 0 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.products-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse 80% 50% at 50% -20%, var(--accent-glow), transparent);
    pointer-events: none;
}

.products-hero-title {
    font-size: 56px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: -1.5px;
    position: relative;
    z-index: 2;
}

.products-hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.product-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    border-color: var(--border-light);
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.product-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background-color: var(--bg-tertiary);
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-card-image img {
    transform: scale(1.04);
}

.product-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.product-card-body {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-card-badge {
    display: inline-block;
    width: fit-content;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 50px;
    background-color: var(--accent);
    color: var(--bg-primary);
    margin-bottom: 14px;
}

.product-card-badge--soon {
    background-color: transparent;
    border: 1px solid var(--border-light);
    color: var(--text-secondary);
}

.product-card-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.product-card-description {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.product-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    transition: gap 0.3s ease;
}

.product-card:hover .product-card-link {
    gap: 10px;
}

.products-cta {
    text-align: center;
    max-width: 520px;
    margin: 0 auto;
}

.products-cta-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.products-cta-subtitle {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 32px;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .services-grid .service-card {
        flex: 0 1 calc(50% - 12px);
        max-width: calc(50% - 12px);
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 69px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 69px);
        background-color: var(--bg-secondary);
        flex-direction: column;
        align-items: flex-start;
        padding: 30px;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
        transition: right 0.3s ease;
        gap: 0;
        z-index: 1000;
    }
    
    .nav.active {
        right: 0;
    }
    
    .nav-link {
        width: 100%;
        padding: 16px 0;
        border-bottom: 1px solid var(--border-color);
        font-size: 18px;
        color: var(--text-primary);
    }
    
    .header-cta {
        display: none;
    }
    
    body.menu-open {
        overflow: hidden;
    }
    
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.7);
        z-index: 999;
    }
    
    .hero {
        padding: 80px 0 60px 0;
    }
    
    .hero-title {
        font-size: 40px;
        letter-spacing: -1px;
    }
    
    .hero-subtitle {
        font-size: 17px;
    }
    
    .hero-features {
        gap: 20px;
    }

    .social-links--hero {
        margin-top: 16px;
    }
    
    .section {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .services-grid .service-card {
        flex: 1 1 100%;
        max-width: 100%;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .products-hero {
        padding: 100px 0 40px 0;
    }
    
    .products-hero-title {
        font-size: 36px;
    }
    
    .products-cta-title {
        font-size: 28px;
    }
    
    .cta-title {
        font-size: 32px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 30px;
    }

    .footer-nav-columns {
        grid-template-columns: 1fr 1fr;
        gap: 0 28px;
    }

    .social-links--footer {
        margin-top: 12px;
    }
}

@media (max-width: 480px) {
    .footer-nav-columns {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .service-card {
        padding: 30px;
    }
    
    .cta-email {
        font-size: 16px;
        padding: 14px 24px;
    }
}

/* Lead magnet — AI Traffic Roadmap */
.lead-magnet-hero {
    padding: 56px 0 0px;
    background: radial-gradient(ellipse 80% 60% at 50% -20%, var(--accent-glow), transparent);
}

.lead-magnet-hero .container {
    max-width: 880px;
}

.lead-magnet-kicker {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}

.lead-magnet-title {
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 8px;
}

.lead-magnet-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.lead-magnet-lead {
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.65;
}

.lead-magnet-bullets {
    padding-left: 1.2em;
    color: var(--text-primary);
    line-height: 1.7;
}

.lead-magnet-bullets li {
    margin-bottom: 10px;
}

.lead-magnet-cta-section {
    padding-top: 48px;
    padding-bottom: 72px;
}

.lead-magnet-panel {
    max-width: 560px;
    margin: 0 auto;
    padding: 32px 28px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    animation: lead-magnet-panel-glow 3.2s ease-in-out infinite;
}

@keyframes lead-magnet-panel-glow {
    0%,
    100% {
        border-color: var(--border-color);
        box-shadow:
            0 0 0 0 rgba(0, 188, 212, 0.08),
            0 0 18px rgba(0, 188, 212, 0.06),
            0 0 36px rgba(0, 188, 212, 0.03);
    }
    50% {
        border-color: rgba(0, 188, 212, 0.55);
        box-shadow:
            0 0 0 1px rgba(0, 188, 212, 0.25),
            0 0 22px rgba(0, 188, 212, 0.38),
            0 0 48px rgba(0, 188, 212, 0.2),
            0 0 72px rgba(0, 188, 212, 0.08);
    }
}

@media (prefers-reduced-motion: reduce) {
    .lead-magnet-panel {
        animation: none;
        border-color: rgba(0, 188, 212, 0.35);
        box-shadow: 0 0 24px rgba(0, 188, 212, 0.12);
    }
}

.lead-magnet-panel-title {
    font-size: 22px;
    margin-bottom: 12px;
}

.lead-magnet-panel--unlocked {
    text-align: center;
}

.lead-magnet-panel--unlocked .lead-magnet-panel-title {
    margin-bottom: 16px;
    text-align: center;
}

.lead-magnet-panel-desc {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
}

.lead-magnet-form .form-submit {
    margin-top: 4px;
}

.lead-magnet-form .form-submit.btn-primary {
    background-color: #dc2626;
    color: #ffffff;
}

.lead-magnet-form .form-submit.btn-primary:hover:not(:disabled) {
    background-color: #b91c1c;
    box-shadow: 0 4px 22px rgba(220, 38, 38, 0.4);
}

.lead-magnet-form .form-submit.btn-primary:focus-visible {
    outline: 2px solid #f87171;
    outline-offset: 2px;
}

.lead-magnet-form .form-submit.btn-primary:disabled {
    background-color: #7f1d1d;
    opacity: 0.85;
    cursor: not-allowed;
    box-shadow: none;
}

/* Stand out from the card: clearer “fill this in” field */
.lead-magnet-form .form-group .form-label {
    font-weight: 600;
    color: var(--text-primary);
}

.lead-magnet-form .form-input {
    background-color: #454545;
    border: 1px solid #5e5e5e;
    padding: 14px 16px;
    font-size: 16px;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.22), 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.lead-magnet-form .form-input::placeholder {
    color: #a3a3a3;
}

.lead-magnet-form .form-input:hover {
    border-color: #6e6e6e;
    background-color: #4c4c4c;
}

.lead-magnet-form .form-input:focus {
    background-color: #525252;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow), inset 0 1px 2px rgba(0, 0, 0, 0.18);
}

.lead-magnet-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.lead-magnet-form-error {
    color: #f48fb1;
    font-size: 14px;
    margin: -8px 0 12px;
}

.lead-magnet-success {
    text-align: center;
}

.lead-magnet-success-msg {
    font-size: 17px;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.lead-magnet-download {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.lead-magnet-preview {
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    background: var(--bg-tertiary);
}

.lead-magnet-preview img {
    display: block;
    width: 100%;
    height: auto;
    vertical-align: middle;
}

.lead-magnet-disclaimer {
    margin-top: 24px;
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
}

.lead-magnet-disclaimer a {
    color: inherit;
    text-decoration: underline;
    text-decoration-color: rgba(160, 160, 160, 0.35);
    text-underline-offset: 2px;
}

.lead-magnet-disclaimer a:hover {
    color: var(--text-secondary);
    text-decoration-color: rgba(160, 160, 160, 0.55);
}

/* Legal / privacy */
.legal-hero {
    padding: 48px 0 24px;
    border-bottom: 1px solid var(--border-color);
}

.legal-hero-title {
    font-size: clamp(28px, 4vw, 36px);
    margin-bottom: 8px;
}

.legal-hero-updated {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.legal-hero-intro {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.65;
}

.legal-body {
    padding-top: 32px;
    padding-bottom: 72px;
}

.legal-container {
    max-width: 800px;
}

.legal-container h2 {
    font-size: 20px;
    margin-top: 32px;
    margin-bottom: 12px;
}

.legal-container h2:first-of-type {
    margin-top: 0;
}

.legal-container p,
.legal-container li {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 12px;
}

.legal-container a {
    color: var(--accent);
    text-decoration: none;
}

.legal-container a:hover {
    text-decoration: underline;
}

.legal-list {
    margin: 0 0 16px 1.2em;
    padding: 0;
}

.legal-list li {
    margin-bottom: 8px;
}
