:root {
  --ink: #102033;
  --muted: #5d6c7d;
  --line: #d8e2ee;
  --soft: #f4f8fb;
  --paper: #ffffff;
  --navy: #102b4e;
  --navy-2: #173b67;
  --green: #3b82f6;
  /* Changed to light blue as requested */
  --green-dark: #1d4ed8;
  /* Changed to dark blue as requested */
  --amber: #f6b84a;
  --coral: #ec705d;
  --blue: #019ded;
  --blue-dark: #0543a1;
  --shadow: 0 24px 70px rgba(16, 32, 51, .14);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 60px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

.site-header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  background: transparent;
  transition: background-color 0.3s, border-color 0.3s, backdrop-filter 0.3s;
}

.site-header.scrolled {
  border-bottom: 1px solid rgba(216, 226, 238, .82);
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(16px);
}

.site-header .brand {
  color: #fff;
  transition: color 0.3s;
}

.site-header .nav-links {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s;
}

.site-header .btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
  background: transparent;
  transition: all 0.3s;
}

.site-header .nav-actions {
  color: #fff;
  transition: color 0.3s;
}

.site-header.scrolled .brand {
  color: var(--navy);
}

.site-header.scrolled .nav-links {
  color: var(--muted);
}

.site-header.scrolled .btn-outline {
  color: var(--navy);
  border-color: var(--line);
  background: var(--paper);
}

.header-select {
  appearance: none;
  -webkit-appearance: none;
  border: none;
  background: transparent;
  font-weight: 800;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  outline: none;
  padding-right: 14px;
  background-image: url('data:image/svg+xml;utf8,<svg fill="%23ffffff" opacity="0.8" height="16" viewBox="0 0 24 24" width="16" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
  background-repeat: no-repeat;
  background-position-x: 100%;
  background-position-y: 50%;
  transition: color 0.3s;
}
.header-select:hover {
  color: #fff;
}

.site-header.scrolled .header-select {
  color: var(--navy);
  background-image: url('data:image/svg+xml;utf8,<svg fill="%2317324f" height="16" viewBox="0 0 24 24" width="16" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
}

.site-header.scrolled .nav-actions {
  color: var(--navy);
}

/* Language Switcher Default (Transparent Header) */
.lang-switcher {
  display: flex;
  gap: 8px;
  margin-right: 12px;
  font-size: 13px;
  font-weight: 800;
  align-items: center;
}
.lang-inactive {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: 0.2s;
}
.lang-inactive:hover {
  color: #fff;
}
.lang-active {
  color: #fff;
}
.lang-sep {
  color: rgba(255, 255, 255, 0.3);
}

/* Language Switcher Scrolled (White Header) */
.site-header.scrolled .lang-inactive {
  color: rgba(16, 43, 78, 0.5); /* var(--navy) but 50% opacity */
}
.site-header.scrolled .lang-inactive:hover {
  color: var(--navy);
}
.site-header.scrolled .lang-active {
  color: var(--navy);
}
.site-header.scrolled .lang-sep {
  color: rgba(16, 43, 78, 0.2);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 40px));
  min-height: 74px;
  margin: 0 auto;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
  font-size: 24px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  color: #fff;
  background: var(--navy);
  box-shadow: 0 8px 18px rgba(16, 43, 78, .18);
}

.brand-mark svg,
.icon svg {
  display: block;
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2.25;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 15px;
  font-weight: 700;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 32px;
  border: 1px solid transparent;
  border-radius: 99px;
  font-size: 15px;
  font-weight: 850;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 8px 24px rgba(1, 157, 237, 0.25);
}

.btn-primary:hover {
  background: var(--blue-dark);
  box-shadow: 0 12px 32px rgba(1, 157, 237, 0.4);
}

.btn-dark {
  color: #fff;
  background: var(--navy);
  box-shadow: 0 8px 24px rgba(16, 43, 78, 0.25);
}

.btn-dark:hover {
  background: #0d2441;
  box-shadow: 0 12px 32px rgba(16, 43, 78, 0.4);
}

.btn-light {
  color: var(--navy);
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.btn-light:hover {
  color: var(--blue);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.btn-outline {
  border-color: rgba(216, 226, 238, 0.8);
  color: var(--navy);
  background: transparent;
}

.btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: #eff6ff;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: clamp(640px, 86svh, 860px);
  overflow: hidden;
  color: #fff;
  background: #0d2441;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(13, 36, 65, .96) 0%, rgba(13, 36, 65, .83) 38%, rgba(13, 36, 65, .52) 100%),
    radial-gradient(circle at 76% 34%, rgba(59, 130, 246, .25), transparent 40%),
    linear-gradient(135deg, #102b4e 0%, #173b67 48%, #193550 100%);
}

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: -2;
  pointer-events: none;
}

.hero-wave svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 180px;
}

@media (min-width: 1440px) {
  .hero-wave svg {
    height: 220px;
  }
}

.hero-stage {
  position: absolute;
  inset: 130px max(22px, calc((100vw - 1180px) / 2)) 54px auto;
  z-index: -1;
  width: min(710px, 60vw);
  min-width: 500px;
  opacity: .98;
}

.product-window {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 480px;
  border: 1px solid rgba(216, 226, 238, .28);
  border-radius: 8px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 32px 90px rgba(0, 0, 0, .34);
  overflow: hidden;
}

.window-top {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 42px;
  padding: 0 16px;
  border-bottom: 1px solid #e8edf4;
  background: #f7fafc;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #d7e1ec;
}

.dot.blue {
  background: var(--blue);
}

.builder-grid {
  display: flex;
  align-items: center;
  height: calc(100% - 42px);
}

.admin-slide {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  animation: adminSlideFade 15s infinite;
}

.admin-slide.slide-1 { animation-delay: 0s; }
.admin-slide.slide-2 { animation-delay: 5s; }
.admin-slide.slide-3 { animation-delay: 10s; }

@keyframes adminSlideFade {
  0% { opacity: 0; transform: translateY(20px); }
  5%, 28% { opacity: 1; transform: translateY(0); pointer-events: auto; }
  33%, 100% { opacity: 0; transform: translateY(-20px); pointer-events: none; }
}

.nav-pages { animation: navActive1 15s infinite; }
.nav-payment { animation: navActive2 15s infinite; }
.nav-webmail { animation: navActive3 15s infinite; }

@keyframes navActive1 {
  0%, 28% { background: #eef2f6; color: var(--navy); font-weight: 700; }
  33%, 100% { background: transparent; color: #868e96; font-weight: 500; }
}
@keyframes navActive2 {
  0%, 28% { background: transparent; color: #868e96; font-weight: 500; }
  33%, 61% { background: #eef2f6; color: var(--navy); font-weight: 700; }
  66%, 100% { background: transparent; color: #868e96; font-weight: 500; }
}
@keyframes navActive3 {
  0%, 61% { background: transparent; color: #868e96; font-weight: 500; }
  66%, 95% { background: #eef2f6; color: var(--navy); font-weight: 700; }
  100% { background: transparent; color: #868e96; font-weight: 500; }
}

.builder-side {
  padding: 16px 14px;
  border-right: 1px solid #e8edf4;
  background: #f7fafc;
}

.builder-side strong,
.builder-panel strong {
  display: block;
  color: #596a7b;
  font-size: 11px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.block-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  margin-bottom: 9px;
  padding: 8px;
  border: 1px solid #dce6f2;
  border-radius: 8px;
  color: #17324f;
  background: #fff;
  font-size: 12px;
  font-weight: 800;
}

.mini-icon {
  display: grid;
  place-items: center;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border-radius: 7px;
  color: var(--blue);
  background: #edf4ff;
}

.mini-icon svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.phone-preview {
  align-self: center;
  justify-self: center;
  width: 190px;
  height: 336px;
  border: 9px solid #17324f;
  border-radius: 30px;
  background: #f8fbfd;
  box-shadow: 0 18px 42px rgba(16, 32, 51, .16);
  overflow: hidden;
}

.phone-cover {
  height: 82px;
  background:
    linear-gradient(rgba(16, 43, 78, .18), rgba(16, 43, 78, .18)),
    repeating-linear-gradient(135deg, #d8e2ee 0 12px, #f4f8fb 12px 24px);
}

.phone-body {
  padding: 12px;
}

.avatar-row {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: -30px;
  margin-bottom: 12px;
}

.avatar {
  width: 48px;
  height: 48px;
  border: 4px solid #fff;
  border-radius: 999px;
  background:
    linear-gradient(135deg, var(--navy), var(--blue));
  box-shadow: 0 8px 18px rgba(16, 32, 51, .2);
}

.phone-line {
  height: 8px;
  border-radius: 999px;
  background: #cbd7e6;
}

.phone-line.short {
  width: 60px;
  margin-top: 7px;
  background: #e0e7f0;
}

.product-tile {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 10px;
  align-items: center;
  padding: 9px;
  margin-top: 10px;
  border: 1px solid #e3ebf4;
  border-radius: 8px;
  background: #fff;
}

.tile-img {
  height: 42px;
  border-radius: 7px;
  background:
    linear-gradient(135deg, rgba(246, 184, 74, .9), rgba(236, 112, 93, .86));
}

.buy-line {
  height: 20px;
  margin-top: 12px;
  border-radius: 7px;
  background: var(--blue);
}

.builder-panel {
  padding: 16px 14px;
  border-left: 1px solid #e8edf4;
  background: #fff;
}

.chart-box {
  height: 94px;
  padding: 12px 10px 8px;
  border: 1px solid #e3ebf4;
  border-radius: 8px;
  background: #fbfdff;
}

.bars {
  display: flex;
  align-items: end;
  gap: 8px;
  height: 54px;
}

.bar {
  width: 12px;
  border-radius: 5px 5px 2px 2px;
  background: var(--blue);
}

.bar.alt {
  background: rgba(216, 226, 238, 0.8);
}

.stat-list {
  display: grid;
  gap: 9px;
  margin-top: 12px;
}

.stat-line {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: #596a7b;
  font-size: 11px;
  font-weight: 800;
}

.floating-card {
  position: absolute;
  right: 380px;
  bottom: 72px;
  width: 245px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 20px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  box-shadow: 0 24px 60px rgba(16, 43, 78, 0.25);
}

.floating-card small {
  display: block;
  color: var(--muted);
  font-weight: 800;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.floating-card b {
  display: block;
  margin-top: 5px;
  font-size: 25px;
  line-height: 1.1;
}

.floating-card span {
  display: block;
  margin-top: 7px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.hero-inner {
  display: flex;
  align-items: center;
  width: min(1180px, calc(100% - 40px));
  min-height: clamp(640px, 86svh, 860px);
  margin: 0 auto;
  padding: 110px 0 70px;
}

.hero-copy {
  width: min(410px, 100%);
  padding-top: 10px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 999px;
  color: #d6f5e7;
  background: rgba(255, 255, 255, .08);
  font-size: 13px;
  font-weight: 800;
}

.pulse {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 7px rgba(34, 184, 121, .16);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin: 24px 0 20px;
  font-size: clamp(40px, 5.5vw, 64px);
  line-height: .98;
  letter-spacing: -1px;
}

.hero-copy p {
  max-width: 560px;
  color: rgba(255, 255, 255, .82);
  font-size: 19px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 38px;
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
  font-weight: 800;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-proof span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--amber);
}

main {
  background: transparent;
}

.section {
  padding: 92px 0;
}

.section.soft {
  background: var(--soft);
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 560px) minmax(0, 1fr);
  gap: 42px;
  align-items: end;
  margin-bottom: 36px;
}

.kicker {
  margin-bottom: 12px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.02;
  letter-spacing: 0;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.audience-strip {
  display: flex;
  justify-content: center;
  align-items: stretch;
  max-width: min(1180px, calc(100% - 40px));
  margin: 40px auto 60px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 16px 48px rgba(16, 43, 78, 0.08);
  border: 1px solid rgba(216, 226, 238, 0.8);
  position: relative;
  z-index: 10;
  overflow: hidden;
}

.audience-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 96px;
  padding: 16px 20px;
  border-right: 1px solid rgba(216, 226, 238, 0.6);
  color: var(--navy);
  font-weight: 800;
  font-size: 15px;
  text-align: left;
  transition: background 0.3s ease;
  cursor: default;
}

.audience-item:hover {
  background: #f8fafc;
}

.audience-item:last-child {
  border-right: 0;
}

.icon {
  display: grid;
  place-items: center;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  color: var(--blue);
  background: #eff6ff;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.audience-item:hover .icon {
  transform: translateY(-2px);
  background: var(--blue);
  color: #fff;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.price-card,
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.feature-card {
  min-height: 220px;
  padding: 32px;
  border: none;
  border-radius: 20px;
  background: var(--soft);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.feature-card:hover {
  background: #edf4ff;
}

.feature-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.feature-icon {
  display: grid;
  place-items: center;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  color: #fff;
  background: var(--navy);
}

.feature-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.price-card h3 {
  margin: 20px 0 10px;
  font-size: 22px;
  line-height: 1.14;
  letter-spacing: 0;
}

.feature-header h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
  color: var(--navy);
}

.feature-card p,
.price-card p,
.faq-item p {
  color: var(--muted);
  margin-bottom: 0;
}

.showcase {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.builder-backend {
  display: flex;
  width: 100%;
  min-height: 580px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #f8fafc;
  box-shadow: var(--shadow);
  overflow: hidden;
  font-family: inherit;
}

.builder-sidebar {
  flex: 0 0 200px;
  padding: 20px 14px;
  background: #f8fafc;
  border-right: 1px solid var(--line);
  overflow-y: auto;
}

.sidebar-group {
  margin-bottom: 24px;
}

.sidebar-label {
  display: block;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.sidebar-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  margin-bottom: 8px;
  padding: 0 12px;
  border: 1px solid #dce6f2;
  border-radius: 8px;
  background: #fff;
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
}

.sidebar-btn.dark {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.sidebar-btn svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
}

.builder-canvas {
  flex: 1;
  padding: 24px 32px;
  background: #f8fafc;
  overflow-y: auto;
}

.canvas-label {
  color: var(--blue);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.canvas-title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
}

.canvas-title-row h3 {
  margin: 0;
  color: var(--navy);
  font-size: 20px;
}

.canvas-title-row small {
  color: var(--muted);
  font-size: 11px;
}

.builder-block-card {
  margin-bottom: 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
}

.builder-block-card.faded {
  opacity: 0.5;
}

.block-card-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.block-drag {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid #dce6f2;
  border-radius: 6px;
  color: var(--muted);
}

.block-drag svg {
  width: 14px;
  height: 14px;
}

.block-num {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.block-card-header strong {
  min-width: 80px;
  font-size: 15px;
  color: var(--navy);
  margin-right: auto;
}

.block-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.block-controls .btn-group {
  display: flex;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 3px;
}

.block-controls .btn-group span {
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  border-radius: 5px;
}

.block-controls .btn-group span.active {
  background: #fff;
  color: var(--navy);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.block-actions {
  display: flex;
  gap: 6px;
}

.block-actions button {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--muted);
}

.block-actions button.danger {
  color: var(--coral);
  background: #fff5f3;
  border-color: #fbd6d0;
}

.block-actions button svg {
  width: 14px;
  height: 14px;
}

.block-card-body {
  padding: 20px;
}

.block-fields {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.field {
  flex: 1;
  min-width: 120px;
}

.field label {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
}

.field .select {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 36px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 12px;
  color: var(--navy);
}

.field .select::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: rotate(45deg) translateY(-2px);
}

.slide-cards {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 8px;
  margin-bottom: -8px;
}

.slide-card {
  flex: 1;
  min-width: 160px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px;
}

.slide-card.dashed {
  border: 1px dashed var(--line);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #fbfdff;
}

.slide-card.dashed strong {
  color: var(--navy);
  font-size: 13px;
}

.slide-card.dashed p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.slide-img {
  height: 110px;
  background: linear-gradient(135deg, #fceede, #f5d3cd);
  border-radius: 8px;
  margin-bottom: 12px;
}

.slide-actions {
  display: flex;
  gap: 8px;
}

.slide-actions .btn-sm {
  display: flex;
  align-items: center;
  height: 30px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  font-size: 11px;
  font-weight: 700;
  color: var(--navy);
}

.slide-actions .select {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 30px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 11px;
  color: var(--navy);
}

.slide-actions .select::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1.5px solid var(--muted);
  border-bottom: 1.5px solid var(--muted);
  transform: rotate(45deg) translateY(-2px);
}

.builder-bottom-action {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
}

.showcase-copy h2 {
  margin-bottom: 20px;
}

.showcase-copy.center {
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

.showcase-copy.center h2 {
  font-size: clamp(34px, 4vw, 54px);
}

.bullet-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.bullet-list.inline {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 28px;
  margin: 32px 0 0;
}

.bullet-list li {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 12px;
  align-items: start;
  color: var(--muted);
}

.bullet-list.inline li {
  display: flex;
  align-items: center;
  grid-template-columns: none;
}

.check {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  color: #fff;
  background: var(--green-dark);
  font-size: 14px;
  font-weight: 900;
}

.analytics-layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 26px;
  align-items: stretch;
}

.analytics-panel {
  border: 1px solid rgba(216, 226, 238, 0.8);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(16, 43, 78, 0.04);
  overflow: hidden;
}

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 0 28px;
  border-bottom: 1px solid rgba(216, 226, 238, 0.6);
}

.panel-head strong {
  font-size: 18px;
  color: var(--navy);
  font-weight: 850;
}

.range-tabs {
  display: inline-flex;
  gap: 8px;
}

.range-tabs span {
  padding: 8px 14px;
  border: 1px solid rgba(216, 226, 238, 0.8);
  border-radius: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.2s ease;
}

.range-tabs span:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.range-tabs span.active {
  color: #fff;
  border-color: var(--blue);
  background: var(--blue);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

.chart {
  padding: 32px 28px;
}

.chart-bars {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  align-items: end;
  gap: 16px;
  height: 280px;
  padding: 10px 8px 0;
  border-bottom: 1px solid rgba(216, 226, 238, 0.8);
}

.chart-bars div {
  min-height: 24px;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, var(--blue), rgba(59, 130, 246, 0.15));
  transition: height 1s ease-out, opacity 0.3s ease;
}

.chart-bars div:hover {
  opacity: 0.8;
}

.chart-labels {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 16px;
  padding: 16px 8px 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.metric-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.metric {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 172px;
  padding: 28px;
  border: 1px solid rgba(216, 226, 238, 0.8);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 6px 16px rgba(16, 43, 78, 0.02);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.metric:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(16, 43, 78, 0.06);
}

.metric small {
  display: block;
  color: var(--muted);
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.metric b {
  display: block;
  margin: 12px 0 8px;
  font-size: 42px;
  line-height: 1;
  color: var(--navy);
  font-weight: 900;
}

.metric span {
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
}

.global-band {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 64px;
  align-items: center;
  padding: 68px;
  border-radius: 32px;
  color: #fff;
  background: #0f172a;
  box-shadow: 0 32px 64px rgba(15, 23, 42, 0.2);
  overflow: hidden;
}

.global-band::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -20%;
  width: 140%;
  height: 200%;
  background: radial-gradient(circle at 40% 50%, rgba(59, 130, 246, 0.25) 0%, transparent 60%);
  z-index: -1;
  pointer-events: none;
}

.global-band h2 {
  margin-bottom: 16px;
  font-size: clamp(38px, 4.5vw, 60px);
  line-height: 1.05;
}

.global-band p {
  color: rgba(255, 255, 255, .78);
  margin-bottom: 0;
  font-size: 18px;
}

.global-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.global-item {
  position: relative;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(24px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.4s, border-color 0.4s;
}

.global-item:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
}

.global-item strong {
  display: block;
  margin-bottom: 8px;
  font-size: 19px;
}

.global-item span {
  color: rgba(255, 255, 255, .65);
  font-size: 15px;
  line-height: 1.5;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  counter-reset: step;
}

.step {
  position: relative;
  min-height: 240px;
  padding: 32px 24px;
  border: 1px solid rgba(216, 226, 238, 0.6);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(16, 43, 78, 0.03);
  counter-increment: step;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  overflow: hidden;
  z-index: 1;
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(16, 43, 78, 0.08);
  border-color: rgba(216, 226, 238, 0.9);
}

.step::before {
  content: "0" counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  border-radius: 14px;
  color: var(--blue);
  background: #eff6ff;
  font-size: 16px;
  font-weight: 900;
  box-shadow: inset 0 0 0 1px rgba(59, 130, 246, 0.1);
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.step:hover::before {
  background: var(--blue);
  color: #fff;
  transform: scale(1.05);
}

.step::after {
  content: counter(step);
  position: absolute;
  top: -20px;
  right: -10px;
  font-size: 160px;
  font-weight: 900;
  color: rgba(216, 226, 238, 0.25);
  z-index: -1;
  line-height: 1;
  transition: color 0.3s ease, transform 0.3s ease;
}

.step:hover::after {
  color: rgba(216, 226, 238, 0.4);
  transform: translate(-4px, 4px);
}

.step h3 {
  margin-bottom: 12px;
  font-size: 20px;
  line-height: 1.18;
  color: var(--navy);
}

.step p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.save-pulse {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  margin-left: 4px;
  padding: 0 8px;
  border-radius: 999px;
  color: #fff;
  background: var(--green-dark);
  font-size: 12px;
  line-height: 1;
  animation: savePulse 1.7s ease-in-out infinite;
}

@keyframes savePulse {

  0%,
  100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 0 0 0 rgba(29, 78, 216, .36);
  }

  50% {
    transform: translateY(-1px) scale(1.06);
    box-shadow: 0 0 0 8px rgba(29, 78, 216, 0);
  }
}

.price-card {
  display: flex;
  flex-direction: column;
  min-height: 480px;
  padding: 36px 32px;
  background: #fff;
  border-radius: 24px;
  border: 1px solid rgba(216, 226, 238, 0.6);
  box-shadow: 0 12px 32px rgba(16, 43, 78, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(16, 43, 78, 0.08);
}

.price-card.featured {
  border-color: var(--blue);
  box-shadow: 0 24px 60px rgba(59, 130, 246, 0.15);
  position: relative;
  z-index: 10;
}

.price-card.featured::before {
  content: "BEST VALUE";
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: #fff;
  font-size: 11px;
  font-weight: 850;
  padding: 6px 14px;
  border-radius: 99px;
  letter-spacing: 1px;
}

.price-label {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.price-card h3 {
  font-size: 17px;
  color: var(--navy);
  margin-bottom: 24px;
}

.price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4px;
  margin: 0 0 8px;
  font-size: 26px;
  line-height: 1.2;
  font-weight: 900;
  color: var(--navy);
}

.price .amount {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.price .currency {
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
}

.price small.period {
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  margin-left: 4px;
}

.price-card>p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 0;
}

.price-card ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0;
  margin: 0 0 32px;
  color: var(--navy);
  list-style: none;
  flex: 1;
}

.price-card li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  font-weight: 600;
}

.price-card li::before {
  content: "✓";
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #eff6ff;
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  margin-top: 2px;
}

.price-card.featured li::before {
  background: var(--blue);
  color: #fff;
}

.price-card .btn {
  margin-top: auto;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.faq-item {
  padding: 32px;
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(216, 226, 238, 0.8);
  box-shadow: 0 6px 16px rgba(16, 43, 78, 0.02);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(16, 43, 78, 0.06);
}

.faq-item h3 {
  margin-bottom: 12px;
  font-size: 18px;
  line-height: 1.4;
  color: var(--navy);
  font-weight: 850;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.faq-item h3::before {
  content: "?";
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  background: #eff6ff;
  color: var(--blue);
  border-radius: 50%;
  font-size: 15px;
  font-weight: 900;
  margin-top: -2px;
}

.faq-item p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  padding-left: 40px;
}

.final-cta {
  padding: 78px 0;
  color: #fff;
  background: var(--navy);
}

.final-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
}

.final-inner h2 {
  margin-bottom: 14px;
}

.final-inner p {
  max-width: 650px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, .76);
  font-size: 17px;
}

.site-footer {
  padding: 54px 0 34px;
  border-top: 1px solid var(--line);
  background: #f8fafc;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(380px, 1.8fr) minmax(180px, 0.6fr);
  gap: 40px;
  align-items: center;
}

.footer-brand {
  display: grid;
  gap: 12px;
  color: var(--muted);
}

.footer-brand p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 600;
}

.excorp-badge {
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
}

.excorp-badge a {
  color: var(--blue);
}

.social-links {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(216, 226, 238, .8);
  color: var(--muted);
  background: #fff;
  transition: all 0.2s ease;
}

.social-btn:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.social-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

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

.support-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.support-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #eef2ff;
  color: var(--blue);
}

.support-icon svg {
  width: 20px;
  height: 20px;
}

.support-info {
  display: grid;
  gap: 6px;
}

.support-info h4 {
  margin: 0;
  font-size: 16px;
  color: var(--navy);
  font-weight: 800;
}

.support-info strong {
  font-size: 15px;
  color: var(--muted);
  font-weight: 500;
}

.support-info span {
  font-size: 13px;
  color: var(--muted);
  opacity: 0.8;
}

.footer-menu {
  display: grid;
  gap: 16px;
}

.footer-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--navy);
  font-size: 15px;
  font-weight: 600;
}

.footer-menu a::after {
  content: "";
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235d6c7d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m9 18 6-6-6-6'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.6;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 46px;
  padding-top: 30px;
  border-top: 1px solid rgba(216, 226, 238, .85);
  flex-wrap: wrap;
}

.footer-copyright-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy,
.footer-policy a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

.footer-policy {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-policy a+a {
  position: relative;
}

.footer-policy a+a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -12px;
  width: 1px;
  height: 16px;
  background: rgba(93, 108, 125, .35);
  transform: translateY(-50%);
}

.excorp-badge {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.excorp-badge a {
  color: var(--blue);
  font-weight: 850;
  transition: color 0.2s ease;
}

.excorp-badge a:hover {
  color: #2563eb;
}

.footer-copy {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  opacity: 0.7;
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .hero-stage {
    inset: auto -60px 20px auto;
    width: 600px;
    min-width: 0;
    opacity: .34;
  }

  .product-window {
    width: 520px;
  }

  .floating-card {
    display: none;
  }

  .section-head,
  .showcase,
  .analytics-layout,
  .global-band,
  .final-inner {
    grid-template-columns: 1fr;
  }

  .audience-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-grid,
  .metric-stack,
  .steps,
  .price-grid,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .global-band {
    padding: 36px;
  }

  .final-inner {
    padding: 42px 32px;
    text-align: center;
  }

  .final-inner .btn {
    width: 100%;
  }

  .audience-item {
    justify-content: flex-start;
  }

  .showcase-copy.center {
    text-align: left;
    align-items: flex-start;
  }

  .bullet-list.inline {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .builder-backend {
    flex-direction: column;
  }

  .builder-sidebar {
    display: none;
  }
}

@media (max-width: 680px) {
  .nav {
    width: min(100% - 28px, 1180px);
    min-height: 66px;
  }

  .nav-actions .btn-outline {
    display: none;
  }

  .hero {
    min-height: 720px;
  }

  .hero-inner {
    width: min(100% - 28px, 1180px);
    min-height: 720px;
    padding: 86px 0 44px;
    align-items: start;
  }

  .hero-copy p {
    font-size: 17px;
  }

  .hero-stage {
    right: -230px;
    bottom: -10px;
    width: 560px;
    opacity: .28;
  }

  .product-window {
    width: 530px;
    transform: scale(.82);
    transform-origin: right bottom;
  }

  .container {
    width: min(100% - 28px, 1180px);
  }

  .section {
    padding: 66px 0;
  }

  .audience-strip {
    display: grid;
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .metric-stack,
  .steps,
  .price-grid,
  .faq-grid,
  .global-grid {
    grid-template-columns: 1fr;
  }

  .audience-item {
    justify-content: flex-start;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .audience-item:last-child {
    border-bottom: 0;
  }

  .showcase-visual {
    min-height: 470px;
  }

  .showcase-copy.center {
    text-align: left;
    align-items: flex-start;
  }

  .bullet-list.inline {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .builder-backend {
    flex-direction: column;
  }

  .builder-sidebar {
    display: none;
  }

  .landing-phone {
    width: 206px;
    height: 364px;
  }

  .panel-head {
    display: grid;
    gap: 12px;
    padding: 18px;
  }

  .chart-bars {
    gap: 8px;
    height: 210px;
  }

  .global-band {
    padding: 26px;
  }

  .final-inner {
    padding: 32px 24px;
    border-radius: 24px;
  }

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

  .support-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 26px;
    border-top: 1px solid rgba(216, 226, 238, .9);
  }

  .footer-menu {
    padding-top: 26px;
    border-top: 1px solid rgba(216, 226, 238, .9);
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
  }

  .footer-brand {
    place-items: center;
    text-align: center;
  }

  .footer-copyright-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
  }

  .footer-policy {
    gap: 16px;
    justify-content: center;
  }

  .hero-wave svg {
    height: 100px;
  }
  .site-header .btn-outline,
  .site-header .btn-primary,
  .site-header a[aria-label="Login / Account"] {
    display: none !important;
  }
  .hamburger-menu-btn {
    display: flex !important;
  }
}

.mobile-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-drawer-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.mobile-drawer {
  position: fixed;
  top: 0;
  bottom: 0;
  right: -300px;
  width: 300px;
  background: #090e1a;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: none;
  z-index: 100;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: right 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-drawer.active {
  right: 0;
}
.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 16px;
}
.mobile-drawer-title {
  font-weight: 800;
  font-size: 20px;
  color: #fff;
}
.mobile-drawer-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-drawer-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mobile-drawer-links a {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: color 0.2s;
}
.mobile-drawer-links a:hover {
  color: #fff;
}
