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

:root {
    --color-bg: #0a0e17;
    --color-bg-secondary: #111827;
    --color-bg-card: #1a2332;
    --color-bg-card-hover: #1f2b3d;
    --color-primary: #00d4ff;
    --color-primary-dark: #00a8cc;
    --color-primary-glow: rgba(0, 212, 255, 0.15);
    --color-accent: #10b981;
    --color-accent-light: #34d399;
    --color-warning: #f59e0b;
    --color-danger: #ef4444;
    --color-white: #ffffff;
    --color-text: #e2e8f0;
    --color-text-secondary: #94a3b8;
    --color-text-muted: #64748b;
    --color-border: rgba(255, 255, 255, 0.08);
    --color-border-light: rgba(255, 255, 255, 0.12);
    --color-success: #10b981;
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.3);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.4);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.5);
    --shadow-glow: 0 0 20px rgba(0, 212, 255, 0.2);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

/* Ticker */
.ticker-wrapper {
    background: linear-gradient(90deg, #0f172a, #1e293b, #0f172a);
    border-bottom: 1px solid var(--color-border);
    padding: 10px 0;
    overflow: hidden;
    position: relative;
}

.ticker-track {
    display: flex;
    width: max-content;
    animation: ticker 100s linear infinite;
}

.ticker-content {
    display: flex;
    gap: 60px;
    padding-right: 60px;
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text-secondary);
}

.ticker-item {
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ticker-item::before {
    content: "✓";
    color: var(--color-accent);
    font-weight: 700;
    font-size: 12px;
}

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

/* Header */
.header {
    background: rgba(10, 14, 23, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 14px 0;
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    color: var(--color-primary);
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-size: 18px;
    font-weight: 800;
    color: var(--color-white);
    letter-spacing: 0.12em;
    line-height: 1.2;
}

.logo-tagline {
    font-size: 10px;
    color: var(--color-text-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 500;
}

.header-trust {
    display: flex;
    gap: 16px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: var(--color-text-secondary);
    font-weight: 500;
}

.trust-item svg {
    color: var(--color-primary);
}

/* Hero */
.hero {
    background: var(--color-bg);
    padding: 60px 0 70px;
    position: relative;
    overflow: hidden;
}

.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 48px;
}

.hero-content {
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
}

.hero-alert {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.25);
    color: #fca5a5;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 24px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.alert-dot {
    width: 8px;
    height: 8px;
    background: var(--color-danger);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4); }
    50% { opacity: 0.6; box-shadow: 0 0 0 6px rgba(239, 68, 68, 0); }
}

.hero-title {
    font-size: clamp(28px, 5vw, 44px);
    font-weight: 800;
    line-height: 1.2;
    color: var(--color-white);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 17px;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta-row {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: var(--color-bg);
    font-size: 15px;
    font-weight: 700;
    padding: 14px 28px;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    letter-spacing: 0.01em;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-primary.btn-glow {
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
}

.btn-primary.btn-glow:hover {
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.45);
}

.btn-secondary-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: transparent;
    color: var(--color-text);
    font-size: 15px;
    font-weight: 600;
    padding: 14px 28px;
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-secondary-outline:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background: var(--color-primary-glow);
}

/* Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.stat-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 20px 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: var(--color-primary);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.1);
}

.stat-value {
    display: block;
    font-family: var(--font-mono);
    font-size: 26px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 12px;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 500;
}

/* Warning Section */
.warning-section {
    padding: 60px 0;
    background: var(--color-bg-secondary);
}

.warning-box {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    background: rgba(245, 158, 11, 0.06);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: var(--radius-lg);
    padding: 32px;
}

.warning-icon {
    flex-shrink: 0;
    color: var(--color-warning);
    background: rgba(245, 158, 11, 0.1);
    width: 72px;
    height: 72px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.warning-content h2 {
    font-size: 22px;
    font-weight: 800;
    color: var(--color-warning);
    margin-bottom: 4px;
}

.warning-content h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text-secondary);
    margin-bottom: 16px;
}

.warning-content p {
    font-size: 15px;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: 12px;
}

.warning-content p:last-child {
    margin-bottom: 0;
}

.warning-content strong {
    color: var(--color-text);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-badge {
    display: inline-block;
    background: var(--color-primary-glow);
    border: 1px solid rgba(0, 212, 255, 0.2);
    color: var(--color-primary);
    font-size: 12px;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.section-badge-light {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
    color: var(--color-white);
}

.section-title {
    font-size: clamp(26px, 4.5vw, 36px);
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-desc {
    font-size: 16px;
    color: var(--color-text-secondary);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: var(--color-bg);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.about-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    transition: all 0.3s ease;
}

.about-card:hover {
    border-color: rgba(0, 212, 255, 0.3);
    background: var(--color-bg-card-hover);
}

.about-icon {
    width: 48px;
    height: 48px;
    background: var(--color-primary-glow);
    color: var(--color-primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.about-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 8px;
}

.about-card p {
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: var(--color-bg-secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.service-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 212, 255, 0.08);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: var(--color-primary-glow);
    color: var(--color-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.service-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 8px;
}

.service-card p {
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: 14px;
}

.service-tag {
    display: inline-block;
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.15);
    color: var(--color-primary);
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 12px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* Solution Section */
.solution-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f2027, #203a43, #0f2027);
    position: relative;
    overflow: hidden;
}

.solution-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.solution-content {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.solution-header h2 {
    font-size: clamp(28px, 5vw, 40px);
    font-weight: 800;
    color: var(--color-white);
    line-height: 1.2;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.solution-subtitle {
    font-size: 18px;
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: 24px;
}

.solution-text {
    font-size: 16px;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
    text-align: left;
}

.solution-text strong {
    color: var(--color-text);
}

.solution-features {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--color-text);
    font-weight: 500;
}

.feature-item svg {
    color: var(--color-accent);
    flex-shrink: 0;
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background: var(--color-bg);
}

.process-steps {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    position: relative;
    padding-bottom: 36px;
}

.step:last-child {
    padding-bottom: 0;
}

.step:last-child .step-line-v {
    display: none;
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--color-primary-glow);
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    font-family: var(--font-mono);
    font-size: 16px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.step-line-v {
    position: absolute;
    left: 23px;
    top: 52px;
    bottom: 0;
    width: 2px;
    background: var(--color-border-light);
    z-index: 1;
}

.step-content {
    padding-top: 4px;
}

.step-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 6px;
}

.step-content p {
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--color-bg-secondary), #1a1f2e);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.cta-content {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #fca5a5;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 24px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.cta-content h2 {
    font-size: clamp(26px, 4.5vw, 36px);
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.cta-content p {
    font-size: 16px;
    color: var(--color-text-secondary);
    margin-bottom: 28px;
    line-height: 1.7;
}

.cta-guarantees {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.cta-guarantees span {
    font-size: 13px;
    color: var(--color-text-secondary);
    font-weight: 500;
}

/* Footer */
.footer {
    background: #060910;
    color: var(--color-text-secondary);
    padding: 60px 0 24px;
    border-top: 1px solid var(--color-border);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
}

.footer-logo-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    color: var(--color-primary);
}

.footer-logo {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: 0.04em;
}

.footer-brand p {
    font-size: 13px;
    color: var(--color-text-muted);
    line-height: 1.7;
    max-width: 360px;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.footer-col h4 {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 14px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    font-size: 13px;
    color: var(--color-text-muted);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-col li::before {
    content: "›";
    color: var(--color-primary);
    font-weight: 700;
}

.footer-col a {
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

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

.footer-bottom {
    border-top: 1px solid var(--color-border);
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    font-size: 12px;
    color: var(--color-text-muted);
    margin-bottom: 8px;
}

.footer-legal {
    font-size: 11px;
    color: var(--color-text-muted);
    opacity: 0.7;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 440px;
    max-height: 95vh;
    overflow: hidden;
    position: relative;
    transform: translateY(20px) scale(0.98);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.modal-overlay.active .modal-content {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--color-border);
    color: var(--color-text-secondary);
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: all 0.2s;
    z-index: 10;
}

.modal-close:hover {
    background: rgba(255,255,255,0.1);
    color: var(--color-white);
}

/* Form */
.form-container {
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    max-height: calc(95vh - 60px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.form-container form {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
}

.form-header {
    text-align: center;
    margin-bottom: 24px;
}

.form-badge {
    display: inline-block;
    background: var(--color-primary-glow);
    border: 1px solid rgba(0, 212, 255, 0.2);
    color: var(--color-primary);
    font-size: 11px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 16px;
    margin-bottom: 14px;
    letter-spacing: 0.03em;
}

.form-header h2 {
    font-size: 24px;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 6px;
}

.form-header p {
    font-size: 13px;
    color: var(--color-text-secondary);
}

.form-group {
    margin-bottom: 16px;
    flex-shrink: 0;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 6px;
}

.form-group input,
.form-group select {
    width: 100%;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    font-size: 16px;
    color: var(--color-text);
    font-family: var(--font-main);
    transition: all 0.2s;
    -webkit-appearance: none;
    appearance: none;
}

.form-group input::placeholder {
    color: var(--color-text-muted);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
    background: rgba(0, 212, 255, 0.03);
}

.form-group select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%2394a3b8' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
}

.form-inline-error {
    display: none;
    margin-bottom: 12px;
    padding: 10px 14px;
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.35);
    border-radius: 8px;
    color: #fca5a5;
    font-size: 13px;
    line-height: 1.45;
}

.form-inline-error.visible { display: block; }

.form-group input.field-invalid,
.form-group select.field-invalid {
    border-color: rgba(239, 68, 68, 0.6) !important;
    box-shadow: 0 0 0 1px rgba(239, 68, 68, 0.2);
}

.form-group select option {
    background: var(--color-bg-card);
    color: var(--color-text);
}

.btn-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: var(--color-bg);
    font-size: 15px;
    font-weight: 700;
    padding: 14px;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 4px;
    position: sticky;
    bottom: 0;
    z-index: 10;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.3);
}

.btn-submit:hover {
    box-shadow: var(--shadow-glow);
}

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

.form-trust {
    margin-top: 16px;
    text-align: center;
    flex-shrink: 0;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: var(--color-text-muted);
}

.trust-badge svg {
    color: var(--color-accent);
}

/* Success */
.success-container {
    display: none;
    padding: 36px 28px;
    text-align: center;
}

.success-container.active {
    display: block;
}

.form-container.hidden {
    display: none;
}

.success-icon {
    color: var(--color-accent);
    margin-bottom: 16px;
}

.success-container h2 {
    font-size: 24px;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 10px;
}

.success-text {
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
}

.consult-box {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 24px 20px;
}

.consult-box h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 6px;
}

.consult-box p {
    font-size: 13px;
    color: var(--color-text-secondary);
    margin-bottom: 18px;
    line-height: 1.6;
}

.btn-consult {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: #25d366;
    color: white;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 24px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-consult:hover {
    background: #20bd5a;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.3);
}

/* ==================== Responsive ==================== */

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .header .container {
        flex-direction: row;
        padding: 10px 16px;
    }

    .header-trust {
        gap: 10px;
    }

    .trust-item {
        font-size: 0;
        gap: 0;
    }

    .trust-item svg {
        width: 16px;
        height: 16px;
    }

    .trust-item-phone {
        font-size: 11px;
        gap: 4px;
    }

    .logo-icon svg {
        width: 28px;
        height: 28px;
    }

    .logo-name {
        font-size: 14px;
        letter-spacing: 0.08em;
    }

    .logo-tagline {
        font-size: 8px;
    }

    .hero {
        padding: 36px 0 48px;
    }

    .hero-title {
        font-size: clamp(22px, 6.5vw, 32px);
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .hero-cta-row {
        flex-direction: column;
        gap: 10px;
    }

    .btn-primary, .btn-secondary-outline {
        width: 100%;
        padding: 14px 20px;
        font-size: 14px;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .stat-card {
        padding: 16px 10px;
    }

    .stat-value {
        font-size: 22px;
    }

    .stat-label {
        font-size: 10px;
    }

    .warning-section {
        padding: 40px 0;
    }

    .warning-box {
        flex-direction: column;
        padding: 24px 20px;
        gap: 16px;
    }

    .warning-icon {
        width: 56px;
        height: 56px;
    }

    .warning-icon svg {
        width: 32px;
        height: 32px;
    }

    .warning-content h2 {
        font-size: 19px;
    }

    .warning-content h3 {
        font-size: 14px;
    }

    .warning-content p {
        font-size: 14px;
    }

    .about-section, .services-section, .process-section, .cta-section {
        padding: 56px 0;
    }

    .about-grid, .services-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .about-card, .service-card {
        padding: 22px 18px;
    }

    .solution-section {
        padding: 56px 0;
    }

    .solution-header h2 {
        font-size: clamp(24px, 6vw, 32px);
    }

    .solution-text {
        font-size: 15px;
    }

    .feature-item {
        font-size: 14px;
    }

    .process-steps {
        padding-left: 0;
    }

    .cta-guarantees {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }

    .cta-guarantees span {
        font-size: 13px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-links {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .modal-overlay {
        padding: 0;
        align-items: flex-end;
    }

    .modal-content {
        max-width: 100%;
        max-height: 92vh;
        border-radius: 20px 20px 0 0;
    }

    .form-container {
        padding: 24px 20px;
        max-height: calc(92vh - 40px);
    }

    .form-header h2 {
        font-size: 20px;
    }

    .form-group input,
    .form-group select {
        padding: 13px 14px;
        font-size: 16px;
        min-height: 48px;
    }

    .btn-submit {
        padding: 16px;
        font-size: 15px;
        min-height: 52px;
        -webkit-tap-highlight-color: rgba(0, 212, 255, 0.2);
    }

    .ticker-content {
        gap: 40px;
        font-size: 12px;
    }

    .section-title {
        font-size: clamp(22px, 5.5vw, 30px);
    }

    .section-desc {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 14px;
    }

    .logo-name {
        font-size: 12px;
    }

    .hero-title {
        font-size: clamp(20px, 7vw, 28px);
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .hero-stats {
        gap: 8px;
    }

    .stat-card {
        padding: 14px 8px;
    }

    .stat-value {
        font-size: 20px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .form-container {
        padding: 20px 16px;
    }

    .form-header h2 {
        font-size: 18px;
    }

    .form-group {
        margin-bottom: 12px;
    }

    .btn-submit {
        padding: 14px;
        font-size: 14px;
        min-height: 48px;
    }

    .form-trust {
        margin-top: 10px;
    }
}

@media (max-width: 768px) {
    .form-trust {
        margin-top: 8px;
        order: 1;
    }

    .form-container form {
        gap: 0;
    }

    .btn-submit {
        order: 0;
    }
}
