/* ========================================
   Martello Systems - Main Stylesheet
   ======================================== */

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

/* CSS Variables */
:root {
  --bg: hsl(240, 10%, 10%);
  --bg-card: hsl(240, 10%, 13%);
  --bg-muted: hsl(240, 3.7%, 15.9%);
  --fg: hsl(0, 0%, 98%);
  --fg-muted: hsl(240, 5%, 64.9%);
  --primary: hsl(270, 70%, 50%);
  --primary-light: hsl(270, 70%, 65%);
  --secondary: hsl(220, 80%, 55%);
  --accent: hsl(180, 70%, 50%);
  --border: hsl(240, 3.7%, 15.9%);
  --radius: 0.5rem;
  --purple-500: #a855f7;
  --purple-600: #9333ea;
  --blue-500: #3b82f6;
  --cyan-400: #22d3ee;
  --cyan-500: #06b6d4;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  overflow-x: hidden;
}

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

img, svg {
  display: block;
}

ul {
  list-style: none;
}

/* ========================================
   NAVBAR
   ======================================== */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 2rem;
  background: rgba(17, 17, 27, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(168, 85, 247, 0.1);
  transition: all 0.3s ease;
}

.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.2rem;
  font-weight: 700;
  background: linear-gradient(to right, var(--purple-500), var(--cyan-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.navbar-logo img {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  object-fit: contain;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.navbar-links a {
  color: var(--fg-muted);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
}

.navbar-links a:hover,
.navbar-links a.active {
  color: var(--fg);
}

.btn-nav {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.9rem;
  font-weight: 600;
  background: linear-gradient(to right, var(--purple-600), var(--blue-500));
  color: white;
  transition: opacity 0.2s, transform 0.2s;
  cursor: pointer;
  border: none;
}

.btn-nav:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.25rem;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--fg);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem 2rem;
  background: rgba(17, 17, 27, 0.97);
  border-top: 1px solid var(--border);
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  color: var(--fg-muted);
  font-size: 1rem;
  font-weight: 500;
  padding: 0.5rem 0;
  transition: color 0.2s;
}

.mobile-menu a:hover {
  color: var(--fg);
}

/* ========================================
   HERO
   ======================================== */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 2rem 4rem;
  text-align: center;
}

#particle-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 40%, rgba(120, 0, 255, 0.15) 0%, transparent 65%);
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  pointer-events: none;
  animation: float 8s ease-in-out infinite;
}

.hero-orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.4), transparent);
  top: 10%;
  left: -10%;
  animation-delay: 0s;
}

.hero-orb-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.3), transparent);
  bottom: 15%;
  right: -5%;
  animation-delay: -4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.hero-logo {
  width: 280px;
  max-width: 80%;
  margin: 0 auto 2rem;
  object-fit: contain;
  border-radius: 0.75rem;
  margin-bottom: 100vh;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 1rem;
  border-radius: 9999px;
  border: 1px solid rgba(168, 85, 247, 0.3);
  background: rgba(168, 85, 247, 0.1);
  color: var(--purple-500);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.hero-badge svg {
  width: 14px;
  height: 14px;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #fff 0%, var(--purple-500) 40%, var(--cyan-400) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: gradient-shift 4s ease infinite;
}

@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 600;
  color: var(--cyan-400);
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.hero-body {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========================================
   BUTTONS
   ======================================== */

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  border-radius: 9999px;
  font-size: 1rem;
  font-weight: 600;
  background: linear-gradient(to right, var(--purple-600), var(--blue-500));
  color: white;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(168, 85, 247, 0.35);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  border-radius: 9999px;
  font-size: 1rem;
  font-weight: 600;
  background: transparent;
  color: var(--fg);
  border: 1px solid rgba(168, 85, 247, 0.4);
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
  cursor: pointer;
  text-decoration: none;
}

.btn-outline:hover {
  border-color: rgba(168, 85, 247, 0.8);
  background: rgba(168, 85, 247, 0.08);
  transform: translateY(-2px);
}

/* ========================================
   SECTIONS
   ======================================== */

section {
  padding: 5rem 2rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--purple-500);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-title span {
  background: linear-gradient(to right, var(--purple-500), var(--cyan-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  color: var(--fg-muted);
  font-size: 1.05rem;
  max-width: 600px;
  line-height: 1.7;
}

/* ========================================
   SERVICES SECTION
   ======================================== */

.services {
  background: linear-gradient(to bottom, var(--bg), hsl(240, 10%, 8%));
}

.services-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.services-header .section-subtitle {
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* Make the 4th and 5th cards centered on last row */
.services-grid .service-card:nth-child(4) {
  grid-column: 1 / 2;
}

.services-grid .service-card:nth-child(5) {
  grid-column: 2 / 3;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  cursor: default;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(168, 85, 247, 0.05), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(168, 85, 247, 0.15);
  border-color: rgba(168, 85, 247, 0.3);
}

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

.service-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(6, 182, 212, 0.1));
  border: 1px solid rgba(168, 85, 247, 0.2);
}

.service-icon svg {
  width: 22px;
  height: 22px;
  color: var(--purple-500);
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--fg);
}

.service-card p {
  color: var(--fg-muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* ========================================
   CTA SECTION
   ======================================== */

.cta-section {
  text-align: center;
  background: linear-gradient(135deg, rgba(88, 28, 135, 0.2), rgba(17, 17, 27, 0.5), rgba(8, 145, 178, 0.1));
  border-top: 1px solid rgba(168, 85, 247, 0.1);
  border-bottom: 1px solid rgba(168, 85, 247, 0.1);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(120, 0, 255, 0.1) 0%, transparent 70%);
}

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

.cta-section h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(to right, var(--fg), var(--purple-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-section p {
  color: var(--fg-muted);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

/* ========================================
   PAGE HERO (inner pages)
   ======================================== */

.page-hero {
  padding: 9rem 2rem 5rem;
  text-align: center;
  background: radial-gradient(circle at 50% 0%, rgba(120, 0, 255, 0.12) 0%, transparent 60%);
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(to right, var(--fg), var(--purple-500), var(--cyan-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero p {
  color: var(--fg-muted);
  font-size: 1.05rem;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ========================================
   CONTACT PAGE
   ======================================== */

.contact-section {
  padding: 4rem 2rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: start;
}

.contact-info h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.contact-info > p {
  color: var(--fg-muted);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  margin-bottom: 1rem;
  transition: border-color 0.2s;
}

.contact-card:hover {
  border-color: rgba(168, 85, 247, 0.3);
}

.contact-card-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: rgba(168, 85, 247, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card-icon svg {
  width: 18px;
  height: 18px;
  color: var(--purple-500);
}

.contact-card-text h4 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.contact-card-text p,
.contact-card-text a {
  font-size: 0.95rem;
  color: var(--fg);
  transition: color 0.2s;
}

.contact-card-text a:hover {
  color: var(--cyan-400);
}

/* GHL Form Panel */
.form-panel {
  background: var(--bg-card);
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: 1rem;
  padding: 2rem;
}

.form-panel-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.8rem;
  border-radius: 9999px;
  border: 1px solid rgba(6, 182, 212, 0.3);
  background: rgba(6, 182, 212, 0.1);
  color: var(--cyan-400);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.form-panel h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.5rem;
}

.form-panel > p {
  color: var(--fg-muted);
  font-size: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.form-panel iframe {
  width: 100%;
  border: none;
  overflow: hidden;
  border-radius: 0.5rem;
}

/* ========================================
   LEGAL PAGES (Privacy / ToS)
   ======================================== */

.legal-content {
  padding: 3rem 2rem 5rem;
}

.legal-body {
  max-width: 800px;
  margin: 0 auto;
}

.legal-meta {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: 9999px;
  font-size: 0.8rem;
  color: var(--purple-500);
  font-weight: 600;
  margin-bottom: 2.5rem;
}

.legal-body h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--fg);
  margin: 2.5rem 0 0.75rem;
  padding-left: 1rem;
  border-left: 3px solid var(--purple-500);
}

.legal-body p {
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 0.97rem;
}

.legal-body a {
  color: var(--cyan-400);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-body a:hover {
  color: var(--purple-500);
}

/* ========================================
   PROBLEM SECTION
   ======================================== */

.problem-section {
  background: linear-gradient(to bottom, hsl(240,10%,8%), var(--bg));
  padding: 5rem 2rem;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin: 2.5rem 0 2rem;
}

.problem-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  transition: border-color 0.2s;
}

.problem-card:hover {
  border-color: rgba(168,85,247,0.25);
}

.problem-icon {
  width: 2.25rem;
  height: 2.25rem;
  flex-shrink: 0;
  border-radius: 0.5rem;
  background: rgba(168,85,247,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.problem-icon svg {
  width: 16px;
  height: 16px;
  color: var(--purple-500);
}

.problem-card p {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.55;
  padding-top: 0.2rem;
}

.problem-closing {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--fg-muted);
  text-align: center;
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  margin-top: 0.5rem;
}

/* ========================================
   SOLUTION SECTION
   ======================================== */

.solution-section {
  padding: 5rem 2rem;
  background: var(--bg);
}

.solution-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.solution-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.solution-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  font-size: 0.97rem;
  font-weight: 500;
  color: var(--fg);
  transition: border-color 0.2s, transform 0.2s;
}

.solution-item:hover {
  border-color: rgba(168,85,247,0.3);
  transform: translateX(4px);
}

.check-icon {
  width: 1.75rem;
  height: 1.75rem;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(168,85,247,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.check-icon svg {
  width: 13px;
  height: 13px;
  color: var(--purple-500);
}

/* ========================================
   INCLUDED SECTION
   ======================================== */

.included-section {
  padding: 5rem 2rem;
  background: linear-gradient(to bottom, var(--bg), hsl(240,10%,8%));
}

.included-header {
  text-align: center;
  margin-bottom: 3rem;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.included-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--fg-muted);
  transition: border-color 0.2s, transform 0.2s;
}

.included-card:hover {
  border-color: rgba(168,85,247,0.3);
  transform: translateY(-3px);
}

/* ========================================
   PRICING SECTION
   ======================================== */

.pricing-section {
  padding: 5rem 2rem;
  background: var(--bg);
}

.pricing-header {
  text-align: center;
  margin-bottom: 3rem;
}

.pricing-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  background: rgba(168,85,247,0.08);
  border: 1px solid rgba(168,85,247,0.2);
  border-radius: 0.75rem;
  padding: 0.9rem 1.25rem;
  margin: 1.25rem auto 0;
  max-width: 560px;
  font-size: 0.9rem;
  color: var(--fg-muted);
  text-align: left;
}

.pricing-disclaimer svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--purple-500);
}

.pricing-disclaimer strong {
  color: var(--fg);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.pricing-grid--full {
  align-items: stretch;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(168,85,247,0.12);
}

.pricing-card--featured {
  border-color: rgba(168,85,247,0.5);
  background: linear-gradient(135deg, rgba(88,28,135,0.15), var(--bg-card));
  box-shadow: 0 0 0 1px rgba(168,85,247,0.2), 0 8px 32px rgba(168,85,247,0.15);
}

.pricing-card--featured:hover {
  box-shadow: 0 0 0 1px rgba(168,85,247,0.4), 0 16px 48px rgba(168,85,247,0.25);
}

.pricing-badge-popular {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(to right, var(--purple-600), var(--blue-500));
  color: white;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  white-space: nowrap;
}

.pricing-card-header {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.pricing-card-header h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.75rem;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 0.35rem;
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(to right, var(--purple-500), var(--cyan-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.price-period {
  font-size: 0.95rem;
  color: var(--fg-muted);
  font-weight: 500;
}

.pricing-setup {
  font-size: 0.85rem;
  color: var(--fg-muted);
}

.pricing-includes-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--fg-muted);
  margin-bottom: 0.75rem;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 1.5rem;
  flex: 1;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: var(--fg-muted);
}

.pricing-features li svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  color: var(--purple-500);
}

.pricing-best-for {
  font-size: 0.88rem;
  color: var(--fg-muted);
  background: rgba(168,85,247,0.07);
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.pricing-best-for strong {
  color: var(--fg);
}

.pricing-honesty {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: rgba(34,211,238,0.06);
  border: 1px solid rgba(34,211,238,0.2);
  border-radius: 0.75rem;
  padding: 1rem 1.25rem;
  margin: 2.5rem auto 0;
  font-size: 0.92rem;
  color: var(--fg-muted);
  font-style: italic;
}

.pricing-honesty svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--cyan-400);
}

/* ========================================
   FAQ SECTION
   ======================================== */

.faq-section {
  padding: 5rem 2rem;
  background: var(--bg);
}

.faq-header {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1.5rem 1.75rem;
  transition: border-color 0.2s;
}

.faq-item:hover {
  border-color: rgba(168,85,247,0.3);
}

.faq-question {
  font-size: 1rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.5rem;
}

.faq-answer {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ========================================
   ADDITIONAL SERVICES SECTION
   ======================================== */

.add-services-section {
  padding: 4rem 2rem;
  background: hsl(240,10%,8%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.add-services-inner {
  max-width: 640px;
}

.add-services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.add-service-tag {
  display: inline-flex;
  padding: 0.45rem 1rem;
  border-radius: 9999px;
  background: rgba(168,85,247,0.1);
  border: 1px solid rgba(168,85,247,0.25);
  color: var(--purple-500);
  font-size: 0.88rem;
  font-weight: 600;
}

/* ========================================
   FOOTER
   ======================================== */

footer {
  background: hsl(240, 10%, 7%);
  border-top: 1px solid var(--border);
  padding: 3rem 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-brand .navbar-logo {
  margin-bottom: 0.75rem;
}

.footer-tagline {
  color: var(--fg-muted);
  font-size: 0.85rem;
  max-width: 280px;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.footer-location {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--fg-muted);
  font-size: 0.85rem;
}

.footer-location svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.footer-links h4 {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

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

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

.footer-socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.social-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.5rem;
  background: var(--bg-muted);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}

.social-icon:hover {
  background: rgba(168, 85, 247, 0.15);
  border-color: rgba(168, 85, 247, 0.3);
}

.social-icon svg {
  width: 16px;
  height: 16px;
  color: var(--fg-muted);
}

.footer-bottom {
  max-width: 1200px;
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: var(--fg-muted);
  font-size: 0.85rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

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

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

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-grid .service-card:nth-child(4),
  .services-grid .service-card:nth-child(5) {
    grid-column: auto;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .solution-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .included-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .navbar-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .problem-grid {
    grid-template-columns: 1fr;
  }
  .included-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero {
    padding: 7rem 1.5rem 4rem;
  }
  .footer-inner {
    flex-direction: column;
    gap: 2rem;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 560px) {
  .included-grid {
    grid-template-columns: 1fr 1fr;
  }
  .pricing-grid {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  .btn-primary,
  .btn-outline {
    width: 100%;
    justify-content: center;
  }
  .form-panel {
    padding: 1.25rem;
  }
}
