/* ========================================
   JK COACHING - STYLE SYSTEM
   Warm gold/brown palette inspired by lifecoach template
   ======================================== */

:root {
  /* Brand Colors (Gold) */
  --primary: #D4AF37;
  --primary-dark: #B28D22;
  --primary-light: #F3E5AB;
  --primary-alpha-20: rgba(212, 175, 55, 0.2);
  --primary-alpha-30: rgba(212, 175, 55, 0.3);

  /* Text (Blue) */
  --text-dark: #0B192C;
  --text-body: #1A365D;
  --text-muted: #31527A;
  --text-light: #5F7F9F;

  /* Backgrounds (Blue/White) */
  --bg-white: #FFFFFF;
  --bg-light: #F5F8FA;
  --bg-cream: #E8EFF5;
  --bg-dark: #0B192C;
  --bg-dark-soft: #14294A;

  /* Borders */
  --border: #C8DBED;
  --border-light: #E2EDF8;

  /* Misc */
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --shadow: 0 4px 24px rgba(11, 25, 44, 0.08);
  --shadow-lg: 0 12px 48px rgba(11, 25, 44, 0.12);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  /* Typography */
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Open Sans', sans-serif;
}

/* ===== RESET ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  line-height: 1.7;
  background: var(--bg-white);
  -webkit-font-smoothing: antialiased;
}

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

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

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  line-height: 1.2;
  font-weight: 700;
}

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196, 149, 106, 0.3);
}

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

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

.btn-lg {
  padding: 18px 40px;
  font-size: 1.05rem;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(58, 42, 30, 0.08);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  color: white;
  transition: var(--transition);
}

.navbar.scrolled .nav-logo {
  color: var(--text-dark);
}

.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: white;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 36px;
}

.nav-links a {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.85);
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: white;
}

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

.navbar.scrolled .nav-links a:hover {
  color: var(--text-dark);
}

.nav-cta {
  padding: 10px 24px;
  background: var(--primary);
  color: white;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  cursor: pointer;
}

.nav-cta:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: white;
  transition: var(--transition);
}

.navbar.scrolled .nav-toggle span {
  background: var(--text-dark);
}

.nav-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(58, 42, 30, 0.85) 0%, rgba(58, 42, 30, 0.5) 50%, rgba(58, 42, 30, 0.3) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 120px 24px 80px;
  margin: 0 auto 0 max(24px, calc((100vw - 1200px) / 2 + 24px));
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: white;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 36px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
}

.trust-text {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.trust-avatars {
  display: flex;
}

.trust-avatars img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  margin-left: -8px;
  object-fit: cover;
}

.trust-avatars img:first-child {
  margin-left: 0;
}

/* ===== TESTIMONIAL MARQUEE ===== */
.testimonial-marquee {
  background: var(--bg-light);
  padding: 48px 24px;
  text-align: center;
}

.marquee-card blockquote {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text-dark);
  font-style: italic;
  max-width: 800px;
  margin: 0 auto 16px;
  line-height: 1.7;
}

.stars {
  color: var(--primary);
  font-size: 1.2rem;
  margin-bottom: 16px;
  letter-spacing: 4px;
}

.marquee-author strong {
  display: block;
  font-family: var(--font-heading);
  color: var(--text-dark);
}

.marquee-author span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ===== SECTION HEADERS ===== */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-tag {
  display: inline-block;
  padding: 6px 20px;
  background: var(--primary-alpha-20);
  color: var(--primary-dark);
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.section-tag.center {
  display: block;
  width: fit-content;
  margin: 0 auto 20px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 16px;
}

.section-header p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* ===== SERVICES ===== */
.services {
  padding: 100px 0;
}

.services-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 12px 28px;
  border: 2px solid var(--border);
  background: transparent;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}

.tab-btn:hover {
  border-color: var(--primary-light);
  color: var(--primary-dark);
}

.tab-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

.service-panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.service-panel.active {
  display: grid;
  animation: fadeIn 0.4s ease;
}

.service-info h3 {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.service-info p {
  margin-bottom: 28px;
  color: var(--text-body);
  font-size: 1.05rem;
  line-height: 1.8;
}

.service-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-image:hover img {
  transform: scale(1.03);
}

/* ===== BENEFITS ===== */
.benefits {
  padding: 100px 0;
  background: var(--bg-light);
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.benefits-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.benefits-image img {
  width: 100%;
  height: 550px;
  object-fit: cover;
}

.benefits-content h2 {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.benefits-intro {
  color: var(--text-muted);
  margin-bottom: 36px;
  font-size: 1.05rem;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.benefit-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.benefit-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--primary-alpha-20);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.benefit-item h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.benefit-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== STATS ===== */
.stats {
  padding: 80px 0;
  background: var(--bg-dark);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
}

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

/* ===== FEATURED SERVICE ===== */
.featured-service {
  padding: 100px 0;
}

.featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.featured-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.featured-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.featured-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

.tag {
  padding: 6px 16px;
  background: var(--primary-alpha-20);
  color: var(--primary-dark);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: var(--font-heading);
}

.featured-content h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.featured-content p {
  color: var(--text-body);
  margin-bottom: 28px;
  line-height: 1.8;
  font-size: 1.05rem;
}

/* ===== SERVICE CARDS ===== */
.service-cards {
  padding: 100px 0;
  background: var(--bg-light);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
  display: block;
}

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

.card-image {
  height: 220px;
  overflow: hidden;
}

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

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

.card h4 {
  padding: 24px 24px 8px;
  font-size: 1.1rem;
}

.card p {
  padding: 0 24px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.card-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 20px 24px;
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}

.card:hover .card-link {
  gap: 12px;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 100px 0;
}

.testimonial-featured {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 56px;
  background: var(--bg-cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.testimonial-quote {
  padding: 56px;
}

.quote-icon {
  color: var(--primary-alpha-30);
  margin-bottom: 20px;
}

.testimonial-quote blockquote {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author strong {
  display: block;
  font-family: var(--font-heading);
  color: var(--text-dark);
  font-size: 1rem;
}

.testimonial-author span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.testimonial-portrait img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.testimonial-card {
  background: var(--bg-light);
  padding: 36px;
  border-radius: var(--radius);
}

.testimonial-card .stars {
  margin-bottom: 12px;
}

.testimonial-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
  color: var(--text-body);
}

/* ===== ABOUT ===== */
.about {
  padding: 100px 0;
  background: var(--bg-light);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 64px;
  align-items: center;
}

.about-content .section-tag {
  margin-bottom: 12px;
}

.about-content h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.about-content p {
  margin-bottom: 16px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-body);
}

.about-content .btn {
  margin-top: 12px;
  margin-bottom: 28px;
}

.about-signature {
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

.signature {
  display: block;
  font-family: 'Georgia', serif;
  font-size: 1.4rem;
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.signature-title {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.about-portrait {
  position: relative;
}

.about-portrait img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  height: 580px;
}

.portrait-caption {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-dark);
  text-align: center;
}

/* ===== CERTIFICATES ===== */
.certificates {
  padding: 60px 0 80px;
}

.cert-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 15%, black 85%, transparent);
}

.cert-track {
  display: flex;
  gap: 60px;
  align-items: center;
  animation: scrollMarquee 30s linear infinite;
  width: max-content;
}

.cert-track img {
  height: auto;
  transition: var(--transition);
}

.cert-track img:hover {
  transform: scale(1.05);
}

@keyframes scrollMarquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ===== CTA ===== */
.cta {
  padding: 100px 0;
  background: var(--bg-dark);
  text-align: center;
}

.cta-content h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: white;
  margin-bottom: 16px;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 560px;
  margin: 0 auto 36px;
  font-size: 1.1rem;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta .btn-secondary {
  border-color: rgba(255, 255, 255, 0.3);
  color: white;
}

.cta .btn-secondary:hover {
  border-color: white;
  background: rgba(255, 255, 255, 0.1);
}

/* ===== FOOTER ===== */
.footer {
  padding: 64px 0 0;
  background: var(--bg-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  margin-top: 16px;
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 340px;
}

.footer-logo .logo-text {
  color: white;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}

.footer-links h4,
.footer-contact h4 {
  color: white;
  font-size: 1rem;
  margin-bottom: 20px;
}

.footer-links ul,
.footer-contact ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}

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

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.footer-contact svg {
  color: var(--primary);
  flex-shrink: 0;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered reveal for benefit items */
.benefit-item.reveal:nth-child(2) {
  transition-delay: 0.1s;
}

.benefit-item.reveal:nth-child(3) {
  transition-delay: 0.2s;
}

.benefit-item.reveal:nth-child(4) {
  transition-delay: 0.3s;
}

/* Cards stagger */
.card.reveal:nth-child(2) {
  transition-delay: 0.15s;
}

.card.reveal:nth-child(3) {
  transition-delay: 0.3s;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .service-panel.active {
    grid-template-columns: 1fr;
  }

  .service-image {
    order: -1;
  }

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

  .benefits-image img {
    height: 400px;
  }

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

  .featured-image img {
    height: 360px;
  }

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

  .about-portrait {
    order: -1;
  }

  .about-portrait img {
    height: 400px;
  }

  .testimonial-featured {
    grid-template-columns: 1fr;
  }

  .testimonial-portrait img {
    min-height: 280px;
    max-height: 340px;
  }

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

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    box-shadow: var(--shadow);
    border-radius: 0 0 var(--radius) var(--radius);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    color: var(--text-dark) !important;
  }

  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-content {
    padding: 140px 24px 60px;
    margin: 0;
  }

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

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

  .hero-buttons .btn {
    text-align: center;
    justify-content: center;
  }

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

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

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

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

  .testimonial-quote {
    padding: 36px;
  }

  .testimonial-quote blockquote {
    font-size: 1.1rem;
  }

  .about-content h2 {
    font-size: 2.2rem;
  }

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

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

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .hero-trust {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .service-info h3 {
    font-size: 1.4rem;
  }

  .benefits-content h2 {
    font-size: 1.6rem;
  }
}

/* ===== SCROLL ANIMATIONS ===== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-fade-in {
  opacity: 0;
  transition: opacity 1s ease-out;
}

.animate-fade-in.is-visible {
  opacity: 1;
}

.animate-scale-up {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-scale-up.is-visible {
  opacity: 1;
  transform: scale(1);
}

.delay-100 {
  transition-delay: 100ms;
}

.delay-200 {
  transition-delay: 200ms;
}

.delay-300 {
  transition-delay: 300ms;
}

.delay-400 {
  transition-delay: 400ms;
}

/* ===== BLUE & GOLD ACCENTS ===== */
.gold-gradient-text,
.section-header h2,
.about-content h2,
.cta-content h2 {
  background: linear-gradient(135deg, var(--primary-light), var(--primary), var(--primary-dark));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.blue-gradient-bg,
.stats,
.cta {
  background: linear-gradient(135deg, var(--bg-dark), var(--bg-dark-soft));
  color: white;
}

.gold-border {
  border-left: 4px solid var(--primary);
  padding-left: 1rem;
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .cert-track {
    animation: none;
  }
}