:root {
  --primary: #1e3a8a;
  --primary-light: #2563eb;
  --primary-dark: #0f2a6b;
  --primary-gradient: linear-gradient(135deg, #1e3a8a 0%, #1d4ed8 100%);
  --secondary: #1e293b;
  --accent: #eff6ff;
  --accent-strong: #dbeafe;
  --text: #1e293b;
  --muted: #64748b;
  --bg: #ffffff;
  --border: #e2e8f0;
  --shadow-soft: 0 10px 30px rgba(37, 99, 235, 0.1);
  --shadow-blue: 0 8px 25px rgba(37, 99, 235, 0.15);
  --shadow-card: 0 4px 20px rgba(37, 99, 235, 0.08);
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-pill: 999px;
  --max-width: 1100px;
}

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

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

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

/* Layout */

.page {
  min-height: 100vh;
  background: linear-gradient(180deg, #ffffff 0%, #f0f7ff 30%, #eff6ff 60%, #ffffff 100%);
  position: relative;
  overflow-x: hidden;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 4rem 0;
}

h1,
h2,
h3,
h4 {
  font-weight: 600;
  color: var(--secondary);
}

h2 {
  font-size: 1.9rem;
  margin-bottom: 1.2rem;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}

p {
  margin-bottom: 0.75rem;
}

.section-muted {
  background: var(--accent);
  position: relative;
}

.section-muted::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-light), transparent);
}

.section-muted::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-light), transparent);
}

.section-header {
  max-width: 40rem;
  margin-bottom: 2rem;
  position: relative;
}

.section-header h2 {
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--primary-gradient);
  border-radius: 2px;
}

.section-header p {
  color: var(--muted);
  font-size: 0.96rem;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: rgba(100, 116, 139, 0.8);
  margin-bottom: 0.5rem;
}

/* Header / Nav */

header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(120deg, rgba(6, 16, 38, 0.9), rgba(9, 32, 72, 0.75)),
    url("assets/header-banner.svg") center / cover no-repeat;
  border-bottom: 1px solid rgba(148, 163, 184, 0.35);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 0;
  gap: 1rem;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.logo {
  height: 40px;
}

.brand-text {
  font-size: 0.8rem;
  color: rgba(226, 232, 240, 0.85);
  line-height: 1.3;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  font-size: 0.9rem;
}

.nav-links a {
  position: relative;
  color: #f8fafc;
  padding-bottom: 0.15rem;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #e2e8f0;
  transition: width 0.2s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 0.45rem 0.95rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(248, 250, 252, 0.8);
  color: #f8fafc;
  font-size: 0.85rem;
  font-weight: 500;
  background: rgba(15, 23, 42, 0.2);
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-cta:hover {
  background: #f8fafc;
  color: #0f172a;
}

/* Active nav link */

.nav-links a.nav-active {
  font-weight: 600;
  color: #e2e8f0;
}

.nav-links a.nav-active::after {
  width: 100%;
}

/* Mobile nav toggle */

.nav-toggle {
  display: none;
  border: 1px solid rgba(226, 232, 240, 0.6);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.35);
  color: #f8fafc;
  padding: 0.3rem 0.7rem;
  font-size: 0.8rem;
  cursor: pointer;
}

.nav-toggle span {
  display: inline-block;
  margin-left: 0.4rem;
}

/* Badge */

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: var(--primary-dark);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid rgba(37, 99, 235, 0.15);
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 8px rgba(37, 99, 235, 0.5);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 8px rgba(37, 99, 235, 0.5); }
  50% { box-shadow: 0 0 16px rgba(37, 99, 235, 0.8); }
}

/* Hero */

.hero {
  padding: 4rem 0 3.5rem;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -200px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.5fr);
  gap: 2.5rem;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2rem, 3vw, 2.5rem);
  margin-bottom: 0.6rem;
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 1.4rem;
  max-width: 32rem;
}

.hero-note {
  font-size: 0.85rem;
  color: var(--muted);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1.5rem;
}

/* Feature banner */

.feature-banner {
  padding: 2.8rem 0;
  background: linear-gradient(120deg, #0f1b3d 0%, #1e3a8a 45%, #1d4ed8 100%);
  color: #e2e8f0;
  position: relative;
  overflow: hidden;
}

.feature-banner::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.14) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.feature-banner-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}

.feature-banner .eyebrow {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: rgba(226, 232, 240, 0.75);
  margin-bottom: 0.5rem;
}

.feature-banner h2 {
  color: #ffffff;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 0.8rem;
}

.feature-banner p {
  color: rgba(226, 232, 240, 0.9);
  margin-bottom: 1.2rem;
}

.feature-banner-card {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 1.4rem;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.35);
  backdrop-filter: blur(12px);
}

.feature-banner-card h3 {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}

.feature-banner-list {
  display: grid;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: rgba(226, 232, 240, 0.85);
}

.feature-banner-list span {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.feature-banner-list span::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #60a5fa;
  box-shadow: 0 0 10px rgba(96, 165, 250, 0.8);
}

/* Modern feature grid */

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

.modern-feature {
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
  position: relative;
  overflow: hidden;
}

.modern-feature::after {
  content: '';
  position: absolute;
  top: -60%;
  right: -30%;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(30, 58, 138, 0.12) 0%, transparent 70%);
}

.modern-feature h3 {
  margin-top: 0.8rem;
}

.modern-feature p {
  color: var(--muted);
  font-size: 0.94rem;
}

.modern-feature .icon-circle {
  width: 52px;
  height: 52px;
  box-shadow: 0 10px 20px rgba(30, 58, 138, 0.3);
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.3rem;
  border-radius: var(--radius-pill);
  border: none;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.1s ease, box-shadow 0.1s ease,
    background 0.2s ease, color 0.2s ease;
  text-decoration: none;
}

.btn-primary {
  background: var(--primary);
  color: #ffffff;
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 36px rgba(37, 99, 235, 0.25);
  background: #1e40af;
}

.btn-outline {
  background: transparent;
  color: var(--secondary);
  border: 1px solid #d1d5db;
}

.btn-outline:hover {
  background: var(--accent);
}

/* Cards / Grids */

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

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

.card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.3rem 1.2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-blue);
  border-color: rgba(37, 99, 235, 0.2);
}

.card:hover::before {
  transform: scaleX(1);
}

.card p {
  font-size: 0.92rem;
  color: var(--muted);
}

/* Hero card */

.hero-card {
  background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-blue);
  padding: 1.6rem 1.5rem 1.4rem;
  border: 1px solid rgba(37, 99, 235, 0.12);
  position: relative;
  overflow: hidden;
}

.hero-visual {
  position: relative;
  border-radius: var(--radius-md);
  background: #eff6ff;
  padding: 1rem;
  margin-bottom: 1.2rem;
  border: 1px solid rgba(37, 99, 235, 0.15);
  overflow: hidden;
}

.hero-visual img {
  width: 100%;
  border-radius: 12px;
}

.hero-visual-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--primary-dark);
  border: 1px solid rgba(37, 99, 235, 0.2);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.12);
}

.hero-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.hero-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.4rem;
}

.pill {
  font-size: 0.75rem;
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: var(--primary-dark);
  font-weight: 500;
  border: 1px solid rgba(37, 99, 235, 0.1);
  transition: all 0.2s ease;
}

.pill:hover {
  background: var(--accent-strong);
  transform: translateY(-1px);
}

/* Interactive showcase */

.interactive-showcase {
  position: relative;
  overflow: hidden;
}

.interactive-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}

.focus-buttons {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.focus-button {
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 0.9rem 1.1rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--secondary);
  cursor: pointer;
  text-align: left;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.focus-button:hover {
  transform: translateY(-2px);
  border-color: rgba(37, 99, 235, 0.35);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.1);
}

.focus-button.active {
  border-color: rgba(37, 99, 235, 0.6);
  background: linear-gradient(135deg, rgba(239, 246, 255, 0.9) 0%, rgba(219, 234, 254, 0.9) 100%);
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.18);
}

.focus-card {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(37, 99, 235, 0.2);
  background: #ffffff;
  padding: 1.6rem;
  box-shadow: var(--shadow-blue);
  display: grid;
  gap: 1rem;
}

.focus-card-header {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.focus-chip {
  width: fit-content;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary-dark);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.focus-metric {
  display: grid;
  gap: 0.2rem;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(30, 64, 175, 0.95));
  color: #ffffff;
}

.focus-metric-value {
  font-size: 1.4rem;
  font-weight: 600;
}

.focus-metric-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.focus-visual {
  border-radius: var(--radius-md);
  background: #eff6ff;
  padding: 0.8rem;
}

.focus-visual img {
  border-radius: 12px;
}

/* Why list */

.why-list {
  display: grid;
  gap: 1rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.8rem 1rem;
  background: rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-md);
  border: 1px solid rgba(37, 99, 235, 0.08);
  transition: all 0.2s ease;
}

.why-item:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(37, 99, 235, 0.15);
  transform: translateX(4px);
}

.why-bullet {
  margin-top: 0.3rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary-gradient);
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

/* CTA strip */

.cta-strip {
  background: var(--primary-gradient);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 2rem 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  box-shadow: 0 10px 40px rgba(37, 99, 235, 0.3);
  position: relative;
  overflow: hidden;
}

.cta-strip::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -25%;
  width: 50%;
  height: 200%;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%);
  pointer-events: none;
}

.cta-strip::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.cta-strip p {
  margin-bottom: 0;
  max-width: 32rem;
  position: relative;
  z-index: 1;
}

.cta-strip .btn-primary {
  background: #ffffff;
  color: var(--primary);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 1;
}

.cta-strip .btn-primary:hover {
  background: #f8fafc;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Two column layout */

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: flex-start;
}

.values-list {
  display: grid;
  gap: 0.9rem;
  font-size: 0.94rem;
  color: var(--muted);
}

.values-item-title {
  font-weight: 600;
  color: var(--secondary);
}

/* Services detail + accordion */

.service-group {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 1.4rem 1.4rem 0.8rem;
  background: #ffffff;
  margin-bottom: 1.2rem;
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-group::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--primary-gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-group:hover {
  border-color: rgba(37, 99, 235, 0.2);
  box-shadow: var(--shadow-blue);
}

.service-group:hover::before {
  opacity: 1;
}

.service-group-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.service-group-header h3 {
  margin-bottom: 0;
}

.service-toggle-icon {
  font-size: 1.2rem;
  color: var(--muted);
  margin-left: 0.8rem;
}

.service-group-body {
  margin-top: 0.7rem;
  display: none;
}

.service-group.open .service-group-body {
  display: block;
}

.service-group-body > p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 0.6rem;
}

.service-sublist {
  display: grid;
  gap: 0.7rem;
  margin-top: 0.4rem;
}

.service-sublist h4 {
  font-size: 0.98rem;
  margin-bottom: 0.1rem;
}

.service-sublist p {
  font-size: 0.9rem;
  color: var(--muted);
}

/* Lists */

.list-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 2rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.list-columns ul {
  list-style: disc;
  padding-left: 1.2rem;
}

/* Insights */

.insight-list li {
  margin-bottom: 0.4rem;
  font-size: 0.93rem;
  color: var(--muted);
}

/* Contact */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2rem;
}

form {
  display: grid;
  gap: 0.8rem;
}

label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--secondary);
}

input,
select,
textarea {
  width: 100%;
  padding: 0.6rem 0.7rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
  transition: border 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  background: #ffffff;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
  background: #fafcff;
}

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

.contact-side p {
  font-size: 0.94rem;
  color: var(--muted);
}

.form-message {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.form-message.success {
  color: #15803d;
}

.form-message.error {
  color: #b91c1c;
}

/* Footer */

footer {
  border-top: 1px solid #e5e7eb;
  padding: 1.3rem 0 1.6rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: space-between;
  align-items: center;
}

/* Reveal on scroll */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

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

/* Cookie banner */

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  display: none;
  background: rgba(15, 23, 42, 0.97);
  color: #f9fafb;
  box-shadow: 0 -8px 20px rgba(15, 23, 42, 0.3);
}

.cookie-banner-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.8rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.85rem;
}

.cookie-banner-inner p {
  margin: 0;
  flex: 1 1 220px;
}

.cookie-btn {
  padding: 0.5rem 1.1rem;
  font-size: 0.8rem;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  background: var(--primary);
  color: #ffffff;
  font-weight: 500;
  white-space: nowrap;
}

.cookie-btn:hover {
  background: #1e40af;
}

/* Responsive */

@media (max-width: 900px) {
  .hero-grid,
  .feature-banner-inner,
  .two-col,
  .grid-3,
  .contact-grid,
  .list-columns,
  .modern-feature-grid,
  .interactive-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .nav-links {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #ffffff;
    border-bottom: 1px solid var(--border);
    padding: 0.7rem 1.5rem 0.9rem;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
  }

  .nav-cta {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
  }

  .hero {
    padding-top: 2.5rem;
  }
}

@media (max-width: 600px) {
  section {
    padding: 3rem 0;
  }

  .cta-strip {
    padding: 1.4rem 1.3rem;
  }
}

/* Card Icons */

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--primary);
  font-size: 1.4rem;
  border: 1px solid rgba(37, 99, 235, 0.1);
}

.card-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary);
  stroke-width: 2;
  fill: none;
}

/* Decorative Background Shapes */

.bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.bg-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.5;
}

.bg-shape-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  right: -100px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
}

.bg-shape-2 {
  width: 200px;
  height: 200px;
  bottom: 20%;
  left: -50px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.06) 0%, transparent 70%);
}

.bg-shape-3 {
  width: 150px;
  height: 150px;
  top: 50%;
  right: 10%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
}

/* Decorative Lines */

.decorative-line {
  height: 4px;
  width: 80px;
  background: var(--primary-gradient);
  border-radius: 2px;
  margin: 1rem 0;
}

/* Floating Animation */

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

.float-animation {
  animation: float 4s ease-in-out infinite;
}

/* Gradient Text */

.gradient-text {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Stats/Numbers styling */

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 0.25rem;
}

/* Feature highlight box */

.feature-box {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  border: 1px solid rgba(37, 99, 235, 0.15);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}

.feature-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

/* Icon circles */

.icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.5rem;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.icon-circle svg {
  width: 28px;
  height: 28px;
  stroke: #ffffff;
  stroke-width: 2;
  fill: none;
}

/* Progress bar */

.progress-bar {
  height: 6px;
  background: var(--accent-strong);
  border-radius: 3px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: var(--primary-gradient);
  border-radius: 3px;
  transition: width 0.5s ease;
}

/* Glowing border effect */

.glow-border {
  position: relative;
}

.glow-border::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: var(--primary-gradient);
  border-radius: inherit;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.glow-border:hover::before {
  opacity: 0.5;
  filter: blur(8px);
}

/* Dotted pattern background */

.dotted-bg {
  background-image: radial-gradient(rgba(37, 99, 235, 0.15) 1px, transparent 1px);
  background-size: 20px 20px;
}

/* Wave separator */

.wave-separator {
  height: 60px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60'%3E%3Cpath fill='%23eff6ff' d='M0,30 C360,60 720,0 1080,30 C1260,45 1380,37.5 1440,30 L1440,60 L0,60 Z'/%3E%3C/svg%3E") no-repeat center;
  background-size: cover;
}

/* Link with arrow */

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--primary);
  font-weight: 500;
  transition: gap 0.2s ease;
}

.link-arrow:hover {
  gap: 0.6rem;
}

.link-arrow::after {
  content: '\2192';
  transition: transform 0.2s ease;
}

.link-arrow:hover::after {
  transform: translateX(2px);
}

/* Highlight marker effect */

.highlight {
  position: relative;
  display: inline;
}

.highlight::before {
  content: '';
  position: absolute;
  left: -2px;
  right: -2px;
  bottom: 0;
  height: 40%;
  background: rgba(37, 99, 235, 0.15);
  z-index: -1;
  transform: skewX(-5deg);
}
