* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0066FF;
    --secondary: #00D4FF;
    --accent: #FF6B35;
    --dark: #0A0E27;
    --darker: #060819;
    --light: #F7F9FC;
    --text-light: #B8C5D6;
    --success: #00E676;
    --gradient-1: linear-gradient(135deg, #0066FF 0%, #00D4FF 100%);
    --gradient-2: linear-gradient(135deg, #FF6B35 0%, #FF9558 100%);
    --gradient-dark: linear-gradient(180deg, #0A0E27 0%, #060819 100%);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    overflow-x: hidden;
    background: var(--darker);
    min-height: 100vh;
}

a {
    color: var(--secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover,
a:focus {
    color: #FFFFFF;
    outline: none;
}

p {
    color: var(--text-light);
    margin-bottom: 1.1rem;
    line-height: 1.7;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.skip-link {
    position: absolute;
    top: 10px;
    left: -999px;
    background: var(--primary);
    color: #FFFFFF;
    padding: 12px 18px;
    border-radius: 8px;
    z-index: 2000;
    transition: left 0.3s ease;
}

.skip-link:focus {
    left: 10px;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    z-index: 1;
    pointer-events: none;
    background: url('data:image/svg+xml,%3Csvg viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E');
}

.animated-gradient {
    position: fixed;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: radial-gradient(circle at 20% 50%, rgba(0, 102, 255, 0.12) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(255, 107, 53, 0.08) 0%, transparent 50%);
    animation: gradientShift 20s ease-in-out infinite;
    z-index: 0;
}

@keyframes gradientShift {
    0%, 100% { transform: rotate(0deg) scale(1); }
    33% { transform: rotate(120deg) scale(1.1); }
    66% { transform: rotate(240deg) scale(0.9); }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

header {
    padding: 20px 0;
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(20px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: 900;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo::before {
    content: "⚡";
    font-size: 24px;
    -webkit-text-fill-color: var(--secondary);
}

.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(10, 14, 39, 0.75);
    color: inherit;
    cursor: pointer;
    transition: border 0.3s ease, background 0.3s ease;
    position: relative;
    z-index: 1001;
}

.nav-toggle:hover,
.nav-toggle:focus {
    border-color: rgba(0, 212, 255, 0.5);
    background: rgba(10, 14, 39, 0.9);
}

.nav-toggle-icon {
    display: inline-flex;
    flex-direction: column;
    gap: 6px;
}

.nav-toggle-icon span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text-light);
    border-radius: 999px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.is-active .nav-toggle-icon span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.nav-toggle.is-active .nav-toggle-icon span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.is-active .nav-toggle-icon span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    font-size: 0.98rem;
}

.nav-links a::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a:focus::after,
.nav-links a[aria-current="page"]::after {
    width: 100%;
}

.cta-button {
    background: var(--gradient-1);
    color: #FFFFFF;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.35);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.5s ease;
}

body.menu-open {
    overflow: hidden;
}

@media (max-width: 768px) {
    nav {
        position: relative;
        gap: 16px;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .nav-links {
        position: absolute;
        top: calc(100% + 16px);
        right: 0;
        left: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 18px;
        padding: 24px;
        background: rgba(6, 8, 25, 0.98);
        border-radius: 18px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 24px 60px rgba(6, 8, 25, 0.65);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-12px);
        pointer-events: none;
        transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
        backdrop-filter: blur(16px);
        z-index: 1000;
    }

    .nav-links.is-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

    .nav-links li {
        margin: 0;
    }

    .nav-links a {
        font-size: 1.05rem;
    }

    .nav-links .cta-button {
        width: 100%;
        text-align: center;
    }
}

.cta-button:hover::before,
.cta-button:focus::before {
    left: 100%;
}

.cta-button:hover,
.cta-button:focus {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.5);
}

.secondary-button {
    background: transparent;
    color: var(--secondary);
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--secondary);
    display: inline-block;
    transition: all 0.3s ease;
}

.secondary-button:hover,
.secondary-button:focus {
    background: var(--secondary);
    color: var(--dark);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
}

main {
    position: relative;
    z-index: 2;
}

.hero {
    padding: 180px 0 110px;
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    animation: float 20s infinite ease-in-out;
}

.shape1 {
    width: 300px;
    height: 300px;
    background: rgba(0, 102, 255, 0.12);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape2 {
    width: 220px;
    height: 220px;
    background: rgba(0, 212, 255, 0.12);
    top: 50%;
    right: 12%;
    animation-delay: 5s;
}

.shape3 {
    width: 260px;
    height: 260px;
    background: rgba(255, 107, 53, 0.08);
    bottom: 10%;
    left: 32%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

.hero-content {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #FFFFFF 0%, #B8C5D6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text .highlight {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}


.trust-badges {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.trust-item {
    color: var(--text-light);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    max-width: 220px;
}

.trust-item strong {
    color: var(--secondary);
    font-size: 24px;
}

.trust-item span {
    line-height: 1.4;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.status-window {
    background: rgba(6, 8, 25, 0.82);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    padding: 30px;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(0, 102, 255, 0.2);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 500px;
}

.status-header {
    display: flex;
    gap: 8px;
    margin-bottom: 25px;
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot-red { background: #FF5F56; }
.dot-yellow { background: #FFBD2E; }
.dot-green { background: #27C93F; }

.status-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.status-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: rgba(0, 212, 255, 0.07);
    border-radius: 8px;
    opacity: 0;
    animation: statusFade 0.5s forwards;
}

.status-line:nth-child(1) { animation-delay: 0.1s; }
.status-line:nth-child(2) { animation-delay: 0.2s; }
.status-line:nth-child(3) { animation-delay: 0.3s; }
.status-line:nth-child(4) { animation-delay: 0.4s; }
.status-line:nth-child(5) { animation-delay: 0.5s; }

@keyframes statusFade {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.status-service {
    color: var(--text-light);
    font-weight: 500;
}

.status-badge {
    background: rgba(0, 230, 118, 0.1);
    color: var(--success);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.metrics-bar {
    background: rgba(10, 14, 39, 0.95);
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 40px;
}

.metric-item {
    text-align: center;
}

.metric-number {
    font-size: 42px;
    font-weight: 900;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5px;
}

.metric-label {
    color: var(--text-light);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about {
    padding: 100px 0;
    background: rgba(6, 8, 25, 0.9);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: clamp(36px, 4vw, 48px);
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #FFFFFF 0%, #B8C5D6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header p {
    max-width: 720px;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
    align-items: start;
}

.about-card {
    background: rgba(10, 14, 39, 0.78);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 18px;
    padding: 32px;
    box-shadow: 0 20px 40px rgba(0, 102, 255, 0.18);
}

.about-card h3 {
    font-size: 26px;
    margin-bottom: 18px;
    color: #FFFFFF;
}

.about-card p,
.about-card li {
    color: var(--text-light);
}

.about-highlights li {
    margin-bottom: 14px;
    padding-left: 30px;
    position: relative;
}

.about-highlights li::before {
    content: "⚡";
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--secondary);
}

.about-pillars {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 24px;
}

.pillar {
    background: rgba(0, 212, 255, 0.07);
    border-radius: 14px;
    padding: 20px;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.pillar h4 {
    font-size: 18px;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.services {
    padding: 100px 0;
    background: var(--darker);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px;
}

.service-card {
    background: rgba(10, 14, 39, 0.78);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid rgba(0, 212, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 102, 255, 0.18);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.service-card:hover,
.service-card:focus-within {
    transform: translateY(-6px);
    border-color: rgba(0, 212, 255, 0.6);
    box-shadow: 0 24px 60px rgba(0, 102, 255, 0.28);
}

.service-icon {
    font-size: 36px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 22px;
    color: #FFFFFF;
    margin-bottom: 14px;
}

.service-card p {
    margin-bottom: 18px;
}

.service-features li {
    color: var(--text-light);
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

.lead-pricing {
    padding: 100px 0;
    background: rgba(6, 8, 25, 0.94);
    position: relative;
    overflow: hidden;
}

.lead-pricing::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 30%, rgba(0, 212, 255, 0.12), transparent 55%),
                radial-gradient(circle at 80% 70%, rgba(255, 107, 53, 0.14), transparent 60%);
    opacity: 0.45;
    pointer-events: none;
}

.pricing-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 40px;
    align-items: stretch;
    position: relative;
    z-index: 2;
}

.pricing-form {
    background: rgba(10, 14, 39, 0.85);
    border-radius: 18px;
    padding: 32px;
    border: 1px solid rgba(0, 212, 255, 0.22);
    box-shadow: 0 20px 45px rgba(0, 102, 255, 0.22);
    display: grid;
    gap: 28px;
}

.pricing-form fieldset {
    border: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 18px;
}

.pricing-form legend {
    font-size: 1.1rem;
    font-weight: 700;
    color: #FFFFFF;
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.checkbox {
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 12px;
    align-items: flex-start;
    padding: 16px;
    border-radius: 12px;
    background: rgba(6, 8, 25, 0.8);
    border: 1px solid rgba(0, 212, 255, 0.15);
    color: var(--text-light);
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

.checkbox:hover,
.checkbox:focus-within {
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow: 0 18px 40px rgba(0, 102, 255, 0.25);
    transform: translateY(-3px);
}

.checkbox input {
    width: 20px;
    height: 20px;
    margin-top: 4px;
}

.checkbox small {
    font-size: 0.8rem;
    color: rgba(184, 197, 214, 0.85);
}

.pricing-form select,
.pricing-form input[type="range"] {
    width: 100%;
    background: rgba(6, 8, 25, 0.7);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 10px;
    padding: 12px 16px;
    color: #FFFFFF;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.pricing-form select:focus,
.pricing-form input[type="range"]:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.25);
}

.slider-row {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
}

.slider-row input[type="range"] {
    appearance: none;
    height: 6px;
    border-radius: 999px;
    background: rgba(0, 212, 255, 0.25);
    flex: 1;
    padding: 0;
}

.slider-row input[type="range"]::-webkit-slider-thumb {
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--gradient-1);
    border: 2px solid #FFFFFF;
    box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.25);
    cursor: pointer;
}

.slider-row input[type="range"]::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--gradient-1);
    border: 2px solid #FFFFFF;
    box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.25);
    cursor: pointer;
}

.slider-row output {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    font-weight: 600;
    color: #FFFFFF;
    background: rgba(6, 8, 25, 0.6);
    border-radius: 999px;
    padding: 6px 14px;
    width: max-content;
}

.pricing-summary {
    background: rgba(10, 14, 39, 0.9);
    border-radius: 18px;
    padding: 36px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 24px 55px rgba(0, 102, 255, 0.25);
    display: grid;
    gap: 24px;
    align-content: start;
}

.pricing-summary h3 {
    font-size: 26px;
    color: #FFFFFF;
}

.pricing-breakdown {
    display: grid;
    gap: 16px;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
    border-bottom: 1px solid rgba(0, 212, 255, 0.15);
    padding-bottom: 12px;
}

.breakdown-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.breakdown-item dt {
    font-weight: 600;
    color: rgba(184, 197, 214, 0.85);
}

.breakdown-item dd {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 700;
    color: #FFFFFF;
}

.summary-note {
    font-size: 0.9rem;
    color: rgba(184, 197, 214, 0.8);
}

.pricing-summary .cta-button {
    justify-self: start;
}

.faq {
    padding: 100px 0;
    background: rgba(10, 14, 39, 0.9);
}

.faq-accordion {
    max-width: 860px;
    margin: 0 auto;
    display: grid;
    gap: 20px;
}

.faq-accordion details {
    background: rgba(6, 8, 25, 0.82);
    border-radius: 14px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    padding: 20px 24px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-accordion details[open] {
    border-color: rgba(0, 212, 255, 0.6);
    box-shadow: 0 20px 45px rgba(0, 102, 255, 0.25);
}

.faq-accordion summary {
    font-weight: 600;
    color: #FFFFFF;
    cursor: pointer;
    font-size: 18px;
    outline: none;
}

.faq-accordion summary::-webkit-details-marker {
    display: none;
}

.faq-accordion p {
    margin-top: 12px;
}

footer {
    background: var(--darker);
    padding: 70px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    text-align: center;
    color: var(--text-light);
    display: grid;
    gap: 18px;
    justify-items: center;
}

.footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    font-size: 0.95rem;
}

/* Contact page */

.contact-main {
    padding: 120px 0 100px;
    background: rgba(6, 8, 25, 0.92);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
    align-items: start;
    margin-top: 0;
}

.contact-card {
    background: rgba(10, 14, 39, 0.82);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    box-shadow: 0 20px 45px rgba(0, 102, 255, 0.22);
}

.contact-card h1,
.contact-card h2 {
    color: #FFFFFF;
    font-size: 28px;
    margin-bottom: 16px;
}

.contact-card address,
.contact-card p,
.contact-card li {
    color: var(--text-light);
    font-style: normal;
}

.contact-list {
    display: grid;
    gap: 16px;
    margin: 20px 0 0;
}

.contact-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.contact-list span {
    font-weight: 600;
    color: #FFFFFF;
}

.contact-form {
    background: rgba(6, 8, 25, 0.85);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    box-shadow: 0 20px 45px rgba(0, 102, 255, 0.22);
}

.contact-form h2 {
    color: #FFFFFF;
    font-size: 26px;
    margin-bottom: 18px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-weight: 600;
    color: #FFFFFF;
    font-size: 0.98rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    background: rgba(10, 14, 39, 0.85);
    border: 1px solid rgba(0, 212, 255, 0.25);
    border-radius: 10px;
    padding: 14px 16px;
    color: #FFFFFF;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.25);
    outline: none;
}

.contact-form textarea {
    min-height: 140px;
    resize: vertical;
}

.form-helper {
    font-size: 0.85rem;
    color: rgba(184, 197, 214, 0.8);
    margin-top: 0.5rem;
    margin-bottom: 0.75rem;
    line-height: 1.55;
}

.form-actions {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-actions button {
    align-self: flex-start;
}

button[type="submit"] {
    border: none;
    cursor: pointer;
}

button[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
}

.trace-captcha {
    margin-top: 20px;
    background: rgba(10, 14, 39, 0.78);
    border-radius: 14px;
    border: 1px solid rgba(0, 212, 255, 0.25);
    padding: 16px 18px;
    position: relative;
    overflow: hidden;
}

.captcha-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}

.captcha-title {
    font-weight: 700;
    color: #FFFFFF;
    font-size: 0.98rem;
}

.captcha-refresh {
    background: rgba(0, 212, 255, 0.12);
    border: 1px solid rgba(0, 212, 255, 0.4);
    color: #FFFFFF;
    border-radius: 8px;
    padding: 6px 11px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.captcha-refresh:hover,
.captcha-refresh:focus {
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(0, 212, 255, 0.25);
    outline: none;
}

.trace-stage {
    position: relative;
    height: 220px;
    background: rgba(24, 45, 80, 0.45);
    border-radius: 16px;
    border: 1px dashed rgba(96, 178, 255, 0.45);
    overflow: hidden;
    margin-bottom: 12px;
}

.trace-stage.is-shaking {
    animation: trace-stage-shake 0.48s ease-in-out;
    will-change: transform;
}

@keyframes trace-stage-shake {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }
    15% {
        transform: translate3d(-6px, 0, 0);
    }
    30% {
        transform: translate3d(6px, 0, 0);
    }
    45% {
        transform: translate3d(-4px, 0, 0);
    }
    60% {
        transform: translate3d(4px, 0, 0);
    }
    75% {
        transform: translate3d(-2px, 0, 0);
    }
    90% {
        transform: translate3d(2px, 0, 0);
    }
}

.trace-stage::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 20%, rgba(96, 178, 255, 0.22), transparent 55%),
                radial-gradient(circle at 80% 80%, rgba(64, 156, 255, 0.2), transparent 60%);
    opacity: 0.35;
    pointer-events: none;
}

.trace-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.trace-target,
.trace-token {
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
}

.trace-target {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 138, 128, 0.65) 0%, rgba(229, 57, 53, 0.3) 60%, transparent 72%);
    box-shadow: 0 0 25px rgba(244, 81, 108, 0.55), 0 0 60px rgba(211, 47, 47, 0.35);
    opacity: 0.9;
    transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.trace-token {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.9), rgba(0, 102, 255, 0.85));
    border: 2px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 14px 28px rgba(0, 102, 255, 0.42);
    cursor: grab;
    user-select: none;
    touch-action: none;
    display: grid;
    place-items: center;
    color: #FFFFFF;
    font-weight: 700;
    letter-spacing: 0.02em;
    transition: transform 0.2s ease, background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.trace-target-on-target {
    background: radial-gradient(circle, rgba(129, 199, 132, 0.75) 0%, rgba(76, 175, 80, 0.35) 60%, transparent 74%);
    box-shadow: 0 0 32px rgba(102, 187, 106, 0.6), 0 0 72px rgba(56, 142, 60, 0.4);
}

.trace-token-on-target {
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.95), rgba(0, 230, 118, 0.85));
    border-color: rgba(255, 255, 255, 0.65);
    box-shadow: 0 16px 32px rgba(0, 230, 118, 0.45), 0 0 22px rgba(0, 230, 118, 0.6);
    color: #FFFFFF;
}

.trace-token:active {
    cursor: grabbing;
}

.trace-token::after {
    content: "●";
    font-size: 18px;
    opacity: 0.85;
}

.trace-instructions {
    font-size: 0.9rem;
    color: rgba(184, 197, 214, 0.92);
    margin-bottom: 8px;
}

.captcha-status {
    min-height: 24px;
    font-size: 0.9rem;
    color: rgba(184, 197, 214, 0.92);
}

.captcha-status strong {
    color: #FFFFFF;
}

.captcha-solved .trace-stage {
    border-color: rgba(0, 230, 118, 0.5);
    box-shadow: 0 0 0 2px rgba(0, 230, 118, 0.3), 0 0 35px rgba(0, 230, 118, 0.18);
}

.captcha-solved .captcha-status {
    color: var(--success);
    font-weight: 600;
}

.captcha-solved .trace-target {
    opacity: 1;
    box-shadow: 0 0 30px rgba(0, 230, 118, 0.65), 0 0 60px rgba(0, 230, 118, 0.35);
}

.contact-cta {
    padding: 80px 0;
    background: rgba(10, 14, 39, 0.9);
    text-align: center;
}

.contact-cta h2 {
    font-size: clamp(32px, 3.5vw, 44px);
    margin-bottom: 16px;
    color: #FFFFFF;
}

.contact-cta p {
    max-width: 680px;
    margin: 0 auto 28px;
}

.contact-cta .cta-button {
    align-self: center;
}

.form-disclaimer {
    font-size: 0.85rem;
    color: rgba(184, 197, 214, 0.75);
}

.form-feedback {
    display: none;
    margin-top: 16px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.form-feedback.is-visible {
    display: block;
}

.form-feedback--success {
    color: var(--secondary);
}

.form-feedback--error {
    color: #FF6B53;
}

noscript {
    display: block;
    margin-top: 16px;
    color: #FFBD2E;
    font-weight: 600;
}

/* Responsive adjustments */

@media (max-width: 1200px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .trust-badges {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }

    .trust-item {
        align-items: center;
        text-align: center;
        max-width: 260px;
    }

    .about-grid,
    .services-grid,
    .pricing-grid,
    .contact-grid,
    .form-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .pricing-summary {
        order: -1;
        justify-self: stretch;
    }

    .hero-visual {
        order: 2;
    }

}

@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .metrics-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .checkbox-grid {
        grid-template-columns: 1fr;
    }

    header {
        padding: 16px 0;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: flex;
    }

    .hero {
        padding: 150px 0 80px;
    }

    .services {
        padding: 70px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .pricing-form,
    .pricing-summary {
        padding: 28px;
    }

    .slider-row {
        flex-direction: column;
        align-items: stretch;
    }

    .slider-row output {
        text-align: left;
    }

    .services-grid,
    .metrics-grid {
        grid-template-columns: 1fr;
    }

    .faq,
    .about,
    .contact-main {
        padding: 70px 0;
    }

    .trace-stage {
        height: 220px;
    }

}

@media (max-width: 540px) {
    .hero-buttons {
        flex-direction: column;
    }

    .cta-button,
    .secondary-button {
        width: 100%;
        text-align: center;
    }

    .contact-form,
    .contact-card {
        padding: 24px;
    }

    .pricing-form,
    .pricing-summary {
        padding: 24px;
    }

    .trace-stage {
        height: 200px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
