/*
Theme Name: GoLinkMedia
Theme URI: https://golinkmedia.com
Author: GoLinkMedia
Author URI: https://golinkmedia.com
Description: GoLinkMedia growth marketing agency WordPress theme — web development, SEO, paid ads, and digital marketing.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: golinkmedia
*/

/* ============================================
   GoLinkMedia — Header & Hero
   ============================================ */

:root {
  --navy: #062B4F;
  --navy-dark: #041e38;
  --orange: #FF8A00;
  --orange-hover: #e67d00;
  --white: #FFFFFF;
  --soft-bg: #F6F9FC;
  --text-dark: #0B172A;
  --text-muted: #64748B;
  --border: #E5E7EB;
  --shadow-sm: 0 1px 3px rgba(6, 43, 79, 0.06);
  --shadow-md: 0 8px 24px rgba(6, 43, 79, 0.08);
  --shadow-lg: 0 20px 50px rgba(6, 43, 79, 0.12);
  --radius: 12px;
  --radius-pill: 999px;
  --max-width: 1200px;
  --header-height: 84px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --orbit-duration: 40s;
  --chart-width-pct: 58%;
  --chart-max: 380px;
  --orbit-scene-size: 720px;
  --orbit-outer-radius: 253px;
  --orbit-inner-radius: 210px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--white);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

/* --------------------------------------------
   Buttons
   -------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition:
    background var(--transition),
    color var(--transition),
    border-color var(--transition),
    box-shadow var(--transition),
    transform var(--transition);
  white-space: nowrap;
}

.btn-arrow {
  transition: transform var(--transition);
}

.btn:hover .btn-arrow {
  transform: translateX(3px);
}

.btn-primary {
  padding: 0.875rem 1.75rem;
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(6, 43, 79, 0.25);
}

.btn-primary:hover {
  background: var(--orange);
  box-shadow: 0 6px 20px rgba(255, 138, 0, 0.35);
  transform: translateY(-1px);
}

.btn-secondary {
  padding: 0.875rem 1.75rem;
  background: var(--white);
  color: var(--navy);
  border: 1.5px solid var(--border);
}

.btn-secondary:hover {
  border-color: var(--navy);
  background: var(--soft-bg);
  transform: translateY(-1px);
}

/* --------------------------------------------
   Header
   -------------------------------------------- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition:
    background var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
  opacity: 0;
  transform: translateY(-12px);
  animation: header-fade-down 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.1s forwards;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  height: 100%;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.header-logo img {
  height: 60px;
  width: auto;
  max-width: none;
  object-fit: contain;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  position: relative;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--navy);
  transition: color var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transition: width var(--transition);
}

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

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

.nav-link.is-active {
  color: var(--orange);
}

.nav-link.is-active::after {
  width: 100%;
}

.nav-item--has-mega {
  position: relative;
}

.nav-link--mega-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

.nav-link--mega-trigger.is-active {
  color: var(--orange);
}

.nav-link__chevron {
  transition: transform 0.25s ease;
}

.nav-item--has-mega.is-mega-open .nav-link__chevron,
.site-header.is-mega-open .nav-link__chevron {
  transform: rotate(180deg);
}

.mega-menu {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  z-index: 999;
  padding: 0 1.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition:
    opacity 0.28s ease,
    visibility 0.28s ease,
    transform 0.28s ease;
}

.nav-item--has-mega.is-mega-open .mega-menu,
.site-header.is-mega-open .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.mega-menu__panel {
  max-width: var(--max-width);
  margin: 0.75rem auto 0;
  padding: 1.5rem;
  background: var(--white);
  border: 0.5px solid #eef0f4;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(15, 42, 74, 0.12);
}

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

@media (max-width: 1024px) {
  .mega-menu__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.mega-menu__item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  transition: background 0.2s ease;
}

.mega-menu__item:hover {
  background: rgba(249, 115, 22, 0.08);
}

.mega-menu__item:hover .mega-menu__name {
  color: #F97316;
}

.mega-menu__icon {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(15, 42, 74, 0.08);
  color: #0F2A4A;
}

.mega-menu__item:hover .mega-menu__icon {
  background: rgba(249, 115, 22, 0.15);
  color: #F97316;
}

.mega-menu__icon svg {
  width: 20px;
  height: 20px;
}

.mega-menu__icon .fa-brands,
.mega-menu__icon .fa-solid {
  font-size: 20px;
  line-height: 1;
}

.mega-menu__text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.mega-menu__name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #0F2A4A;
  transition: color 0.2s ease;
}

.mega-menu__desc {
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--text-muted);
}

.mega-menu__view-all {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #eef0f4;
  font-size: 0.875rem;
  font-weight: 600;
  color: #F97316;
  transition: gap 0.2s ease;
}

.mega-menu__view-all:hover {
  gap: 0.55rem;
  color: #0F2A4A;
}

.btn-header-cta {
  padding: 0.7rem 1.35rem;
  background: var(--navy);
  color: var(--white);
  font-size: 0.875rem;
}

.btn-header-cta:hover {
  background: var(--orange);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(255, 138, 0, 0.3);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  transition: background var(--transition);
}

.hamburger:hover {
  background: var(--soft-bg);
}

.hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition:
    transform var(--transition),
    opacity var(--transition);
}

.hamburger.is-active .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.is-active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* --------------------------------------------
   Hero
   -------------------------------------------- */

.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-height) + 2rem) 1.5rem 3rem;
  overflow: hidden;
  background: var(--white);
}

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

.hero-dot {
  position: absolute;
  border-radius: 50%;
  background: var(--navy);
  opacity: 0.06;
}

.hero-dot--1 {
  width: 8px;
  height: 8px;
  top: 18%;
  left: 8%;
}

.hero-dot--2 {
  width: 6px;
  height: 6px;
  top: 65%;
  left: 15%;
}

.hero-dot--3 {
  width: 10px;
  height: 10px;
  bottom: 20%;
  right: 12%;
}

.hero-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(6, 43, 79, 0.06);
}

.hero-circle--1 {
  width: 320px;
  height: 320px;
  top: -80px;
  right: -60px;
}

.hero-circle--2 {
  width: 180px;
  height: 180px;
  bottom: 10%;
  left: -40px;
  border-color: rgba(255, 138, 0, 0.08);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  column-gap: 3rem;
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
}

.hero-left {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0;
}

.hero-text {
  text-align: left;
}

.hero-actions.hero-buttons {
  margin-top: 24px;
}

.hero-stats {
  margin-top: 32px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.hero-visual {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-heading {
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: #0F2A4A;
  margin: 0 0 1.25rem;
}

.hero-highlight {
  background: linear-gradient(90deg, #F97316, #FB923C);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.hero-subheading {
  max-width: 520px;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-bottom: 0;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.hero-stat strong {
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.hero-stat span {
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-weight: 500;
}

.hero-stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}


/* Orbit visual */
.orbit-scene {
  position: relative;
  width: min(100%, var(--orbit-scene-size));
  aspect-ratio: 1;
}

.orbit-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 65%;
  height: 65%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    transparent 0%,
    rgba(255, 138, 0, 0.1) 55%,
    rgba(15, 42, 74, 0.08) 75%,
    transparent 100%
  );
  filter: blur(28px);
  z-index: 0;
  pointer-events: none;
}

.orbit-rings {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.orbit-ring-track {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 1px dashed rgba(148, 163, 184, 0.35);
  transform: translate(-50%, -50%);
}

.orbit-ring-track--outer {
  width: calc(var(--orbit-outer-radius) * 2 + 56px);
  height: calc(var(--orbit-outer-radius) * 2 + 56px);
  animation: ring-spin var(--orbit-duration) linear infinite;
}

.orbit-ring-track--inner {
  width: calc(var(--orbit-inner-radius) * 2 + 56px);
  height: calc(var(--orbit-inner-radius) * 2 + 56px);
  animation: ring-spin var(--orbit-duration) linear infinite reverse;
}

.orbit-icons {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.orbit-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 56px;
  height: 56px;
  margin: -28px 0 0 -28px;
  transform: rotate(var(--angle)) translateX(var(--orbit-radius)) rotate(calc(-1 * var(--angle)));
}

.orbit-icon--outer {
  --orbit-radius: var(--orbit-outer-radius);
}

.orbit-icon--inner {
  --orbit-radius: var(--orbit-inner-radius);
}

.icon-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  padding: 12px;
  background: #ffffff;
  border: 0.5px solid #eaeaea;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  animation: floatY 4s ease-in-out infinite;
  animation-delay: var(--float-delay, 0s);
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.icon-chip:hover {
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
}

.icon-chip img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.chart-visual-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--chart-width-pct);
  max-width: var(--chart-max);
  padding: 0;
  background: transparent;
  box-shadow: none;
  border: none;
  animation: chart-float 5s ease-in-out infinite;
}

.chart-main-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  background: transparent;
  mix-blend-mode: normal;
}

.orbit-hub {
  width: 44%;
  max-width: 190px;
  padding: 1rem 1.25rem;
  background: var(--white);
  border: 0.5px solid #eef0f4;
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(15, 42, 74, 0.1);
}

.orbit-hub__logo {
  width: 100%;
  height: auto;
  max-height: 58px;
  object-fit: contain;
}

/* --------------------------------------------
   Animations
   -------------------------------------------- */

@keyframes header-fade-down {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ring-spin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

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

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

.animate-in {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* --------------------------------------------
   Responsive — Laptop
   -------------------------------------------- */

@media (max-width: 1200px) {
  :root {
    --chart-width-pct: 58%;
    --chart-max: 360px;
    --orbit-scene-size: 660px;
    --orbit-outer-radius: 237px;
    --orbit-inner-radius: 197px;
  }
}

/* --------------------------------------------
   Responsive — Tablet
   -------------------------------------------- */

@media (max-width: 1024px) {
  :root {
    --chart-width-pct: 58%;
    --chart-max: 320px;
    --orbit-scene-size: 560px;
    --orbit-outer-radius: 210px;
    --orbit-inner-radius: 175px;
  }

  .header-logo img {
    height: 52px;
  }

  .hero-inner {
    column-gap: 2rem;
  }

  .nav-list {
    gap: 1.5rem;
  }
}

/* --------------------------------------------
   Responsive — Mobile
   -------------------------------------------- */

@media (max-width: 768px) {
  :root {
    --chart-width-pct: 70%;
    --chart-max: 260px;
    --orbit-scene-size: 400px;
    --orbit-outer-radius: 163px;
    --orbit-inner-radius: 135px;
  }

  .header-logo img {
    height: 44px;
  }

  .hamburger {
    display: flex;
    z-index: 1001;
  }

  .header-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 85vw);
    height: 100vh;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 2rem;
    padding: calc(var(--header-height) + 2rem) 2rem 2rem;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-left: 1px solid var(--border);
    box-shadow: -8px 0 30px rgba(6, 43, 79, 0.08);
    transform: translateX(100%);
    transition: transform var(--transition);
    z-index: 1000;
  }

  .header-nav.is-open {
    transform: translateX(0);
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    width: 100%;
  }

  .nav-item--has-mega {
    width: 100%;
  }

  .mega-menu {
    position: static;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    pointer-events: none;
    transform: none;
    transition: max-height 0.35s ease;
  }

  .nav-item--has-mega.is-mega-open .mega-menu {
    max-height: 1200px;
    pointer-events: auto;
    margin-top: 0.5rem;
  }

  .mega-menu__panel {
    margin: 0;
    padding: 0.75rem 0 0;
    border: none;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
  }

  .mega-menu__grid {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .mega-menu__item {
    padding: 0.65rem 0.5rem;
  }

  .mega-menu__view-all {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
  }

  .nav-link {
    font-size: 1.0625rem;
  }

  .btn-header-cta {
    width: 100%;
    padding: 0.875rem 1.5rem;
    font-size: 0.9375rem;
  }

  .hero {
    display: flex;
    flex-direction: column;
    min-height: auto;
    padding-top: calc(var(--header-height) + 1.5rem);
    padding-bottom: 2.5rem;
  }

  .hero-inner {
    display: flex;
    flex-direction: column;
    gap: 0;
    grid-template-columns: unset;
    grid-template-rows: unset;
  }

  .hero-left {
    display: contents;
  }

  .hero-visual {
    order: 1;
    grid-column: unset;
    grid-row: unset;
    width: 100%;
    margin-bottom: 0;
  }

  .hero-text {
    order: 2;
    text-align: center;
    width: 100%;
    margin-top: 2rem;
  }

  .hero-heading,
  .hero-subheading {
    text-align: center;
  }

  .hero-subheading {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
  }

  .hero-actions.hero-buttons {
    order: 3;
    grid-column: unset;
    grid-row: unset;
    display: flex;
    flex-direction: row;
    gap: 12px;
    justify-content: center;
    width: 100%;
    margin-top: 28px;
  }

  .hero-actions.hero-buttons .btn {
    flex: 1;
    white-space: nowrap;
    padding: 0.75rem 0.875rem;
    font-size: 0.8125rem;
  }

  .hero-stats {
    order: 4;
    grid-column: unset;
    grid-row: unset;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
    text-align: center;
    width: 100%;
    margin-top: 36px;
  }

  .hero-stat {
    flex: 1;
    align-items: center;
  }

  .hero-stat strong {
    font-size: 20px;
  }

  .hero-stat span {
    font-size: 11px;
  }

  .hero-stat-divider {
    width: 1px;
    height: 32px;
    flex-shrink: 0;
    align-self: center;
  }

  .orbit-icon {
    width: 48px;
    height: 48px;
    margin: -24px 0 0 -24px;
  }

  .icon-chip {
    width: 48px;
    height: 48px;
    padding: 10px;
    border-radius: 12px;
  }

  .icon-chip img {
    width: 28px;
    height: 28px;
  }

  .orbit-ring-track--outer {
    width: calc(var(--orbit-outer-radius) * 2 + 48px);
    height: calc(var(--orbit-outer-radius) * 2 + 48px);
  }

  .orbit-ring-track--inner {
    width: calc(var(--orbit-inner-radius) * 2 + 48px);
    height: calc(var(--orbit-inner-radius) * 2 + 48px);
  }
}

@media (max-width: 480px) {
  .hero-actions.hero-buttons .btn {
    padding: 0.7rem 0.625rem;
    font-size: 0.75rem;
  }

  .hero-stat strong {
    font-size: 18px;
  }

  .hero-stat span {
    font-size: 10px;
  }
}

/* --------------------------------------------
   Our Clients (logo slider)
   -------------------------------------------- */

.logo-slider {
  padding: 80px 0 64px;
  background: var(--white);
}

.logo-slider__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.logo-slider__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.logo-slider__eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #F97316;
}

.logo-slider__title {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0F2A4A;
}

.logo-slider__subline {
  max-width: 520px;
  margin: 0 auto;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.logo-slider__viewport {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.logo-slider__fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.logo-slider__fade--left {
  left: 0;
  background: linear-gradient(to right, var(--white) 0%, transparent 100%);
}

.logo-slider__fade--right {
  right: 0;
  background: linear-gradient(to left, var(--white) 0%, transparent 100%);
}

.logo-slider__track {
  display: flex;
  width: max-content;
  animation: scrollLogos 25s linear infinite;
}

.logo-slider__track:hover {
  animation-play-state: paused;
}

.logo-slider__group {
  display: flex;
  align-items: center;
  gap: 64px;
  padding-right: 64px;
}

.logo-slider__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-slider__logo img {
  height: 55px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  filter: none;
  opacity: 1;
}

@keyframes scrollLogos {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (max-width: 768px) {
  .logo-slider {
    padding: 64px 0 48px;
  }

  .logo-slider__inner {
    padding: 0 1rem;
  }

  .logo-slider__header {
    margin-bottom: 2rem;
  }

  .logo-slider__eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
  }

  .logo-slider__subline {
    font-size: 0.875rem;
  }

  .logo-slider__fade {
    width: 48px;
  }

  .logo-slider__group {
    gap: 40px;
    padding-right: 40px;
  }

  .logo-slider__logo img {
    height: 40px;
    max-width: 120px;
  }
}

/* --------------------------------------------
   Services
   -------------------------------------------- */

.services {
  padding: 80px 1.5rem;
  background: #FFFFFF;
}

.services__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.services__header {
  text-align: center;
  margin-bottom: 3rem;
}

.services__eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #F97316;
}

.services__title {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0F2A4A;
}

.services__subline {
  max-width: 560px;
  margin: 0 auto;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-muted);
}

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

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px;
  background: var(--white);
  border: 0.5px solid #eef0f4;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(15, 42, 74, 0.06);
  cursor: pointer;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(15, 42, 74, 0.1);
}

.service-card__index {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
  opacity: 0.5;
}

.service-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 1.25rem;
  background: rgba(15, 42, 74, 0.06);
  border-radius: 14px;
  color: #0F2A4A;
  transition: background 0.3s ease, color 0.3s ease;
}

.service-card__icon svg {
  width: 26px;
  height: 26px;
  stroke-width: 1.75;
}

.service-card__icon .fa-brands,
.service-card__icon .fa-solid {
  font-size: 26px;
  line-height: 1;
}

.service-card:hover .service-card__icon {
  background: #F97316;
  color: var(--white);
}

.service-card__title {
  margin: 0 0 0.75rem;
  font-size: 1.1875rem;
  font-weight: 700;
  color: #0F2A4A;
  line-height: 1.3;
}

.service-card__desc {
  margin: 0;
  flex: 1;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #F97316;
  transition: gap 0.3s ease;
}

.service-card__link:hover {
  gap: 0.5rem;
}

a.service-card {
  text-decoration: none;
  color: inherit;
}

.service-card--link .service-card__link {
  margin-top: auto;
}

/* Services page */
.page-hero {
  padding: calc(var(--header-height) + 48px) 1.5rem 48px;
  background: var(--white);
  text-align: center;
}

.page-hero__inner {
  max-width: 720px;
  margin: 0 auto;
}

.page-hero__eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #F97316;
}

.page-hero__title {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #0F2A4A;
}

.page-hero__subline {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.services-page {
  padding: 0 1.5rem 80px;
  background: var(--white);
}

.services-page .services__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.services-cta {
  padding: 64px 1.5rem 80px;
  background: #F8FAFC;
  text-align: center;
}

.services-cta__inner {
  max-width: 560px;
  margin: 0 auto;
}

.services-cta__title {
  margin: 0 0 1.5rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: #0F2A4A;
}

@media (max-width: 640px) {
  .page-hero {
    padding: calc(var(--header-height) + 32px) 1rem 32px;
  }

  .services-page {
    padding: 0 1rem 64px;
  }

  .services-cta {
    padding: 48px 1rem 64px;
  }
}

.page-hero__intro {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: #334155;
}

.services-why {
  padding: 64px 1.5rem;
  background: #F8FAFC;
}

.services-why__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}

.services-why__title {
  margin: 0 0 2.5rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: #0F2A4A;
}

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

.services-why__item {
  padding: 1.5rem;
  background: var(--white);
  border: 0.5px solid #eef0f4;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(15, 42, 74, 0.05);
}

.services-why__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 1rem;
  border-radius: 12px;
  background: rgba(249, 115, 22, 0.12);
  color: #F97316;
}

.services-why__icon svg {
  width: 22px;
  height: 22px;
}

.services-why__item h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: #0F2A4A;
}

.services-why__item p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* Service detail pages */
.service-detail-hero {
  padding: calc(var(--header-height) + 48px) 1.5rem 56px;
  background: var(--white);
  text-align: center;
}

.service-detail-hero__inner {
  max-width: 800px;
  margin: 0 auto;
}

.service-detail-hero__eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #F97316;
}

.service-detail-hero__title {
  margin: 0 0 1.25rem;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #0F2A4A;
}

.service-detail-hero__intro {
  margin: 0 0 2rem;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: #334155;
}

.service-detail-hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.service-section {
  padding: 64px 1.5rem;
}

.service-section--alt {
  background: #F8FAFC;
}

.service-section__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.service-section__title {
  margin: 0 0 2rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0F2A4A;
  text-align: center;
}

.service-included__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.service-included__card {
  padding: 1.5rem;
  background: var(--white);
  border: 0.5px solid #eef0f4;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(15, 42, 74, 0.05);
}

.service-section--alt .service-included__card {
  border-color: #e8ecf0;
}

.service-included__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 1rem;
  border-radius: 12px;
  background: rgba(15, 42, 74, 0.08);
  color: #0F2A4A;
}

.service-included__icon svg {
  width: 22px;
  height: 22px;
}

.service-included__card h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: #0F2A4A;
}

.service-included__card p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.service-benefits__content {
  max-width: 800px;
  margin: 0 auto;
}

.service-benefits__content p {
  margin: 0 0 1rem;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: #334155;
}

.service-benefits__list {
  margin: 1.25rem 0 0;
  padding-left: 1.25rem;
}

.service-benefits__list li {
  margin-bottom: 0.5rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #334155;
}

.service-benefits__list li::marker {
  color: #F97316;
}

.service-process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-process__step {
  padding: 1.5rem;
  background: var(--white);
  border: 0.5px solid #eef0f4;
  border-radius: 16px;
  text-align: center;
}

.service-section--alt .service-process__step {
  box-shadow: 0 8px 24px rgba(15, 42, 74, 0.05);
}

.service-process__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 0.85rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #F97316, var(--orange));
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 800;
}

.service-process__step h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
  font-weight: 700;
  color: #0F2A4A;
}

.service-process__step p {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.service-faq {
  max-width: 760px;
  margin: 0 auto;
}

.service-faq__item {
  border: 0.5px solid #eef0f4;
  border-radius: 12px;
  margin-bottom: 0.75rem;
  background: var(--white);
  overflow: hidden;
}

.service-section--alt .service-faq__item {
  border-color: #e8ecf0;
}

.service-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #0F2A4A;
  cursor: pointer;
  list-style: none;
}

.service-faq__question::-webkit-details-marker {
  display: none;
}

.service-faq__question::after {
  content: '+';
  flex-shrink: 0;
  font-size: 1.25rem;
  font-weight: 400;
  color: #F97316;
  transition: transform 0.2s ease;
}

.service-faq__item[open] .service-faq__question::after {
  content: '−';
}

.service-faq__answer {
  padding: 0 1.25rem 1.15rem;
}

.service-faq__answer p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.service-related {
  padding: 0 1.5rem 48px;
  background: var(--white);
}

.service-related__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}

.service-related__title {
  margin: 0 0 1rem;
  font-size: 1rem;
  font-weight: 600;
  color: #0F2A4A;
}

.service-related__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
}

.service-related__links a {
  padding: 0.45rem 0.9rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #0F2A4A;
  background: #F8FAFC;
  border: 0.5px solid #eef0f4;
  border-radius: var(--radius-pill);
  transition: background 0.2s ease, color 0.2s ease;
}

.service-related__links a:hover {
  background: #F97316;
  color: var(--white);
  border-color: #F97316;
}

.service-breadcrumb {
  max-width: var(--max-width);
  margin: 0 auto 1.5rem;
  padding: 0 1.5rem;
  padding-top: calc(var(--header-height) + 16px);
  font-size: 0.8125rem;
}

.service-breadcrumb a {
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.service-breadcrumb a:hover {
  color: #F97316;
}

.service-breadcrumb span {
  color: #0F2A4A;
  font-weight: 500;
}

.service-detail-hero--with-crumb {
  padding-top: 24px;
}

@media (max-width: 1024px) {
  .services-why__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 640px) {
  .services-why {
    padding: 48px 1rem;
  }

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

  .service-detail-hero {
    padding: calc(var(--header-height) + 32px) 1rem 40px;
  }

  .service-section {
    padding: 48px 1rem;
  }

  .service-process__steps {
    grid-template-columns: 1fr;
  }

  .service-detail-hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .service-detail-hero__actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Service modal */
.service-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.service-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.service-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 42, 74, 0.6);
}

.service-modal__dialog {
  position: relative;
  width: 100%;
  max-width: 520px;
  max-height: calc(100vh - 3rem);
  overflow-y: auto;
  padding: 32px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(15, 42, 74, 0.2);
  transform: scale(0.94) translateY(12px);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-modal.is-open .service-modal__dialog {
  transform: scale(1) translateY(0);
}

.service-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--soft-bg);
  color: #0F2A4A;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.service-modal__close:hover {
  background: #eef0f4;
  color: #F97316;
}

.service-modal__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 1.25rem;
  background: rgba(249, 115, 22, 0.12);
  border-radius: 14px;
  color: #F97316;
}

.service-modal__icon svg {
  width: 26px;
  height: 26px;
  stroke-width: 1.75;
}

.service-modal__icon .fa-brands,
.service-modal__icon .fa-solid {
  font-size: 26px;
  line-height: 1;
}

.service-modal__title {
  margin: 0 0 1rem;
  font-size: 1.375rem;
  font-weight: 700;
  color: #0F2A4A;
  line-height: 1.3;
  padding-right: 2rem;
}

.service-modal__details {
  margin: 0 0 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.service-modal__included-label {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #0F2A4A;
}

.service-modal__included {
  margin: 0 0 1.75rem;
  padding-left: 1.125rem;
  list-style: disc;
}

.service-modal__included li {
  margin-bottom: 0.4rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.service-modal__included li:last-child {
  margin-bottom: 0;
}

.service-modal__actions {
  display: flex;
  gap: 12px;
}

.service-modal__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex: 1;
  padding: 0.8125rem 1rem;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.service-modal__btn svg {
  width: 18px;
  height: 18px;
}

.service-modal__btn--whatsapp {
  background: #25D366;
  color: var(--white);
  border: none;
}

.service-modal__btn--whatsapp:hover {
  background: #1ebe57;
  transform: translateY(-1px);
}

.service-modal__btn--outline {
  background: transparent;
  color: #0F2A4A;
  border: 1.5px solid #0F2A4A;
}

.service-modal__btn--outline:hover {
  background: #0F2A4A;
  color: var(--white);
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .services {
    padding: 64px 1rem;
  }

  .services__header {
    margin-bottom: 2rem;
  }

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

  .service-modal__actions {
    flex-direction: column;
  }
}

/* --------------------------------------------
   Portfolio
   -------------------------------------------- */

.portfolio {
  padding: 80px 1.5rem;
  background: #FFFFFF;
}

.portfolio--page {
  padding-top: 0;
  padding-bottom: 64px;
}

.portfolio--page .portfolio__filters {
  margin-bottom: 2rem;
}

.portfolio-results {
  padding: 64px 1.5rem 80px;
  background: #F8FAFC;
}

.portfolio-results__inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.portfolio-results__title {
  margin: 0 0 1.5rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0F2A4A;
}

.portfolio-results__copy {
  margin: 0 0 1rem;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: #334155;
  text-align: left;
}

.portfolio-results__stats {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: center;
  text-align: center;
}

.portfolio-results__stats .stats-counter__item:not(:last-child) {
  border-right: 1px solid #e8ecf0;
}

@media (max-width: 1023px) {
  .portfolio-results__stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

.portfolio-cta {
  padding: 64px 1.5rem 80px;
  background: var(--white);
  text-align: center;
}

.portfolio-cta__inner {
  max-width: 600px;
  margin: 0 auto;
}

.portfolio-cta__title {
  margin: 0 0 1rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0F2A4A;
}

.portfolio-cta__text {
  margin: 0 0 1.75rem;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.portfolio-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

@media (max-width: 640px) {
  .portfolio--page {
    padding-bottom: 48px;
  }

  .portfolio-results {
    padding: 48px 1rem 64px;
  }

  .portfolio-results__stats {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .portfolio-results__stats .stats-counter__item:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid #e8ecf0;
    padding-bottom: 1.25rem;
    margin-bottom: 1.25rem;
  }

  .portfolio-cta {
    padding: 48px 1rem 64px;
  }

  .portfolio-cta__actions {
    flex-direction: column;
    width: 100%;
  }

  .portfolio-cta__actions .btn {
    width: 100%;
    justify-content: center;
  }
}

.portfolio__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.portfolio__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.portfolio__eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #F97316;
}

.portfolio__title {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0F2A4A;
}

.portfolio__subline {
  max-width: 560px;
  margin: 0 auto;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.portfolio__view-all {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #F97316;
  transition: color 0.2s ease, gap 0.2s ease;
}

.portfolio__view-all:hover {
  color: #0F2A4A;
  gap: 0.5rem;
}

.portfolio__filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 2.5rem;
}

.portfolio-filter {
  padding: 0.625rem 1.35rem;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1;
  color: #0F2A4A;
  background: transparent;
  border: 1.5px solid #0F2A4A;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition:
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}

.portfolio-filter:hover {
  background: rgba(15, 42, 74, 0.06);
}

.portfolio-filter.is-active {
  color: var(--white);
  background: #0F2A4A;
  border-color: #0F2A4A;
}

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

.portfolio-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 0.5px solid #eef0f4;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(15, 42, 74, 0.06);
  overflow: hidden;
  cursor: pointer;
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease,
    box-shadow 0.3s ease;
}

.portfolio-card.is-filtered-out {
  opacity: 0;
  transform: translateY(8px) scale(0.98);
  pointer-events: none;
}

.portfolio-card[hidden] {
  display: none !important;
}

.portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(15, 42, 74, 0.1);
}

.portfolio-card.is-filtered-out:hover {
  transform: translateY(8px) scale(0.98);
  box-shadow: 0 8px 30px rgba(15, 42, 74, 0.06);
}

.portfolio-card__media {
  position: relative;
  overflow: hidden;
  background: var(--soft-bg);
}

.portfolio-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.portfolio-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.25rem 1.5rem 1.5rem;
}

.portfolio-card--seo .portfolio-card__body {
  justify-content: space-between;
}

.portfolio-card__link--btn {
  margin-top: auto;
  padding: 0;
  font-family: inherit;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.portfolio-card__link--disabled {
  opacity: 0.55;
  pointer-events: none;
}

/* SEO results modal */
.seo-results-modal {
  position: fixed;
  inset: 0;
  z-index: 2100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.seo-results-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.seo-results-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 42, 74, 0.6);
}

.seo-results-modal__dialog {
  position: relative;
  width: 100%;
  max-width: 680px;
  max-height: calc(100vh - 3rem);
  overflow-y: auto;
  padding: 32px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(15, 42, 74, 0.2);
  transform: scale(0.94) translateY(12px);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.seo-results-modal.is-open .seo-results-modal__dialog {
  transform: scale(1) translateY(0);
}

.seo-results-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--soft-bg);
  color: #0F2A4A;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.seo-results-modal__close:hover {
  background: #eef0f4;
  color: #F97316;
}

.seo-results-modal__title {
  margin: 0 2rem 1.25rem 0;
  font-size: 1.375rem;
  font-weight: 700;
  color: #0F2A4A;
  line-height: 1.3;
}

.seo-results-modal__image-wrap {
  margin-bottom: 1.5rem;
  border-radius: 12px;
  overflow: hidden;
  background: var(--soft-bg);
}

.seo-results-modal__image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.seo-results-modal__whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  color: var(--white);
  background: #25D366;
  border: none;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.seo-results-modal__whatsapp:hover {
  background: #1ebe57;
  transform: translateY(-1px);
}

.seo-results-modal__whatsapp svg {
  width: 18px;
  height: 18px;
}

.portfolio-card__meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.portfolio-card__name {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
  color: #0F2A4A;
  line-height: 1.3;
}

.portfolio-tag {
  flex-shrink: 0;
  padding: 0.3rem 0.65rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
}

.portfolio-tag--website {
  color: #0F2A4A;
  background: rgba(15, 42, 74, 0.08);
}

.portfolio-tag--seo {
  color: #F97316;
  background: rgba(249, 115, 22, 0.1);
}

.portfolio-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: auto;
  font-size: 0.875rem;
  font-weight: 600;
  color: #F97316;
  transition: gap 0.3s ease;
}

.portfolio-card__link:hover {
  gap: 0.5rem;
}

@media (max-width: 768px) {
  .portfolio {
    padding: 64px 1rem;
  }

  .portfolio__header {
    margin-bottom: 2rem;
  }

  .portfolio__filters {
    margin-bottom: 2rem;
  }

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

/* --------------------------------------------
   Product / Launching Soon
   -------------------------------------------- */

.product-launch {
  padding: 80px 1.5rem;
  background: var(--white);
}

.product-launch__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.product-launch__card {
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 3rem;
  align-items: center;
  padding: 48px 96px 48px 48px;
  background: #F8FAFC;
  border: 0.5px solid #eef0f4;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(15, 42, 74, 0.08);
}

.product-launch__badge {
  display: inline-block;
  margin-bottom: 1.25rem;
  padding: 0.4rem 0.85rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  background: linear-gradient(135deg, #F97316, var(--orange));
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 14px rgba(249, 115, 22, 0.28);
}

.product-launch__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #0F2A4A;
}

.product-launch__tagline {
  margin: 0 0 1rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.55;
  color: var(--text-muted);
}

.product-launch__desc {
  margin: 0 0 1.5rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #334155;
}

.product-launch__features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem 1.25rem;
  margin: 0 0 1.75rem;
}

.product-launch__feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.product-launch__feature-icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
}

.product-launch__feature-icon--orange {
  background: rgba(249, 115, 22, 0.12);
  color: #F97316;
}

.product-launch__feature-icon--navy {
  background: rgba(15, 42, 74, 0.08);
  color: #0F2A4A;
}

.product-launch__feature-icon svg {
  width: 18px;
  height: 18px;
  stroke-width: 2;
}

.product-launch__feature-title {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.3;
  color: #0F2A4A;
}

.product-launch__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.product-launch__btn--primary {
  padding: 0.875rem 1.75rem;
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(6, 43, 79, 0.25);
}

.product-launch__btn--primary:hover {
  background: var(--orange);
  box-shadow: 0 6px 20px rgba(255, 138, 0, 0.35);
  transform: translateY(-1px);
}

.product-launch__btn--outline {
  padding: 0.875rem 1.75rem;
  background: transparent;
  color: var(--orange);
  border: 1.5px solid var(--orange);
}

.product-launch__btn--outline:hover {
  background: rgba(255, 138, 0, 0.08);
  border-color: var(--orange-hover);
  color: var(--orange-hover);
  transform: translateY(-1px);
}

.product-launch__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 16px;
}

.product-launch__glow {
  position: absolute;
  inset: 8% 12% 8% 4%;
  background: radial-gradient(ellipse at center, rgba(249, 115, 22, 0.22) 0%, rgba(249, 115, 22, 0.06) 45%, transparent 72%);
  filter: blur(28px);
  pointer-events: none;
}

.product-launch__frame {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 0.75rem;
  background: var(--white);
  border: 0.5px solid rgba(15, 42, 74, 0.08);
  border-radius: 16px;
  box-shadow:
    0 24px 48px rgba(15, 42, 74, 0.12),
    0 8px 20px rgba(15, 42, 74, 0.06);
}

.product-launch__frame img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
}

@media (max-width: 960px) {
  .product-launch__card {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 2rem;
  }

  .product-launch__visual {
    order: 2;
    padding-right: 0;
  }

  .product-launch__glow {
    inset: 8% 4%;
  }
}

@media (max-width: 640px) {
  .product-launch {
    padding: 64px 1rem;
  }

  .product-launch__card {
    padding: 1.5rem;
  }

  .product-launch__features {
    grid-template-columns: 1fr;
  }

  .product-launch__actions {
    flex-direction: column;
  }

  .product-launch__btn {
    width: 100%;
  }
}

.product-launch--page {
  padding-top: 0;
  padding-bottom: 64px;
}

.tools-features {
  padding: 64px 1.5rem 80px;
  background: var(--white);
}

.tools-features__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.tools-features__title {
  margin: 0 0 2rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0F2A4A;
  text-align: center;
}

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

.tools-features__card {
  padding: 1.5rem;
  background: #F8FAFC;
  border: 0.5px solid #eef0f4;
  border-radius: 16px;
}

.tools-features__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 1rem;
  border-radius: 12px;
}

.tools-features__icon--orange {
  background: rgba(249, 115, 22, 0.12);
  color: #F97316;
}

.tools-features__icon--navy {
  background: rgba(15, 42, 74, 0.08);
  color: #0F2A4A;
}

.tools-features__icon svg {
  width: 22px;
  height: 22px;
}

.tools-features__card h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: #0F2A4A;
}

.tools-features__card p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.tools-coming {
  padding: 0 1.5rem 80px;
  background: var(--white);
}

.tools-coming__inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.tools-coming__title {
  margin: 0 0 1.25rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0F2A4A;
}

.tools-coming__card {
  padding: 2rem 1.5rem;
  background: #F8FAFC;
  border: 0.5px dashed #d1d5db;
  border-radius: 16px;
}

.tools-coming__card p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-muted);
}

@media (max-width: 1024px) {
  .tools-features__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .product-launch--page {
    padding-bottom: 48px;
  }

  .tools-features {
    padding: 48px 1rem 64px;
  }

  .tools-features__grid {
    grid-template-columns: 1fr;
  }

  .tools-coming {
    padding: 0 1rem 64px;
  }
}

/* --------------------------------------------
   Our Partners
   -------------------------------------------- */

.partners {
  padding: 80px 0 64px;
  background: var(--white);
}

.partners__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.partners__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.partners__eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #F97316;
}

.partners__title {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0F2A4A;
}

.partners__subline {
  max-width: 520px;
  margin: 0 auto;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.partners__viewport {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.partners__fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.partners__fade--left {
  left: 0;
  background: linear-gradient(to right, var(--white) 0%, transparent 100%);
}

.partners__fade--right {
  right: 0;
  background: linear-gradient(to left, var(--white) 0%, transparent 100%);
}

.partners__track {
  display: flex;
  width: max-content;
  animation: scrollPartners 25s linear infinite;
}

.partners__track:hover {
  animation-play-state: paused;
}

.partners__group {
  display: flex;
  align-items: center;
  gap: 64px;
  padding-right: 64px;
}

.partners__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.partners__logo img {
  height: 55px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  filter: none;
  opacity: 1;
}

@keyframes scrollPartners {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (max-width: 768px) {
  .partners {
    padding: 64px 0 48px;
  }

  .partners__inner {
    padding: 0 1rem;
  }

  .partners__header {
    margin-bottom: 2rem;
  }

  .partners__eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
  }

  .partners__subline {
    font-size: 0.875rem;
  }

  .partners__fade {
    width: 48px;
  }

  .partners__group {
    gap: 40px;
    padding-right: 40px;
  }

  .partners__logo img {
    height: 40px;
    max-width: 120px;
  }
}

/* --------------------------------------------
   Our Process
   -------------------------------------------- */

.process {
  padding: 80px 1.5rem;
  background: var(--white);
}

.process__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.process__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.process__eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #F97316;
}

.process__title {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0F2A4A;
}

.process__subline {
  max-width: 560px;
  margin: 0 auto;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.process__timeline {
  position: relative;
  padding: 1rem 0;
}

.process__line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: #e5e7eb;
  transform: translateY(-50%);
  z-index: 0;
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
  z-index: 1;
}

.process__step {
  display: grid;
  grid-template-rows: 1fr auto 1fr;
  align-items: center;
  min-height: 260px;
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

.process__step.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.process__step--top .process__card {
  grid-row: 1;
  align-self: end;
  padding-bottom: 1.25rem;
}

.process__step--top .process__marker {
  grid-row: 2;
}

.process__step--top .process__spacer {
  grid-row: 3;
}

.process__step--bottom .process__spacer {
  grid-row: 1;
}

.process__step--bottom .process__marker {
  grid-row: 2;
}

.process__step--bottom .process__card {
  grid-row: 3;
  align-self: start;
  padding-top: 1.25rem;
}

.process__marker {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin: 0 auto;
  border: 3px solid var(--white);
  border-radius: 50%;
  background: linear-gradient(135deg, #F97316, var(--orange));
  color: var(--white);
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 16px rgba(249, 115, 22, 0.32);
  z-index: 2;
}

.process__card {
  text-align: center;
  padding: 0 0.75rem;
}

.process__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 0.75rem;
  border-radius: 12px;
  background: rgba(249, 115, 22, 0.1);
  color: #F97316;
}

.process__icon svg {
  width: 20px;
  height: 20px;
  stroke-width: 2;
}

.process__step-title {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: #0F2A4A;
}

.process__step-desc {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--text-muted);
}

@media (max-width: 1024px) {
  .process__step {
    min-height: 240px;
  }

  .process__step-desc {
    font-size: 0.8125rem;
  }
}

@media (max-width: 768px) {
  .process {
    padding: 64px 1rem;
  }

  .process__header {
    margin-bottom: 2.5rem;
  }

  .process__timeline {
    padding: 0 0 0 0.5rem;
  }

  .process__line {
    top: 0;
    bottom: 0;
    left: 23px;
    right: auto;
    width: 2px;
    height: auto;
    transform: none;
  }

  .process__steps {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .process__step,
  .process__step--top,
  .process__step--bottom {
    display: grid;
    grid-template-columns: 48px 1fr;
    grid-template-rows: auto;
    align-items: start;
    gap: 0 1.25rem;
    min-height: unset;
  }

  .process__spacer {
    display: none;
  }

  .process__marker {
    grid-column: 1;
    grid-row: 1;
    margin: 0;
    width: 44px;
    height: 44px;
    font-size: 0.75rem;
  }

  .process__card {
    grid-column: 2;
    grid-row: 1;
    padding: 0;
    text-align: left;
  }

  .process__step--top .process__card,
  .process__step--bottom .process__card {
    padding: 0;
    align-self: start;
  }

  .process__step--top .process__marker,
  .process__step--bottom .process__marker {
    grid-row: 1;
  }
}

/* --------------------------------------------
   About
   -------------------------------------------- */

.about {
  padding: 80px 1.5rem;
  background: var(--white);
}

.about--page {
  padding-top: 0;
  padding-bottom: 64px;
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
}

.about__visual {
  --orbit-scene-size: 500px;
  --orbit-outer-radius: 176px;
  --orbit-inner-radius: 146px;
}

.about__visual-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.about__visual .orbit-scene {
  margin: 0 auto;
}

.about__pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
}

.about__pill {
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.3;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.about__pill--navy {
  background: rgba(15, 42, 74, 0.08);
  color: #0F2A4A;
}

.about__pill--orange {
  background: rgba(249, 115, 22, 0.12);
  color: #F97316;
}

.about__eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #F97316;
}

.about__title {
  margin: 0 0 1.25rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: #0F2A4A;
}

.about__text {
  margin: 0 0 1rem;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: #334155;
}

.about__highlights {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.about__highlights li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: #334155;
}

.about__highlights li i,
.about__highlights li svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 0.1rem;
  color: #F97316;
}

.about__cta {
  margin-top: 1.75rem;
}

.about-story {
  padding: 64px 1.5rem;
  background: #F8FAFC;
}

.about-story--alt {
  background: var(--white);
}

.about-story__inner {
  max-width: 760px;
  margin: 0 auto;
}

.about-story__title {
  margin: 0 0 1.25rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0F2A4A;
}

.about-story__text {
  margin: 0 0 1rem;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: #334155;
}

.about-story__text:last-child {
  margin-bottom: 0;
}

.team--about-page {
  background: var(--white);
}

.team--about-page .team__header {
  margin-bottom: 2.5rem;
}

@media (max-width: 900px) {
  .about__inner {
    grid-template-columns: 1fr;
  }

  .about__content {
    order: 1;
  }

  .about__visual {
    order: 2;
    --orbit-scene-size: 400px;
    --orbit-outer-radius: 163px;
    --orbit-inner-radius: 135px;
  }
}

@media (max-width: 640px) {
  .about {
    padding: 64px 1rem;
  }

  .about--page {
    padding-bottom: 48px;
  }

  .about-story {
    padding: 48px 1rem;
  }
}

/* --------------------------------------------
   Team
   -------------------------------------------- */

.team {
  padding: 80px 1.5rem;
  background: var(--white);
}

.team__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.team__header {
  text-align: center;
  margin-bottom: 3rem;
}

.team__eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #F97316;
}

.team__title {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0F2A4A;
}

.team__subline {
  max-width: 560px;
  margin: 0 auto;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.team__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.team-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: var(--white);
  border: 0.5px solid #eef0f4;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(15, 42, 74, 0.06);
  cursor: pointer;
  text-align: left;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(15, 42, 74, 0.1);
}

.team-card__photo-wrap {
  height: 240px;
  overflow: hidden;
  background: var(--soft-bg);
}

.team-card__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.team-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 0.85rem 0.75rem 1rem;
}

.team-card__name {
  margin: 0 0 0.3rem;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.3;
  color: #0F2A4A;
}

.team-card__role {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.35;
  color: #F97316;
}

/* Team modal */
.team-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.team-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.team-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 42, 74, 0.6);
}

.team-modal__dialog {
  position: relative;
  width: 100%;
  max-width: 720px;
  max-height: calc(100vh - 3rem);
  overflow-y: auto;
  padding: 2rem;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(15, 42, 74, 0.2);
  transform: scale(0.94) translateY(12px);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-modal.is-open .team-modal__dialog {
  transform: scale(1) translateY(0);
}

.team-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--soft-bg);
  color: #0F2A4A;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.team-modal__close:hover {
  background: #eef0f4;
  color: #F97316;
}

.team-modal__content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}

.team-modal__photo-wrap {
  flex-shrink: 0;
  width: 220px;
  height: 280px;
  overflow: hidden;
  border-radius: 16px;
  background: var(--soft-bg);
}

.team-modal__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.team-modal__details {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.team-modal__name {
  margin: 0 0 0.35rem;
  padding-right: 2rem;
  font-size: 1.375rem;
  font-weight: 800;
  line-height: 1.25;
  color: #0F2A4A;
}

.team-modal__role {
  margin: 0 0 1rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #F97316;
}

.team-modal__bio {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #334155;
}

@media (max-width: 768px) {
  .team-modal__dialog {
    max-width: 480px;
    padding: 1.5rem;
  }

  .team-modal__content {
    flex-direction: column;
    align-items: stretch;
    gap: 1.25rem;
  }

  .team-modal__photo-wrap {
    width: 100%;
    max-width: 280px;
    height: 320px;
    margin: 0 auto;
  }
}

@media (max-width: 1024px) {
  .team__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .team__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 640px) {
  .team {
    padding: 64px 1rem;
  }

  .team__header {
    margin-bottom: 2.5rem;
  }

  .team__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .team-modal__dialog {
    padding: 1.5rem;
  }
}

/* --------------------------------------------
   Reviews
   -------------------------------------------- */

.reviews {
  padding: 80px 1.5rem;
  background: var(--white);
}

.reviews__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.reviews__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.reviews__eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #F97316;
}

.reviews__title {
  margin: 0 0 1.25rem;
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0F2A4A;
}

.reviews__google-badge {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 0.65rem;
}

.reviews__google-g {
  display: inline-flex;
  align-items: center;
}

.reviews__score {
  font-size: 1.125rem;
  font-weight: 800;
  color: #0F2A4A;
}

.reviews__stars {
  font-size: 1rem;
  letter-spacing: 0.05em;
  color: #FBBC04;
}

.reviews__meta {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.reviews__slider {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviews__viewport {
  flex: 1;
  overflow: hidden;
  touch-action: pan-y;
  cursor: grab;
}

.reviews__viewport.is-dragging {
  cursor: grabbing;
}

.reviews__track {
  display: flex;
  gap: 20px;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.reviews__track.is-dragging {
  transition: none;
}

.reviews__arrow {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0.5px solid #eef0f4;
  border-radius: 50%;
  background: var(--white);
  color: #0F2A4A;
  box-shadow: 0 4px 14px rgba(15, 42, 74, 0.08);
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.reviews__arrow:hover:not(:disabled) {
  background: #0F2A4A;
  border-color: #0F2A4A;
  color: var(--white);
}

.reviews__arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.review-card {
  position: relative;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  padding: 24px;
  background: var(--white);
  border: 0.5px solid #eef0f4;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(15, 42, 74, 0.06);
}

.review-card__google {
  position: absolute;
  top: 20px;
  right: 20px;
  display: inline-flex;
  opacity: 0.9;
}

.review-card__header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
  padding-right: 1.75rem;
}

.review-card__avatar {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.review-card__author {
  min-width: 0;
}

.review-card__name {
  margin: 0 0 0.15rem;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.3;
  color: #0F2A4A;
}

.review-card__subtitle {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.35;
  color: var(--text-muted);
}

.review-card__stars {
  margin-bottom: 0.85rem;
  font-size: 0.9375rem;
  letter-spacing: 0.06em;
  color: #FBBC04;
}

.review-card__text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .reviews {
    padding: 64px 1rem;
  }

  .reviews__header {
    margin-bottom: 2rem;
  }

  .reviews__slider {
    gap: 8px;
  }

  .reviews__arrow {
    width: 38px;
    height: 38px;
  }
}

@media (max-width: 640px) {
  .reviews__google-badge {
    flex-direction: column;
    gap: 0.35rem;
  }
}

/* --------------------------------------------
   Contact
   -------------------------------------------- */

.contact {
  padding: 80px 1.5rem;
  background: var(--white);
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  max-width: var(--max-width);
  margin: 0 auto;
}

.contact__eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #F97316;
}

.contact__title {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: #0F2A4A;
}

.contact__subline {
  margin: 0 0 2rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 0 0 2rem;
  padding: 0;
  list-style: none;
}

.contact__details li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact__icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
}

.contact__icon svg {
  width: 20px;
  height: 20px;
  stroke-width: 2;
}

.contact__icon--navy {
  background: rgba(15, 42, 74, 0.08);
  color: #0F2A4A;
}

.contact__icon--green {
  background: rgba(37, 211, 102, 0.12);
  color: #128C7E;
}

.contact__icon--orange {
  background: rgba(249, 115, 22, 0.12);
  color: #F97316;
}

.contact__label {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.contact__details a {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #0F2A4A;
  transition: color 0.2s ease;
}

.contact__details a:hover {
  color: #F97316;
}

.contact__link-address {
  display: inline-block;
  max-width: 280px;
  line-height: 1.5;
}

.contact__map {
  margin-bottom: 2rem;
  overflow: hidden;
  border-radius: 12px;
}

.contact__map iframe {
  display: block;
  width: 100%;
  height: 220px;
  border: 0;
}

.contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.contact__btn--whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.contact__btn--whatsapp:hover {
  background: linear-gradient(135deg, #F97316, var(--orange));
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.35);
  transform: translateY(-1px);
}

.contact__btn--whatsapp svg {
  width: 18px;
  height: 18px;
}

.contact__form-wrap {
  padding: 2rem;
  background: #F8FAFC;
  border: 0.5px solid #eef0f4;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(15, 42, 74, 0.06);
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact__field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.contact__field-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #0F2A4A;
}

.contact__input {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: inherit;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--text-dark);
  background: var(--white);
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.contact__input::placeholder {
  color: #94a3b8;
}

.contact__input:focus {
  outline: none;
  border-color: #F97316;
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.15);
}

.contact__textarea {
  resize: vertical;
  min-height: 130px;
}

.contact__submit {
  align-self: flex-start;
  margin-top: 0.25rem;
}

@media (max-width: 960px) {
  .contact__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 640px) {
  .contact {
    padding: 64px 1rem;
  }

  .contact__form-wrap {
    padding: 1.5rem;
  }

  .contact__actions {
    flex-direction: column;
  }

  .contact__btn,
  .contact__submit {
    width: 100%;
    justify-content: center;
  }
}

.contact--page {
  padding-top: 0;
  padding-bottom: 64px;
}

.contact__hours {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #0F2A4A;
}

.contact__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.contact__form-note {
  margin: 0.75rem 0 0;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #F97316;
}

.contact-page-map {
  padding: 0 1.5rem 64px;
  background: var(--white);
}

.contact-page-map__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.contact-page-map__title {
  margin: 0 0 1.25rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0F2A4A;
}

.contact-page-map__frame {
  border-radius: 12px;
  overflow: hidden;
  line-height: 0;
}

.contact-page-map__frame iframe {
  display: block;
  width: 100%;
  height: 320px;
  border: none;
}

.contact-faq {
  padding: 64px 1.5rem 80px;
  background: #F8FAFC;
}

.contact-faq__inner {
  max-width: 760px;
  margin: 0 auto;
}

.contact-faq__title {
  margin: 0 0 2rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0F2A4A;
  text-align: center;
}

@media (max-width: 640px) {
  .contact--page {
    padding-bottom: 48px;
  }

  .contact-page-map {
    padding: 0 1rem 48px;
  }

  .contact-faq {
    padding: 48px 1rem 64px;
  }
}

/* --------------------------------------------
   Stats Counter
   -------------------------------------------- */

.stats-counter {
  padding: 64px 1.5rem;
  background: #FFFFFF;
}

.stats-counter__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.stats-counter__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  align-items: center;
  text-align: center;
}

.stats-counter__item {
  padding: 0 1.5rem;
}

.stats-counter__item:not(:last-child) {
  border-right: 1px solid #e5e7eb;
}

.stats-counter__value {
  margin: 0;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #F97316;
}

.stats-counter__suffix {
  color: #F97316;
}

.stats-counter__label {
  margin: 0.75rem 0 0;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.4;
  color: #0F2A4A;
}

@media (max-width: 1023px) {
  .stats-counter__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 1.5rem;
  }

  .stats-counter__item {
    padding: 0 1rem;
    border-right: none;
  }
}

@media (max-width: 767px) {
  .stats-counter {
    padding: 56px 1rem;
  }

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

  .stats-counter__value {
    font-size: 2.5rem;
  }

  .stats-counter__label {
    font-size: 0.875rem;
  }

  .stats-counter__item {
    padding: 0 0.5rem;
  }
}

/* --------------------------------------------
   Footer
   -------------------------------------------- */

.site-footer {
  padding: 64px 1.5rem 24px;
  background: #0F2A4A;
  color: rgba(255, 255, 255, 0.88);
}

.site-footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.5rem 2rem;
  padding-bottom: 2.5rem;
}

.site-footer__logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  padding: 0.65rem 1rem;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 12px;
}

.site-footer__logo {
  width: auto;
  max-width: 180px;
  height: auto;
  max-height: 50px;
  object-fit: contain;
}

.site-footer__tagline {
  margin: 0 0 1.5rem;
  max-width: 320px;
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.62);
}

.site-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.site-footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.site-footer__social-link i {
  font-size: 18px;
  line-height: 1;
}

.site-footer__social-link svg {
  width: 18px;
  height: 18px;
  stroke-width: 2;
}

.site-footer__social-link:hover {
  background: rgba(249, 115, 22, 0.18);
  color: #F97316;
  transform: translateY(-2px);
}

.site-footer__heading {
  margin: 0 0 1.25rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
}

.site-footer__links,
.site-footer__contact {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__links li + li,
.site-footer__contact li + li {
  margin-top: 0.65rem;
}

.site-footer__links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.68);
  transition: color 0.2s ease;
}

.site-footer__links a:hover {
  color: #F97316;
}

.site-footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.875rem;
  line-height: 1.5;
}

.site-footer__contact li svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 0.15rem;
  color: rgba(255, 255, 255, 0.5);
  stroke-width: 2;
}

.site-footer__contact a {
  color: rgba(255, 255, 255, 0.68);
  transition: color 0.2s ease;
}

.site-footer__contact a:hover {
  color: #F97316;
}

.site-footer__bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer__copy {
  margin: 0;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.site-footer__legal a {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s ease;
}

.site-footer__legal a:hover {
  color: #F97316;
}

@media (max-width: 1024px) {
  .site-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .site-footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .site-footer {
    padding: 48px 1rem 24px;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .site-footer__bar {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Reduced motion */
/* Consultation popup (homepage) */
.consult-popup {
  position: fixed;
  inset: 0;
  z-index: 2100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.consult-popup.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.consult-popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 42, 74, 0.6);
}

.consult-popup__dialog {
  position: relative;
  width: 100%;
  max-width: 440px;
  max-height: calc(100vh - 3rem);
  overflow-y: auto;
  padding: 32px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(15, 42, 74, 0.2);
  transform: scale(0.94) translateY(12px);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.consult-popup.is-open .consult-popup__dialog {
  transform: scale(1) translateY(0);
}

.consult-popup__close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--soft-bg);
  color: #0F2A4A;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.consult-popup__close:hover {
  background: #eef0f4;
  color: #F97316;
}

.consult-popup__badge {
  display: inline-block;
  margin-bottom: 0.75rem;
  padding: 0.35rem 0.65rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #F97316;
  background: rgba(249, 115, 22, 0.12);
  border-radius: 6px;
}

.consult-popup__title {
  margin: 0 0 0.75rem;
  padding-right: 2rem;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.25;
  color: #0F2A4A;
}

.consult-popup__text {
  margin: 0 0 1.5rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.consult-popup__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.consult-popup__field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.consult-popup__label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #0F2A4A;
}

.consult-popup__input {
  width: 100%;
  padding: 0.8rem 1rem;
  font-family: inherit;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--text-dark);
  background: var(--white);
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.consult-popup__input::placeholder {
  color: #94a3b8;
}

.consult-popup__input:focus {
  outline: none;
  border-color: #F97316;
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.15);
}

.consult-popup__select {
  appearance: none;
  padding-right: 2.5rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%230F2A4A' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  cursor: pointer;
}

.consult-popup__submit {
  width: 100%;
  margin-top: 0.25rem;
  padding: 0.9rem 1.5rem;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--white);
  background: #0F2A4A;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(15, 42, 74, 0.25);
  transition:
    background 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.consult-popup__submit:hover {
  background: #1a3d66;
  box-shadow: 0 6px 20px rgba(15, 42, 74, 0.3);
  transform: translateY(-1px);
}

.consult-popup__whatsapp {
  margin: 1.25rem 0 0;
  font-size: 0.8125rem;
  text-align: center;
  color: var(--text-muted);
}

.consult-popup__whatsapp a {
  color: #25D366;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.consult-popup__whatsapp a:hover {
  color: #1da851;
  text-decoration: underline;
}

.consult-popup__whatsapp a:hover {
  color: #1da851;
  text-decoration: underline;
}

/* Floating WhatsApp live chat */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1500;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

.wa-float__inner {
  position: relative;
  display: flex;
  align-items: center;
  height: 58px;
  padding: 0;
  gap: 0;
  background: #0F2A4A;
  color: #fff;
  border-radius: 999px;
  box-shadow: 0 4px 20px rgba(15, 42, 74, 0.35);
  transition:
    transform 0.25s ease,
    padding 0.25s ease,
    gap 0.25s ease,
    background 0.2s ease,
    box-shadow 0.25s ease;
}

.wa-float:hover .wa-float__inner,
.wa-float:focus-visible .wa-float__inner {
  transform: scale(1.06);
  padding-right: 1.15rem;
  gap: 0.35rem;
  background: #F97316;
  box-shadow: 0 6px 24px rgba(249, 115, 22, 0.4);
}

.wa-float__pulse {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: #0F2A4A;
  animation: wa-float-pulse 2.5s ease-out infinite;
  pointer-events: none;
}

.wa-float__icon {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 58px;
  height: 58px;
}

.wa-float__icon svg {
  width: 28px;
  height: 28px;
}

.wa-float__label {
  position: relative;
  z-index: 1;
  max-width: 0;
  overflow: hidden;
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  transition:
    max-width 0.3s ease,
    opacity 0.2s ease;
}

.wa-float:hover .wa-float__label,
.wa-float:focus-visible .wa-float__label {
  max-width: 120px;
  opacity: 1;
}

@keyframes wa-float-pulse {
  0% {
    transform: scale(1);
    opacity: 0.45;
  }

  70%,
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

@media (max-width: 768px) {
  .wa-float {
    bottom: 20px;
    right: 20px;
  }

  .wa-float__inner {
    height: 52px;
  }

  .wa-float__icon {
    width: 52px;
    height: 52px;
  }

  .wa-float__icon svg {
    width: 26px;
    height: 26px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .animate-in {
    opacity: 1;
    transform: none;
  }

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

  .site-header {
    opacity: 1;
    transform: none;
  }

  .logo-slider__track {
    animation: none;
  }

  .partners__track {
    animation: none;
  }

  .service-modal__dialog {
    transition: none;
  }

  .team-modal__dialog {
    transition: none;
  }

  .seo-results-modal__dialog {
    transition: none;
  }

  .consult-popup__dialog {
    transition: none;
  }

  .wa-float__pulse {
    animation: none;
  }

  .wa-float__inner {
    transition: none;
  }
}

/* ==========================================================================
   Blog
   ========================================================================== */

.blog-hero {
  padding: calc(var(--header-height) + 48px) 1.5rem 40px;
  background: var(--white);
  text-align: center;
}

.blog-filters {
  padding: 0 1.5rem 32px;
  background: var(--white);
}

.blog-filters__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.blog-filter {
  padding: 0.5rem 1rem;
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #0F2A4A;
  background: rgba(15, 42, 74, 0.06);
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.blog-filter:hover {
  background: rgba(249, 115, 22, 0.1);
  color: #F97316;
}

.blog-filter.is-active {
  background: #F97316;
  color: var(--white);
  border-color: #F97316;
}

.blog-grid-section {
  padding: 0 1.5rem 80px;
  background: var(--white);
}

.blog-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid rgba(15, 42, 74, 0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.blog-card:hover {
  box-shadow: 0 12px 40px rgba(15, 42, 74, 0.1);
  transform: translateY(-4px);
}

.blog-card.is-hidden {
  display: none;
}

.blog-card__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 140px;
  padding: 1.5rem;
  background: linear-gradient(135deg, #0F2A4A 0%, #1a3d66 45%, #F97316 100%);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
}

.blog-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.25rem 1.35rem 1.35rem;
}

.blog-card__tag {
  display: inline-block;
  align-self: flex-start;
  margin-bottom: 0.75rem;
  padding: 0.25rem 0.65rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #F97316;
  background: rgba(249, 115, 22, 0.12);
  border-radius: 6px;
}

.blog-card__title {
  margin: 0 0 0.65rem;
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.35;
  color: #0F2A4A;
}

.blog-card__title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.blog-card__title a:hover {
  color: #F97316;
}

.blog-card__excerpt {
  margin: 0 0 1rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-muted);
  flex: 1;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.blog-card__link {
  font-size: 0.875rem;
  font-weight: 600;
  color: #F97316;
  text-decoration: none;
  transition: color 0.2s ease;
}

.blog-card__link:hover {
  color: #ea580c;
}

.blog-article {
  padding: calc(var(--header-height) + 32px) 1.5rem 80px;
  background: var(--white);
}

.blog-article__inner {
  max-width: 760px;
  margin: 0 auto;
}

.blog-article__crumb {
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.blog-article__crumb a {
  color: #F97316;
  text-decoration: none;
}

.blog-article__crumb a:hover {
  text-decoration: underline;
}

.blog-article__tag {
  display: inline-block;
  margin-bottom: 0.85rem;
  padding: 0.3rem 0.75rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #F97316;
  background: rgba(249, 115, 22, 0.12);
  border-radius: 6px;
}

.blog-article__title {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: #0F2A4A;
}

.blog-article__meta {
  margin: 0 0 2rem;
  padding-bottom: 2rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(15, 42, 74, 0.08);
}

.blog-article__content {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: #334155;
}

.blog-article__content p {
  margin: 0 0 1.25rem;
}

.blog-article__content h2 {
  margin: 2.25rem 0 1rem;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.3;
  color: #0F2A4A;
}

.blog-article__content h3 {
  margin: 1.75rem 0 0.75rem;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.35;
  color: #0F2A4A;
}

.blog-article__content ul,
.blog-article__content ol {
  margin: 0 0 1.25rem;
  padding-left: 1.35rem;
}

.blog-article__content li {
  margin-bottom: 0.5rem;
}

.blog-article__content a {
  color: #F97316;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.blog-article__content a:hover {
  color: #ea580c;
}

.blog-article__cta {
  margin-top: 2.5rem;
  padding: 1.75rem;
  background: linear-gradient(135deg, rgba(15, 42, 74, 0.04) 0%, rgba(249, 115, 22, 0.08) 100%);
  border: 1px solid rgba(249, 115, 22, 0.2);
  border-radius: 16px;
  text-align: center;
}

.blog-article__cta-title {
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #0F2A4A;
}

.blog-article__cta-text {
  margin: 0 0 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.blog-article__cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.blog-related {
  padding: 64px 1.5rem 80px;
  background: #F8FAFC;
}

.blog-related__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.blog-related__title {
  margin: 0 0 1.5rem;
  font-size: 1.375rem;
  font-weight: 700;
  color: #0F2A4A;
  text-align: center;
}

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

.blog-related__card {
  padding: 1.25rem;
  background: var(--white);
  border: 1px solid rgba(15, 42, 74, 0.08);
  border-radius: 12px;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.blog-related__card:hover {
  box-shadow: 0 8px 24px rgba(15, 42, 74, 0.08);
  transform: translateY(-2px);
}

.blog-related__tag {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #F97316;
}

.blog-related__link {
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.4;
  color: #0F2A4A;
  text-decoration: none;
}

.blog-related__link:hover {
  color: #F97316;
}

@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 640px) {
  .blog-hero {
    padding: calc(var(--header-height) + 28px) 1rem 28px;
  }

  .blog-filters {
    padding: 0 1rem 24px;
  }

  .blog-grid-section {
    padding: 0 1rem 64px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .blog-article {
    padding: calc(var(--header-height) + 24px) 1rem 64px;
  }

  .blog-related {
    padding: 48px 1rem 64px;
  }

  .blog-related__grid {
    grid-template-columns: 1fr;
  }

  .blog-article__cta-actions {
    flex-direction: column;
  }

  .blog-article__cta-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

.blog-pagination,
.navigation.pagination {
  max-width: var(--max-width);
  margin: 2rem auto 0;
  text-align: center;
}

.blog-pagination .nav-links,
.navigation.pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.blog-pagination a,
.blog-pagination span,
.navigation.pagination a,
.navigation.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  padding: 0.5rem 0.85rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  color: #0F2A4A;
  background: rgba(15, 42, 74, 0.06);
}

.blog-pagination .current,
.navigation.pagination .current {
  background: #F97316;
  color: var(--white);
}

.blog-card__visual--image {
  padding: 0;
  min-height: 140px;
  overflow: hidden;
}

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

.blog-filter[href] {
  text-decoration: none;
}
