:root {
  --navy: #0a1024;
  --navy-2: #0c1230;
  --surface: #121a3a;
  --surface-2: #16204a;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.16);
  --ink: #f3f5fc;
  --ink-soft: #9ba5c8;
  --g1: #ff6a2b;
  --g2: #f12e8e;
  --g3: #3e6bf2;
  --wa: #25d366;
  --wa-deep: #1da851;
  --grad: linear-gradient(
    135deg,
    var(--g1) 0%,
    var(--g2) 50%,
    var(--g3) 100%
  );
  --grad-soft: linear-gradient(
    135deg,
    rgba(255, 106, 43, 0.18),
    rgba(241, 46, 142, 0.18) 50%,
    rgba(62, 107, 242, 0.18)
  );
  --radius: 18px;
  --font-display: "Cairo", sans-serif;
  --font-body: "Tajawal", sans-serif;
}

html[lang="ku"] {
  --font-display: "Noto Kufi Arabic", sans-serif;
  --font-body: "Noto Sans Arabic", sans-serif;
}

html[lang="en"] {
  --font-display: "Sora", sans-serif;
  --font-body: "Inter", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--ink);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

html[lang="en"] h1,
html[lang="en"] h2 {
  letter-spacing: -0.025em;
}

::selection {
  background: var(--g2);
  color: #fff;
}

a {
  color: inherit;
}

.wrap {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
}

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

/* logo */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  text-decoration: none;
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  line-height: 1;
}

.logo .p {
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo .rest {
  color: #fff;
}

.logo img {
  height: auto;
  max-width: 100%;
  display: block;
}

header .logo img {
  width: auto;
  height: clamp(28px, 6vw, 40px);
}

footer .logo img {
  width: auto;
  height: clamp(22px, 5vw, 30px);
}

/* nav */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 16, 36, 0.72);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  gap: 16px;
}

nav ul {
  display: flex;
  gap: 26px;
  list-style: none;
}

nav ul a {
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.2s;
}

nav ul a:hover {
  color: #fff;
}

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

.lang-switch {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-strong);
  border-radius: 99px;
  padding: 3px;
  gap: 2px;
}

.lang-switch button {
  border: 0;
  background: transparent;
  color: var(--ink-soft);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  padding: 6px 12px;
  border-radius: 99px;
  cursor: pointer;
  transition: color 0.2s;
}

.lang-switch button.active {
  background: var(--grad);
  color: #fff;
}

.nav-cta {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  background: var(--grad);
  color: #fff;
  padding: 11px 22px;
  border-radius: 99px;
  transition:
    transform 0.15s,
    box-shadow 0.2s;
  white-space: nowrap;
  box-shadow: 0 8px 24px -8px rgba(241, 46, 142, 0.5);
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 30px -8px rgba(241, 46, 142, 0.65);
}

.menu-btn {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  font-size: 1.5rem;
  color: #fff;
}

/* hero */
.hero {
  padding: 80px 0 92px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -25%;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(
      600px 380px at 82% 6%,
      rgba(255, 106, 43, 0.2),
      transparent 65%
    ),
    radial-gradient(
      560px 400px at 95% 50%,
      rgba(62, 107, 242, 0.18),
      transparent 65%
    ),
    radial-gradient(
      520px 380px at 5% 92%,
      rgba(241, 46, 142, 0.16),
      transparent 65%
    );
  animation: heroDrift 20s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes heroDrift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(-3%, 2.5%, 0) scale(1.08);
  }

  100% {
    transform: translate3d(3%, -2%, 0) scale(1.05);
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  -webkit-mask: linear-gradient(
    180deg,
    transparent 0,
    #000 14%,
    #000 72%,
    transparent 100%
  );
  mask: linear-gradient(
    180deg,
    transparent 0,
    #000 14%,
    #000 72%,
    transparent 100%
  );
}

.hero-bg .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.55;
  will-change: transform;
}

.orb-1 {
  width: 460px;
  height: 460px;
  top: -120px;
  right: 4%;
  background: radial-gradient(
    circle at 30% 30%,
    var(--accent, #ff6a2b),
    transparent 70%
  );
  animation: orbFloat1 11s ease-in-out infinite alternate;
}

.orb-2 {
  width: 380px;
  height: 380px;
  top: 30%;
  right: -100px;
  background: radial-gradient(
    circle at 30% 30%,
    #3e6bf2,
    transparent 70%
  );
  animation: orbFloat2 13s ease-in-out infinite alternate;
}

.orb-3 {
  width: 340px;
  height: 340px;
  bottom: -120px;
  left: -60px;
  background: radial-gradient(
    circle at 30% 30%,
    #f12e8e,
    transparent 70%
  );
  animation: orbFloat3 9.5s ease-in-out infinite alternate;
}

@keyframes orbFloat1 {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.5;
  }

  50% {
    transform: translate3d(-40px, 35px, 0) scale(1.12);
    opacity: 0.65;
  }

  100% {
    transform: translate3d(-70px, 60px, 0) scale(0.95);
    opacity: 0.5;
  }
}

@keyframes orbFloat2 {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.5;
  }

  50% {
    transform: translate3d(-55px, -30px, 0) scale(0.9);
    opacity: 0.62;
  }

  100% {
    transform: translate3d(-90px, -50px, 0) scale(1.1);
    opacity: 0.5;
  }
}

@keyframes orbFloat3 {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.5;
  }

  50% {
    transform: translate3d(45px, -40px, 0) scale(1.14);
    opacity: 0.66;
  }

  100% {
    transform: translate3d(80px, -70px, 0) scale(0.92);
    opacity: 0.5;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg .orb {
    animation: none;
  }
}

/* scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.offer-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-strong);
  border-radius: 99px;
  padding: 7px 18px 7px 7px;
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: #fff;
  backdrop-filter: blur(6px);
}

.offer-badge .free {
  background: var(--grad);
  color: #fff;
  border-radius: 99px;
  padding: 5px 13px;
  font-size: 0.75rem;
}

.iq-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--ink-soft);
  margin-bottom: 22px;
}

.iq-tag b {
  color: #fff;
}

h1 {
  font-family: var(--font-display);
  font-size: clamp(2.05rem, 4.7vw, 3.25rem);
  font-weight: 800;
  line-height: 1.24;
  color: #fff;
}

.hero p.lead {
  margin: 22px 0 30px;
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 52ch;
}

.btn-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.98rem;
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 99px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  border: 0;
  transition:
    transform 0.15s,
    box-shadow 0.15s,
    background 0.2s;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 12px 30px -10px rgba(241, 46, 142, 0.6);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 38px -10px rgba(241, 46, 142, 0.7);
}

.btn-ghost {
  border: 1.5px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
}

.btn-ghost:hover {
  border-color: transparent;
  background: var(--grad-soft);
}

.hero-meta {
  margin-top: 38px;
  display: flex;
  gap: 18px;
  font-size: 0.92rem;
  color: var(--ink-soft);
  flex-wrap: wrap;
}

.hero-meta > div {
  flex: 1 1 140px;
  padding: 16px 20px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--grad-soft);
  transition:
    transform 0.2s,
    border-color 0.2s,
    box-shadow 0.2s;
}

.hero-meta > div:hover {
  transform: translateY(-4px);
  border-color: var(--g2);
  box-shadow: 0 20px 40px -24px rgba(241, 46, 142, 0.45);
}

.hero-meta b {
  display: block;
  font-family: var(--font-display);
  font-size: 2.1rem;
  line-height: 1.1;
  margin-bottom: 4px;
}

/* studio preview */
.studio {
  position: relative;
  border-radius: 22px;
  padding: 2px;
  background: var(--grad);
  box-shadow: 0 40px 90px -40px rgba(241, 46, 142, 0.5);
}

.studio-inner {
  background: var(--navy-2);
  border-radius: 20px;
  padding: 18px;
}

.studio .bar {
  display: flex;
  gap: 7px;
  margin-bottom: 14px;
  align-items: center;
}

.studio .bar i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #2a3354;
}

.studio .bar i:first-child {
  background: var(--g1);
}

.studio .bar i:nth-child(2) {
  background: var(--g2);
}

.studio .bar i:nth-child(3) {
  background: var(--g3);
}

.studio .bar span {
  margin-inline-start: auto;
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--ink-soft);
}

.preview {
  background: #fff;
  border-radius: 12px;
  padding: 18px;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.blk {
  border-radius: 10px;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.5s,
    transform 0.5s;
}

.blk.on {
  opacity: 1;
  transform: none;
}

.blk-head {
  height: 34px;
  background: #f0ecfa;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
}

.blk-head i {
  width: 54px;
  height: 8px;
  border-radius: 99px;
  background: var(--g2);
}

.blk-head em {
  width: 26px;
  height: 8px;
  border-radius: 99px;
  background: #d9c9ee;
  margin-inline-start: auto;
}

.blk-img {
  height: 84px;
  background: var(--grad);
  display: grid;
  place-items: center;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  opacity: 0.95;
}

.blk-text {
  display: flex;
  flex-direction: column;
  gap: 7px;
  background: none;
}

.blk-text i {
  height: 9px;
  border-radius: 99px;
  background: #e7e9f2;
}

.blk-text i:nth-child(2) {
  width: 72%;
}

.blk-btn {
  height: 38px;
  background: var(--g3);
  display: grid;
  place-items: center;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  width: 55%;
}

.render {
  margin-top: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.6s,
    transform 0.6s;
}

.render.on {
  opacity: 1;
  transform: none;
}

.render h4 {
  font-family: var(--font-display);
  font-weight: 700;
  color: #fff;
  font-size: 0.95rem;
}

.render small {
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.render .chip {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  background: var(--wa);
  color: #fff;
  padding: 8px 16px;
  border-radius: 99px;
  white-space: nowrap;
}

/* sections */
section {
  padding: 88px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2rem;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

h2 {
  font-family: var(--font-display);
  font-weight: 800;
  color: #fff;
  font-size: clamp(1.65rem, 3.2vw, 2.3rem);
  line-height: 1.35;
  max-width: 28ch;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  align-items: center;
  gap: 24px;
  margin-bottom: 46px;
  flex-wrap: wrap;
}

.section-head p {
  color: var(--ink-soft);
  max-width: 44ch;
  font-size: 1.02rem;
}

/* services 3x3 */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: var(--grad);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.25s;
  pointer-events: none;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 50px -28px rgba(0, 0, 0, 0.6);
}

.card:hover::after {
  opacity: 1;
}

.card .glyph {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: var(--grad-soft);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  margin-bottom: 15px;
}

.card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 7px;
  color: #fff;
}

.card p {
  font-size: 0.92rem;
  color: var(--ink-soft);
}

/* trial timeline */
.trial {
  background: var(--navy-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 8px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.12);
  z-index: 0;
}

.timeline::after {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--grad);
  box-shadow:
    0 0 10px 1px rgba(241, 46, 142, 0.55),
    0 0 22px 3px rgba(62, 107, 242, 0.35);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1.8s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

/* RTL (Arabic & Kurdish): sweep the line right→left */
html[dir="rtl"] .timeline::after {
  transform-origin: right center;
}

.timeline.lit::after {
  transform: scaleX(1);
}

.tl-step {
  padding-inline-end: 20px;
  position: relative;
  z-index: 1;
}

.tl-step .node {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--navy-2);
  border: 5px solid var(--g2);
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
  transform: scale(0.45);
  opacity: 0.3;
  transition:
    transform 0.45s ease,
    opacity 0.45s ease,
    box-shadow 0.45s ease;
}

.timeline.lit .tl-step .node {
  transform: scale(1);
  opacity: 1;
  animation: nodeGlow 2.4s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .timeline.lit .tl-step .node {
    animation: none;
  }
}

.timeline.lit .tl-step:nth-child(1) .node {
  transition-delay: 0s;
  animation-delay: 0s;
  --glow: 255, 106, 43;
}

.timeline.lit .tl-step:nth-child(2) .node {
  transition-delay: 0.55s;
  animation-delay: 0.55s;
  --glow: 241, 46, 142;
}

.timeline.lit .tl-step:nth-child(3) .node {
  transition-delay: 1.1s;
  animation-delay: 1.1s;
  --glow: 62, 107, 242;
}

.timeline.lit .tl-step:nth-child(4) .node {
  transition-delay: 1.65s;
  animation-delay: 1.65s;
  --glow: 37, 211, 102;
}

@keyframes nodeGlow {
  0%,
  100% {
    box-shadow:
      0 0 0 4px rgba(var(--glow, 241, 46, 142), 0.14),
      0 0 12px 2px rgba(var(--glow, 241, 46, 142), 0.35);
  }
  50% {
    box-shadow:
      0 0 0 7px rgba(var(--glow, 241, 46, 142), 0.22),
      0 0 22px 6px rgba(var(--glow, 241, 46, 142), 0.65);
  }
}

.tl-step:nth-child(1) .node {
  border-color: var(--g1);
}

.tl-step:nth-child(2) .node {
  border-color: var(--g2);
}

.tl-step:nth-child(3) .node {
  border-color: var(--g3);
}

.tl-step:last-child .node {
  border-color: var(--wa);
}

.tl-step .when {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  display: block;
  margin-bottom: 6px;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tl-step:last-child .when {
  background: none;
  -webkit-text-fill-color: initial;
  color: var(--wa);
}

.tl-step h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 6px;
  color: #fff;
}

.tl-step p {
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.trust {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px dashed var(--line-strong);
}

.trust div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.94rem;
  font-weight: 500;
  color: #fff;
}

.trust .tick {
  width: 23px;
  height: 23px;
  border-radius: 50%;
  background: var(--grad);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 0.72rem;
  flex: none;
}

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.faq {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
}

.faq h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  margin-bottom: 10px;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.faq p {
  font-size: 0.92rem;
  color: var(--ink-soft);
}

/* contact */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.contact-side p {
  color: var(--ink-soft);
  margin: 14px 0 30px;
  max-width: 44ch;
  font-size: 1.02rem;
}

.wa-line {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: #fff;
}

.wa-line .pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--wa);
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  animation: pulse 2s infinite;
  flex: none;
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 11px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.email-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  padding: 12px 20px;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  font-size: 0.95rem;
  color: #aaa;
  transition: border-color 0.3s;
}

.email-line:hover {
  border-color: var(--accent);
}

.email-line a {
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
}

.email-line a:hover {
  text-decoration: underline;
}

form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: 0 30px 70px -40px rgba(0, 0, 0, 0.7);
}

.field {
  margin-bottom: 20px;
}

label {
  display: block;
  font-weight: 700;
  font-size: 0.88rem;
  color: #fff;
  margin-bottom: 8px;
  font-family: var(--font-display);
}

input,
select,
textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.97rem;
  color: var(--ink);
  background: var(--navy);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 13px 16px;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  outline: none;
  appearance: none;
}

select option {
  background: var(--navy);
  color: var(--ink);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

input::placeholder,
textarea::placeholder {
  color: #6e78a0;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--g2);
  box-shadow: 0 0 0 3px rgba(241, 46, 142, 0.18);
}

.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.btn-wa {
  width: 100%;
  justify-content: center;
  background: var(--wa);
  color: #fff;
  font-size: 1.02rem;
  box-shadow: 0 12px 28px -10px rgba(37, 211, 102, 0.5);
}

.btn-wa:hover {
  background: var(--wa-deep);
}

.form-note {
  margin-top: 14px;
  font-size: 0.83rem;
  color: var(--ink-soft);
  text-align: center;
}

footer {
  border-top: 1px solid var(--line);
  padding: 34px 0;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

footer .wrap {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

footer .social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  transition:
    color 0.2s,
    border-color 0.2s,
    background 0.2s;
}

footer .social:hover {
  color: #fff;
  background: #1877f2;
  border-color: #1877f2;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--g2);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .blk,
  .render {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .cards {
    grid-template-columns: 1fr 1fr;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .timeline {
    grid-template-columns: 1fr 1fr;
    gap: 32px 18px;
  }

  .timeline::before,
  .timeline::after {
    display: none;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 680px) {
  nav ul {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  nav.open ul {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    background: var(--navy-2);
    border-bottom: 1px solid var(--line);
    padding: 20px 24px;
    gap: 18px;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .render {
    flex-direction: column;
    align-items: flex-start;
  }

  .email-line {
    flex-direction: column;
    align-items: flex-start;
  }

  .timeline {
    grid-template-columns: 1fr;
  }

  .trust {
    flex-direction: column;
    gap: 14px;
  }

  .two {
    grid-template-columns: 1fr;
  }

  section {
    padding: 60px 0;
  }

  .hero {
    padding: 50px 0 66px;
  }

  form {
    padding: 26px 20px;
  }

  .lang-switch button {
    padding: 6px 9px;
  }
}
