:root {
  --bg: #0a0a0f;
  --bg-elevated: #12121a;
  --bg-card: rgba(255, 255, 255, 0.04);
  --text: #f0f0f5;
  --text-muted: #9898a8;
  --accent: #ff6b9d;
  --accent-2: #c084fc;
  --accent-3: #38bdf8;
  --gradient: linear-gradient(135deg, #ff6b9d 0%, #c084fc 50%, #38bdf8 100%);
  --gradient-soft: linear-gradient(135deg, rgba(255, 107, 157, 0.15), rgba(192, 132, 252, 0.1), rgba(56, 189, 248, 0.08));
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.18);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --radius: 16px;
  --radius-lg: 24px;
  --font: 'Plus Jakarta Sans', 'Segoe UI', system-ui, sans-serif;
  --font-display: 'Instrument Serif', Georgia, serif;
  --header-h: 88px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior-x: none;
  touch-action: pan-y;
  scrollbar-width: thin;
  scrollbar-color: #c084fc var(--bg-elevated);
}

html::-webkit-scrollbar {
  width: 10px;
}

html::-webkit-scrollbar-track {
  background: var(--bg-elevated);
}

html::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #ff6b9d 0%, #c084fc 50%, #38bdf8 100%);
  border-radius: 10px;
  border: 2px solid var(--bg-elevated);
}

html::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #ff8fb8 0%, #d8b4fe 50%, #7dd3fc 100%);
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  width: 100%;
  overscroll-behavior-x: none;
  touch-action: pan-y;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-synthesis: none;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

main {
  width: 100%;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 40px);
}

.cursor-glow {
  position: fixed;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(192, 132, 252, 0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
  opacity: 0;
}

body:hover .cursor-glow { opacity: 0.6; }

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  width: 100%;
  padding: 14px 0 0;
  transition: var(--transition);
}

.header.scrolled {
  padding-top: 8px;
}

.header-wrap {
  position: relative;
}

.header-shell {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 10px 12px 10px 16px;
  background: rgba(8, 8, 12, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.5);
  transition: var(--transition);
  overflow: clip;
}

.header-shell::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 107, 157, 0.55), rgba(192, 132, 252, 0.25), rgba(56, 189, 248, 0.45));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.9;
}

.header.scrolled .header-shell {
  background: rgba(8, 8, 12, 0.99);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.58);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.12rem;
  grid-column: 1;
  justify-self: start;
  z-index: 1;
}

.logo-img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  flex-shrink: 0;
  display: block;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.logo-text {
  letter-spacing: -0.02em;
}

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

.header-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  grid-column: 2;
  justify-self: center;
  padding: 5px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 100px;
  z-index: 1;
}

.header-nav a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 9px 16px;
  border-radius: 10px;
  white-space: nowrap;
  letter-spacing: 0.01em;
  transition: background 0.2s, color 0.2s;
}

.header-nav a:hover {
  color: #fff;
  background: rgba(255, 107, 157, 0.2);
}

.header-shell > .header-cta {
  grid-column: 3;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: var(--gradient);
  color: #fff;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
  transition: transform 0.2s, box-shadow 0.2s;
  z-index: 1;
  box-shadow: 0 4px 24px rgba(255, 107, 157, 0.45);
}

.header-shell > .header-cta svg {
  width: 16px;
  height: 16px;
  transition: transform 0.25s;
}

.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(255, 107, 157, 0.5);
}

.header-cta:hover svg {
  transform: translateX(3px);
}

.mobile-menu {
  display: none;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  padding: 10px;
  grid-column: 3;
  justify-self: end;
  z-index: 1;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 8px 32px rgba(255, 107, 157, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255, 107, 157, 0.45);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-hover);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-full { width: 100%; }

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: var(--header-h);
  padding-bottom: 40px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-body {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 48px;
  padding-bottom: 48px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center left;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(10, 10, 15, 0.88) 0%, rgba(10, 10, 15, 0.55) 42%, rgba(10, 10, 15, 0.35) 100%),
    linear-gradient(180deg, rgba(10, 10, 15, 0.5) 0%, transparent 35%, rgba(10, 10, 15, 0.7) 100%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  animation: heroGlowPulse 8s ease-in-out infinite;
}

.hero-glow-1 {
  width: 420px;
  height: 420px;
  background: rgba(255, 107, 157, 0.35);
  top: 15%;
  left: 5%;
}

.hero-glow-2 {
  width: 360px;
  height: 360px;
  background: rgba(56, 189, 248, 0.25);
  bottom: 10%;
  right: 8%;
  animation-delay: -4s;
}

@keyframes heroGlowPulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 107, 157, 0.1);
  border: 1px solid rgba(255, 107, 157, 0.35);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 24px;
  box-shadow: 0 0 20px rgba(255, 107, 157, 0.15);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.hero-price {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.3em 0.45em;
  margin-top: 0.2em;
  line-height: 1.1;
}

.hero-price-from {
  font-family: var(--font);
  font-size: 0.55em;
  font-weight: 600;
  color: rgba(240, 240, 245, 0.75);
  letter-spacing: 0.02em;
}

.hero-price-amount {
  font-family: var(--font);
  font-size: 1.12em;
  font-weight: 800;
  font-style: normal;
  letter-spacing: -0.04em;
  line-height: 1;
  position: relative;
  background: linear-gradient(135deg, #ff8fb8 0%, #d8b4fe 40%, #7dd3fc 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
  filter: drop-shadow(0 2px 12px rgba(255, 107, 157, 0.5)) drop-shadow(0 0 32px rgba(192, 132, 252, 0.35));
}

.hero-price-tag {
  font-family: var(--font);
  font-size: 0.32em;
  font-weight: 700;
  padding: 0.45em 0.85em;
  background: rgba(255, 107, 157, 0.14);
  border: 1.5px solid rgba(255, 107, 157, 0.45);
  border-radius: 100px;
  color: #ffb3d0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  box-shadow: 0 0 20px rgba(255, 107, 157, 0.2);
}

@keyframes shimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.hero-lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 620px;
  margin-bottom: 0;
}

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
  margin-top: 48px;
}

.stat-card {
  padding: 28px 24px;
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.stat-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.stat-card strong {
  display: block;
  font-size: 1.35rem;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-card span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.btn-glow {
  animation: btnPulse 3s ease-in-out infinite;
}

@keyframes btnPulse {
  0%, 100% { box-shadow: 0 8px 32px rgba(255, 107, 157, 0.3); }
  50% { box-shadow: 0 8px 48px rgba(255, 107, 157, 0.55), 0 0 24px rgba(192, 132, 252, 0.3); }
}



/* Sections */
.section {
  padding: 100px 0;
  position: relative;
}

.section-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.section-bg img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: auto;
  max-height: 55%;
  object-fit: contain;
  opacity: 0.2;
}

.section-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--bg) 0%, transparent 25%, transparent 75%, var(--bg) 100%);
}

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

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 14px;
  padding: 6px 14px;
  background: rgba(255, 107, 157, 0.08);
  border: 1px solid rgba(255, 107, 157, 0.22);
  border-radius: 100px;
}

.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 60px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.section-header h2 em {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--accent-2);
}

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

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.about-image-wrap {
  max-width: 440px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: var(--bg-elevated);
}

.about-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.about-text h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.about-text h2 em {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--accent);
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 1.02rem;
}

.about-highlight {
  padding: 20px 24px;
  background: var(--gradient-soft);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--text) !important;
  margin-top: 24px;
}

.about-highlight strong { color: var(--accent); }

/* Services */
.services { background: var(--bg-elevated); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.service-card {
  position: relative;
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.service-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.service-card.featured {
  border-color: rgba(255, 107, 157, 0.35);
  background: linear-gradient(180deg, rgba(255, 107, 157, 0.08) 0%, var(--bg-card) 100%);
}

.service-badge {
  display: inline-block;
  margin-bottom: 16px;
  padding: 6px 16px;
  background: var(--gradient);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
}

.service-icon {
  font-size: 1.8rem;
  margin-bottom: 16px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.service-card > p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 20px;
}

.service-card ul {
  margin-bottom: 24px;
}

.service-card li {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
}

.service-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-3);
  font-weight: 700;
  font-size: 0.8rem;
}

.service-price {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Pricing */
.pricing-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 40px;
}

.pricing-main,
.pricing-addons,
.pricing-external,
.pricing-example {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.pricing-main h3,
.pricing-addons h3,
.pricing-external h3,
.pricing-example h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
}

.price-table th,
.price-table td {
  padding: 12px 0;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
}

.price-table th {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.price-table td:last-child {
  text-align: right;
  font-weight: 600;
  white-space: nowrap;
}

.highlight-row td {
  color: var(--accent) !important;
  border-bottom-color: rgba(255, 107, 157, 0.3);
}

.price-note {
  display: block;
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--text-muted);
  margin-top: 2px;
}

.pricing-stack {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.note-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  padding: 4px 10px;
  background: rgba(56, 189, 248, 0.15);
  color: var(--accent-3);
  border-radius: 100px;
  margin-left: 8px;
  vertical-align: middle;
}

.external-intro {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.external-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.external-card {
  padding: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.external-card h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.external-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent-3);
  margin-bottom: 10px;
}

.external-card p:last-child {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.pricing-example {
  background: linear-gradient(135deg, rgba(255, 107, 157, 0.08), rgba(192, 132, 252, 0.06));
  border-color: rgba(255, 107, 157, 0.2);
}

.example-header {
  margin-bottom: 24px;
}

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

.example-breakdown {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.example-item {
  display: flex;
  justify-content: space-between;
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  font-size: 0.92rem;
}

.example-item span:last-child {
  font-weight: 600;
}

.example-total {
  margin-top: 8px;
  background: var(--gradient);
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: 12px;
}

.example-note {
  margin-top: 16px;
  font-size: 0.88rem;
  color: var(--text-muted);
  font-style: italic;
}

/* Process */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.step {
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.step:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.step-num {
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.5;
  margin-bottom: 12px;
  line-height: 1;
}

.step h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.step p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* Trust */
.trust {
  padding: 60px 0;
  background: var(--bg-elevated);
}

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

.trust-item {
  text-align: center;
  padding: 24px 16px;
}

.trust-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 12px;
}

.trust-item h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.trust-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Contact */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 16px;
}

.contact-info > p {
  color: var(--text-muted);
  margin-bottom: 32px;
}

.contact-details li {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.contact-details span {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-details a {
  font-weight: 500;
  transition: color 0.2s;
}

.contact-details a:hover { color: var(--accent); }

.contact-pending {
  font-weight: 500;
  color: var(--text-muted);
  font-style: italic;
}

.contact-form {
  padding: 36px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-family: var(--font);
  font-size: 0.95rem;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-2);
}

.form-group textarea { resize: vertical; min-height: 100px; }

.form-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 14px;
}

.form-consent { margin-bottom: 20px; }

.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.84rem;
  line-height: 1.55;
  color: var(--text-muted);
  cursor: pointer;
}

.consent-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--accent);
  cursor: pointer;
}

.consent-label a {
  color: var(--accent-3);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.consent-label a:hover { color: var(--accent); }

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  padding: 12px 14px calc(12px + env(safe-area-inset-bottom, 0px));
  background: transparent;
  border: none;
  box-shadow: none;
  pointer-events: none;
}

.cookie-banner-inner {
  pointer-events: auto;
  max-width: 440px;
  margin: 0 auto;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: rgba(22, 22, 30, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.35);
}

.cookie-banner-text {
  font-size: 0.8rem;
  color: rgba(240, 240, 245, 0.72);
  line-height: 1.5;
  margin: 0;
}

.cookie-banner-text a {
  color: var(--accent-3);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner-text a:hover { color: var(--accent); }

.cookie-banner-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.btn-cookie-accept {
  padding: 8px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  background: rgba(255, 107, 157, 0.22);
  color: #ffb3d0;
  border: 1px solid rgba(255, 107, 157, 0.35);
  transition: background 0.2s, color 0.2s;
}

.btn-cookie-accept:hover {
  background: rgba(255, 107, 157, 0.32);
  color: #fff;
}

.btn-cookie-reject {
  padding: 8px 14px;
  font-size: 0.78rem;
  font-weight: 500;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  background: transparent;
  color: var(--text-muted);
  transition: color 0.2s, background 0.2s;
}

.btn-cookie-reject:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

@media (min-width: 769px) {
  .cookie-banner {
    padding: 0;
  }

  .cookie-banner-inner {
    max-width: none;
    width: 100%;
    margin: 0;
    padding: 14px clamp(20px, 4vw, 40px);
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-radius: 0;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(18, 18, 26, 0.96);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.28);
  }

  .cookie-banner-text {
    flex: 1;
    font-size: 0.84rem;
  }

  .cookie-banner-actions {
    flex-shrink: 0;
    flex-wrap: nowrap;
  }
}

/* Legal page */
.legal-page {
  padding-top: calc(var(--header-h) + 40px);
  padding-bottom: 80px;
}

.legal-content {
  max-width: 760px;
}

.legal-content h1 {
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 12px;
}

.legal-updated {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 36px;
}

.legal-content section {
  margin-bottom: 32px;
}

.legal-content h2 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.legal-content p,
.legal-content li {
  color: var(--text-muted);
  font-size: 0.98rem;
  margin-bottom: 12px;
}

.legal-content ul {
  list-style: disc;
  padding-left: 22px;
  margin-bottom: 12px;
}

.legal-content a {
  color: var(--accent-3);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-content a:hover { color: var(--accent); }

.legal-back {
  margin-top: 40px;
}

/* Footer */
.footer {
  padding: 48px 0 32px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
  align-items: start;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 12px;
  max-width: 300px;
}

.footer-links {
  display: flex;
  gap: 24px;
  justify-content: flex-end;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--text); }

.footer-copy {
  grid-column: 1 / -1;
  font-size: 0.82rem;
  color: var(--text-muted);
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

/* Animations */
[data-animate] {
  opacity: 0;
  transition:
    opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-animate="up"],
[data-animate]:not([data-animate="left"]):not([data-animate="right"]):not([data-animate="scale"]) {
  transform: translateY(50px);
}

[data-animate="left"],
[data-animate="right"] {
  transform: translateY(32px);
}

[data-animate="scale"] { transform: scale(0.88); }

[data-animate].visible {
  opacity: 1;
  transform: translate(0) scale(1);
}

@media (min-width: 1025px) and (hover: hover) {
  [data-animate="left"] { transform: translateX(-64px); }
  [data-animate="right"] { transform: translateX(64px); }
}

@media (hover: none), (pointer: coarse) {
  [data-animate] {
    opacity: 1;
    transform: none !important;
    transition: none;
  }

  .cursor-glow { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  [data-animate] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-glow,
  .hero-visual-ring,
  .hero-price-amount,
  .btn-glow {
    animation: none;
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .hero { min-height: auto; }
  .hero-body { padding-top: 32px; padding-bottom: 32px; }
  .hero-stats { grid-template-columns: 1fr; }

  .about-grid,
  .contact-wrapper { grid-template-columns: 1fr; }

  .about-visual { display: none; }

  .about-grid { gap: 0; }

  .services-grid,
  .process-steps,
  .trust-grid { grid-template-columns: repeat(2, 1fr); }

  .pricing-layout { grid-template-columns: 1fr; }
}

@media (max-width: 1024px) {
  .header-shell {
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding: 8px 10px 8px 12px;
    border-radius: 20px;
  }

  .header-nav,
  .header-shell > .header-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
    justify-self: end;
  }

  .mobile-menu {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: min(280px, 100%);
    padding: 12px;
    gap: 2px;
    background: rgba(8, 8, 12, 0.98);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transform: translateY(-8px) scale(0.97);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: var(--transition);
    z-index: 110;
  }

  .mobile-menu.open {
    transform: translateY(0) scale(1);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .mobile-menu a {
    display: block;
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: background 0.2s, color 0.2s;
  }

  .mobile-menu a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
  }

  .mobile-menu .header-cta {
    display: block;
    text-align: center;
    margin-top: 6px;
    color: #fff;
  }

  .nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
}

@media (max-width: 768px) {
  .cookie-banner {
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom, 0px));
  }

  .cookie-banner-inner {
    max-width: 100%;
    padding: 12px 14px;
    gap: 10px;
  }

  .cookie-banner-text { font-size: 0.78rem; }

  .cookie-banner-actions {
    flex-direction: row;
    justify-content: flex-end;
  }

  .btn-cookie-accept,
  .btn-cookie-reject {
    flex: 1 1 auto;
    min-width: 0;
    padding: 8px 12px;
  }

  .hero-stats { gap: 24px; }
  .services-grid,
  .process-steps,
  .trust-grid,
  .external-grid { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }

  .section { padding: 70px 0; }

  .price-table th,
  .price-table td {
    font-size: 0.85rem;
    padding: 10px 0;
  }

  .price-table td:first-child {
    padding-right: 12px;
    word-break: break-word;
  }

  .example-item {
    flex-wrap: wrap;
    gap: 4px 12px;
  }

  .example-item span:first-child {
    flex: 1 1 auto;
    min-width: 0;
  }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .hero-stats { grid-template-columns: repeat(3, 1fr); }
}