:root {
  --bg: #ffffff;
  --bg-soft: #f6f8fb;
  --text: #10131a;
  --muted: #5c667a;
  --line: #e7ebf2;
  --card: #ffffff;
  --accent: #185cff;
  --accent-2: #7c3cff;
  --dark: #0d1220;
  --success: #18a058;
  --shadow: 0 24px 70px rgba(16, 19, 26, 0.10);
  --radius: 28px;
  --radius-sm: 18px;
  --max: 1160px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 12% 6%, rgba(24, 92, 255, 0.13), transparent 28%),
    radial-gradient(circle at 86% 12%, rgba(124, 60, 255, 0.12), transparent 30%),
    var(--bg);
  color: var(--text);
  line-height: 1.55;
  overflow-x: hidden;
}

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

img {
  max-width: 100%;
  display: block;
}

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

/* Header & Navigation */
.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(231, 235, 242, 0.78);
  transition: padding 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.nav-wrap.scrolled {
  padding: 2px 0;
  background: rgba(255, 255, 255, 0.90);
  box-shadow: 0 10px 30px rgba(16, 19, 26, 0.04);
}

.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: -0.04em;
  font-size: 22px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 16px 32px rgba(24, 92, 255, 0.22);
  font-size: 18px;
}

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

.nav-links a {
  transition: color 0.2s ease;
  position: relative;
  padding: 8px 0;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-radius: 99px;
}

/* Dropdown Menu CSS */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-trigger i {
  font-size: 11px;
  margin-left: 4px;
  transition: transform 0.2s ease;
}

.dropdown:hover .dropdown-trigger i {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: 0 16px 36px rgba(16, 19, 26, 0.08);
  padding: 10px 0;
  min-width: 260px;
  opacity: 0;
  visibility: hidden;
  transition: transform 0.25s ease, opacity 0.25s ease, visibility 0.25s ease;
  z-index: 200;
}

.dropdown:hover .dropdown-menu {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  visibility: visible;
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px !important;
  color: var(--muted) !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  transition: background 0.2s ease, color 0.2s ease !important;
  text-align: left;
}

.dropdown-menu a::after {
  display: none !important;
}

.dropdown-menu a:hover {
  background: var(--bg-soft) !important;
  color: var(--accent) !important;
}

/* Mobile dropdown styles */
.mobile-dropdown-btn {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  font: inherit;
  font-weight: 850;
  color: var(--muted);
  padding: 13px 0;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  outline: none;
}

.mobile-dropdown-menu {
  display: none;
  padding-left: 16px;
  background: var(--bg-soft);
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
}

.mobile-dropdown-menu a {
  border-top: none !important;
  font-size: 14px !important;
  font-weight: 750 !important;
  padding: 10px 0 !important;
}

.mobile-dropdown.open .mobile-dropdown-menu {
  display: block;
}

.mobile-dropdown.open .mobile-dropdown-btn i {
  transform: rotate(180deg);
}

.mobile-dropdown.open .mobile-dropdown-btn {
  color: var(--text);
}


.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  cursor: pointer;
  font-size: 20px;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.menu-btn:hover {
  background: var(--bg-soft);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 900;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  white-space: nowrap;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  box-shadow: 0 18px 38px rgba(24, 92, 255, 0.22);
}

.btn-primary:hover {
  box-shadow: 0 22px 42px rgba(24, 92, 255, 0.3);
}

.btn-dark {
  background: var(--dark);
  color: #fff;
  box-shadow: 0 18px 38px rgba(13, 18, 32, 0.18);
}

.btn-dark:hover {
  box-shadow: 0 22px 42px rgba(13, 18, 32, 0.26);
}

.btn-ghost {
  background: rgba(255,255,255,0.72);
  border-color: var(--line);
  color: var(--text);
}

.btn-ghost:hover {
  background: #fff;
  border-color: var(--muted);
}

/* Hero Section */
.hero {
  padding: 84px 0 54px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 52px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 13px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.84);
  border-radius: 999px;
  font-weight: 900;
  color: var(--dark);
  font-size: 14px;
  box-shadow: 0 12px 30px rgba(16, 19, 26, 0.06);
  margin-bottom: 22px;
}

.pulse {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--success);
  box-shadow: 0 0 0 8px rgba(24, 160, 88, 0.12);
  animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0px rgba(24, 160, 88, 0.3);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(24, 160, 88, 0);
  }
  100% {
    box-shadow: 0 0 0 0px rgba(24, 160, 88, 0);
  }
}

h1 {
  font-size: clamp(44px, 6vw, 82px);
  line-height: 0.95;
  letter-spacing: -0.075em;
  margin-bottom: 22px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  font-size: clamp(18px, 2vw, 22px);
  color: var(--muted);
  max-width: 630px;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.72);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 12px;
}

/* Dashboard Mockup */
.hero-card {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,255,255,0.86)),
    radial-gradient(circle at top right, rgba(24, 92, 255, 0.18), transparent 42%);
  border: 1px solid var(--line);
  border-radius: 38px;
  padding: 26px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 22px, rgba(24, 92, 255, 0.06) 22px 23px, transparent 23px),
    linear-gradient(0deg, transparent 0 22px, rgba(24, 92, 255, 0.06) 22px 23px, transparent 23px);
  background-size: 46px 46px;
  opacity: 0.55;
  pointer-events: none;
}

.dashboard {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 22px;
  box-shadow: 0 18px 44px rgba(16, 19, 26, 0.08);
}

.dash-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  gap: 12px;
}

.dash-title {
  font-weight: 950;
  letter-spacing: -0.04em;
  font-size: 20px;
}

.dash-badge {
  font-size: 13px;
  font-weight: 900;
  color: var(--success);
  background: rgba(24,160,88,0.10);
  padding: 8px 11px;
  border-radius: 999px;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 16px;
}

.metric {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 16px;
  transition: transform 0.2s ease;
}

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

.metric strong {
  display: block;
  font-size: 28px;
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 8px;
}

.metric span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.bar-card {
  background: var(--dark);
  color: #fff;
  border-radius: 24px;
  padding: 20px;
  margin-bottom: 14px;
}

.bar-card p {
  color: rgba(255,255,255,0.72);
  font-weight: 700;
  margin-top: 4px;
  font-size: 14px;
}

.bar {
  height: 10px;
  background: rgba(255,255,255,0.14);
  border-radius: 999px;
  overflow: hidden;
  margin-top: 18px;
}

.bar > span {
  display: block;
  height: 100%;
  width: 76%;
  border-radius: 999px;
  background: linear-gradient(90deg, #fff, #9ab7ff);
}

.mini-list {
  display: grid;
  gap: 10px;
}

.mini-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  font-weight: 850;
  font-size: 14px;
}

.check {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(24,92,255,0.11);
  color: var(--accent);
  flex: 0 0 auto;
  font-weight: 950;
}

/* Sections */
section {
  padding: 70px 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-kicker {
  color: var(--accent);
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 10px;
}

h2 {
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.03;
  letter-spacing: -0.06em;
  margin-bottom: 14px;
}

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

/* Service Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card {
  background: rgba(255,255,255,0.82);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 18px 48px rgba(16, 19, 26, 0.06);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: rgba(24, 92, 255, 0.2);
}

.icon {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(24,92,255,0.12), rgba(124,60,255,0.12));
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  font-size: 24px;
  transition: transform 0.3s ease;
}

.card:hover .icon {
  transform: scale(1.1) rotate(5deg);
}

.card h3 {
  font-size: 22px;
  letter-spacing: -0.04em;
  margin-bottom: 10px;
}

.card p {
  color: var(--muted);
  margin-bottom: 18px;
}

.card ul {
  display: grid;
  gap: 9px;
  list-style: none;
  color: var(--text);
  font-weight: 750;
  font-size: 14px;
}

.card li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--accent);
  margin-right: 8px;
}

/* Split layout */
.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 36px;
  align-items: center;
}

.dark-panel {
  background: var(--dark);
  color: #fff;
  border-radius: 36px;
  padding: 34px;
  box-shadow: var(--shadow);
}

.dark-panel p {
  color: rgba(255,255,255,0.72);
  font-size: 17px;
  margin-bottom: 20px;
}

.steps {
  display: grid;
  gap: 14px;
}

.step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 22px;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.step:hover {
  transform: translateX(4px);
  background: rgba(255,255,255,0.12);
}

.step-num {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: #fff;
  color: var(--dark);
  font-weight: 950;
}

.step h3 {
  margin-bottom: 4px;
  letter-spacing: -0.03em;
}

.step span {
  color: rgba(255,255,255,0.68);
  font-size: 14px;
  font-weight: 650;
}

.highlight-box {
  background:
    radial-gradient(circle at 20% 0%, rgba(24,92,255,0.13), transparent 34%),
    #fff;
  border: 1px solid var(--line);
  border-radius: 36px;
  padding: 34px;
  box-shadow: var(--shadow);
}

.highlight-box h2 {
  margin-bottom: 18px;
}

.bullets {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.bullet {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 20px;
  transition: transform 0.2s ease;
}

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

.bullet strong {
  display: block;
  margin-bottom: 2px;
}

.bullet p {
  color: var(--muted);
  font-size: 14px;
}

/* Offer banner */
.offer {
  background:
    linear-gradient(135deg, rgba(24,92,255,0.08), rgba(124,60,255,0.08)),
    #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.offer-card {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 28px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 40px;
  padding: 36px;
  box-shadow: var(--shadow);
}

.price-card {
  background: var(--dark);
  color: #fff;
  border-radius: 30px;
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.price-card::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(124, 60, 255, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.price-card small {
  color: rgba(255,255,255,0.62);
  font-weight: 800;
}

.price-card strong {
  display: block;
  font-size: 38px;
  letter-spacing: -0.06em;
  line-height: 1.05;
  margin: 8px 0 14px;
}

.price-card p {
  color: rgba(255,255,255,0.70);
  margin-bottom: 20px;
}

/* FAQ accordion */
.faq {
  display: grid;
  gap: 12px;
  width: 100%;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,0.82);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item:hover {
  border-color: rgba(24, 92, 255, 0.2);
  box-shadow: 0 8px 24px rgba(16, 19, 26, 0.03);
}

.faq-q {
  width: 100%;
  text-align: left;
  padding: 20px 22px;
  border: 0;
  background: transparent;
  font: inherit;
  font-weight: 950;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  color: var(--text);
}

.faq-q span {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 20px;
  color: var(--muted);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease, padding 0.35s ease;
  opacity: 0;
  padding: 0 22px;
  color: var(--muted);
}

.faq-item.active {
  background: #fff;
  border-color: var(--line);
  box-shadow: 0 12px 30px rgba(16, 19, 26, 0.05);
}

.faq-item.active .faq-a {
  max-height: 250px;
  opacity: 1;
  padding: 0 22px 20px;
}

.faq-item.active .faq-q span {
  transform: rotate(45deg);
  color: var(--accent);
}

/* Contact form */
.contact-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 24px;
  align-items: stretch;
}

.contact-card {
  background: var(--dark);
  color: #fff;
  border-radius: 36px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 460px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.contact-card::after {
  content: "";
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(24, 92, 255, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.contact-card p {
  color: rgba(255,255,255,0.70);
  font-size: 17px;
  margin-top: 12px;
}

.contact-options {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-option {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 15px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 20px;
  font-weight: 850;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.contact-option:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.20);
}

.form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 36px;
  padding: 32px;
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

label {
  display: grid;
  gap: 8px;
  font-weight: 850;
  font-size: 14px;
  color: var(--text);
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 15px 16px;
  font: inherit;
  outline: none;
  background: var(--bg-soft);
  transition: border 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(24,92,255,0.55);
  box-shadow: 0 0 0 4px rgba(24,92,255,0.10);
  background: #fff;
}

textarea {
  min-height: 132px;
  resize: vertical;
}

.full {
  grid-column: 1 / -1;
}

.form-note {
  color: var(--muted);
  font-size: 13px;
  margin-top: 14px;
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.toast {
  pointer-events: auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: 0 20px 40px rgba(16, 19, 26, 0.12);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  transform: translateY(100px);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s ease;
  max-width: 420px;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(24, 160, 88, 0.1);
  color: var(--success);
  display: grid;
  place-items: center;
  font-weight: bold;
  flex-shrink: 0;
}

.toast-error .toast-icon {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  font-family: inherit;
}

.toast-content h4 {
  margin: 0;
  font-size: 15px;
  font-weight: 800;
}

.toast-content p {
  margin: 2px 0 0;
  font-size: 13px;
  color: var(--muted);
}

.toast-close {
  background: transparent;
  border: none;
  font-size: 16px;
  color: var(--muted);
  cursor: pointer;
  padding: 4px;
  margin-left: 8px;
  display: grid;
  place-items: center;
  transition: color 0.2s ease;
}

.toast-close:hover {
  color: var(--text);
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Footer */
footer {
  padding: 34px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.mobile-menu {
  display: none;
  padding: 0 0 18px;
}

.mobile-menu a {
  display: block;
  padding: 13px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-weight: 850;
}

/* Responsive Media Queries */
@media (max-width: 960px) {
  .hero {
    padding-top: 54px;
  }

  .hero-grid,
  .split,
  .offer-card,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .cards {
    grid-template-columns: 1fr 1fr;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .menu-btn {
    display: inline-grid;
    place-items: center;
  }

  .mobile-menu.open {
    display: block;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 26px, var(--max));
  }

  .nav {
    min-height: 72px;
  }

  .brand {
    font-size: 19px;
  }

  h1 {
    font-size: 46px;
  }

  section {
    padding: 52px 0;
  }

  .cards,
  .metric-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .full {
    grid-column: auto;
  }

  .hero-actions .btn,
  .form .btn {
    width: 100%;
  }

  .hero-card,
  .dark-panel,
  .highlight-box,
  .offer-card,
  .contact-card,
  .form {
    border-radius: 26px;
    padding: 22px;
  }
  
  .toast {
    left: 12px;
    right: 12px;
    max-width: none;
  }
}

/* Font Awesome Icon Enhancements */
.icon i {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.check i {
  font-size: 11px;
}

.trust-row span i {
  color: var(--accent);
  margin-right: 4px;
}

.contact-option i {
  color: var(--accent);
  font-size: 18px;
  width: 24px;
  text-align: center;
  margin-right: 4px;
}
