/* ==========================================================================
   LayTehra Design System & Master Stylesheet
   Theme: Obsidian Dark Mode with Neon Cyan & Purple Accents
   Inspirations: Linear, Raycast, Arc Browser
   ========================================================================== */

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

:root {
  /* Colors */
  --bg-obsidian: #07090e;
  --bg-surface: #0e121c;
  --bg-surface-elevated: #151b2a;
  --bg-glass: rgba(15, 20, 32, 0.65);
  --bg-glass-card: rgba(22, 28, 45, 0.55);
  --bg-glass-hover: rgba(30, 38, 60, 0.75);

  --border-glass: rgba(255, 255, 255, 0.08);
  --border-glass-bright: rgba(255, 255, 255, 0.18);
  --border-cyan-glow: rgba(0, 210, 255, 0.4);
  --border-purple-glow: rgba(138, 43, 226, 0.4);

  --accent-cyan: #00d2ff;
  --accent-blue: #0066ff;
  --accent-purple: #8a2be2;
  --accent-indigo: #4a00e0;
  --accent-pink: #ec4899;
  --accent-emerald: #10b981;

  --gradient-brand: linear-gradient(135deg, #8a2be2 0%, #4a00e0 45%, #00d2ff 100%);
  --gradient-text: linear-gradient(135deg, #ffffff 30%, #a5b4fc 70%, #00d2ff 100%);
  --gradient-cyan-purple: linear-gradient(90deg, #00d2ff 0%, #8a2be2 100%);
  --gradient-dark: linear-gradient(180deg, rgba(7, 9, 14, 0) 0%, #07090e 100%);

  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;

  --shadow-glow-cyan: 0 0 35px rgba(0, 210, 255, 0.25);
  --shadow-glow-purple: 0 0 35px rgba(138, 43, 226, 0.25);
  --shadow-card: 0 20px 50px rgba(0, 0, 0, 0.5);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  --font-heading: 'Comfortaa', cursive, sans-serif;
  --font-body: 'Comfortaa', cursive, sans-serif;

  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ==========================================================================
   Base & Resets
   ========================================================================== */

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

button, input, select, textarea {
  font-family: var(--font-body);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-obsidian);
  color: var(--text-main);
  font-family: var(--font-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
  position: relative;
  background: var(--bg-obsidian);
  line-height: 1.6;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-obsidian);
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
  border: 2px solid var(--bg-obsidian);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-cyan);
}

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

ul {
  list-style: none;
}

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

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.text-gradient {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.text-cyan {
  color: var(--accent-cyan);
}

.text-purple {
  color: var(--accent-purple);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  background: rgba(0, 210, 255, 0.08);
  border: 1px solid rgba(0, 210, 255, 0.2);
  color: var(--accent-cyan);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
  backdrop-filter: blur(10px);
}

.section-tag i {
  font-size: 0.9rem;
}

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

.section-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 48px auto;
  line-height: 1.7;
}

.container {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  padding: 12px 0;
  background: rgba(7, 9, 14, 0.82);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-glass);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.logo img, .logo svg {
  width: 40px;
  height: 40px;
  filter: drop-shadow(0 0 10px rgba(0, 210, 255, 0.4));
  transition: var(--transition-bounce);
}

.logo:hover img, .logo:hover svg {
  transform: rotate(8deg) scale(1.05);
}

.logo-text {
  color: var(--text-main);
  font-weight: 700;
}

.logo-text span {
  background: linear-gradient(135deg, #a855f7 0%, #00d2ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.card-brand-name span {
  background: linear-gradient(135deg, #a855f7 0%, #38bdf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  white-space: nowrap;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition-fast);
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: var(--text-main);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-cyan-purple);
  transition: var(--transition-fast);
  border-radius: 2px;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-main);
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 1100;
}

/* ==========================================================================
   Buttons & CTAs
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 26px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
  outline: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background: var(--gradient-brand);
  color: #ffffff;
  box-shadow: 0 4px 25px rgba(0, 210, 255, 0.35);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #00d2ff 0%, #8a2be2 100%);
  opacity: 0;
  z-index: -1;
  transition: var(--transition-fast);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 35px rgba(0, 210, 255, 0.5);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-secondary {
  background: var(--bg-glass-card);
  color: var(--text-main);
  border: 1px solid var(--border-glass-bright);
  backdrop-filter: blur(12px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

.btn-google-play {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 28px;
  background: #000000;
  color: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: var(--transition-smooth);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.btn-google-play i {
  font-size: 1.8rem;
  background: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn-google-play .btn-text-sub {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  display: block;
}

.btn-google-play .btn-text-main {
  font-size: 1.1rem;
  font-weight: 700;
  display: block;
  line-height: 1.2;
}

.btn-google-play:hover {
  border-color: var(--accent-cyan);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow-cyan);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero {
  position: relative;
  padding: 180px 0 120px 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  text-align: left;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  background: rgba(138, 43, 226, 0.12);
  border: 1px solid rgba(138, 43, 226, 0.3);
  color: #d8b4fe;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  backdrop-filter: blur(12px);
}

.hero-badge .sparkle {
  color: var(--accent-cyan);
  animation: pulseGlow 2s infinite alternate;
}

.hero-title {
  font-size: clamp(2.8rem, 5.2vw, 4.5rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.hero-description {
  font-size: 1.2rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 560px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-trust-badges {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border-glass);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.trust-item i {
  color: var(--accent-cyan);
  font-size: 1.1rem;
}

/* Hero Mockup Frame */
.hero-mockup-wrapper {
  position: relative;
  z-index: 2;
  perspective: 1000px;
  display: flex;
  justify-content: center;
}

.phone-container {
  width: 320px;
  height: 640px;
  background: #090c14;
  border-radius: 48px;
  padding: 12px;
  border: 4px solid #1e2638;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8),
              0 0 50px rgba(0, 210, 255, 0.15);
  position: relative;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  transform: rotateY(-8deg) rotateX(4deg);
}

.phone-container:hover {
  transform: rotateY(0deg) rotateX(0deg) scale(1.02);
}

/* Phone Notch / Island */
.phone-island {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 24px;
  background: #000;
  border-radius: 20px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 8px;
}

.phone-island::before {
  content: '';
  width: 10px;
  height: 10px;
  background: #0c182b;
  border-radius: 50%;
  border: 2px solid #1e2638;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: #0b0f19;
  border-radius: 38px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

/* Embedded Phone UI Layout */
.phone-ui-header {
  padding: 40px 20px 16px 20px;
  background: linear-gradient(180deg, #151b2a 0%, #0b0f19 100%);
  border-bottom: 1px solid var(--border-glass);
}

.phone-ui-title {
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.phone-ui-card {
  margin: 12px 16px;
  padding: 14px;
  border-radius: var(--radius-md);
  background: rgba(22, 28, 45, 0.8);
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  animation: slideUpFade 0.6s ease forwards;
}

.phone-ui-card.active-card {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 20px rgba(0, 210, 255, 0.2);
}

.card-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #fff;
  flex-shrink: 0;
}

.card-icon.wa { background: #25D366; }
.card-icon.sms { background: #0066ff; }
.card-icon.mail { background: #ea4335; }

.card-info {
  flex: 1;
}

.card-recipient {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-main);
}

.card-msg {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.card-time {
  font-size: 0.7rem;
  color: var(--accent-cyan);
  font-weight: 600;
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Floating Glass Cards around Mockup */
.floating-glass-card {
  position: absolute;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  background: rgba(15, 20, 32, 0.85);
  border: 1px solid var(--border-glass-bright);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-card);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 14px;
  animation: floatCard 6s ease-in-out infinite alternate;
}

.floating-glass-card.card-1 {
  top: 15%;
  left: -40px;
}

.floating-glass-card.card-2 {
  bottom: 18%;
  right: -30px;
  animation-delay: -3s;
}

.fg-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
}

.fg-title {
  font-size: 0.85rem;
  font-weight: 700;
}

.fg-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Stats Bar Section
   ========================================================================== */

.stats-section {
  padding: 40px 0;
  position: relative;
  z-index: 10;
  margin-top: -30px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 32px 40px;
  border-radius: var(--radius-lg);
  background: var(--bg-glass-card);
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-card);
}

.stat-item {
  text-align: center;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -12px;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--border-glass);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ==========================================================================
   Features Bento Grid Section
   ========================================================================== */

.features-section {
  padding: 120px 0;
  position: relative;
}

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

.bento-card {
  padding: 36px;
  border-radius: var(--radius-lg);
  background: var(--bg-glass-card);
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(16px);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bento-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 210, 255, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), var(--shadow-glow-cyan);
}

.bento-card.wide {
  grid-column: span 2;
}

.bento-card.tall {
  grid-row: span 2;
}

.bento-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(0, 210, 255, 0.1);
  border: 1px solid rgba(0, 210, 255, 0.2);
  color: var(--accent-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 24px;
}

.bento-card:nth-child(2n) .bento-icon {
  background: rgba(138, 43, 226, 0.1);
  border-color: rgba(138, 43, 226, 0.2);
  color: var(--accent-purple);
}

.bento-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.bento-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.bento-visual {
  margin-top: 24px;
  position: relative;
}

/* Custom Visual Elements inside Bento Cards */
.platform-pills {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.platform-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  font-size: 0.85rem;
  font-weight: 600;
}

.platform-pill i.fa-whatsapp { color: #25D366; }
.platform-pill i.fa-comment-dots { color: #0066ff; }
.platform-pill i.fa-envelope { color: #ea4335; }

/* ==========================================================================
   Interactive App Preview Carousel Section
   ========================================================================== */

.preview-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg-obsidian) 0%, var(--bg-surface) 50%, var(--bg-obsidian) 100%);
  position: relative;
}

.preview-tabs {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 12px 24px;
  border-radius: var(--radius-full);
  background: var(--bg-glass-card);
  border: 1px solid var(--border-glass);
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
}

.tab-btn:hover, .tab-btn.active {
  color: var(--text-main);
  background: var(--gradient-brand);
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(0, 210, 255, 0.3);
}

.preview-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.preview-mockup-frame {
  width: 340px;
  height: 680px;
  background: #090d16;
  border-radius: 44px;
  padding: 14px;
  border: 4px solid #1f293d;
  box-shadow: var(--shadow-card), 0 0 60px rgba(138, 43, 226, 0.2);
  position: relative;
  overflow: hidden;
}

.preview-slide {
  display: none;
  width: 100%;
  height: 100%;
  border-radius: 32px;
  background: #0d121f;
  padding: 24px 20px;
  flex-direction: column;
}

.preview-slide.active {
  display: flex;
  animation: fadeIn 0.4s ease forwards;
}

.screen-header {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.schedule-item {
  padding: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
}

/* ==========================================================================
   How It Works Section
   ========================================================================== */

.how-it-works-section {
  padding: 120px 0;
  position: relative;
}

.workflow-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.step-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--bg-glass-card);
  border: 1px solid var(--border-glass);
  position: relative;
  transition: var(--transition-smooth);
}

.step-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-cyan);
}

.step-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.08);
  position: absolute;
  top: 20px;
  right: 20px;
  line-height: 1;
}

.step-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.step-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.step-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */

.faq-section {
  padding: 100px 0;
  position: relative;
}

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

.faq-item {
  margin-bottom: 16px;
  border-radius: var(--radius-md);
  background: var(--bg-glass-card);
  border: 1px solid var(--border-glass);
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-question {
  padding: 22px 28px;
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  color: var(--text-main);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq-question i {
  color: var(--accent-cyan);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 28px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 28px 24px 28px;
}

/* ==========================================================================
   Contact & CTA Banner Section
   ========================================================================== */

.cta-banner {
  padding: 80px 40px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(138, 43, 226, 0.25) 0%, rgba(0, 210, 255, 0.15) 100%);
  border: 1px solid var(--border-glass-bright);
  backdrop-filter: blur(20px);
  text-align: center;
  position: relative;
  overflow: hidden;
  margin: 60px 0;
}

.cta-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 16px;
}

.cta-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto 32px auto;
}

/* Contact Page Form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-card {
  padding: 40px;
  border-radius: var(--radius-lg);
  background: var(--bg-glass-card);
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(16px);
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-input, .form-textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  background: rgba(7, 9, 14, 0.6);
  border: 1px solid var(--border-glass);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition-fast);
}

.form-input:focus, .form-textarea:focus {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 15px rgba(0, 210, 255, 0.2);
}

.form-textarea {
  resize: vertical;
  min-height: 140px;
}

/* ==========================================================================
   Footer Section
   ========================================================================== */

.footer {
  background: #040508;
  border-top: 1px solid var(--border-glass);
  padding: 80px 0 40px 0;
  position: relative;
  z-index: 10;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 16px 0 24px 0;
  max-width: 320px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-glass-card);
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.social-icon:hover {
  color: var(--accent-cyan);
  border-color: var(--accent-cyan);
  transform: translateY(-3px);
}

.footer-column h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-main);
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.footer-column ul li a:hover {
  color: var(--accent-cyan);
  padding-left: 4px;
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-dim);
}

/* Day Mode Brand Overrides */
body.day-mode .card-brand-name {
  color: #0f172a !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35) !important;
.footer-brand,
.footer-column {
  text-align: left;
}
