/* ===================================
   AYM Capital - Main Stylesheet
   =================================== */

/* CSS Variables */
:root {
    --color-bg: #0a0f0d;
    --color-bg-light: #0f1512;
    --color-primary: #1a8754;
    --color-primary-light: #2dd4bf;
    --color-primary-dark: #0d5c3c;
    --color-text: #ffffff;
    --color-text-muted: #8a9a94;
    --color-text-dim: #6b7c76;
    --color-border: rgba(255, 255, 255, 0.08);
    --color-border-light: rgba(255, 255, 255, 0.12);
    --font-primary: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'Space Mono', monospace;
    --transition: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

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

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary-light);
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-gradient {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    border: none;
    font-family: var(--font-primary);
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-text);
}

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

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

.btn-outline:hover {
    background: var(--color-primary);
    color: var(--color-text);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-text);
    backdrop-filter: blur(10px);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-white {
    background: var(--color-text);
    color: var(--color-bg);
}

.btn-white:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.btn-large {
    padding: 18px 36px;
    font-size: 16px;
}

.btn-glow {
    position: relative;
}

.btn-glow::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, var(--color-primary), var(--color-primary-light), var(--color-primary));
    border-radius: 10px;
    z-index: -1;
    opacity: 0;
    transition: opacity var(--transition);
}

.btn-glow:hover::before {
    opacity: 1;
    animation: glow 2s ease-in-out infinite;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.8; }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(26, 135, 84, 0.3); }
    50% { box-shadow: 0 0 40px rgba(26, 135, 84, 0.6); }
}

@keyframes gridMove {
    0% { transform: perspective(500px) rotateX(60deg) translateY(0); }
    100% { transform: perspective(500px) rotateX(60deg) translateY(50px); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Background Elements */
.bg-grid {
    position: fixed;
    width: 200%;
    height: 300%;
    top: -50%;
    left: -50%;
    background-image: 
        linear-gradient(rgba(26, 135, 84, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(26, 135, 84, 0.08) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 25s linear infinite;
    pointer-events: none;
    z-index: 0;
}

.glow-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(26, 135, 84, 0.25) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    animation: pulse 6s ease-in-out infinite;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(45, 212, 191, 0.15) 0%, transparent 70%);
    bottom: 20%;
    left: -150px;
    animation: pulse 8s ease-in-out infinite;
    animation-delay: 2s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(26, 135, 84, 0.2) 0%, transparent 70%);
    top: 50%;
    right: 10%;
    animation: pulse 7s ease-in-out infinite;
    animation-delay: 4s;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 20px 0;
    z-index: 1000;
    transition: all var(--transition);
}

.navbar.scrolled {
    background: rgba(10, 15, 13, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
    padding: 15px 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img {
    height: 45px;
    transition: transform var(--transition);
}

.nav-logo:hover img {
    transform: scale(1.05);
}

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

.nav-link {
    color: var(--color-text-muted);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light));
    transition: width var(--transition);
}

.nav-link:hover {
    color: var(--color-text);
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-phone {
    color: var(--color-text-muted);
    transition: color var(--transition);
}

.nav-phone:hover {
    color: var(--color-primary);
}

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

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-text);
    transition: all var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 40px 80px;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 700px;
    animation: fadeInUp 0.8s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(26, 135, 84, 0.1);
    border: 1px solid rgba(26, 135, 84, 0.3);
    border-radius: 100px;
    padding: 10px 18px;
    margin-bottom: 32px;
}

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

.badge-text {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--color-primary);
    letter-spacing: 1px;
}

.hero-title {
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 28px;
    letter-spacing: -2px;
}

.title-white {
    display: block;
    color: var(--color-text);
}

.title-gradient {
    display: block;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 18px;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 550px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.stat-number {
    font-family: var(--font-mono);
    font-size: clamp(32px, 4vw, 42px);
    font-weight: 700;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 50%, var(--color-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-suffix {
    font-family: var(--font-mono);
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 700;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 50%, var(--color-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    display: block;
    font-size: 12px;
    color: var(--color-text-dim);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 8px;
}

.hero-visual {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    width: 450px;
    height: 450px;
    opacity: 0.8;
    animation: scaleIn 1s ease-out 0.3s both;
}

.chart-svg {
    width: 100%;
    height: 100%;
}

.chart-bar {
    animation: float 4s ease-in-out infinite;
}

.chart-bar:nth-child(1) { animation-delay: 0s; }
.chart-bar:nth-child(2) { animation-delay: 0.1s; }
.chart-bar:nth-child(3) { animation-delay: 0.2s; }
.chart-bar:nth-child(4) { animation-delay: 0.3s; }
.chart-bar:nth-child(5) { animation-delay: 0.4s; }
.chart-bar:nth-child(6) { animation-delay: 0.5s; }
.chart-bar:nth-child(7) { animation-delay: 0.6s; }

/* Data Line Divider */
.data-line {
    height: 1px;
    margin: 0 40px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
    animation: pulse 3s ease-in-out infinite;
}

/* Section Styling */
.section-header {
    margin-bottom: 60px;
}

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

.section-tag {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--color-primary);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.section-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    margin-top: 16px;
    letter-spacing: -1px;
}

.section-desc {
    font-size: 18px;
    color: var(--color-text-muted);
    margin-top: 16px;
    max-width: 600px;
}

.section-header.center .section-desc {
    margin-left: auto;
    margin-right: auto;
}

/* Services Section */
.services {
    padding: 120px 0;
    position: relative;
    z-index: 1;
}

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

.service-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-primary);
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(26, 135, 84, 0.15) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.service-card:hover .card-glow {
    opacity: 1;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(26, 135, 84, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--color-primary);
    transition: all var(--transition);
}

.service-card:hover .service-icon {
    background: var(--color-primary);
    color: var(--color-text);
}

.service-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
}

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

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.feature-tag {
    background: rgba(26, 135, 84, 0.1);
    border: 1px solid rgba(26, 135, 84, 0.2);
    color: var(--color-primary);
    padding: 6px 12px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 500;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-text-muted);
    font-size: 14px;
    font-weight: 500;
    transition: all var(--transition);
}

.service-link:hover {
    color: var(--color-primary);
    gap: 12px;
}

/* Asset Classes Section */
.asset-classes {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(26, 135, 84, 0.03) 0%, transparent 100%);
    position: relative;
    z-index: 1;
}

.assets-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.asset-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: all var(--transition);
}

.asset-item:hover {
    border-color: var(--color-primary);
    background: rgba(26, 135, 84, 0.05);
    transform: translateY(-4px);
}

.asset-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.asset-item span {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-muted);
}

.asset-item:hover span {
    color: var(--color-text);
}

/* Process Section */
.process {
    padding: 120px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(26, 135, 84, 0.05) 50%, transparent 100%);
    position: relative;
    z-index: 1;
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 1000px;
    margin: 60px auto 0;
}

.timeline-line {
    position: absolute;
    top: 40px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light), var(--color-primary));
    opacity: 0.3;
}

.process-step {
    text-align: center;
    width: 200px;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-family: var(--font-mono);
    font-size: 20px;
    font-weight: 700;
    box-shadow: 0 0 40px rgba(26, 135, 84, 0.3);
    transition: all var(--transition);
}

.process-step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 0 60px rgba(26, 135, 84, 0.5);
}

.step-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.step-desc {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* Why AYM Section */
.why-aym {
    padding: 120px 0;
    position: relative;
    z-index: 1;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-desc {
    font-size: 18px;
    color: var(--color-text-muted);
    line-height: 1.8;
    margin: 24px 0 40px;
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.why-feature {
    display: flex;
    gap: 20px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(26, 135, 84, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
}

.feature-content p {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.why-visual {
    display: flex;
    justify-content: center;
}

.visual-card {
    background: linear-gradient(135deg, rgba(26, 135, 84, 0.1) 0%, rgba(45, 212, 191, 0.05) 100%);
    border: 1px solid rgba(26, 135, 84, 0.2);
    border-radius: 24px;
    padding: 48px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

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

.big-number {
    display: block;
    font-family: var(--font-mono);
    font-size: 56px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-text {
    display: block;
    font-size: 14px;
    color: var(--color-text-muted);
    margin-top: 8px;
}

/* Testimonials */
.testimonials {
    padding: 120px 0;
    background: var(--color-bg-light);
    position: relative;
    z-index: 1;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 32px;
    transition: all var(--transition);
}

.testimonial-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-4px);
}

.quote-icon {
    font-size: 48px;
    font-weight: 700;
    color: var(--color-primary);
    opacity: 0.5;
    line-height: 1;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 16px;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    font-size: 15px;
}

.author-title {
    font-size: 13px;
    color: var(--color-text-dim);
}

/* CTA Section */
.cta-section {
    padding: 120px 0;
    position: relative;
    z-index: 1;
}

.cta-card {
    background: linear-gradient(135deg, rgba(26, 135, 84, 0.15) 0%, rgba(45, 212, 191, 0.08) 100%);
    border: 1px solid rgba(26, 135, 84, 0.3);
    border-radius: 24px;
    padding: 80px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 30%, rgba(26, 135, 84, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.cta-title {
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 700;
    margin-bottom: 16px;
    position: relative;
}

.cta-desc {
    font-size: 18px;
    color: var(--color-text-muted);
    margin-bottom: 40px;
    position: relative;
}

.cta-form {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.cta-form input,
.cta-form select,
.cta-form textarea {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--color-text);
    font-size: 15px;
    font-family: var(--font-primary);
    transition: all var(--transition);
}

.cta-form input::placeholder,
.cta-form textarea::placeholder {
    color: var(--color-text-dim);
}

.cta-form input:focus,
.cta-form select:focus,
.cta-form textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    background: rgba(26, 135, 84, 0.05);
}

.cta-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236b7c76' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 48px;
}

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

.cta-form textarea {
    resize: vertical;
    min-height: 120px;
    margin-bottom: 24px;
}

.cta-form button {
    width: 100%;
}

.cta-note {
    font-size: 14px;
    color: var(--color-text-dim);
    margin-top: 24px;
    position: relative;
}

.cta-note a {
    color: var(--color-primary);
    font-weight: 600;
}

/* Footer */
.footer {
    padding: 80px 0 40px;
    border-top: 1px solid var(--color-border);
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
}

.footer-logo {
    height: 40px;
    margin-bottom: 16px;
}

.footer-tagline {
    font-size: 14px;
    color: var(--color-text-dim);
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    transition: all var(--transition);
}

.footer-social a:hover {
    background: var(--color-primary);
    color: var(--color-text);
}

.footer-links h5 {
    font-size: 12px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-links a {
    display: block;
    font-size: 14px;
    color: var(--color-text-dim);
    margin-bottom: 12px;
    transition: color var(--transition);
}

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

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid var(--color-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    font-size: 13px;
    color: var(--color-text-dim);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-size: 13px;
    color: var(--color-text-dim);
    transition: color var(--transition);
}

.footer-legal a:hover {
    color: var(--color-text);
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-visual {
        width: 350px;
        height: 350px;
        right: 20px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 15, 13, 0.98);
        backdrop-filter: blur(20px);
        padding: 20px;
        flex-direction: column;
        gap: 0;
        border-bottom: 1px solid var(--color-border);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu .nav-link {
        padding: 15px 20px;
        border-bottom: 1px solid var(--color-border);
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-visual {
        display: none;
    }
    
    .hero {
        padding: 120px 24px 80px;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .assets-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .stat {
        display: flex;
        align-items: baseline;
        gap: 8px;
    }
    
    .stat-label {
        margin-top: 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .process-timeline {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    
    .timeline-line {
        display: none;
    }
    
    .process-step {
        width: 100%;
        max-width: 300px;
    }
    
    .assets-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .cta-card {
        padding: 60px 24px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }
    
    .assets-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .section-title {
        font-size: 28px;
    }
}
