/* ═══════════════════════════════════════════════════════════════
   REEDY 360 AUDIO — "Sound Wave" Dark Immersive Audio Experience
   PALETTE: Charcoal #0F0F12, Cyan #00D4FF, Coral #FF6B4A, Soft White #E8E8EC
   FONTS: Space Grotesk (display), DM Sans (body), JetBrains Mono (technical)
═══════════════════════════════════════════════════════════════ */

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

:root {
  --bg: #0F0F12;
  --bg-alt: #141418;
  --surface: #1A1A20;
  --card: #1E1E26;
  --border: #2A2A34;
  --border-light: rgba(255,255,255,0.08);
  --foreground: #E8E8EC;
  --muted: #8A8A96;
  --primary: #00D4FF;
  --primary-dark: #00A8CC;
  --primary-fg: #0F0F12;
  --primary-glow: rgba(0,212,255,0.15);
  --primary-glow-strong: rgba(0,212,255,0.25);
  --coral: #FF6B4A;
  --coral-fg: #FFFFFF;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --radius: 0.75rem;
  --container-max: 1280px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.15;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul { list-style: none; }

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

/* ─── Container ─── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 640px) {
  .container { padding-left: 1.5rem; padding-right: 1.5rem; }
}
@media (min-width: 1024px) {
  .container { padding-left: 2rem; padding-right: 2rem; }
}

/* ─── Navbar ─── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(15,15,18,0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
@media (min-width: 1024px) {
  .navbar .container { height: 80px; }
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.nav-logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 0.5rem;
  background: rgba(0,212,255,0.1);
  border: 1px solid rgba(0,212,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-logo-icon svg { width: 20px; height: 20px; color: var(--primary); }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1; }
.nav-logo-name { font-family: var(--font-display); font-weight: 700; font-size: 1rem; letter-spacing: -0.01em; }
.nav-logo-sub { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--primary); }

.nav-links {
  display: none;
  align-items: center;
  gap: 0.25rem;
}
@media (min-width: 1024px) {
  .nav-links { display: flex; }
}
.nav-links a {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 0.375rem;
  color: var(--muted);
  transition: all 0.2s ease;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--primary);
  background: rgba(0,212,255,0.1);
}

.nav-cta {
  display: none;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 0.5rem;
  background: var(--primary);
  color: var(--primary-fg);
  transition: all 0.2s ease;
  box-shadow: 0 0 20px var(--primary-glow);
}
@media (min-width: 1024px) {
  .nav-cta { display: inline-flex; }
}
.nav-cta:hover { background: var(--primary-dark); }

.nav-mobile-toggle {
  display: block;
  padding: 0.5rem;
  background: none;
  border: none;
  color: var(--foreground);
  cursor: pointer;
}
@media (min-width: 1024px) {
  .nav-mobile-toggle { display: none; }
}
.nav-mobile-toggle svg { width: 24px; height: 24px; }

.nav-mobile-menu {
  display: none;
  border-top: 1px solid var(--border-light);
  background: rgba(15,15,18,0.95);
  backdrop-filter: blur(20px);
  padding: 1rem;
}
.nav-mobile-menu.open { display: block; }
@media (min-width: 1024px) {
  .nav-mobile-menu { display: none !important; }
}
.nav-mobile-menu a {
  display: block;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 0.5rem;
  color: var(--muted);
  transition: all 0.2s ease;
}
.nav-mobile-menu a:hover, .nav-mobile-menu a.active {
  color: var(--primary);
  background: rgba(0,212,255,0.1);
}
.nav-mobile-menu .mobile-cta {
  display: block;
  margin-top: 0.5rem;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 0.5rem;
  background: var(--primary);
  color: var(--primary-fg);
  text-align: center;
}

/* ─── Footer ─── */
.footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border-light);
  padding: 4rem 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2rem; }
}
.footer-brand p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
  margin-top: 1.25rem;
}
.footer-col h4 {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 0.03em;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col a {
  font-size: 0.875rem;
  color: var(--muted);
  transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--primary); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--muted);
}
.footer-contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}
.footer-bottom p { font-size: 0.75rem; color: var(--muted); }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: 0.75rem; color: var(--muted); transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--primary); }

/* ─── Buttons ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 0.5rem;
  background: var(--primary);
  color: var(--primary-fg);
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 0 30px var(--primary-glow);
}
.btn-primary:hover { background: var(--primary-dark); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 0.5rem;
  background: transparent;
  color: var(--foreground);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn-outline:hover { background: rgba(255,255,255,0.05); }

.btn-sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.8125rem;
}

/* ─── Section Utilities ─── */
.section { padding: 6rem 0; }
.section-alt { background: var(--bg-alt); }
@media (min-width: 1024px) {
  .section { padding: 8rem 0; }
}

.section-number {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 4rem;
}
.section-header h2 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-top: 0.75rem;
  margin-bottom: 1.25rem;
}
@media (min-width: 1024px) {
  .section-header h2 { font-size: 2.25rem; }
}
.section-header p {
  color: var(--muted);
  line-height: 1.7;
}

.text-primary { color: var(--primary); }
.text-muted { color: var(--muted); }

/* ─── Cards ─── */
.card {
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  background: rgba(30,30,38,0.5);
  transition: all 0.3s ease;
}
@media (min-width: 1024px) {
  .card { padding: 2rem; }
}
.card:hover {
  border-color: rgba(0,212,255,0.3);
}
.card-glow:hover {
  box-shadow: 0 0 30px var(--primary-glow), 0 0 80px rgba(0,212,255,0.1);
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 0.5rem;
  background: rgba(0,212,255,0.1);
  border: 1px solid rgba(0,212,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 1.25rem;
}
.card-icon svg { width: 20px; height: 20px; }

.card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.card p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ─── Grid Layouts ─── */
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.grid-6 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }

@media (min-width: 768px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-6 { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .grid-6 { grid-template-columns: repeat(6, 1fr); }
}

/* ─── Two Column Layout ─── */
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .two-col { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

/* ─── Glow Effects ─── */
.glow-cyan {
  box-shadow: 0 0 20px var(--primary-glow), 0 0 60px rgba(0,212,255,0.05);
}

/* ─── Sound Wave Animation ─── */
@keyframes wave-pulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
  50% { opacity: 1; transform: scaleY(1); }
}
.sound-wave {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 32px;
}
.sound-wave .bar {
  width: 3px;
  border-radius: 999px;
  background: var(--primary);
  animation: wave-pulse 1.2s ease-in-out infinite;
}

/* ─── Hero Section ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-bg .overlay-lr {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--bg), rgba(15,15,18,0.9), rgba(15,15,18,0.6));
}
.hero-bg .overlay-tb {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg), transparent, rgba(15,15,18,0.4));
}
.hero-content {
  position: relative;
  z-index: 10;
  max-width: 640px;
  padding: 5rem 0;
}
@media (min-width: 1024px) {
  .hero-content { padding: 8rem 0; }
}
.hero-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  line-height: 1.08;
}
@media (min-width: 640px) {
  .hero-content h1 { font-size: 3rem; }
}
@media (min-width: 1024px) {
  .hero-content h1 { font-size: 3.75rem; }
}
@media (min-width: 1280px) {
  .hero-content h1 { font-size: 4.25rem; }
}
.hero-content .subtitle {
  font-size: 1.125rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 560px;
}
@media (min-width: 1024px) {
  .hero-content .subtitle { font-size: 1.25rem; }
}
.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 640px) {
  .hero-buttons { flex-direction: row; }
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
}
.hero-stat-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary);
}
.hero-stat-label {
  font-size: 0.75rem;
  color: var(--muted);
}
.hero-stat-label svg {
  width: 12px;
  height: 12px;
  display: inline;
  vertical-align: middle;
  margin-right: 2px;
}
.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border-light);
}

/* ─── Page Header ─── */
.page-header {
  padding-top: 7rem;
  padding-bottom: 4rem;
}
@media (min-width: 1024px) {
  .page-header { padding-top: 9rem; padding-bottom: 5rem; }
}
.page-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-top: 0.75rem;
  margin-bottom: 1.5rem;
  max-width: 48rem;
  line-height: 1.1;
}
@media (min-width: 1024px) {
  .page-header h1 { font-size: 3rem; }
}
@media (min-width: 1280px) {
  .page-header h1 { font-size: 3.75rem; }
}
.page-header p {
  font-size: 1.125rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 640px;
}

/* ─── Check List ─── */
.check-list { display: flex; flex-direction: column; gap: 0.625rem; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--muted);
}
.check-list li svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ─── Pricing Cards ─── */
.pricing-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  background: rgba(30,30,38,0.5);
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .pricing-card { padding: 2rem; }
}
.pricing-card.featured {
  border-color: rgba(0,212,255,0.5);
  background: var(--card);
  box-shadow: 0 0 20px var(--primary-glow), 0 0 60px rgba(0,212,255,0.05);
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.25rem 1rem;
  border-radius: 999px;
  background: var(--primary);
  color: var(--primary-fg);
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
}
.pricing-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.pricing-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 0.25rem;
}
.pricing-period {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 1rem;
}
.pricing-desc {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* ─── Process Steps ─── */
.process-step {
  position: relative;
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  background: rgba(30,30,38,0.3);
}
@media (min-width: 1024px) {
  .process-step { padding: 2rem; }
}
.process-step .step-number {
  font-family: var(--font-mono);
  font-size: 1.875rem;
  font-weight: 700;
  color: rgba(0,212,255,0.2);
  margin-bottom: 1rem;
}

/* ─── Testimonials ─── */
.testimonial-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  background: rgba(30,30,38,0.5);
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .testimonial-card { padding: 2rem; }
}
.testimonial-quote {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1.5rem;
}
.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
}
.testimonial-stars svg {
  width: 14px;
  height: 14px;
  color: var(--primary);
  fill: var(--primary);
}
.testimonial-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.875rem;
}
.testimonial-role {
  font-size: 0.75rem;
  color: var(--muted);
}

/* ─── Case Study ─── */
.case-study {
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  background: rgba(30,30,38,0.5);
  margin-bottom: 2rem;
}
@media (min-width: 1024px) {
  .case-study { padding: 2.5rem; }
}
.case-study-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.case-study-category {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--primary);
}
.case-study-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .case-study-grid { grid-template-columns: 1fr 1fr 1fr; }
}
.case-study h4 {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.case-study p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
}
.result-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0;
}
.result-label { font-size: 0.875rem; color: var(--muted); }
.result-value { font-family: var(--font-display); font-weight: 700; color: var(--primary); }

/* ─── Contact Form ─── */
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.form-group label .required { color: var(--coral); }
.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  background: rgba(34,34,42,0.5);
  border: 1px solid var(--border-light);
  color: var(--foreground);
  font-size: 0.875rem;
  transition: border-color 0.2s ease;
  outline: none;
}
.form-input::placeholder { color: var(--muted); }
.form-input:focus {
  border-color: rgba(0,212,255,0.5);
  box-shadow: 0 0 0 3px rgba(0,212,255,0.1);
}
textarea.form-input { resize: none; }
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}

/* ─── Contact Info Sidebar ─── */
.contact-info-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  background: rgba(30,30,38,0.5);
  margin-bottom: 1.5rem;
}
@media (min-width: 1024px) {
  .contact-info-card { padding: 2rem; }
}
.contact-info-card.highlight {
  border-color: rgba(0,212,255,0.3);
  background: rgba(0,212,255,0.05);
  box-shadow: 0 0 20px var(--primary-glow), 0 0 60px rgba(0,212,255,0.05);
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.contact-item:last-child { margin-bottom: 0; }
.contact-item-icon {
  width: 40px;
  height: 40px;
  border-radius: 0.5rem;
  background: rgba(0,212,255,0.1);
  border: 1px solid rgba(0,212,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}
.contact-item-icon svg { width: 20px; height: 20px; }
.contact-item-label { font-size: 0.875rem; font-weight: 500; margin-bottom: 0.25rem; }
.contact-item-value { font-size: 0.875rem; color: var(--muted); line-height: 1.6; }
.contact-item-value a { color: var(--muted); transition: color 0.2s; }
.contact-item-value a:hover { color: var(--primary); }

/* ─── Contact Grid ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .contact-grid { grid-template-columns: 3fr 2fr; gap: 4rem; }
}

/* ─── Legal Pages ─── */
.legal-content {
  max-width: 48rem;
  margin: 0 auto;
}
.legal-content h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--foreground);
}
.legal-content p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.legal-content ul {
  list-style: disc;
  margin-left: 1.25rem;
  margin-bottom: 1rem;
}
.legal-content ul li {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 0.5rem;
}
.legal-content .contact-box {
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  background: rgba(30,30,38,0.5);
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.8;
}
.legal-content .contact-box strong { color: var(--foreground); }
.legal-content .contact-box a { color: var(--primary); }
.legal-content .contact-box a:hover { text-decoration: underline; }
.legal-section { margin-bottom: 2.5rem; }

/* ─── Rounded Image ─── */
.rounded-img {
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  object-fit: cover;
  width: 100%;
}

/* ─── Feature Item (Why Choose Us) ─── */
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.feature-item-icon {
  width: 36px;
  height: 36px;
  border-radius: 0.5rem;
  background: rgba(0,212,255,0.1);
  border: 1px solid rgba(0,212,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}
.feature-item-icon svg { width: 16px; height: 16px; }
.feature-item h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}
.feature-item p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ─── Floating Card ─── */
.floating-card {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  display: none;
}
@media (min-width: 1024px) {
  .floating-card { display: flex; }
}
.floating-card-inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.floating-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0,212,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.floating-card-icon svg { width: 20px; height: 20px; color: var(--primary); }

/* ─── Platform Card ─── */
.platform-card {
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  background: rgba(30,30,38,0.3);
  text-align: center;
  transition: all 0.3s ease;
}
.platform-card:hover { border-color: rgba(0,212,255,0.3); }
.platform-card svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
  margin: 0 auto 0.75rem;
}
.platform-card p { font-size: 0.875rem; font-weight: 500; }

/* ─── Industry Tag ─── */
.industry-tag {
  padding: 1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.05);
  background: rgba(30,30,38,0.2);
  text-align: center;
  font-size: 0.875rem;
  color: var(--muted);
  font-weight: 500;
}

/* ─── Stat Block ─── */
.stat-block { text-align: center; }
.stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 0.5rem;
  background: rgba(0,212,255,0.1);
  border: 1px solid rgba(0,212,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin: 0 auto 1rem;
}
.stat-icon svg { width: 20px; height: 20px; }
.stat-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.875rem;
  color: var(--primary);
  margin-bottom: 0.25rem;
}
@media (min-width: 1024px) {
  .stat-value { font-size: 2.25rem; }
}
.stat-label { font-size: 0.875rem; color: var(--muted); }

/* ─── CTA Section ─── */
.cta-section {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.cta-section h2 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}
@media (min-width: 1024px) {
  .cta-section h2 { font-size: 2.25rem; }
}
.cta-section p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}
@media (min-width: 640px) {
  .cta-buttons { flex-direction: row; }
}

/* ─── Toast Notification ─── */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  background: var(--card);
  border: 1px solid rgba(0,212,255,0.3);
  color: var(--foreground);
  font-size: 0.875rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
  z-index: 100;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s ease;
}
.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* ─── Scroll to Top ─── */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--primary-fg);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 40;
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top svg { width: 20px; height: 20px; }
