:root {
  --bg: #0a0a0f;
  --bg2: #111118;
  --bg3: #18181f;
  --border: rgba(255, 255, 255, 0.07);
  --border-light: rgba(255, 255, 255, 0.13);
  --accent: #6c63ff;
  --accent2: #a78bfa;
  --accent-glow: rgba(108, 99, 255, 0.18);
  --text: #f0eefc;
  --muted: #9d9cac;
  --muted2: #7a7988;
  --green: #22d3a0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.032;
  pointer-events: none;
  z-index: 999;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(16px);
  background: rgba(10, 10, 15, 0.75);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--text);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-name {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-name-main {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text);
}
.logo-name-sub {
  font-size: 0.68rem;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.08em;
  font-family: "DM Sans", sans-serif;
}
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
}
.nav-cta {
  background: transparent;
  border: 1px solid var(--border-light);
  color: var(--text);
  padding: 0.5rem 1.2rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-family: "DM Sans", sans-serif;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.nav-cta:hover {
  background: var(--bg3);
  border-color: var(--accent);
  color: var(--accent2);
}

/* HAMBURGER */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-hamburger span {
  width: 22px;
  height: 2px;
  background: var(--muted);
  border-radius: 2px;
  transition: all 0.3s;
  display: block;
}
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
}
.nav-mobile a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
  padding: 1rem 2.5rem;
  border-bottom: 1px solid var(--border);
  display: block;
  transition: color 0.2s;
}
.nav-mobile a:hover {
  color: var(--text);
}
.nav-mobile.open {
  display: flex;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 7rem 2.5rem 5rem;
  position: relative;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(108, 99, 255, 0.12) 0%,
    transparent 70%
  );
  top: -100px;
  right: -100px;
  pointer-events: none;
}
.hero-glow2 {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(34, 211, 160, 0.06) 0%,
    transparent 70%
  );
  bottom: 0;
  left: 10%;
  pointer-events: none;
}
.hero-inner {
  max-width: 900px;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg3);
  border: 1px solid var(--border-light);
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  font-size: 0.78rem;
  color: var(--green);
  letter-spacing: 0.05em;
  font-weight: 500;
  margin-bottom: 2rem;
  animation: fadeUp 0.6s ease both;
}
.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

.hero h1 {
  font-family: "Syne", sans-serif;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.6s 0.1s ease both;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 540px;
  font-weight: 300;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.6s 0.2s ease both;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 0.6s 0.3s ease both;
}
.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
  animation: fadeUp 0.6s 0.4s ease both;
}
.stat-num {
  font-family: "Syne", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}
.stat-num span {
  color: var(--accent);
}
.stat-label {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 4px;
  letter-spacing: 0.03em;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* BUTTONS */
.btn-primary {
  background: var(--accent);
  color: #ffffff;
  padding: 0.75rem 1.8rem;
  border-radius: 8px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  display: inline-block;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.btn-primary:hover {
  background: #7d75ff;
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--muted);
  padding: 0.75rem 1.8rem;
  border-radius: 8px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.92rem;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.2s;
  border: 1px solid var(--border-light);
  display: inline-block;
}
.btn-ghost:hover {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.25);
}

/* SECTIONS */
section {
  padding: 6rem 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.section-label {
  font-size: 0.75rem;
  color: var(--accent2);
  letter-spacing: 0.12em;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-title {
  font-family: "Syne", sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 1.2rem;
}
.section-sub {
  color: var(--muted);
  max-width: 560px;
  font-size: 1rem;
  font-weight: 300;
}
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* TECH STRIP */
.tech-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 4rem 2.5rem;
}
.tech-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.tech-label {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  text-align: center;
}
.tech-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.tech-item {
  background: var(--bg2);
  border: 1px solid var(--border);
  padding: 0.5rem 1.1rem;
  border-radius: 8px;
  font-size: 0.83rem;
  color: var(--muted);
  transition: all 0.2s;
}
.tech-item:hover {
  border-color: var(--border-light);
  color: var(--text);
}

/* SERVICES GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin-top: 3.5rem;
}
.service-card {
  background: var(--bg2);
  padding: 2rem 1.8rem;
  transition: background 0.2s;
  text-decoration: none;
  display: block;
}
.service-card:hover {
  background: var(--bg3);
}
.service-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-glow);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1.2rem;
  border: 1px solid rgba(108, 99, 255, 0.2);
}
.service-card h3 {
  font-family: "Syne", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: var(--text);
}
.service-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
}
.service-tag {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.72rem;
  color: var(--accent2);
  background: rgba(108, 99, 255, 0.12);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  letter-spacing: 0.04em;
}
.service-arrow {
  font-size: 0.8rem;
  color: var(--accent2);
  margin-top: 0.8rem;
  display: block;
}

/* TESTIMONIALS */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.2rem;
  margin-top: 3.5rem;
}
.testimonial-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.8rem;
  transition: border-color 0.2s;
}
.testimonial-card:hover {
  border-color: var(--border-light);
}
.testimonial-quote {
  font-size: 2.5rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.4;
  font-family: "Syne", sans-serif;
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.testimonial-text {
  font-size: 0.92rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}
.testimonial-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent-glow);
  border: 1px solid rgba(108, 99, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Syne", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent2);
  flex-shrink: 0;
}
.testimonial-name {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
}
.testimonial-role {
  font-size: 0.75rem;
  color: var(--muted);
}
.stars {
  color: #f5a623;
  font-size: 0.8rem;
  letter-spacing: 2px;
  margin-bottom: 0.8rem;
}

/* PRICING */
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 2.5rem 0 3rem;
}
.toggle-label {
  font-size: 0.88rem;
  color: var(--muted);
  cursor: pointer;
  transition: color 0.2s;
}
.toggle-label.active {
  color: var(--text);
  font-weight: 500;
}
.toggle-pill {
  width: 48px;
  height: 26px;
  background: var(--bg3);
  border: 1px solid var(--border-light);
  border-radius: 13px;
  position: relative;
  cursor: pointer;
  transition: background 0.2s;
}
.toggle-pill.ads-mode {
  background: var(--accent);
  border-color: var(--accent);
}
.toggle-knob {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.25s;
}
.toggle-pill.ads-mode .toggle-knob {
  transform: translateX(22px);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.pricing-card {
  background: var(--bg2);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 2rem 1.6rem;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s;
}
.pricing-card:hover {
  border-color: rgba(255, 255, 255, 0.22);
}
.pricing-card.featured {
  background: var(--bg3);
  border: 2px solid var(--accent);
}
.pricing-badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.7rem;
  border-radius: 100px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  align-self: flex-start;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.pricing-name {
  font-family: "Syne", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.4rem;
}
.pricing-desc {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 1.4rem;
  min-height: 48px;
}
.pricing-price {
  font-family: "DM Sans", sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  margin-bottom: 0.3rem;
  letter-spacing: -0.02em;
}
.pricing-price span {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--muted);
}
.pricing-price.custom-price {
  font-size: 1.8rem;
  color: var(--accent2);
  font-family: "Syne", sans-serif;
}
.pricing-divider {
  height: 1px;
  background: var(--border);
  margin: 1.4rem 0;
}
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  flex: 1;
  margin-bottom: 1.8rem;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.4;
}
.pricing-features li.off {
  .pricing-features li.off {
    opacity: 0.6;
    text-decoration: line-through;
    color: var(--muted);
  }
}
.feat-check {
  color: var(--green);
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.feat-x {
  color: var(--muted);
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.pricing-btn {
  display: block;
  width: 100%;
  padding: 0.75rem;
  border-radius: 10px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  border: 1px solid var(--border-light);
  background: transparent;
  color: var(--text);
  margin-top: auto;
}
.pricing-btn:hover {
  background: var(--bg3);
  border-color: rgba(255, 255, 255, 0.25);
}
.pricing-btn.featured-btn {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.pricing-btn.featured-btn:hover {
  background: #7d75ff;
}
.pricing-panel {
  display: none;
}
.pricing-panel.active {
  display: grid;
}

/* ABOUT */
.about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-top: 3.5rem;
}
.about-card {
  background: var(--bg2);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}
.about-card::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(108, 99, 255, 0.15) 0%,
    transparent 70%
  );
  border-radius: 50%;
}
.about-initials {
  width: 72px;
  height: 72px;
  background: var(--bg3);
  border: 2px solid var(--accent);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Syne", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--accent2);
  margin-bottom: 1.5rem;
}
.about-card-name {
  font-family: "Syne", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.about-card-role {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}
.about-skills-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 1.5rem;
}
.skill-chip {
  background: var(--bg3);
  border: 1px solid var(--border);
  color: var(--muted);
  padding: 0.3rem 0.8rem;
  border-radius: 6px;
  font-size: 0.78rem;
}
.about-highlight {
  background: var(--bg2);
  border-left: 3px solid var(--accent);
  padding: 1rem 1.2rem;
  border-radius: 0 8px 8px 0;
  margin-top: 1.5rem;
  font-size: 0.92rem;
  color: var(--text);
  font-style: italic;
  font-weight: 300;
  line-height: 1.7;
}

/* CONTACT */
.contact-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.contact-link {
  background: var(--bg3);
  border: 1px solid var(--border-light);
  color: var(--muted);
  padding: 0.7rem 1.4rem;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.88rem;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.contact-link:hover {
  color: var(--text);
  border-color: var(--accent);
}

/* FORM */
.form-wrapper {
  background: var(--bg2);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 3rem;
  margin-top: 3.5rem;
  position: relative;
  overflow: hidden;
}
.form-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 100% 0%,
    rgba(108, 99, 255, 0.07) 0%,
    transparent 60%
  );
  pointer-events: none;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group.full {
  grid-column: 1 / -1;
}
.form-group label {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.form-group input,
.form-group textarea,
.form-group select {
  background: var(--bg3);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 0.7rem 1rem;
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  transition: border-color 0.2s;
  outline: none;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
}
.form-group select option {
  background: var(--bg3);
  color: var(--text);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.form-note {
  font-size: 0.78rem;
  color: var(--muted);
}

/* FAQ */
.faq-list {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.faq-item {
  background: var(--bg2);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  font-size: 0.97rem;
  font-weight: 500;
  padding: 1.4rem 1.8rem;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s;
}
.faq-question:hover {
  background: var(--bg3);
}
.faq-icon {
  color: var(--accent2);
  font-size: 1.2rem;
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
}
.faq-answer {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.75;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.3s;
  padding: 0 1.8rem;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 1.8rem 1.4rem;
}

/* SERVICE PAGE HERO */
.service-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding: 8rem 2.5rem 5rem;
  position: relative;
  overflow: hidden;
}
.breadcrumb {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.breadcrumb a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb a:hover {
  color: var(--text);
}
.breadcrumb span {
  color: var(--muted);
}

/* BENEFITS GRID */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
  margin-top: 3rem;
}
.benefit-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.6rem;
}
.benefit-icon {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
}
.benefit-card h3 {
  font-family: "Syne", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--text);
}
.benefit-card p {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.6;
}

/* CTA BANNER */
.cta-banner {
  background: var(--bg2);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: 3rem;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 0%,
    rgba(108, 99, 255, 0.1) 0%,
    transparent 60%
  );
  pointer-events: none;
}
.cta-banner h2 {
  font-family: "Syne", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 0.8rem;
  position: relative;
}
.cta-banner p {
  color: var(--muted);
  margin-bottom: 2rem;
  font-weight: 300;
  position: relative;
}
.cta-banner-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* FOOTER */
footer {
  border-top: 1px solid var(--border);
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 1rem;
}
footer p {
  font-size: 0.8rem;
  color: var(--muted);
}
.social-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--bg3);
  border: 1px solid var(--border);
  color: var(--muted);
  padding: 0.45rem 1rem;
  border-radius: 8px;
  font-size: 0.78rem;
  font-family: "DM Sans", sans-serif;
  text-decoration: none;
  transition: all 0.2s;
}
.social-btn:hover {
  color: var(--text);
  border-color: var(--accent);
}
.footer-links {
  display: flex;
  gap: 12px;
  align-items: center;
}

/* WHATSAPP */
.btn-whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 56px;
  height: 56px;
  z-index: 999;
}
.btn-whatsapp img {
  width: 56px;
  height: 56px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-wrapper {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}
.nav-mobile {
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  z-index: 99;
}
@media (max-width: 768px) {
  nav {
    padding: 1rem 1.2rem;
  }
  .nav-links {
    display: none;
  }
  .nav-hamburger {
    display: flex;
  }
  .nav-cta {
    display: none;
  }
  .hero {
    padding: 5rem 1.2rem 3rem;
    min-height: auto;
  }
  .hero-stats {
    gap: 2rem;
  }
  section {
    padding: 4rem 1.2rem;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .cta-banner {
    padding: 2.5rem 1.5rem;
  }
  .form-wrapper {
    padding: 2rem 1.2rem;
  }
  .service-hero {
    padding: 7rem 1.2rem 4rem;
  }
}
@media (max-width: 560px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    flex-wrap: wrap;
    gap: 1.5rem;
  }
}
