/* ========================================
   CSS Variables & Design System
   ======================================== */
:root {
  /* Premium Corporate Theme */
  --background: hsl(220, 25%, 97%);
  --foreground: hsl(220, 45%, 10%);

  --card: hsl(0, 0%, 100%);
  --card-foreground: hsl(220, 45%, 10%);

  /* Deep Navy Primary */
  --primary: hsl(220, 65%, 18%);
  --primary-foreground: hsl(0, 0%, 100%);

  /* Soft Gray Secondary */
  --secondary: hsl(220, 20%, 95%);
  --secondary-foreground: hsl(220, 45%, 15%);

  /* Muted tones */
  --muted: hsl(220, 18%, 92%);
  --muted-foreground: hsl(220, 12%, 50%);

  /* Teal Green Accent */
  --accent: hsl(165, 45%, 40%);
  --accent-foreground: hsl(0, 0%, 100%);

  --border: hsl(220, 18%, 88%);

  /* Extended Navy palette */
  --navy-dark: hsl(220, 65%, 12%);
  --navy-medium: hsl(220, 60%, 22%);
  --navy-light: hsl(220, 50%, 32%);
  --navy-subtle: hsl(220, 40%, 45%);

  /* Premium gradients */
  --gradient-primary: linear-gradient(135deg, hsl(220, 65%, 18%) 0%, hsl(220, 55%, 28%) 100%);
  --gradient-subtle: linear-gradient(180deg, hsl(220, 25%, 97%) 0%, hsl(220, 20%, 94%) 100%);
  --gradient-card: linear-gradient(145deg, hsl(0, 0%, 100%) 0%, hsl(220, 20%, 98%) 100%);
  --gradient-dark: linear-gradient(135deg, hsl(220, 65%, 12%) 0%, hsl(220, 55%, 20%) 100%);
  --gradient-accent: linear-gradient(135deg, hsl(165, 45%, 40%) 0%, hsl(180, 50%, 35%) 100%);
  --gradient-hero: linear-gradient(135deg, hsl(220, 25%, 97%) 0%, hsl(220, 30%, 94%) 50%, hsl(220, 25%, 97%) 100%);

  /* Premium shadows */
  --shadow-xs: 0 1px 2px 0 hsla(220, 45%, 10%, 0.03);
  --shadow-sm: 0 2px 4px -1px hsla(220, 45%, 10%, 0.04), 0 1px 2px -1px hsla(220, 45%, 10%, 0.03);
  --shadow-md: 0 4px 8px -2px hsla(220, 45%, 10%, 0.06), 0 2px 4px -2px hsla(220, 45%, 10%, 0.04);
  --shadow-lg: 0 12px 24px -4px hsla(220, 45%, 10%, 0.08), 0 4px 8px -2px hsla(220, 45%, 10%, 0.04);
  --shadow-xl: 0 24px 48px -8px hsla(220, 45%, 10%, 0.12), 0 8px 16px -4px hsla(220, 45%, 10%, 0.06);
  --shadow-2xl: 0 32px 64px -12px hsla(220, 45%, 10%, 0.16), 0 12px 24px -6px hsla(220, 45%, 10%, 0.08);
  --shadow-header: 0 2px 8px -2px hsla(220, 45%, 10%, 0.08);
  --shadow-glow: 0 0 40px -10px hsla(165, 45%, 40%, 0.25);
  --shadow-card-hover: 0 20px 40px -8px hsla(220, 45%, 10%, 0.12), 0 8px 16px -4px hsla(220, 45%, 10%, 0.06);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, sans-serif;
  background: var(--background);
  background-image: var(--gradient-subtle);
  background-attachment: fixed;
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

img {
  max-width: 100%;
  height: auto;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--secondary);
}

::-webkit-scrollbar-thumb {
  background: hsla(220, 12%, 50%, 0.3);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: hsla(220, 12%, 50%, 0.5);
}

/* ========================================
   Layout Utilities
   ======================================== */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.hidden {
  display: none !important;
}

/* ========================================
   Buttons
   ======================================== */
.btn-premium {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.5rem;
  background: var(--gradient-primary);
  color: var(--primary-foreground);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 0.75rem;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: var(--shadow-lg), 0 4px 12px -2px hsla(220, 65%, 18%, 0.3);
}

.btn-premium::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, hsl(220, 55%, 28%) 0%, hsl(220, 50%, 35%) 100%);
  opacity: 0;
  transition: opacity 0.3s;
}

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

.btn-premium:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl), 0 8px 20px -4px hsla(220, 65%, 18%, 0.4);
}

.btn-premium span {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-premium svg {
  transition: transform 0.3s;
}

.btn-premium:hover svg {
  transform: translateX(4px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.5rem;
  background: var(--card);
  color: var(--foreground);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 0.75rem;
  border: 2px solid var(--border);
  transition: all 0.3s;
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  border-color: var(--primary);
  background: hsla(220, 65%, 18%, 0.05);
  box-shadow: var(--shadow-md);
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1rem;
}

/* ========================================
   Badges
   ======================================== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 9999px;
  box-shadow: var(--shadow-sm);
}

.badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.badge-primary {
  background: hsla(220, 65%, 18%, 0.1);
  color: var(--primary);
  border: 1px solid hsla(220, 65%, 18%, 0.2);
}

.badge-accent {
  background: hsla(165, 45%, 40%, 0.1);
  color: var(--accent);
  border: 1px solid hsla(165, 45%, 40%, 0.2);
}

.badge-light {
  background: hsla(0, 0%, 100%, 0.1);
  color: var(--primary-foreground);
  border: 1px solid hsla(0, 0%, 100%, 0.2);
}

/* ========================================
   Text Utilities
   ======================================== */
.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.text-accent {
  color: var(--accent);
  font-weight: 600;
}

.text-bold {
  color: var(--foreground);
  font-weight: 500;
}

/* ========================================
   Header
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 1.25rem 0;
  transition: all 0.5s;
}

.header.scrolled {
  background: hsla(0, 0%, 100%, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-header);
  padding: 0.75rem 0;
  border-bottom: 1px solid hsla(220, 18%, 88%, 0.5);
}

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

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  width: 2.75rem;
  height: 2.75rem;
  background: var(--gradient-primary);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: box-shadow 0.3s;
}

.logo-link:hover .logo-icon {
  box-shadow: var(--shadow-xl);
}

.logo-icon span {
  color: var(--primary-foreground);
  font-weight: 700;
  font-size: 1.125rem;
}

.logo-text {
  display: none;
}

.logo-title {
  font-weight: 600;
  color: var(--foreground);
  font-size: 1.125rem;
  letter-spacing: -0.02em;
}

.logo-subtitle {
  display: block;
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-top: -0.125rem;
}

/* Desktop Navigation */
.nav-desktop {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  position: relative;
  padding: 0.5rem 1rem;
  color: var(--muted-foreground);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-link:hover {
  color: var(--foreground);
}

.nav-underline {
  position: absolute;
  bottom: 0.25rem;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background: var(--accent);
  border-radius: 9999px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.nav-link:hover .nav-underline {
  transform: scaleX(1);
}

.nav-cta {
  margin-left: 1rem;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem;
  border-radius: 0.75rem;
  background: hsla(220, 20%, 95%, 0.5);
  color: var(--foreground);
  transition: background 0.3s;
}

.mobile-menu-btn:hover {
  background: var(--secondary);
}

/* Mobile Navigation */
.nav-mobile {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: hsla(0, 0%, 100%, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-xl);
  opacity: 0;
  transform: translateY(-1rem);
  pointer-events: none;
  transition: all 0.3s;
}

.nav-mobile.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.nav-mobile-inner {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1.5rem;
}

.nav-mobile-link {
  padding: 0.75rem 1rem;
  color: var(--foreground);
  font-size: 1rem;
  font-weight: 500;
  border-radius: 0.75rem;
  transition: all 0.2s;
}

.nav-mobile-link:hover {
  background: hsla(220, 20%, 95%, 0.5);
  color: var(--primary);
}

.nav-mobile-cta {
  margin: 1rem;
  padding: 0.875rem;
  text-align: center;
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 6rem;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
  background: var(--gradient-hero);
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-circles {
  position: absolute;
  top: 5rem;
  right: 0;
  width: 600px;
  height: 600px;
  opacity: 0.03;
  color: var(--primary);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}

.hero-orb-1 {
  width: 700px;
  height: 700px;
  top: -200px;
  right: -200px;
  background: radial-gradient(circle, hsla(220, 65%, 18%, 0.06) 0%, transparent 60%);
  animation: floatSlow 10s ease-in-out infinite;
}

.hero-orb-2 {
  width: 500px;
  height: 500px;
  bottom: -100px;
  left: -150px;
  background: radial-gradient(circle, hsla(165, 45%, 40%, 0.06) 0%, transparent 60%);
  animation: float 6s ease-in-out infinite;
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.02;
  background-image: 
    linear-gradient(var(--primary) 1px, transparent 1px),
    linear-gradient(90deg, var(--primary) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-radial {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, hsl(220, 25%, 97%) 0%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 10;
}

.hero-grid-layout {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.hero-text {
  max-width: 56rem;
}

.hero-image-wrapper {
  display: none;
}

@media (max-width: 575px) {
  .hero-grid-layout {
    gap: 2rem;
  }

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

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

  .hero-description {
    font-size: 0.9375rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }

  .hero-buttons:last-child {
    margin-bottom: 0px;
  }

  .hero-buttons .btn-premium,
  .hero-buttons .btn-secondary {
    width: 100%;
    justify-content: center;
  }
}

.hero-stats-image {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
  aspect-ratio: 4/3;
}

.hero-stats-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.hero-stats-image:hover img {
  transform: scale(1.05);
}

@media (max-width: 575px) {
  .hero-text {
    order: 2;
  }

  .hero-stats-image {
    border-radius: 1rem;
    margin-bottom: 1rem;
    order: 1;
  }

  .hero-image-wrapper {
    display: block;
    margin-top: 2rem;
  }
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 0%, hsla(220, 65%, 18%, 0.1) 100%);
  pointer-events: none;
}

.hero .badge {
  background: hsla(165, 45%, 40%, 0.1);
  color: var(--accent);
  border: 1px solid hsla(165, 45%, 40%, 0.2);
  margin-bottom: 2rem;
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--foreground);
  line-height: 1.1;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

.title-accent {
  position: relative;
  display: inline-block;
}

.title-accent .text-gradient-accent {
  display: inline;
}

.title-underline {
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 100%;
  height: 0.75rem;
  color: hsla(165, 45%, 40%, 0.3);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--navy-light);
  font-weight: 600;
  margin-bottom: 1rem;
  max-width: 42rem;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 2.5rem;
  max-width: 42rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 4rem;
}

.hero-locations {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.location-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  background: hsla(0, 0%, 100%, 0.8);
  backdrop-filter: blur(8px);
  border-radius: 0.75rem;
  border: 1px solid hsla(220, 18%, 88%, 0.5);
  box-shadow: var(--shadow-sm);
}

.location-card.location-accent {
  background: hsla(165, 45%, 40%, 0.1);
  border-color: hsla(165, 45%, 40%, 0.2);
}

.location-icon {
  color: var(--primary);
}

.location-icon.accent {
  color: var(--accent);
}

.location-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--foreground);
}

.location-title.accent {
  color: var(--accent);
}

.location-subtitle {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.hero-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 8rem;
  background: linear-gradient(to top, var(--background), transparent);
  pointer-events: none;
}

/* ========================================
   About Section
   ======================================== */
.about {
  padding: 6rem 0 8rem;
  background: var(--card);
  position: relative;
}

.about-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.02;
  pointer-events: none;
  background-image: radial-gradient(var(--primary) 1px, transparent 1px);
  background-size: 40px 40px;
}

.about-container {
  position: relative;
  z-index: 10;
}

.about-grid {
  display: grid;
  gap: 4rem;
}

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 2rem;
  line-height: 1.2;
}

.about-lead {
  font-size: 1.25rem;
  color: var(--foreground);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.about-text {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.learn-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-weight: 600;
  font-size: 1.125rem;
  transition: color 0.3s;
}

.learn-more:hover {
  color: var(--accent);
}

.learn-more svg {
  transition: transform 0.3s;
}

.learn-more:hover svg {
  transform: translateX(4px);
}

.approach-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 2rem;
}

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

.approach-card {
  padding: 1.5rem;
  background: var(--background);
  border-radius: 1rem;
  border: 1px solid hsla(220, 18%, 88%, 0.5);
  box-shadow: var(--shadow-sm);
  transition: all 0.5s;
}

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

.approach-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: hsla(165, 45%, 40%, 0.1);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: all 0.5s;
}

.approach-card:hover .approach-icon {
  background: hsla(165, 45%, 40%, 0.2);
  transform: scale(1.1);
}

.approach-icon svg {
  color: var(--accent);
}

.approach-card h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.approach-card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* ========================================
   Why GFS Section
   ======================================== */
.why-gfs {
  padding: 6rem 0 8rem;
  position: relative;
  overflow: hidden;
  background: var(--gradient-dark);
}

.animated-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.bg-shape {
  position: absolute;
  border-radius: 50%;
}

.bg-shape-1 {
  width: 500px;
  height: 500px;
  top: -100px;
  right: -150px;
  background: radial-gradient(circle, hsla(165, 45%, 40%, 0.08) 0%, transparent 70%);
  filter: blur(40px);
  animation: floatSlow 10s ease-in-out infinite;
}

.bg-shape-2 {
  width: 400px;
  height: 400px;
  bottom: -50px;
  left: -100px;
  background: radial-gradient(circle, hsla(220, 50%, 60%, 0.1) 0%, transparent 70%);
  filter: blur(50px);
  animation: float 6s ease-in-out infinite;
}

.bg-shape-3 {
  width: 300px;
  height: 300px;
  top: 40%;
  right: 10%;
  background: radial-gradient(circle, hsla(165, 45%, 40%, 0.06) 0%, transparent 70%);
  filter: blur(30px);
  animation: floatDelayed 8s ease-in-out infinite;
}

.bg-shape-4 {
  width: 250px;
  height: 250px;
  top: 20%;
  left: 5%;
  background: radial-gradient(circle, hsla(220, 65%, 18%, 0.05) 0%, transparent 70%);
  filter: blur(35px);
  animation: pulseSoft 4s ease-in-out infinite;
}

.bg-gradient-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 10rem;
  background: linear-gradient(to top, hsl(220, 65%, 12%), transparent);
}

.why-gfs-container {
  position: relative;
  z-index: 10;
}

.section-header {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 4rem;
}

.section-title-light {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--primary-foreground);
  margin-bottom: 1.5rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: hsla(0, 0%, 100%, 0.7);
}

.reasons-grid {
  display: grid;
  gap: 1.5rem;
}

.reason-card {
  padding: 2rem;
  background: hsla(0, 0%, 100%, 0.05);
  backdrop-filter: blur(8px);
  border-radius: 1rem;
  border: 1px solid hsla(0, 0%, 100%, 0.1);
  transition: all 0.5s;
}

.reason-card:hover {
  background: hsla(0, 0%, 100%, 0.1);
  border-color: hsla(0, 0%, 100%, 0.2);
}

.reason-card-new {
  position: relative;
  background: hsla(0, 0%, 100%, 0.05);
  backdrop-filter: blur(8px);
  border-radius: 1.5rem;
  border: 1px solid hsla(0, 0%, 100%, 0.1);
  overflow: hidden;
  transition: all 0.5s;
}

.reason-card-new:hover {
  background: hsla(0, 0%, 100%, 0.1);
  border-color: hsla(0, 0%, 100%, 0.2);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -8px hsla(0, 0%, 0%, 0.3);
}

.reason-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

.reason-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.reason-card-new:hover .reason-image img {
  transform: scale(1.1);
}

.reason-content {
  padding: 1.5rem;
}

.reason-icon {
  width: 4rem;
  height: 4rem;
  background: hsla(165, 45%, 40%, 0.2);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.5s;
}

.reason-card-new:hover .reason-icon {
  background: hsla(165, 45%, 40%, 0.3);
  transform: scale(1.1);
}

.reason-icon svg {
  color: var(--accent);
}

.reason-card h3,
.reason-card-new h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-foreground);
  margin-bottom: 0.75rem;
}

.reason-card p,
.reason-card-new p {
  color: hsla(0, 0%, 100%, 0.6);
  line-height: 1.6;
}

/* Enhanced Visual Flow Why GFS Layout */
.why-gfs-visual {
  position: relative;
  padding: 4rem 0;
}

@media (max-width: 575px) {
  .why-gfs-visual {
    padding: 3rem 0;
  }
}

.why-gfs-flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  position: relative;
  max-width: 56rem;
  margin: 0 auto;
}

.flow-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  width: 100%;
  z-index: 2;
  padding: 1.5rem;
  border-radius: 1.5rem;
  transition: all 0.4s;
  background: hsla(0, 0%, 100%, 0.03);
}

.flow-item:hover {
  background: hsla(0, 0%, 100%, 0.06);
  transform: translateX(8px);
}

.flow-item:nth-child(even) {
  flex-direction: row-reverse;
}

.flow-item:nth-child(even):hover {
  transform: translateX(-8px);
}

.flow-number {
  position: absolute;
  top: -0.5rem;
  left: 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  background: hsl(220, 65%, 12%);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  border: 2px solid hsla(165, 45%, 40%, 0.3);
  z-index: 10;
  letter-spacing: 0.05em;
}

.flow-item:nth-child(even) .flow-number {
  left: auto;
  right: 1rem;
}

.flow-circle {
  width: 5.5rem;
  height: 5.5rem;
  min-width: 5.5rem;
  border-radius: 50%;
  background: hsla(165, 45%, 40%, 0.15);
  border: 3px solid hsla(165, 45%, 40%, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 20px hsla(165, 45%, 40%, 0.2), inset 0 0 20px hsla(165, 45%, 40%, 0.1);
  overflow: hidden;
}

.flow-circle-glow {
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: radial-gradient(circle, hsla(165, 45%, 40%, 0.4) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
  animation: pulseGlow 3s ease-in-out infinite;
}

.flow-item:hover .flow-circle-glow {
  opacity: 1;
}

.flow-item:hover .flow-circle {
  background: hsla(165, 45%, 40%, 0.25);
  border-color: var(--accent);
  transform: scale(1.2) rotate(5deg);
  box-shadow: 0 8px 40px hsla(165, 45%, 40%, 0.5), 0 0 30px hsla(165, 45%, 40%, 0.3), inset 0 0 30px hsla(165, 45%, 40%, 0.2);
}

.flow-icon {
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.flow-icon svg {
  color: var(--accent);
  transition: all 0.4s;
  filter: drop-shadow(0 2px 4px hsla(165, 45%, 40%, 0.3));
}

.flow-item:hover .flow-icon svg {
  transform: rotate(15deg) scale(1.15);
  filter: drop-shadow(0 4px 8px hsla(165, 45%, 40%, 0.5));
}

.flow-content {
  flex: 1;
  text-align: left;
  position: relative;
}

.flow-item:nth-child(even) .flow-content {
  text-align: right;
}

.flow-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-foreground);
  margin-bottom: 0.75rem;
  line-height: 1.3;
  position: relative;
  display: inline-block;
}

.flow-content h3::after {
  content: "";
  position: absolute;
  bottom: -0.25rem;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  transition: width 0.4s;
}

.flow-item:nth-child(even) .flow-content h3::after {
  left: auto;
  right: 0;
}

.flow-item:hover .flow-content h3::after {
  width: 100%;
}

.flow-content p {
  font-size: 1rem;
  color: hsla(0, 0%, 100%, 0.8);
  line-height: 1.7;
  margin: 0;
}

.flow-connector {
  position: relative;
  width: 3px;
  height: 3.5rem;
  margin: 0 auto;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.connector-line {
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, 
    hsla(165, 45%, 40%, 0.4) 0%, 
    hsla(165, 45%, 40%, 0.6) 50%,
    hsla(165, 45%, 40%, 0.4) 100%);
  border-radius: 2px;
  position: relative;
  animation: flowPulse 2s ease-in-out infinite;
}

.connector-arrow {
  position: absolute;
  bottom: -0.25rem;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid var(--accent);
  filter: drop-shadow(0 2px 4px hsla(165, 45%, 40%, 0.5));
  animation: arrowBounce 1.5s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.1);
  }
}

@keyframes flowPulse {
  0%, 100% {
    opacity: 0.4;
    transform: scaleY(1);
  }
  50% {
    opacity: 0.8;
    transform: scaleY(1.05);
  }
}

@keyframes arrowBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

/* Unique Why GFS Layout (keep old styles but hide) */
.reasons-unique-layout {
  display: none;
}

.reason-featured {
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  transition: transform 0.5s;
}

.reason-featured:hover {
  transform: translateY(-4px);
}

.reason-featured-image {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.reason-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.reason-featured:hover .reason-featured-image img {
  transform: scale(1.05);
}

.image-overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsl(220, 65%, 12%) 0%, transparent 60%);
  z-index: 2;
}

.reason-featured-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 2px 2px, hsla(165, 45%, 40%, 0.15) 1px, transparent 0);
  background-size: 40px 40px;
  z-index: 2;
  opacity: 0.3;
}

.reason-featured-content {
  position: relative;
  z-index: 3;
  padding: 3rem;
  width: 100%;
}

.reason-featured-badge {
  width: 3.5rem;
  height: 3.5rem;
  background: hsla(165, 45%, 40%, 0.9);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-lg);
}

.reason-featured-badge svg {
  color: var(--primary-foreground);
}

.reason-featured-content h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-foreground);
  margin-bottom: 1rem;
}

.reason-featured-content p {
  font-size: 1.125rem;
  color: hsla(0, 0%, 100%, 0.9);
  line-height: 1.7;
  max-width: 42rem;
  margin-bottom: 1.5rem;
}

.reason-featured-highlight {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: hsla(165, 45%, 40%, 0.2);
  backdrop-filter: blur(8px);
  border-radius: 0.75rem;
  border: 1px solid hsla(165, 45%, 40%, 0.3);
}

.highlight-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
}

.highlight-text {
  font-size: 0.875rem;
  color: hsla(0, 0%, 100%, 0.8);
  font-weight: 500;
}

.reason-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-radius: 1.5rem;
  overflow: hidden;
  background: hsla(0, 0%, 100%, 0.05);
  backdrop-filter: blur(8px);
  border: 1px solid hsla(0, 0%, 100%, 0.1);
  transition: all 0.5s;
}

.reason-split:hover {
  background: hsla(0, 0%, 100%, 0.1);
  border-color: hsla(0, 0%, 100%, 0.2);
  transform: translateY(-4px);
}

.reason-split-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
}

.reason-split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.reason-split:hover .reason-split-image img {
  transform: scale(1.1);
}

.reason-split-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: hsla(165, 45%, 40%, 0.9);
  backdrop-filter: blur(8px);
  border-radius: 9999px;
  color: var(--primary-foreground);
  font-weight: 600;
  font-size: 0.875rem;
  box-shadow: var(--shadow-lg);
  z-index: 10;
}

.reason-split-badge svg {
  width: 18px;
  height: 18px;
}

.reason-split-badge-reverse {
  right: auto;
  left: 1.5rem;
}

.reason-split-content {
  padding: 2rem;
}

.reason-split-icon {
  width: 4rem;
  height: 4rem;
  background: hsla(165, 45%, 40%, 0.2);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.5s;
}

.reason-split:hover .reason-split-icon {
  background: hsla(165, 45%, 40%, 0.3);
  transform: scale(1.1);
}

.reason-split-icon svg {
  color: var(--accent);
}

.reason-split-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-foreground);
  margin-bottom: 1rem;
}

.reason-split-content p {
  color: hsla(0, 0%, 100%, 0.7);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.reason-split-stats {
  display: flex;
  gap: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid hsla(0, 0%, 100%, 0.1);
}

.split-stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
}

.stat-label {
  font-size: 0.75rem;
  color: hsla(0, 0%, 100%, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.reason-grid-two {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.reason-compact {
  padding: 2rem;
  background: hsla(0, 0%, 100%, 0.05);
  backdrop-filter: blur(8px);
  border-radius: 1.5rem;
  border: 1px solid hsla(0, 0%, 100%, 0.1);
  transition: all 0.5s;
}

.reason-compact:hover {
  background: hsla(0, 0%, 100%, 0.1);
  border-color: hsla(0, 0%, 100%, 0.2);
  transform: translateY(-4px);
}

.reason-compact-icon {
  width: 4rem;
  height: 4rem;
  background: hsla(165, 45%, 40%, 0.2);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.5s;
}

.reason-compact:hover .reason-compact-icon {
  background: hsla(165, 45%, 40%, 0.3);
  transform: scale(1.1) rotate(5deg);
}

.reason-compact-icon svg {
  color: var(--accent);
}

.reason-compact h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-foreground);
  margin-bottom: 0.75rem;
}

.reason-compact p {
  color: hsla(0, 0%, 100%, 0.7);
  line-height: 1.6;
}

/* ========================================
   Services Section
   ======================================== */
.services {
  padding: 6rem 0 8rem;
  background: var(--background);
  position: relative;
}

.services-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, hsla(220, 20%, 95%, 0.5), transparent);
  pointer-events: none;
}

.services-container {
  position: relative;
  z-index: 10;
}

.section-description {
  color: var(--muted-foreground);
  font-size: 1.125rem;
}

.services-grid {
  display: grid;
  gap: 1.5rem;
}

.service-card {
  position: relative;
  padding: 2rem;
  background: var(--card);
  border-radius: 1rem;
  border: 1px solid hsla(220, 18%, 88%, 0.5);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all 0.5s;
}

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

.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, hsla(165, 45%, 40%, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.5s;
}

.service-card:hover .service-overlay {
  opacity: 1;
}

.service-content {
  position: relative;
  z-index: 10;
}

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

.service-icon {
  width: 4rem;
  height: 4rem;
  background: hsla(165, 45%, 40%, 0.1);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s;
}

.service-card:hover .service-icon {
  background: hsla(165, 45%, 40%, 0.2);
  transform: scale(1.1);
}

.service-icon svg {
  color: var(--accent);
}

.service-arrow {
  color: hsla(220, 12%, 50%, 0.3);
  transition: all 0.3s;
}

.service-card:hover .service-arrow {
  color: var(--accent);
  transform: translate(4px, -4px);
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.service-card p {
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* ========================================
   Industries Section
   ======================================== */
.industries {
  padding: 6rem 0 8rem;
  background: var(--card);
  position: relative;
  overflow: hidden;
}

.industries-bg-1 {
  position: absolute;
  top: 0;
  right: 0;
  width: 24rem;
  height: 24rem;
  background: hsla(165, 45%, 40%, 0.05);
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.industries-bg-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 20rem;
  height: 20rem;
  background: hsla(220, 65%, 18%, 0.05);
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.industries-container {
  position: relative;
  z-index: 10;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 56rem;
  margin: 0 auto;
}

.industry-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--background);
  border-radius: 1rem;
  border: 1px solid hsla(220, 18%, 88%, 0.5);
  box-shadow: var(--shadow-sm);
  transition: all 0.5s;
  cursor: default;
}

.industry-card:hover {
  border-color: hsla(165, 45%, 40%, 0.5);
  background: hsla(165, 45%, 40%, 0.05);
  box-shadow: var(--shadow-md);
}

.industry-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: hsla(165, 45%, 40%, 0.1);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s;
}

.industry-card:hover .industry-icon {
  background: hsla(165, 45%, 40%, 0.2);
  transform: scale(1.1);
}

.industry-icon svg {
  color: var(--accent);
}

.industry-card span {
  font-weight: 500;
  color: var(--foreground);
  text-align: center;
}

/* ========================================
   CPA Team Section
   ======================================== */
.cpa-team {
  padding: 6rem 0 8rem;
  background: linear-gradient(to bottom right, var(--primary), var(--navy-medium), var(--primary));
  position: relative;
  overflow: hidden;
}

.cpa-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.cpa-shape {
  position: absolute;
  border-radius: 50%;
}

.cpa-shape-1 {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -200px;
  background: radial-gradient(circle, hsla(165, 45%, 40%, 0.15) 0%, transparent 60%);
  filter: blur(60px);
  animation: floatSlow 10s ease-in-out infinite;
}

.cpa-shape-2 {
  width: 400px;
  height: 400px;
  bottom: -100px;
  left: -100px;
  background: radial-gradient(circle, hsla(0, 0%, 100%, 0.08) 0%, transparent 60%);
  filter: blur(50px);
  animation: float 6s ease-in-out infinite;
}

.cpa-shape-3 {
  width: 300px;
  height: 300px;
  top: 50%;
  left: 30%;
  background: radial-gradient(circle, hsla(165, 45%, 40%, 0.1) 0%, transparent 60%);
  filter: blur(40px);
  animation: floatDelayed 8s ease-in-out infinite;
}

.cpa-container {
  position: relative;
  z-index: 10;
}

.cpa-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}

.cpa-description {
  font-size: 1.125rem;
  color: hsla(0, 0%, 100%, 0.7);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

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

.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.highlight-item svg {
  color: var(--accent);
  flex-shrink: 0;
}

.highlight-item span {
  font-size: 0.875rem;
  font-weight: 500;
  color: hsla(0, 0%, 100%, 0.8);
}

.cpa-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem;
  background: hsla(0, 0%, 100%, 0.05);
  backdrop-filter: blur(8px);
  border-radius: 1rem;
  border: 1px solid hsla(0, 0%, 100%, 0.1);
  transition: all 0.5s;
}

.feature-card:hover {
  background: hsla(0, 0%, 100%, 0.1);
}

.feature-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: hsla(165, 45%, 40%, 0.2);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon svg {
  color: var(--accent);
}

.feature-text h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--primary-foreground);
  margin-bottom: 0.25rem;
}

.feature-text p {
  font-size: 0.875rem;
  color: hsla(0, 0%, 100%, 0.6);
}

/* ========================================
   CTA Section
   ======================================== */
.cta-section {
  padding: 6rem 0 8rem;
  background: var(--background);
  position: relative;
  overflow: hidden;
}

.cta-bg-1 {
  position: absolute;
  top: 5rem;
  left: 25%;
  width: 18rem;
  height: 18rem;
  background: hsla(165, 45%, 40%, 0.1);
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.cta-bg-2 {
  position: absolute;
  bottom: 5rem;
  right: 25%;
  width: 24rem;
  height: 24rem;
  background: hsla(220, 65%, 18%, 0.05);
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.cta-container {
  position: relative;
  z-index: 10;
}

.cta-card {
  max-width: 56rem;
  margin: 0 auto;
  background: var(--card);
  border-radius: 1.5rem;
  border: 1px solid hsla(220, 18%, 88%, 0.5);
  box-shadow: var(--shadow-2xl);
  overflow: hidden;
}

.cta-accent-bar {
  height: 0.375rem;
  background: linear-gradient(to right, var(--primary), var(--accent), var(--primary));
}

.cta-content {
  padding: 2.5rem;
  text-align: center;
}

@media (max-width: 575px) {
  .cta-content {
    padding: 1.5rem;
    overflow-x: hidden;
  }
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: hsla(165, 45%, 40%, 0.1);
  color: var(--accent);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 9999px;
  border: 1px solid hsla(165, 45%, 40%, 0.2);
  margin-bottom: 2rem;
}

.cta-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--foreground);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.cta-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 42rem;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
}

/* Contact option toggle */
.cta-option-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.375rem;
  background: var(--secondary);
  border-radius: 9999px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  margin-bottom: 2rem;
  flex-wrap: nowrap;
  width: 100%;
  max-width: 100%;
}

.cta-option-btn {
  border-radius: 9999px;
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  background: transparent;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}

.cta-option-btn svg {
  color: var(--muted-foreground);
}

.cta-option-btn.active {
  background: var(--card);
  color: var(--foreground);
  box-shadow: var(--shadow-sm);
}

.cta-option-btn.active svg {
  color: var(--accent);
}

/* Panels */
.cta-panel {
  display: none;
  text-align: left;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.cta-panel.active {
  display: block;
}

@media (max-width: 575px) {
  .cta-panel {
    margin: 0;
    padding: 0;
  }
}

.calendar-embed-wrapper {
  width: 100%;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  background: var(--card);
  min-height: 420px;
  position: relative;
}

.calendar-embed-wrapper iframe {
  width: 100%;
  height: 420px;
  border: 0;
}

.calendar-embed-wrapper .calendly-inline-widget {
  width: 100% !important;
  min-width: 100% !important;
  max-width: 100% !important;
  overflow-x: hidden !important;
}

.calendar-embed-wrapper .calendly-inline-widget > div {
  width: 100% !important;
  max-width: 100% !important;
  overflow-x: hidden !important;
}

@media (max-width: 575px) {
  .calendar-embed-wrapper {
    border-radius: 0.75rem;
    min-height: 600px;
    margin: 0;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden !important;
    box-sizing: border-box;
  }

  .calendar-embed-wrapper .calendly-inline-widget {
    min-width: 100% !important;
    width: 100% !important;
    height: 600px !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
    box-sizing: border-box;
  }

  .calendar-embed-wrapper .calendly-inline-widget > div,
  .calendar-embed-wrapper .calendly-inline-widget iframe {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
    box-sizing: border-box;
  }
}

.cta-panel-note {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--muted-foreground);
  text-align: center;
}

@media (max-width: 575px) {
  .cta-panel-note {
    font-size: 0.85rem;
    padding: 0 0.5rem;
  }
}

/* Contact form styles */
.contact-form {
  text-align: left;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.form-field label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--foreground);
}

.form-field input,
.form-field textarea {
  padding: 0.7rem 0.85rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: var(--background);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--foreground);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background-color 0.2s;
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 575px) {
  .form-field input,
  .form-field textarea {
    padding: 0.75rem;
    font-size: 1rem;
  }
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px hsla(165, 45%, 40%, 0.4);
  background: #fff;
}

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

.form-footer {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}

@media (max-width: 575px) {
  .form-footer {
    gap: 0.5rem;
  }

  .form-footer .btn-premium {
    width: 100%;
  }
}

.form-helper {
  font-size: 0.85rem;
  color: var(--muted-foreground);
}

.form-status {
  margin-top: 0.75rem;
  font-size: 0.9rem;
}

.form-status-pending {
  color: var(--navy-subtle);
}

.form-status-success {
  color: var(--accent);
}

.form-status-error {
  color: #c53030;
}

.cta-contact {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.cta-contact p {
  color: var(--muted-foreground);
  font-size: 0.9375rem;
  line-height: 1.8;
}

.cta-contact a {
  color: var(--primary);
  font-weight: 500;
  transition: color 0.3s;
  word-break: break-word;
}

.cta-contact a:hover {
  color: var(--accent);
}

@media (max-width: 575px) {
  .cta-contact p {
    font-size: 0.875rem;
  }

  .cta-contact a {
    display: block;
    margin-top: 0.25rem;
  }
}

/* ========================================
   Statistics Section
   ======================================== */
.stats-section {
  padding: 5rem 0;
  background: var(--card);
  position: relative;
  overflow: hidden;
}

.stats-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 50%, hsla(165, 45%, 40%, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, hsla(220, 65%, 18%, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.stats-container {
  position: relative;
  z-index: 10;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 56rem;
  margin: 0 auto;
}

.stat-card {
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--background);
  border-radius: 1.5rem;
  border: 1px solid hsla(220, 18%, 88%, 0.5);
  box-shadow: var(--shadow-sm);
  transition: all 0.5s;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s;
}

.stat-card:hover::before {
  transform: scaleX(1);
}

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover);
  border-color: hsla(165, 45%, 40%, 0.3);
}

.stat-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.5rem;
  background: hsla(165, 45%, 40%, 0.1);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s;
}

.stat-card:hover .stat-icon {
  background: hsla(165, 45%, 40%, 0.2);
  transform: scale(1.1) rotate(5deg);
}

.stat-icon svg {
  color: var(--accent);
}

.stat-number-wrapper {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  display: inline-block;
}

.stat-plus {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  display: inline-block;
}

.stat-label {
  font-size: 1rem;
  color: var(--muted-foreground);
  font-weight: 500;
  margin-top: 0.5rem;
}

/* ========================================
   Page Banners
   ======================================== */
.page-banner {
  position: relative;
  padding: 8rem 0 6rem;
  background: var(--gradient-dark);
  overflow: hidden;
  margin-top: 5rem;
}

@media (max-width: 575px) {
  .page-banner {
    padding: 5rem 0 3rem;
    margin-top: 4rem;
  }
}

.page-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, hsl(220, 65%, 12%) 0%, hsl(220, 55%, 18%) 50%, hsl(220, 65%, 12%) 100%);
  opacity: 0.95;
}

.page-banner-about {
  background: linear-gradient(135deg, hsl(220, 65%, 12%) 0%, hsl(220, 60%, 20%) 100%);
}

.page-banner-services {
  background: linear-gradient(135deg, hsl(220, 65%, 12%) 0%, hsl(165, 45%, 25%) 100%);
}

.page-banner-industries {
  background: linear-gradient(135deg, hsl(220, 65%, 12%) 0%, hsl(220, 50%, 22%) 100%);
}

.page-banner-contact {
  background: linear-gradient(135deg, hsl(220, 65%, 12%) 0%, hsl(165, 40%, 30%) 100%);
}

.page-banner-shape {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  /* background: linear-gradient(to bottom, transparent, var(--background)); */
  pointer-events: none;
}

.page-banner-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 56rem;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (max-width: 575px) {
  .page-banner-content {
    padding: 0;
  }
}

.page-banner-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: hsla(165, 45%, 40%, 0.2);
  color: var(--accent);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 9999px;
  border: 1px solid hsla(165, 45%, 40%, 0.3);
  margin-bottom: 2rem;
  backdrop-filter: blur(8px);
}

.page-banner-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-foreground);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.page-banner-subtitle {
  font-size: 1.25rem;
  color: hsla(0, 0%, 100%, 0.8);
  line-height: 1.6;
  max-width: 42rem;
  margin: 0 auto;
}

/* ========================================
   Footer
   ======================================== */
.footer {
  padding: 5rem 0;
  background: var(--gradient-dark);
  position: relative;
  overflow: hidden;
}

.footer-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 24rem;
  height: 24rem;
  background: hsla(165, 45%, 40%, 0.05);
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.footer-container {
  position: relative;
  z-index: 10;
}

.footer-grid {
  display: grid;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.footer-logo-icon {
  width: 3rem;
  height: 3rem;
  background: var(--primary-foreground);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}

.footer-logo-icon span {
  color: var(--primary);
  font-weight: 700;
  font-size: 1.25rem;
}

.footer-logo-title {
  font-weight: 700;
  color: var(--primary-foreground);
  font-size: 1.25rem;
  display: block;
}

.footer-logo-subtitle {
  font-size: 0.875rem;
  color: hsla(0, 0%, 100%, 0.6);
}

.footer-description {
  color: hsla(0, 0%, 100%, 0.6);
  margin-bottom: 2rem;
  max-width: 28rem;
  line-height: 1.7;
}

.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: hsla(0, 0%, 100%, 0.6);
}

.contact-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: hsla(165, 45%, 40%, 0.2);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.footer-contact:hover .contact-icon {
  background: hsla(165, 45%, 40%, 0.3);
}

.contact-icon svg {
  color: var(--accent);
}

.footer-contact a {
  transition: color 0.3s;
}

.footer-contact a:hover {
  color: var(--primary-foreground);
}

.footer-nav h4,
.footer-services h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--primary-foreground);
  margin-bottom: 1.5rem;
}

.footer-nav nav,
.footer-services nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-nav a,
.footer-services a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: hsla(0, 0%, 100%, 0.6);
  transition: all 0.3s;
}

.footer-nav a:hover,
.footer-services a:hover {
  color: var(--primary-foreground);
  transform: translateX(4px);
}

.footer-nav a svg,
.footer-services a svg {
  opacity: 0;
  transition: opacity 0.3s;
}

.footer-nav a:hover svg,
.footer-services a:hover svg {
  opacity: 1;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid hsla(0, 0%, 100%, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.875rem;
  color: hsla(0, 0%, 100%, 0.5);
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: hsla(0, 0%, 100%, 0.5);
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--primary-foreground);
}

/* ========================================
   Animations
   ======================================== */
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(2deg);
  }
}

@keyframes floatSlow {
  0%, 100% {
    transform: translateY(0) translateX(0);
  }
  25% {
    transform: translateY(-15px) translateX(10px);
  }
  50% {
    transform: translateY(-25px) translateX(0);
  }
  75% {
    transform: translateY(-15px) translateX(-10px);
  }
}

@keyframes floatDelayed {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(2deg);
  }
}

@keyframes pulseSoft {
  0%, 100% {
    opacity: 0.4;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.05);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Animation Classes */
.animate-on-scroll {
  opacity: 0;
}

.animate-on-scroll.animated {
  animation-duration: 0.8s;
  animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  animation-fill-mode: forwards;
}

.animate-on-scroll.animated[data-animation="fade-up"] {
  animation-name: fadeUp;
}

.animate-on-scroll.animated[data-animation="slide-left"] {
  animation-name: slideInLeft;
}

.animate-on-scroll.animated[data-animation="slide-right"] {
  animation-name: slideInRight;
}

.animate-on-scroll.animated[data-animation="scale-in"] {
  animation-name: scaleIn;
}

/* ========================================
   Responsive Design
   ======================================== */

/* Mobile First - Base Styles */
@media (max-width: 575px) {
  .container {
    padding: 0 1rem;
  }

  .hero {
    padding-top: 5rem;
    padding-bottom: 3rem;
    min-height: auto;
  }

  .hero-title {
    font-size: 1.75rem;
    line-height: 1.2;
  }

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

  .hero-description {
    font-size: 1rem;
  }

  .page-banner {
    padding: 6rem 0 4rem;
    margin-top: 4rem;
  }

  .page-banner-title {
    font-size: 1.75rem;
    line-height: 1.2;
  }

  .page-banner-subtitle {
    font-size: 1rem;
  }

  .cta-content {
    padding: 1.5rem;
  }

  .cta-title {
    font-size: 1.5rem;
  }

  .cta-description {
    font-size: 1rem;
  }

  .cta-option-toggle {
    width: 100%;
    flex-direction: row;
    gap: 0.5rem;
    padding: 0.25rem;
  }

  .cta-option-btn {
    flex: 1;
    justify-content: center;
    padding: 0.625rem 0.875rem;
    font-size: 0.8125rem;
    white-space: nowrap;
  }

  .cta-option-btn svg {
    width: 16px;
    height: 16px;
  }

  .calendar-embed-wrapper {
    border-radius: 0.75rem;
    min-height: 600px;
    margin: 0;
    width: 100%;
    overflow-x: hidden;
    max-width: 100%;
  }

  .calendar-embed-wrapper .calendly-inline-widget {
    min-width: 100% !important;
    width: 100% !important;
    height: 600px !important;
    max-width: 100% !important;
    overflow-x: hidden;
  }

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

  .flow-item {
    flex-direction: column !important;
    gap: 1.5rem;
    padding: 1.5rem;
    text-align: center;
  }

  .flow-item:nth-child(even) {
    flex-direction: column !important;
  }

  .flow-content {
    text-align: center !important;
  }

  .flow-item:nth-child(even) .flow-content {
    text-align: center !important;
  }

  .flow-number {
    position: static;
    margin-bottom: 1rem;
    display: inline-block;
  }

  .flow-item:nth-child(even) .flow-number {
    position: static;
  }

  .flow-circle {
    width: 4.5rem;
    height: 4.5rem;
    min-width: 4.5rem;
  }

  .flow-icon {
    width: 2.25rem;
    height: 2.25rem;
  }

  .flow-icon svg {
    width: 24px;
    height: 24px;
  }

  .flow-content h3 {
    font-size: 1.25rem;
  }

  .flow-content p {
    font-size: 0.9375rem;
  }

  .flow-connector {
    height: 2.5rem;
  }

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

  .section-title-light {
    font-size: 1.75rem;
  }

  .about-grid {
    gap: 3rem;
  }

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

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

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

  .industry-card {
    padding: 1rem;
  }

  .cpa-grid {
    gap: 3rem;
  }

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

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

  .stat-card {
    padding: 1.5rem 1rem;
  }

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

  .stat-plus {
    font-size: 1.75rem;
  }

  .footer-grid {
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
  .logo-text {
    display: block;
  }

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

  .hero-buttons {
    flex-direction: row;
  }

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

  .cta-buttons {
    flex-direction: row;
  }

  .page-banner-title {
    font-size: 2.75rem;
  }

  .reason-featured-content {
    padding: 2.5rem;
  }

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

  .calendar-embed-wrapper {
    min-height: 500px;
  }

  .calendar-embed-wrapper .calendly-inline-widget {
    height: 500px !important;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }

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

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

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

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

  .section-title-light {
    font-size: 2.25rem;
  }

  .cta-title {
    font-size: 2.25rem;
  }

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

  .reason-split {
    grid-template-columns: 1fr 1fr;
  }

  .reason-split-image {
    height: 100%;
  }

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

  .why-gfs-flow {
    max-width: 64rem;
    gap: 3rem;
  }

  .flow-item {
    gap: 3rem;
    padding: 2rem;
  }

  .flow-number {
    font-size: 0.875rem;
    padding: 0.375rem 1rem;
  }

  .flow-circle {
    width: 6.5rem;
    height: 6.5rem;
    min-width: 6.5rem;
    border-width: 4px;
  }

  .flow-icon {
    width: 3.25rem;
    height: 3.25rem;
  }

  .flow-icon svg {
    width: 36px;
    height: 36px;
  }

  .flow-content h3 {
    font-size: 1.625rem;
  }

  .flow-content p {
    font-size: 1.0625rem;
  }

  .flow-connector {
    height: 4.5rem;
    width: 4px;
  }

  .connector-line {
    width: 3px;
  }

  .page-banner-title {
    font-size: 3rem;
  }

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

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

  .stat-plus {
    font-size: 2.25rem;
  }

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

  .cta-content {
    padding: 4rem;
  }

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

  .calendar-embed-wrapper {
    min-height: 500px;
  }

  .calendar-embed-wrapper .calendly-inline-widget {
    height: 500px !important;
  }

  .flow-item {
    flex-direction: row;
  }

  .flow-item:nth-child(even) {
    flex-direction: row-reverse;
  }

  .flow-content {
    text-align: left;
  }

  .flow-item:nth-child(even) .flow-content {
    text-align: right;
  }

  .flow-number {
    position: absolute;
  }

  .flow-item:nth-child(even) .flow-number {
    position: absolute;
    right: 1rem;
    left: auto;
  }

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

  .footer-company {
    grid-column: span 2;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* Large devices (desktops, 1024px and up) */
@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.5rem;
  }

  .hero-grid-layout {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .hero-image-wrapper {
    display: block;
  }

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

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

  .section-title-light {
    font-size: 2.75rem;
  }

  .cta-title {
    font-size: 2.75rem;
  }

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

  .why-gfs-flow {
    max-width: 72rem;
    gap: 3.5rem;
  }

  .flow-item {
    gap: 3.5rem;
    padding: 2.5rem;
  }

  .flow-number {
    font-size: 1rem;
    padding: 0.5rem 1.25rem;
    top: -0.75rem;
  }

  .flow-circle {
    width: 7.5rem;
    height: 7.5rem;
    min-width: 7.5rem;
    border-width: 4px;
  }

  .flow-icon {
    width: 3.75rem;
    height: 3.75rem;
  }

  .flow-icon svg {
    width: 40px;
    height: 40px;
  }

  .flow-content h3 {
    font-size: 1.75rem;
  }

  .flow-content p {
    font-size: 1.125rem;
  }

  .flow-connector {
    height: 5.5rem;
    width: 4px;
  }

  .connector-line {
    width: 3px;
  }

  .calendar-embed-wrapper {
    min-height: 600px;
  }

  .calendar-embed-wrapper .calendly-inline-widget {
    height: 600px !important;
  }

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

  .page-banner {
    padding: 10rem 0 8rem;
  }

  .page-banner-title {
    font-size: 3.5rem;
  }

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

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

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

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

  .footer-company {
    grid-column: span 1;
  }
}

/* Extra large devices (large desktops, 1280px and up) */
@media (min-width: 1280px) {
  .hero-title {
    font-size: 3.6rem;
  }
}
