@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Syne:wght@600;700;800&display=swap");

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #050508;
  --surface: #0c0c14;
  --surface-2: #12121c;
  --border: rgba(255,255,255,0.08);
  --text: #f4f4f8;
  --muted: #8b8ba3;
  --indigo: #6366f1;
  --cyan: #22d3ee;
  --violet: #a78bfa;
}

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: "Syne", sans-serif; }

a { color: inherit; text-decoration: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* NAV */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 0;
  transition: 0.3s;
}
.navbar.scrolled { padding: 0.6rem 0; }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.25rem;
  border-radius: 1rem;
  transition: padding 0.3s, background 0.3s, border 0.3s, backdrop-filter 0.3s;
}
.nav-inner.shrink {
  padding: 10px 40px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  backdrop-filter: blur(20px);
}
.nav-inner.shrink .logo-img {
  height: 40px !important;
  width: auto;
}
.navbar.scrolled .nav-inner {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  backdrop-filter: blur(20px);
}
.logo {
  display: flex;
  align-items: center;
  background: none;
  border: none;
  line-height: 0;
  padding: 0;
  text-decoration: none;
}
.logo-img {
  display: block;
  height: auto;
  width: 125px;
  max-width: 176px;
  object-fit: contain;
  object-position: left center;
  background: none !important;
  background-color: transparent !important;
  mix-blend-mode: screen;
  opacity: 0.94;
  filter:
    drop-shadow(0 2px 6px rgba(0, 0, 0, 0.2))
    drop-shadow(0 0 20px rgba(34, 211, 238, 0.15));
  transition: opacity 0.45s ease, filter 0.45s ease, transform 0.45s ease, height 0.3s ease;
}
.logo-img-sm {
  width: 100px;
  height: auto;
  max-width: 148px;
  opacity: 0.9;
}
.logo:hover .logo-img {
  opacity: 1;
  filter:
    drop-shadow(0 3px 10px rgba(0, 0, 0, 0.25))
    drop-shadow(0 0 26px rgba(34, 211, 238, 0.22));
  transform: scale(1.012);
}
.logo-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--indigo), var(--cyan));
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.9rem;
}
.nav-links { display: flex; gap: 0.25rem; list-style: none; }
.nav-links a {
  padding: 0.5rem 0.85rem;
  border-radius: 8px;
  font-size: 0.875rem;
  color: var(--muted);
  transition: 0.2s;
}
.nav-links a:hover { color: var(--text); background: rgba(255,255,255,0.05); }
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: 0.2s;
}
.btn-primary {
  background: linear-gradient(135deg, var(--indigo), var(--cyan));
  color: white;
  box-shadow: 0 8px 30px rgba(99,102,241,0.3);
}
.btn-primary:hover { transform: scale(1.02); }
.btn-outline {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  color: var(--text);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); }
.menu-toggle { display: none; background: none; border: none; color: var(--muted); font-size: 1.5rem; cursor: pointer; }
.mobile-menu {
  display: none;
  margin: 0.5rem 0;
  padding: 1rem;
  border-radius: 1rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  backdrop-filter: blur(20px);
}
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: 0.75rem 1rem; color: var(--muted); border-radius: 8px; }
.mobile-menu a:hover { background: rgba(255,255,255,0.05); color: var(--text); }

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 7rem 0 4rem;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #000;
}

.hero-hand-wrap {
  position: absolute;
  top: -8%;
  right: -12%;
  bottom: -18%;
  left: -12%;
  will-change: transform;
  transform-origin: 30% 85%;
}

.hero-hand-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 20% 95%;
  opacity: 0.7;
  pointer-events: none;
  user-select: none;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(5,5,8,0.45) 0%, rgba(5,5,8,0.7) 50%, rgba(5,5,8,0.95) 100%);
  pointer-events: none;
}

.hero-bg-scan {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(34,211,238,0.04) 50%, transparent 100%);
  background-size: 100% 200%;
  animation: scanLine 8s linear infinite;
  pointer-events: none;
}
.hero-lightning {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.7;
}
.hero-content {
  position: relative;
  z-index: 2;
}
@keyframes scanLine {
  0% { background-position: 0 -100%; }
  100% { background-position: 0 200%; }
}

.grid-bg {
  position: absolute; inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.3;
}
.glow-1 {
  position: absolute; top: 5rem; left: -8rem;
  z-index: 1;
  width: 500px; height: 500px;
  background: rgba(99,102,241,0.12);
  border-radius: 50%; filter: blur(120px);
  animation: pulse 4s ease-in-out infinite;
  opacity: 0.5;
}
.glow-2 {
  position: absolute; top: 10rem; right: -8rem;
  z-index: 1;
  width: 400px; height: 400px;
  background: rgba(34,211,238,0.15);
  border-radius: 50%; filter: blur(100px);
  animation: pulse 4s ease-in-out infinite 1s;
}
@keyframes pulse { 0%,100%{opacity:0.4} 50%{opacity:0.8} }

.badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.05);
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.08;
  margin-bottom: 1.25rem;
}
.gradient-text {
  background: linear-gradient(135deg, #fff, #c7d2fe, var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  max-width: 640px;
  margin: 0 auto 2rem;
  font-size: 1.125rem;
  color: var(--muted);
}
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3rem; }

.dashboard-mock {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: rgba(18,18,28,0.8);
  backdrop-filter: blur(20px);
  overflow: hidden;
  box-shadow: 0 0 80px rgba(99,102,241,0.2);
}
.mock-bar {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.75rem;
  color: var(--muted);
}
.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot-r { background: #ef4444; }
.dot-y { background: #eab308; }
.dot-g { background: #22c55e; }
.mock-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 1.5rem;
}
.mock-stat {
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.05);
  background: rgba(255,255,255,0.02);
  text-align: left;
}
.mock-stat span { font-size: 0.75rem; color: var(--muted); }
.mock-stat strong { display: block; font-size: 1.5rem; font-family: "Syne", sans-serif; margin: 0.25rem 0; }
.mock-stat em { font-size: 0.75rem; color: #34d399; font-style: normal; }
.mock-chart {
  margin: 0 1.5rem 1.5rem;
  height: 120px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.05);
  background: linear-gradient(90deg, rgba(99,102,241,0.1), rgba(34,211,238,0.05));
  display: flex; align-items: flex-end; gap: 4px; padding: 1rem;
}
.bar { flex: 1; border-radius: 4px 4px 0 0; background: linear-gradient(to top, rgba(99,102,241,0.6), rgba(34,211,238,0.6)); }

/* SECTIONS */
section { padding: 5rem 0; }
.section-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(99,102,241,0.3);
  background: rgba(99,102,241,0.1);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #a5b4fc;
  margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}
.section-sub {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 600px;
}
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
}
.service-card {
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--surface);
  transition: 0.3s;
}
.service-card:hover {
  border-color: rgba(99,102,241,0.3);
  background: var(--surface-2);
  transform: translateY(-2px);
}
.service-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.05);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.service-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.service-card p { font-size: 0.875rem; color: var(--muted); }

/* STATS */
.stats-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  padding: 3rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-num {
  font-family: "Syne", sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #818cf8, var(--cyan), var(--violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label { font-size: 0.875rem; color: var(--muted); margin-top: 0.5rem; }

/* ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 2rem;
}
.about-text p { color: var(--muted); margin: 1rem 0 1.5rem; }
.check-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.check-list li { font-size: 0.875rem; color: var(--muted); }
.check-list li::before { content: "✓ "; color: var(--cyan); }
.about-cards { display: flex; flex-direction: column; gap: 1rem; }
.about-card {
  padding: 1.25rem;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.05);
  background: rgba(255,255,255,0.02);
}
.about-card h4 { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; color: #a5b4fc; margin-bottom: 0.5rem; }
.about-card p { font-size: 0.875rem; color: var(--muted); }

/* PROCESS */
.process-list { margin-top: 3rem; max-width: 700px; margin-left: auto; margin-right: auto; }
.process-item {
  display: flex; gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}
.process-num { font-family: "Syne", sans-serif; font-size: 2rem; font-weight: 800; color: rgba(99,102,241,0.3); min-width: 3rem; }
.process-item h3 { font-size: 1.1rem; margin-bottom: 0.35rem; }
.process-item p { font-size: 0.875rem; color: var(--muted); }

/* MARQUEE */
.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  padding: 1.5rem 0;
}
.marquee {
  display: flex;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}
.marquee span {
  margin: 0 2rem;
  font-size: 0.875rem;
  color: var(--muted);
}
.marquee span::before { content: "● "; color: var(--cyan); font-size: 0.5rem; }
@keyframes marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

.package-section-title {
  text-align: center;
  margin-bottom: 2.5rem;
}
.package-section-title h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0.75rem 0 0.5rem;
}
.package-section-title p {
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 640px;
  margin: 0 auto;
}
.package-section-badge {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(34,211,238,0.3);
  background: rgba(34,211,238,0.1);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #67e8f9;
}
.packages-section-block { margin-bottom: 4rem; }
.packages-section-block:last-child { margin-bottom: 0; }

/* PACKAGES */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
  text-align: left;
}
.package-card {
  display: flex;
  flex-direction: column;
  padding: 1.75rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--surface);
  transition: 0.3s;
}
.package-card:hover { border-color: rgba(99,102,241,0.3); }
.package-card.featured {
  border-color: rgba(99,102,241,0.4);
  background: linear-gradient(to bottom, rgba(99,102,241,0.1), var(--surface));
  box-shadow: 0 20px 60px rgba(99,102,241,0.12);
}
.package-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  align-self: flex-start;
  margin-bottom: 0.75rem;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(99,102,241,0.3);
  background: rgba(99,102,241,0.15);
  font-size: 0.7rem;
  color: #c7d2fe;
}
.package-card h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.package-card .pkg-desc { font-size: 0.875rem; color: var(--muted); margin-bottom: 1.25rem; }
.package-price {
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}
.package-price strong {
  display: block;
  font-family: "Syne", sans-serif;
  font-size: 2rem;
  line-height: 1.1;
}
.package-price small {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.package-annual {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.5;
}
.package-annual-full {
  color: var(--muted);
  text-decoration: line-through;
}
.package-annual-discount {
  font-weight: 600;
  color: var(--cyan, #22d3ee);
}
.package-annual-note {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  color: var(--muted);
}
.package-features {
  list-style: none;
  flex: 1;
  margin-bottom: 1.5rem;
}
.package-features li {
  display: flex;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 0.65rem;
}
.package-features li::before {
  content: "✓";
  color: var(--cyan);
  font-weight: 700;
}
.page-hero {
  padding: 7rem 0 2rem;
  text-align: center;
}

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 2.5rem;
  margin-top: 3rem;
}
.contact-info { display: flex; flex-direction: column; gap: 1rem; }
.info-box {
  display: flex; gap: 1rem;
  padding: 1.25rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface);
}
.info-icon {
  width: 40px; height: 40px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.05);
  display: flex; align-items: center; justify-content: center;
}
.info-box small { display: block; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); }
.contact-form {
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--surface-2);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: 0.75rem; color: var(--muted); margin-bottom: 0.4rem; }
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.05);
  color: var(--text);
  font-family: inherit;
  font-size: 0.875rem;
  outline: none;
  transition: 0.2s;
}
.form-group input:focus,
.form-group textarea:focus { border-color: rgba(99,102,241,0.5); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-msg { margin-top: 1rem; font-size: 0.875rem; }
.form-msg.success { color: #34d399; }
.form-msg.error { color: #f87171; }

/* FOOTER */
footer {
  border-top: 1px solid var(--border);
  background: var(--surface);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-grid p { font-size: 0.875rem; color: var(--muted); margin-top: 1rem; max-width: 320px; }
.footer-grid h4 { font-size: 0.875rem; margin-bottom: 1rem; }
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 0.5rem; }
.footer-grid a { font-size: 0.875rem; color: var(--muted); transition: 0.2s; }
.footer-grid a:hover { color: var(--text); }
.social-links { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.social-links a {
  width: 40px; height: 40px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.05);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.875rem;
  color: var(--muted);
  transition: 0.2s;
}
.social-links a:hover { color: var(--text); border-color: rgba(99,102,241,0.3); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  font-size: 0.75rem;
  color: var(--muted);
  flex-wrap: wrap;
  gap: 1rem;
}

/* WhatsApp sabit buton */
.whatsapp-float {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1.1rem 0.85rem 0.95rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-float svg { width: 28px; height: 28px; flex-shrink: 0; }
.whatsapp-float:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.55);
  color: #fff;
}
.whatsapp-label { white-space: nowrap; }
@media (max-width: 480px) {
  .whatsapp-label { display: none; }
  .whatsapp-float { padding: 0.95rem; border-radius: 50%; }
}

/* RESPONSIVE */
@media (prefers-reduced-motion: reduce) {
  .hero-hand-wrap { animation: none; }
  .hero-bg-scan { animation: none; }
}

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .menu-toggle { display: block; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .mock-stats { grid-template-columns: 1fr; }
  .packages-grid { grid-template-columns: 1fr; }
  .check-list { grid-template-columns: 1fr; }
  .glow-1, .glow-2 { display: none; }
}

@media (max-width: 768px) {
  .container { padding: 0 1rem; }
  section { padding: 3.5rem 0; }
  .navbar { padding: 0.65rem 0; }
  .nav-inner { padding: 0.45rem 0.65rem; }

  .hero {
    padding: 5.5rem 0 2rem;
    min-height: 100svh;
  }

  .hero p {
    font-size: 1rem;
    padding: 0 0.25rem;
  }

  .hero-btns {
    flex-direction: column;
    align-items: stretch;
    padding: 0 0.25rem;
    gap: 0.75rem;
  }

  .hero-btns .btn {
    justify-content: center;
    width: 100%;
    min-height: 48px;
  }

  .badge {
    font-size: 0.75rem;
    padding: 0.4rem 0.85rem;
    max-width: 92vw;
  }

  .dashboard-mock { margin-top: 1.25rem; }
  .mock-chart { height: 80px; margin: 0 1rem 1rem; }
  .mock-stats { padding: 1rem; gap: 0.75rem; }
  .mock-bar span:last-child { display: none; }

  .logo-img { height: auto; max-width: 80px; }
  .logo-img-sm { height: auto; max-width: 68px; }

  .stat-num { font-size: 2rem; }
  .services-grid { grid-template-columns: 1fr; }

  .whatsapp-float {
    bottom: max(1rem, env(safe-area-inset-bottom, 0px));
    right: max(1rem, env(safe-area-inset-right, 0px));
  }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.15rem; }
  .section-title { font-size: 1.75rem; }
  .section-sub { font-size: 0.95rem; }
  .process-num { font-size: 1.5rem; min-width: 2.25rem; }
  .process-item { gap: 1rem; padding: 1.15rem 0; }
}
