/* ============================================================
   kriptotransfer — design system
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --teal: #12A67D;
  --teal-bright: #1BC093;
  --teal-soft: #38e0af;
  --teal-deep: #0c7e5f;

  --bg: #070d0b;
  --bg-2: #0a1512;
  --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(27, 192, 147, 0.35);

  --text: #eaf3ef;
  --text-soft: #a9bdb5;
  --text-muted: #6f857d;

  --grad: linear-gradient(135deg, var(--teal-bright), var(--teal-deep));
  --grad-text: linear-gradient(120deg, #ffffff 0%, var(--teal-soft) 60%, var(--teal-bright) 100%);
  --glow: 0 0 60px rgba(27, 192, 147, 0.35);

  --radius: 16px;
  --radius-lg: 24px;
  --maxw: 1200px;
  --nav-h: 74px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 90px; overflow-x: hidden; }

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

/* ambient background glows */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(60% 55% at 78% -8%, rgba(27, 192, 147, 0.18), transparent 60%),
    radial-gradient(50% 45% at 8% 12%, rgba(18, 166, 125, 0.14), transparent 55%),
    radial-gradient(45% 60% at 50% 108%, rgba(27, 192, 147, 0.1), transparent 60%);
  pointer-events: none;
}
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(70% 60% at 50% 30%, #000 20%, transparent 75%);
  pointer-events: none;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { font-family: 'Space Grotesk', sans-serif; font-weight: 600; line-height: 1.1; letter-spacing: -0.02em; overflow-wrap: break-word; word-break: break-word; }

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

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

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 15px;
  padding: 14px 26px; border-radius: 999px;
  cursor: pointer; border: 1px solid transparent;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--grad); color: #05130e; box-shadow: 0 10px 30px rgba(27, 192, 147, 0.35); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 44px rgba(27, 192, 147, 0.5); }
.btn-ghost { background: var(--surface); color: var(--text); border-color: var(--border); backdrop-filter: blur(10px); }
.btn-ghost:hover { transform: translateY(-3px); border-color: var(--border-strong); background: var(--surface-2); }
.btn-wa { background: #25D366; color: #04140b; box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3); }
.btn-wa:hover { transform: translateY(-3px); box-shadow: 0 16px 44px rgba(37, 211, 102, 0.45); }

/* ---------- navbar ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background 0.4s, border-color 0.4s, backdrop-filter 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(7, 13, 11, 0.72);
  backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: var(--border);
}
.nav .container { display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 11px; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 20px; letter-spacing: -0.02em; }
.brand img { width: 38px; height: 38px; border-radius: 10px; }
.brand .k { color: var(--teal-bright); }
.brand .t { color: var(--text); }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-size: 15px; font-weight: 500; color: var(--text-soft);
  padding: 9px 15px; border-radius: 999px; transition: color 0.25s, background 0.25s;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); background: var(--surface); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.menu-cta { display: none; }

.nav-toggle { display: none; background: var(--surface); border: 1px solid var(--border); border-radius: 12px; width: 46px; height: 46px; cursor: pointer; align-items: center; justify-content: center; }
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--text); position: relative; transition: 0.3s; }
.nav-toggle span::before, .nav-toggle span::after { content: ''; position: absolute; left: 0; width: 20px; height: 2px; background: var(--text); transition: 0.3s; }
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
body.menu-open .nav-toggle span { background: transparent; }
body.menu-open .nav-toggle span::before { top: 0; transform: rotate(45deg); }
body.menu-open .nav-toggle span::after { top: 0; transform: rotate(-45deg); }

/* ---------- sections ---------- */
section { position: relative; }
.section { padding: 100px 0; }
.section-sm { padding: 70px 0; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Space Grotesk', sans-serif; font-size: 13px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal-bright);
  padding: 7px 15px; border: 1px solid var(--border-strong); border-radius: 999px;
  background: rgba(27, 192, 147, 0.07);
}
.eyebrow::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--teal-bright); box-shadow: 0 0 10px var(--teal-bright); }
.section-head { max-width: 680px; margin-bottom: 54px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(30px, 4.5vw, 46px); margin: 20px 0 16px; }
.section-head p { color: var(--text-soft); font-size: 18px; }

/* ---------- hero ---------- */
.hero { padding: calc(var(--nav-h) + 70px) 0 90px; position: relative; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; }
.hero h1 { font-size: clamp(38px, 6vw, 72px); font-weight: 700; margin: 24px 0 22px; }
.hero .lead { font-size: clamp(17px, 2.1vw, 21px); color: var(--text-soft); max-width: 560px; margin-bottom: 34px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust { display: flex; gap: 26px; flex-wrap: wrap; margin-top: 38px; }
.hero-trust div { display: flex; align-items: center; gap: 9px; font-size: 14px; color: var(--text-soft); }
.hero-trust svg { width: 18px; height: 18px; color: var(--teal-bright); flex: none; }

.hero-visual { position: relative; display: grid; place-items: center; min-height: 380px; }
.hero-orb {
  width: min(360px, 80%); aspect-ratio: 1; border-radius: 40px;
  background: var(--grad); position: relative;
  display: grid; place-items: center;
  box-shadow: var(--glow), inset 0 0 80px rgba(255, 255, 255, 0.12);
  animation: float 6s var(--ease) infinite;
}
.hero-orb img { width: 46%; filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.35)); }
.hero-orb::after { content: ''; position: absolute; inset: -2px; border-radius: 42px; border: 1px solid rgba(255, 255, 255, 0.25); mask: linear-gradient(#000, transparent 60%); }
.hero-badge {
  position: absolute; padding: 12px 16px; border-radius: 14px;
  background: rgba(10, 21, 18, 0.82); backdrop-filter: blur(14px);
  border: 1px solid var(--border); font-size: 13px; display: flex; align-items: center; gap: 9px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}
.hero-badge b { font-family: 'Space Grotesk'; font-size: 15px; }
.hero-badge .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--teal-bright); box-shadow: 0 0 10px var(--teal-bright); }
.hero-badge.b1 { top: 8%; left: -4%; animation: float 5s var(--ease) infinite; }
.hero-badge.b2 { bottom: 10%; right: -6%; animation: float 7s var(--ease) infinite reverse; }

@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

/* hero service cards (right visual) */
.hero-cards { position: relative; display: flex; flex-direction: column; gap: 18px; width: 100%; max-width: 470px; margin: 0 auto; padding: 10px 0; }
.hero-cards::before { content: ''; position: absolute; inset: -10% -4%; z-index: -1; background: radial-gradient(46% 44% at 60% 42%, rgba(27, 192, 147, 0.30), transparent 72%); filter: blur(8px); }
.hcard { display: flex; align-items: center; gap: 15px; width: 90%; padding: 17px 19px; border-radius: 18px; background: rgba(10, 21, 18, 0.68); backdrop-filter: blur(16px) saturate(140%); border: 1px solid var(--border); box-shadow: 0 22px 46px rgba(0, 0, 0, 0.42); }
.hcard .hi { flex: none; width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; color: #05130e; background: var(--grad); box-shadow: 0 8px 18px rgba(27, 192, 147, 0.4); }
.hcard .hi svg { width: 25px; height: 25px; }
.hcard .hb { flex: 1; min-width: 0; }
.hcard .ht { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 17px; line-height: 1.2; }
.hcard .hs { font-size: 12.5px; color: var(--text-soft); margin-top: 2px; }
.hcard .spark { flex: none; width: 62px; height: 32px; }
.hcard .flag { flex: none; font-size: 12px; font-weight: 600; color: var(--teal-bright); background: rgba(27, 192, 147, 0.1); border: 1px solid var(--border-strong); padding: 6px 11px; border-radius: 999px; white-space: nowrap; }
.hcard.c1 { align-self: flex-start; animation: float 6s var(--ease) infinite; }
.hcard.c2 { align-self: flex-end; animation: float 7.2s var(--ease) infinite; animation-delay: -1.4s; }
.hcard.c3 { align-self: flex-start; margin-left: 7%; animation: float 6.6s var(--ease) infinite reverse; animation-delay: -0.7s; }
.hero-chip {
  position: absolute; top: -6px; left: 50%; transform: translateX(-60%);
  display: inline-flex; align-items: center; gap: 8px; padding: 9px 15px; border-radius: 999px;
  background: rgba(10, 21, 18, 0.85); backdrop-filter: blur(14px); border: 1px solid var(--border-strong);
  font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 13px; z-index: 3;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4); animation: float 5.5s var(--ease) infinite;
}
.hero-chip .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal-bright); box-shadow: 0 0 10px var(--teal-bright); }
.hero-chip img { width: 22px; height: 22px; border-radius: 6px; }

/* ---------- stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat { padding: 28px 24px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--border); }
.stat .num { font-family: 'Space Grotesk'; font-size: clamp(30px, 4vw, 44px); font-weight: 700; background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat .lbl { color: var(--text-soft); font-size: 14px; margin-top: 4px; }

/* ---------- cards / grids ---------- */
.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.hero-grid > *, .split > *, .contact-grid > *, .grid > *, .stats > *, .gallery > * { min-width: 0; }
.hero-orb { max-width: 100%; }

.card {
  position: relative; padding: 32px; border-radius: var(--radius-lg);
  background: var(--surface); border: 1px solid var(--border);
  transition: transform 0.4s var(--ease), border-color 0.4s, background 0.4s;
  overflow: hidden;
}
.card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(27, 192, 147, 0.6), transparent); opacity: 0; transition: opacity 0.4s; }
.card:hover { transform: translateY(-6px); border-color: var(--border-strong); background: var(--surface-2); }
.card:hover::before { opacity: 1; }
.card .ico { width: 54px; height: 54px; border-radius: 15px; display: grid; place-items: center; background: rgba(27, 192, 147, 0.12); border: 1px solid var(--border-strong); margin-bottom: 20px; }
.card .ico svg { width: 26px; height: 26px; color: var(--teal-bright); }
.card h3 { font-size: 22px; margin-bottom: 10px; }
.card p { color: var(--text-soft); font-size: 15.5px; }
.card .more { display: inline-flex; align-items: center; gap: 6px; margin-top: 18px; color: var(--teal-bright); font-weight: 600; font-size: 15px; }
.card .more svg { width: 16px; height: 16px; transition: transform 0.3s; }
.card:hover .more svg { transform: translateX(4px); }

/* service card variant (linked, big) */
.svc-card { display: flex; flex-direction: column; }
.svc-card .tag { align-self: flex-start; font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--teal-bright); background: rgba(27,192,147,0.1); border: 1px solid var(--border-strong); padding: 5px 11px; border-radius: 999px; margin-bottom: 22px; }

/* ---------- feature list ---------- */
.feat { display: flex; gap: 16px; padding: 22px 0; border-bottom: 1px solid var(--border); }
.feat:last-child { border-bottom: none; }
.feat .fi { flex: none; width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: rgba(27, 192, 147, 0.1); border: 1px solid var(--border-strong); }
.feat .fi svg { width: 22px; height: 22px; color: var(--teal-bright); }
.feat h4 { font-size: 18px; margin-bottom: 5px; }
.feat p { color: var(--text-soft); font-size: 15px; }

/* ---------- steps ---------- */
.steps { counter-reset: s; display: grid; gap: 20px; }
.step { position: relative; padding: 30px 30px 30px 88px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--border); }
.step::before {
  counter-increment: s; content: counter(s);
  position: absolute; left: 26px; top: 28px;
  width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  font-family: 'Space Grotesk'; font-weight: 700; font-size: 20px; color: #05130e;
  background: var(--grad); box-shadow: 0 8px 20px rgba(27, 192, 147, 0.3);
}
.step h4 { font-size: 19px; margin-bottom: 6px; }
.step p { color: var(--text-soft); font-size: 15px; }

/* ---------- marquee ---------- */
.marquee { overflow: hidden; -webkit-mask: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; gap: 18px; width: max-content; animation: scroll 34s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.chip {
  display: inline-flex; align-items: center; gap: 11px; flex: none;
  padding: 16px 26px; border-radius: 999px; background: var(--surface);
  border: 1px solid var(--border); font-family: 'Space Grotesk'; font-weight: 600; font-size: 17px;
}
.chip .cd { width: 10px; height: 10px; border-radius: 50%; background: var(--teal-bright); box-shadow: 0 0 8px var(--teal-bright); }
.chip small { color: var(--text-muted); font-family: 'Inter'; font-weight: 500; font-size: 12px; }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ---------- coin/network grid ---------- */
.pill-grid { display: flex; flex-wrap: wrap; gap: 12px; }
.pill { display: inline-flex; align-items: center; gap: 9px; padding: 12px 18px; border-radius: 999px; background: var(--surface); border: 1px solid var(--border); font-weight: 600; font-size: 15px; transition: 0.3s; }
.pill:hover { border-color: var(--border-strong); transform: translateY(-3px); }
.pill b { font-family: 'Space Grotesk'; }
.pill .sym { width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; font-family: 'Space Grotesk'; font-weight: 700; font-size: 13px; background: var(--grad); color: #05130e; }

/* ---------- network detail card ---------- */
.net { padding: 30px; border-radius: var(--radius-lg); background: var(--surface); border: 1px solid var(--border); transition: 0.4s var(--ease); }
.net:hover { transform: translateY(-6px); border-color: var(--border-strong); }
.net-head { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.net-logo { width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center; font-family: 'Space Grotesk'; font-weight: 700; font-size: 20px; color: #05130e; background: var(--grad); flex: none; }
.net h3 { font-size: 21px; }
.net .region { font-size: 13px; color: var(--teal-bright); font-weight: 600; }
.net p { color: var(--text-soft); font-size: 15px; }
.net ul { list-style: none; margin-top: 16px; display: grid; gap: 10px; }
.net li { display: flex; gap: 10px; font-size: 14.5px; color: var(--text-soft); }
.net li svg { width: 18px; height: 18px; color: var(--teal-bright); flex: none; margin-top: 2px; }

/* ---------- split / about ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-visual { position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); padding: 44px; background: linear-gradient(160deg, rgba(27,192,147,0.14), rgba(7,13,11,0.4)); }
.about-visual .badge-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.mini { padding: 16px; border-radius: 14px; background: rgba(7,13,11,0.55); border: 1px solid var(--border); flex: 1 1 130px; }
.mini .num { font-family: 'Space Grotesk'; font-size: 26px; font-weight: 700; color: var(--teal-bright); }
.mini .lbl { font-size: 13px; color: var(--text-soft); }

/* ---------- gallery (photography) ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 220px; gap: 16px; }
.shot { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); display: grid; place-items: end start; padding: 18px; transition: 0.4s var(--ease); }
.shot:hover { transform: scale(1.02); border-color: var(--border-strong); }
.shot span { position: relative; z-index: 2; font-family: 'Space Grotesk'; font-weight: 600; font-size: 16px; }
.shot small { position: relative; z-index: 2; display: block; color: var(--text-soft); font-size: 12px; }
.shot .cam { position: absolute; top: 16px; right: 16px; z-index: 2; opacity: 0.55; }
.shot .cam svg { width: 26px; height: 26px; color: #fff; }
.shot.tall { grid-row: span 2; }
.g1 { background: linear-gradient(150deg, #0c7e5f, #0a1512); }
.g2 { background: linear-gradient(150deg, #1BC093, #073b2c); }
.g3 { background: linear-gradient(150deg, #0e3b34, #12A67D); }
.g4 { background: linear-gradient(150deg, #05423a, #0c7e5f); }
.g5 { background: linear-gradient(150deg, #12A67D, #04211a); }
.g6 { background: linear-gradient(150deg, #073b2c, #1BC093); }

/* ---------- pricing / package ---------- */
.pkg { padding: 34px; border-radius: var(--radius-lg); background: var(--surface); border: 1px solid var(--border); display: flex; flex-direction: column; transition: 0.4s var(--ease); }
.pkg:hover { transform: translateY(-6px); border-color: var(--border-strong); }
.pkg.feature { border-color: var(--border-strong); background: linear-gradient(170deg, rgba(27,192,147,0.1), var(--surface)); }
.pkg .pk-tag { align-self: flex-start; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--teal-bright); margin-bottom: 14px; }
.pkg h3 { font-size: 24px; margin-bottom: 6px; }
.pkg .price { font-family: 'Space Grotesk'; font-size: 20px; color: var(--text); margin: 10px 0 20px; }
.pkg .price small { color: var(--text-muted); font-size: 14px; font-weight: 400; }
.pkg ul { list-style: none; display: grid; gap: 12px; margin-bottom: 26px; }
.pkg li { display: flex; gap: 10px; color: var(--text-soft); font-size: 15px; }
.pkg li svg { width: 18px; height: 18px; color: var(--teal-bright); flex: none; margin-top: 3px; }
.pkg .btn { margin-top: auto; justify-content: center; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 14px; max-width: 820px; margin: 0 auto; }
.qa { border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); overflow: hidden; }
.qa summary { list-style: none; cursor: pointer; padding: 22px 26px; display: flex; justify-content: space-between; align-items: center; gap: 16px; font-family: 'Space Grotesk'; font-weight: 600; font-size: 17px; }
.qa summary::-webkit-details-marker { display: none; }
.qa summary .pm { flex: none; width: 26px; height: 26px; border-radius: 8px; border: 1px solid var(--border-strong); display: grid; place-items: center; color: var(--teal-bright); transition: 0.3s; }
.qa[open] summary .pm { transform: rotate(45deg); background: var(--teal-bright); color: #05130e; }
.qa .ans { padding: 0 26px 24px; color: var(--text-soft); font-size: 15.5px; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; border-radius: var(--radius-lg); padding: 64px; text-align: center; overflow: hidden; border: 1px solid var(--border-strong); background: linear-gradient(150deg, rgba(27,192,147,0.16), rgba(7,13,11,0.5)); }
.cta-band::after { content: ''; position: absolute; inset: 0; background: radial-gradient(60% 120% at 50% 0%, rgba(27,192,147,0.25), transparent 60%); pointer-events: none; }
.cta-band h2 { font-size: clamp(28px, 4vw, 42px); margin-bottom: 14px; position: relative; }
.cta-band p { color: var(--text-soft); font-size: 18px; max-width: 560px; margin: 0 auto 30px; position: relative; }
.cta-band .btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ---------- info / notice boxes ---------- */
.notice { display: flex; gap: 14px; padding: 20px 22px; border-radius: var(--radius); background: rgba(27,192,147,0.06); border: 1px solid var(--border-strong); }
.notice svg { width: 22px; height: 22px; color: var(--teal-bright); flex: none; margin-top: 2px; }
.notice p { color: var(--text-soft); font-size: 15px; }
.notice.warn { background: rgba(240, 180, 40, 0.06); border-color: rgba(240, 180, 40, 0.35); }
.notice.warn svg { color: #f0b428; }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
.info-list { display: grid; gap: 16px; }
.info-item { display: flex; gap: 15px; padding: 22px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--border); }
.info-item .ii { flex: none; width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; background: rgba(27,192,147,0.12); border: 1px solid var(--border-strong); }
.info-item .ii svg { width: 22px; height: 22px; color: var(--teal-bright); }
.info-item .lbl { font-size: 13px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }
.info-item .val { font-size: 17px; font-weight: 600; font-family: 'Space Grotesk'; }
.info-item a.val:hover { color: var(--teal-bright); }

.form-card { padding: 32px; border-radius: var(--radius-lg); background: var(--surface); border: 1px solid var(--border); }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 14px; font-weight: 500; color: var(--text-soft); margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; border-radius: 12px;
  background: rgba(7, 13, 11, 0.6); border: 1px solid var(--border); color: var(--text);
  font-family: 'Inter'; font-size: 15px; transition: border-color 0.25s, box-shadow 0.25s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--teal-bright); box-shadow: 0 0 0 3px rgba(27, 192, 147, 0.15); }
.field textarea { resize: vertical; min-height: 120px; }
.map-embed { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); height: 340px; }
.map-embed iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.3) invert(0.9) hue-rotate(120deg); }

/* ---------- page hero (inner pages) ---------- */
.page-hero { padding: calc(var(--nav-h) + 66px) 0 40px; text-align: center; }
.page-hero h1 { font-size: clamp(34px, 5.5vw, 60px); margin: 22px 0 18px; }
.page-hero p { color: var(--text-soft); font-size: 19px; max-width: 640px; margin: 0 auto; }
.breadcrumb { display: inline-flex; gap: 8px; font-size: 14px; color: var(--text-muted); }
.breadcrumb a:hover { color: var(--teal-bright); }

/* ---------- footer ---------- */
.footer { border-top: 1px solid var(--border); padding: 64px 0 30px; margin-top: 40px; background: rgba(5, 10, 8, 0.5); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 40px; }
.footer .brand { margin-bottom: 16px; }
.footer .about { color: var(--text-soft); font-size: 15px; max-width: 320px; }
.footer h5 { font-family: 'Space Grotesk'; font-size: 14px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 18px; }
.footer-links { display: grid; gap: 11px; }
.footer-links a { color: var(--text-soft); font-size: 15px; transition: color 0.25s; }
.footer-links a:hover { color: var(--teal-bright); }
.footer .fcontact { display: grid; gap: 12px; }
.footer .fcontact div { display: flex; gap: 10px; font-size: 14.5px; color: var(--text-soft); }
.footer .fcontact svg { width: 18px; height: 18px; color: var(--teal-bright); flex: none; margin-top: 2px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--border); color: var(--text-muted); font-size: 14px; }
.footer-bottom .socials { display: flex; gap: 10px; }
.footer-bottom .socials a { width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center; background: var(--surface); border: 1px solid var(--border); transition: 0.3s; }
.footer-bottom .socials a:hover { border-color: var(--border-strong); transform: translateY(-3px); }
.footer-bottom .socials svg { width: 18px; height: 18px; color: var(--text-soft); }

.legal-note { color: var(--text-muted); font-size: 12.5px; line-height: 1.6; margin-top: 20px; max-width: 720px; }

/* ---------- floating whatsapp ---------- */
.wa-float { position: fixed; bottom: 24px; right: 24px; z-index: 90; width: 60px; height: 60px; border-radius: 50%; background: #25D366; display: grid; place-items: center; box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45); transition: transform 0.3s; }
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; color: #04140b; }
.wa-float::after { content: ''; position: absolute; inset: 0; border-radius: 50%; border: 2px solid #25D366; animation: ping 2.2s var(--ease) infinite; }
@keyframes ping { 0% { transform: scale(1); opacity: 0.7; } 100% { transform: scale(1.7); opacity: 0; } }

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }

/* ---------- prose (bilgilendirme) ---------- */
.prose { max-width: 820px; margin: 0 auto; }
.prose h2 { font-size: 26px; margin: 40px 0 14px; }
.prose h3 { font-size: 20px; margin: 28px 0 10px; color: var(--teal-soft); }
.prose p { color: var(--text-soft); margin-bottom: 14px; font-size: 16px; }
.prose ul { color: var(--text-soft); margin: 0 0 16px 20px; display: grid; gap: 8px; }
.prose li { font-size: 15.5px; }

/* ============================================================
   responsive
   ============================================================ */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: minmax(0, 1fr); }
  .hero-visual { order: -1; min-height: 300px; }
  .split, .contact-grid { grid-template-columns: minmax(0, 1fr); gap: 34px; }
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 760px) {
  .nav-actions .btn { display: none; }
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed; inset: var(--nav-h) 0 auto 0; z-index: 99;
    flex-direction: column; align-items: stretch; gap: 6px; padding: 18px 24px 26px;
    background: rgba(7, 13, 11, 0.96); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border);
    transform: translateY(-120%); transition: transform 0.4s var(--ease); display: flex;
  }
  body.menu-open .nav-menu { transform: none; }
  .nav-menu a { padding: 14px 16px; font-size: 17px; border-radius: 12px; }
  .nav-menu .btn { display: inline-flex; justify-content: center; margin-top: 8px; }
  .stats, .grid-3, .grid-2, .grid-4 { grid-template-columns: minmax(0, 1fr); }
  .gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero h1 { font-size: clamp(30px, 8.5vw, 46px); }
  .page-hero h1 { font-size: clamp(29px, 8.5vw, 46px); }
  .hero { padding-top: calc(var(--nav-h) + 40px); }
  .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 170px; }
  .section { padding: 70px 0; }
  .cta-band { padding: 44px 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-badge { display: none; }
}
@media (min-width: 761px) { .nav-menu { display: flex; align-items: center; gap: 4px; } }
@media (prefers-reduced-motion: reduce) { * { animation: none !important; scroll-behavior: auto; } .reveal { opacity: 1; transform: none; } }

/* ============================================================
   FX layer — intro, aurora, particles, cursor, tilt, shine
   ============================================================ */

/* ---------- preloader intro ---------- */
#preloader { position: fixed; inset: 0; z-index: 999; background: #070d0b; display: grid; place-items: center; transition: opacity 0.55s var(--ease), visibility 0.55s; }
#preloader::before { content: ''; position: absolute; inset: 0; background: radial-gradient(50% 45% at 50% 50%, rgba(27, 192, 147, 0.14), transparent 70%); }
#preloader.done { opacity: 0; visibility: hidden; pointer-events: none; }
.pre-wrap { display: grid; place-items: center; gap: 20px; position: relative; }
.pre-mark { width: 100px; height: 100px; }
.pm-rect { fill: #12A67D; transform-origin: 48px 48px; animation: prePop 0.75s cubic-bezier(0.34, 1.56, 0.64, 1) both; }
.pm-a1, .pm-a2 { stroke: #fff; stroke-width: 5; stroke-linecap: round; stroke-linejoin: round; fill: none; stroke-dasharray: 90; stroke-dashoffset: 90; animation: preDraw 0.55s var(--ease) forwards; }
.pm-a1 { animation-delay: 0.4s; }
.pm-a2 { animation-delay: 0.58s; }
.pre-name { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 26px; letter-spacing: -0.02em; opacity: 0; animation: preFade 0.5s 0.75s var(--ease) forwards; }
.pre-name b { color: var(--teal-bright); }
.pre-bar { width: 190px; height: 3px; border-radius: 99px; background: rgba(255, 255, 255, 0.08); overflow: hidden; opacity: 0; animation: preFade 0.4s 0.85s var(--ease) forwards; }
.pre-bar i { display: block; height: 100%; width: 0; border-radius: 99px; background: var(--grad); box-shadow: 0 0 14px var(--teal-bright); animation: preLoad 1s 0.5s var(--ease) forwards; }
@keyframes prePop { 0% { transform: scale(0) rotate(-120deg); } 100% { transform: scale(1) rotate(0); } }
@keyframes preDraw { to { stroke-dashoffset: 0; } }
@keyframes preFade { to { opacity: 1; } }
@keyframes preLoad { to { width: 100%; } }
@media (prefers-reduced-motion: reduce) { #preloader { display: none; } }

/* ---------- scroll progress ---------- */
#scrollbar { position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 300; background: var(--grad); box-shadow: 0 0 12px var(--teal-bright); border-radius: 0 99px 99px 0; }

/* ---------- aurora ---------- */
.aurora { position: fixed; inset: -12%; z-index: -3; pointer-events: none; filter: blur(90px) saturate(130%); opacity: 0.5; }
.aurora span { position: absolute; width: 46vw; height: 46vw; border-radius: 50%; will-change: transform; }
.aurora span:nth-child(1) { background: radial-gradient(circle, rgba(27, 192, 147, 0.5), transparent 65%); top: -8%; left: 55%; animation: aur1 17s ease-in-out infinite alternate; }
.aurora span:nth-child(2) { background: radial-gradient(circle, rgba(18, 166, 125, 0.42), transparent 65%); bottom: -12%; left: -8%; animation: aur2 21s ease-in-out infinite alternate; }
.aurora span:nth-child(3) { background: radial-gradient(circle, rgba(56, 224, 175, 0.3), transparent 65%); top: 34%; left: 26%; animation: aur3 25s ease-in-out infinite alternate; }
@keyframes aur1 { to { transform: translate(-16vw, 12vh) scale(1.25); } }
@keyframes aur2 { to { transform: translate(14vw, -10vh) scale(1.18); } }
@keyframes aur3 { to { transform: translate(10vw, 10vh) scale(0.85); } }
@media (max-width: 760px) { .aurora { display: none; } }

/* ---------- particle canvas ---------- */
#fx-net { position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: 0.55; }

/* ---------- custom cursor ---------- */
.cur-dot, .cur-ring { position: fixed; top: 0; left: 0; pointer-events: none; z-index: 700; border-radius: 50%; will-change: transform; }
.cur-dot { width: 8px; height: 8px; margin: -4px 0 0 -4px; background: var(--teal-bright); box-shadow: 0 0 12px var(--teal-bright); }
.cur-ring { width: 38px; height: 38px; margin: -19px 0 0 -19px; border: 1.5px solid rgba(27, 192, 147, 0.55); transition: width 0.25s, height 0.25s, margin 0.25s, border-color 0.25s, background 0.25s; }
.cur-ring.on { width: 62px; height: 62px; margin: -31px 0 0 -31px; border-color: rgba(27, 192, 147, 0.95); background: rgba(27, 192, 147, 0.08); }
@media (pointer: coarse) { .cur-dot, .cur-ring { display: none; } }

/* ---------- click ripple ---------- */
.click-fx { position: fixed; z-index: 690; width: 10px; height: 10px; margin: -5px 0 0 -5px; border-radius: 50%; border: 2px solid var(--teal-bright); pointer-events: none; animation: clickfx 0.55s var(--ease) forwards; }
@keyframes clickfx { to { transform: scale(9); opacity: 0; border-width: 0.5px; } }

/* ---------- word reveal ---------- */
.w { display: inline-block; overflow: hidden; vertical-align: bottom; padding-bottom: 0.12em; margin-bottom: -0.12em; }
.wi { display: inline-block; opacity: 0; transform: translateY(115%) rotate(4deg); animation: wordIn 0.75s var(--ease) forwards; }
@keyframes wordIn { to { opacity: 1; transform: none; } }
.grad-text .wi { background: var(--grad-text); -webkit-background-clip: text; background-clip: text; }

/* ---------- gradient shimmer ---------- */
.grad-text, .grad-text .wi { background-size: 220% 100%; animation-name: shimmer; animation-duration: 7s; animation-timing-function: linear; animation-iteration-count: infinite; }
.grad-text .wi { animation-name: wordIn, shimmer; animation-duration: 0.75s, 7s; animation-timing-function: var(--ease), linear; animation-iteration-count: 1, infinite; animation-fill-mode: forwards, none; }
@keyframes shimmer { to { background-position: -220% 0; } }

/* ---------- card spotlight + tilt ---------- */
.net, .pkg, .stat, .step, .info-item { position: relative; overflow: hidden; }
.card::after, .net::after, .pkg::after, .stat::after, .step::after, .info-item::after {
  content: ''; position: absolute; inset: 0; pointer-events: none; opacity: 0; transition: opacity 0.35s;
  background: radial-gradient(260px circle at var(--mx, 50%) var(--my, 50%), rgba(27, 192, 147, 0.16), transparent 65%);
}
.card:hover::after, .net:hover::after, .pkg:hover::after, .stat:hover::after, .step:hover::after, .info-item:hover::after { opacity: 1; }
[data-tilt] { will-change: transform; }

/* ---------- button sheen ---------- */
.btn-primary, .btn-wa { position: relative; overflow: hidden; }
.btn-primary::after, .btn-wa::after { content: ''; position: absolute; top: 0; left: -90%; width: 55%; height: 100%; background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.5), transparent); transform: skewX(-20deg); transition: left 0.55s var(--ease); }
.btn-primary:hover::after, .btn-wa:hover::after { left: 140%; }

/* ---------- misc micro-motion ---------- */
.brand img { transition: transform 0.5s var(--ease); }
.brand:hover img { transform: rotate(180deg) scale(1.06); }
.card:hover .ico { animation: icoPop 0.5s var(--ease); }
@keyframes icoPop { 40% { transform: scale(1.18) rotate(-7deg); } }
.pill:hover .sym { animation: icoPop 0.5s var(--ease); }

/* ---------- CTA rotating border ---------- */
@property --angle { syntax: '<angle>'; initial-value: 0deg; inherits: false; }
.cta-band::before {
  content: ''; position: absolute; inset: 0; border-radius: inherit; padding: 1.5px; pointer-events: none;
  background: conic-gradient(from var(--angle), transparent 0 68%, rgba(27, 192, 147, 0.9) 84%, transparent 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  animation: ctaSpin 5s linear infinite;
}
@keyframes ctaSpin { to { --angle: 360deg; } }
