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

:root {
  --bg-main: #070809;
  --bg-card: #0e1013;
  --bg-card-hover: #13161a;
  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(255, 255, 255, 0.12);
  --text-primary: #f3f4f6;
  --text-secondary: #9ca3af;
  --text-muted: #6b7280;
  --color-accent: #38bdf8; /* Vercel / Linear cool cyan/blue */
  --color-accent-glow: rgba(56, 189, 248, 0.15);
  --color-green: #10b981;
  --color-yellow: #f59e0b;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
  background-color: var(--bg-main);
  color: var(--text-primary);
  font-family: var(--font-sans);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

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

/* Navbar */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(7, 8, 9, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.logo-icon {
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, var(--color-accent), #a855f7);
  border-radius: 6px;
  display: inline-block;
}

nav {
  display: flex;
  gap: 2rem;
}

nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
}

nav a:hover {
  color: #fff;
}

.btn-cta {
  background: #fff;
  color: #000;
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
  border: 1px solid transparent;
}

.btn-cta:hover {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

/* Sections General */
section {
  padding: 8rem 2rem 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  margin-bottom: 1rem;
  border: 1px solid rgba(56, 189, 248, 0.2);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background: rgba(56, 189, 248, 0.05);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
  background: linear-gradient(to right, #fff, #9ca3af);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-desc {
  color: var(--text-secondary);
  max-width: 600px;
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

/* Hero Section */
.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 8rem;
}

.hero h1 {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.05em;
  margin-bottom: 1.5rem;
  background: linear-gradient(180deg, #ffffff 0%, #a3a3a3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  max-width: 900px;
}

.hero p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 650px;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-accent), #2563eb);
  color: #fff;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 0 30px rgba(56, 189, 248, 0.2);
  border: 1px solid rgba(255,255,255,0.1);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(56, 189, 248, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid var(--border-subtle);
  transition: var(--transition);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--border-hover);
}

/* Node Latency Section */
.node-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.node-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 1.5rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.node-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
}

.node-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.node-name {
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.node-flag {
  font-size: 1.2rem;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  padding: 0.15rem 0.5rem;
  border-radius: 9999px;
  background: rgba(16, 185, 129, 0.1);
  color: var(--color-green);
}

.status-badge.yellow {
  background: rgba(245, 158, 11, 0.1);
  color: var(--color-yellow);
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.node-speed {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 0.5rem;
}

.latency-value {
  font-family: monospace;
  font-weight: 700;
  color: var(--color-green);
}

.latency-value.yellow {
  color: var(--color-yellow);
}

.node-actions {
  margin-top: 1.5rem;
  text-align: right;
}

.btn-test {
  background: transparent;
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 500;
  transition: var(--transition);
}

.btn-test:hover {
  border-color: var(--border-hover);
  color: #fff;
  background: rgba(255,255,255,0.02);
}

/* Bento Grid Core Advantages */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(180px, auto);
  gap: 1.5rem;
}

.bento-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.bento-item:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.bento-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(800px circle at var(--mouse-x, 0) var(--mouse-y, 0), rgba(255,255,255,0.03), transparent 40%);
  z-index: 1;
  pointer-events: none;
}

.bento-icon {
  width: 48px;
  height: 48px;
  background: rgba(56, 189, 248, 0.05);
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--color-accent);
}

.bento-icon svg {
  width: 20px;
  height: 20px;
}

.bento-body-layout {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
}

.bento-body-layout.vertical {
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}

.bento-text {
  flex: 1.2;
}

.bento-item h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #fff;
}

.bento-item p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Bento graphics */
.bento-graphic {
  flex: 0.8;
  width: 100%;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.03);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* 1. Line Graph styling */
.line-graph {
  min-height: 100px;
}

.graph-legend {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.legend-color {
  width: 8px;
  height: 2px;
  display: inline-block;
}

.legend-color.iplc {
  background: var(--color-accent);
}

.legend-color.public {
  background: rgba(239, 68, 68, 0.6);
}

.graph-canvas-sim svg {
  overflow: visible;
}

@keyframes pulseGlow {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 2px var(--color-accent)); }
  50% { transform: scale(1.3); filter: drop-shadow(0 0 8px var(--color-accent)); }
}

.glow-pulse {
  transform-origin: center;
  animation: pulseGlow 2s infinite ease-in-out;
}

/* 2. Platform Pills styling */
.platform-pills {
  background: transparent;
  border: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.plat-pill {
  font-size: 0.8rem;
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-secondary);
  transition: var(--transition);
}

.plat-pill:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-color: rgba(255,255,255,0.15);
}

.plat-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #aaa;
}

.plat-dot.ios { background: #38bdf8; }
.plat-dot.mac { background: #a855f7; }
.plat-dot.win { background: #10b981; }
.plat-dot.android { background: #f59e0b; }
.plat-dot.linux { background: #6b7280; }

/* 3. Privacy Lock styling */
.privacy-lock {
  min-height: 80px;
  align-items: center;
}

.encryption-status {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1rem;
  background: rgba(16, 185, 129, 0.05);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 8px;
}

.lock-icon {
  font-size: 1.1rem;
}

.enc-text {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-green);
  font-family: monospace;
}

/* 4. Streaming Logos styling */
.streaming-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  background: transparent;
  border: none;
  padding: 0;
}

.logo-badge {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  background: #111317;
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
}

.logo-badge.netflix { border-color: rgba(229, 9, 20, 0.3); color: #e50914; }
.logo-badge.chatgpt { border-color: rgba(16, 163, 127, 0.3); color: #10a37f; }
.logo-badge.disney { border-color: rgba(58, 189, 248, 0.3); color: #3abdf8; }
.logo-badge.claude { border-color: rgba(217, 119, 6, 0.3); color: #d97706; }
.logo-badge.youtube { border-color: rgba(255, 0, 0, 0.3); color: #ff0000; }

/* Bento sizes */
.bento-item.col-2 {
  grid-column: span 2;
}
.bento-item.row-2 {
  grid-row: span 2;
}


/* Pricing Slider Section - Redesigned */
.pricing-container {
  background: linear-gradient(180deg, rgba(14, 16, 19, 0.6) 0%, rgba(10, 11, 13, 0.8) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: 24px;
  padding: 3rem;
  max-width: 960px;
  margin: 0 auto;
  position: relative;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
}

/* Billing Toggler */
.billing-switcher-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}

.billing-switcher {
  display: inline-flex;
  padding: 4px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  position: relative;
}

.switch-btn {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.6rem 1.25rem;
  border-radius: 99px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.switch-btn.active {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.discount-badge {
  font-size: 0.7rem;
  padding: 0.1rem 0.4rem;
  border-radius: 99px;
  background: rgba(16, 185, 129, 0.15);
  color: var(--color-green);
  font-weight: 700;
}

.pricing-calc-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: stretch;
}

/* Left Details block */
.calc-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tier-indicator {
  margin-bottom: 0.75rem;
}

.tier-tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-accent);
  border: 1px solid rgba(56, 189, 248, 0.3);
  background: rgba(56, 189, 248, 0.08);
  padding: 0.25rem 0.75rem;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-block;
}

.calc-details h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #fff;
}

.slider-wrapper {
  margin: 1.5rem 0 2rem 0;
}

.slider-labels {
  display: flex;
  justify-content: space-between;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 0.75rem;
}

#traffic-value {
  color: var(--color-accent);
  font-weight: 700;
  font-size: 1rem;
}

.price-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.08);
  outline: none;
  transition: var(--transition);
}

.price-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  border: 2.5px solid var(--color-accent);
  box-shadow: 0 0 15px var(--color-accent);
  transition: var(--transition);
}

.price-slider::-webkit-slider-thumb:hover {
  transform: scale(1.25);
}

/* Specs checklist */
.plan-specs-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border-top: 1px solid var(--border-subtle);
  padding-top: 1.5rem;
  margin-top: 0.5rem;
}

.plan-specs-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.plan-specs-list li svg {
  width: 16px;
  height: 16px;
  color: var(--color-green);
  flex-shrink: 0;
}

/* Right Price Panel */
.calc-price-panel {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
}

.price-box-header {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.price-display-wrapper {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.price-currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-right: 0.2rem;
}

.price-amount {
  font-size: 4rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1;
}

.price-period {
  font-size: 1rem;
  color: var(--text-muted);
  margin-left: 0.4rem;
}

.price-breakdown-info {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.price-cta-wrapper {
  width: 100%;
}

.btn-subscribe-now {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  background: linear-gradient(135deg, var(--color-accent), #2563eb);
  color: #fff;
  padding: 0.9rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.2);
  border: 1px solid rgba(255,255,255,0.1);
}

.btn-subscribe-now:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(56, 189, 248, 0.4);
}

.btn-subscribe-now svg {
  transition: transform 0.2s ease;
}

.btn-subscribe-now:hover svg {
  transform: translateX(3px);
}


/* Tutorials & Knowledgebase Section */
.kb-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.kb-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.kb-card:hover {
  border-color: var(--color-accent);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
}

.kb-card-tag {
  align-self: flex-start;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-accent);
  background: rgba(56, 189, 248, 0.08);
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.kb-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #fff;
  line-height: 1.4;
}

.kb-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  flex-grow: 1;
  margin-bottom: 1.5rem;
}

.kb-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Article Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(7, 8, 9, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 9999;
  display: none;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  display: flex !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}

.modal-container {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  width: 90%;
  max-width: 750px;
  max-height: 85vh;
  overflow-y: auto;
  padding: 3rem;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal-container {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
}

.modal-close:hover {
  color: #fff;
}

.modal-body {
  font-size: 1rem;
  color: var(--text-secondary);
}

.modal-body h2 {
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.modal-body p {
  margin-bottom: 1.2rem;
  line-height: 1.7;
}

.modal-body h3 {
  color: #fff;
  margin: 1.8rem 0 0.8rem 0;
  font-size: 1.25rem;
}

.modal-body ul, .modal-body ol {
  margin-bottom: 1.2rem;
  padding-left: 1.5rem;
}

.modal-body li {
  margin-bottom: 0.5rem;
}

.modal-body strong {
  color: #fff;
}

.modal-body a {
  color: var(--color-accent);
  text-decoration: none;
  border-bottom: 1px dashed var(--color-accent);
}

.modal-body a:hover {
  color: #fff;
  border-bottom-style: solid;
}

.modal-body code {
  background: rgba(255, 255, 255, 0.08);
  color: #38bdf8;
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.9em;
}

.modal-body pre {
  background: #0d1117;
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 1rem;
  overflow-x: auto;
  margin: 1.2rem 0;
}

.modal-body pre code {
  background: transparent;
  color: #e6edf3;
  padding: 0;
  border-radius: 0;
}

.modal-callout {
  background: rgba(56, 189, 248, 0.08);
  border-left: 4px solid var(--color-accent);
  padding: 1rem 1.25rem;
  border-radius: 0 8px 8px 0;
  margin: 1.5rem 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.modal-callout.warning {
  background: rgba(245, 158, 11, 0.08);
  border-left-color: #f59e0b;
}

.modal-callout strong {
  color: #fff;
}

.modal-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.9rem;
}

.modal-body th, .modal-body td {
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-subtle);
  text-align: left;
}

.modal-body th {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-weight: 600;
}

.modal-body tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.02);
}

/* User Testimonials Section */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 2rem;
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: var(--border-hover);
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  background: linear-gradient(135deg, #4f46e5, var(--color-accent));
}

.user-info h4 {
  font-size: 0.9rem;
  font-weight: 600;
}

.user-info p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* FAQ Accordion Section */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-subtle);
}

.faq-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.faq-icon {
  font-size: 1.2rem;
  transition: transform 0.2s ease;
  color: var(--text-muted);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.faq-content p {
  padding-bottom: 1.5rem;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-item.active .faq-content {
  max-height: 200px;
}

/* Footer Section */
footer {
  border-top: 1px solid var(--border-subtle);
  background: #090a0d;
  padding: 5rem 2rem 3rem 2rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 1rem;
  max-width: 250px;
}

.footer-links-col h4 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #fff;
}

.footer-links-col ul {
  list-style: none;
}

.footer-links-col li {
  margin-bottom: 0.75rem;
}

.footer-links-col a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.85rem;
  transition: var(--transition);
}

.footer-links-col a:hover {
  color: #fff;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.03);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Responsive styles */
@media (max-width: 1024px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bento-item.col-2 {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .nav-container {
    padding: 1rem;
  }
  nav {
    display: none; /* simple mobile fallback, or stack them */
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .bento-grid {
    grid-template-columns: 1fr;
  }
  
  .bento-item.col-2 {
    grid-column: span 1;
  }
  
  .bento-body-layout {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
  
  .pricing-calc-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .pricing-container {
    padding: 2rem 1.25rem;
  }
  
  .calc-price {
    text-align: left;
    margin-top: 1rem;
  }
  
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
