/* ================================
   RESET & BASE
================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --dark: #111827;
  --blue: #2563eb;
  --purple: #7c3aed;
  --cyan: #06b6d4;
  --green: #10b981;
  --orange: #f97316;

  --soft-blue: #eff6ff;
  --soft-purple: #f5f3ff;
  --soft-cyan: #ecfeff;
  --soft-green: #ecfdf5;
  --soft-orange: #fff7ed;

  --text: #0f172a;
  --muted: #5f6f86;
  --border: #e2e8f0;
  --bg: #f8fafc;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  padding-top: 76px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--blue);
  font-weight: 900;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

p {
  letter-spacing: -0.01em;
}

ul {
  list-style: none;
}

img,
video,
iframe {
  max-width: 100%;
  height: auto;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

/* ================================
   HEADER
================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.75);
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.06);
}

.header-inner {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-size: 23px;
  font-weight: 950;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--blue), var(--purple), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px;
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(239, 246, 255, 0.72), rgba(245, 243, 255, 0.72));
  border: 1px solid rgba(203, 213, 225, 0.78);
  box-shadow:
    0 12px 32px rgba(15, 23, 42, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
  font-size: 15px;
  font-weight: 850;
  color: #475569;
}

.main-nav a {
  position: relative;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: color 0.22s ease, background 0.22s ease, transform 0.22s ease;
}

.main-nav a:hover {
  color: var(--dark);
  background: white;
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.08);
}

.header-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2563eb 0%, #4f46e5 45%, #7c3aed 100%);
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(79, 70, 229, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.22);
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.header-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(79, 70, 229, 0.48);
  filter: brightness(1.08);
}

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

.header-btn:focus-visible {
  outline: 3px solid rgba(99, 102, 241, 0.35);
  outline-offset: 4px;
}

/* Mobile menu default */
.mobile-menu-checkbox {
  display: none;
}

.mobile-menu-btn,
.mobile-menu {
  display: none;
}

/* ================================
   BUTTONS
================================ */
.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 15px;
  border: 0;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.primary-btn {
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: white;
  box-shadow: 0 16px 38px rgba(37, 99, 235, 0.26);
}

.primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 50px rgba(37, 99, 235, 0.32);
}

.secondary-btn {
  background: rgba(255, 255, 255, 0.86);
  color: var(--dark);
  border: 1px solid rgba(37, 99, 235, 0.18);
}

.full-btn {
  width: 100%;
}

/* ================================
   HERO
================================ */
.hero {
  padding: 90px 0;
  background:
    radial-gradient(circle at 12% 12%, rgba(37, 99, 235, 0.20), transparent 30%),
    radial-gradient(circle at 86% 18%, rgba(124, 58, 237, 0.18), transparent 34%),
    radial-gradient(circle at 50% 100%, rgba(6, 182, 212, 0.14), transparent 32%),
    linear-gradient(135deg, #f8fafc 0%, #eef2ff 45%, #ecfeff 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 56px;
}

.eyebrow,
.section-label,
.card-label {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.10), rgba(124, 58, 237, 0.10));
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--dark);
}

.hero-text {
  max-width: 640px;
  margin-top: 24px;
  font-size: 19px;
  color: #475569;
}

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

.trust-row {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-row span {
  color: #334155;
  border: 1px solid var(--border);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
}

.trust-row span:nth-child(1) {
  background: var(--soft-blue);
  border-color: rgba(37, 99, 235, 0.18);
}

.trust-row span:nth-child(2) {
  background: var(--soft-purple);
  border-color: rgba(124, 58, 237, 0.18);
}

.trust-row span:nth-child(3) {
  background: var(--soft-green);
  border-color: rgba(16, 185, 129, 0.18);
}

.hero-card {
  color: white;
  padding: 34px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(124, 58, 237, 0.45), transparent 34%),
    radial-gradient(circle at bottom left, rgba(6, 182, 212, 0.28), transparent 34%),
    linear-gradient(145deg, #0f172a, #111827);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.25);
}

.hero-card h2 {
  font-size: 44px;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}

.hero-card p {
  color: #cbd5e1;
}

.hero-card ul {
  margin-top: 24px;
  display: grid;
  gap: 12px;
}

.hero-card li {
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px 14px;
  border-radius: 14px;
  color: #f8fafc;
  font-weight: 800;
}

/* ================================
   TRUST SECTION
================================ */
.trust-section {
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}

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

.trust-item {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  padding: 20px;
  border-radius: 20px;
}

.trust-item:nth-child(1) {
  background: linear-gradient(135deg, var(--soft-blue), white);
}

.trust-item:nth-child(2) {
  background: linear-gradient(135deg, var(--soft-orange), white);
}

.trust-item:nth-child(3) {
  background: linear-gradient(135deg, var(--soft-cyan), white);
}

.trust-item:nth-child(4) {
  background: linear-gradient(135deg, var(--soft-purple), white);
}

.trust-item::before {
  content: "";
  position: absolute;
  width: 76px;
  height: 76px;
  right: -28px;
  top: -28px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.14);
}

.trust-item strong {
  position: relative;
  display: block;
  font-size: 16px;
  color: var(--dark);
  margin-bottom: 6px;
}

.trust-item span {
  position: relative;
  display: block;
  font-size: 14px;
  color: var(--muted);
}

/* ================================
   SECTIONS & CARDS
================================ */
.section {
  padding: 86px 0;
}

.section h2 {
  max-width: 720px;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.035em;
  margin-bottom: 28px;
}

.light-section {
  background: white;
}

.steps-grid,
.features-grid,
.examples-grid,
.faq-grid {
  display: grid;
  gap: 22px;
  margin-top: 34px;
}

.steps-grid,
.examples-grid {
  grid-template-columns: repeat(3, 1fr);
}

.features-grid {
  grid-template-columns: repeat(4, 1fr);
}

.faq-grid {
  grid-template-columns: repeat(2, 1fr);
}

.step-card,
.feature-card,
.example-card,
.faq-card,
.contact-form,
.contact-info div {
  background: white;
  border: 1px solid var(--border);
  padding: 28px;
  border-radius: 24px;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.step-card:hover,
.feature-card:hover,
.example-card:hover,
.faq-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.10);
}

.step-card span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 900;
  margin-bottom: 18px;
}

.step-card:nth-child(1) span {
  background: #dbeafe;
  color: #1d4ed8;
}

.step-card:nth-child(2) span {
  background: #ede9fe;
  color: #6d28d9;
}

.step-card:nth-child(3) span {
  background: #dcfce7;
  color: #047857;
}

.step-card h3,
.feature-card h3,
.example-card h3,
.faq-card h3 {
  font-size: 21px;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
  color: var(--dark);
}

.step-card p,
.feature-card p,
.example-card p,
.faq-card p {
  color: var(--muted);
}

.feature-card:nth-child(1) {
  border-top: 5px solid var(--blue);
  background: linear-gradient(180deg, white 0%, var(--soft-blue) 100%);
}

.feature-card:nth-child(2) {
  border-top: 5px solid var(--purple);
  background: linear-gradient(180deg, white 0%, var(--soft-purple) 100%);
}

.feature-card:nth-child(3) {
  border-top: 5px solid var(--green);
  background: linear-gradient(180deg, white 0%, var(--soft-green) 100%);
}

.feature-card:nth-child(4) {
  border-top: 5px solid var(--orange);
  background: linear-gradient(180deg, white 0%, var(--soft-orange) 100%);
}

.feature-card:nth-child(5) {
  border-top: 5px solid var(--cyan);
  background: linear-gradient(180deg, white 0%, var(--soft-cyan) 100%);
}

.feature-card:nth-child(6) {
  border-top: 5px solid var(--blue);
  background: linear-gradient(180deg, white 0%, var(--soft-blue) 100%);
}

.feature-card:nth-child(7) {
  border-top: 5px solid var(--purple);
  background: linear-gradient(180deg, white 0%, var(--soft-purple) 100%);
}

.feature-card:nth-child(8) {
  border-top: 5px solid var(--green);
  background: linear-gradient(180deg, white 0%, var(--soft-green) 100%);
}

/* ================================
   EXAMPLES
================================ */
.example-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.example-card .text-link {
  margin-top: auto;
  padding-top: 18px;
}

.example-top {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.example-card:nth-child(1) .example-top {
  background: #ffedd5;
  color: #c2410c;
}

.example-card:nth-child(2) .example-top {
  background: #dbeafe;
  color: #1d4ed8;
}

.example-card:nth-child(3) .example-top {
  background: #ede9fe;
  color: #6d28d9;
}

/* ================================
   PRICING SECTION
================================ */
.pricing-section {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  background:
    radial-gradient(circle at top left, rgba(59, 130, 246, 0.28), transparent 28%),
    radial-gradient(circle at top right, rgba(124, 58, 237, 0.24), transparent 30%),
    linear-gradient(135deg, #051229 0%, #020817 52%, #1f1453 100%);
}

.pricing-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    radial-gradient(circle at bottom center, rgba(255, 255, 255, 0.05), transparent 38%);
  pointer-events: none;
}

.pricing-section .container {
  position: relative;
  z-index: 2;
}

.pricing-intro {
  max-width: 820px;
  margin: 0 auto 64px;
  text-align: center;
}

.pricing-intro .section-label {
  margin-inline: auto;
  background: rgba(255, 255, 255, 0.08);
  color: #dbeafe;
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.18);
}

.pricing-intro h2 {
  color: #ffffff;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.03;
  letter-spacing: -0.045em;
  margin: 0 0 18px;
}

.pricing-intro p {
  color: #cbd5e1;
  font-size: 18px;
  line-height: 1.75;
  margin: 0 auto;
  max-width: 720px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  align-items: end;
}

.pricing-tier {
  position: relative;
  display: flex;
  flex-direction: column;
  height: auto;
  min-height: auto;
  padding: 34px 30px 30px;
  border-radius: 40px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow:
    0 28px 80px rgba(2, 6, 23, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  backdrop-filter: blur(10px);
}

.pricing-tier:hover {
  box-shadow:
    0 40px 100px rgba(2, 6, 23, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.90);
}

.pricing-tier:first-child {
  transform: translateY(12px);
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.16), transparent 36%),
    linear-gradient(180deg, #ffffff 0%, #eef5ff 100%);
  border-color: rgba(37, 99, 235, 0.18);
}

.pricing-tier:last-child {
  transform: translateY(12px);
  background:
    radial-gradient(circle at top right, rgba(124, 58, 237, 0.16), transparent 36%),
    linear-gradient(180deg, #ffffff 0%, #f4f0ff 100%);
  border-color: rgba(124, 58, 237, 0.18);
}

.pricing-tier:first-child:hover,
.pricing-tier:last-child:hover {
  transform: translateY(4px);
}

.pricing-tier-label {
  margin: 0 0 20px;
  color: #64748b;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-tier:first-child .pricing-tier-label {
  color: #2563eb;
}

.featured-tier .pricing-tier-label {
  color: #92400e;
}

.pricing-tier:last-child .pricing-tier-label {
  color: #7c3aed;
}

.pricing-tier h3 {
  margin: 0 0 14px;
  color: var(--dark);
  font-size: clamp(40px, 3.2vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.055em;
  white-space: nowrap;
}

.pricing-tier-subtitle {
  margin: 0 0 26px;
  color: #64748b;
  font-size: 16px;
  line-height: 1.5;
  min-height: 28px;
}

.pricing-tier-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 0 0 auto;
}

.pricing-tier-list li {
  display: flex;
  align-items: center;
  min-height: auto;
  padding: 14px 18px;
  border-radius: 18px;
  color: #334155;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    0 8px 18px rgba(15, 23, 42, 0.03);
}

.pricing-tier-list li:nth-child(1) {
  background: linear-gradient(180deg, #eef2ff 0%, #e9eef7 100%);
}

.pricing-tier-list li:nth-child(2) {
  background: linear-gradient(180deg, #f3e8ff 0%, #ede9f8 100%);
}

.pricing-tier-list li:nth-child(3) {
  background: linear-gradient(180deg, #e0f2fe 0%, #dff0f2 100%);
}

.pricing-tier-list li:nth-child(4) {
  background: linear-gradient(180deg, #dcfce7 0%, #e3f1ea 100%);
}

.pricing-tier-list li:nth-child(5) {
  background: linear-gradient(180deg, #fef3e2 0%, #efe6dc 100%);
}

.pricing-tier .full-btn {
  width: 100%;
  text-align: center;
  margin-top: 10px;
  padding: 18px 26px;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 900;
  box-shadow: 0 18px 34px rgba(79, 70, 229, 0.24);
}

.featured-tier {
  overflow: visible;
  margin-top: 0;
  transform: translateY(-28px);
  z-index: 3;
  padding-top: 70px;
  background:
    radial-gradient(circle at top right, rgba(250, 204, 21, 0.35), transparent 38%),
    radial-gradient(circle at bottom left, rgba(245, 158, 11, 0.18), transparent 34%),
    linear-gradient(180deg, #fffdf2 0%, #fff3c4 100%);
  border: 2px solid rgba(250, 204, 21, 0.55);
  box-shadow:
    0 48px 120px rgba(2, 6, 23, 0.42),
    0 0 0 7px rgba(250, 204, 21, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.featured-tier:hover {
  transform: translateY(-34px);
}

.featured-tier::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 40px;
  background: linear-gradient(135deg, rgba(250, 204, 21, 0.20), rgba(245, 158, 11, 0.12));
  z-index: -1;
  filter: blur(18px);
  opacity: 0.95;
}

.pricing-badge {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 180px;
  padding: 14px 22px 12px;
  border-radius: 18px 18px 24px 24px;

  background: linear-gradient(180deg, #fef3c7 0%, #facc15 45%, #f59e0b 100%);
  color: #4b3412;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;

  box-shadow:
    0 18px 34px rgba(245, 158, 11, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.pricing-badge::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 96px;
  height: 30px;

  background: linear-gradient(180deg, #fde68a 0%, #facc15 50%, #f59e0b 100%);
  clip-path: polygon(
    0 100%,
    10% 45%,
    24% 82%,
    38% 14%,
    50% 78%,
    62% 14%,
    76% 82%,
    90% 45%,
    100% 100%
  );

  filter: drop-shadow(0 6px 10px rgba(245, 158, 11, 0.18));
}

.pricing-badge::after {
  content: "";
  position: absolute;
  top: -27px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff7ed;
  box-shadow:
    -28px 10px 0 #fff7ed,
    28px 10px 0 #fff7ed;
}

/* ================================
   FAQ
================================ */
.faq-section {
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.08), transparent 30%),
    #ffffff;
}

.faq-card:nth-child(1) {
  background: linear-gradient(135deg, var(--soft-blue), #ffffff);
}

.faq-card:nth-child(2) {
  background: linear-gradient(135deg, var(--soft-purple), #ffffff);
}

.faq-card:nth-child(3) {
  background: linear-gradient(135deg, var(--soft-cyan), #ffffff);
}

.faq-card:nth-child(4) {
  background: linear-gradient(135deg, var(--soft-green), #ffffff);
}

.faq-card:nth-child(5) {
  background: linear-gradient(135deg, var(--soft-orange), #ffffff);
}

.faq-card:nth-child(6) {
  background: linear-gradient(135deg, var(--soft-blue), #ffffff);
}

.faq-card:nth-child(7) {
  background: linear-gradient(135deg, var(--soft-purple), #ffffff);
}

.faq-card:nth-child(8) {
  background: linear-gradient(135deg, var(--soft-cyan), #ffffff);
}

/* ================================
   CONTACT
================================ */
.contact-section {
  background:
    radial-gradient(circle at 85% 15%, rgba(124, 58, 237, 0.10), transparent 30%),
    radial-gradient(circle at 10% 85%, rgba(6, 182, 212, 0.10), transparent 28%),
    #f8fafc;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 44px;
  align-items: start;
}

.contact-content h2 {
  margin-bottom: 18px;
}

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

.contact-info {
  margin-top: 30px;
  display: grid;
  gap: 16px;
}

.contact-info div {
  padding: 18px;
  border-radius: 18px;
}

.contact-info strong {
  display: block;
  color: var(--dark);
  margin-bottom: 4px;
}

.contact-info a {
  color: var(--blue);
  font-weight: 900;
}

.contact-form {
  border: 1px solid rgba(37, 99, 235, 0.14);
  padding: 30px;
  border-radius: 28px;
}

.form-group {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 14px;
  font-weight: 900;
  color: #334155;
}

.form-group input,
.form-group textarea {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 14px;
  padding: 14px 16px;
  font: inherit;
  color: var(--dark);
  background: #f8fafc;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  background: white;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.form-group textarea {
  resize: vertical;
}

.form-btn {
  width: 100%;
}
/* Policy Page */
.policy-content {
  max-width: 820px;
}

.policy-content h1 {
  font-size: clamp(38px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
  color: #0f172a;
}

.policy-content h2 {
  font-size: 24px;
  margin-top: 36px;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  color: #0f172a;
}

.policy-content p {
  font-size: 17px;
  color: #475569;
  margin-bottom: 16px;
}

.policy-content ul {
  list-style: disc;
  padding-left: 22px;
  margin: 14px 0 24px;
}

.policy-content li {
  color: #475569;
  margin-bottom: 8px;
}

.policy-content a {
  color: #2563eb;
  font-weight: 800;
}

.policy-content a.primary-btn {
  color: white;
}

.policy-content .primary-btn {
  margin-top: 24px;
}

.policy-content .primary-btn + .secondary-btn {
  margin-left: 12px;
  margin-top: 24px;
}

@media (max-width: 700px) {
  .policy-content .primary-btn,
  .policy-content .secondary-btn {
    width: 100%;
  }

  .policy-content .primary-btn + .secondary-btn {
    margin-left: 0;
    margin-top: 12px;
  }
}

/* ================================
   FOOTER
================================ */
.site-footer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 0%, rgba(37, 99, 235, 0.18), transparent 30%),
    radial-gradient(circle at 85% 0%, rgba(124, 58, 237, 0.16), transparent 32%),
    linear-gradient(135deg, #020617 0%, #07122b 52%, #0b1020 100%);
  color: #94a3b8;
  padding: 34px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.site-footer::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: min(760px, 80%);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.75), rgba(167, 139, 250, 0.75), transparent);
}

.footer-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 14px;
}

.footer-inner p {
  margin: 0;
  color: #94a3b8;
}

.footer-inner p:first-child {
  font-weight: 700;
  letter-spacing: -0.01em;
}

.footer-inner p:last-child {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 14px 34px rgba(2, 6, 23, 0.20);
}

.footer-inner a {
  color: #cbd5e1;
  font-weight: 900;
  transition: color 0.22s ease, opacity 0.22s ease, transform 0.22s ease;
}

.footer-inner a:hover {
  color: #ffffff;
  transform: translateY(-1px);
}
/* Cookie Banner */
.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  box-shadow: 0 24px 80px rgba(15, 23, 42, 0.22);
  padding: 18px;
}

.cookie-content {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 22px;
}

.cookie-content strong {
  display: block;
  font-size: 18px;
  color: #0f172a;
  margin-bottom: 6px;
}

.cookie-content p {
  color: #475569;
  font-size: 15px;
  margin-bottom: 6px;
}

.cookie-content a {
  color: #2563eb;
  font-weight: 800;
  font-size: 14px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-btn {
  border: 0;
  cursor: pointer;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 14px;
}

.cookie-btn.reject {
  background: #f1f5f9;
  color: #0f172a;
}

.cookie-btn.accept {
  background: #2563eb;
  color: white;
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 110px;
  z-index: 9998;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: white;
  font-size: 26px;
  font-weight: 900;
  box-shadow: 0 18px 45px rgba(37, 99, 235, 0.28);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease, box-shadow 0.22s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 60px rgba(37, 99, 235, 0.36);
}

/* ================================
   MOBILE CTA
================================ */
.mobile-cta {
  display: none;
}

/* ================================
   THANK YOU PAGE
================================ */
.thank-you-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.16), transparent 35%),
    linear-gradient(135deg, #f8fafc 0%, #eef2ff 100%);
}

.thank-you-box {
  width: min(720px, 100%);
  background: white;
  border: 1px solid var(--border);
  border-radius: 32px;
  padding: 50px;
  text-align: center;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.12);
}

.thank-you-box h1 {
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.05em;
  color: var(--dark);
  margin-bottom: 18px;
}

.thank-you-box p {
  color: var(--muted);
  font-size: 19px;
  margin-bottom: 30px;
}

.thank-you-box .primary-btn {
  width: auto;
  min-width: 240px;
}

/* ================================
   TABLET
================================ */
@media (max-width: 1100px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 640px;
    margin: 0 auto;
    align-items: stretch;
  }

  .pricing-tier:first-child,
  .pricing-tier:last-child,
  .featured-tier {
    transform: none;
    margin-top: 0;
  }

  .featured-tier:hover,
  .pricing-tier:first-child:hover,
  .pricing-tier:last-child:hover {
    transform: none;
  }

  .pricing-tier h3 {
    white-space: normal;
  }
}

/* ================================
   MOBILE
================================ */
@media (max-width: 900px) {
  body {
    padding-top: 68px;
    padding-bottom: 86px;
    font-size: 16px;
  }

  .back-to-top {
    right: 18px;
    bottom: 92px;
    width: 46px;
    height: 46px;
    font-size: 22px;
  }

.cookie-banner {
  left: 12px;
  right: 12px;
  bottom: 96px;
  padding: 14px;
  border-radius: 22px;
}

.cookie-content {
  grid-template-columns: 1fr;
  gap: 14px;
}

.cookie-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.cookie-btn {
  width: 100%;
}
  .container {
    width: calc(100% - 32px);
    max-width: 100%;
  }

  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
  }

  .header-inner {
    height: 68px;
    gap: 12px;
  }

  .logo {
    font-size: 18px;
  }

  .main-nav,
  .header-btn {
    display: none !important;
  }

  .mobile-menu-btn {
    width: 44px;
    height: 44px;
    display: inline-flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: linear-gradient(135deg, var(--blue), var(--purple));
    border-radius: 50%;
    cursor: pointer;
    flex-shrink: 0;
  }

  .mobile-menu-btn span {
    width: 18px;
    height: 2px;
    background: white;
    border-radius: 999px;
  }

  .mobile-menu {
    position: fixed;
    top: 76px;
    left: 16px;
    right: 16px;
    width: auto;
    z-index: 9998;
    display: none;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(239, 246, 255, 0.98));
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 10px;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.18);
  }

  .mobile-menu-checkbox:checked ~ .mobile-menu {
    display: block;
  }

  .mobile-menu a {
    display: block;
    min-height: 44px;
    padding: 14px 16px;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 900;
    color: var(--dark);
  }

  .mobile-menu a:nth-child(1) {
    background: var(--soft-blue);
  }

  .mobile-menu a:nth-child(2) {
    background: var(--soft-purple);
  }

  .mobile-menu a:nth-child(3) {
    background: var(--soft-orange);
  }

  .mobile-menu a:nth-child(4) {
    background: var(--soft-cyan);
  }

  .mobile-menu a:nth-child(5) {
    background: var(--soft-green);
  }

  .mobile-menu a:nth-child(6) {
    background: #fff1f2;
  }

  .mobile-menu a + a {
    margin-top: 8px;
  }

  .hero {
    padding: 48px 0 42px;
    background:
      radial-gradient(circle at 15% 8%, rgba(37, 99, 235, 0.20), transparent 34%),
      radial-gradient(circle at 90% 20%, rgba(124, 58, 237, 0.18), transparent 34%),
      linear-gradient(180deg, #f8fafc 0%, #eef2ff 55%, #ecfeff 100%);
  }

  .hero-grid,
  .contact-grid,
  .steps-grid,
  .features-grid,
  .examples-grid,
  .faq-grid,
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .hero h1 {
    font-size: 38px;
    line-height: 1.06;
    letter-spacing: -0.04em;
  }

  .hero-text {
    margin-top: 18px;
    font-size: 17px;
  }

  .hero-actions {
    margin-top: 26px;
    gap: 10px;
  }

  .primary-btn,
  .secondary-btn {
    width: 100%;
    min-height: 50px;
  }

  .trust-row {
    margin-top: 22px;
    gap: 8px;
  }

  .trust-row span {
    font-size: 13px;
    padding: 9px 12px;
  }

  .hero-card {
    padding: 24px;
    border-radius: 26px;
  }

  .hero-card h2 {
    font-size: 34px;
  }

  .trust-section {
    padding: 18px 0;
  }

  .section {
    padding: 58px 0;
  }

  .section h2 {
    font-size: 32px;
    line-height: 1.12;
    letter-spacing: -0.035em;
    margin-bottom: 22px;
  }

  .step-card,
  .feature-card,
  .example-card,
  .faq-card,
  .trust-item,
  .contact-form,
  .contact-info div {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 22px;
    border-radius: 22px;
  }

  .pricing-section {
    padding: 84px 0;
  }

  .pricing-intro {
    margin-bottom: 46px;
  }

  .pricing-intro h2 {
    font-size: 40px;
  }

  .pricing-intro p {
    font-size: 16px;
  }

  .pricing-tier {
    border-radius: 30px;
    padding: 24px 20px 20px;
  }

  .featured-tier {
    margin-top: 46px;
    padding-top: 64px;
  }

  .pricing-badge {
    min-width: 165px;
    font-size: 13px;
    padding: 12px 18px 10px;
  }

  .pricing-badge::before {
    width: 86px;
    height: 26px;
  }

  .pricing-tier h3 {
    font-size: 42px;
  }

  .pricing-tier-list li {
    min-height: auto;
    padding: 16px 18px;
    font-size: 15px;
  }

  .pricing-tier .full-btn {
    font-size: 17px;
    padding: 16px 22px;
  }

  .contact-grid {
    gap: 26px;
  }

  .contact-content p {
    font-size: 17px;
  }

  .form-group input,
  .form-group textarea {
    font-size: 16px;
  }

  .site-footer {
    padding: 30px 0 104px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 14px;
  }

  .footer-inner p:last-child {
    justify-content: center;
    flex-wrap: wrap;
  }

  .mobile-cta {
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 9999;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 10px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border);
    padding: 9px;
    border-radius: 24px;
    box-shadow: 0 22px 70px rgba(15, 23, 42, 0.20);
  }

  .mobile-cta a {
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 900;
    white-space: nowrap;
  }

  .mobile-cta a:first-child {
    background: linear-gradient(135deg, var(--blue), var(--purple));
    color: white;
  }

  .mobile-cta a:last-child {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: white;
  }
}

/* ================================
   SMALL MOBILE
================================ */
@media (max-width: 520px) {
  .container {
    width: calc(100% - 24px);
  }

  .header-inner {
    height: 64px;
  }

  .logo {
    font-size: 17px;
  }

  .mobile-menu {
    top: 72px;
    left: 12px;
    right: 12px;
  }

  .hero h1 {
    font-size: 36px;
    line-height: 1.08;
  }

  .hero-text {
    font-size: 16.5px;
  }

  .section h2 {
    font-size: 30px;
  }

  .pricing-tier h3 {
    font-size: 36px;
  }

  .hero-card h2 {
    font-size: 32px;
  }

  .thank-you-box {
    padding: 34px 22px;
    border-radius: 24px;
  }

  .thank-you-box .primary-btn {
    width: 100%;
  }

  .mobile-cta {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }

  .mobile-cta a {
    min-height: 44px;
    font-size: 13px;
  }
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  flex-shrink: 0;
  width: 74px;
  height: 74px;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  overflow: hidden;
}

.brand-logo img {
  display: block;
  width: 74px;
  height: 74px;
  max-width: 74px;
  max-height: 74px;
  object-fit: contain;
}

@media (max-width: 768px) {
  .brand-logo {
    width: 58px;
    height: 58px;
  }

  .brand-logo img {
    width: 58px;
    height: 58px;
    max-width: 58px;
    max-height: 58px;
  }
}

.footer-logo {
  position: relative;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  margin-bottom: 14px;
  overflow: hidden;
  border-radius: 18px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.footer-logo img {
  display: block;
  width: 260px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .footer-logo {
    padding: 6px 10px;
    border-radius: 14px;
  }

  .footer-logo img {
    width: 180px;
  }
}
