/* ======== RESET & BASE ======== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #040812;
  --bg-2:      #080d1c;
  --bg-3:      #0c1228;
  --surface:   #101626;
  --surface-2: #18213a;
  --border:    rgba(255,255,255,0.07);
  --text:      #eef2ff;
  --text-muted:#7a86a0;
  --accent:    #6366f1;
  --accent-2:  #818cf8;
  --accent-3:  #22d3ee;
  --green:     #10b981;
  --red:       #ef4444;
  --gradient:  linear-gradient(135deg,#6366f1,#818cf8,#22d3ee);
  --radius:    16px;
  --radius-sm: 8px;
  --shadow:    0 4px 24px rgba(0,0,0,0.5);
  --glow:      0 0 48px rgba(99,102,241,0.18);
  --trans:     0.3s cubic-bezier(0.4,0,0.2,1);
  --font:      'Inter',system-ui,sans-serif;
}

html { scroll-behavior:smooth; }
body { font-family:var(--font); background:var(--bg); color:var(--text); line-height:1.6; overflow-x:hidden; }
.container { max-width:1200px; margin:0 auto; padding:0 24px; }

/* ======== UTILITIES ======== */
.gradient-text { background:var(--gradient); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }

.btn { display:inline-flex; align-items:center; gap:8px; padding:12px 24px; border-radius:50px; font-weight:600; font-size:0.95rem; text-decoration:none; transition:var(--trans); cursor:pointer; border:none; font-family:var(--font); }
.btn-primary { background:var(--gradient); color:#fff; box-shadow:0 4px 24px rgba(99,102,241,0.4); }
.btn-primary:hover { transform:translateY(-2px); box-shadow:0 8px 36px rgba(99,102,241,0.55); }
.btn-ghost { background:rgba(255,255,255,0.06); color:var(--text); border:1px solid var(--border); backdrop-filter:blur(10px); }
.btn-ghost:hover { background:rgba(255,255,255,0.1); transform:translateY(-2px); }
.btn-outline { background:transparent; color:var(--text); border:1px solid var(--border); }
.btn-outline:hover { border-color:var(--accent); color:var(--accent); background:rgba(99,102,241,0.08); }
.btn-lg { padding:16px 32px; font-size:1.05rem; }
.btn-full { width:100%; justify-content:center; padding:16px; font-size:1rem; }

.section { padding:100px 0; }
.section-header { text-align:center; max-width:680px; margin:0 auto 64px; }
.section-tag { display:inline-block; background:rgba(99,102,241,0.1); color:var(--accent-2); border:1px solid rgba(99,102,241,0.2); padding:6px 16px; border-radius:50px; font-size:0.78rem; font-weight:600; letter-spacing:0.1em; text-transform:uppercase; margin-bottom:16px; }
.section-title { font-size:clamp(2rem,4vw,2.8rem); font-weight:800; line-height:1.2; margin-bottom:16px; }
.section-sub { color:var(--text-muted); font-size:1.05rem; line-height:1.7; }

/* ======== ANIMATIONS ======== */
@keyframes fadeUp { from{opacity:0;transform:translateY(32px)} to{opacity:1;transform:translateY(0)} }
@keyframes pulse-glow { 0%,100%{opacity:0.4;transform:scale(1)} 50%{opacity:0.7;transform:scale(1.05)} }
@keyframes scroll-line { 0%{height:0;opacity:1} 100%{height:60px;opacity:0} }

.animate-fadeup { opacity:0; animation:fadeUp 0.7s ease forwards; }
.delay-1{animation-delay:0.1s} .delay-2{animation-delay:0.2s}
.delay-3{animation-delay:0.3s} .delay-4{animation-delay:0.5s}
.reveal { opacity:0; transform:translateY(28px); transition:opacity 0.6s ease,transform 0.6s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }

/* ======== NAVBAR ======== */
.navbar { position:fixed; top:0; left:0; right:0; z-index:1000; padding:20px 0; transition:var(--trans); }
.navbar.scrolled { background:rgba(4,8,18,0.92); backdrop-filter:blur(24px); border-bottom:1px solid var(--border); padding:14px 0; }
.nav-inner { display:flex; align-items:center; justify-content:space-between; }
.logo { font-size:1.35rem; font-weight:800; color:var(--text); text-decoration:none; display:flex; align-items:center; gap:8px; letter-spacing:-0.02em; }
.logo-icon { font-style:normal; }
.logo-mark { display:block; flex-shrink:0; }
.logo-accent { color:var(--accent-2); }
.nav-links { display:flex; align-items:center; gap:28px; list-style:none; }
.nav-links a { color:var(--text-muted); text-decoration:none; font-size:0.9rem; font-weight:500; transition:var(--trans); }
.nav-links a:hover,.nav-links a.active { color:var(--text); }
.nav-links a.active { position:relative; }
.nav-links a.active::after { content:''; position:absolute; bottom:-4px; left:0; right:0; height:2px; background:var(--gradient); border-radius:2px; }
.nav-links .btn,.nav-links .btn.active::after { color:#fff; }
.nav-links .btn.active::after { display:none; }
.hamburger { display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:4px; }
.hamburger span { display:block; width:24px; height:2px; background:var(--text); border-radius:2px; transition:var(--trans); }

/* ======== HERO ======== */
.hero { position:relative; min-height:100vh; display:flex; align-items:center; justify-content:center; overflow:hidden; padding:140px 0 80px; }
.hero-bg { position:absolute; inset:0; pointer-events:none; }
.blob { position:absolute; border-radius:50%; filter:blur(90px); animation:pulse-glow 7s ease-in-out infinite; }
.blob-1 { width:700px;height:700px; background:rgba(99,102,241,0.1); top:-250px;left:-200px; }
.blob-2 { width:500px;height:500px; background:rgba(129,140,248,0.08); top:40%;right:-150px; animation-delay:2.5s; }
.blob-3 { width:350px;height:350px; background:rgba(34,211,238,0.06); bottom:-80px;left:35%; animation-delay:5s; }
.grid-overlay { position:absolute; inset:0; background-image:linear-gradient(rgba(99,102,241,0.035) 1px,transparent 1px),linear-gradient(90deg,rgba(99,102,241,0.035) 1px,transparent 1px); background-size:50px 50px; }
.hero-content { position:relative; z-index:1; text-align:center; max-width:920px; margin:0 auto; }
.badge { display:inline-flex; align-items:center; gap:8px; background:rgba(255,255,255,0.04); border:1px solid rgba(99,102,241,0.2); padding:8px 20px; border-radius:50px; font-size:0.82rem; color:var(--text-muted); margin-bottom:28px; backdrop-filter:blur(8px); }
.badge-dot { width:7px;height:7px; background:var(--green); border-radius:50%; box-shadow:0 0 8px var(--green); animation:pulse-glow 2s ease infinite; }
.hero-title { font-size:clamp(2.4rem,6vw,4.5rem); font-weight:900; line-height:1.1; letter-spacing:-0.03em; margin-bottom:24px; }
.hero-sub { font-size:clamp(1rem,2vw,1.15rem); color:var(--text-muted); max-width:620px; margin:0 auto 40px; line-height:1.75; }
.hero-ctas { display:flex; gap:16px; justify-content:center; flex-wrap:wrap; margin-bottom:64px; }
.hero-stats { display:flex; align-items:center; justify-content:center; flex-wrap:wrap; background:rgba(255,255,255,0.025); border:1px solid var(--border); border-radius:var(--radius); padding:24px 40px; backdrop-filter:blur(10px); }
.stat { display:flex; flex-direction:column; align-items:center; padding:0 32px; }
.stat-num { font-size:2rem; font-weight:800; background:var(--gradient); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; letter-spacing:-0.02em; }
.stat-label { font-size:0.76rem; color:var(--text-muted); font-weight:500; margin-top:4px; }
.stat-divider { width:1px; height:40px; background:var(--border); }
.hero-scroll { position:absolute; bottom:40px; left:50%; transform:translateX(-50%); display:flex; flex-direction:column; align-items:center; gap:8px; color:var(--text-muted); font-size:0.72rem; letter-spacing:0.12em; text-transform:uppercase; }
.scroll-line { width:1px; background:linear-gradient(to bottom,var(--accent),transparent); animation:scroll-line 2s ease infinite; }

/* ======== PAGE HERO ======== */
.page-hero { position:relative; padding:160px 0 80px; overflow:hidden; text-align:center; background:linear-gradient(180deg,var(--bg-3) 0%,var(--bg) 100%); }
.page-hero::before { content:''; position:absolute; inset:0; background-image:linear-gradient(rgba(99,102,241,0.035) 1px,transparent 1px),linear-gradient(90deg,rgba(99,102,241,0.035) 1px,transparent 1px); background-size:50px 50px; }
.page-hero-content { position:relative; z-index:1; }
.page-hero h1 { font-size:clamp(2.2rem,5vw,3.5rem); font-weight:900; letter-spacing:-0.03em; margin-bottom:16px; line-height:1.1; }
.page-hero p { font-size:1.1rem; color:var(--text-muted); max-width:580px; margin:0 auto 32px; line-height:1.75; }
.breadcrumb { display:flex; align-items:center; justify-content:center; gap:8px; font-size:0.82rem; color:var(--text-muted); margin-bottom:20px; }
.breadcrumb a { color:var(--text-muted); text-decoration:none; transition:var(--trans); }
.breadcrumb a:hover { color:var(--accent-2); }
.breadcrumb span { color:var(--accent-2); }

/* ======== TRUSTED ======== */
.trusted { padding:40px 0; border-top:1px solid var(--border); border-bottom:1px solid var(--border); background:var(--bg-2); }
.trusted-label { text-align:center; font-size:0.75rem; color:var(--text-muted); letter-spacing:0.12em; text-transform:uppercase; margin-bottom:20px; }
.trusted-logos { display:flex; flex-wrap:wrap; justify-content:center; gap:10px 32px; }
.trusted-logos span { color:var(--text-muted); font-size:0.88rem; font-weight:600; opacity:0.55; transition:var(--trans); }
.trusted-logos span:hover { opacity:1; color:var(--text); }

/* ======== SERVICE CARDS ======== */
.services { background:var(--bg); }
.services-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(340px,1fr)); gap:24px; }
.service-card { background:var(--surface); border:1px solid var(--border); border-radius:var(--radius); padding:32px; transition:var(--trans); position:relative; overflow:hidden; }
.service-card::before { content:''; position:absolute; inset:0; background:linear-gradient(135deg,rgba(99,102,241,0.06),transparent); opacity:0; transition:var(--trans); }
.service-card:hover { transform:translateY(-4px); border-color:rgba(99,102,241,0.3); box-shadow:var(--glow); }
.service-card:hover::before { opacity:1; }
.service-icon { width:52px;height:52px; border-radius:12px; display:flex; align-items:center; justify-content:center; margin-bottom:20px; padding:12px; }
.service-icon svg { width:100%;height:100%; }
.service-card h3 { font-size:1.15rem; font-weight:700; margin-bottom:10px; }
.service-card p { color:var(--text-muted); font-size:0.9rem; line-height:1.7; margin-bottom:18px; }
.service-features { list-style:none; display:flex; flex-direction:column; gap:7px; }
.service-features li { font-size:0.83rem; color:var(--text-muted); padding-left:18px; position:relative; }
.service-features li::before { content:'→'; position:absolute; left:0; color:var(--accent-2); font-size:0.78rem; }
.service-link { display:inline-flex; align-items:center; gap:6px; color:var(--accent-2); font-size:0.83rem; font-weight:600; text-decoration:none; margin-top:18px; transition:var(--trans); }
.service-link:hover { gap:10px; }

/* ======== SERVICE DETAIL (Services Page) ======== */
.service-detail { padding:80px 0; border-bottom:1px solid var(--border); }
.service-detail:last-child { border-bottom:none; }
.service-detail-inner { display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:center; }
.service-detail-inner.reverse { direction:rtl; }
.service-detail-inner.reverse > * { direction:ltr; }
.service-detail-badge { display:inline-flex; align-items:center; gap:8px; background:rgba(99,102,241,0.1); border:1px solid rgba(99,102,241,0.2); padding:6px 14px; border-radius:50px; font-size:0.78rem; font-weight:600; color:var(--accent-2); margin-bottom:16px; }
.service-detail h2 { font-size:clamp(1.8rem,3vw,2.4rem); font-weight:800; line-height:1.2; margin-bottom:16px; }
.service-detail p { color:var(--text-muted); line-height:1.8; margin-bottom:24px; }
.service-checklist { list-style:none; display:flex; flex-direction:column; gap:12px; }
.service-checklist li { display:flex; align-items:flex-start; gap:12px; font-size:0.9rem; color:var(--text-muted); }
.service-checklist li::before { content:'✓'; color:var(--green); font-weight:700; flex-shrink:0; margin-top:1px; }
.service-detail-visual { background:var(--surface); border:1px solid var(--border); border-radius:var(--radius); padding:36px; display:flex; flex-direction:column; gap:18px; }
.visual-metric { display:flex; align-items:center; justify-content:space-between; padding:14px; background:var(--bg-3); border-radius:var(--radius-sm); }
.visual-metric-label { font-size:0.82rem; color:var(--text-muted); }
.visual-metric-value { font-size:1.3rem; font-weight:800; background:var(--gradient); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.visual-bar { height:6px; background:var(--bg-3); border-radius:4px; overflow:hidden; }
.visual-bar-fill { height:100%; background:var(--gradient); border-radius:4px; }

/* ======== TECH STACK PILLS ======== */
.tech-stack { display:flex; flex-wrap:wrap; gap:10px; margin-top:20px; }
.tech-pill { background:var(--bg-3); border:1px solid var(--border); padding:6px 14px; border-radius:50px; font-size:0.8rem; font-weight:600; color:var(--text-muted); transition:var(--trans); }
.tech-pill:hover { border-color:rgba(99,102,241,0.4); color:var(--accent-2); }

/* ======== TOOLS GRID ======== */
.tools-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(140px,1fr)); gap:14px; }
.tool-card { background:var(--surface); border:1px solid var(--border); border-radius:var(--radius-sm); padding:20px; text-align:center; transition:var(--trans); }
.tool-card:hover { border-color:rgba(99,102,241,0.3); transform:translateY(-3px); }
.tool-icon { font-size:1.8rem; margin-bottom:8px; }
.tool-name { font-size:0.82rem; font-weight:600; color:var(--text-muted); }

/* ======== RESULTS / CASE STUDIES ======== */
.results { background:var(--bg-2); }
.results-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(300px,1fr)); gap:24px; }
.result-card { background:var(--surface); border:1px solid var(--border); border-radius:var(--radius); padding:32px; transition:var(--trans); }
.result-card:hover { transform:translateY(-4px); border-color:rgba(99,102,241,0.3); }
.result-badge { display:inline-block; background:rgba(99,102,241,0.1); color:var(--accent-2); border:1px solid rgba(99,102,241,0.2); padding:4px 12px; border-radius:50px; font-size:0.73rem; font-weight:600; margin-bottom:20px; }
.result-metric { margin-bottom:16px; }
.result-num { display:block; font-size:2.8rem; font-weight:900; background:var(--gradient); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; line-height:1; margin-bottom:4px; }
.result-label { font-size:0.83rem; color:var(--text-muted); font-weight:500; }
.result-card p { color:var(--text-muted); font-size:0.88rem; line-height:1.7; margin-bottom:20px; }
.result-tags { display:flex; flex-wrap:wrap; gap:8px; }
.result-tags span { background:rgba(255,255,255,0.04); border:1px solid var(--border); padding:4px 12px; border-radius:50px; font-size:0.73rem; color:var(--text-muted); }

/* Case study full */
.case-study-full { background:var(--surface); border:1px solid var(--border); border-radius:var(--radius); overflow:hidden; margin-bottom:32px; }
.case-study-header { padding:40px; background:linear-gradient(135deg,rgba(99,102,241,0.1),rgba(129,140,248,0.04)); border-bottom:1px solid var(--border); }
.case-study-meta { display:flex; gap:12px; flex-wrap:wrap; margin-bottom:20px; }
.case-study-body { padding:40px; display:grid; grid-template-columns:1fr 1fr; gap:48px; }
.case-study-metrics { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.cs-metric { background:var(--bg-3); border-radius:var(--radius-sm); padding:20px; text-align:center; }
.cs-metric-num { font-size:1.8rem; font-weight:900; background:var(--gradient); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; display:block; }
.cs-metric-label { font-size:0.76rem; color:var(--text-muted); }

/* ======== PROCESS ======== */
.process { background:var(--bg); }
.process-steps { display:grid; grid-template-columns:repeat(auto-fit,minmax(200px,1fr)); gap:0; position:relative; }
.process-steps::before { content:''; position:absolute; top:28px; left:0; right:0; height:1px; background:linear-gradient(90deg,transparent,var(--accent),transparent); opacity:0.25; }
.process-step { padding:0 28px 40px; position:relative; border-left:1px solid var(--border); }
.process-step:first-child { border-left:none; padding-left:0; }
.step-num { font-size:3rem; font-weight:900; background:var(--gradient); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; line-height:1; margin-bottom:14px; opacity:0.55; }
.step-content h3 { font-size:1.05rem; font-weight:700; margin-bottom:10px; }
.step-content p { color:var(--text-muted); font-size:0.87rem; line-height:1.7; }

/* ======== PRICING ======== */
.pricing { background:var(--bg-2); }
.pricing-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(290px,1fr)); gap:24px; align-items:start; margin-bottom:24px; }
.pricing-card { background:var(--surface); border:1px solid var(--border); border-radius:var(--radius); padding:36px 30px; transition:var(--trans); position:relative; }
.pricing-card.featured { background:linear-gradient(135deg,rgba(99,102,241,0.12),rgba(129,140,248,0.06)); border-color:rgba(99,102,241,0.4); transform:scale(1.02); box-shadow:var(--glow); }
.pricing-card:hover:not(.featured) { border-color:rgba(99,102,241,0.25); transform:translateY(-4px); }
.plan-badge { position:absolute; top:-13px; left:50%; transform:translateX(-50%); background:var(--gradient); color:#fff; padding:4px 20px; border-radius:50px; font-size:0.76rem; font-weight:700; white-space:nowrap; }
.plan-name { font-size:0.88rem; font-weight:600; color:var(--text-muted); margin-bottom:10px; text-transform:uppercase; letter-spacing:0.1em; }
.plan-price { display:flex; align-items:baseline; gap:4px; margin-bottom:10px; }
.currency { font-size:1.4rem; font-weight:700; color:var(--text-muted); }
.amount { font-size:2.6rem; font-weight:900; letter-spacing:-0.03em; color:var(--text); }
.period { font-size:0.88rem; color:var(--text-muted); }
.plan-desc { color:var(--text-muted); font-size:0.86rem; line-height:1.6; margin-bottom:22px; padding-bottom:22px; border-bottom:1px solid var(--border); }
.plan-features { list-style:none; display:flex; flex-direction:column; gap:10px; margin-bottom:26px; }
.plan-features li { font-size:0.88rem; color:var(--text); }
.plan-features li.muted { color:var(--text-muted); opacity:0.45; }
.pricing-note { text-align:center; color:var(--text-muted); font-size:0.88rem; }
.pricing-note a { color:var(--accent-2); text-decoration:none; font-weight:600; }

/* Comparison table */
.comparison-table { width:100%; border-collapse:collapse; margin-top:48px; }
.comparison-table th { background:var(--surface); padding:14px 18px; text-align:left; font-size:0.82rem; font-weight:700; color:var(--text-muted); border-bottom:2px solid var(--border); }
.comparison-table th:not(:first-child) { text-align:center; }
.comparison-table td { padding:13px 18px; border-bottom:1px solid var(--border); font-size:0.87rem; color:var(--text-muted); }
.comparison-table td:not(:first-child) { text-align:center; }
.comparison-table tr:hover td { background:rgba(255,255,255,0.015); }
.comparison-table .check { color:var(--green); }
.comparison-table .cross { color:var(--text-muted); opacity:0.25; }
.comparison-table .plan-col { font-weight:700; color:var(--text); }

/* FAQ */
.faq-list { display:flex; flex-direction:column; gap:10px; max-width:800px; margin:0 auto; }
.faq-item { background:var(--surface); border:1px solid var(--border); border-radius:var(--radius-sm); overflow:hidden; transition:var(--trans); }
.faq-item.open { border-color:rgba(99,102,241,0.3); }
.faq-question { width:100%; background:none; border:none; padding:20px 24px; text-align:left; cursor:pointer; display:flex; align-items:center; justify-content:space-between; color:var(--text); font-size:0.92rem; font-weight:600; font-family:var(--font); gap:16px; }
.faq-chevron { width:18px; height:18px; flex-shrink:0; transition:var(--trans); color:var(--text-muted); }
.faq-item.open .faq-chevron { transform:rotate(180deg); color:var(--accent-2); }
.faq-answer { max-height:0; overflow:hidden; transition:max-height 0.35s ease; }
.faq-answer-inner { padding:0 24px 20px; color:var(--text-muted); font-size:0.88rem; line-height:1.8; }

/* ======== ABOUT ======== */
.about-story { background:var(--bg); }
.about-story-inner { display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:center; }
.about-story h2 { font-size:clamp(1.8rem,3vw,2.4rem); font-weight:800; line-height:1.2; margin-bottom:18px; }
.about-story p { color:var(--text-muted); line-height:1.8; margin-bottom:14px; }
.about-highlights { display:flex; flex-direction:column; gap:14px; margin-top:8px; }
.about-highlight { display:flex; align-items:flex-start; gap:14px; }
.highlight-icon { width:38px;height:38px; background:rgba(99,102,241,0.1); border-radius:10px; display:flex; align-items:center; justify-content:center; font-size:1.1rem; flex-shrink:0; }
.highlight-text strong { display:block; font-size:0.92rem; margin-bottom:3px; }
.highlight-text span { font-size:0.82rem; color:var(--text-muted); }
.about-visual { background:var(--surface); border:1px solid var(--border); border-radius:var(--radius); padding:36px; }
.about-stat-grid { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.about-stat-card { background:var(--bg-3); border-radius:var(--radius-sm); padding:22px; text-align:center; }
.about-stat-num { font-size:2.2rem; font-weight:900; background:var(--gradient); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; display:block; }
.about-stat-label { font-size:0.78rem; color:var(--text-muted); margin-top:5px; }
.values-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(230px,1fr)); gap:22px; }
.value-card { background:var(--surface); border:1px solid var(--border); border-radius:var(--radius); padding:30px; transition:var(--trans); }
.value-card:hover { border-color:rgba(99,102,241,0.3); transform:translateY(-4px); }
.value-icon { font-size:1.8rem; margin-bottom:14px; }
.value-card h3 { font-size:1.05rem; font-weight:700; margin-bottom:8px; }
.value-card p { color:var(--text-muted); font-size:0.86rem; line-height:1.7; }
.team-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(210px,1fr)); gap:22px; }
.team-card { background:var(--surface); border:1px solid var(--border); border-radius:var(--radius); padding:26px; text-align:center; transition:var(--trans); }
.team-card:hover { border-color:rgba(99,102,241,0.3); transform:translateY(-4px); }
.team-avatar { width:68px;height:68px; background:var(--gradient); border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.3rem; font-weight:800; color:#fff; margin:0 auto 14px; }
.team-card h3 { font-size:0.98rem; font-weight:700; margin-bottom:3px; }
.team-card .role { font-size:0.8rem; color:var(--accent-2); font-weight:600; margin-bottom:8px; }
.team-card p { font-size:0.8rem; color:var(--text-muted); line-height:1.6; }

/* ======== TESTIMONIALS ======== */
.testimonials { background:var(--bg); }
.testimonials-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(290px,1fr)); gap:22px; }
.testimonial-card { background:var(--surface); border:1px solid var(--border); border-radius:var(--radius); padding:30px; transition:var(--trans); }
.testimonial-card:hover { border-color:rgba(99,102,241,0.25); transform:translateY(-4px); }
.stars { color:#f59e0b; font-size:1rem; margin-bottom:14px; letter-spacing:2px; }
.testimonial-card p { color:var(--text-muted); font-size:0.92rem; line-height:1.75; margin-bottom:22px; font-style:italic; }
.testimonial-author { display:flex; align-items:center; gap:12px; }
.author-avatar { width:42px;height:42px; background:var(--gradient); border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:0.78rem; font-weight:700; color:#fff; flex-shrink:0; }
.testimonial-author strong { display:block; font-size:0.92rem; font-weight:700; }
.testimonial-author span { font-size:0.78rem; color:var(--text-muted); }

/* ======== CONTACT ======== */
.contact { background:var(--bg-2); }
.contact-wrapper { display:grid; grid-template-columns:1fr 1.4fr; gap:64px; align-items:start; }
.contact-info .section-tag { display:inline-block; }
.contact-info .section-title { font-size:clamp(1.8rem,3vw,2.4rem); text-align:left; margin-bottom:14px; }
.contact-info > p { color:var(--text-muted); font-size:0.98rem; line-height:1.75; margin-bottom:32px; }
.contact-details { display:flex; flex-direction:column; gap:14px; }
.contact-item { display:flex; align-items:center; gap:12px; color:var(--text-muted); font-size:0.9rem; }
.contact-icon { font-size:1.05rem; }
.contact-form { background:var(--surface); border:1px solid var(--border); border-radius:var(--radius); padding:34px; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.form-group { display:flex; flex-direction:column; gap:7px; margin-bottom:14px; }
.form-group label { font-size:0.82rem; font-weight:600; color:var(--text-muted); }
.form-group input,.form-group select,.form-group textarea { background:var(--bg-3); border:1px solid var(--border); border-radius:var(--radius-sm); padding:11px 15px; color:var(--text); font-family:var(--font); font-size:0.88rem; outline:none; transition:var(--trans); width:100%; }
.form-group input:focus,.form-group select:focus,.form-group textarea:focus { border-color:var(--accent); box-shadow:0 0 0 3px rgba(99,102,241,0.12); }
.form-group input.invalid,.form-group select.invalid,.form-group textarea.invalid { border-color:#ef4444; box-shadow:0 0 0 3px rgba(239,68,68,0.12); }
.field-error { display:none; color:#ef4444; font-size:0.76rem; font-weight:500; margin-top:-2px; }
.form-group input::placeholder,.form-group textarea::placeholder { color:rgba(255,255,255,0.18); }
.form-group select option { background:var(--bg-3); }
.checkbox-group { display:grid; grid-template-columns:1fr 1fr; gap:9px; }
.checkbox-label { display:flex; align-items:center; gap:8px; font-size:0.83rem; color:var(--text-muted); cursor:pointer; font-weight:normal; }
.checkbox-label input[type="checkbox"] { width:15px;height:15px; accent-color:var(--accent); cursor:pointer; }
.form-note { text-align:center; color:var(--text-muted); font-size:0.78rem; margin-top:10px; }
.next-steps { display:flex; flex-direction:column; gap:14px; margin-top:40px; }
.next-step { display:flex; align-items:flex-start; gap:14px; padding:18px; background:var(--surface); border:1px solid var(--border); border-radius:var(--radius-sm); }
.next-step-num { width:30px;height:30px; background:var(--gradient); border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:0.78rem; font-weight:800; color:#fff; flex-shrink:0; }
.next-step h4 { font-size:0.92rem; font-weight:700; margin-bottom:3px; }
.next-step p { font-size:0.82rem; color:var(--text-muted); }

/* ======== CTA BANNER ======== */
.cta-banner { background:linear-gradient(135deg,rgba(99,102,241,0.14),rgba(129,140,248,0.08)); border:1px solid rgba(99,102,241,0.2); border-radius:var(--radius); padding:64px; text-align:center; }
.cta-banner h2 { font-size:clamp(1.8rem,3vw,2.4rem); font-weight:800; margin-bottom:14px; }
.cta-banner p { color:var(--text-muted); margin-bottom:30px; font-size:1rem; }
.cta-banner-btns { display:flex; gap:16px; justify-content:center; flex-wrap:wrap; }

/* ======== FOOTER ======== */
.footer { background:var(--bg-3); border-top:1px solid var(--border); padding:64px 0 32px; }
.footer-grid { display:grid; grid-template-columns:1.8fr 1fr 1fr 1fr; gap:48px; margin-bottom:48px; }
.footer-brand .logo { margin-bottom:14px; display:inline-flex; }
.footer-brand p { color:var(--text-muted); font-size:0.86rem; line-height:1.75; margin-bottom:18px; }
.social-links { display:flex; gap:10px; }
.social-links a { width:34px;height:34px; background:var(--surface); border:1px solid var(--border); border-radius:8px; display:flex; align-items:center; justify-content:center; color:var(--text-muted); font-size:0.78rem; font-weight:700; text-decoration:none; transition:var(--trans); }
.social-links a:hover { border-color:var(--accent); color:var(--accent-2); }
.footer-links h4 { font-size:0.82rem; font-weight:700; text-transform:uppercase; letter-spacing:0.1em; color:var(--text); margin-bottom:14px; }
.footer-links ul { list-style:none; display:flex; flex-direction:column; gap:9px; }
.footer-links a { color:var(--text-muted); text-decoration:none; font-size:0.86rem; transition:var(--trans); }
.footer-links a:hover { color:var(--text); }
.footer-bottom { display:flex; align-items:center; justify-content:space-between; padding-top:22px; border-top:1px solid var(--border); flex-wrap:wrap; gap:10px; }
.footer-bottom p { color:var(--text-muted); font-size:0.8rem; }
.privacy-link { color:var(--text-muted); font-size:0.8rem; text-decoration:none; transition:var(--trans); }
.privacy-link:hover { color:var(--accent-2); }

/* ======== FLOATING CTA ======== */
.floating-cta { position:fixed; bottom:30px; right:30px; z-index:999; background:var(--gradient); color:#fff; padding:13px 22px; border-radius:50px; font-weight:700; font-size:0.88rem; text-decoration:none; box-shadow:0 8px 32px rgba(99,102,241,0.45); transition:var(--trans); opacity:0; transform:translateY(20px); }
.floating-cta.visible { opacity:1; transform:translateY(0); }
.floating-cta:hover { transform:translateY(-3px); box-shadow:0 12px 40px rgba(99,102,241,0.65); }

/* ======== TOOL GRID (alias without trailing 's') ======== */
.tool-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(140px,1fr)); gap:14px; }

/* ======== ABOUT STORY LAYOUT ======== */
.about-story { display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:center; }
.about-story-text .section-tag { display:inline-block; margin-bottom:16px; }
.about-story-text h2 { font-size:clamp(1.8rem,3vw,2.4rem); font-weight:800; line-height:1.2; margin-bottom:18px; }
.about-story-text p { color:var(--text-muted); line-height:1.8; margin-bottom:14px; }
.about-story-visual {}
.stat-wall { display:grid; grid-template-columns:1fr 1fr; gap:16px; background:var(--surface); border:1px solid var(--border); border-radius:var(--radius); padding:32px; }
.stat-wall-item { text-align:center; padding:16px; background:var(--bg-3); border-radius:var(--radius-sm); }
.stat-wall-item .stat-num { font-size:2rem; font-weight:900; display:block; }
.stat-wall-item .stat-label { font-size:0.76rem; color:var(--text-muted); margin-top:4px; display:block; }

/* ======== TEAM CARD OVERRIDES ======== */
.team-card { text-align:left; }
.team-info {}
.team-role { display:block; font-size:0.8rem; color:var(--accent-2); font-weight:600; margin-bottom:8px; }
.team-skills { display:flex; flex-wrap:wrap; gap:6px; margin-top:10px; }

/* ======== PROCESS STEP NUMBER ======== */
.step-number { font-size:3rem; font-weight:900; background:var(--gradient); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; line-height:1; margin-bottom:14px; opacity:0.55; }

/* ======== CONTACT PAGE LAYOUT ======== */
.contact-layout { display:grid; grid-template-columns:1fr 400px; gap:48px; align-items:start; }
.contact-form-wrap { background:var(--surface); border:1px solid var(--border); border-radius:var(--radius); padding:40px; }
.contact-form-wrap h2 { font-size:1.6rem; font-weight:800; margin-bottom:8px; }
.contact-sidebar { display:flex; flex-direction:column; gap:20px; }
.contact-info-card { background:var(--surface); border:1px solid var(--border); border-radius:var(--radius); padding:28px; }
.contact-info-card h3 { font-size:0.95rem; font-weight:700; margin-bottom:18px; }
.contact-detail { display:flex; align-items:flex-start; gap:14px; margin-bottom:16px; }
.contact-detail:last-child { margin-bottom:0; }
.contact-detail-icon { font-size:1.1rem; flex-shrink:0; margin-top:2px; }
.contact-detail-label { font-size:0.73rem; color:var(--text-muted); font-weight:600; text-transform:uppercase; letter-spacing:0.08em; margin-bottom:2px; }
.contact-detail-value { font-size:0.88rem; color:var(--text); font-weight:500; text-decoration:none; }
.contact-detail-value:hover { color:var(--accent-2); }
.hours-list { display:flex; flex-direction:column; gap:10px; }
.hours-row { display:flex; justify-content:space-between; font-size:0.86rem; color:var(--text-muted); padding:8px 0; border-bottom:1px solid var(--border); }
.hours-row:last-child { border-bottom:none; }

/* Checkbox grid for contact form */
.checkbox-grid { display:grid; grid-template-columns:1fr 1fr; gap:9px; }
.checkbox-item { display:flex; align-items:center; gap:8px; font-size:0.83rem; color:var(--text-muted); cursor:pointer; font-weight:normal; padding:8px 12px; background:var(--bg-3); border:1px solid var(--border); border-radius:var(--radius-sm); transition:var(--trans); }
.checkbox-item:hover { border-color:rgba(99,102,241,0.3); color:var(--text); }
.checkbox-item input[type="checkbox"] { width:15px;height:15px; accent-color:var(--accent); cursor:pointer; }

/* Form success state */
.form-success { text-align:center; padding:60px 20px; }
.success-icon { width:64px;height:64px; background:rgba(16,185,129,0.15); border:1px solid rgba(16,185,129,0.3); border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.6rem; color:var(--green); margin:0 auto 20px; }
.form-success h3 { font-size:1.4rem; font-weight:800; margin-bottom:12px; }
.form-success p { color:var(--text-muted); }

/* Currency tags */
.currency-tags { display:flex; flex-wrap:wrap; gap:8px; }

/* ======== THEME TOGGLE ======== */
.nav-actions { display:flex; align-items:center; gap:10px; }
.theme-toggle { width:38px;height:38px; background:rgba(255,255,255,0.07); border:1px solid var(--border); border-radius:50%; cursor:pointer; display:flex; align-items:center; justify-content:center; transition:var(--trans); color:var(--text-muted); flex-shrink:0; }
.theme-toggle:hover { background:rgba(99,102,241,0.18); color:var(--accent-2); transform:rotate(18deg); }
.theme-toggle svg { width:17px;height:17px; stroke:currentColor; fill:none; stroke-width:2; stroke-linecap:round; stroke-linejoin:round; }
html:not([data-theme="light"]) .icon-sun { display:none; }
[data-theme="light"] .icon-moon { display:none; }
[data-theme="light"] .theme-toggle { background:rgba(99,102,241,0.08); }
[data-theme="light"] .theme-toggle:hover { background:rgba(99,102,241,0.16); }

/* ======== LOGO ANIMATION ======== */
@keyframes wordmarkIn { 0%{opacity:0;transform:translateX(-8px)} 100%{opacity:1;transform:translateX(0)} }

/* Each SVG shape slides up and springs in, staggered */
@keyframes shapeSlide {
  0%   { opacity:0; transform:translateY(10px) scaleY(0.75); }
  60%  { opacity:1; transform:translateY(-2px) scaleY(1.04); }
  100% { opacity:1; transform:translateY(0) scaleY(1); }
}

/* Continuous idle float after load */
@keyframes logoFloat {
  0%,100% { transform:translateY(0) rotate(0deg); }
  30%     { transform:translateY(-3px) rotate(-0.6deg); }
  70%     { transform:translateY(-2px) rotate(0.4deg); }
}

.logo-mark {
  overflow: visible;
  animation: logoFloat 4s ease-in-out 1s infinite;
  transition: filter 0.3s ease;
}
.logo-mark polygon:first-of-type { animation:shapeSlide 0.55s cubic-bezier(0.34,1.5,0.64,1) 0.05s both; }
.logo-mark polygon:last-of-type  { animation:shapeSlide 0.55s cubic-bezier(0.34,1.5,0.64,1) 0.18s both; }
.logo-mark rect                   { animation:shapeSlide 0.45s cubic-bezier(0.34,1.5,0.64,1) 0.28s both; }

.logo-wordmark { animation:wordmarkIn 0.5s ease 0.38s both; }

/* Hover — glow + pause float */
.logo:hover .logo-mark {
  filter: drop-shadow(0 0 7px rgba(99,102,241,0.65)) drop-shadow(0 0 14px rgba(34,211,238,0.25));
  animation-play-state: paused;
}
.logo:hover .logo-wordmark { opacity:0.88; transition:opacity 0.2s ease; }

/* ======== LIGHT MODE ======== */
[data-theme="light"] {
  --bg:#f8f9ff; --bg-2:#ffffff; --bg-3:#eef0ff;
  --surface:#ffffff; --surface-2:#f0f2ff;
  --border:rgba(99,102,241,0.14);
  --text:#0d1229; --text-muted:#5a6480;
  --shadow:0 4px 24px rgba(99,102,241,0.1);
  --glow:0 0 48px rgba(99,102,241,0.14);
}
[data-theme="light"] body { background:var(--bg); color:var(--text); }
[data-theme="light"] .navbar { background:rgba(248,249,255,0.88); backdrop-filter:blur(20px); }
[data-theme="light"] .navbar.scrolled { background:rgba(255,255,255,0.97); border-bottom:1px solid rgba(99,102,241,0.1); }
[data-theme="light"] .nav-links a { color:var(--text-muted); }
[data-theme="light"] .nav-links a:hover,[data-theme="light"] .nav-links a.active { color:var(--text); }
[data-theme="light"] .nav-links { background:rgba(248,249,255,0.98); }
[data-theme="light"] .logo { color:var(--text); }
[data-theme="light"] .hero { background:linear-gradient(160deg,#eef0ff 0%,#f8f9ff 60%,#f0f6ff 100%); }
[data-theme="light"] .blob-1 { background:rgba(99,102,241,0.18); }
[data-theme="light"] .blob-2 { background:rgba(129,140,248,0.14); }
[data-theme="light"] .blob-3 { background:rgba(34,211,238,0.1); }
[data-theme="light"] .grid-overlay { background-image:linear-gradient(rgba(99,102,241,0.07) 1px,transparent 1px),linear-gradient(90deg,rgba(99,102,241,0.07) 1px,transparent 1px); }
[data-theme="light"] .badge { background:rgba(99,102,241,0.07); border-color:rgba(99,102,241,0.15); }
[data-theme="light"] .hero-stats { background:rgba(255,255,255,0.82); border-color:rgba(99,102,241,0.14); }
[data-theme="light"] .trusted { background:#ffffff; border-color:rgba(99,102,241,0.1); }
[data-theme="light"] .trusted-logos span { color:var(--text-muted); opacity:0.75; }
[data-theme="light"] .page-hero { background:linear-gradient(180deg,#eef0ff 0%,#f8f9ff 100%); }
[data-theme="light"] .service-card,[data-theme="light"] .result-card,[data-theme="light"] .testimonial-card,[data-theme="light"] .value-card,[data-theme="light"] .tool-card,[data-theme="light"] .team-card,[data-theme="light"] .faq-item,[data-theme="light"] .contact-info-card,[data-theme="light"] .contact-form-wrap,[data-theme="light"] .next-step,[data-theme="light"] .case-study-full,[data-theme="light"] .stat-wall { background:#ffffff; box-shadow:0 2px 16px rgba(99,102,241,0.07); }
[data-theme="light"] .pricing-card { background:#ffffff; box-shadow:0 2px 16px rgba(99,102,241,0.07); }
[data-theme="light"] .pricing-card.featured { background:linear-gradient(135deg,rgba(99,102,241,0.09),rgba(34,211,238,0.05)); box-shadow:0 8px 32px rgba(99,102,241,0.18); }
[data-theme="light"] .service-detail-visual,[data-theme="light"] .about-visual { background:#ffffff; box-shadow:0 2px 16px rgba(99,102,241,0.07); }
[data-theme="light"] .visual-metric,[data-theme="light"] .stat-wall-item,[data-theme="light"] .cs-metric { background:var(--bg-3); }
[data-theme="light"] .section-tag { background:rgba(99,102,241,0.07); }
[data-theme="light"] .cta-banner { background:linear-gradient(135deg,rgba(99,102,241,0.09),rgba(34,211,238,0.05)); border-color:rgba(99,102,241,0.15); }
[data-theme="light"] .footer { background:#eef0ff; border-top-color:rgba(99,102,241,0.1); }
[data-theme="light"] .footer-links a { color:var(--text-muted); }
[data-theme="light"] .footer-links a:hover { color:var(--text); }
[data-theme="light"] .social-links a { background:#ffffff; }
[data-theme="light"] .footer-bottom { border-top-color:rgba(99,102,241,0.1); }
[data-theme="light"] .form-group input,[data-theme="light"] .form-group select,[data-theme="light"] .form-group textarea { background:var(--bg-3); color:var(--text); border-color:rgba(99,102,241,0.18); }
[data-theme="light"] .form-group input::placeholder,[data-theme="light"] .form-group textarea::placeholder { color:rgba(0,0,0,0.28); }
[data-theme="light"] .checkbox-item { background:var(--bg-3); }
[data-theme="light"] .comparison-table th { background:var(--bg-3); }
[data-theme="light"] .comparison-table tr:hover td { background:rgba(99,102,241,0.03); }
[data-theme="light"] .case-study-header { background:linear-gradient(135deg,rgba(99,102,241,0.07),rgba(129,140,248,0.03)); }
[data-theme="light"] .floating-cta { box-shadow:0 8px 32px rgba(99,102,241,0.35); }
[data-theme="light"] .btn-ghost { background:rgba(0,0,0,0.05); border-color:rgba(0,0,0,0.12); color:var(--text); }
[data-theme="light"] .btn-outline { color:var(--text); border-color:rgba(99,102,241,0.3); }
[data-theme="light"] .btn-outline:hover { background:rgba(99,102,241,0.08); }
[data-theme="light"] .hamburger span { background:var(--text); }
[data-theme="light"] .process-step { border-left-color:rgba(99,102,241,0.14); border-top-color:rgba(99,102,241,0.14); }
[data-theme="light"] .contact-detail-value { color:var(--text); }
[data-theme="light"] .hours-row { border-bottom-color:var(--border); }
[data-theme="light"] .faq-item.open { border-color:rgba(99,102,241,0.28); }
[data-theme="light"] .faq-question { color:var(--text); }
[data-theme="light"] .plan-desc { border-bottom-color:var(--border); }

/* ======== RESPONSIVE ======== */
@media(max-width:1024px) {
  .service-detail-inner { grid-template-columns:1fr; gap:36px; }
  .service-detail-inner.reverse { direction:ltr; }
  .about-story-inner { grid-template-columns:1fr; gap:36px; }
  .case-study-body { grid-template-columns:1fr; }
}
@media(max-width:900px) {
  .contact-wrapper { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .process-steps { grid-template-columns:1fr 1fr; }
  .process-steps::before { display:none; }
  .process-step { border-left:none; border-top:1px solid var(--border); padding:28px 0; }
  .process-step:first-child { border-top:none; }
  .cta-banner { padding:40px 24px; border-radius:0; }
}
/* Tablet: compressed desktop nav */
@media(min-width:900px) and (max-width:1024px) {
  .nav-links { gap:14px; }
  .nav-links a { font-size:0.82rem; }
}
@media(min-width:768px) and (max-width:900px) {
  .nav-links { gap:8px; }
  .nav-links a { font-size:0.78rem; }
  .nav-links .btn { padding:8px 12px; font-size:0.78rem; }
}
/* Mobile nav: hamburger only below 768px (iPad portrait keeps desktop nav) */
@media(max-width:767px) {
  .nav-links { display:none; position:fixed; top:70px; left:0; right:0; background:rgba(4,8,18,0.97); backdrop-filter:blur(20px); padding:28px 24px; flex-direction:column; border-bottom:1px solid var(--border); gap:22px; }
  .nav-links.open { display:flex; }
  .hamburger { display:flex; }
}
@media(max-width:768px) {
  .hero-stats { padding:18px; }
  .stat { padding:10px 14px; }
  .stat-num { font-size:1.4rem; }
  .services-grid { grid-template-columns:1fr; }
  .form-row { grid-template-columns:1fr; }
  .pricing-card.featured { transform:scale(1); }
  .footer-grid { grid-template-columns:1fr 1fr; gap:28px; }
  .footer-bottom { flex-direction:column; text-align:center; }
  .floating-cta { bottom:18px; right:18px; padding:11px 18px; font-size:0.82rem; }
  .process-steps { grid-template-columns:1fr; }
}
@media(max-width:480px) {
  .section { padding:60px 0; }
  .hero-ctas { flex-direction:column; align-items:center; }
  .stat-divider { width:36px;height:1px; margin:6px 0; }
  .hero-stats { flex-direction:column; }
  .checkbox-group { grid-template-columns:1fr; }
  .cta-banner { padding:36px 20px; }
  .about-stat-grid { grid-template-columns:1fr 1fr; }
  .checkbox-grid { grid-template-columns:1fr; }
  .currency-tags { gap:6px; }
}
@media(max-width:1024px) {
  .about-story { grid-template-columns:1fr; gap:36px; }
  .contact-layout { grid-template-columns:1fr; }
}
@media(max-width:768px) {
  .stat-wall { grid-template-columns:1fr 1fr; }
  .contact-form-wrap { padding:24px; }
}

/* ======== ANIMATION 1: CUSTOM CURSOR ======== */
@media (hover: hover) and (pointer: fine) {
  body, a, button, [role="button"], input, textarea, select, label { cursor: none !important; }
}
.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--accent);
  pointer-events: none;
  z-index: 10000;
  transform: translate(-100px, -100px);
  transition: width 0.18s ease, height 0.18s ease, background 0.18s ease,
              border 0.18s ease, opacity 0.3s ease;
  will-change: transform;
}
.cursor-dot.is-hover {
  width: 32px; height: 32px;
  background: transparent;
  border: 2px solid var(--accent-2);
  transform: translate(var(--cx, -100px), var(--cy, -100px)) translate(-11px, -11px) !important;
}
.cursor-dot.is-click { width: 6px; height: 6px; }

/* ======== ANIMATION 2: CLIP-PATH SECTION HEADING REVEAL ======== */
.has-reveal .reveal-wrap {
  display: block;
  overflow: hidden;
  line-height: 1.25;
  padding-bottom: 0.06em;
}
.has-reveal .reveal-line {
  display: block;
  transform: translateY(108%);
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.has-reveal .reveal-line.in-view { transform: translateY(0); }

/* ======== ANIMATION 5: MARQUEE TOOLS STRIP ======== */
.trusted-logos.marquee-active {
  overflow: hidden;
  display: block;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.trusted-logos.marquee-active .marquee-track {
  display: flex;
  align-items: center;
  gap: 40px;
  width: max-content;
  animation: marquee-scroll 30s linear infinite;
}
.trusted-logos.marquee-active .marquee-track:hover { animation-play-state: paused; }
.trusted-logos.marquee-active .marquee-track span { flex-shrink: 0; white-space: nowrap; }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
