/* ===== HeaderModel01 ===== */
body > header {
  width: 100%;
}

.site-header-nav.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  background-color: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
  padding: 0;
  height: var(--header-h);
  min-height: var(--header-h);
  color: var(--muted-on-dark);
}

.site-header-nav.is-scrolled,
body:not(.page-home) .site-header-nav.navbar {
  background-color: #0a1628;
  border-bottom-color: var(--navy-border);
  backdrop-filter: blur(12px);
}

.site-header-inner {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  max-width: var(--maxw);
}

.site-logo {
  margin: 0;
  padding: 0;
  flex-shrink: 0;
}

.site-header-nav .navbar-brand {
  padding: 0;
  margin: 0;
}

.logo-icon {
  height: 56px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
}

header .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.28);
  padding: 6px 10px;
}

header .navbar-toggler-icon {
  filter: invert(1);
}

.site-header-menu {
  align-items: center;
  gap: 32px;
}

.site-header-menu .nav-item {
  position: relative;
}

.site-header-menu .nav-link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted-on-dark) !important;
  padding: 8px 0 !important;
  white-space: nowrap;
}

.site-header-menu .nav-link:hover,
.site-header-menu .nav-link.active {
  color: #e8edf4 !important;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.nav-dropdown-caret {
  font-size: 8px;
  line-height: 1;
  transform: scaleX(1.4);
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 240px;
  padding: 12px 0;
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  z-index: 20;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  display: block;
}

.nav-dropdown-menu a {
  display: block;
  padding: 8px 20px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--light-on-dark);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}

.nav-dropdown-menu a:hover {
  color: var(--teal);
}

.site-header-cta {
  flex-shrink: 0;
  margin-left: 8px;
  padding: 10px 22px;
  font-size: 15px;
  letter-spacing: 1px;
  border-radius: 8px;
  white-space: nowrap;
}

.navbar-collapse.show,
.navbar-collapse.collapsing {
  background: var(--navy-card);
  width: 100%;
  padding: 16px;
  border-radius: var(--radius-2xl);
  margin-top: 10px;
  border: 1px solid var(--navy-border);
}

@media (min-width: 992px) {
  .site-header-collapse {
    display: flex !important;
    flex-basis: auto;
    align-items: center;
    justify-content: flex-end;
    gap: 32px;
    background: transparent !important;
    border: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .site-header-menu {
    margin-left: auto;
    margin-right: 0;
    flex-direction: row;
  }

  .navbar-collapse.show,
  .navbar-collapse.collapsing {
    background: transparent;
    width: auto;
    padding: 0;
    margin: 0;
    border: 0;
    border-radius: 0;
  }
}

@media (max-width: 991.98px) {
  .site-header-nav.navbar {
    background-color: #0a1628;
    height: auto;
    min-height: var(--header-h);
  }

  .logo-icon {
    height: 48px;
  }

  .site-header-menu {
    gap: 4px;
    margin-bottom: 12px;
  }

  .site-header-cta {
    width: 100%;
    margin: 8px 0 0;
  }

  .nav-dropdown-menu {
    position: static;
    display: none;
    box-shadow: none;
    border: 0;
    background: transparent;
    padding: 4px 0 8px 12px;
    min-width: 0;
  }

  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu {
    display: block;
  }
}

/* ===== SectionHeroModel01 ===== */
.section-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
  padding: 130px 0 80px;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
}

.hero-overlay {
  background: linear-gradient(135deg, rgba(10, 22, 40, 0.97) 0%, rgba(10, 22, 40, 0.85) 50%, rgba(0, 200, 164, 0.07) 100%);
}

.section-hero .container {
  position: relative;
  z-index: 1;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 200, 164, 0.1);
  border: 1px solid rgba(0, 200, 164, 0.3);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 28px;
}

.hero-kicker-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}

.hero-kicker span {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  color: var(--teal);
  letter-spacing: 2px;
}

.section-hero h1 {
  font-size: clamp(42px, 6.5vw, 80px);
  line-height: 1.05;
  color: var(--hero-text);
  margin-bottom: 24px;
  max-width: 840px;
  font-weight: 800;
}

.section-hero h1 .accent {
  color: var(--teal);
}

.section-hero .hero-lead {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--muted-on-dark);
  line-height: 1.7;
  max-width: 640px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 64px;
}

.hero-actions .btn-es {
  padding: 16px 32px;
  font-size: 17px;
  border-radius: var(--radius-lg);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 1px;
  background: var(--navy-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  max-width: 700px;
}

.hero-stat {
  background: var(--navy-card);
  padding: 18px 20px;
  text-align: center;
}

.hero-stat-value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 26px;
  color: var(--teal);
}

.hero-stat-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  color: var(--hero-text);
  letter-spacing: 0.5px;
  margin-top: 2px;
}

.hero-stat-sub {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--muted-on-dark);
  margin-top: 2px;
}

/* ===== Shared section headers ===== */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .section-title {
  font-size: clamp(34px, 4.5vw, 52px);
}

.section-audience {
  background: var(--white);
  padding: var(--space-section) 0;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.audience-card {
  background: var(--card-soft);
  padding: 36px 28px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  transition: box-shadow 0.2s ease;
}

.audience-card:hover {
  box-shadow: 0 8px 32px rgba(0, 200, 164, 0.12);
}

.audience-card img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  margin-bottom: 16px;
}

.audience-card h3 {
  font-weight: 700;
  font-size: 26px;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.15;
}

.audience-card p {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 28px;
}

.audience-card .audience-cta {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--teal-dark);
}

.audience-card .audience-cta:hover {
  color: var(--teal-btn-hover);
  text-decoration: underline;
}

/* ===== SectionServicesModel01 ===== */
.section-services {
  background: var(--bg-soft);
  padding: var(--space-section) 0;
}

.section-services .section-header {
  margin-bottom: 48px;
}

.services-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 16px;
}

.services-tabs button {
  flex: 1;
  min-width: 140px;
  font-family: var(--font-display);
  font-weight: 700;
  padding: 14px;
  background: var(--white);
  color: var(--text-secondary);
  border: 1px solid #d1d9e0;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s ease;
}

.services-tabs button.is-active,
.services-tabs button:hover {
  background: var(--teal-btn);
  color: var(--white);
  border-color: var(--teal-btn);
}

.service-panel {
  display: none;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.service-panel.is-active {
  display: grid;
}

.service-copy {
  padding: 48px 40px;
}

.service-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  color: var(--teal-dark);
  letter-spacing: 2px;
  background: rgba(0, 200, 164, 0.08);
  padding: 4px 12px;
  border-radius: 4px;
  border: 1px solid rgba(0, 200, 164, 0.2);
}

.service-copy h3 {
  font-weight: 700;
  font-size: 30px;
  color: var(--text-dark);
  margin: 16px 0;
  line-height: 1.2;
}

.service-subtext {
  font-size: 15px;
  color: var(--gold-dark);
  margin-bottom: 20px;
  font-weight: 600;
}

.service-problem-label,
.service-solution-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.service-problem-label {
  color: var(--gold-dark);
}

.service-solution-label {
  color: var(--teal-dark);
}

.service-bullets {
  margin-bottom: 24px;
}

.service-bullets li {
  font-size: 15px;
  color: var(--text-body);
  margin-bottom: 6px;
}

.service-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.service-badge {
  font-size: 13px;
  color: var(--text-dark);
  background: #f0faf7;
  padding: 6px 12px;
  border-radius: 6px;
  border: 1px solid #c8ece4;
}

.service-copy .btn-es {
  padding: 14px 28px;
  font-size: 16px;
}

.service-media {
  min-height: 300px;
  position: relative;
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  min-height: 300px;
}

/* ===== SectionAboutModel01 ===== */
.section-about {
  background: var(--bg-about);
  padding: var(--space-section) 0;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 64px;
  align-items: center;
}

.about-photo-wrap {
  position: relative;
  max-width: 400px;
}

.about-photo {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.14);
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--white);
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 14px 18px;
  max-width: 200px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.about-badge-kicker {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 10px;
  color: var(--gold-dark);
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.about-badge-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: var(--text-dark);
  line-height: 1.3;
}

.about-badge-sub {
  font-size: 11px;
  color: var(--text-secondary);
  margin-top: 3px;
}

.section-about .section-label {
  margin-bottom: 0;
}

.section-about h2 {
  font-size: clamp(34px, 4vw, 50px);
  margin-top: 12px;
  margin-bottom: 20px;
}

.section-about h2 .role {
  display: block;
  color: var(--text-secondary);
  font-size: 0.7em;
  font-weight: 700;
  margin-top: 6px;
}

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

.about-creds {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 12px 0 32px;
}

.about-cred {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  padding: 12px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.about-cred span:last-child {
  font-size: 13px;
  color: var(--text-dark);
  font-weight: 500;
}

.section-about .btn-es {
  padding: 14px 28px;
  font-size: 16px;
}

/* ===== SectionAwardsModel01 ===== */
.section-awards {
  background: var(--white);
  padding: var(--space-section) 0;
}

.section-awards .section-label {
  color: var(--gold-dark);
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.award-card {
  background: var(--bg-award);
  padding: 36px 28px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line-warm);
  border-top: 3px solid var(--gold);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.award-year {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 52px;
  color: #b0892e;
  position: absolute;
  top: 4px;
  right: 12px;
  line-height: 1;
}

.award-meta {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 11px;
  color: var(--gold-dark);
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.award-card h3 {
  font-weight: 700;
  font-size: 22px;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.2;
}

.award-card p {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.6;
  margin: 0;
}

/* ===== SectionTestimonialsModel01 ===== */
.section-testimonials {
  background: var(--bg-soft);
  padding: var(--space-section) 0;
}

.stars-row {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 16px;
}

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

.testimonial-card {
  background: var(--white);
  padding: 36px 28px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.testimonial-card blockquote {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.7;
  font-style: italic;
  margin: 0 0 24px;
}

.testimonial-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--text-dark);
}

.testimonial-role {
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 2px;
}

/* ===== SectionFAQModel01 ===== */
.section-faq {
  background: var(--white);
  padding: var(--space-section) 0;
}

.faq-container {
  max-width: 860px;
  margin: 0 auto;
}

.section-faq .accordion-item {
  background: var(--card-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl) !important;
  margin-bottom: 12px;
  overflow: hidden;
}

.section-faq .accordion-button {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--text-dark);
  background: var(--card-soft);
  box-shadow: none;
  padding: 20px 24px;
}

.section-faq .accordion-button:not(.collapsed) {
  background: var(--white);
  color: var(--text-dark);
}

.section-faq .accordion-button::after {
  filter: none;
}

.section-faq .accordion-body {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.7;
  padding: 0 24px 22px;
}

/* ===== SectionCTAModel01 ===== */
.section-cta {
  background: var(--navy);
  padding: var(--space-section) 0;
  text-align: center;
}

.section-cta .section-label {
  color: var(--teal);
}

.section-cta h2 {
  font-size: clamp(38px, 5.5vw, 64px);
  color: var(--hero-text);
  margin-top: 16px;
  margin-bottom: 24px;
}

.section-cta h2 .accent {
  color: var(--teal);
}

.section-cta .cta-lead {
  font-size: 18px;
  color: var(--muted-on-dark);
  line-height: 1.7;
  margin-bottom: 48px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 56px;
}

.cta-actions .btn-es {
  padding: 18px 40px;
  font-size: 18px;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 40px rgba(0, 200, 164, 0.3);
}

.cta-actions .btn-es-outline {
  padding: 18px 36px;
  box-shadow: none;
}

.cta-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.cta-point {
  text-align: center;
  padding: 20px 16px;
}

.cta-point-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.cta-point h3 {
  font-weight: 700;
  font-size: 18px;
  color: var(--hero-text);
  margin-bottom: 8px;
}

.cta-point p {
  font-size: 14px;
  color: var(--muted-on-dark);
  line-height: 1.6;
  margin: 0;
}

/* ===== FooterModel01 ===== */
.footer {
  background: var(--navy-deep);
  border-top: 1px solid var(--navy-border);
  padding: 48px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-bottom: 48px;
}

.footer-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.footer-tagline {
  font-size: 14px;
  color: var(--muted-on-dark);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 260px;
}

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

.footer-social a {
  color: var(--muted-on-dark);
  transition: color 0.2s ease;
}

.footer-social a:hover {
  color: var(--teal);
}

.footer-col-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--light-on-dark);
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.footer-list li {
  font-size: 13px;
  color: var(--muted-on-dark);
  margin-bottom: 10px;
}

.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contacts a,
.footer-contacts span {
  font-size: 14px;
  color: var(--muted-on-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-contacts a:hover {
  color: var(--teal);
}

.footer-bottom {
  border-top: 1px solid var(--navy-border);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-bottom p,
.footer-dev {
  font-size: 13px;
  color: var(--muted-on-dark);
  margin: 0;
}

.footer-dev {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
}

.footer-dev img {
  height: 28px;
  width: auto;
  object-fit: contain;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.footer-dev a:hover img {
  opacity: 1;
}

/* ===== WhatsApp float ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 50;
  background: #25d366;
  color: var(--white);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  color: var(--white);
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
}

/* ===== Cookie banner ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 60;
  padding: 16px;
}

.cookie-card {
  background: var(--white);
  border: 1px solid var(--line);
  max-width: 480px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  padding: 20px;
}

.cookie-card p {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.6;
  margin: 0;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.cookie-actions .btn-es {
  padding: 8px 20px;
  font-size: 14px;
}

.cookie-decline {
  background: transparent;
  color: var(--text-secondary);
  font-size: 13px;
  padding: 8px 12px;
  cursor: pointer;
}

@media (min-width: 768px) {
  .cookie-banner {
    bottom: 24px;
    left: 24px;
    right: auto;
    padding: 0;
  }
}

@media (max-width: 767.98px) {
  .section-hero {
    padding: 112px 0 64px;
  }

  .hero-actions {
    margin-bottom: 40px;
  }

  .hero-actions .btn-es,
  .cta-actions .btn-es {
    width: 100%;
  }

  .service-copy {
    padding: 32px 24px;
  }

  .about-badge {
    right: 12px;
  }

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

  .section-header,
  .section-audience,
  .section-services,
  .section-about,
  .section-awards,
  .section-testimonials,
  .section-faq,
  .section-cta {
    scroll-margin-top: 88px;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 16px;
  }
}
