/* ==========================================================================
   Dev1Day by Microads — Stylesheet
   Modern dark theme · glassmorphism · gradient accents
   ========================================================================== */

:root {
  --bg: #0a0a14;
  --bg-2: #0e0e1c;
  --bg-alt: #0c0c18;
  --surface: rgba(255, 255, 255, 0.035);
  --surface-2: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(255, 255, 255, 0.16);
  --text: #f4f5fb;
  --text-soft: #b6b9cc;
  --text-mute: #7a7e96;

  --c1: #7c5cff;   /* violet */
  --c2: #22d3ee;   /* cyan   */
  --c3: #ff5c93;   /* pink   */
  --c4: #ffd166;   /* amber  */
  --grad: linear-gradient(120deg, #7c5cff 0%, #22d3ee 100%);
  --grad-hot: linear-gradient(120deg, #ff5c93 0%, #ffb15c 100%);
  --grad-text: linear-gradient(120deg, #a78bfa 0%, #22d3ee 60%, #5eead4 100%);

  --radius: 18px;
  --radius-lg: 26px;
  --shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 60px -12px rgba(124, 92, 255, 0.5);
  --maxw: 1180px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.lang-locked { overflow: hidden; height: 100vh; }

h1, h2, h3, h4 { font-family: "Sora", sans-serif; font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; }

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

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 820px; }

.gradient-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: "Sora", sans-serif; font-weight: 600; font-size: 15px;
  padding: 13px 26px; border-radius: 100px; border: 1px solid transparent;
  cursor: pointer; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s; white-space: nowrap;
}
.btn--sm { padding: 9px 18px; font-size: 14px; }
.btn--lg { padding: 16px 34px; font-size: 16px; }
.btn--block { width: 100%; }
.btn--primary { background: var(--grad); color: #fff; box-shadow: 0 10px 30px -8px rgba(124, 92, 255, .6); }
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -10px rgba(124, 92, 255, .75); }
.btn--ghost { background: var(--surface-2); color: var(--text); border-color: var(--border); }
.btn--ghost:hover { background: var(--surface); border-color: var(--border-strong); transform: translateY(-3px); }
.btn--outline { background: transparent; color: var(--text); border-color: var(--border-strong); }
.btn--outline:hover { background: var(--surface-2); transform: translateY(-3px); }
.btn--light { background: #fff; color: #14121f; }
.btn--light:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -10px rgba(255,255,255,.4); }

/* ===== Glass utility ===== */
.glass {
  background: var(--surface);
  border: 1px solid var(--border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

/* ===== Language Modal ===== */
.lang-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(6, 6, 14, 0.82);
  backdrop-filter: blur(14px);
  display: flex; align-items: center; justify-content: center; padding: 24px;
  opacity: 1; transition: opacity .45s var(--ease);
}
.lang-overlay.hide { opacity: 0; pointer-events: none; }
.lang-modal {
  position: relative; text-align: center; max-width: 460px; width: 100%;
  background: linear-gradient(160deg, #14132a, #0d0c1c);
  border: 1px solid var(--border-strong); border-radius: var(--radius-lg);
  padding: 48px 36px; box-shadow: var(--shadow); overflow: hidden;
  animation: popIn .5s var(--ease);
}
@keyframes popIn { from { opacity: 0; transform: translateY(20px) scale(.96); } to { opacity: 1; transform: none; } }
.lang-modal__glow {
  position: absolute; top: -60%; left: 50%; transform: translateX(-50%);
  width: 320px; height: 320px; background: var(--grad); filter: blur(90px); opacity: .35; z-index: 0;
}
.lang-modal > * { position: relative; z-index: 1; }
.lang-modal__logo { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 22px; font-family: "Sora"; font-size: 24px; font-weight: 800; }
.lang-modal h2 { font-size: 24px; margin-bottom: 6px; }
.lang-modal p { color: var(--text-soft); margin-bottom: 28px; font-size: 15px; }
.lang-options { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.lang-option {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  padding: 22px 16px; background: var(--surface-2); border: 1px solid var(--border);
  border-radius: var(--radius); cursor: pointer; color: var(--text);
  font-family: "Sora"; font-weight: 600; font-size: 15px; transition: all .25s var(--ease);
}
.lang-option:hover { border-color: var(--c1); background: rgba(124,92,255,.12); transform: translateY(-4px); box-shadow: var(--shadow-glow); }
.lang-option .flag { border-radius: 6px; overflow: hidden; line-height: 0; box-shadow: 0 4px 12px rgba(0,0,0,.4); }

/* ===== Header ===== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .3s, border-color .3s, padding .3s;
  border-bottom: 1px solid transparent; padding: 8px 0;
}
.header.scrolled {
  background: rgba(10, 10, 20, 0.72); backdrop-filter: blur(18px);
  border-bottom-color: var(--border);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }

.logo { display: inline-flex; align-items: baseline; gap: 7px; font-family: "Sora"; font-weight: 800; font-size: 22px; }
.logo-mark { font-size: 20px; filter: drop-shadow(0 0 10px rgba(124,92,255,.8)); }
.logo-text { letter-spacing: -.02em; }
.logo-accent { background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.logo-by { font-family: "Inter"; font-size: 11px; font-weight: 500; color: var(--text-mute); letter-spacing: .04em; align-self: center; }

.nav { display: flex; gap: 30px; }
.nav a { font-size: 15px; color: var(--text-soft); font-weight: 500; transition: color .2s; position: relative; }
.nav a:hover { color: var(--text); }
.nav a::after { content: ""; position: absolute; left: 0; bottom: -4px; width: 0; height: 2px; background: var(--grad); transition: width .25s var(--ease); border-radius: 2px; }
.nav a:hover::after { width: 100%; }

.header__actions { display: flex; align-items: center; gap: 14px; }

/* Language switch */
.lang-switch { position: relative; }
.lang-switch__btn {
  display: flex; align-items: center; gap: 7px; background: var(--surface-2);
  border: 1px solid var(--border); color: var(--text); padding: 7px 12px;
  border-radius: 100px; cursor: pointer; font-size: 13px; font-weight: 600; font-family: "Sora"; transition: all .2s;
}
.lang-switch__btn:hover { border-color: var(--border-strong); }
.lang-switch__flag, .mini-flag { width: 20px; height: 14px; border-radius: 3px; display: inline-block; background-size: cover; }
.flag-en { background: linear-gradient(#012169,#012169); position: relative; }
.lang-switch__menu {
  position: absolute; top: calc(100% + 8px); right: 0; min-width: 160px;
  background: #14132a; border: 1px solid var(--border-strong); border-radius: 14px;
  padding: 6px; opacity: 0; visibility: hidden; transform: translateY(-8px); transition: all .2s var(--ease); box-shadow: var(--shadow);
}
.lang-switch.open .lang-switch__menu { opacity: 1; visibility: visible; transform: none; }
.lang-switch__menu button {
  display: flex; align-items: center; gap: 10px; width: 100%; background: none; border: none;
  color: var(--text-soft); padding: 10px 12px; border-radius: 9px; cursor: pointer; font-size: 14px; font-family: "Inter"; text-align: left; transition: all .15s;
}
.lang-switch__menu button:hover { background: var(--surface-2); color: var(--text); }

.menu-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.menu-toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: .3s; }

/* ===== Hero ===== */
.hero { position: relative; padding: 150px 0 60px; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .5; }
.orb--1 { width: 480px; height: 480px; background: radial-gradient(circle, #7c5cff, transparent 70%); top: -120px; left: -80px; animation: float1 14s ease-in-out infinite; }
.orb--2 { width: 420px; height: 420px; background: radial-gradient(circle, #22d3ee, transparent 70%); top: 100px; right: -100px; animation: float2 16s ease-in-out infinite; }
@keyframes float1 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(40px,30px)} }
@keyframes float2 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-50px,40px)} }
.grid-lines {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 40%, transparent 100%);
}

.hero__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: 50px; align-items: center; }

.badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; border-radius: 100px;
  background: var(--surface-2); border: 1px solid var(--border); font-size: 13.5px; font-weight: 600; color: var(--text-soft);
  margin-bottom: 24px; backdrop-filter: blur(10px);
}
.hero__title { font-size: clamp(38px, 5.2vw, 66px); font-weight: 800; margin-bottom: 22px; }
.hero__title span { display: block; }
.hero__subtitle { font-size: clamp(16px, 2vw, 19px); color: var(--text-soft); max-width: 540px; margin-bottom: 34px; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.hero__trust { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-mute); }
.pulse-dot { width: 9px; height: 9px; border-radius: 50%; background: #34d399; box-shadow: 0 0 0 0 rgba(52,211,153,.6); animation: pulse 2s infinite; flex-shrink: 0; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(52,211,153,.6)} 70%{box-shadow:0 0 0 10px rgba(52,211,153,0)} 100%{box-shadow:0 0 0 0 rgba(52,211,153,0)} }

/* Hero visual */
.hero__visual { position: relative; }
.float-card { border-radius: var(--radius-lg); padding: 22px; box-shadow: var(--shadow); animation: cardFloat 6s ease-in-out infinite; }
@keyframes cardFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }
.float-card__top { display: flex; align-items: center; gap: 7px; margin-bottom: 20px; }
.dot { width: 11px; height: 11px; border-radius: 50%; }
.dot--r{background:#ff5f57} .dot--y{background:#febc2e} .dot--g{background:#28c840}
.float-card__label { margin-left: auto; font-size: 12px; color: var(--text-mute); font-family: "Sora"; }
.code-lines { display: flex; flex-direction: column; gap: 12px; margin-bottom: 22px; }
.cl { display: flex; gap: 8px; }
.cl i { height: 11px; border-radius: 4px; display: block; background: var(--surface-2); animation: shimmer 2.4s infinite; }
.cl i:nth-child(1){ width: 30%; background: linear-gradient(90deg,#7c5cff,#a78bfa); }
.cl i:nth-child(2){ width: 50%; }
.cl i:nth-child(3){ width: 20%; background: linear-gradient(90deg,#22d3ee,#5eead4); }
.cl:nth-child(2) i:nth-child(1){ width: 22%; background: linear-gradient(90deg,#ff5c93,#ffb15c);}
.cl:nth-child(3) i:nth-child(1){ width: 40%; }
@keyframes shimmer { 0%,100%{opacity:.5} 50%{opacity:1} }
.progress { height: 8px; border-radius: 100px; background: var(--surface-2); overflow: hidden; margin-bottom: 18px; }
.progress__bar { height: 100%; width: 100%; background: var(--grad); border-radius: 100px; animation: load 3s var(--ease) forwards; }
@keyframes load { from{width:0} to{width:100%} }
.float-card__status { display: flex; align-items: center; justify-content: space-between; }
.status-pill { display: inline-flex; align-items: center; gap: 7px; background: rgba(52,211,153,.15); color: #6ee7b7; border: 1px solid rgba(52,211,153,.3); padding: 6px 12px; border-radius: 100px; font-size: 13px; font-weight: 600; }
.check { font-weight: 800; }
.float-card__time { font-size: 12.5px; color: var(--text-mute); }

.mini-badge { position: absolute; padding: 11px 16px; border-radius: 14px; font-size: 13.5px; font-weight: 700; font-family: "Sora"; background: #14132a; border: 1px solid var(--border-strong); box-shadow: var(--shadow); display: flex; align-items: center; gap: 6px; }
.mini-badge--1 { bottom: -18px; left: -16px; animation: cardFloat 5s ease-in-out infinite .5s; }
.mini-badge--2 { top: -16px; right: -10px; background: var(--grad-hot); border: none; color: #1a0d12; animation: cardFloat 5.5s ease-in-out infinite 1s; }

/* Stats */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; border-radius: var(--radius-lg); padding: 30px 20px; margin-top: 60px; }
.stat { text-align: center; padding: 6px 10px; position: relative; }
.stat:not(:last-child)::after { content: ""; position: absolute; right: 0; top: 20%; height: 60%; width: 1px; background: var(--border); }
.stat__num { font-family: "Sora"; font-size: clamp(26px, 3.4vw, 38px); font-weight: 800; background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat__label { font-size: 13.5px; color: var(--text-mute); margin-top: 4px; }

/* ===== Sections ===== */
.section { padding: 96px 0; position: relative; }
.section--alt { background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section__head { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.kicker { display: inline-block; font-family: "Sora"; font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--c2); margin-bottom: 14px; padding: 5px 14px; border: 1px solid var(--border); border-radius: 100px; background: var(--surface-2); }
.section__title { font-size: clamp(28px, 4vw, 44px); margin-bottom: 16px; }
.section__sub { font-size: 17px; color: var(--text-soft); }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ===== Services ===== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card {
  position: relative; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px 28px; overflow: hidden; transition: transform .35s var(--ease), border-color .35s, background .35s;
}
.service-card::before { content: ""; position: absolute; inset: 0; background: radial-gradient(400px circle at var(--mx,50%) var(--my,0%), rgba(124,92,255,.12), transparent 60%); opacity: 0; transition: opacity .4s; }
.service-card:hover { transform: translateY(-8px); border-color: var(--border-strong); background: var(--surface-2); }
.service-card:hover::before { opacity: 1; }
.service-card__icon { width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center; font-size: 26px; margin-bottom: 22px; color: #fff; box-shadow: 0 10px 24px -8px rgba(0,0,0,.5); }
.i-grad-1 { background: linear-gradient(135deg,#7c5cff,#b794ff); }
.i-grad-2 { background: linear-gradient(135deg,#22d3ee,#3b82f6); }
.i-grad-3 { background: linear-gradient(135deg,#34d399,#10b981); }
.i-grad-4 { background: linear-gradient(135deg,#ff5c93,#ff8e53); }
.i-grad-5 { background: linear-gradient(135deg,#fbbf24,#f97316); }
.i-grad-6 { background: linear-gradient(135deg,#a78bfa,#22d3ee); }
.service-card h3 { font-size: 21px; margin-bottom: 12px; position: relative; }
.service-card p { color: var(--text-soft); font-size: 15px; margin-bottom: 18px; position: relative; }
.service-card__tag { font-family: "Sora"; font-size: 12.5px; color: var(--c2); font-weight: 600; position: relative; }

/* ===== Why ===== */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.why-card { position: relative; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 34px 26px; transition: transform .35s var(--ease), border-color .35s; overflow: hidden; }
.why-card:hover { transform: translateY(-8px); border-color: var(--border-strong); }
.why-card__num { position: absolute; top: 18px; right: 22px; font-family: "Sora"; font-size: 42px; font-weight: 800; color: rgba(255,255,255,.05); }
.why-card__icon { font-size: 34px; margin-bottom: 20px; }
.why-card h3 { font-size: 19px; margin-bottom: 12px; }
.why-card p { color: var(--text-soft); font-size: 14.5px; }
.why-card--feature { background: linear-gradient(160deg, rgba(124,92,255,.18), rgba(34,211,238,.07)); border-color: rgba(124,92,255,.4); box-shadow: var(--shadow-glow); }

/* ===== Timeline ===== */
.timeline { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.timeline__line { position: absolute; top: 8px; left: 6%; right: 6%; height: 2px; background: linear-gradient(90deg, var(--c1), var(--c2), var(--c3)); opacity: .4; }
.step { position: relative; padding-top: 40px; }
.step__dot { position: absolute; top: 1px; left: 50%; transform: translateX(-50%); width: 16px; height: 16px; border-radius: 50%; background: var(--c1); border: 3px solid var(--bg); box-shadow: 0 0 0 4px rgba(124,92,255,.2); }
.step__dot--hot { background: var(--c3); box-shadow: 0 0 0 4px rgba(255,92,147,.25); animation: pulse2 2s infinite; }
@keyframes pulse2 { 0%,100%{box-shadow:0 0 0 4px rgba(255,92,147,.25)} 50%{box-shadow:0 0 0 9px rgba(255,92,147,.05)} }
.step__time { text-align: center; font-family: "Sora"; font-weight: 800; font-size: 15px; color: var(--c1); margin-bottom: 14px; }
.step__time--hot { color: var(--c3); }
.step__card { border-radius: var(--radius); padding: 24px 22px; height: calc(100% - 30px); transition: transform .3s var(--ease); }
.step__card:hover { transform: translateY(-6px); }
.step__card--hot { border-color: rgba(255,92,147,.4); background: linear-gradient(160deg, rgba(255,92,147,.12), transparent); }
.step__badge { font-family: "Sora"; font-size: 12px; font-weight: 700; color: var(--text-mute); text-transform: uppercase; letter-spacing: .08em; }
.step__card h3 { font-size: 18px; margin: 10px 0 10px; }
.step__card p { color: var(--text-soft); font-size: 14.5px; }

/* ===== Products ===== */
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.product-card { position: relative; text-align: center; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px 24px; transition: transform .35s var(--ease), border-color .35s; }
.product-card:hover { transform: translateY(-8px); border-color: var(--border-strong); }
.product-card__icon { font-size: 40px; margin-bottom: 16px; }
.product-card h3 { font-size: 19px; margin-bottom: 4px; }
.product-card__url { display: inline-block; font-family: "Sora"; font-size: 12.5px; font-weight: 600; color: var(--c2); margin-bottom: 12px; opacity: .85; }
.product-card p { color: var(--text-soft); font-size: 14px; }
a.product-card:hover .product-card__url { text-decoration: underline; }
.product-card--here { background: linear-gradient(160deg, rgba(124,92,255,.2), rgba(34,211,238,.08)); border-color: rgba(124,92,255,.5); box-shadow: var(--shadow-glow); }
.product-card__badge { position: absolute; top: -11px; left: 50%; transform: translateX(-50%); background: var(--grad); color: #fff; font-family: "Sora"; font-size: 11px; font-weight: 700; padding: 5px 14px; border-radius: 100px; white-space: nowrap; box-shadow: 0 6px 18px -4px rgba(124,92,255,.6); }

/* ===== Pricing ===== */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: start; }
.price-card { position: relative; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 38px 30px; transition: transform .35s var(--ease), border-color .35s; }
.price-card:hover { transform: translateY(-8px); border-color: var(--border-strong); }
.price-card h3 { font-size: 20px; margin-bottom: 14px; }
.price-card__price { margin-bottom: 26px; display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.price-card__price small { color: var(--text-mute); font-size: 14px; }
.price-card__price strong { font-family: "Sora"; font-size: 30px; font-weight: 800; background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.price-card ul { list-style: none; margin-bottom: 28px; display: flex; flex-direction: column; gap: 13px; }
.price-card li { position: relative; padding-left: 28px; color: var(--text-soft); font-size: 14.5px; }
.price-card li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 19px; height: 19px; border-radius: 50%; background: rgba(52,211,153,.16); color: #6ee7b7; font-size: 11px; font-weight: 800; display: grid; place-items: center; }
.price-card--popular { background: linear-gradient(170deg, rgba(124,92,255,.16), rgba(34,211,238,.05)); border-color: rgba(124,92,255,.5); box-shadow: var(--shadow-glow); transform: scale(1.03); }
.price-card--popular:hover { transform: scale(1.03) translateY(-8px); }
.price-card__tag { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--grad); color: #fff; font-family: "Sora"; font-size: 12px; font-weight: 700; padding: 6px 18px; border-radius: 100px; box-shadow: 0 8px 20px -4px rgba(124,92,255,.6); }

/* ===== Testimonials ===== */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testi-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px 28px; transition: transform .35s var(--ease), border-color .35s; }
.testi-card:hover { transform: translateY(-6px); border-color: var(--border-strong); }
.testi-card__stars { color: var(--c4); font-size: 16px; letter-spacing: 3px; margin-bottom: 18px; }
.testi-card p { color: var(--text); font-size: 15.5px; margin-bottom: 24px; font-style: italic; }
.testi-card__author { display: flex; align-items: center; gap: 14px; }
.avatar { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; font-family: "Sora"; font-weight: 700; color: #fff; font-size: 15px; flex-shrink: 0; }
.avatar--1 { background: linear-gradient(135deg,#7c5cff,#22d3ee); }
.avatar--2 { background: linear-gradient(135deg,#ff5c93,#ffb15c); }
.avatar--3 { background: linear-gradient(135deg,#34d399,#22d3ee); }
.testi-card__author strong { display: block; font-family: "Sora"; font-size: 15px; }
.testi-card__author span { font-size: 13px; color: var(--text-mute); }

/* ===== FAQ ===== */
.faq { display: flex; flex-direction: column; gap: 14px; }
.faq__item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: border-color .3s; }
.faq__item.open { border-color: var(--border-strong); }
.faq__q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; background: none; border: none; color: var(--text); padding: 22px 24px; cursor: pointer; font-family: "Sora"; font-size: 16.5px; font-weight: 600; text-align: left; }
.faq__icon { flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; background: var(--surface-2); display: grid; place-items: center; font-size: 18px; transition: transform .3s var(--ease), background .3s; }
.faq__item.open .faq__icon { transform: rotate(45deg); background: var(--grad); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq__a p { padding: 0 24px 22px; color: var(--text-soft); font-size: 15px; }

/* ===== CTA band ===== */
.cta-band { padding: 40px 0 96px; }
.cta-band__inner { position: relative; text-align: center; background: linear-gradient(135deg, #1a1530, #0e1430); border: 1px solid var(--border-strong); border-radius: var(--radius-lg); padding: 70px 40px; overflow: hidden; }
.cta-band__glow { position: absolute; inset: 0; background: radial-gradient(circle at 50% 0%, rgba(124,92,255,.4), transparent 60%); pointer-events: none; }
.cta-band__inner > * { position: relative; z-index: 1; }
.cta-band h2 { font-size: clamp(26px, 4vw, 42px); margin-bottom: 16px; }
.cta-band p { color: var(--text-soft); font-size: 17px; max-width: 560px; margin: 0 auto 30px; }
.cta-band__note { font-size: 14px !important; color: var(--text-mute) !important; margin-top: 22px !important; }

/* ===== Contact ===== */
.contact-wrap { display: grid; grid-template-columns: 1fr 1.1fr; gap: 50px; align-items: start; }
.contact-info .section__title { text-align: left; font-size: clamp(26px,3.5vw,38px); }
.contact-info .section__sub { font-size: 16px; }
.contact-info__list { margin-top: 32px; display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.contact-chip { font-family: "Sora"; font-size: 13px; text-transform: uppercase; letter-spacing: .1em; color: var(--text-mute); }
.contact-line { font-size: 16px; color: var(--text-soft); transition: color .2s; }
.contact-line:hover { color: var(--c2); }
.contact-since { margin-top: 22px; display: inline-flex; align-items: center; gap: 8px; padding: 10px 16px; border-radius: 100px; background: linear-gradient(120deg, rgba(124,92,255,.16), rgba(34,211,238,.1)); border: 1px solid rgba(124,92,255,.35); font-family: "Sora"; font-size: 13.5px; font-weight: 600; color: var(--text); }

.contact-form { border-radius: var(--radius-lg); padding: 34px; display: flex; flex-direction: column; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { font-family: "Sora"; font-size: 13.5px; font-weight: 600; color: var(--text-soft); }
.field input, .field select, .field textarea {
  background: var(--bg-2); border: 1px solid var(--border); border-radius: 12px; padding: 13px 16px;
  color: var(--text); font-family: "Inter"; font-size: 15px; transition: border-color .2s, box-shadow .2s; resize: vertical;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--c1); box-shadow: 0 0 0 3px rgba(124,92,255,.18); }
.field select { cursor: pointer; }
.field select option { background: #14132a; }
.form-success { display: none; text-align: center; padding: 14px; background: rgba(52,211,153,.14); border: 1px solid rgba(52,211,153,.35); border-radius: 12px; color: #6ee7b7; font-size: 14.5px; font-weight: 600; }
.form-success.show { display: block; animation: popIn .4s var(--ease); }

/* ===== Footer ===== */
.footer { border-top: 1px solid var(--border); padding: 64px 0 30px; background: var(--bg-2); }
.footer__inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 44px; }
.footer__brand .logo { margin-bottom: 16px; }
.footer__brand p { color: var(--text-mute); font-size: 14.5px; max-width: 280px; }
.footer__exp { margin-top: 12px; color: var(--c2) !important; font-weight: 500; }
.footer__col h4 { font-size: 15px; margin-bottom: 18px; }
.footer__col a { display: block; color: var(--text-mute); font-size: 14.5px; margin-bottom: 12px; transition: color .2s; }
.footer__col a:hover { color: var(--c2); }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-top: 26px; border-top: 1px solid var(--border); font-size: 13.5px; color: var(--text-mute); flex-wrap: wrap; }
.footer__eco { display: inline-flex; align-items: center; gap: 6px; }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; gap: 60px; }
  .hero__visual { max-width: 420px; }
  .services-grid, .testi-grid, .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid, .products-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .timeline__line { display: none; }
  .contact-wrap { grid-template-columns: 1fr; gap: 36px; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 30px; }
  .price-card--popular { transform: none; }
  .price-card--popular:hover { transform: translateY(-8px); }
}
@media (max-width: 720px) {
  .nav { display: none; }
  .nav.open {
    display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0;
    background: #0e0e1c; border-bottom: 1px solid var(--border); padding: 18px 24px; gap: 18px;
  }
  .menu-toggle { display: flex; }
  .header__actions .btn--sm { display: none; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 22px 10px; }
  .stat:nth-child(2)::after { display: none; }
  .services-grid, .testi-grid, .pricing-grid, .why-grid, .products-grid { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .section { padding: 70px 0; }
  .footer__inner { grid-template-columns: 1fr; }
  .lang-options { grid-template-columns: 1fr; }
  .price-card--popular { transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}
