/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background: #0f0f23;
    color: #e0e0e0;
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100vw;
}
main, section, .container { overflow-wrap: break-word; word-wrap: break-word; }
a { color: #667eea; text-decoration: none; transition: color 0.3s; }
a:hover { color: #00d4ff; }
img { max-width: 100%; height: auto; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== NAVIGATION ===== */
.main-nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(15, 15, 35, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: background 0.3s, box-shadow 0.3s;
}
.main-nav.scrolled {
    background: rgba(15, 15, 35, 0.95);
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.nav-container {
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between;
    height: 72px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-icon {
    width: 40px; height: 40px; border-radius: 10px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 16px; color: #fff;
}
.logo-text { font-size: 18px; font-weight: 700; color: #fff; }
.nav-links {
    display: flex; align-items: center; gap: 8px;
    list-style: none;
}
.nav-links a {
    padding: 8px 12px; border-radius: 8px; font-size: 14px;
    font-weight: 500; color: #b0b0c0; transition: all 0.3s;
    white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: #fff; background: rgba(255,255,255,0.08); }
.nav-cta {
    background: linear-gradient(135deg, #667eea, #764ba2) !important;
    color: #fff !important; font-weight: 600 !important;
}
.nav-cta:hover { opacity: 0.9; transform: translateY(-1px); }
.nav-toggle {
    display: none; background: none; border: none; cursor: pointer;
    width: 32px; height: 24px; position: relative;
}
.nav-toggle span {
    position: absolute; left: 0; width: 100%; height: 2px;
    background: #fff; border-radius: 2px; transition: 0.3s;
}
.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.nav-toggle span:nth-child(3) { bottom: 0; }
.nav-toggle.active span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

/* ===== NAV DROPDOWN ===== */
.nav-dropdown { position: relative; }
.nav-dropdown > a { cursor: pointer; }
.nav-dropdown-menu {
    display: none; position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
    min-width: 220px; background: rgba(15,15,35,0.98); backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.08); border-radius: 12px;
    padding: 8px 0; padding-top: 16px; margin-top: 0; list-style: none;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    z-index: 100;
}
.nav-dropdown-menu::before {
    content: ''; position: absolute; top: -8px; left: 0; right: 0; height: 16px;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu li a {
    display: flex; align-items: center; gap: 8px;
    padding: 10px 20px !important; font-size: 14px !important;
    color: #b0b0c0 !important; border-radius: 0 !important;
    transition: background 0.2s;
}
.nav-dropdown-menu li a:hover { background: rgba(255,255,255,0.06) !important; color: #fff !important; }
.nav-dropdown-menu li a.active { color: #00d4ff !important; }
.nav-dropdown-section {
    padding: 8px 20px 4px; font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1px; color: #555;
}
.nav-dropdown-section:not(:first-child) { border-top: 1px solid rgba(255,255,255,0.06); margin-top: 4px; padding-top: 12px; }
.nav-dropdown-tag {
    font-size: 9px; font-weight: 700; text-transform: uppercase;
    padding: 2px 6px; border-radius: 4px; letter-spacing: 0.5px;
    background: linear-gradient(135deg, #667eea, #764ba2); color: #fff;
}
.nav-dropdown-tag-free {
    font-size: 9px; font-weight: 700; text-transform: uppercase;
    padding: 2px 6px; border-radius: 4px; letter-spacing: 0.5px;
    background: linear-gradient(135deg, #10b981, #059669); color: #fff;
}
.nav-dropdown-soon { color: #555 !important; font-style: italic; cursor: default; }
.nav-dropdown-soon:hover { background: none !important; color: #555 !important; }

@media (max-width: 768px) {
    .nav-dropdown-menu {
        position: static; transform: none; margin-top: 0;
        background: rgba(255,255,255,0.03); border: none;
        border-radius: 8px; box-shadow: none;
        padding: 4px 0 4px 12px;
    }
    .nav-dropdown:hover .nav-dropdown-menu { display: block; }
    .nav-dropdown.open .nav-dropdown-menu { display: block; }
}

/* ===== TICKER BAR ===== */
.ticker-bar {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #667eea, #764ba2);
    overflow: hidden;
    white-space: nowrap;
    z-index: 999;
}
.ticker-track {
    display: flex;
    animation: ticker-scroll 30s linear infinite;
}
.ticker-content {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    padding: 35px 0 20px;
    line-height: 1;
}
.ticker-icon,
.ticker-sep {
    line-height: 1;
}
.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    line-height: 1;
    white-space: nowrap;
    flex-shrink: 0;
}
.ticker-icon {
    font-size: 16px;
    line-height: 1;
    flex-shrink: 0;
}
.ticker-sep {
    color: rgba(255,255,255,0.4);
    font-size: 10px;
    margin: 0 24px;
    flex-shrink: 0;
    white-space: nowrap;
}
@keyframes ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@media (max-width: 768px) {
    .ticker-item { font-size: 11px; }
    .ticker-sep { margin: 0 16px; }
    .ticker-track { animation-duration: 15s; }
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh; display: flex; align-items: center;
    padding: 120px 0 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(102,126,234,0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 20%, rgba(118,75,162,0.1) 0%, transparent 50%);
    position: relative; overflow: hidden;
}
.hero::before {
    content: ''; position: absolute; top: -50%; right: -20%;
    width: 600px; height: 600px; border-radius: 50%;
    background: radial-gradient(circle, rgba(102,126,234,0.08), transparent 70%);
    animation: float 20s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-40px, 40px); }
}
.hero-content { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 16px; border-radius: 50px;
    background: rgba(102,126,234,0.15); border: 1px solid rgba(102,126,234,0.3);
    font-size: 13px; font-weight: 600; color: #667eea; margin-bottom: 20px;
}
.hero h1 { font-size: 56px; font-weight: 800; line-height: 1.1; margin-bottom: 20px; }
.hero h1 .gradient-text {
    background: linear-gradient(135deg, #667eea, #764ba2, #00d4ff);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero p { font-size: 18px; color: #8888a0; margin-bottom: 32px; line-height: 1.7; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-visual {
    display: flex; align-items: center; justify-content: center;
    position: relative;
}
.hero-graphic {
    width: 100%; max-width: 500px; aspect-ratio: 1;
    background: linear-gradient(135deg, rgba(102,126,234,0.1), rgba(118,75,162,0.1));
    border-radius: 24px; border: 1px solid rgba(255,255,255,0.05);
    display: grid; grid-template-columns: 1fr 1fr; gap: 16px; padding: 32px;
    position: relative;
}
.hero-stat-card {
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px; padding: 24px; text-align: center;
    backdrop-filter: blur(10px); transition: transform 0.3s;
    position: relative; overflow: hidden; z-index: 1;
}
.hero-stat-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    opacity: 0.06; z-index: -1;
    background-size: 60% 60%; background-repeat: no-repeat;
    background-position: center center;
    transition: opacity 0.3s, transform 0.3s;
}
.hero-stat-card:hover::before { opacity: 0.1; transform: scale(1.08); }

/* Experience — hourglass/clock scene */
.stat-experience {
    background: linear-gradient(135deg, rgba(255,180,50,0.08), rgba(255,120,20,0.04));
    border-color: rgba(255,180,50,0.15);
}
.stat-experience:hover { border-color: rgba(255,180,50,0.35); box-shadow: 0 8px 30px rgba(255,180,50,0.08); }
.stat-experience .stat-number {
    background: linear-gradient(135deg, #ffb432, #ff8814) !important;
    -webkit-background-clip: text !important; -webkit-text-fill-color: transparent !important;
}
.stat-experience::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 120' fill='none'%3E%3Ccircle cx='60' cy='60' r='45' stroke='%23ffb432' stroke-width='2'/%3E%3Ccircle cx='60' cy='60' r='38' stroke='%23ffb432' stroke-width='1' stroke-dasharray='4 4'/%3E%3Cline x1='60' y1='25' x2='60' y2='60' stroke='%23ffb432' stroke-width='3' stroke-linecap='round'/%3E%3Cline x1='60' y1='60' x2='80' y2='72' stroke='%23ffb432' stroke-width='2.5' stroke-linecap='round'/%3E%3Ccircle cx='60' cy='60' r='3' fill='%23ffb432'/%3E%3Cline x1='60' y1='17' x2='60' y2='22' stroke='%23ffb432' stroke-width='2'/%3E%3Cline x1='60' y1='98' x2='60' y2='103' stroke='%23ffb432' stroke-width='2'/%3E%3Cline x1='17' y1='60' x2='22' y2='60' stroke='%23ffb432' stroke-width='2'/%3E%3Cline x1='98' y1='60' x2='103' y2='60' stroke='%23ffb432' stroke-width='2'/%3E%3C/svg%3E");
}

/* Projects — rocket launching with trail */
.stat-projects {
    background: linear-gradient(135deg, rgba(0,180,255,0.08), rgba(102,126,234,0.04));
    border-color: rgba(0,180,255,0.15);
}
.stat-projects:hover { border-color: rgba(0,180,255,0.35); box-shadow: 0 8px 30px rgba(0,180,255,0.08); }
.stat-projects .stat-number {
    background: linear-gradient(135deg, #00b4ff, #667eea) !important;
    -webkit-background-clip: text !important; -webkit-text-fill-color: transparent !important;
}
.stat-projects::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 120' fill='none'%3E%3Cpath d='M65 20c0 0-5 15-5 35s-15 30-15 30' stroke='%2300b4ff' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M55 20c0 0 5 15 5 35s15 30 15 30' stroke='%2300b4ff' stroke-width='2' stroke-linecap='round'/%3E%3Cellipse cx='60' cy='32' rx='8' ry='14' stroke='%2300b4ff' stroke-width='2.5'/%3E%3Ccircle cx='60' cy='30' r='3' fill='%2300b4ff'/%3E%3Cpath d='M52 46l-10 8 6 2' stroke='%2300b4ff' stroke-width='1.5'/%3E%3Cpath d='M68 46l10 8-6 2' stroke='%2300b4ff' stroke-width='1.5'/%3E%3Cpath d='M55 55c-3 8-6 20-10 30' stroke='%2300b4ff' stroke-width='1.5' stroke-dasharray='3 3'/%3E%3Cpath d='M65 55c3 8 6 20 10 30' stroke='%2300b4ff' stroke-width='1.5' stroke-dasharray='3 3'/%3E%3Cpath d='M56 60c-2 5-3 15-8 28' stroke='%2300b4ff' stroke-width='1' stroke-dasharray='2 4'/%3E%3Cpath d='M64 60c2 5 3 15 8 28' stroke='%2300b4ff' stroke-width='1' stroke-dasharray='2 4'/%3E%3Ccircle cx='35' cy='95' r='2' fill='%2300b4ff' opacity='0.5'/%3E%3Ccircle cx='85' cy='95' r='2' fill='%2300b4ff' opacity='0.5'/%3E%3Ccircle cx='50' cy='100' r='1.5' fill='%2300b4ff' opacity='0.4'/%3E%3Ccircle cx='70' cy='100' r='1.5' fill='%2300b4ff' opacity='0.4'/%3E%3C/svg%3E");
}

/* Clients — group of people */
.stat-clients {
    background: linear-gradient(135deg, rgba(0,200,150,0.08), rgba(0,230,118,0.04));
    border-color: rgba(0,200,150,0.15);
}
.stat-clients:hover { border-color: rgba(0,200,150,0.35); box-shadow: 0 8px 30px rgba(0,200,150,0.08); }
.stat-clients .stat-number {
    background: linear-gradient(135deg, #00c896, #00e676) !important;
    -webkit-background-clip: text !important; -webkit-text-fill-color: transparent !important;
}
.stat-clients::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 120' fill='none'%3E%3Ccircle cx='60' cy='38' r='12' stroke='%2300c896' stroke-width='2.5'/%3E%3Cpath d='M38 85c0-12 10-22 22-22s22 10 22 22' stroke='%2300c896' stroke-width='2.5' stroke-linecap='round'/%3E%3Ccircle cx='30' cy='45' r='9' stroke='%2300c896' stroke-width='1.5'/%3E%3Cpath d='M12 82c0-10 8-18 18-18' stroke='%2300c896' stroke-width='1.5' stroke-linecap='round'/%3E%3Ccircle cx='90' cy='45' r='9' stroke='%2300c896' stroke-width='1.5'/%3E%3Cpath d='M108 82c0-10-8-18-18-18' stroke='%2300c896' stroke-width='1.5' stroke-linecap='round'/%3E%3Ccircle cx='42' cy='55' r='6' stroke='%2300c896' stroke-width='1' opacity='0.5'/%3E%3Ccircle cx='78' cy='55' r='6' stroke='%2300c896' stroke-width='1' opacity='0.5'/%3E%3C/svg%3E");
}

/* Plugins — code editor with brackets */
.stat-plugins {
    background: linear-gradient(135deg, rgba(168,85,247,0.08), rgba(118,75,162,0.04));
    border-color: rgba(168,85,247,0.15);
}
.stat-plugins:hover { border-color: rgba(168,85,247,0.35); box-shadow: 0 8px 30px rgba(168,85,247,0.08); }
.stat-plugins .stat-number {
    background: linear-gradient(135deg, #a855f7, #c084fc) !important;
    -webkit-background-clip: text !important; -webkit-text-fill-color: transparent !important;
}
.stat-plugins::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 120' fill='none'%3E%3Crect x='15' y='20' width='90' height='80' rx='8' stroke='%23a855f7' stroke-width='2'/%3E%3Cline x1='15' y1='36' x2='105' y2='36' stroke='%23a855f7' stroke-width='1.5'/%3E%3Ccircle cx='26' cy='28' r='3' fill='%23a855f7' opacity='0.6'/%3E%3Ccircle cx='36' cy='28' r='3' fill='%23a855f7' opacity='0.4'/%3E%3Ccircle cx='46' cy='28' r='3' fill='%23a855f7' opacity='0.3'/%3E%3Cpolyline points='35 58 25 68 35 78' stroke='%23a855f7' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpolyline points='85 58 95 68 85 78' stroke='%23a855f7' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cline x1='65' y1='50' x2='55' y2='86' stroke='%23a855f7' stroke-width='2' stroke-linecap='round'/%3E%3Cline x1='42' y1='48' x2='70' y2='48' stroke='%23a855f7' stroke-width='1' opacity='0.3'/%3E%3Cline x1='45' y1='54' x2='62' y2='54' stroke='%23a855f7' stroke-width='1' opacity='0.3'/%3E%3Cline x1='70' y1='82' x2='88' y2='82' stroke='%23a855f7' stroke-width='1' opacity='0.3'/%3E%3Cline x1='72' y1='88' x2='82' y2='88' stroke='%23a855f7' stroke-width='1' opacity='0.3'/%3E%3C/svg%3E");
}
.hero-stat-card:hover { transform: translateY(-4px); }
.hero-stat-card .stat-number {
    font-size: 36px; font-weight: 800;
    background: linear-gradient(135deg, #667eea, #00d4ff);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    position: relative; z-index: 2;
}
.hero-stat-card .stat-label { font-size: 13px; color: #8888a0; margin-top: 4px; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 28px; border-radius: 12px; font-size: 15px;
    font-weight: 600; cursor: pointer; border: none;
    transition: all 0.3s; text-decoration: none;
}
.btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 28px; border-radius: 12px; font-size: 15px;
    font-weight: 600; cursor: pointer; border: none;
    transition: all 0.3s; text-decoration: none;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff; box-shadow: 0 4px 15px rgba(102,126,234,0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(102,126,234,0.4); color: #fff; }
.btn-outline, .btn-secondary {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 28px; border-radius: 12px; font-size: 15px;
    font-weight: 600; cursor: pointer; border: none;
    transition: all 0.3s; text-decoration: none;
    background: transparent; color: #e0e0e0;
    border: 1px solid rgba(255,255,255,0.2);
}
.btn-outline:hover, .btn-secondary:hover { border-color: #667eea; color: #667eea; }
.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn-lg { padding: 18px 36px; font-size: 17px; }

/* ===== SECTIONS ===== */
.section { padding: 60px 0; }
.section-dark { background: #0f0f23; }
.section-darker { background: #0a0a1a; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header .badge {
    display: inline-block; padding: 6px 16px; border-radius: 50px;
    background: rgba(102,126,234,0.15); border: 1px solid rgba(102,126,234,0.3);
    font-size: 13px; font-weight: 600; color: #667eea; margin-bottom: 16px;
}
.section-header h2 {
    font-size: 42px; font-weight: 800; margin-bottom: 16px;
}
.section-header h2 .gradient-text {
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section-header p { font-size: 18px; color: #8888a0; max-width: 600px; margin: 0 auto; }

/* ===== CARDS ===== */
.card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px; padding: 32px;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}
.card:hover {
    transform: translateY(-4px);
    border-color: rgba(102,126,234,0.3);
    box-shadow: 0 8px 30px rgba(102,126,234,0.1);
}
.card-icon {
    width: 56px; height: 56px; border-radius: 14px;
    background: linear-gradient(135deg, rgba(102,126,234,0.2), rgba(118,75,162,0.2));
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; margin-bottom: 20px;
}
.card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; color: #fff; }
.card p { color: #8888a0; font-size: 15px; line-height: 1.7; }

/* ===== GRID LAYOUTS ===== */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ===== SERVICES PAGE ===== */
.service-detail {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
    align-items: center; padding: 60px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.service-detail:nth-child(even) { direction: rtl; }
.service-detail:nth-child(even) > * { direction: ltr; }
.service-detail h3 { font-size: 28px; font-weight: 700; margin-bottom: 16px; color: #fff; }
.service-detail p { color: #8888a0; line-height: 1.8; margin-bottom: 16px; }
.service-features { list-style: none; }
.service-features li {
    padding: 8px 0; color: #b0b0c0; font-size: 15px;
    display: flex; align-items: center; gap: 10px;
}
.service-features li::before {
    content: ''; width: 8px; height: 8px; border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    flex-shrink: 0;
}
.service-visual {
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px; padding: 40px; min-height: 300px;
    display: flex; align-items: center; justify-content: center;
    font-size: 64px;
}

/* ===== ABOUT PAGE ===== */
.about-hero {
    padding: 140px 0 80px;
    background: radial-gradient(ellipse at 30% 40%, rgba(102,126,234,0.12) 0%, transparent 60%);
}
.about-hero .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-hero h1 { font-size: 48px; font-weight: 800; margin-bottom: 20px; }
.about-hero p { font-size: 18px; color: #8888a0; line-height: 1.8; }
.timeline { position: relative; padding: 40px 0; max-width: 900px; margin: 0 auto; }
.timeline::before {
    content: ''; position: absolute; left: 50%; top: 0; bottom: 0;
    width: 2px; background: linear-gradient(to bottom, #667eea, #764ba2);
    transform: translateX(-50%);
}
.timeline-item {
    display: flex; align-items: flex-start; margin-bottom: 40px;
    position: relative;
}
.timeline-left { flex: 1; text-align: right; padding-right: 40px; }
.timeline-right { flex: 1; text-align: left; padding-left: 40px; }
.timeline-left .card, .timeline-right .card { text-align: left; }
.timeline-dot {
    width: 16px; height: 16px; border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    box-shadow: 0 0 20px rgba(102,126,234,0.5);
    flex-shrink: 0; margin-top: 20px;
}
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* ===== CONTACT FORM ===== */
.contact-section {
    padding: 140px 0 100px;
    background: radial-gradient(ellipse at 70% 30%, rgba(118,75,162,0.1) 0%, transparent 50%);
}
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; }
.contact-info h1 { font-size: 42px; font-weight: 800; margin-bottom: 20px; }
.contact-info p { color: #8888a0; font-size: 16px; line-height: 1.8; margin-bottom: 32px; }
.contact-detail {
    display: flex; align-items: center; gap: 16px;
    padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.05);
}
.contact-detail-icon {
    width: 48px; height: 48px; border-radius: 12px;
    background: rgba(102,126,234,0.15); display: flex;
    align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0;
}
.form-card {
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px; padding: 40px; backdrop-filter: blur(10px);
}
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block; font-size: 14px; font-weight: 600;
    color: #b0b0c0; margin-bottom: 8px;
}
.form-control {
    width: 100%; padding: 14px 18px; border-radius: 12px;
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    color: #e0e0e0; font-size: 15px; font-family: inherit;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.form-control:focus {
    outline: none; border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102,126,234,0.2);
}
.form-control::placeholder { color: #555; }
textarea.form-control { min-height: 120px; resize: vertical; }
select.form-control { cursor: pointer; }
select.form-control option { background: #1a1a2e; color: #e0e0e0; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-message {
    padding: 14px 18px; border-radius: 12px; margin-bottom: 20px;
    font-size: 14px; display: none;
}
.form-message.success { display: block; background: rgba(0,212,255,0.1); border: 1px solid rgba(0,212,255,0.3); color: #00d4ff; }
.form-message.error { display: block; background: rgba(255,50,50,0.1); border: 1px solid rgba(255,50,50,0.3); color: #ff5050; }

/* ===== FAQ ===== */
.faq-section { padding: 140px 0 100px; }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px; margin-bottom: 12px;
    background: rgba(255,255,255,0.02);
    overflow: hidden; transition: border-color 0.3s;
}
.faq-item:hover { border-color: rgba(102,126,234,0.3); }
.faq-item.active { border-color: rgba(102,126,234,0.5); }
.faq-question {
    width: 100%; padding: 20px 24px; background: none; border: none;
    color: #e0e0e0; font-size: 16px; font-weight: 600;
    text-align: left; cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    font-family: inherit;
}
.faq-question:hover { color: #fff; }
.faq-arrow {
    width: 24px; height: 24px; transition: transform 0.3s;
    display: flex; align-items: center; justify-content: center;
    color: #667eea; flex-shrink: 0;
}
.faq-item.active .faq-arrow { transform: rotate(180deg); }
.faq-answer {
    max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s;
}
.faq-item.active .faq-answer { max-height: 500px; }
.faq-answer-inner { padding: 0 24px 20px; color: #8888a0; line-height: 1.8; font-size: 15px; }

/* ===== ORDER PAGE ===== */
.order-section {
    padding: 140px 0 100px;
    background: radial-gradient(ellipse at 50% 20%, rgba(102,126,234,0.1) 0%, transparent 50%);
}
.order-container { max-width: 700px; margin: 0 auto; }
.order-steps {
    display: flex; justify-content: center; gap: 40px; margin-bottom: 48px;
}
.order-step {
    display: flex; align-items: center; gap: 12px;
    color: #555; font-size: 14px; font-weight: 600;
}
.order-step.active { color: #667eea; }
.order-step.completed { color: #00d4ff; }
.step-number {
    width: 36px; height: 36px; border-radius: 50%;
    border: 2px solid currentColor; display: flex;
    align-items: center; justify-content: center;
    font-size: 14px; font-weight: 700;
}
.order-step.active .step-number {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-color: transparent; color: #fff;
}
.service-options { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 32px; }
.service-option {
    padding: 20px; border-radius: 12px; cursor: pointer;
    border: 2px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.02);
    transition: all 0.3s; text-align: center;
}
.service-option:hover { border-color: rgba(102,126,234,0.3); }
.service-option.selected { border-color: #667eea; background: rgba(102,126,234,0.1); }
.service-option input[type="radio"] { display: none; }
.service-option-icon { font-size: 32px; margin-bottom: 8px; display: block; }
.service-option-name { font-weight: 600; color: #fff; font-size: 15px; }

/* ===== STATS BAR ===== */
.stats-bar {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(102,126,234,0.1), rgba(118,75,162,0.1));
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.stats-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px;
    max-width: 1200px; margin: 0 auto; padding: 0 24px; text-align: center;
}
.stat-item .stat-number {
    font-size: 48px; font-weight: 800;
    background: linear-gradient(135deg, #667eea, #00d4ff);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.stat-item .stat-label { font-size: 15px; color: #8888a0; margin-top: 8px; }

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 100px 0; text-align: center;
    background: linear-gradient(135deg, rgba(102,126,234,0.15), rgba(118,75,162,0.15));
    position: relative;
}
.cta-section h2 { font-size: 42px; font-weight: 800; margin-bottom: 16px; }
.cta-section p { font-size: 18px; color: #8888a0; margin-bottom: 32px; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== FOOTER ===== */
.main-footer {
    background: #080816;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 60px 0 0;
}
.footer-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-desc { color: #666; font-size: 14px; line-height: 1.8; }
.footer-col h4 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: #666; font-size: 14px; transition: color 0.3s; }
.footer-col a:hover { color: #667eea; }
.footer-bottom {
    margin-top: 40px; padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    text-align: center; font-size: 13px; color: #444;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
    opacity: 0; transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== PAGE HEADER ===== */
.page-header {
    padding: 140px 0 60px; text-align: center;
    background: radial-gradient(ellipse at 50% 30%, rgba(102,126,234,0.12) 0%, transparent 60%);
}
.page-header h1 { font-size: 48px; font-weight: 800; margin-bottom: 16px; }
.page-header p { font-size: 18px; color: #8888a0; max-width: 600px; margin: 0 auto; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-content { grid-template-columns: 1fr; text-align: center; }
    .hero-visual { order: -1; }
    .hero-buttons { justify-content: center; }
    .hero h1 { font-size: 42px; }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .service-detail { grid-template-columns: 1fr; }
    .service-detail:nth-child(even) { direction: ltr; }
    .contact-grid { grid-template-columns: 1fr; }
    .about-hero .container { grid-template-columns: 1fr; }
    .timeline::before { left: 8px; }
    .timeline-item { flex-wrap: wrap; }
    .timeline-left, .timeline-right { flex-basis: 100%; padding: 0 0 0 36px; text-align: left; }
    .timeline-left:empty, .timeline-right:empty { display: none; padding: 0; }
    .timeline-dot { position: absolute; left: 0; margin-top: 20px; }
    .values-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .nav-toggle { display: block; }
    .nav-links {
        display: none; position: absolute; top: 72px; left: 0; right: 0;
        background: rgba(15,15,35,0.98); backdrop-filter: blur(20px);
        flex-direction: column; padding: 24px;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        max-height: calc(100vh - 72px); overflow-y: auto;
    }
    .nav-links.active { display: flex; }
    .nav-links a { width: 100%; padding: 12px 16px; }
    .hero { padding: 100px 0 60px; min-height: auto; }
    .hero h1 { font-size: 32px; }
    .hero-graphic { max-width: 300px; padding: 16px; gap: 12px; }
    .hero-stat-card .stat-number { font-size: 24px; }
    .section-header h2 { font-size: 32px; }
    .grid-2, .grid-3 { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .order-steps { flex-direction: column !important; align-items: center !important; gap: 12px !important; }
    .order-step { width: 240px !important; }
    .service-options { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
    .stat-item .stat-number { font-size: 36px; }
    .cta-section h2 { font-size: 32px; }
    .footer-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    .page-header h1 { font-size: 36px; }
    .page-header { padding-bottom: 0; }
    .section { padding: 20px 0; }
}

/* ===== DYNAMIC PAGE BLOCKS ===== */
.block-heading { margin: 24px 0 12px; }
.block-text { margin: 16px 0; line-height: 1.8; }
.block-image { margin: 24px 0; border-radius: 12px; overflow: hidden; }
.block-image img { width: 100%; display: block; }
.block-image figcaption { font-size: 13px; color: #8888a0; margin-top: 8px; text-align: center; }
.block-button { margin: 24px 0; }
.block-spacer { height: 40px; }
.block-divider { border: none; height: 1px; background: rgba(255,255,255,0.1); margin: 32px 0; }
.block-video { margin: 24px 0; border-radius: 12px; overflow: hidden; }
.block-video iframe { width: 100%; aspect-ratio: 16/9; border: none; }
.block-columns { display: grid; gap: 24px; margin: 24px 0; }
.block-columns.cols-2 { grid-template-columns: 1fr 1fr; }
.block-columns.cols-3 { grid-template-columns: 1fr 1fr 1fr; }
.block-columns.cols-4 { grid-template-columns: 1fr 1fr 1fr 1fr; }
.block-iconbox { text-align: center; padding: 32px; }
.block-iconbox .icon { font-size: 48px; margin-bottom: 16px; }
.block-iconbox h3 { font-size: 20px; margin-bottom: 8px; color: #fff; }
.block-testimonial {
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px; padding: 32px; margin: 24px 0;
}
.block-testimonial blockquote { font-style: italic; font-size: 18px; color: #b0b0c0; margin-bottom: 16px; }
.block-testimonial .author { font-weight: 600; color: #667eea; }
.block-cta {
    background: linear-gradient(135deg, rgba(102,126,234,0.2), rgba(118,75,162,0.2));
    border-radius: 20px; padding: 60px; text-align: center; margin: 40px 0;
}
.block-cta h2 { font-size: 32px; margin-bottom: 16px; }
.block-cta p { color: #8888a0; margin-bottom: 24px; }
.block-gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 12px; margin: 24px 0; }
.block-gallery img { border-radius: 8px; width: 100%; height: 200px; object-fit: cover; }
.block-code { background: #1a1a2e; border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 20px; margin: 24px 0; overflow-x: auto; }
.block-code code { font-family: 'Fira Code', 'Consolas', monospace; font-size: 14px; color: #e0e0e0; white-space: pre; }
.block-html { margin: 24px 0; }

@media (max-width: 768px) {
    .block-columns.cols-2, .block-columns.cols-3, .block-columns.cols-4 { grid-template-columns: 1fr; }
}
