:root {
    --deep-magenta: #C21E56;
    --electric-indigo: #4A00E0;
    --vivid-orange: #FF6B35;
    --bright-turquoise: #00F5FF;
    --rich-violet: #8E2DE2;
    --midnight-blue: #0F1419;
    --soft-coral: #FF8C94;
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --medium-gray: #E9ECEF;
    --text-dark: #1A1A2E;
    --text-light: #6B7280;
    --gradient-1: linear-gradient(135deg, var(--electric-indigo) 0%, var(--rich-violet) 100%);
    --gradient-2: linear-gradient(135deg, var(--deep-magenta) 0%, var(--vivid-orange) 100%);
    --gradient-3: linear-gradient(135deg, var(--bright-turquoise) 0%, var(--electric-indigo) 100%);
    --gradient-4: linear-gradient(135deg, var(--vivid-orange) 0%, var(--deep-magenta) 50%, var(--rich-violet) 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.2);
    --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: 'Inter', sans-serif;
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    height: 48px;
    width: 48px;
    object-fit: contain;
}

.brand-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    font-weight: 500;
    font-size: 15px;
    color: var(--text-dark);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 28px;
    height: 2px;
    background: var(--text-dark);
    transition: var(--transition);
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.05) 0%, rgba(107, 45, 158, 0.05) 50%, rgba(255, 0, 110, 0.05) 100%);
    z-index: 0;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 8s ease-in-out infinite;
}

.hero-background::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(107, 45, 158, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 10s ease-in-out infinite reverse;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1) translate(0, 0);
        opacity: 1;
    }

    50% {
        transform: scale(1.1) translate(-20px, 20px);
        opacity: 0.8;
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    padding: 60px 0;
}

.hero-title {
    font-size: 64px;
    margin-bottom: 24px;
    color: var(--midnight-blue);
}

.hero-title .highlight {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.btn {
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background: var(--gradient-1);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(0, 217, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 217, 255, 0.4);
}

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

.btn-outline:hover {
    background: var(--electric-indigo);
    color: var(--white);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-line {
    width: 2px;
    height: 60px;
    background: var(--gradient-1);
    animation: scrollAnim 2s ease-in-out infinite;
}

@keyframes scrollAnim {

    0%,
    100% {
        transform: scaleY(0.5);
        opacity: 0.5;
    }

    50% {
        transform: scaleY(1);
        opacity: 1;
    }
}

.intro-section {
    padding: 120px 0;
    background: var(--white);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-title {
    font-size: 48px;
    margin-bottom: 24px;
    color: var(--midnight-blue);
}

.section-title.center {
    text-align: center;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.intro-text p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.intro-stats {
    display: grid;
    gap: 20px;
}

.stat-card {
    background: var(--light-gray);
    padding: 32px;
    border-radius: 16px;
    border-left: 4px solid transparent;
    border-image: var(--gradient-1);
    border-image-slice: 1;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 15px;
    color: var(--text-dark);
    font-weight: 600;
}

.ai-tech-section {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--light-gray) 100%);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.tech-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border-top: 4px solid transparent;
}

.tech-card:nth-child(1) {
    border-top-color: var(--bright-turquoise);
}

.tech-card:nth-child(2) {
    border-top-color: var(--electric-indigo);
}

.tech-card:nth-child(3) {
    border-top-color: var(--vivid-orange);
}

.tech-card:nth-child(4) {
    border-top-color: var(--deep-magenta);
}

.tech-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.tech-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 24px;
    color: var(--electric-indigo);
}

.tech-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--midnight-blue);
}

.tech-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

.threat-landscape {
    padding: 120px 0;
    background: var(--midnight-blue);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.threat-landscape::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 217, 255, 0.1) 0%, transparent 70%);
}

.landscape-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    position: relative;
    z-index: 1;
}

.threat-landscape .section-title {
    color: var(--white);
}

.landscape-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 17px;
    margin-bottom: 32px;
}

.threat-list {
    list-style: none;
    display: grid;
    gap: 20px;
}

.threat-list li {
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-left: 3px solid var(--bright-turquoise);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.threat-list strong {
    color: var(--bright-turquoise);
    font-size: 16px;
}

.threat-list li {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
}

.landscape-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.threat-sphere {
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(0, 217, 255, 0.3) 0%, rgba(107, 45, 158, 0.2) 50%, transparent 100%);
    border: 2px solid rgba(0, 217, 255, 0.3);
    position: relative;
    animation: sphereRotate 20s linear infinite;
}

.threat-sphere::before,
.threat-sphere::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(0, 217, 255, 0.2);
}

.threat-sphere::before {
    top: 10%;
    left: 10%;
    right: 10%;
    bottom: 10%;
}

.threat-sphere::after {
    top: 20%;
    left: 20%;
    right: 20%;
    bottom: 20%;
    animation: sphereRotate 15s linear infinite reverse;
}

@keyframes sphereRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.ai-capabilities {
    padding: 120px 0;
    background: var(--white);
}

.capabilities-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.capabilities-timeline::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gradient-1);
}

.timeline-item {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
}

.timeline-marker {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(0, 217, 255, 0.3);
    position: relative;
    z-index: 1;
}

.timeline-content {
    flex: 1;
    padding-top: 12px;
}

.timeline-content h3 {
    font-size: 26px;
    margin-bottom: 12px;
    color: var(--midnight-blue);
}

.timeline-content p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.cyber-hygiene {
    padding: 120px 0;
    background: var(--light-gray);
}

.hygiene-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.hygiene-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    width: 100%;
    object-fit: cover;
}

.hygiene-content p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.hygiene-practices {
    display: grid;
    gap: 24px;
}

.practice-item {
    display: flex;
    gap: 20px;
    background: var(--white);
    padding: 24px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.practice-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(8px);
}

.practice-number {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--gradient-1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.practice-text h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--midnight-blue);
}

.practice-text p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

.use-cases {
    padding: 120px 0;
    background: var(--white);
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.case-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.case-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.case-header {
    padding: 24px;
    background: var(--gradient-1);
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
}

.case-body {
    padding: 24px;
}

.case-body p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
}

.methodology {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--light-gray) 0%, var(--white) 100%);
}

.method-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.method-step {
    text-align: center;
    padding: 40px 28px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.method-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    color: var(--electric-indigo);
}

.method-step h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--midnight-blue);
}

.method-step p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

.benefits {
    padding: 120px 0;
    background: var(--midnight-blue);
    color: var(--white);
}

.benefits .section-title {
    color: var(--white);
    text-align: center;
    margin-bottom: 60px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--bright-turquoise);
    transform: translateY(-4px);
}

.benefit-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--bright-turquoise);
}

.benefit-card p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.challenges {
    padding: 120px 0;
    background: var(--light-gray);
}

.challenges-content {
    max-width: 900px;
    margin: 0 auto;
}

.intro-text {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 48px;
    text-align: center;
}

.challenges-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
}

.challenge-item {
    background: var(--white);
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--deep-magenta);
    transition: var(--transition);
}

.challenge-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(8px);
}

.challenge-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--midnight-blue);
}

.challenge-item p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

.future-trends {
    padding: 120px 0;
    background: var(--white);
}

.trends-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.trend-card {
    background: var(--white);
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border-top: 4px solid transparent;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.trend-card:nth-child(1) {
    border-top-color: var(--bright-turquoise);
}

.trend-card:nth-child(2) {
    border-top-color: var(--electric-indigo);
}

.trend-card:nth-child(3) {
    border-top-color: var(--vivid-orange);
}

.trend-card:nth-child(4) {
    border-top-color: var(--deep-magenta);
}

.trend-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.trend-badge {
    display: inline-block;
    padding: 6px 12px;
    background: var(--gradient-1);
    color: var(--white);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.trend-card h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--midnight-blue);
}

.trend-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

.stats-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bright-turquoise) 0%, var(--electric-indigo) 50%, var(--deep-magenta) 100%);
}

.stats-grid-large {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 48px;
}

.stat-large {
    text-align: center;
}

.stat-value {
    font-size: 64px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.stat-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
}

.request-section {
    padding: 120px 0;
    background: var(--light-gray);
}

.request-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: start;
}

.request-intro h2 {
    margin-bottom: 24px;
}

.request-intro>p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.7;
}

.request-benefits {
    display: grid;
    gap: 20px;
}

.request-benefit {
    display: flex;
    align-items: center;
    gap: 16px;
}

.request-benefit svg {
    width: 28px;
    height: 28px;
    color: var(--bright-turquoise);
    flex-shrink: 0;
}

.request-benefit span {
    font-size: 15px;
    color: var(--text-dark);
    font-weight: 500;
}

.request-form-container {
    background: var(--white);
    padding: 48px;
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
}

.multi-step-form {
    width: 100%;
}

.form-progress {
    margin-bottom: 48px;
}

.progress-bar {
    height: 6px;
    background: var(--medium-gray);
    border-radius: 3px;
    margin-bottom: 32px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-1);
    width: 25%;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.progress-steps {
    display: flex;
    justify-content: space-between;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1;
    opacity: 0.4;
    transition: var(--transition);
}

.progress-step.active {
    opacity: 1;
}

.step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--medium-gray);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    transition: var(--transition);
}

.progress-step.active .step-circle {
    background: var(--gradient-1);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(0, 217, 255, 0.3);
}

.step-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-light);
    text-align: center;
}

.progress-step.active .step-label {
    color: var(--text-dark);
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.4s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-step-title {
    font-size: 24px;
    margin-bottom: 32px;
    color: var(--midnight-blue);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--medium-gray);
    border-radius: 10px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
    background: var(--white);
    color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--bright-turquoise);
    box-shadow: 0 0 0 4px rgba(0, 217, 255, 0.1);
}

.checkbox-group {
    display: grid;
    gap: 12px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.checkbox-label:hover {
    background: var(--light-gray);
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.checkbox-label.consent {
    background: var(--light-gray);
    padding: 16px;
    border-radius: 10px;
}

.checkbox-label.consent a {
    color: var(--bright-turquoise);
    text-decoration: underline;
}

.form-navigation {
    display: flex;
    gap: 16px;
    justify-content: space-between;
    margin-top: 32px;
}

.form-navigation .btn {
    flex: 1;
    justify-content: center;
}

.form-summary {
    background: var(--light-gray);
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 24px;
}

.form-summary h4 {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-summary p {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.contact-section {
    padding: 120px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-info p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.contact-details {
    display: grid;
    gap: 32px;
}

.contact-item {
    display: flex;
    gap: 20px;
}

.contact-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: var(--gradient-1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}

.contact-label {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.contact-value {
    font-size: 18px;
    color: var(--text-dark);
    font-weight: 500;
}

.contact-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    width: 100%;
    object-fit: cover;
}

.footer {
    background: var(--midnight-blue);
    color: var(--white);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo {
    height: 40px;
    width: 40px;
}

.footer-brand-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 700;
}

.footer-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.footer-title {
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--white);
    font-weight: 700;
}

.footer-links {
    list-style: none;
    display: grid;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--bright-turquoise);
    padding-left: 4px;
}

.footer-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 52px;
    }

    .section-title {
        font-size: 40px;
    }

    .intro-grid,
    .landscape-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hygiene-grid {
        grid-template-columns: 1fr;
    }

    .request-wrapper {
        grid-template-columns: 1fr;
    }

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

    .challenges-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 40px;
    }

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

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }

    .section-title {
        font-size: 32px;
    }

    .tech-grid,
    .cases-grid,
    .method-steps {
        grid-template-columns: 1fr;
    }

    .capabilities-timeline::before {
        left: 20px;
    }

    .timeline-marker {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }

    .timeline-item {
        gap: 24px;
    }

    .progress-steps {
        flex-wrap: wrap;
        gap: 16px;
    }

    .request-form-container {
        padding: 32px 24px;
    }

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