:root {
  /* NEW COLOR THEME — dark, clean, neon emerald + cyan + purple */
  --bg: #020617;
  --bg-soft: #020617;
  --bg-alt: #020617;
  --card: rgba(15, 23, 42, 0.96);
  --card-soft: rgba(15, 23, 42, 0.78);
  --border: rgba(148, 163, 253, 0.25);

  --text: #f9fafb;
  --muted: #9ca3af;

  --accent-1: #22d3ee; /* cyan */
  --accent-2: #a855f7; /* purple */
  --accent-3: #22c55e; /* emerald */

  --radius-lg: 18px;
  --radius-md: 12px;
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.85);
  --shadow-glow: 0 0 40px rgba(34, 211, 238, 0.55);
}

/* RESET */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background:
    radial-gradient(circle at 10% 0%, #0f172a 0, #020617 40%, #000 100%);
  color: var(--text);
  min-height: 100vh;
}

/* ambient aura + noise */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 10% 10%, rgba(34, 211, 238, 0.18), transparent 55%),
    radial-gradient(circle at 80% 90%, rgba(168, 85, 247, 0.2), transparent 55%);
  opacity: 0.95;
  pointer-events: none;
  z-index: -2;
}
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='noStitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.13'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
  pointer-events: none;
  z-index: -1;
}

/* LAYOUT */
.container {
  width: min(1120px, 100% - 2.5rem);
  margin-inline: auto;
}

.section {
  padding: 96px 0;
}
.section-alt {
  background:
    radial-gradient(circle at top, rgba(37, 99, 235, 0.18), transparent 60%),
    radial-gradient(circle at bottom, rgba(34, 197, 94, 0.18), transparent 60%);
}

/* SECTION HEADERS */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: linear-gradient(120deg, rgba(34, 197, 94, 0.22), rgba(56, 189, 248, 0.2));
  color: #e5e7eb;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.section-tag::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: radial-gradient(circle, #4ade80, #15803d);
}
.section-title {
  margin-top: 18px;
  font-size: clamp(1.9rem, 2.4vw, 2.4rem);
  font-weight: 700;
}
.section-subtitle {
  margin-top: 12px;
  font-size: 0.98rem;
  color: var(--muted);
}
.highlight-text {
  color: #e5e7eb;
  font-weight: 500;
}

/* NAVBAR */
#navbar {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: linear-gradient(to bottom, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.5));
  border-bottom: 1px solid rgba(148, 163, 253, 0.28);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  width: min(1120px, 100% - 2.5rem);
  margin-inline: auto;
}

/* BRAND */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-logo {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  padding: 3px;
  background:
    conic-gradient(from 160deg, #22d3ee, #a855f7, #22c55e, #22d3ee);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 22px rgba(34, 211, 238, 0.5);
}
.brand-logo img {
  width: 100%;
  height: 100%;
  border-radius: 11px;
  object-fit: cover;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-name {
  font-family: 'Space Grotesk', system-ui;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.92rem;
}
.brand-sub {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
}

/* NAV MENU */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.nav-link {
  position: relative;
  font-size: 0.9rem;
  color: #d1d5db;
  text-decoration: none;
  padding-block: 4px;
  transition: color 0.2s ease;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #22d3ee, #a855f7, #22c55e);
  transition: width 0.22s ease;
}
.nav-link:hover {
  color: #f9fafb;
}
.nav-link.active {
  color: #f9fafb;
}
.nav-link.active::after {
  width: 100%;
}

/* NAV CTA */
.nav-cta {
  font-size: 0.85rem;
  padding: 8px 16px;
  border-radius: 999px;
  text-decoration: none;
  background: linear-gradient(130deg, #22d3ee, #a855f7, #22c55e);
  color: #020617;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 26px rgba(34, 211, 238, 0.55);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 35px rgba(168, 85, 247, 0.75);
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}
.hamburger span {
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: #e5e7eb;
  transition: all 0.2s ease;
}
.hamburger.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* HERO */
.hero-section {
  padding-top: 112px;
  padding-bottom: 96px;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}
.hero-text-block .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 13px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(34, 211, 238, 0.6);
  font-size: 0.78rem;
  color: #e5e7eb;
  margin-bottom: 16px;
}
.hero-text-block .badge::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: radial-gradient(circle, #22c55e, #15803d);
}

.hero-title {
  font-size: clamp(2.3rem, 3.1vw, 3rem);
  line-height: 1.1;
  font-weight: 700;
}
.gradient-text {
  display: block;
  background: linear-gradient(120deg, #22d3ee, #a855f7, #22c55e);
  -webkit-background-clip: text;
  color: transparent;
}
.hero-subtitle {
  margin-top: 16px;
  font-size: 0.98rem;
  color: #e5e7eb;
}
.typing-dynamic {
  font-weight: 600;
}
.cursor {
  display: inline-block;
  width: 10px;
  color: #22d3ee;
  animation: blink 1s step-end infinite;
}
@keyframes blink {
  50% { opacity: 0; }
}

.hero-desc {
  margin-top: 18px;
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 520px;
}

/* BUTTONS */
.hero-actions {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.btn-primary,
.btn-ghost,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  outline: none;
  transition: all 0.18s ease;
}
.btn-primary {
  color: #020617;
  background: linear-gradient(135deg, #22d3ee, #a855f7, #22c55e);
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.9);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 50px rgba(15, 23, 42, 1);
}
.btn-ghost {
  color: #e5e7eb;
  border: 1px solid rgba(148, 163, 253, 0.7);
  background: rgba(15, 23, 42, 0.9);
}
.btn-ghost:hover {
  border-color: rgba(226, 232, 240, 0.9);
  background: rgba(15, 23, 42, 1);
}
.btn-outline {
  color: #e5e7eb;
  border: 1px solid rgba(34, 211, 238, 0.7);
  background: rgba(15, 23, 42, 0.98);
}
.btn-outline:hover {
  background: linear-gradient(120deg, rgba(34, 197, 94, 0.15), rgba(56, 189, 248, 0.18));
}
.full {
  width: 100%;
}

/* HERO METRICS */
.hero-metrics {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.metric-card {
  padding: 10px 14px;
  border-radius: 999px;
  background: radial-gradient(circle at 0 0, rgba(30, 64, 175, 0.5), transparent 70%);
  border: 1px solid rgba(148, 163, 253, 0.6);
  font-size: 0.8rem;
  display: inline-flex;
  flex-direction: column;
  min-width: 110px;
}
.metric-number {
  font-weight: 600;
  font-size: 1rem;
}
.metric-label {
  color: var(--muted);
  font-size: 0.76rem;
}

/* HERO VISUAL */
.hero-visual-block {
  display: flex;
  justify-content: center;
}
.hero-orbit {
  position: relative;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 0%, rgba(34, 211, 238, 0.28), transparent 60%),
    radial-gradient(circle at 80% 100%, rgba(168, 85, 247, 0.3), transparent 60%);
  box-shadow: var(--shadow-soft), var(--shadow-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  animation: subtle-tilt 8s ease-in-out infinite alternate;
}
@keyframes subtle-tilt {
  0% { transform: rotate(-2deg) translateY(0); }
  100% { transform: rotate(3deg) translateY(-4px); }
}

.hero-logo-ring {
  position: relative;
  width: 190px;
  height: 190px;
  border-radius: 999px;
  background: radial-gradient(circle, #020617 0, #020617 45%, #0b1120 100%);
  border: 1px solid rgba(209, 213, 219, 0.23);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-logo-glow {
  position: absolute;
  inset: -35%;
  background: conic-gradient(from 0deg, #22d3ee, #a855f7, #22c55e, #22d3ee);
  opacity: 0.7;
  mix-blend-mode: screen;
  filter: blur(22px);
  animation: spin-glow 18s linear infinite;
}
@keyframes spin-glow {
  to { transform: rotate(360deg); }
}
.hero-logo-img {
  position: relative;
  width: 74%;
  height: 74%;
  border-radius: 22%;
  object-fit: cover;
  box-shadow: 0 0 35px rgba(15, 23, 42, 0.95);
}

/* ORBIT BADGES */
.orbit-badge {
  position: absolute;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(148, 163, 253, 0.55);
  color: #e5e7eb;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.98);
}
.orbit-1 { top: 16px; left: 18px; animation: float-x 3.4s ease-in-out infinite; }
.orbit-2 { top: 34px; right: -12px; animation: float-y 3.8s ease-in-out infinite 0.2s; }
.orbit-3 { bottom: 24px; left: -18px; animation: float-y 3.6s ease-in-out infinite 0.4s; }
.orbit-4 { bottom: -10px; right: 22px; animation: float-x 4s ease-in-out infinite 0.1s; }

@keyframes float-x {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(8px); }
}
@keyframes float-y {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* floating pills */
.floating-pill {
  position: absolute;
  border-radius: 999px;
  filter: blur(1px);
  opacity: 0.9;
}
.pill-1 {
  width: 90px;
  height: 26px;
  top: 32px;
  right: 10px;
  background: linear-gradient(120deg, rgba(34, 211, 238, 0.9), transparent);
}
.pill-2 {
  width: 120px;
  height: 28px;
  bottom: 32px;
  left: 24px;
  background: linear-gradient(120deg, transparent, rgba(34, 197, 94, 0.9));
}
.pill-3 {
  width: 70px;
  height: 22px;
  top: 50%;
  left: -10px;
  background: linear-gradient(120deg, rgba(168, 85, 247, 0.9), transparent);
}

/* GRID HELPERS */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

/* BENEFITS */
.benefit-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
  transform: translateY(0);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.95);
  border-color: rgba(34, 211, 238, 0.65);
}
.card-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 0 0, rgba(34, 211, 238, 0.35), transparent 65%);
  margin-bottom: 16px;
}
.benefit-card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}
.benefit-card p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 12px;
}
.benefit-card ul {
  list-style: none;
  font-size: 0.86rem;
  color: #e5e7eb;
}
.benefit-card ul li::before {
  content: '• ';
  color: #22d3ee;
}

/* PACKAGES */
.packages-grid {
  align-items: stretch;
}
.package-card {
  background: var(--card);
  border-radius: 20px;
  padding: 24px 20px 22px;
  border: 1px solid rgba(148, 163, 253, 0.32);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transform: translateY(0);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.package-card::before {
  content: '';
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 0 0, rgba(34, 211, 238, 0.22), transparent 60%),
    radial-gradient(circle at 100% 100%, rgba(168, 85, 247, 0.22), transparent 60%);
  opacity: 0.9;
  pointer-events: none;
}
.package-card:hover {
  transform: translateY(-9px);
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.98);
  border-color: rgba(34, 211, 238, 0.7);
}
.package-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-bottom: 8px;
}
.package-card h3 {
  font-size: 1.25rem;
}
.package-price {
  margin-top: 10px;
  font-size: 0.96rem;
  color: var(--muted);
}
.package-price span {
  color: #f9fafb;
  font-weight: 600;
}
.package-list {
  margin: 16px 0 18px;
  list-style: none;
  font-size: 0.86rem;
  color: #e5e7eb;
}
.package-list li {
  display: flex;
  gap: 6px;
  margin-bottom: 7px;
}
.package-list li::before {
  content: '✔';
  color: #22c55e;
  font-size: 0.75rem;
  margin-top: 2px;
}
.package-note {
  font-size: 0.76rem;
  color: var(--muted);
}
.package-highlight {
  border-color: rgba(34, 211, 238, 0.8);
  box-shadow: 0 22px 70px rgba(34, 211, 238, 0.45);
  transform: translateY(-4px);
}
.package-badge {
  position: absolute;
  right: 18px;
  top: 16px;
  font-size: 0.72rem;
  padding: 4px 10px;
  border-radius: 999px;
  background: linear-gradient(120deg, #22d3ee, #a855f7);
  color: #020617;
  font-weight: 600;
}

/* PROCESS TIMELINE */
.process-timeline {
  max-width: 760px;
  margin: 0 auto;
  border-left: 1px solid rgba(148, 163, 253, 0.38);
  padding-left: 24px;
}
.process-step {
  position: relative;
  padding-bottom: 28px;
}
.step-number {
  position: absolute;
  left: -34px;
  top: 0;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: #020617;
  background: linear-gradient(130deg, #22d3ee, #a855f7);
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.9);
}
.step-content h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}
.step-content p {
  font-size: 0.9rem;
  color: var(--muted);
}

/* TESTIMONIALS */
.testimonial-grid {
  align-items: stretch;
}
.testimonial-card {
  background: var(--card);
  border-radius: 18px;
  padding: 20px 18px;
  border: 1px solid rgba(148, 163, 253, 0.28);
  position: relative;
  overflow: hidden;
  transform: translateY(0);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.testimonial-card:hover {
  transform: translateY(-7px);
  border-color: rgba(34, 211, 238, 0.7);
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.9);
}
.testimonial-card::before {
  content: '“';
  position: absolute;
  right: 20px;
  top: -10px;
  font-size: 4rem;
  color: rgba(148, 163, 253, 0.22);
}
.testimonial-text {
  font-size: 0.9rem;
  color: #e5e7eb;
  margin-bottom: 16px;
}
.testimonial-meta {
  font-size: 0.78rem;
  color: var(--muted);
}

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 32px;
  align-items: flex-start;
}
.contact-info-block .section-title {
  text-align: left;
}
.contact-info-block .section-tag,
.contact-info-block .section-subtitle {
  text-align: left;
}
.contact-details {
  margin-top: 24px;
}
.contact-item {
  margin-bottom: 10px;
}
.contact-label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-item a {
  color: #e5e7eb;
  font-size: 0.92rem;
  text-decoration: none;
}
.contact-item a:hover {
  text-decoration: underline;
}
.contact-highlight {
  margin-top: 18px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.97);
  border: 1px dashed rgba(34, 197, 94, 0.7);
  font-size: 0.82rem;
  color: #bbf7d0;
}

/* CONTACT FORM */
.contact-form-block {
  background: var(--card);
  border-radius: 20px;
  padding: 20px 18px;
  border: 1px solid rgba(148, 163, 253, 0.35);
  box-shadow: var(--shadow-soft);
}
.form-group {
  margin-bottom: 14px;
}
.form-group label {
  display: block;
  font-size: 0.8rem;
  color: #e5e7eb;
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 253, 0.4);
  background: rgba(15, 23, 42, 0.98);
  padding: 10px 11px;
  color: #f9fafb;
  font-family: inherit;
  font-size: 0.86rem;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}
.form-group textarea {
  resize: vertical;
  min-height: 80px;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: #22d3ee;
  box-shadow: 0 0 0 1px rgba(34, 211, 238, 0.45);
  transform: translateY(-1px);
}
.form-note {
  margin-top: 6px;
  font-size: 0.75rem;
  color: var(--muted);
}

/* FOOTER */
.footer {
  border-top: 1px solid rgba(15, 23, 42, 0.95);
  background: #020617;
  padding: 16px 0 18px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: #6b7280;
}
.footer-tagline {
  color: #9ca3af;
}

/* === SLIDE / REVEAL EFFECTS (biar kerasa “slide-slide”) === */

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.16, 0.84, 0.44, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* tambahan: arah khusus */
.slide-left {
  transform: translateX(-32px);
}
.slide-right {
  transform: translateX(32px);
}
.slide-left.visible,
.slide-right.visible {
  transform: translateX(0);
}

/* sedikit stagger pakai nth-child (auto delay tanpa JS tambahan) */
.section .reveal:nth-child(1),
.grid-3 .reveal:nth-child(1),
.contact-grid .reveal:nth-child(1) {
  transition-delay: 0.05s;
}
.section .reveal:nth-child(2),
.grid-3 .reveal:nth-child(2),
.contact-grid .reveal:nth-child(2) {
  transition-delay: 0.13s;
}
.section .reveal:nth-child(3),
.grid-3 .reveal:nth-child(3) {
  transition-delay: 0.21s;
}

/* RESPONSIVE */
@media (max-width: 960px) {
  .nav-menu {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.98);
    flex-direction: column;
    padding: 14px 20px 18px;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    border-bottom: 1px solid rgba(148, 163, 253, 0.35);
  }
  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero-section {
    padding-top: 104px;
  }
  .hero-visual-block {
    order: -1;
  }
  .hero-orbit {
    margin-inline: auto;
  }

  .grid-3 {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}

@media (max-width: 720px) {
  .grid-3 {
    grid-template-columns: minmax(0, 1fr);
  }
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .footer-inner {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-metrics {
    flex-direction: column;
  }
}
