:root {
    --color-primary: #0066ff;
    --color-primary-dark: #0052cc;
    --color-secondary: #ff3366;
    --color-accent: #00d4aa;
    --color-dark: #0a1128;
    --color-text: #1a1f36;
    --color-text-light: #5a6478;
    --color-bg: #ffffff;
    --color-bg-soft: #f7f9fc;
    --color-bg-alt: #eef2f9;
    --color-border: #e4e9f2;
    --color-success: #10b981;
    --color-warning: #f59e0b;
    --shadow-sm: 0 1px 2px rgba(10, 17, 40, 0.04);
    --shadow-md: 0 4px 16px rgba(10, 17, 40, 0.08);
    --shadow-lg: 0 12px 40px rgba(10, 17, 40, 0.12);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-full: 999px;
    --gradient-primary: linear-gradient(135deg, #0066ff 0%, #00d4aa 100%);
    --gradient-hero: linear-gradient(135deg, #0a1128 0%, #1e3a8a 50%, #0066ff 100%);
    --font-base: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: var(--font-base);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
a {
    color: var(--color-primary);
    text-decoration: none;
    transition: var(--transition);
}
a:hover {
    color: var(--color-primary-dark);
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-dark);
    letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.2rem, 4.5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.6rem); margin-bottom: 0.75rem; }
h4 { font-size: 1.15rem; margin-bottom: 0.5rem; }
p { margin-bottom: 1rem; color: var(--color-text-light); }
.section-title {
    text-align: center;
    margin-bottom: 1rem;
}
.section-subtitle {
    text-align: center;
    color: var(--color-text-light);
    max-width: 680px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
}
.eyebrow {
    display: inline-block;
    background: rgba(0, 102, 255, 0.08);
    color: var(--color-primary);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
}
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid var(--color-border);
}
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--color-dark);
}
.logo-mark {
    width: 38px;
    height: 38px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 14px rgba(0, 102, 255, 0.3);
}
.logo:hover { color: var(--color-primary); }
.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}
.nav-menu a {
    color: var(--color-text);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}
.nav-menu a:hover { color: var(--color-primary); }
.nav-menu a.active::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 2px;
}
.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
}
.menu-toggle svg {
    width: 24px;
    height: 24px;
    stroke: var(--color-dark);
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 26px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    white-space: nowrap;
}
.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.3);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.4);
    color: white;
}
.btn-secondary {
    background: white;
    color: var(--color-dark);
    border: 1.5px solid var(--color-border);
}
.btn-secondary:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    transform: translateY(-2px);
}
.btn-ghost {
    background: transparent;
    color: var(--color-text);
}
.btn-ghost:hover {
    background: var(--color-bg-soft);
    color: var(--color-primary);
}
.btn-lg {
    padding: 16px 34px;
    font-size: 1rem;
}
.hero {
    position: relative;
    background: var(--gradient-hero);
    color: white;
    padding: 100px 0 120px;
    overflow: hidden;
}
.hero::before {
    content: "";
    position: absolute;
    top: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 212, 170, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.hero::after {
    content: "";
    position: absolute;
    bottom: -200px;
    left: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 51, 102, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}
.hero h1 {
    color: white;
    margin-bottom: 1.25rem;
}
.hero p.lead {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    max-width: 540px;
}
.hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}
.hero .eyebrow {
    background: rgba(255, 255, 255, 0.12);
    color: white;
    backdrop-filter: blur(10px);
}
.hero-stats {
    display: flex;
    gap: 40px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.hero-stat strong {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    display: block;
}
.hero-stat span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}
.hero-image {
    position: relative;
}
.hero-image img {
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}
.hero-badge {
    position: absolute;
    background: white;
    border-radius: var(--radius-md);
    padding: 16px 20px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-dark);
}
.hero-badge-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: white;
}
.hero-badge strong { display: block; font-size: 1rem; }
.hero-badge span { font-size: 0.8rem; color: var(--color-text-light); }
.hero-badge-1 { top: 20px; left: -30px; animation: float 6s ease-in-out infinite; }
.hero-badge-2 { bottom: 40px; right: -20px; animation: float 6s ease-in-out infinite reverse; }
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
.page-header {
    background: var(--gradient-hero);
    color: white;
    padding: 80px 0 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 212, 170, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}
.page-header h1 {
    color: white;
    position: relative;
    z-index: 2;
}
.page-header p {
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin: 1rem auto 0;
    font-size: 1.15rem;
    position: relative;
    z-index: 2;
}
.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}
.breadcrumb a { color: rgba(255, 255, 255, 0.9); }
.breadcrumb a:hover { color: white; }
.section {
    padding: 90px 0;
}
.section-soft {
    background: var(--color-bg-soft);
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 3rem;
}
.feature {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.feature::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}
.feature:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.feature:hover::before { transform: scaleX(1); }
.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(0, 102, 255, 0.08);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.feature-icon svg { width: 28px; height: 28px; }
.feature h3 { margin-bottom: 0.5rem; font-size: 1.2rem; }
.feature p { color: var(--color-text-light); font-size: 0.95rem; margin: 0; }
.feature:nth-child(2) .feature-icon { background: rgba(0, 212, 170, 0.1); color: var(--color-accent); }
.feature:nth-child(3) .feature-icon { background: rgba(255, 51, 102, 0.1); color: var(--color-secondary); }
.feature:nth-child(4) .feature-icon { background: rgba(245, 158, 11, 0.1); color: var(--color-warning); }
.feature:nth-child(5) .feature-icon { background: rgba(139, 92, 246, 0.1); color: #8b5cf6; }
.feature:nth-child(6) .feature-icon { background: rgba(16, 185, 129, 0.1); color: var(--color-success); }
.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    margin-top: 3rem;
}
.plan {
    background: white;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.plan:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.plan-featured {
    border: 2px solid var(--color-primary);
    box-shadow: 0 20px 60px rgba(0, 102, 255, 0.15);
    transform: scale(1.03);
}
.plan-featured:hover { transform: scale(1.03) translateY(-8px); }
.plan-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 6px 18px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.plan-name {
    font-size: 0.95rem;
    color: var(--color-text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.5rem;
}
.plan-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 0.5rem;
}
.plan-price .amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-dark);
    line-height: 1;
}
.plan-price .currency {
    font-size: 1.5rem;
    color: var(--color-text-light);
    font-weight: 600;
}
.plan-price .period {
    font-size: 0.95rem;
    color: var(--color-text-light);
}
.plan-tagline {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--color-border);
}
.plan-features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}
.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
    font-size: 0.95rem;
    color: var(--color-text);
}
.plan-features li svg {
    width: 20px;
    height: 20px;
    color: var(--color-success);
    flex-shrink: 0;
    margin-top: 2px;
}
.plan-features li.disabled {
    color: var(--color-text-light);
    text-decoration: line-through;
    opacity: 0.6;
}
.plan-features li.disabled svg { color: var(--color-text-light); }
.plan .btn { width: 100%; }
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 3rem;
    counter-reset: step;
}
.step {
    text-align: center;
    counter-increment: step;
    position: relative;
}
.step-num {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.25rem;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 800;
    box-shadow: 0 8px 24px rgba(0, 102, 255, 0.3);
}
.step h4 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.step p { font-size: 0.95rem; margin: 0; }
.cta-banner {
    background: var(--gradient-hero);
    border-radius: var(--radius-lg);
    padding: 60px 50px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(0, 212, 170, 0.3) 0%, transparent 70%);
    border-radius: 50%;
}
.cta-banner h2 { color: white; margin-bottom: 1rem; position: relative; z-index: 2; }
.cta-banner p { color: rgba(255, 255, 255, 0.85); max-width: 600px; margin: 0 auto 2rem; font-size: 1.1rem; position: relative; z-index: 2; }
.cta-banner .btn { position: relative; z-index: 2; }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    margin-top: 3rem;
}
.testimonial {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
}
.testimonial:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.testimonial-stars {
    display: flex;
    gap: 4px;
    color: var(--color-warning);
    margin-bottom: 1rem;
}
.testimonial-stars svg { width: 18px; height: 18px; fill: currentColor; }
.testimonial-text {
    font-style: italic;
    color: var(--color-text);
    margin-bottom: 1.5rem;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}
.testimonial-name { font-weight: 600; color: var(--color-dark); }
.testimonial-role { font-size: 0.85rem; color: var(--color-text-light); }
.coverage-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.coverage-list {
    list-style: none;
    margin-top: 1.5rem;
}
.coverage-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--color-border);
}
.coverage-list li:last-child { border-bottom: none; }
.coverage-list-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(0, 212, 170, 0.1);
    color: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.coverage-list h4 { margin-bottom: 4px; font-size: 1.05rem; }
.coverage-list p { margin: 0; font-size: 0.95rem; }
.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
    margin-top: 3rem;
}
.stat-card {
    text-align: center;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 30px 20px;
    transition: var(--transition);
}
.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.stat-card .number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 0.5rem;
}
.stat-card .label { font-size: 0.9rem; color: var(--color-text-light); }
.regions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 3rem;
}
.region-card {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 20px 22px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 14px;
}
.region-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.region-card-icon {
    width: 40px;
    height: 40px;
    background: rgba(0, 102, 255, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    flex-shrink: 0;
}
.region-card h4 { font-size: 1rem; margin-bottom: 2px; }
.region-card p { margin: 0; font-size: 0.85rem; color: var(--color-success); font-weight: 600; }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-img-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.about-img-wrap img { border-radius: var(--radius-lg); }
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 3rem;
}
.value-card {
    text-align: center;
    padding: 36px 28px;
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    transition: var(--transition);
}
.value-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.value-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.25rem;
    background: var(--gradient-primary);
    color: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 24px rgba(0, 102, 255, 0.25);
}
.value-icon svg { width: 32px; height: 32px; }
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 26px;
    margin-top: 3rem;
}
.team-member {
    text-align: center;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 30px 20px;
    transition: var(--transition);
}
.team-member:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.team-avatar {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    background: var(--gradient-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    font-weight: 700;
    overflow: hidden;
}
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-member h4 { margin-bottom: 4px; }
.team-member p { margin: 0; font-size: 0.9rem; color: var(--color-text-light); }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    margin-top: 2rem;
}
.contact-info {
    background: var(--gradient-hero);
    color: white;
    border-radius: var(--radius-lg);
    padding: 44px 36px;
    position: relative;
    overflow: hidden;
}
.contact-info::before {
    content: "";
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(0, 212, 170, 0.25) 0%, transparent 70%);
    border-radius: 50%;
}
.contact-info h3 { color: white; margin-bottom: 1rem; position: relative; z-index: 2; }
.contact-info p { color: rgba(255, 255, 255, 0.85); margin-bottom: 2rem; position: relative; z-index: 2; }
.contact-info-list {
    list-style: none;
    position: relative;
    z-index: 2;
}
.contact-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.contact-info-list li:last-child { border-bottom: none; }
.contact-info-icon {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}
.contact-info-list h4 { color: white; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; opacity: 0.7; }
.contact-info-list a, .contact-info-list .value { color: white; font-weight: 600; font-size: 1.05rem; }
.contact-form {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 44px 36px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: var(--color-dark);
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
    color: var(--color-text);
    background: var(--color-bg-soft);
    transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}
.form-check input { margin-top: 4px; }
.form-check a { color: var(--color-primary); font-weight: 600; }
.faq-list {
    max-width: 800px;
    margin: 3rem auto 0;
}
.faq-item {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition);
}
.faq-item.open { box-shadow: var(--shadow-md); border-color: var(--color-primary); }
.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 22px 24px;
    text-align: left;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-family: inherit;
}
.faq-question svg {
    width: 20px;
    height: 20px;
    color: var(--color-primary);
    transition: transform 0.3s;
    flex-shrink: 0;
}
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    color: var(--color-text-light);
}
.faq-answer-inner { padding: 0 24px 22px; }
.faq-item.open .faq-answer { max-height: 400px; }
.legal-content {
    max-width: 860px;
    margin: 0 auto;
}
.legal-content h2 { margin-top: 2.5rem; margin-bottom: 1rem; font-size: 1.6rem; }
.legal-content h3 { margin-top: 1.5rem; margin-bottom: 0.75rem; font-size: 1.2rem; }
.legal-content p { line-height: 1.7; color: var(--color-text); }
.legal-content ul, .legal-content ol { padding-left: 1.5rem; margin-bottom: 1.5rem; color: var(--color-text); }
.legal-content li { margin-bottom: 0.5rem; line-height: 1.7; }
.legal-content strong { color: var(--color-dark); }
.legal-meta {
    background: var(--color-bg-soft);
    border-left: 4px solid var(--color-primary);
    padding: 18px 22px;
    border-radius: var(--radius-sm);
    margin-bottom: 2.5rem;
    font-size: 0.95rem;
    color: var(--color-text-light);
}
.legal-meta strong { color: var(--color-dark); }
.toc {
    background: var(--color-bg-soft);
    border-radius: var(--radius-md);
    padding: 24px 28px;
    margin-bottom: 2.5rem;
}
.toc h3 { font-size: 1rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 1rem; color: var(--color-text-light); }
.toc ol { list-style: decimal; padding-left: 1.2rem; margin: 0; }
.toc li { margin-bottom: 6px; color: var(--color-text); }
.toc a { color: var(--color-text); font-weight: 500; }
.toc a:hover { color: var(--color-primary); }
.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0 2rem;
    font-size: 0.95rem;
}
.cookie-table th,
.cookie-table td {
    text-align: left;
    padding: 12px 14px;
    border: 1px solid var(--color-border);
}
.cookie-table th {
    background: var(--color-bg-soft);
    font-weight: 700;
    color: var(--color-dark);
}
.footer {
    background: var(--color-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 70px 0 30px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}
.footer-brand .logo { color: white; margin-bottom: 1rem; }
.footer-brand p { color: rgba(255, 255, 255, 0.6); font-size: 0.95rem; max-width: 320px; }
.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 1.5rem;
}
.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.footer-social a:hover {
    background: var(--gradient-primary);
    transform: translateY(-3px);
}
.footer-social svg { width: 18px; height: 18px; }
.footer-col h4 {
    color: white;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
}
.footer-col a:hover { color: white; }
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}
.footer-bottom-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}
.footer-bottom-links a { color: rgba(255, 255, 255, 0.6); }
.footer-bottom-links a:hover { color: white; }
.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    right: 24px;
    max-width: 1100px;
    margin: 0 auto;
    background: white;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    border: 1px solid var(--color-border);
}
.cookie-banner.show { display: flex; animation: slideUp 0.4s ease; }
@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.cookie-banner-content { flex: 1; min-width: 280px; }
.cookie-banner h4 { font-size: 1.05rem; margin-bottom: 6px; display: flex; align-items: center; gap: 10px; }
.cookie-banner h4 svg { width: 22px; height: 22px; color: var(--color-warning); }
.cookie-banner p { font-size: 0.92rem; margin: 0; color: var(--color-text-light); }
.cookie-banner p a { color: var(--color-primary); font-weight: 600; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 71px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 20px 24px;
        border-bottom: 1px solid var(--color-border);
        transform: translateY(-120%);
        transition: transform 0.3s;
    }
    .nav-menu.open { transform: translateY(0); }
    .nav-menu li { width: 100%; }
    .nav-menu a { display: block; padding: 12px 0; border-bottom: 1px solid var(--color-border); }
    .nav-menu li:last-child a { border-bottom: none; }
    .menu-toggle { display: flex; }
    .nav-actions .btn-ghost { display: none; }
    .hero { padding: 60px 0 80px; }
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-image { max-width: 520px; margin: 0 auto; }
    .hero-badge-1, .hero-badge-2 { display: none; }
    .hero-stats { flex-wrap: wrap; gap: 24px; }
    .coverage-hero,
    .about-grid,
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .section { padding: 60px 0; }
    .cta-banner { padding: 40px 24px; }
    .plan-featured { transform: scale(1); }
    .plan-featured:hover { transform: translateY(-8px); }
}
@media (max-width: 580px) {
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { justify-content: center; text-align: center; }
    .cookie-banner { left: 12px; right: 12px; padding: 18px 20px; }
    .cookie-actions { width: 100%; }
    .cookie-actions .btn { flex: 1; }
    .hero-cta { flex-direction: column; align-items: stretch; }
    .hero-cta .btn { width: 100%; }
}
