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

:root {
    --primary: #7c3aed;
    --primary-hover: #6d28d9;
    --primary-light: #f3f0ff;
    --primary-dark: #4c1d95;
    --bg: #fdfbff;
    --bg-card: #ffffff;
    --text: #1a1a2e;
    --text-muted: #6b7280;
    --border: #e5e7eb;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --radius: 0.75rem;
    --radius-sm: 0.5rem;
    --radius-lg: 1rem;
    --shadow: 0 1px 3px rgba(0, 0, 0, .1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, .1);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, .15);
}

html {
    font-size: 16px;
    scroll-behavior: smooth
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem
}

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

/* Header */
.header {
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    background: rgba(253, 251, 255, .95)
}

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

.logo {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none
}

.logo svg {
    stroke: var(--primary)
}

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

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

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary)
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text);
    padding: .5rem
}

@media (max-width:767px) {
    .mobile-menu-toggle {
        display: block
    }

    .nav-menu {
        position: fixed;
        top: 4rem;
        left: 0;
        right: 0;
        background: var(--bg-card);
        border-bottom: 1px solid var(--border);
        flex-direction: column;
        padding: 1.5rem;
        gap: 1rem;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all .3s
    }

    .nav-menu.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .75rem 1.5rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 2rem;
    transition: all .2s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    font-size: .9375rem;
    line-height: 1.5;
    letter-spacing: 0.01em
}

.btn svg {
    flex-shrink: 0
}

.btn-primary {
    background: var(--primary);
    color: #fff !important;
    box-shadow: 0 4px 6px -1px rgba(124, 58, 237, 0.2), 0 2px 4px -1px rgba(124, 58, 237, 0.1);
}

.btn-primary:hover {
    background: var(--primary-hover);
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(124, 58, 237, 0.3), 0 4px 6px -2px rgba(124, 58, 237, 0.15);
}

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

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

.btn-outline-light {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, .3);
    color: #fff;
}

.btn-outline-light:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, .1);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.0625rem
}

.btn-block {
    width: 100%
}

/* Section Labels */
.section-label {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--text-muted);
    background: var(--bg);
    padding: .5rem 1rem;
    border-radius: 2rem;
    border: 1px solid var(--border);
    margin-bottom: 1rem;
}

.section-label-primary {
    background: var(--primary-light);
    color: var(--primary);
    border-color: transparent;
}

/* Section Headers */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem
}

.section-header .section-title {
    margin-bottom: 1rem
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.7
}

/* Hero */
.hero {
    padding: 5rem 0 6rem;
    text-align: center;
    background: var(--primary-light);
    position: relative;
    overflow: hidden
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 2rem;
    padding: .5rem 1rem;
    font-size: .8125rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 2rem
}

.hero-badge svg {
    color: var(--success)
}

.hero-title {
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.15;
    letter-spacing: -.02em
}

.hero-title .highlight {
    color: var(--primary);
    display: block
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto 2.5rem;
    line-height: 1.6
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem
}

.hero-stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
    padding: 2rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border)
}

.hero-stat {
    text-align: center
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2
}

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

.hero-features {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: .5rem;
    color: var(--text-muted);
    font-size: .9375rem;
    font-weight: 500
}

.feature-badge svg {
    color: var(--success)
}

/* Trust Section */
.trust-section {
    padding: 2.5rem 0;
    text-align: center;
    border-bottom: 1px solid var(--border);
    background: var(--bg)
}

.trust-title {
    font-size: .8125rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-weight: 600
}

.trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    opacity: .6
}

.trust-logo {
    height: 32px;
    width: auto
}

.trust-logo svg {
    height: 32px;
    width: auto
}

/* Problem/Solution Section */
.problem-section {
    padding: 6rem 0
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start
}

@media (max-width:900px) {
    .problem-grid {
        grid-template-columns: 1fr;
        gap: 3rem
    }
}

.problem-content,
.solution-content {
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: var(--bg-card)
}

.problem-content {
    border-left: 4px solid var(--danger)
}

.solution-content {
    border-left: 4px solid var(--success);
    background: var(--primary-light)
}

.problem-content h2,
.solution-content h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem
}

.lead {
    font-size: 1.0625rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem
}

.problem-list,
.solution-list {
    list-style: none
}

.problem-list li,
.solution-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
    align-items: flex-start
}

.problem-list li:last-child,
.solution-list li:last-child {
    margin-bottom: 0
}

.problem-list svg {
    color: var(--danger);
    flex-shrink: 0;
    margin-top: .25rem
}

.solution-list svg {
    color: var(--success);
    flex-shrink: 0;
    margin-top: .25rem
}

.problem-list strong,
.solution-list strong {
    display: block;
    margin-bottom: .25rem
}

.problem-list span,
.solution-list span {
    color: var(--text-muted);
    font-size: .9375rem
}

/* Security Section */
.security-section {
    padding: 6rem 0;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border)
}

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

@media (max-width:900px) {
    .security-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width:600px) {
    .security-grid {
        grid-template-columns: 1fr
    }
}

.security-card {
    padding: 2rem;
    background: var(--bg);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: transform .2s, box-shadow .2s
}

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

.security-card-featured {
    grid-column: span 3;
    background: var(--primary);
    color: #fff;
    border: none
}

@media (max-width:900px) {
    .security-card-featured {
        grid-column: span 2
    }
}

@media (max-width:600px) {
    .security-card-featured {
        grid-column: span 1
    }
}

.security-card-featured h3 {
    color: #fff !important
}

.security-card-featured p {
    color: rgba(255, 255, 255, .9) !important
}

.security-icon {
    width: 4rem;
    height: 4rem;
    background: var(--primary-light);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 1.25rem
}

.security-card-featured .security-icon {
    background: rgba(255, 255, 255, .15);
    color: #fff
}

.security-card h3 {
    font-size: 1.25rem;
    margin-bottom: .75rem
}

.security-card p {
    color: var(--text-muted);
    font-size: .9375rem;
    line-height: 1.6
}

.security-details {
    list-style: none;
    margin-top: 1.25rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .75rem
}

@media (max-width:600px) {
    .security-details {
        grid-template-columns: 1fr
    }
}

.security-details li {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .875rem;
    color: rgba(255, 255, 255, .9) !important
}

.security-details li::before {
    content: '✓';
    color: #fff;
    font-weight: 700
}

/* Features */
section {
    padding: 5rem 0
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem
}

.features {
    background: var(--bg)
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem
}

.feature-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: transform .2s, box-shadow .2s
}

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

.feature-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: var(--primary-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 1.25rem
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: .75rem
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.6
}

/* Steps */
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem
}

@media (max-width:900px) {
    .steps {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width:600px) {
    .steps {
        grid-template-columns: 1fr
    }
}

.step {
    text-align: center;
    padding: 2rem;
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    position: relative
}

.step::after {
    content: '→';
    position: absolute;
    right: -1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--text-muted);
    font-weight: 700
}

.step:last-child::after {
    display: none
}

@media (max-width:900px) {
    .step::after {
        display: none
    }
}

.step-number {
    width: 3rem;
    height: 3rem;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 auto 1rem
}

.step h3 {
    margin-bottom: .75rem;
    font-size: 1.125rem
}

.step p {
    color: var(--text-muted);
    font-size: .9375rem
}

/* Testimonials */
.testimonials-section {
    padding: 6rem 0;
    background: var(--primary-light)
}

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

@media (max-width:900px) {
    .testimonials-grid {
        grid-template-columns: 1fr
    }
}

.testimonial-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow)
}

.testimonial-rating {
    display: flex;
    gap: .25rem;
    margin-bottom: 1rem;
    color: var(--warning)
}

.testimonial-card blockquote {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 1.5rem;
    font-style: italic
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem
}

.author-avatar {
    width: 3rem;
    height: 3rem;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .875rem
}

.author-info strong {
    display: block;
    font-size: .9375rem
}

.author-info span {
    color: var(--text-muted);
    font-size: .8125rem
}

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

.pricing-card {
    max-width: 480px;
    margin: 0 auto;
    background: var(--bg-card);
    padding: 3rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-xl);
    position: relative
}

.pricing-badge {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #fff;
    padding: .5rem 1.25rem;
    border-radius: 2rem;
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em
}

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

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: .5rem
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: .5rem;
    margin: 1rem 0
}

.price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1
}

.period {
    color: var(--text-muted);
    font-size: 1rem
}

.pricing-note {
    color: var(--text-muted);
    font-size: .875rem
}

.pricing-features {
    list-style: none;
    margin: 2rem 0;
    padding: 2rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border)
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .625rem 0;
    color: var(--text)
}

.pricing-features svg {
    color: var(--success);
    flex-shrink: 0
}

.pricing-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    margin-top: 1rem;
    font-size: .875rem;
    color: var(--text-muted)
}

.pricing-guarantee svg {
    color: var(--success)
}

/* FAQ */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem
}

@media (max-width:767px) {
    .faq-grid {
        grid-template-columns: 1fr
    }
}

.faq-item {
    background: var(--bg-card);
    padding: 1.75rem;
    border-radius: var(--radius);
    border: 1px solid var(--border)
}

.faq-item h3 {
    margin-bottom: .75rem;
    font-size: 1.0625rem;
    color: var(--text)
}

.faq-item p {
    color: var(--text-muted);
    font-size: .9375rem;
    line-height: 1.7
}

/* CTA */
.cta {
    text-align: center;
    background: var(--primary);
    color: #fff;
    padding: 6rem 0;
    position: relative;
    overflow: hidden
}

.cta-content {
    position: relative;
    z-index: 1
}

.cta h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 1rem;
    font-weight: 700
}

.cta p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: .9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem
}

.cta .btn:not(.btn-outline-light) {
    background: #fff;
    color: var(--primary)
}

.cta .btn:not(.btn-outline-light):hover {
    background: #fff;
    opacity: 0.9;
    transform: translateY(-2px)
}

.cta-trust {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap
}

.cta-trust-item {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .9375rem;
    opacity: .9
}

.cta-trust-item svg {
    opacity: .8
}

/* Footer */
.footer {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    padding: 4rem 0 2rem;
    margin-top: 0
}

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

@media (max-width:900px) {
    .footer-content {
        grid-template-columns: 1fr 1fr
    }
}

@media (max-width:600px) {
    .footer-content {
        grid-template-columns: 1fr
    }
}

.footer-brand {
    max-width: 280px
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    margin-bottom: 1rem
}

.footer-logo svg {
    stroke: var(--primary)
}

.footer-brand>p {
    color: var(--text-muted);
    font-size: .9375rem;
    margin-bottom: 1rem
}

.footer-security {
    display: flex;
    flex-direction: column;
    gap: .5rem
}

.security-badge-small {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .75rem;
    color: var(--text-muted);
    background: var(--bg);
    padding: .5rem .75rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border)
}

.security-badge-small svg {
    color: var(--success)
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 600
}

.footer-section p {
    color: var(--text-muted);
    font-size: .9375rem
}

.footer-section ul {
    list-style: none
}

.footer-section ul li {
    margin-bottom: .625rem
}

.footer-section a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: .9375rem;
    transition: color .2s
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: .875rem
}

@media (max-width:600px) {
    .footer-bottom {
        flex-direction: column;
        gap: .5rem;
        text-align: center
    }
}

.footer-note {
    opacity: .7
}

/* Page Header */
.page-header {
    text-align: center;
    padding: 4rem 0;
    background: var(--primary-light)
}

.page-header h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: .5rem
}

.page-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted)
}

/* Content */
.content-section {
    padding: 5rem 0
}

.bg-light {
    background: var(--primary-light)
}

.content-grid {
    max-width: 800px;
    margin: 0 auto
}

.content-grid h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    margin-top: 2rem
}

.content-grid h2:first-child {
    margin-top: 0
}

.content-grid p {
    margin-bottom: 1.25rem;
    color: var(--text-muted);
    line-height: 1.8
}

.feature-list {
    list-style: none;
    margin: 1.5rem 0
}

.feature-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-muted);
    line-height: 1.8
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700
}

/* Tech Grid */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem
}

.tech-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--border)
}

.tech-item svg {
    color: var(--primary);
    flex-shrink: 0;
    margin-top: .25rem
}

.tech-item h4 {
    margin-bottom: .5rem
}

.tech-item p {
    color: var(--text-muted);
    font-size: .9375rem
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto
}

@media (max-width:767px) {
    .contact-grid {
        grid-template-columns: 1fr
    }
}

.contact-info h2 {
    margin-bottom: 1rem
}

.contact-methods {
    margin-top: 2rem
}

.contact-method {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    background: var(--primary-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0
}

.contact-method h4 {
    margin-bottom: .25rem
}

.contact-method p {
    color: var(--text-muted)
}

.contact-method a {
    color: var(--primary);
    text-decoration: none
}

/* Forms */
.contact-form {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--border)
}

.form-group {
    margin-bottom: 1.5rem
}

.form-group label {
    display: block;
    margin-bottom: .5rem;
    font-weight: 500
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: .875rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--bg);
    color: var(--text);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color .2s, box-shadow .2s
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, .1)
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: var(--radius-sm);
    display: none
}

.form-message.success {
    background: #d1fae5;
    color: #065f46;
    display: block
}

.form-message.error {
    background: #fee2e2;
    color: #991b1b;
    display: block
}

/* Legal */
.legal-content {
    max-width: 800px;
    margin: 0 auto
}

.legal-content h2 {
    font-size: 1.75rem;
    margin-top: 3rem;
    margin-bottom: 1rem
}

.legal-content h2:first-child {
    margin-top: 0
}

.legal-content h3 {
    font-size: 1.25rem;
    margin-top: 2rem;
    margin-bottom: .75rem
}

.legal-content ul {
    margin: 1rem 0 1.5rem 2rem;
    color: var(--text-muted);
    line-height: 1.8
}

.legal-content li {
    margin-bottom: .5rem
}

.legal-content a {
    color: var(--primary);
    text-decoration: none
}

.legal-content a:hover {
    text-decoration: underline
}

/* Utilities */
@media (max-width:767px) {
    section {
        padding: 3.5rem 0
    }

    .hero {
        padding: 3rem 0 4rem
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch
    }

    .hero-cta .btn {
        width: 100%
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem
    }

    .features-grid {
        grid-template-columns: 1fr
    }

    .steps {
        grid-template-columns: 1fr
    }

    .tech-grid {
        grid-template-columns: 1fr
    }

    .cta-buttons {
        flex-direction: column
    }

    .cta-trust {
        flex-direction: column;
        gap: 1rem
    }
}