/* ═══════════════════════════════════════
   TOKENS
═══════════════════════════════════════ */
:root {
  --primary:        #6EC9EF;
  --primary-hover:  #54BDE6;
  --grad-start:     #021522;
  --grad-end:       #0B3A53;
  --dark-section:   #031926;
  --text-dark:      #0F172A;
  --text-sec:       #475569;
  --bg:             #F8FAFC;
  --section-bg:     #F1F5F9;
  --border:         #E2E8F0;
  --white:          #FFFFFF;

  --r-card:   16px;
  --r-btn:    12px;
  --r-img:    18px;
  --r-pill:   999px;

  --shadow:       0 10px 30px rgba(0,0,0,0.05);
  --shadow-hover: 0 15px 40px rgba(0,0,0,0.08);

  --max-w: 1200px;
  --section-gap: 80px;
}

/* ═══════════════════════════════════════
   FONTS (lokal)
═══════════════════════════════════════ */
@font-face {
  font-family: 'Manrope';
  src: url('fonts/manrope-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Manrope';
  src: url('fonts/manrope-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Manrope';
  src: url('fonts/manrope-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Manrope';
  src: url('fonts/manrope-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Manrope';
  src: url('fonts/manrope-800.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* ═══════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Manrope', sans-serif;
  color: var(--text-dark);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; }
ul { list-style: none; }

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

/* ═══════════════════════════════════════
   TYPOGRAPHY
═══════════════════════════════════════ */
h1, h2, h3, h4 {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

/* ═══════════════════════════════════════
   BUTTONS
═══════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 14.5px;
  border-radius: var(--r-pill);
  padding: 12px 24px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.18s, box-shadow 0.2s;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(110, 201, 239, 0.35);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.22);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--text-dark);
  border: 1.5px solid var(--border);
}
.btn-outline-dark:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════
   HEADER / NAV
═══════════════════════════════════════ */
header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(2, 21, 34, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 40px;
}

.logo {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--white);
  letter-spacing: -0.03em;
  flex-shrink: 0;
}
.logo span { color: var(--primary); }

nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s;
  font-family: 'Manrope', sans-serif;
}
.nav-links a:hover { color: var(--white); }

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
  background: linear-gradient(135deg, var(--grad-start) 0%, var(--grad-end) 100%);
  position: relative;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 540px;
  width: 100%;
  position: relative;
  z-index: 2;
}

/* Left column: constrains content to max 600px, flush left with padding */
.hero-content-wrap {
  display: flex;
  justify-content: flex-end;
}

.hero-content {
  width: 100%;
  max-width: 560px;
  padding: 72px 40px 72px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(110, 201, 239, 0.1);
  border: 1px solid rgba(110, 201, 239, 0.25);
  padding: 5px 14px;
  border-radius: var(--r-pill);
  margin-bottom: 22px;
  width: fit-content;
  opacity: 0;
  animation: fadeUp 0.65s 0.1s forwards;
}

.hero h1 {
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.65s 0.25s forwards;
}
.hero h1 .accent { color: var(--primary); }

.hero-sub {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.6);
  max-width: 440px;
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 0.65s 0.4s forwards;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.65s 0.55s forwards;
}

.hero-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 28px;
  max-width: 420px;
  opacity: 0;
  animation: fadeUp 0.65s 0.7s forwards;
}

.hero-feat {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  line-height: 1.5;
}
.hero-feat svg { flex-shrink: 0; margin-top: 1px; }

/* ─── Hero Visual ─── */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: fadeLeft 0.8s 0.35s forwards;
  padding: 32px 24px 32px 0;
}

.mockup-wrap {
  position: relative;
  width: 100%;
  max-width: 520px;
}

.hero-img {
  width: 100%;
  height: auto;
  display: block;
  mix-blend-mode: screen;
  transition: transform 0.6s ease;
}
.hero-visual:hover .hero-img {
  transform: scale(1.02) translateY(-4px);
}

.mockup-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: var(--primary);
  color: var(--grad-start);
  border-radius: 12px;
  padding: 10px 18px;
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(110, 201, 239, 0.4);
  white-space: nowrap;
  z-index: 3;
}

/* ═══════════════════════════════════════
   SCROLL TICKER
═══════════════════════════════════════ */
.ticker-section {
  background: var(--dark-section);
  padding: 20px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ticker-inner {
  display: flex;
  align-items: center;
}

.ticker-label {
  flex-shrink: 0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
  padding: 0 32px 0 40px;
  white-space: nowrap;
  opacity: 0.85;
}

.ticker-mask {
  flex: 1;
  overflow: hidden;
  position: relative;
}
.ticker-mask::before,
.ticker-mask::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.ticker-mask::before { left: 0;  background: linear-gradient(90deg,  var(--dark-section), transparent); }
.ticker-mask::after  { right: 0; background: linear-gradient(-90deg, var(--dark-section), transparent); }

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 30s linear infinite;
  gap: 10px;
}
.ticker-track:hover { animation-play-state: paused; }

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.ticker-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: rgba(255, 255, 255, 0.8);
  font-size: 13.5px;
  font-weight: 500;
  white-space: nowrap;
  cursor: default;
  transition: background 0.2s, border-color 0.2s;
  flex-shrink: 0;
}
.ticker-pill:hover {
  background: rgba(110, 201, 239, 0.14);
  border-color: rgba(110, 201, 239, 0.35);
  color: var(--white);
}
.ticker-pill .tp-icon { font-size: 15px; }

/* ═══════════════════════════════════════
   SECTION COMMONS
═══════════════════════════════════════ */
.section        { padding: var(--section-gap) 0; }
.section-light  { background: var(--bg); }
.section-alt    { background: var(--section-bg); }
.section-dark   { background: var(--dark-section); }

.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 10px;
}

.section-headline {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 48px;
  letter-spacing: -0.025em;
}
.section-headline.light { color: var(--white); }

.text-center { text-align: center; }

/* ═══════════════════════════════════════
   PRODUCTS SECTION
═══════════════════════════════════════ */
.products-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 40px;
}

.products-grid .product-card {
  flex: 0 1 calc(20% - 12px);
  min-width: 160px;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 24px 14px 20px;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  text-align: center;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(110, 201, 239, 0.35);
}

.pc-icon-wrap {
  width: 56px;
  height: 56px;
  background: rgba(110, 201, 239, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  transition: background 0.2s;
}
.product-card:hover .pc-icon-wrap { background: rgba(110, 201, 239, 0.18); }
.pc-icon-wrap svg { stroke: var(--primary); }

.pc-title {
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 7px;
  letter-spacing: -0.01em;
}
.pc-desc {
  font-size: 13px;
  color: var(--text-sec);
  line-height: 1.6;
}

/* ═══════════════════════════════════════
   STEPS SECTION
═══════════════════════════════════════ */
.steps-section { background: var(--dark-section); }
.steps-section .section-headline { color: var(--white); }
.steps-section .eyebrow { color: var(--primary); }

.steps-track {
  display: flex;
  align-items: flex-start;
  position: relative;
}
.steps-track::before { display: none; }

.step-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 27px;
  left: calc(50% + 32px);
  right: calc(-50% + 32px);
  height: 1px;
  border-top: 2px dashed rgba(110, 201, 239, 0.2);
  z-index: 1;
}

.step-item {
  flex: 1;
  text-align: center;
  padding: 0 8px;
  position: relative;
}

.step-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1.5px solid rgba(110, 201, 239, 0.25);
  background: var(--dark-section);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  position: relative;
  z-index: 2;
  transition: border-color 0.3s;
}
.step-item:hover .step-circle { border-color: var(--primary); }
.step-circle svg { stroke: var(--primary); }

.step-num {
  font-size: 10px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.1em;
  margin-bottom: 6px;
  opacity: 0.75;
}
.step-title {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 7px;
}
.step-desc {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
  max-width: 120px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════
   ADVANTAGES SECTION
═══════════════════════════════════════ */
.adv-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.adv-img-col { position: relative; }

.adv-img-box {
  border-radius: var(--r-img);
  aspect-ratio: 4 / 3.4;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-hover);
}

.adv-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: var(--r-img);
}

.adv-float-card {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--primary);
  border-radius: 16px;
  padding: 18px 22px;
  box-shadow: 0 12px 32px rgba(110, 201, 239, 0.4);
  animation: float 4s ease-in-out infinite;
}
.adv-float-card p {
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: var(--grad-start);
  line-height: 1.4;
  letter-spacing: -0.01em;
}

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

.adv-content .eyebrow          { display: block; }
.adv-content .section-headline { margin-bottom: 32px; }

.adv-list { display: flex; flex-direction: column; gap: 20px; }

.adv-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.adv-check {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  background: rgba(110, 201, 239, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.adv-check svg { stroke: var(--primary); }

.adv-item-title {
  font-family: 'Manrope', sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 3px;
}
.adv-item-desc {
  font-size: 13.5px;
  color: var(--text-sec);
  line-height: 1.6;
}

/* ═══════════════════════════════════════
   CTA SECTION
═══════════════════════════════════════ */
.cta-wrap { padding: 0 0 var(--section-gap); }

.cta-box {
  background: linear-gradient(135deg, var(--grad-start), var(--grad-end));
  border-radius: 24px;
  padding: 64px 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(2, 21, 34, 0.3);
}
.cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(110, 201, 239, 0.12) 0%, transparent 65%);
  pointer-events: none;
}
.cta-box::after {
  content: '';
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 45%;
  background-image: radial-gradient(rgba(110, 201, 239, 0.06) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 540px;
}
.cta-content .eyebrow { margin-bottom: 12px; }
.cta-content h2 {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}
.cta-content p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.7;
}

.cta-btns {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
footer {
  background: var(--grad-start);
  padding: 64px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr 1.2fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .logo { font-size: 19px; margin-bottom: 14px; display: block; }
.footer-brand p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.75;
  max-width: 230px;
}

.footer-socials { display: flex; gap: 8px; margin-top: 20px; }

.soc-btn {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  transition: background 0.2s, color 0.2s;
}
.soc-btn:hover {
  background: rgba(110, 201, 239, 0.18);
  color: var(--primary);
}

.footer-col h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.5);
}
.footer-col a {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }

.contact-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 10px;
}
.contact-row svg { stroke: var(--primary); flex-shrink: 0; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.28);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: rgba(255, 255, 255, 0.28); transition: color 0.2s; }
.footer-bottom a:hover { color: rgba(255, 255, 255, 0.6); }

/* ═══════════════════════════════════════
   SCROLL ANIMATIONS
═══════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* Stagger delay helpers */
.d1 { transition-delay: 0.08s !important; }
.d2 { transition-delay: 0.16s !important; }
.d3 { transition-delay: 0.24s !important; }
.d4 { transition-delay: 0.32s !important; }
.d5 { transition-delay: 0.40s !important; }
.d6 { transition-delay: 0.48s !important; }

/* ═══════════════════════════════════════
   KEYFRAMES
═══════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 900px) {
  .container { padding: 0 20px; }
  .nav-links  { display: none; }

  .hero-inner    { grid-template-columns: 1fr; min-height: auto; }
  .hero-content  { padding: 48px 24px 32px; }
  .hero-visual   { justify-content: center; padding: 0 24px 48px; }
  .hero-features { grid-template-columns: 1fr 1fr; }

  .products-grid .product-card { flex: 0 1 calc(33.333% - 10px); }

  .steps-track { flex-wrap: wrap; justify-content: center; gap: 32px; }

  .adv-layout     { grid-template-columns: 1fr; gap: 40px; }
  .adv-float-card { bottom: -10px; left: 10px; }

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

  .cta-box { flex-direction: column; padding: 48px 36px; gap: 32px; }

  .ticker-label { display: none; }
}

@media (max-width: 560px) {
  .products-grid .product-card { flex: 0 1 calc(50% - 8px); }
  .footer-grid   { grid-template-columns: 1fr; }
  .hero-features { grid-template-columns: 1fr; }
  .cta-box       { padding: 36px 24px; }
}