/* style.css - XRDOCK Premium B2B SaaS Theme */

/* ==========================================================================
   CSS Variables & Tokens
   ========================================================================== */
:root {
  /* Colors */
  --bg-dark: #09090b;
  /* Very dark zinc */
  --bg-dark-secondary: #18181b;
  --bg-light: #f8fafc;
  --bg-white: #ffffff;

  /* Primary Brand - Neon Lime Green from reference */
  --primary: #85FF00;
  /* Neon Lime Green */
  --primary-hover: #71d900;
  --primary-glow: rgba(133, 255, 0, 0.4);

  /* Text */
  --text-primary: #f8fafc;
  /* For dark mode */
  --text-secondary: #94a3b8;
  --text-muted: #64748b;

  --text-primary-light: #1c2024;
  /* Darker near-black for high contrast */
  --text-secondary-light: #475569;

  /* UI Elements */
  --border-dark: rgba(255, 255, 255, 0.1);
  --border-light: rgba(0, 0, 0, 0.1);
  --card-bg: rgba(255, 255, 255, 0.03);
  --card-bg-light: #ffffff;

  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Spacing */
  --section-pd: 120px 0;

  /* Utilities */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 24px;

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-glow: 0 0 30px var(--primary-glow);
}

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

html {
  font-family: var(--font-sans);
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 1rem;
}

p {
  color: var(--text-secondary);
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

/* ==========================================================================
   Layout & Utility Classes
   ========================================================================== */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-center {
  text-align: center;
}

.mt-3 {
  margin-top: 1.5rem;
}

.mt-4 {
  margin-top: 2rem;
}

.mt-5 {
  margin-top: 3rem;
}

section {
  padding: var(--section-pd);
}

.bg-light {
  background-color: var(--bg-light);
  color: var(--text-primary-light);
}

.bg-light h2,
.bg-light h3 {
  color: var(--text-primary-light);
}

.bg-light p {
  color: var(--text-secondary-light);
}

.bg-dark {
  background-color: rgb(20, 20, 18);
  /* Seekviral dark contrast */
  color: #fff;
}

.bg-dark h2,
.bg-dark h3,
.bg-dark p {
  color: #fff;
}

.section-header {
  max-width: 800px;
  margin: 0 auto 60px;
}

.section-header h2 {
  font-size: 3rem;
  letter-spacing: -0.02em;
}

.lead {
  font-size: 1.25rem;
}

.lead-narrow {
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto 40px;
}

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

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

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

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--bg-dark);
  /* Stark dark text on lime green */
  box-shadow: 0 4px 14px 0 rgba(133, 255, 0, 0.39);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(133, 255, 0, 0.5);
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: var(--text-primary-light);
  border: 1px solid var(--border-light);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-outline-white {
  background-color: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-white:hover {
  background-color: white;
  color: var(--bg-dark);
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 20px 0;
  transition: var(--transition);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  padding: 15px 0;
  box-shadow: var(--shadow-sm);
}

.navbar.scrolled .logo a,
.navbar-light .logo a {
  color: var(--text-primary-light);
}

.navbar.scrolled .nav-links a,
.navbar-light .nav-links a {
  color: var(--text-secondary-light);
}

.navbar.scrolled .nav-links a:hover,
.navbar-light .nav-links a:hover {
  color: var(--primary);
}

.navbar.scrolled .login-link,
.navbar-light .login-link {
  color: var(--text-primary-light);
}

.navbar.scrolled .login-link:hover,
.navbar-light .login-link:hover {
  color: var(--primary);
}

.navbar.scrolled .bar,
.navbar-light .bar {
  background-color: var(--text-primary-light);
}

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

.logo a {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.05em;
  display: flex;
  align-items: center;
}

.brand-logo {
  height: 30px;
  width: auto;
  object-fit: contain;
}

.footer-logo {
  height: 48px;
  margin-bottom: 0.5rem;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  color: var(--text-secondary);
  font-size: 1rem;
  font-weight: 600;
  position: relative;
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.login-link {
  color: var(--text-primary);
  font-weight: 700;
}

.login-link:hover {
  color: var(--primary);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.bar {
  display: block;
  width: 25px;
  height: 2px;
  margin: 5px auto;
  background-color: var(--text-primary);
  transition: var(--transition);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  position: relative;
  padding-top: 180px;
  padding-bottom: 120px;
  overflow: hidden;
}

/* Subtle background glow effect */
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, rgba(9, 9, 11, 0) 70%);
  z-index: -1;
}

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

.hero h1 {
  font-size: 4rem;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  background: linear-gradient(to right, #fff, #94a3b8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-ctas.justify-center {
  justify-content: center;
}

.hero-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--text-secondary);
  font-size: 1.05rem;
}

.hero-bullets strong {
  color: white;
}

.check {
  font-size: 0.9rem;
  margin-top: 3px;
}

.hero-visual {
  position: relative;
}

.video-placeholder {
  width: 100%;
  aspect-ratio: 16/10;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--bg-dark-secondary) 0%, rgba(59, 130, 246, 0.1) 100%);
  border: 1px solid var(--border-dark);
  box-shadow: var(--shadow-glow);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.play-button {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  margin-bottom: 1rem;
  cursor: pointer;
  transition: var(--transition);
}

.play-button:hover {
  transform: scale(1.1);
  background: var(--primary);
  border-color: var(--primary);
}

.video-placeholder p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* ==========================================================================
   Social Proof
   ========================================================================== */
.social-proof {
  padding: 40px 0 80px;
  border-bottom: 1px solid var(--border-dark);
}

.social-text {
  text-align: center;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.logo-carousel {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  flex-wrap: wrap;
  opacity: 0.6;
  margin-bottom: 3rem;
}

.sponsor-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-muted);
  filter: grayscale(100%);
}

.badges {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.badge {
  background: var(--card-bg);
  border: 1px solid var(--border-dark);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* ==========================================================================
   Problem Section (Cards)
   ========================================================================== */
.card {
  background: var(--card-bg-light);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  color: var(--text-primary-light);
}

.card h3 {
  color: var(--text-primary-light);
}

.card p {
  color: var(--text-secondary-light);
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.problem-card .icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  background: rgba(59, 130, 246, 0.1);
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.problem-card h3 {
  font-size: 1.5rem;
}

/* ==========================================================================
   Solution Section (Pillars)
   ========================================================================== */
.pillars-grid {
  margin-top: 4rem;
}

.pillar {
  padding: 2.5rem;
  background: var(--card-bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-dark);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.pillar:hover {
  border-color: rgba(59, 130, 246, 0.4);
  background: rgba(255, 255, 255, 0.05);
}

.pillar-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.05);
  position: absolute;
  top: -10px;
  right: 10px;
  line-height: 1;
}

.pillar h3 {
  font-size: 1.5rem;
  position: relative;
  z-index: 1;
}

.pillar p {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}

/* ==========================================================================
   Walkthrough Section (Z Platform layout)
   ========================================================================== */
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 8rem;
}

.feature-block:last-child {
  margin-bottom: 0;
}

.feature-block.reverse .feature-text {
  order: 2;
}

.feature-block.reverse .feature-image {
  order: 1;
}

.feature-text h3 {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
}

.mockup {
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  background-color: white;
}

.dashboard-mockup {
  aspect-ratio: 16/9;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
}

.mockup-header {
  height: 40px;
  background: #e2e8f0;
  border-bottom: 1px solid #cbd5e1;
}

.mockup-body {
  height: calc(100% - 40px);
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.vr-mockup {
  aspect-ratio: 16/10;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%"><rect width="100%" height="100%" fill="%231e293b" /><circle cx="50%" cy="50%" r="20%" fill="%23334155" opacity="0.5" /></svg>') center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scene-overlay {
  background: rgba(0, 0, 0, 0.6);
  padding: 1rem 2rem;
  border-radius: 100px;
  color: white;
  backdrop-filter: blur(4px);
}

.ipad-mockup {
  aspect-ratio: 4/3;
  background: #000;
  border: 12px solid #e2e8f0;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ipad-screen {
  color: #10b981;
  font-family: monospace;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%"><rect width="100%" height="100%" fill="%23334155" /></svg>') center/cover;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
   Use Cases (Interactive Cards)
   ========================================================================== */
.arrow-link {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  color: var(--primary);
  margin-top: 1rem;
}

.arrow-link:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

/* ==========================================================================
   Integrations
   ========================================================================== */
.integration-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}

.int-logo {
  background: var(--card-bg);
  border: 1px solid var(--border-dark);
  padding: 1.5rem 2rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  color: var(--text-secondary);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  width: 140px;
}

.int-logo:hover {
  color: white;
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.saas-logo {
  width: 50px;
  height: 50px;
  object-fit: contain;
  background-color: transparent;
  display: block;
}

/* ==========================================================================
   Case Study Hero
   ========================================================================== */
.case-study-hero {
  background: linear-gradient(135deg, var(--bg-dark-secondary) 0%, #1e1b4b 100%);
  border-radius: var(--radius-lg);
  padding: 4rem;
  border: 1px solid var(--border-dark);
  position: relative;
  overflow: hidden;
}

.tag {
  display: inline-block;
  background: rgba(59, 130, 246, 0.2);
  color: var(--primary);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 2rem;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.metrics-grid {
  display: flex;
  gap: 3rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid var(--border-dark);
  padding-bottom: 3rem;
}

.metric .number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: white;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.metric .label {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.testimonial p {
  font-size: 1.5rem;
  color: white;
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.testimonial cite {
  color: var(--text-muted);
  font-style: normal;
  font-weight: 600;
}

/* ==========================================================================
   How It Works (Steps)
   ========================================================================== */
.steps-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 4rem;
  text-align: center;
}

.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-num {
  width: 60px;
  height: 60px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 0 8px rgba(59, 130, 246, 0.2);
}

.step h3 {
  font-size: 1.25rem;
}

.step-line {
  flex: 0 0 100px;
  height: 2px;
  background: var(--border-light);
  margin-top: 30px;
}

/* ==========================================================================
   Security Grid
   ========================================================================== */
.sec-item {
  padding: 2rem;
  background: var(--card-bg);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
}

.sec-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.sec-item h4 {
  font-size: 1.125rem;
}

.sec-item p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* ==========================================================================
   Pricing
   ========================================================================== */
.pricing-card {
  background: var(--card-bg-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition);
}

.pricing-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.pricing-card.highlighted {
  border-color: var(--primary);
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.1);
  transform: scale(1.05);
  z-index: 2;
}

.pricing-card.highlighted:hover {
  transform: scale(1.05) translateY(-5px);
}

.popular-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  padding: 0.25rem 1rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.pricing-card h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.pricing-card .desc {
  flex-grow: 1;
  margin-bottom: 2rem;
}

.pricing-card .btn {
  width: 100%;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

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

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.5rem 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-sans);
}

.toggle-icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--primary);
  transition: transform 0.3s ease;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-answer p {
  padding-bottom: 1.5rem;
  margin-bottom: 0;
}

/* ==========================================================================
   Final CTA
   ========================================================================== */
.risk-meta {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: var(--bg-dark);
  padding: 80px 0 40px;
  border-top: 1px solid var(--border-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.brand-col .logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
}

.brand-col p {
  font-size: 0.95rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 36px;
  height: 36px;
  background: var(--card-bg);
  border: 1px solid var(--border-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
}

.social-links a:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.footer h4 {
  color: white;
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

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

.footer ul a {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.footer ul a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-dark);
  color: var(--text-muted);
  font-size: 0.875rem;
}

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

/* ==========================================================================
   Animations
   ========================================================================== */
.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards;
}

.delay-1 {
  animation-delay: 0.2s;
}

.delay-2 {
  animation-delay: 0.4s;
}

.delay-3 {
  animation-delay: 0.6s;
}

.delay-4 {
  animation-delay: 0.8s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================================
   Media Queries
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-bullets li {
    justify-content: center;
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .case-study-hero {
    padding: 3rem;
  }

  .metrics-grid {
    flex-direction: column;
    gap: 1.5rem;
  }

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

@media (max-width: 768px) {

  .nav-links,
  .nav-actions {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

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

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

  .feature-block,
  .feature-block.reverse {
    grid-template-columns: 1fr;
  }

  .feature-block.reverse .feature-text,
  .feature-block.reverse .feature-image {
    order: unset;
  }

  .section-header h2 {
    font-size: 2.25rem;
  }

  .steps-container {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .step-line {
    width: 2px;
    height: 50px;
    flex: 0 0 50px;
    margin-top: 0;
  }

  .pricing-card.highlighted {
    transform: none;
  }

  .pricing-card.highlighted:hover {
    transform: translateY(-5px);
  }
}

/* ==========================================================================
   Support Page
   ========================================================================== */
.support-grid {
  margin-top: 2rem;
  gap: 1.5rem;
}

.support-card {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  background-color: white;
}

.support-card-top {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary-light);
  position: relative;
}

.support-card-top svg {
  width: 64px;
  height: 64px;
  stroke: #475569;
  /* Slate 600 */
  opacity: 0.7;
}

/* Soft gradients based on the requested image */
.gradient-bg-1 {
  background: linear-gradient(135deg, rgba(255, 200, 220, 0.4) 0%, rgba(200, 230, 255, 0.6) 100%);
}

.gradient-bg-2 {
  background: linear-gradient(135deg, rgba(250, 230, 255, 0.4) 0%, rgba(210, 255, 220, 0.6) 100%);
}

.gradient-bg-3 {
  background: linear-gradient(135deg, rgba(255, 240, 220, 0.4) 0%, rgba(220, 255, 255, 0.6) 100%);
}

.support-card-bottom {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  background-color: #f8fafc;
}

.support-card-bottom h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text-primary-light);
}

.support-card-bottom p {
  font-size: 0.95rem;
  color: var(--text-secondary-light);
  margin-bottom: 1.5rem;
  flex-grow: 1;
  line-height: 1.5;
}

.support-action {
  display: flex;
  align-items: center;
  margin-top: auto;
}

.support-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: #2563eb;
  padding: 0.5rem 0;
  border: none;
  background: none;
}

.support-btn::before {
  content: '>';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid #cbd5e1;
  color: #64748b;
  font-size: 14px;
  margin-right: 4px;
  transition: all 0.2s;
}

.support-btn:hover {
  color: #1d4ed8;
  border: none;
  background: none;
}

.support-btn:hover::before {
  border-color: #2563eb;
  color: #2563eb;
}