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

:root {
  --navy: #0A1628;
  --near-black: #050B14;
  --gold: #C9A84C;
  --gold-dark: #B8973D;
  --white: #FFFFFF;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--gray-800);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}

h1 {
  font-size: 4rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

h2 {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h3 {
  font-size: 1.875rem;
  font-weight: 600;
}

h4 {
  font-size: 1.5rem;
  font-weight: 600;
}

p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--gray-700);
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: var(--navy);
  border-bottom: 2px solid var(--gold);
  box-shadow: 0 4px 24px rgba(10, 22, 40, 0.15);
}

.navbar.scrolled .logo {
  color: var(--white);
}

.navbar.scrolled .logo-accent {
  background: var(--gold);
}

.navbar.scrolled .nav-links a:not(.btn) {
  color: rgba(255, 255, 255, 0.85);
}

.navbar.scrolled .nav-links a:not(.btn):hover {
  color: var(--white);
}

.navbar.scrolled .nav-links a.active:not(.btn) {
  color: var(--gold);
}

.navbar.scrolled .mobile-menu-btn span {
  background: var(--white);
}

.navbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
}

.logo {
  font-size: 1.875rem;
  font-weight: 900;
  color: var(--navy);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  transition: all 0.3s ease;
  letter-spacing: -0.02em;
}

.logo-accent {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 3rem;
  list-style: none;
}

.nav-links a {
  color: var(--gray-700);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9375rem;
  transition: all 0.3s ease;
  position: relative;
}

.nav-links a:not(.btn):hover {
  color: var(--navy);
}

.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:not(.btn):hover::after,
.nav-links a.active:not(.btn)::after {
  width: 100%;
}

.nav-links a.active:not(.btn) {
  color: var(--navy);
  font-weight: 600;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.mobile-menu-btn span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--navy);
  margin: 6px 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}

.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
  font-family: 'Inter', sans-serif;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(201, 168, 76, 0.25);
  animation: pulse-gold 3s ease-in-out infinite;
}

@keyframes pulse-gold {
  0%, 100% {
    box-shadow: 0 4px 12px rgba(201, 168, 76, 0.25);
  }
  50% {
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.4);
  }
}

.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10, 22, 40, 0.2);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline-light:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
}

section {
  padding: 8rem 0;
  position: relative;
}

.section-dark {
  background: var(--navy);
  color: var(--white);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--white);
}

.section-dark p {
  color: rgba(255, 255, 255, 0.9);
}

.section-gray {
  background: var(--gray-50);
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-eyebrow {
  display: inline-block;
  color: var(--gold);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--gold);
  border-radius: 50px;
  background: rgba(201, 168, 76, 0.05);
}

.section-dark .section-eyebrow {
  background: rgba(201, 168, 76, 0.1);
}

.section-header h2 {
  margin-bottom: 1.5rem;
}

.section-header p {
  font-size: 1.3rem;
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.75;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--near-black);
  position: relative;
  overflow: hidden;
  padding: 10rem 0 8rem;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(201, 168, 76, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 70% 60%, rgba(201, 168, 76, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.hero-badge {
  display: inline-block;
  padding: 0.625rem 1.5rem;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 50px;
  color: var(--gold);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
  animation: fadeInDown 0.8s ease-out;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h1 {
  color: var(--white);
  margin-bottom: 2rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  font-size: 4.5rem;
  line-height: 1.1;
}

.hero-headline-word {
  display: inline-block;
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
}

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

.hero p {
  font-size: 1.375rem;
  max-width: 850px;
  margin: 0 auto 3rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.85);
  animation: fadeInUp 0.8s ease-out 0.3s backwards;
}

.hero-buttons {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.5s backwards;
}

.scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

.scroll-indicator svg {
  width: 24px;
  height: 24px;
  color: var(--gold);
}

.floating-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  pointer-events: none;
}

.floating-shape {
  position: absolute;
  border: 1px solid rgba(201, 168, 76, 0.2);
  animation: float 20s infinite ease-in-out;
}

.floating-shape:nth-child(1) {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.floating-shape:nth-child(2) {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  top: 60%;
  right: 15%;
  animation-delay: 4s;
}

.floating-shape:nth-child(3) {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  bottom: 30%;
  left: 80%;
  animation-delay: 8s;
}

.floating-shape:nth-child(4) {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  top: 40%;
  left: 5%;
  animation-delay: 12s;
  transform: rotate(45deg);
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.3;
  }
  25% {
    transform: translateY(-30px) rotate(90deg);
    opacity: 0.5;
  }
  50% {
    transform: translateY(-60px) rotate(180deg);
    opacity: 0.3;
  }
  75% {
    transform: translateY(-30px) rotate(270deg);
    opacity: 0.5;
  }
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  margin-top: 5rem;
}

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

.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

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

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

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

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

.card {
  background: var(--white);
  padding: 3rem;
  border-radius: 16px;
  border: 1px solid var(--gray-200);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(135deg, transparent, transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--gold);
}

.card:hover::before {
  opacity: 1;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}

.card h3 {
  margin-bottom: 1.25rem;
}

.card p {
  font-size: 1.0625rem;
  line-height: 1.75;
}

.card-dark {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.card-dark:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--gold);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  font-size: 2rem;
  box-shadow: 0 8px 16px rgba(201, 168, 76, 0.2);
}

.social-proof {
  background: var(--white);
  padding: 4rem 0;
  text-align: center;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.social-proof p {
  color: var(--gray-600);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-bottom: 3rem;
}

.business-icons {
  display: flex;
  gap: 4rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.business-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  color: var(--gray-600);
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.business-icon:hover {
  color: var(--navy);
}

.business-icon:hover .business-icon-circle {
  border-color: var(--gold);
  background: var(--gray-50);
  transform: translateY(-4px);
}

.business-icon-circle {
  width: 80px;
  height: 80px;
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.steps {
  display: flex;
  gap: 4rem;
  justify-content: center;
  align-items: flex-start;
  position: relative;
}

.step {
  flex: 1;
  text-align: center;
  max-width: 320px;
}

.step-number {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 800;
  margin: 0 auto 2rem;
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.3);
}

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

.step p {
  font-size: 1rem;
  line-height: 1.75;
}

.pricing-card {
  background: var(--navy);
  border: 3px solid var(--gold);
  border-radius: 24px;
  padding: 4rem;
  max-width: 700px;
  margin: 0 auto;
  color: var(--white);
  box-shadow: 0 0 60px rgba(201, 168, 76, 0.3);
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, var(--gold), var(--gold-dark), var(--gold));
  border-radius: 24px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
  animation: glow-border 3s ease-in-out infinite;
}

@keyframes glow-border {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

.pricing-card:hover::before {
  opacity: 1;
}

.pricing-card h3 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.price {
  font-size: 4.5rem;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 0.75rem;
  letter-spacing: -0.03em;
}

.price-period {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 2.5rem;
}

.pricing-features {
  list-style: none;
  margin: 2.5rem 0;
}

.pricing-features li {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.pricing-features li:hover {
  padding-left: 0.5rem;
  color: var(--gold);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.check-icon {
  color: var(--gold);
  font-weight: 700;
  font-size: 1.125rem;
}

.cta-banner {
  background: var(--navy);
  padding: 7rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(201, 168, 76, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 3.5rem;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.375rem;
  margin-bottom: 3rem;
}

.footer {
  background: var(--near-black);
  color: var(--white);
  padding: 5rem 0 2.5rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 4rem;
  gap: 5rem;
}

.footer-brand {
  flex: 1;
}

.footer-brand .logo {
  color: var(--white);
  margin-bottom: 1.25rem;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  max-width: 320px;
  line-height: 1.75;
}

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

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

.footer-links-column a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9375rem;
  transition: all 0.3s ease;
}

.footer-links-column a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-bottom {
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}

.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  margin-bottom: 1.25rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.faq-question {
  width: 100%;
  padding: 1.75rem 2rem;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: var(--gray-50);
}

.faq-answer {
  padding: 0 2rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-answer.open {
  padding: 0 2rem 1.75rem;
  max-height: 600px;
}

.faq-icon {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--gold);
  font-weight: 700;
  font-size: 1.5rem;
}

.faq-icon.open {
  transform: rotate(45deg);
}

.calendly-placeholder {
  background: var(--gray-50);
  border: 2px dashed var(--gray-300);
  border-radius: 16px;
  padding: 8rem 4rem;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  transition: all 0.3s ease;
}

.calendly-placeholder:hover {
  border-color: var(--gold);
  background: var(--white);
}

.calendly-placeholder p {
  font-size: 1.375rem;
  color: var(--gray-600);
  font-weight: 600;
}

.contact-info {
  display: flex;
  gap: 4rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 4rem;
}

.contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.contact-item strong {
  color: var(--navy);
  font-weight: 700;
  font-size: 1.125rem;
}

.contact-item a {
  color: var(--gold);
  text-decoration: none;
  font-size: 1.125rem;
  transition: all 0.3s ease;
}

.contact-item a:hover {
  color: var(--gold-dark);
  transform: translateY(-2px);
}

.step-detail {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 3.5rem;
  margin-bottom: 3.5rem;
  display: flex;
  gap: 2.5rem;
  align-items: start;
  transition: all 0.3s ease;
}

.step-detail:hover {
  border-color: var(--gold);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  transform: translateX(8px);
}

.step-detail-number {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.25rem;
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.3);
}

.step-detail-content h3 {
  margin-bottom: 1.25rem;
  font-size: 1.75rem;
}

.automation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.automation-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.automation-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.automation-card h4 {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

.automation-card p {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.7;
}

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

.value-icon {
  width: 96px;
  height: 96px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 2.5rem;
  box-shadow: 0 12px 32px rgba(201, 168, 76, 0.3);
}

@media (max-width: 1024px) {
  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.25rem;
  }

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

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

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

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

  .footer-content {
    flex-direction: column;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 0;
    gap: 0;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .nav-links li {
    width: 100%;
    text-align: center;
  }

  .nav-links a:not(.btn) {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.5rem;
    padding: 1.5rem;
    display: block;
  }

  .nav-links a:not(.btn):hover {
    color: var(--gold);
    background: rgba(201, 168, 76, 0.1);
  }

  .nav-links .btn {
    margin: 2rem;
    width: calc(100% - 4rem);
  }

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

  .mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translateY(11px);
  }

  .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-11px);
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

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

  .hero {
    min-height: auto;
    padding: 8rem 0 6rem;
  }

  section {
    padding: 5rem 0;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .stats-grid {
    grid-template-columns: 1fr;
  }

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

  .btn {
    width: 100%;
    text-align: center;
  }

  .business-icons {
    gap: 2.5rem;
  }

  .footer-links {
    flex-direction: column;
    gap: 2.5rem;
  }

  .step-detail {
    flex-direction: column;
    padding: 2.5rem;
  }

  .calendly-placeholder {
    padding: 5rem 2.5rem;
  }

  .card {
    padding: 2rem;
  }

  .pricing-card {
    padding: 3rem 2rem;
  }

  .cta-banner h2 {
    font-size: 2.5rem;
  }

  .section-header p {
    font-size: 1.125rem;
  }

  .contact-info {
    gap: 2.5rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }

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

  .container,
  .container-wide {
    padding: 0 20px;
  }

  .price {
    font-size: 3rem;
  }

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

  .cta-banner h2 {
    font-size: 2rem;
  }
}
