/*
Theme Name: GhostLLC
Theme URI: https://ghost-llc.com
Author: Yassir
Author URI: https://ghost-llc.com
Description: A modern one-page WordPress theme for GhostLLC - LLC formation service. Features a beautiful dark design with smooth animations and optimized performance.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ghostllc
Tags: one-column, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/

/* ============================================
   GhostLLC - Styles CSS
   ============================================ */
/* CSS Variables */
:root {
  /* Brand Colors */
  --background: hsl(150, 30%, 6%);
  --foreground: hsl(60, 10%, 95%);
  --card: hsl(150, 25%, 10%);
  --card-foreground: hsl(60, 10%, 95%);
  --primary: hsl(75, 85%, 55%);
  --primary-foreground: hsl(150, 30%, 6%);
  --secondary: hsl(150, 20%, 15%);
  --secondary-foreground: hsl(60, 10%, 95%);
  --muted: hsl(150, 15%, 18%);
  --muted-foreground: hsl(150, 10%, 60%);
  --accent: hsl(75, 85%, 55%);
  --border: hsl(150, 15%, 20%);
  --forest: hsl(150, 25%, 12%);
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, hsl(75, 85%, 55%) 0%, hsl(90, 80%, 45%) 100%);
  --gradient-card: linear-gradient(145deg, hsl(150, 25%, 12%) 0%, hsl(150, 25%, 8%) 100%);
  
  /* Shadows */
  --shadow-card: 0 10px 40px -10px hsla(0, 0%, 0%, 0.4);
  --shadow-button: 0 4px 20px -5px hsla(75, 85%, 55%, 0.4);
  --shadow-glow: 0 0 60px -10px hsla(75, 85%, 55%, 0.3);
  
  /* Border Radius */
  --radius: 1rem;
}
/* CSS Variables */
:root {
  /* Brand Colors */
  --background: hsl(150, 30%, 6%);
  --foreground: hsl(60, 10%, 95%);
  --card: hsl(150, 25%, 10%);
  --card-foreground: hsl(60, 10%, 95%);
  --primary: hsl(75, 85%, 55%);
  --primary-foreground: hsl(150, 30%, 6%);
  --secondary: hsl(150, 20%, 15%);
  --secondary-foreground: hsl(60, 10%, 95%);
  --muted: hsl(150, 15%, 18%);
  --muted-foreground: hsl(150, 10%, 60%);
  --accent: hsl(75, 85%, 55%);
  --border: hsl(150, 15%, 20%);
  --forest: hsl(150, 25%, 12%);
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, hsl(75, 85%, 55%) 0%, hsl(90, 80%, 45%) 100%);
  --gradient-card: linear-gradient(145deg, hsl(150, 25%, 12%) 0%, hsl(150, 25%, 8%) 100%);
  
  /* Shadows */
  --shadow-card: 0 10px 40px -10px hsla(0, 0%, 0%, 0.4);
  --shadow-button: 0 4px 20px -5px hsla(75, 85%, 55%, 0.4);
  --shadow-glow: 0 0 60px -10px hsla(75, 85%, 55%, 0.3);
  
  /* Border Radius */
  --radius: 1rem;
}
/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Inter', sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
/* Performance Optimizations */
img {
  max-width: 100%;
  height: auto;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}
.logo-image {
  image-rendering: auto;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Instrument Sans', sans-serif;
  line-height: 1.2;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}
img {
  max-width: 100%;
  height: auto;
}
/* Utility Classes */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.text-primary {
  color: var(--primary);
}
.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hidden {
  display: none !important;
}
/* Card Glass Effect */
.card-glass {
  background: var(--gradient-card);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(8px);
  border: 1px solid hsla(150, 15%, 20%, 0.5);
}
.glow-effect {
  box-shadow: var(--shadow-glow);
}
/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}
.btn-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
}
.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}
.btn-hero {
  background-color: var(--primary);
  color: var(--primary-foreground);
  padding: 1rem 2rem;
  font-size: 1rem;
  box-shadow: var(--shadow-button);
}
.btn-hero:hover {
  box-shadow: 0 6px 30px -5px hsla(75, 85%, 55%, 0.6);
  transform: translateY(-2px);
}
.btn-hero svg {
  transition: transform 0.3s ease;
}
.btn-hero:hover svg {
  transform: translateX(4px);
}
.btn-glow {
  box-shadow: var(--shadow-button);
  transition: all 0.3s ease;
}
.btn-glow:hover {
  box-shadow: 0 6px 30px -5px hsla(75, 85%, 55%, 0.6);
  transform: translateY(-2px);
}
/* ============================================
   Header
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999998;
  background-color: hsla(150, 30%, 6%, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid hsla(150, 15%, 20%, 0.5);
}
/* WordPress Admin Bar Offset */
.admin-bar .header,
body.admin-bar .header {
  top: 32px;
}
@media screen and (max-width: 782px) {
  .admin-bar .header,
  body.admin-bar .header {
    top: 46px;
  }
}
/* Ensure header is below admin bar when present */
#wpadminbar ~ .header {
  top: 32px;
}
@media screen and (max-width: 782px) {
  #wpadminbar ~ .header {
    top: 46px;
  }
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}
@media (max-width: 767px) {
  .header-inner {
    height: 4rem;
    padding: 0 1rem;
  }
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.logo-image {
  height: 1.8rem;
  width: auto;
  object-fit: contain;
}
/* Mobile Logo - Slightly bigger */
@media (max-width: 767px) {
  .logo-image {
    height: 1.5rem;
    max-width: 120px;
  }
}
.logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background-color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-foreground);
}
.logo-text {
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
}
.nav-desktop {
  display: none;
  align-items: center;
  gap: 1.5rem;
}
.nav-desktop button {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.3s ease;
}
.nav-desktop button:hover {
  color: var(--foreground);
}
@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
}
/* ============================================
   Hero Section
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 10rem;
  padding-bottom: 3rem;
  overflow: hidden;
}
@media (max-width: 767px) {
  .hero {
    padding-top: 5rem;
    padding-bottom: 2rem;
  }

  .badge{
    margin-top: 20px !important;
  }
}
/* Adjust hero padding when admin bar is visible */
.admin-bar .hero {
  padding-top: 11rem;
}
@media screen and (max-width: 782px) {
  .admin-bar .hero {
    padding-top: 5.5rem;
  }
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, hsl(150, 25%, 15%) 0%, hsl(150, 30%, 6%) 70%);
}
.hero-glow-1 {
  position: absolute;
  top: 25%;
  right: 25%;
  width: 24rem;
  height: 24rem;
  background-color: hsla(75, 85%, 55%, 0.1);
  border-radius: 50%;
  filter: blur(60px);
  animation: pulse 4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  display: none;
}
.hero-glow-2 {
  position: absolute;
  bottom: 25%;
  left: 25%;
  width: 16rem;
  height: 16rem;
  background-color: hsla(75, 85%, 55%, 0.05);
  border-radius: 50%;
  filter: blur(60px);
  display: none;
}
@media (min-width: 768px) {
  .hero-glow-1, .hero-glow-2 {
    display: block;
  }
}
.hero-content {
  position: relative;
  z-index: 10;
}
.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (max-width: 767px) {
  .hero-grid {
    gap: 3rem;
  }
}
@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}
.hero-text {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .hero-text {
    gap: 2rem;
  }
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background-color: hsla(75, 85%, 55%, 0.1);
  border: 1px solid hsla(75, 85%, 55%, 0.2);
  width: fit-content;
}
.badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: var(--primary);
  animation: pulse 2s infinite;
}
.badge span:last-child {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
}
.hero h1 {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
  color: white !important;
}
@media (min-width: 768px) {
  .hero h1 {
    font-size: 2.75rem;
  }
}
@media (min-width: 1024px) {
  .hero h1 {
    font-size: 3.5rem;
  }
}
.hero-description {
  font-size: 1rem;
  color: var(--muted-foreground);
  max-width: 32rem;
}
@media (min-width: 768px) {
  .hero-description {
    font-size: 1.125rem;
  }
}
.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}
.hero-benefits-mobile {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  padding-top: 0.5rem;
}
@media (min-width: 768px) {
  .hero-benefits-mobile {
    display: none;
  }
}
.hero-benefits-desktop {
  display: none;
  justify-content: center;
  gap: 1.25rem;
  padding-top: 1.25rem;
}
@media (min-width: 768px) {
  .hero-benefits-desktop {
    display: flex;
  }
}
.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.benefit-item span {
  font-size: 0.6875rem;
  font-weight: 500;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .benefit-item {
    gap: 0.375rem;
  }
  
  .benefit-item span {
    font-size: 0.75rem;
  }
}
/* Hero Video */
.hero-video-wrapper {
  position: relative;
}
.hero-video {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 1.5rem;
  overflow: hidden;
}
.video-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, hsla(75, 85%, 55%, 0.2), transparent);
}
.video-play-wrapper {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-play-btn {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-foreground);
  transition: transform 0.3s ease;
}
.video-play-btn:hover {
  transform: scale(1.1);
}
@media (min-width: 768px) {
  .video-play-btn {
    width: 5rem;
    height: 5rem;
  }
}
.video-info {
  position: absolute;
  bottom: 0.5rem;
  left: 0.5rem;
  right: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem;
  border-radius: 0.5rem;
  background-color: hsla(150, 30%, 6%, 0.6);
  backdrop-filter: blur(8px);
}
@media (min-width: 768px) {
  .video-info {
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 0.75rem;
  }
}
.video-info-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background-color: hsla(75, 85%, 55%, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .video-info-icon {
    width: 3rem;
    height: 3rem;
  }
}
.video-info-title {
  font-weight: 600;
  font-size: 0.6875rem;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .video-info-title {
    font-size: 0.875rem;
  }
}
.video-info-subtitle {
  font-size: 0.5625rem;
  color: var(--muted-foreground);
}
@media (min-width: 768px) {
  .video-info-subtitle {
    font-size: 0.75rem;
  }
}
/* Floating Stats */
.floating-stat {
  display: none;
  position: absolute;
  padding: 1rem;
  border-radius: 1rem;
}
@media (min-width: 768px) {
  .floating-stat {
    display: block;
  }
}
.floating-stat-1 {
  top: -1rem;
  left: -2.5rem;
}
.floating-stat-2 {
  bottom: -1.5rem;
  right: -3rem;
}
.floating-stat .stat-value {
  font-size: 1.5rem;
  font-weight: 700;
}
.floating-stat .stat-label {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}
/* ============================================
   Marquee Band
   ============================================ */
.marquee-band {
  position: relative;
  padding: 0.75rem 0;
  background-color: var(--primary);
  overflow: hidden;
}
@media (min-width: 768px) {
  .marquee-band {
    padding: 1.5rem 0;
  }
}
.marquee-fade-left,
.marquee-fade-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 4rem;
  z-index: 10;
}
@media (min-width: 768px) {
  .marquee-fade-left,
  .marquee-fade-right {
    width: 8rem;
  }
}
.marquee-fade-left {
  left: 0;
  background: linear-gradient(to right, var(--primary), transparent);
}
.marquee-fade-right {
  right: 0;
  background: linear-gradient(to left, var(--primary), transparent);
}
.marquee-content {
  display: flex;
  white-space: nowrap;
}
.marquee-item {
  display: flex;
  align-items: center;
  margin: 0 1rem;
}
@media (min-width: 768px) {
  .marquee-item {
    margin: 0 2rem;
  }
}
.marquee-item span:first-child {
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--primary-foreground);
}
@media (min-width: 768px) {
  .marquee-item span:first-child {
    font-size: 1.125rem;
  }
}
.marquee-dot {
  margin-left: 1rem;
  color: hsla(150, 30%, 6%, 0.5);
  font-size: 0.75rem;
}
@media (min-width: 768px) {
  .marquee-dot {
    margin-left: 2rem;
    font-size: 1rem;
  }
}
/* ============================================
   Sections
   ============================================ */
.section {
  position: relative;
  padding: 3rem 0;
}
@media (min-width: 768px) {
  .section {
    padding: 6rem 0;
  }
}
.section-bg-left {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at bottom left, hsl(150, 25%, 12%) 0%, transparent 50%);
}
.section-bg-right {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at top right, hsla(75, 85%, 55%, 0.05) 0%, transparent 50%);
}
.section-bg-center {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, hsl(150, 25%, 12%) 0%, transparent 60%);
}
.section-bg-bottom {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at bottom, hsl(150, 25%, 12%) 0%, transparent 60%);
}
.section-bg-top {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top, hsl(150, 25%, 12%) 0%, transparent 60%);
}
.section-header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 2rem;
  position: relative;
  z-index: 10;
}
@media (min-width: 768px) {
  .section-header {
    margin-bottom: 4rem;
  }
}
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  background-color: hsla(75, 85%, 55%, 0.1);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}
@media (min-width: 768px) {
  .section-badge {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    margin-bottom: 1rem;
  }
}
.section-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
@media (min-width: 768px) {
  .section-header h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .section-header h2 {
    font-size: 3rem;
  }
}
.section-header p {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}
@media (min-width: 768px) {
  .section-header p {
    font-size: 1.125rem;
  }
}
/* ============================================
   Benefits Grid (Why LLC)
   ============================================ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  position: relative;
  z-index: 10;
}
@media (min-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}
.benefit-card {
  padding: 1rem;
  border-radius: 1rem;
  transition: all 0.5s ease;
}
@media (min-width: 768px) {
  .benefit-card {
    padding: 2rem;
    border-radius: 1.5rem;
  }
}
.benefit-card:hover {
  border-color: hsla(75, 85%, 55%, 0.5);
  transform: translateY(-8px);
}
.benefit-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background-color: hsla(75, 85%, 55%, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  color: var(--primary);
  transition: background-color 0.3s ease;
}
@media (min-width: 768px) {
  .benefit-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    margin-bottom: 1.5rem;
  }
}
.benefit-card:hover .benefit-icon {
  background-color: hsla(75, 85%, 55%, 0.2);
}
.benefit-card h3 {
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}
@media (min-width: 768px) {
  .benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
  }
}
.benefit-card p {
  color: var(--muted-foreground);
  font-size: 0.75rem;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .benefit-card p {
    font-size: 1rem;
  }
}
/* ============================================
   Profiles Section
   ============================================ */
.profiles-grid {
  display: grid;
  gap: 2rem;
  position: relative;
  z-index: 10;
}
@media (min-width: 1024px) {
  .profiles-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }
}
.profiles-left {
  text-align: center;
}
@media (min-width: 1024px) {
  .profiles-left {
    text-align: left;
  }
}
.profiles-left h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}
@media (min-width: 768px) {
  .profiles-left h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .profiles-left h2 {
    font-size: 3rem;
  }
}
.profiles-left > p {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .profiles-left > p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
  }
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}
@media (min-width: 768px) {
  .stats-grid {
    gap: 1rem;
  }
}
.stat-card {
  padding: 0.75rem;
  border-radius: 0.75rem;
}
@media (min-width: 768px) {
  .stat-card {
    padding: 1.5rem;
    border-radius: 1rem;
  }
}
.stat-card .stat-value {
  font-size: 1.5rem;
  font-weight: 700;
}
@media (min-width: 768px) {
  .stat-card .stat-value {
    font-size: 2.25rem;
  }
}
.stat-card .stat-label {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-top: 0.125rem;
}
@media (min-width: 768px) {
  .stat-card .stat-label {
    font-size: 0.875rem;
    margin-top: 0.25rem;
  }
}
.profiles-right {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media (min-width: 768px) {
  .profiles-right {
    gap: 1rem;
  }
}
.profile-card {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .profile-card {
    gap: 1.25rem;
    padding: 1.5rem;
    border-radius: 1rem;
  }
}
.profile-card:hover {
  border-color: hsla(75, 85%, 55%, 0.5);
}
.profile-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background-color: hsla(75, 85%, 55%, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.125rem;
}
@media (min-width: 768px) {
  .profile-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    font-size: 1.5rem;
  }
}
.profile-card h3 {
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
  transition: color 0.3s ease;
}
@media (min-width: 768px) {
  .profile-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
  }
}
.profile-card:hover h3 {
  color: var(--primary);
}
.profile-card p {
  color: var(--muted-foreground);
  font-size: 0.75rem;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .profile-card p {
    font-size: 0.875rem;
  }
}
/* ============================================
   Agency Section
   ============================================ */
.agency-grid {
  display: grid;
  gap: 0.75rem;
  max-width: 64rem;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}
@media (min-width: 768px) {
  .agency-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
.agency-card {
  display: flex;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 1rem;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .agency-card {
    gap: 1.25rem;
    padding: 2rem;
    border-radius: 1.5rem;
  }
}
.agency-card:hover {
  border-color: hsla(75, 85%, 55%, 0.5);
}
.agency-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background-color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary-foreground);
  transition: transform 0.3s ease;
}
@media (min-width: 768px) {
  .agency-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
  }
}
.agency-card:hover .agency-icon {
  transform: scale(1.1);
}
.agency-card h3 {
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}
@media (min-width: 768px) {
  .agency-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
  }
}
.agency-card p {
  color: var(--muted-foreground);
  font-size: 0.75rem;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .agency-card p {
    font-size: 1rem;
  }
}
/* ============================================
   Process Section
   ============================================ */
.steps-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 64rem;
  margin: 0 auto 4rem;
  position: relative;
  z-index: 10;
}
@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.step-card {
  position: relative;
  padding: 2rem;
  border-radius: 1.5rem;
  transition: all 0.3s ease;
}
.step-card:hover {
  border-color: hsla(75, 85%, 55%, 0.5);
}
.step-number {
  position: absolute;
  top: -1rem;
  left: -0.5rem;
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background-color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--primary-foreground);
}
.step-duration {
  position: absolute;
  top: -0.75rem;
  right: 1.5rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background-color: hsla(75, 85%, 55%, 0.2);
  border: 1px solid hsla(75, 85%, 55%, 0.3);
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 500;
}
.step-content {
  padding-top: 1rem;
}
.step-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.step-title h3 {
  font-weight: 700;
  font-size: 1.25rem;
}
.step-content p {
  color: var(--muted-foreground);
  line-height: 1.6;
}
.process-stats {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  position: relative;
  z-index: 10;
}
@media (min-width: 768px) {
  .process-stats {
    gap: 5rem;
  }
}
.process-stat {
  text-align: center;
}
.process-stat-value {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.25rem;
}
@media (min-width: 768px) {
  .process-stat-value {
    font-size: 3rem;
    margin-bottom: 0.5rem;
  }
}
.process-stat-label {
  color: var(--muted-foreground);
  font-size: 0.75rem;
}
@media (min-width: 768px) {
  .process-stat-label {
    font-size: 1rem;
  }
}
/* ============================================
   CTA Section
   ============================================ */
.cta-wrapper {
  position: relative;
  max-width: 56rem;
  margin: 0 auto;
  padding: 1.5px;
  border-radius: 1.5rem;
  overflow: hidden;
}
@media (min-width: 768px) {
  .cta-wrapper {
    border-radius: 2rem;
  }
}
.cta-border {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--primary), hsla(75, 85%, 55%, 0.3), var(--primary));
}
.cta-content {
  position: relative;
  padding: 1.5rem;
  border-radius: calc(1.5rem - 1.5px);
  background-color: var(--card);
  text-align: center;
}
@media (min-width: 768px) {
  .cta-content {
    padding: 3rem;
    border-radius: calc(2rem - 1.5px);
  }
}
.cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background-color: var(--primary);
  color: var(--primary-foreground);
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .cta-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    margin-bottom: 1.5rem;
  }
}
.cta-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .cta-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .cta-content h2 {
    font-size: 3rem;
  }
}
.cta-benefits {
  display: grid;
  gap: 0.5rem;
  max-width: 40rem;
  margin: 0 auto 1.5rem;
}
@media (min-width: 640px) {
  .cta-benefits {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}
@media (min-width: 768px) {
  .cta-benefits {
    margin-bottom: 2.5rem;
  }
}
.cta-benefit {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.75rem;
  border-radius: 0.5rem;
  background-color: hsla(150, 20%, 15%, 0.5);
  text-align: left;
}
@media (min-width: 768px) {
  .cta-benefit {
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 0.75rem;
  }
}
.cta-benefit svg {
  flex-shrink: 0;
  margin-top: 0.125rem;
}
.cta-benefit span {
  font-size: 0.75rem;
}
@media (min-width: 768px) {
  .cta-benefit span {
    font-size: 0.875rem;
  }
}
.cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .cta-buttons {
    gap: 1rem;
  }
}
.cta-subtext {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}
@media (min-width: 768px) {
  .cta-subtext {
    font-size: 0.875rem;
  }
}
/* ============================================
   Testimonials Section
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  max-width: 72rem;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}
@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}
.testimonial-card {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid hsla(150, 15%, 20%, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .testimonial-card {
    border-radius: 1.5rem;
  }
}
.testimonial-card:hover {
  border-color: hsla(75, 85%, 55%, 0.5);
}
.testimonial-placeholder {
  position: absolute;
  inset: 0;
}
.testimonial-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsla(0, 0%, 0%, 0.8), transparent, transparent);
}
.testimonial-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonial-play > div,
.testimonial-play svg {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: hsla(255, 255%, 255%, 0.1);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsla(0, 0%, 100%, 0.8);
  transition: transform 0.3s ease;
}
@media (min-width: 768px) {
  .testimonial-play > div,
  .testimonial-play svg {
    width: 6rem;
    height: 6rem;
  }
}
.testimonial-card:hover .testimonial-play > div,
.testimonial-card:hover .testimonial-play svg {
  transform: scale(1.1);
}
.testimonial-mute {
  position: absolute;
  bottom: 0.5rem;
  right: 0.5rem;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background-color: hsla(0, 0%, 0%, 0.5);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: background-color 0.3s ease;
}
@media (min-width: 768px) {
  .testimonial-mute {
    bottom: 1rem;
    right: 1rem;
    width: 2.5rem;
    height: 2.5rem;
  }
}
.testimonial-mute:hover {
  background-color: hsla(0, 0%, 0%, 0.7);
}
.testimonial-mute svg {
  width: 0.75rem;
  height: 0.75rem;
}
@media (min-width: 768px) {
  .testimonial-mute svg {
    width: 1.25rem;
    height: 1.25rem;
  }
}
.testimonial-info {
  position: absolute;
  bottom: 0.5rem;
  left: 0.5rem;
  right: 2rem;
}
@media (min-width: 768px) {
  .testimonial-info {
    bottom: 1rem;
    left: 1rem;
    right: 3.5rem;
  }
}
.testimonial-name {
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 700;
  color: white;
  font-size: 0.75rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (min-width: 768px) {
  .testimonial-name {
    font-size: 1rem;
  }
}
.testimonial-role {
  display: none;
  color: hsla(0, 0%, 100%, 0.7);
  font-size: 0.875rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (min-width: 768px) {
  .testimonial-role {
    display: block;
  }
}
.testimonials-footer {
  text-align: center;
  margin-top: 1.5rem;
  position: relative;
  z-index: 10;
}
@media (min-width: 768px) {
  .testimonials-footer {
    margin-top: 3rem;
  }
}
.testimonials-footer p {
  color: var(--muted-foreground);
  font-size: 0.75rem;
}
@media (min-width: 768px) {
  .testimonials-footer p {
    font-size: 0.875rem;
  }
}
/* ============================================
   FAQ Section
   ============================================ */
.faq-list {
  max-width: 48rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media (min-width: 768px) {
  .faq-list {
    gap: 1rem;
  }
}
.faq-item {
  padding: 0 1rem;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .faq-item {
    padding: 0 1.5rem;
    border-radius: 1rem;
  }
}
.faq-item.open {
  border-color: hsla(75, 85%, 55%, 0.5);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}
@media (min-width: 768px) {
  .faq-question {
    padding: 1.5rem 0;
    font-size: 1.125rem;
  }
}
.faq-item:hover .faq-question {
  color: var(--primary);
}
.faq-chevron {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer {
  max-height: 200px;
  padding-bottom: 1rem;
}
@media (min-width: 768px) {
  .faq-item.open .faq-answer {
    padding-bottom: 1.5rem;
  }
}
.faq-answer p {
  color: var(--muted-foreground);
  font-size: 0.75rem;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .faq-answer p {
    font-size: 1rem;
  }
}
/* ============================================
   Footer
   ============================================ */
.footer {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
}
@media (min-width: 768px) {
  .footer {
    padding: 3rem 0;
  }
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    gap: 1.5rem;
  }
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .footer-nav {
    gap: 1.5rem;
  }
}
.footer-nav a {
  color: var(--muted-foreground);
  font-size: 0.75rem;
  transition: color 0.3s ease;
}
@media (min-width: 768px) {
  .footer-nav a {
    font-size: 0.875rem;
  }
}
.footer-nav a:hover {
  color: var(--foreground);
}
.footer-copyright {
  color: var(--muted-foreground);
  font-size: 0.75rem;
}
@media (min-width: 768px) {
  .footer-copyright {
    font-size: 0.875rem;
  }
}
/* ============================================
   Animations
   ============================================ */
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
@keyframes marquee {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}
.animate-marquee {
  animation: marquee 20s linear infinite;
}
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}
.animate-float {
  animation: float 6s ease-in-out infinite;
}
@keyframes border-glow {
  0%, 100% {
    box-shadow: 0 0 10px hsla(75, 85%, 55%, 0.15), 0 0 20px hsla(75, 85%, 55%, 0.05);
  }
  50% {
    box-shadow: 0 0 15px hsla(75, 85%, 55%, 0.3), 0 0 30px hsla(75, 85%, 55%, 0.1);
  }
}
.animate-border-glow {
  animation: border-glow 2.5s ease-in-out infinite;
}
/* ============================================
   Performance Optimizations
   ============================================ */
/* Optimize animations with will-change */
.animate-marquee,
.animate-float,
.animate-border-glow,
.floating-stat {
  will-change: transform;
}
.hero-glow-1,
.hero-glow-2 {
  will-change: opacity;
}
/* Content visibility for below-the-fold sections */
.section {
  content-visibility: auto;
  contain-intrinsic-size: auto 500px;
}
/* Optimize image loading */
img[loading="lazy"] {
  content-visibility: auto;
}
/* Reduce repaints on scroll */
.header {
  will-change: transform;
  transform: translateZ(0);
}
/* GPU acceleration for smooth animations */
.card-glass,
.btn {
  transform: translateZ(0);
  backface-visibility: hidden;
  perspective: 1000px;
}