/* ===== HOME PAGE ===== */
.btn-light { display: inline-flex; align-items: center; gap: 8px; background: #fff; color: var(--text); padding: 13px 24px; border-radius: 100px; font-size: 14px; font-weight: 600; font-family: 'Comfortaa', sans-serif; border: 1px solid var(--border); transition: all 0.3s ease; }
.btn-light:hover { border-color: #ccc; }

/* HERO */
.hero { padding: 140px 60px 80px; min-height: 90vh; display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -200px; right: -100px; width: 700px; height: 700px; background: radial-gradient(circle, rgba(0, 136, 255, 0.06) 0%, transparent 70%); pointer-events: none; }
.hero::after { content: ''; position: absolute; bottom: -100px; left: -100px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(0, 136, 255, 0.04) 0%, transparent 70%); pointer-events: none; }
.hero-inner { max-width: 1200px; margin: 0 auto; width: 100%; position: relative; z-index: 1; }
.hero-tags { display: flex; gap: 8px; margin-bottom: 28px; }
.hero h1 { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: clamp(40px, 7vw, 80px); line-height: 0.95; letter-spacing: -0.02em; }
.hero h1 .muted { color: var(--muted); }
.hero-sub { margin-top: 28px; max-width: 520px; }
.hero-sub p { font-size: 17px; color: var(--body-text); line-height: 1.7; }
.hero-btns { display: flex; gap: 12px; margin-top: 36px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 40px; margin-top: 56px; padding-top: 40px; border-top: 1px solid var(--border); }
.hero-stat-num { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 36px; color: var(--text); }
.hero-stat-label { font-size: 13px; color: var(--muted); margin-top: 4px; }
@media (max-width: 810px) { .hero { padding: 120px 24px 60px; } .hero-stats { gap: 24px; } }

/* TICKER */
.ticker { padding: 60px 0; overflow: hidden; background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.ticker-track { display: flex; gap: 20px; animation: ticker 35s linear infinite; }
.ticker-item { flex-shrink: 0; width: 300px; height: 380px; border-radius: 24px; overflow: hidden; transform: skewX(8deg) skewY(8deg); background: #fff; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06); position: relative; transition: transform 0.4s ease, box-shadow 0.4s ease; }
.ticker-item::before { content: ''; position: absolute; inset: 0; background: rgba(0, 0, 0, 0.25); z-index: 1; border-radius: 24px; opacity: 0; transition: opacity 0.4s ease; }
.ticker-item:hover::before { opacity: 1; }
.ticker-item:hover { transform: skewX(8deg) skewY(8deg) scale(1.05); box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2); }
.ticker-item img { width: 100%; height: 100%; object-fit: cover; transform: skewX(-8deg) skewY(-8deg) scale(1.2); transition: transform 0.4s ease; }
.ticker-item:hover img { transform: skewX(-8deg) skewY(-8deg) scale(1.3); }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* TRUSTED BY */
.trusted { padding: 60px 0; border-bottom: 1px solid var(--border); }
.trusted-label { text-align: center; font-size: 14px; color: var(--body-text); margin-bottom: 32px; }
.trusted-label span { color: var(--text); font-weight: 600; }
.logos-track { display: flex; gap: 56px; animation: scroll-logos 30s linear infinite; white-space: nowrap; }
.logos-track span { font-family: 'Space Grotesk', sans-serif; font-size: 22px; font-weight: 600; color: #d4d4d8; flex-shrink: 0; transition: color 0.3s ease; }
.logos-track span:hover { color: var(--muted); }
@keyframes scroll-logos { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ABOUT */
.about { padding: 100px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-right { background: var(--surface); border-radius: 32px; padding: 48px; }
.about-item { display: flex; gap: 16px; margin-bottom: 28px; }
.about-item:last-child { margin-bottom: 0; }
.about-icon { width: 40px; height: 40px; border-radius: 12px; background: rgba(0, 136, 255, 0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.about-icon svg { width: 20px; height: 20px; stroke: var(--accent); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.about-item h4 { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.about-item p { font-size: 13px; color: var(--body-text); }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--border); }
.about-stat-num { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 36px; color: var(--accent); }
.about-stat-label { font-size: 13px; color: var(--body-text); margin-top: 4px; }
@media (max-width: 810px) { .about-grid { grid-template-columns: 1fr; } }

/* SERVICES */
.services { padding: 100px 0; background: #fff; }
.services-top { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; margin-bottom: 56px; }
.services-left .badge { margin-bottom: 20px; }
.services-left .section-title { text-align: left; }
.services-left .section-title .muted { color: var(--muted); }
.services-right { padding-top: 10px; }
.services-right p { font-size: 15px; color: var(--text-secondary); line-height: 1.8; margin-bottom: 24px; }
.services-stats { display: flex; gap: 32px; }
.svc-stat { display: flex; flex-direction: column; }
.svc-stat-num { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 36px; color: var(--accent); }
.svc-stat-label { font-size: 13px; color: var(--muted); margin-top: 2px; }
.services-divider { width: 100%; height: 1px; background: var(--border); margin-bottom: 56px; }
.services-grid-new { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.svc-item { padding: 32px; border-radius: 20px; border: 1px solid var(--border); background: #fff; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); cursor: default; position: relative; }
.svc-item:hover { border-color: var(--accent); box-shadow: 0 8px 40px rgba(0, 136, 255, 0.1); transform: translateY(-4px); }
.svc-item-num { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 48px; color: var(--surface); line-height: 1; margin-bottom: 24px; transition: color 0.3s ease; }
.svc-item:hover .svc-item-num { color: rgba(0, 136, 255, 0.12); }
.svc-item h3 { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 18px; margin-bottom: 10px; color: var(--text); }
.svc-item p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }
.svc-item-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 18px; }
.svc-item-tag { padding: 4px 10px; border-radius: 6px; font-size: 11px; font-weight: 500; background: var(--surface); color: var(--muted); }
.svc-item-arrow { position: absolute; top: 32px; right: 32px; width: 32px; height: 32px; border-radius: 50%; background: var(--surface); display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; }
.svc-item-arrow svg { width: 14px; height: 14px; stroke: var(--muted); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: all 0.3s ease; }
.svc-item:hover .svc-item-arrow { background: var(--accent); }
.svc-item:hover .svc-item-arrow svg { stroke: #fff; transform: translate(2px, -2px); }
@media (max-width: 810px) { .services-top { grid-template-columns: 1fr; gap: 32px; } .services-grid-new { grid-template-columns: 1fr; } .services-stats { gap: 24px; } }

/* PROJECTS */
.projects { padding: 100px 0; }
.projects-top { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: end; margin-bottom: 56px; }
.projects-top .section-title { margin-bottom: 12px; }
.projects-top-desc { font-size: 15px; color: var(--body-text); line-height: 1.7; max-width: 480px; }
.projects-view-all { display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px; border: 1px solid var(--border); border-radius: 100px; font-size: 13px; font-weight: 500; color: var(--text); transition: all 0.3s ease; white-space: nowrap; }
.projects-view-all:hover { border-color: var(--accent); color: var(--accent); }
.projects-view-all svg { width: 14px; height: 14px; transition: transform 0.3s ease; }
.projects-view-all:hover svg { transform: translate(3px, -3px); }
.pj-row { margin-bottom: 20px; }
.pj-row-content { display: grid; grid-template-columns: 1fr 1fr; gap: 0; align-items: stretch; background: #fff; border: 1px solid var(--border); border-radius: 24px; overflow: hidden; transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1); }
.pj-row-content:hover { border-color: rgba(0, 136, 255, 0.2); box-shadow: 0 24px 80px rgba(0, 0, 0, 0.06); transform: translateY(-3px); }
.pj-row-text { padding: 44px 40px; display: flex; flex-direction: column; justify-content: center; }
.pj-row-num { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 11px; color: var(--accent); letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 16px; }
.pj-row-text h3 { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 26px; margin-bottom: 6px; color: var(--text); line-height: 1.2; }
.pj-row-text .pj-subtitle { font-size: 14px; color: var(--muted); margin-bottom: 24px; font-weight: 500; }
.pj-features { list-style: none; padding: 0; margin: 0 0 28px; display: flex; flex-direction: column; gap: 10px; }
.pj-features li { font-size: 13.5px; color: var(--text-secondary); line-height: 1.6; padding-left: 20px; position: relative; }
.pj-features li::before { content: ''; position: absolute; left: 0; top: 8px; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }
.pj-tech-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: auto; padding-top: 20px; border-top: 1px solid var(--border); }
.pj-tech-tag { padding: 5px 12px; border-radius: 6px; font-size: 11px; font-weight: 500; background: var(--surface); color: var(--text-secondary); letter-spacing: 0.3px; }
.pj-row-images { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 24px; background: var(--surface); align-items: center; position: relative; }
.pj-row-images::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0, 136, 255, 0.02) 0%, transparent 100%); pointer-events: none; }
.pj-row-img { border-radius: 14px; overflow: hidden; aspect-ratio: 1.2; position: relative; box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08); transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1); z-index: 1; }
.pj-row-img.pj-mobile { grid-column: span 2; aspect-ratio: 2.2; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; background: transparent; box-shadow: none; }
.pj-row-img.pj-mobile .pj-mobile-item { border-radius: 12px; overflow: hidden; aspect-ratio: 0.55; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); }
.pj-row-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.pj-row-placeholder span { font-family: 'Space Grotesk', sans-serif; font-size: 14px; font-weight: 600; color: rgba(255, 255, 255, 0.3); }
.pj-row-img:first-child { transform: translateY(10px) scale(0.98); }
.pj-row-img:last-child { transform: translateY(-10px) scale(0.98); }
.pj-row-content:hover .pj-row-img { transform: translateY(0) scale(1); }
.pj-row-img img { transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.pj-row-content:hover .pj-row-img img { transform: scale(1.03); }
.pj-row:nth-child(even) .pj-row-content { direction: rtl; }
.pj-row:nth-child(even) .pj-row-content>* { direction: ltr; }
.pj-row:nth-child(even) .pj-row-images { direction: rtl; }
@media (max-width: 810px) { .projects-top { grid-template-columns: 1fr; gap: 20px; } .pj-row-content { grid-template-columns: 1fr; } .pj-row:nth-child(even) .pj-row-content { direction: ltr; } .pj-row-text { padding: 28px 24px; } .pj-row-images { padding: 20px; } .pj-row-img.pj-mobile { grid-template-columns: repeat(3, 1fr); } }

/* BENEFITS */
.benefits { padding: 100px 0; background: var(--surface); }
.benefits .section-title { text-align: center; }
.benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 48px; }
.benefit-card { background: #fff; border-radius: 20px; padding: 28px; transition: transform 0.3s ease; }
.benefit-card:hover { transform: translateY(-4px); }
.benefit-icon { width: 40px; height: 40px; border-radius: 12px; background: rgba(0, 136, 255, 0.1); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.benefit-icon svg { width: 20px; height: 20px; stroke: var(--accent); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.benefit-card h4 { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 15px; margin-bottom: 8px; }
.benefit-card p { font-size: 13px; color: var(--body-text); line-height: 1.6; }
@media (max-width: 810px) { .benefits-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .benefits-grid { grid-template-columns: 1fr; } }

/* TESTIMONIALS */
.testimonials { padding: 100px 0; }
.testimonials .section-title { text-align: center; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.testimonial-card { border: 1px solid var(--border); border-radius: 20px; padding: 28px; transition: transform 0.3s ease; }
.testimonial-card:hover { transform: translateY(-4px); }
.testimonial-stars { display: flex; gap: 4px; margin-bottom: 16px; }
.testimonial-stars svg { width: 16px; height: 16px; fill: var(--accent); }
.testimonial-card blockquote { font-size: 13px; line-height: 1.7; color: var(--text-secondary); margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 40px; height: 40px; border-radius: 50%; background: rgba(0, 136, 255, 0.1); display: flex; align-items: center; justify-content: center; }
.testimonial-avatar span { font-size: 13px; font-weight: 700; color: var(--accent); }
.testimonial-name { font-size: 13px; font-weight: 600; }
.testimonial-role { font-size: 12px; color: var(--body-text); }
@media (max-width: 810px) { .testimonials-grid { grid-template-columns: 1fr; } }

/* PRICING */
.pricing { padding: 100px 0; background: var(--surface); }
.pricing .section-title { text-align: center; }
.pricing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 48px; max-width: 800px; margin-left: auto; margin-right: auto; }
.pricing-card { border-radius: 32px; padding: 36px; border: 1px solid var(--border); background: #fff; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
.pricing-card.dark { background: var(--text); color: #fff; border-color: transparent; }
.pricing-card:hover { transform: translateY(-8px); }
.pricing-card h3 { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 20px; margin-bottom: 6px; }
.pricing-card .desc { font-size: 13px; color: var(--body-text); margin-bottom: 24px; }
.pricing-card.dark .desc { color: rgba(255, 255, 255, 0.5); }
.pricing-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 28px; }
.pricing-price .amount { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 40px; }
.pricing-price .period { font-size: 13px; color: var(--body-text); }
.pricing-card.dark .period { color: rgba(255, 255, 255, 0.4); }
.pricing-card .btn-dark { width: 100%; justify-content: center; margin-bottom: 28px; }
.pricing-card .btn-light { width: 100%; justify-content: center; margin-bottom: 28px; background: #fff; color: var(--text); }
.pricing-features { display: flex; flex-direction: column; gap: 14px; }
.pricing-feature { display: flex; align-items: center; gap: 10px; font-size: 13px; }
.pricing-feature svg { width: 16px; height: 16px; stroke: var(--accent); fill: none; stroke-width: 2; flex-shrink: 0; }
.pricing-card.dark .pricing-feature svg { stroke: var(--accent-light); }

/* FAQ */
.faq { padding: 100px 0; }
.faq .section-title { text-align: center; margin-bottom: 48px; }
.faq-list { max-width: 700px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid var(--border); border-radius: 16px; overflow: hidden; }
.faq-toggle { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; font-size: 15px; font-weight: 500; text-align: left; cursor: pointer; }
.faq-toggle svg { width: 18px; height: 18px; stroke: var(--muted); fill: none; stroke-width: 2; flex-shrink: 0; transition: transform 0.3s ease; }
.faq-toggle.open svg { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer-inner { padding: 0 20px 18px; font-size: 13px; color: var(--body-text); line-height: 1.7; }

/* CONTACT */
.contact { padding: 100px 0; background: #fff; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.contact h2 { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: clamp(32px, 4vw, 48px); line-height: 1.15; margin-top: 20px; }
.contact-desc { font-size: 16px; color: var(--body-text); margin-top: 20px; line-height: 1.6; }
.contact-info { margin-top: 36px; display: flex; flex-direction: column; gap: 16px; }
.contact-info-item { display: flex; align-items: center; gap: 14px; }
.contact-info-icon { width: 40px; height: 40px; border-radius: 12px; background: var(--surface); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info-icon svg { width: 18px; height: 18px; stroke: var(--accent); fill: none; stroke-width: 2; }
.contact-info-item span { font-size: 14px; color: var(--text-secondary); }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 500; margin-bottom: 8px; }
.form-group input, .form-group textarea { width: 100%; padding: 14px 16px; border-radius: 12px; background: var(--surface); border: 1px solid var(--border); color: var(--text); font-size: 14px; outline: none; transition: border-color 0.2s; }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--muted); }
.form-group input:focus, .form-group textarea:focus { border-color: var(--accent); }
.form-group textarea { resize: none; min-height: 100px; }
.form-submit { width: 100%; padding: 14px; border-radius: 100px; background: var(--accent); color: #fff; font-size: 14px; font-weight: 600; font-family: 'Comfortaa', sans-serif; cursor: pointer; transition: background 0.2s; }
.form-submit:hover { background: var(--accent-light); }
.form-note { text-align: center; font-size: 12px; color: var(--muted); margin-top: 8px; }
@media (max-width: 810px) { .contact-grid { grid-template-columns: 1fr; } }

/* CTA SECTION */
.cta-section { padding: 100px 0; background: #fff; position: relative; }
.cta-content { text-align: center; display: flex; flex-direction: column; align-items: center; }
.cta-content .badge { margin-bottom: 20px; }
.cta-content .section-title { color: var(--text); }
.cta-content p { font-size: 16px; color: var(--body-text); margin-top: 16px; max-width: 450px; }

/* TECH SECTION */
.tech-section { padding: 80px 0; background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.tech-tags { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; max-width: 800px; margin: 40px auto 0; }
.tech-tag { padding: 10px 20px; border-radius: 100px; font-size: 13px; font-weight: 500; background: #fff; color: var(--text-secondary); border: 1px solid var(--border); transition: all 0.3s ease; }
.tech-tag:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

/* UTILITIES */
.text-center { text-align: center; }
.mb-20 { margin-bottom: 20px; }
