/* Market Choice Design System */
:root {
  --navy-900: #0a1628;
  --navy-800: #1a365d;
  --navy-700: #2c5282;
  --gold-400: #ecc94b;
  --gold-500: #d69e2e;
  --gold-600: #b7791f;
  --gray-100: #edf2f7;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e0;
  --gray-400: #a0aec0;
  --gray-500: #718096;
  --gray-600: #4a5568;
  --white: #ffffff;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --shadow-sm: 0 4px 12px rgba(0,0,0,0.15);
  --shadow-md: 0 10px 40px rgba(0,0,0,0.2);
  --shadow-gold: 0 10px 40px rgba(214, 158, 46, 0.25);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--navy-900);
  color: var(--gray-100);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Scroll Progress */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-400));
  z-index: 10000;
  width: 0%;
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 2rem;
  background: rgba(10, 22, 40, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(214, 158, 46, 0.1);
  transition: var(--transition);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--gray-100);
}

.logo svg { width: 40px; height: 40px; }
.logo img { width: 40px; height: 40px; display: block; }
.logo-text { font-weight: 700; font-size: 1.25rem; }
.logo-text span { color: var(--gold-400); }

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

.nav-links a {
  color: var(--gray-300);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: var(--transition);
}

.nav-links a:hover, .nav-links a.active { color: var(--gold-400); }

.nav-cta {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--navy-900) !important;
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--gray-100);
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 1001;
  -webkit-tap-highlight-color: transparent;
  line-height: 1;
  padding: 0.25rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--navy-900);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 48px rgba(214, 158, 46, 0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--gray-100);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-sm { padding: 0.6rem 1.25rem; font-size: 0.9rem; }

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(214, 158, 46, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(26, 54, 93, 0.3) 0%, transparent 40%);
  pointer-events: none;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--gray-400);
  margin-bottom: 2rem;
  max-width: 500px;
}

.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-visual img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-gold);
  animation: float 6s ease-in-out infinite;
}

.hero-logo {
  width: 300px;
  height: 300px;
  animation: float 6s ease-in-out infinite;
}

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

/* Trust Bar */
.trust-bar {
  padding: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(26, 54, 93, 0.2);
}

.trust-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: var(--gray-400);
}

.trust-content span { display: flex; align-items: center; gap: 0.5rem; }

/* Sections */
section { padding: 6rem 2rem; }

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

.section-label {
  color: var(--gold-400);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.section-subtitle { color: var(--gray-400); font-size: 1.1rem; }

/* Problem / Solution */
.problems-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: center;
}

.problem-card, .solution-card {
  padding: 1.5rem;
  border-radius: var(--radius-md);
}

.problem-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--gray-400);
}

.solution-card {
  background: rgba(214, 158, 46, 0.08);
  border: 1px solid rgba(214, 158, 46, 0.15);
  color: var(--gray-200);
}

.problem-card .label, .solution-card .label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.problem-card .label { color: var(--gray-500); }
.solution-card .label { color: var(--gold-400); }

/* Social Proof */
.testimonial {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 3rem;
  background: rgba(26, 54, 93, 0.2);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(214, 158, 46, 0.1);
}

.testimonial blockquote {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial cite {
  font-style: normal;
  color: var(--gray-400);
}

/* Pricing */
.pricing-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.pricing-card {
  background: rgba(26, 54, 93, 0.3);
  border: 1px solid rgba(214, 158, 46, 0.1);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
  transition: var(--transition);
}

.pricing-card:hover {
  transform: translateY(-10px);
  border-color: rgba(214, 158, 46, 0.3);
}

.pricing-card.featured {
  border-color: var(--gold-500);
  transform: scale(1.03);
}

.pricing-card.featured:hover { transform: scale(1.03) translateY(-10px); }

.featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--navy-900);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
}

.pricing-name { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.5rem; }
.pricing-price { font-size: 3rem; font-weight: 800; color: var(--gold-400); }
.pricing-price span { font-size: 1rem; color: var(--gray-500); font-weight: 500; }
.pricing-desc {
  color: var(--gray-400);
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.95rem;
}

.pricing-features { list-style: none; margin-bottom: 2rem; }
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--gray-300);
  font-size: 0.95rem;
}
.pricing-features li::before { content: '✓'; color: var(--gold-500); font-weight: 700; flex-shrink: 0; }

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

/* Case Studies */
.case-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.case-image {
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.case-image img { width: 100%; height: 100%; object-fit: cover; }

.case-badge {
  display: inline-block;
  background: rgba(214, 158, 46, 0.2);
  color: var(--gold-400);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.case-title { font-size: 2rem; font-weight: 700; margin-bottom: 0.5rem; }
.case-location { color: var(--gray-500); margin-bottom: 1.5rem; }

.case-section-title {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-400);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.case-section-text { color: var(--gray-400); line-height: 1.7; margin-bottom: 1.5rem; }

.case-results {
  display: flex;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

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

.case-result .number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold-400);
}

.case-result .label {
  font-size: 0.85rem;
  color: var(--gray-500);
}

/* Work Grid */
.work-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.work-card {
  background: rgba(26, 54, 93, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.work-card:hover {
  transform: translateY(-8px);
  border-color: rgba(214, 158, 46, 0.2);
}

.work-card-image {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  overflow: hidden;
}

.work-card-image img { width: 100%; height: 100%; object-fit: cover; }

.work-card-content { padding: 1.5rem; }
.work-card-title { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.5rem; }
.work-card-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.tag {
  background: rgba(214, 158, 46, 0.1);
  color: var(--gold-400);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* About */
.about-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.about-quote {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 300;
  line-height: 1.6;
  color: var(--gray-200);
  margin-bottom: 2rem;
}

.about-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 4rem;
}

.about-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy-900);
}

.about-name { font-weight: 700; font-size: 1.1rem; }
.about-role { color: var(--gray-500); font-size: 0.9rem; }

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

.diff-card {
  padding: 1.5rem;
  background: rgba(26, 54, 93, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
}

.diff-card .number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold-400);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.diff-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.diff-card p { color: var(--gray-400); font-size: 0.9rem; }

/* Forms */
.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--gray-300);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.875rem 1rem;
  background: rgba(26, 54, 93, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  color: var(--gray-100);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(214, 158, 46, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-500); }

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

/* Audit Tool */
.audit-container {
  max-width: 700px;
  margin: 0 auto;
}

.audit-form {
  background: rgba(26, 54, 93, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: 3rem;
}

.audit-results {
  display: none;
  background: rgba(26, 54, 93, 0.3);
  border: 1px solid rgba(214, 158, 46, 0.2);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-top: 2rem;
}

.audit-results.show { display: block; }

.score-ring {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: conic-gradient(var(--gold-500) 0% 72%, rgba(255,255,255,0.05) 72% 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  position: relative;
}

.score-ring::before {
  content: '';
  position: absolute;
  inset: 8px;
  background: var(--navy-900);
  border-radius: 50%;
}

.score-ring span {
  position: relative;
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold-400);
}

/* Contact */
.contact-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.contact-info p { color: var(--gray-400); margin-bottom: 2rem; }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-detail .icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(214, 158, 46, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-detail h4 { font-size: 0.9rem; margin-bottom: 0.25rem; }
.contact-detail p, .contact-detail a { color: var(--gray-400); font-size: 0.95rem; text-decoration: none; }
.contact-detail a:hover { color: var(--gold-400); }

/* Blog / Insights */
.blog-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.blog-card {
  background: rgba(26, 54, 93, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(214, 158, 46, 0.15);
}

.blog-card-image {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  overflow: hidden;
}

.blog-card-image img { width: 100%; height: 100%; object-fit: cover; }

.blog-card-content { padding: 1.5rem; }
.blog-card-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.75rem;
  font-size: 0.8rem;
  color: var(--gray-500);
}

.blog-card-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; line-height: 1.4; }
.blog-card-excerpt { color: var(--gray-400); font-size: 0.9rem; margin-bottom: 1rem; }

/* CTA Section */
.cta-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.cta-title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; margin-bottom: 1rem; }
.cta-subtitle { color: var(--gray-400); font-size: 1.2rem; margin-bottom: 2rem; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Footer */
footer {
  background: rgba(10, 22, 40, 0.8);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 4rem 2rem 2rem;
}

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

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

.footer-logo { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.footer-logo svg { width: 36px; height: 36px; }
.footer-logo img { width: 36px; height: 36px; display: block; }
.footer-tagline { color: var(--gray-500); font-size: 0.95rem; }
.footer-title { font-weight: 600; font-size: 0.9rem; margin-bottom: 1rem; color: var(--gray-100); }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a { color: var(--gray-500); text-decoration: none; font-size: 0.9rem; transition: var(--transition); }
.footer-links a:hover { color: var(--gold-400); }

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright { color: var(--gray-600); font-size: 0.85rem; }

/* Page Header */
.page-header {
  padding: 10rem 2rem 4rem;
  text-align: center;
  position: relative;
}

.page-header-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(214, 158, 46, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.page-header h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
  position: relative;
}

.page-header p {
  color: var(--gray-400);
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; text-align: center; }
  .hero-subtitle { margin: 0 auto 2rem; }
  .hero-ctas { justify-content: center; }
  .hero-logo { width: 220px; height: 220px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 500px; }
  .pricing-card.featured { transform: none; }
  .case-container { grid-template-columns: 1fr; }
  .differentiators { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .problems-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-menu-btn { display: block; }
  section { padding: 4rem 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .differentiators { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .case-results { gap: 1rem; }
  .audit-form { padding: 1.5rem; }
  .hero { padding: 7rem 1.5rem 3rem; }
  .page-header { padding: 8rem 1.5rem 3rem; }
}

/* ================================================================
   CINEMATIC ANIMATIONS
   ================================================================ */

/* 1. Scroll-triggered reveals */
.reveal {
  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);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }
.reveal-d5 { transition-delay: 0.5s; }
.reveal-d6 { transition-delay: 0.6s; }

/* 2. Hero entrance animations */
.hero-entrance {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.hero-entrance.active {
  opacity: 1;
  transform: translateY(0);
}

/* 3. Shimmer effect on primary CTAs */
.btn-primary {
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  animation: shimmer 3s infinite;
}
@keyframes shimmer {
  0% { left: -100%; }
  50% { left: 150%; }
  100% { left: 150%; }
}

/* 4. Card hover glow + lift */
.pricing-card,
.service-card,
.work-card,
.blog-card,
.solution-card {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.pricing-card:hover,
.service-card:hover,
.work-card:hover,
.blog-card:hover,
.solution-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(214, 158, 46, 0.15),
              0 0 0 1px rgba(214, 158, 46, 0.1);
}

/* 5. Text highlight shimmer */
.highlight {
  background: linear-gradient(90deg, var(--gold-400), #fff, var(--gold-400));
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textShimmer 4s ease-in-out infinite;
}
@keyframes textShimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* 6. Image reveal mask */
.hero-visual img,
.case-image img,
.work-card-image img {
  opacity: 0;
  transform: scale(1.05);
  animation: imageReveal 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.4s forwards;
}
@keyframes imageReveal {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* 7. Navbar scroll behavior */
nav {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              background 0.3s ease;
}

/* 8. Section divider line animation */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
  opacity: 0.3;
  transform: scaleX(0);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.section-divider.active {
  transform: scaleX(1);
}

/* 9. Stat counter glow pulse */
.stat-number {
  text-shadow: 0 0 20px rgba(236, 201, 75, 0.3);
  animation: statPulse 3s ease-in-out infinite;
}
@keyframes statPulse {
  0%, 100% { text-shadow: 0 0 20px rgba(236, 201, 75, 0.2); }
  50% { text-shadow: 0 0 40px rgba(236, 201, 75, 0.5); }
}

/* 10. Smooth section transitions */
section {
  position: relative;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .hero-entrance,
  .highlight,
  .hero-visual img,
  .case-image img,
  .work-card-image img,
  .stat-number {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .btn-primary::after { display: none; }
}


/* FAQ Accordion */
.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: rgba(26, 54, 93, 0.3);
  border: 1px solid rgba(214, 158, 46, 0.1);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item[open] {
  border-color: rgba(214, 158, 46, 0.25);
}

.faq-item summary {
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--gray-100);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gold-400);
  transition: var(--transition);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item summary:hover {
  color: var(--gold-400);
}

.faq-answer {
  padding: 0 1.5rem 1.25rem;
  color: var(--gray-300);
  line-height: 1.7;
  font-size: 0.95rem;
}

.faq-answer a {
  color: var(--gold-400);
  text-decoration: none;
  font-weight: 500;
}

.faq-answer a:hover { text-decoration: underline; }
