/* ============================================
   SAMPLE Inc. - SaaS Landing Page
   Dark Mode / Tech Startup Design
   Designed by ICHI DESIGN
   ============================================ */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  background: #0B0D17;
  color: #FFFFFF;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.menu-open {
  overflow: hidden;
}

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

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

/* ============================================
   Animations
   ============================================ */

/* Gradient text shift */
@keyframes gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Floating orbs - three distinct motions */
@keyframes float-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(80px, -60px) scale(1.1); }
  50% { transform: translate(-40px, -120px) scale(0.95); }
  75% { transform: translate(60px, -30px) scale(1.05); }
}

@keyframes float-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(-60px, 40px) scale(1.05); }
  50% { transform: translate(80px, 80px) scale(0.9); }
  75% { transform: translate(-30px, -50px) scale(1.1); }
}

@keyframes float-3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(70px, 60px) scale(1.08); }
  66% { transform: translate(-50px, -40px) scale(0.92); }
}

/* Fade in on load */
@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Subtle pulse for CTA glow */
@keyframes pulse-glow {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 0.8; }
}

/* ============================================
   Gradient Text Utility
   ============================================ */
.gradient-text {
  background: linear-gradient(135deg, #6366F1, #8B5CF6, #EC4899, #6366F1);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 5s ease infinite;
}

/* ============================================
   Sample Bar (top fixed banner)
   ============================================ */
.sample-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  background: #2D1B69;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 16px;
  letter-spacing: 0.08em;
}

/* ============================================
   Header
   ============================================ */
.header {
  position: fixed;
  top: 32px;
  left: 0;
  right: 0;
  z-index: 999;
  transition: background 0.3s ease,
              backdrop-filter 0.3s ease,
              box-shadow 0.3s ease;
}

.header.scrolled {
  background: rgba(11, 13, 23, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

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

/* --- Logo --- */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.1rem;
}

.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, #6366F1, #8B5CF6);
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
  box-shadow: 0 4px 16px rgba(99, 102, 241, 0.35);
}

.logo-text {
  letter-spacing: -0.02em;
}

/* --- Nav --- */
.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s ease;
  position: relative;
}

.nav-link:hover {
  color: #fff;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #6366F1, #EC4899);
  transition: width 0.3s ease;
  border-radius: 1px;
}

.nav-link:hover::after {
  width: 100%;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 28px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #6366F1, #8B5CF6);
  color: #fff;
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
}

.btn-primary:hover {
  box-shadow: 0 8px 32px rgba(99, 102, 241, 0.6);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-1px);
}

.btn-nav-cta {
  background: linear-gradient(135deg, #6366F1, #8B5CF6);
  color: #fff;
  padding: 10px 22px;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.btn-nav-cta:hover {
  box-shadow: 0 6px 25px rgba(99, 102, 241, 0.5);
  transform: translateY(-1px);
}

.btn-lg {
  padding: 16px 40px;
  font-size: 1.05rem;
  border-radius: 14px;
}

/* ============================================
   Hamburger (mobile only)
   ============================================ */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 160px 24px 80px;
  overflow: hidden;
}

/* Background layer */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* --- Gradient Orbs --- */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.6;
  will-change: transform;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #6366F1, transparent 70%);
  top: -10%;
  left: -10%;
  animation: float-1 20s ease-in-out infinite;
}

.orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #8B5CF6, transparent 70%);
  top: 20%;
  right: -5%;
  animation: float-2 25s ease-in-out infinite;
}

.orb-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #EC4899, transparent 70%);
  bottom: 10%;
  left: 30%;
  animation: float-3 22s ease-in-out infinite;
}

/* --- Dot Grid Overlay --- */
.dot-grid {
  position: absolute;
  inset: 0;
  background: repeating-radial-gradient(
    circle,
    rgba(255, 255, 255, 0.05) 1px,
    transparent 1px
  );
  background-size: 30px 30px;
  z-index: 1;
  pointer-events: none;
}

/* --- SAMPLE Watermark --- */
.watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20vw;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.03);
  white-space: nowrap;
  pointer-events: none;
  z-index: 1;
  letter-spacing: 0.05em;
  user-select: none;
}

/* --- Hero Content --- */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  animation: fade-up 1s ease forwards;
}

.hero-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #8B5CF6;
  border: 1px solid rgba(139, 92, 246, 0.3);
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
  background: rgba(139, 92, 246, 0.08);
}

.hero-title {
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 620px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 80px;
}

/* --- Hero Dashboard Image --- */
.hero-image-wrap {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.hero-image-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(
    ellipse at center,
    rgba(99, 102, 241, 0.2),
    transparent 70%
  );
  z-index: 0;
  pointer-events: none;
  animation: pulse-glow 6s ease-in-out infinite;
}

.hero-image {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 16px;
  transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
  box-shadow:
    0 40px 80px rgba(99, 102, 241, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.08);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.hero-image:hover {
  transform: perspective(1000px) rotateY(-2deg) rotateX(2deg);
  box-shadow:
    0 50px 100px rgba(99, 102, 241, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.12);
}

/* ============================================
   Logos Section
   ============================================ */
.logos-section {
  padding: 80px 24px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.logos-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 36px;
  letter-spacing: 0.05em;
}

.logos-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}

.logo-box {
  width: 120px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: border-color 0.3s ease;
}

.logo-box:hover {
  border-color: rgba(255, 255, 255, 0.12);
}

/* ============================================
   Section Headers
   ============================================ */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #8B5CF6;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
  max-width: 500px;
  margin: 0 auto;
}

/* ============================================
   Features - Bento Grid
   ============================================ */
.features {
  padding: 120px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}

/* --- Glass Card Base --- */
.bento-card {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: transform 0.3s ease,
              box-shadow 0.3s ease,
              border-color 0.3s ease;
}

.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.18);
}

/* Large card: spans 2 columns */
.bento-large {
  grid-column: span 2;
  grid-row: span 1;
  min-height: 340px;
}

/* Small text-only cards */
.bento-small {
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Analytics card */
.bento-analytics {
  grid-column: span 1;
  min-height: 280px;
}

/* Image inside bento card */
.bento-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.bento-card:hover .bento-img {
  opacity: 0.5;
  transform: scale(1.03);
}

/* Text overlay on image cards */
.bento-overlay {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px 36px;
  background: linear-gradient(
    to top,
    rgba(11, 13, 23, 0.9) 0%,
    rgba(11, 13, 23, 0.4) 40%,
    transparent 60%
  );
}

/* Icon wrapper */
.bento-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.2),
    rgba(139, 92, 246, 0.2)
  );
  border: 1px solid rgba(99, 102, 241, 0.3);
  color: #8B5CF6;
}

.bento-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.bento-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
}

/* ============================================
   Stats Section
   ============================================ */
.stats {
  padding: 100px 24px;
  background: linear-gradient(
    180deg,
    rgba(99, 102, 241, 0.06) 0%,
    rgba(11, 13, 23, 0) 100%
  );
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.stats-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-number {
  display: block;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #6366F1, #8B5CF6, #EC4899);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 5s ease infinite;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
}

/* ============================================
   CTA Section
   ============================================ */
.cta {
  padding: 120px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.15),
    rgba(139, 92, 246, 0.1),
    rgba(236, 72, 153, 0.1)
  );
  z-index: 0;
}

.cta::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(99, 102, 241, 0.15),
    transparent 70%
  );
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  animation: pulse-glow 6s ease-in-out infinite;
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.cta-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 40px;
  line-height: 1.8;
}

/* ============================================
   Footer
   ============================================ */
.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 60px 24px 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 60px;
  padding-bottom: 48px;
}

.footer-brand {
  max-width: 300px;
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-note {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.7;
}

.footer-links {
  display: flex;
  gap: 60px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 6px;
}

.footer-col a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 20px 24px;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.25);
}

/* ============================================
   Responsive - Tablet & Mobile (max-width: 768px)
   ============================================ */
@media (max-width: 768px) {

  /* Sample bar */
  .sample-bar {
    font-size: 0.65rem;
    padding: 5px 12px;
  }

  /* Hamburger visible */
  .hamburger {
    display: flex;
  }

  /* Nav as fullscreen overlay */
  .nav {
    position: fixed;
    inset: 0;
    background: rgba(11, 13, 23, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    z-index: 1000;
  }

  .nav.open {
    opacity: 1;
    pointer-events: all;
  }

  .nav-link {
    font-size: 1.3rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
  }

  .nav-link::after {
    display: none;
  }

  .btn-nav-cta {
    font-size: 1rem;
    padding: 14px 32px;
  }

  /* Hero adjustments */
  .hero {
    padding: 140px 20px 60px;
    min-height: auto;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .hide-sp {
    display: none;
  }

  .hero-buttons {
    margin-bottom: 50px;
  }

  .hero-image {
    transform: perspective(800px) rotateY(-2deg) rotateX(2deg);
    box-shadow: 0 20px 50px rgba(99, 102, 241, 0.25);
  }

  .hero-image:hover {
    transform: perspective(800px) rotateY(0deg) rotateX(0deg);
  }

  /* Smaller orbs */
  .orb-1 { width: 300px; height: 300px; }
  .orb-2 { width: 250px; height: 250px; }
  .orb-3 { width: 200px; height: 200px; }

  .watermark {
    font-size: 30vw;
  }

  /* Logos */
  .logos-section {
    padding: 50px 20px;
  }

  .logos-row {
    gap: 16px;
  }

  .logo-box {
    width: 90px;
    height: 40px;
    font-size: 0.7rem;
  }

  /* Bento grid stacked */
  .features {
    padding: 80px 20px;
  }

  .bento-grid {
    grid-template-columns: 1fr;
  }

  .bento-large {
    grid-column: span 1;
    min-height: 280px;
  }

  .bento-analytics {
    min-height: 240px;
  }

  .bento-small {
    padding: 32px 24px;
  }

  .bento-overlay {
    padding: 28px 24px;
  }

  /* Stats: 2 columns */
  .stats {
    padding: 60px 20px;
  }

  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  /* CTA */
  .cta {
    padding: 80px 20px;
  }

  .cta::after {
    width: 300px;
    height: 300px;
  }

  /* Footer stacked */
  .footer-inner {
    flex-direction: column;
    gap: 40px;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 36px;
  }

  .footer-col {
    min-width: 120px;
  }
}

/* ============================================
   Responsive - Extra small (max-width: 480px)
   ============================================ */
@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 280px;
  }

  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.8rem;
  }
}

/* ============================================
   Testimonials
   ============================================ */
.testimonials {
  padding: 100px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 32px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.testimonial-card:hover {
  border-color: rgba(99,102,241,0.4);
  transform: translateY(-4px);
}

.testimonial-stars {
  color: #F59E0B;
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 0.88rem;
  line-height: 1.9;
  color: rgba(255,255,255,0.65);
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: #fff;
}

.testimonial-role {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  margin-top: 2px;
}

/* ============================================
   Pricing
   ============================================ */
.pricing {
  padding: 100px 40px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 40px 32px;
  position: relative;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.pricing-card:hover {
  border-color: rgba(99,102,241,0.3);
  transform: translateY(-4px);
}

.pricing-card--popular {
  background: linear-gradient(135deg, rgba(99,102,241,0.12), rgba(139,92,246,0.08));
  border-color: rgba(99,102,241,0.45);
}

.pricing-badge-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #6366F1, #8B5CF6);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 5px 18px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-tier {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 16px;
}

.pricing-price {
  font-size: 2.4rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1;
}

.pricing-contact {
  font-size: 1.3rem;
  padding-top: 10px;
}

.pricing-period {
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(255,255,255,0.35);
}

.pricing-desc-sub {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.pricing-list {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-item {
  font-size: 0.84rem;
  padding-left: 22px;
  position: relative;
}

.pricing-yes {
  color: rgba(255,255,255,0.75);
}

.pricing-no {
  color: rgba(255,255,255,0.22);
}

.pricing-yes::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #6366F1;
  font-weight: 700;
}

.pricing-no::before {
  content: '—';
  position: absolute;
  left: 0;
  color: rgba(255,255,255,0.18);
}

.pricing-cta {
  width: 100%;
  text-align: center;
  display: block;
}

@media (max-width: 768px) {
  .testimonials {
    padding: 72px 20px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .pricing {
    padding: 72px 20px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
}
