@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --bg-dark: #07070b;
  --panel: rgba(17, 17, 26, 0.7);
  --panel-hover: rgba(26, 23, 44, 0.85);
  --text: #f5f3ff;
  --muted: #aaa6b8;
  --border: rgba(255, 255, 255, 0.09);
  --border-bright: rgba(168, 85, 247, 0.38);
  
  --purple: #8b5cf6;
  --purple2: #c084fc;
  --purple-glow: rgba(139, 92, 246, 0.25);
  --green-glow: rgba(16, 185, 129, 0.25);
  
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-full: 999px;
  
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text);
  overflow-x: hidden;
}

body {
  position: relative;
  min-height: 100vh;
  line-height: 1.6;
}

/* Background Canvas */
#bg-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
}

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

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Header Navigation */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 7, 11, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

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

.brand {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.14em;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: 38px;
  height: 38px;
  object-fit: contain;
  border-radius: var(--radius-sm);
  filter: drop-shadow(0 0 10px rgba(192, 132, 252, 0.5));
  transition: var(--transition);
}

.brand:hover .brand-logo {
  filter: drop-shadow(0 0 14px rgba(192, 132, 252, 0.7));
}

.footer-logo {
  width: 28px;
  height: 28px;
  object-fit: contain;
  border-radius: 6px;
  filter: drop-shadow(0 0 8px rgba(192, 132, 252, 0.4));
}

.brand span span {
  color: var(--purple2);
}

.nav-links {
  display: flex;
  gap: 28px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  list-style: none;
}

.nav-links a {
  transition: var(--transition);
}

.nav-links a:hover {
  color: #fff;
  text-shadow: 0 0 12px var(--purple2);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-btn, .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius-sm);
  padding: 13px 22px;
  font-weight: 700;
  font-size: 14px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.nav-btn, .btn.primary {
  background: linear-gradient(135deg, var(--purple), #6d28d9);
  color: #fff;
  box-shadow: 0 10px 35px rgba(124, 58, 237, 0.28);
  position: relative;
  overflow: hidden;
}

.nav-btn:hover, .btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 45px rgba(139, 92, 246, 0.45);
}

.btn.secondary {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.btn.secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--border-bright);
  transform: translateY(-2px);
}

/* Hero Section */
.hero {
  min-height: 720px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 90px 0 70px;
  position: relative;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border: 1px solid rgba(192, 132, 252, 0.25);
  background: rgba(139, 92, 246, 0.1);
  border-radius: var(--radius-full);
  color: #d8b4fe;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  animation: badgeGlow 3s infinite alternate;
}

@keyframes badgeGlow {
  0% { box-shadow: 0 0 15px rgba(139, 92, 246, 0.2); }
  100% { box-shadow: 0 0 25px rgba(192, 132, 252, 0.4); }
}

.hero h1 {
  font-size: clamp(48px, 7.5vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.05em;
  font-weight: 900;
  margin: 0 auto 24px;
  max-width: 920px;
}

.hero h1 span {
  background: linear-gradient(90deg, #a78bfa, #e879f9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  max-width: 720px;
  margin: 0 auto 36px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.7;
}

.actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}

.trust {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  color: #c9c5d4;
  font-size: 14px;
  font-weight: 600;
}

.trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Guarantee Trust Bar */
.guarantee-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 16px 24px;
  margin-top: 40px;
  border-radius: var(--radius-md);
  background: rgba(139, 92, 246, 0.06);
  border: 1px solid rgba(168, 85, 247, 0.2);
  backdrop-filter: blur(12px);
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.guarantee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  color: #e9d5ff;
}

.guarantee-item svg {
  color: var(--purple2);
  flex-shrink: 0;
}

/* Section Styling */
section {
  padding: 95px 0;
  position: relative;
}

.section-title {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 52px;
}

.section-title span {
  color: #c4b5fd;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}

.section-title h2 {
  font-size: clamp(34px, 5vw, 52px);
  margin: 0 0 14px;
  letter-spacing: -0.035em;
  font-weight: 900;
}

.section-title p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

/* Interactive Promo Code Widget */
.promo-bar {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.promo-input-group {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(17, 17, 26, 0.85);
  border: 1px solid var(--border-bright);
  padding: 6px 6px 6px 16px;
  border-radius: var(--radius-full);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 20px var(--purple-glow);
  max-width: 480px;
  width: 100%;
}

.promo-input {
  background: transparent;
  border: none;
  color: var(--text);
  font-family: inherit;
  font-size: 14px;
  outline: none;
  flex: 1;
  text-transform: uppercase;
}

.promo-input::placeholder {
  text-transform: none;
  color: var(--muted);
}

.promo-apply-btn {
  padding: 9px 18px;
  font-size: 13px;
  border-radius: var(--radius-full);
}

.promo-status {
  font-size: 13px;
  font-weight: 700;
  min-height: 20px;
  transition: var(--transition);
}

.promo-status.success {
  color: #34d399;
}

.promo-status.error {
  color: #f87171;
}

.old-price {
  text-decoration: line-through;
  opacity: 0.5;
  font-size: 18px;
  margin-right: 4px;
  color: var(--muted);
}

/* Pricing Grid */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025));
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(12px);
  transition: var(--transition);
}

.card:hover {
  border-color: var(--border-bright);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px var(--purple-glow);
}

.card.featured {
  border-color: rgba(168, 85, 247, 0.5);
  box-shadow: 0 0 55px rgba(124, 58, 237, 0.18);
  transform: translateY(-8px);
  background: linear-gradient(180deg, rgba(139, 92, 246, 0.12), rgba(255, 255, 255, 0.03));
}

.card.featured:hover {
  transform: translateY(-12px);
  box-shadow: 0 0 70px rgba(168, 85, 247, 0.35);
}

.popular {
  position: absolute;
  right: 20px;
  top: 20px;
  background: rgba(139, 92, 246, 0.18);
  color: #d8b4fe;
  border: 1px solid rgba(192, 132, 252, 0.3);
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 800;
}

.card h3 {
  font-size: 24px;
  font-weight: 800;
  margin: 4px 0 10px;
}

.price-dual {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 16px 0 18px;
}

.price-sub {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.price-sub.featured-pill, .price-sub:hover {
  background: rgba(139, 92, 246, 0.12);
  border-color: rgba(192, 132, 252, 0.3);
}

.price-val {
  font-size: 24px;
  font-weight: 900;
  color: #d8b4fe;
  line-height: 1.1;
}

.price-period {
  font-size: 11px;
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 2px;
}

.card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: auto;
  padding-top: 10px;
}

.card-actions .btn {
  width: 100%;
  padding: 11px 10px;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.desc {
  color: var(--muted);
  min-height: 54px;
  line-height: 1.6;
  font-size: 14px;
}

.features {
  list-style: none;
  padding: 0;
  margin: 24px 0 32px;
  flex-grow: 1;
}

.features li {
  padding: 9px 0;
  color: #d7d3df;
  font-size: 14px;
  display: flex;
  align-items: center;
}

.features li:before {
  content: '✓';
  color: #a78bfa;
  font-weight: 900;
  margin-right: 12px;
  font-size: 15px;
}

.card .btn {
  width: 100%;
}

/* Portfolio / Recent Projects Showcase */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.project-card {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(12px);
  transition: var(--transition);
}

.project-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.project-banner {
  height: 160px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.25), rgba(168, 85, 247, 0.1));
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.project-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(7, 7, 11, 0.8);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
  color: var(--purple2);
}

.project-body {
  padding: 24px;
}

.project-body h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 8px;
}

.project-body p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 16px;
  line-height: 1.6;
}

.project-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.project-tag {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  padding: 3px 10px;
  border-radius: 6px;
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
}

/* Benefits Grid */
.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.benefit {
  padding: 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.025);
  backdrop-filter: blur(12px);
  transition: var(--transition);
}

.benefit:hover {
  border-color: var(--border-bright);
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.benefit h3 {
  font-size: 20px;
  font-weight: 800;
  margin: 6px 0 10px;
}

.benefit p {
  color: var(--muted);
  line-height: 1.65;
  font-size: 14px;
}

/* Process Roadmap Timeline */
.process-container {
  position: relative;
  margin-top: 20px;
}

.process-line {
  position: absolute;
  top: 36px;
  left: 5%;
  width: 90%;
  height: 2px;
  background: linear-gradient(90deg, rgba(139, 92, 246, 0.15) 0%, rgba(192, 132, 252, 0.6) 50%, rgba(139, 92, 246, 0.15) 100%);
  z-index: 0;
  pointer-events: none;
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
  z-index: 1;
}

.step {
  padding: 26px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(17, 17, 26, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.step:hover {
  border-color: var(--border-bright);
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 25px var(--purple-glow);
}

.step-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.step-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(192, 132, 252, 0.05));
  border: 1px solid rgba(192, 132, 252, 0.3);
  display: grid;
  place-items: center;
  color: var(--purple2);
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.2);
  transition: var(--transition);
}

.step:hover .step-icon {
  background: linear-gradient(135deg, var(--purple), #6d28d9);
  color: #fff;
  transform: scale(1.08);
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
}

.step-number {
  font-size: 13px;
  font-weight: 900;
  color: var(--purple2);
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid rgba(192, 132, 252, 0.25);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  letter-spacing: 0.05em;
}

.step h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.step p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

/* 2-Column Split FAQ Layout */
.faq-split-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: flex-start;
}

.faq-split-left {
  position: sticky;
  top: 100px;
}

.faq-badge {
  color: var(--purple2);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}

.faq-split-left h2 {
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.035em;
  margin-bottom: 16px;
}

.faq-split-left p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.faq-split-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-pill-card {
  background: rgba(17, 17, 26, 0.75);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: var(--transition);
}

.faq-pill-card:hover {
  border-color: var(--border-bright);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.faq-pill-card[open] {
  border-color: rgba(168, 85, 247, 0.5);
  background: linear-gradient(180deg, rgba(139, 92, 246, 0.08), rgba(17, 17, 26, 0.85));
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), 0 0 30px var(--purple-glow);
}

.faq-pill-summary {
  padding: 22px 24px;
  font-size: 17px;
  font-weight: 800;
  cursor: pointer;
  outline: none;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
}

.faq-pill-summary::-webkit-details-marker {
  display: none;
}

.faq-question-text {
  display: flex;
  align-items: center;
  gap: 14px;
}

.faq-number-tag {
  font-size: 12px;
  font-weight: 900;
  color: var(--purple2);
  background: rgba(139, 92, 246, 0.14);
  border: 1px solid rgba(192, 132, 252, 0.25);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.faq-pill-card[open] .faq-number-tag {
  background: linear-gradient(135deg, var(--purple), #6d28d9);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 0 12px rgba(139, 92, 246, 0.4);
}

.faq-plus-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  position: relative;
  transition: var(--transition);
  flex-shrink: 0;
}

.faq-plus-icon::before {
  content: '+';
  font-size: 18px;
  font-weight: 800;
  color: var(--purple2);
  line-height: 1;
}

.faq-pill-card[open] .faq-plus-icon {
  background: rgba(139, 92, 246, 0.25);
  border-color: var(--border-bright);
}

.faq-pill-card[open] .faq-plus-icon::before {
  content: '−';
  color: var(--text);
}

.faq-pill-body {
  padding: 0 24px 22px 64px;
}

.faq-pill-body p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 15px;
}

/* CTA Section */
.cta {
  text-align: center;
  padding: 64px 32px;
  border: 1px solid rgba(168, 85, 247, 0.35);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.16), rgba(168, 85, 247, 0.06));
  backdrop-filter: blur(16px);
  box-shadow: 0 0 60px rgba(124, 58, 237, 0.15);
}

.cta h2 {
  font-size: clamp(32px, 4.5vw, 44px);
  font-weight: 900;
  margin: 0 0 12px;
}

.cta p {
  color: var(--muted);
  margin-bottom: 30px;
  font-size: 16px;
}

/* Modal Windows (Quote & TOS/Privacy) */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(5, 5, 10, 0.85);
  backdrop-filter: blur(16px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-card {
  background: #0d0c18;
  border: 1px solid var(--border-bright);
  border-radius: 24px;
  width: min(640px, calc(100% - 32px));
  max-height: 88vh;
  overflow-y: auto;
  padding: 36px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.85), 0 0 50px rgba(139, 92, 246, 0.25);
  position: relative;
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .modal-card {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  color: var(--muted);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

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

.modal-header h3 {
  font-size: 26px;
  font-weight: 900;
  margin-bottom: 6px;
}

.modal-header p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 24px;
}

.legal-content h4 {
  font-size: 17px;
  font-weight: 800;
  color: var(--purple2);
  margin: 18px 0 6px;
}

.legal-content p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 12px;
}

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

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: inherit;
  font-size: 14px;
  outline: none;
  transition: var(--transition);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 12px rgba(139, 92, 246, 0.3);
}

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

/* Floating Cookie Consent Toast */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 990;
  width: min(440px, calc(100% - 32px));
  background: rgba(13, 12, 24, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 30px var(--purple-glow);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner.show {
  transform: translateY(0);
  opacity: 1;
}

.cookie-content {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.cookie-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.cookie-text h4 {
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 4px;
}

.cookie-text p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.cookie-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.cookie-btn {
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.cookie-btn.accept {
  background: linear-gradient(135deg, var(--purple), #6d28d9);
  color: #fff;
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.cookie-btn.accept:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.5);
}

.cookie-btn.decline {
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
  border: 1px solid var(--border);
}

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

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

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

.footer-links {
  display: flex;
  gap: 20px;
  font-size: 13px;
  font-weight: 600;
}

.footer-links a {
  color: var(--muted);
  transition: var(--transition);
  cursor: pointer;
}

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

/* Responsive Media Queries */
@media (max-width: 850px) {
  .nav-links { display: none; }
  .grid, .benefits, .portfolio-grid, .steps { grid-template-columns: 1fr; }
  .process-line { display: none; }
  .card.featured { transform: none; }
  .hero { min-height: 600px; }
  .actions { flex-direction: column; align-items: stretch; }
  .guarantee-bar { flex-direction: column; gap: 14px; text-align: center; }
  .footer-inner { flex-direction: column; text-align: center; gap: 14px; }
  .cta { padding: 42px 22px; }
  .cookie-banner { left: 16px; right: 16px; width: auto; bottom: 16px; }
}

@media (max-width: 520px) {
  .hero h1 { font-size: 44px; }
  .nav-btn { display: none; }
}
