/* ============================================
   RFCONTABLE — Reusable Components
   components.css
   ============================================ */

/* ============================================
   1. SITE HEADER
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header.scrolled {
  box-shadow: 0 4px 30px rgba(26, 92, 255, 0.1);
  background: rgba(255, 255, 255, 0.98);
}

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

/* ============================================
   2. LOGO
   ============================================ */
.logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-link img {
  height: 50px;
  width: auto;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-link img:hover {
  transform: scale(1.03);
}

.logo-placeholder {
  width: 200px;
  height: 50px;
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 1px;
}

/* ============================================
   3. DESKTOP NAVIGATION
   ============================================ */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-item {
  position: relative;
}

.nav-item > a {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text-dark);
  border-radius: var(--radius-md);
  transition: all 0.25s ease;
  white-space: nowrap;
}

.nav-item > a:hover,
.nav-item > a:focus,
.nav-item > a.active {
  color: var(--color-primary);
  /* Use a clean pseudo-underline instead of a background blob */
}

.nav-item > a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--color-primary);
  transform: scaleX(0);
  transition: transform 0.25s ease;
  transform-origin: center;
}

.nav-item > a:hover::after,
.nav-item > a:focus::after,
.nav-item > a.active::after {
  transform: scaleX(1);
}

.nav-arrow svg {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-left: 4px;
  width: 12px;
  height: 12px;
}

.nav-item:hover .nav-arrow svg {
  transform: rotate(180deg);
}

.nav-item--highlight > span {
  display: inline-block;
  padding: 8px 16px;
  background-color: var(--color-primary);
  color: var(--color-white);
  border-radius: var(--radius-md);
  font-weight: 600;
  transition: all 0.25s ease;
}

.nav-item--highlight:hover > span {
  background-color: var(--color-primary-dark);
  box-shadow: var(--shadow-sm);
}

.nav-item--highlight::after {
  display: none !important;
}

/* ============================================
   4. DROPDOWN
   ============================================ */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 12px 0;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 100;
}

/* Invisible bridge to prevent gap-hover issues */
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}

.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown li a {
  display: block;
  padding: 10px 24px;
  font-size: 14px;
  color: var(--color-text-body);
  transition: all 0.2s ease;
}

.nav-dropdown li a:hover {
  background: var(--color-primary-50);
  color: var(--color-primary);
  padding-left: 28px;
}

/* ============================================
   5. HAMBURGER (Mobile)
   ============================================ */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 40px;
  height: 40px;
  padding: 6px;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--color-text-dark);
  border-radius: 3px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* ============================================
   6. MOBILE NAVIGATION
   ============================================ */

/* --- Overlay backdrop --- */
.mobile-nav-overlay {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* --- Nav panel --- */
.mobile-nav {
  position: fixed;
  top: var(--header-height);
  right: 0;
  bottom: 0;
  width: 85%;
  max-width: 360px;
  background: var(--color-white);
  z-index: 999;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 24px 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.08);
}

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

/* --- Prevent body scroll when nav open --- */
body.nav-open {
  overflow: hidden;
}

/* --- Category toggle buttons --- */
.mobile-nav-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-primary);
  background: none;
  border: none;
  border-bottom: 1px solid var(--color-border);
  cursor: pointer;
  transition: background 0.2s ease;
}

.mobile-nav-toggle:hover {
  background: var(--color-bg-light);
}

.mobile-nav-toggle .nav-arrow {
  display: flex;
  transition: transform 0.3s ease;
}

.mobile-nav-toggle .nav-arrow svg {
  width: 16px;
  height: 16px;
  fill: var(--color-text-light);
}

.mobile-nav-toggle[aria-expanded="true"] .nav-arrow {
  transform: rotate(180deg);
}

/* --- Submenu list --- */
.mobile-nav-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--color-bg-light);
}

.mobile-nav-submenu.open {
  max-height: 600px;
}

.mobile-nav-submenu li a {
  display: block;
  padding: 12px 24px 12px 36px;
  font-size: 15px;
  font-weight: 400;
  color: var(--color-text-body);
  border-bottom: 1px solid rgba(226, 232, 240, 0.4);
  transition: all 0.2s ease;
}

.mobile-nav-submenu li a:hover {
  color: var(--color-primary);
  background: rgba(26, 92, 255, 0.04);
  padding-left: 40px;
}

.mobile-nav-submenu li:last-child a {
  border-bottom: none;
}

/* --- Direct nav links --- */
.mobile-nav-link {
  display: block;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text-dark);
  border-bottom: 1px solid var(--color-border);
  transition: all 0.2s ease;
}

.mobile-nav-link:hover {
  color: var(--color-primary);
  background: var(--color-bg-light);
}

/* --- Highlighted link (CTA) --- */
.mobile-nav-link--highlight {
  margin: 16px 20px;
  padding: 14px 24px;
  background: var(--color-primary-50);
  color: var(--color-primary);
  font-weight: 600;
  border-radius: var(--radius-lg);
  border-bottom: none;
  text-align: center;
}

.mobile-nav-link--highlight:hover {
  background: var(--color-primary-100);
  border-radius: var(--radius-lg);
}

/* ============================================
   7. HERO SECTION (Premium)
   ============================================ */
.hero-section {
  position: relative;
  min-height: 550px;
  overflow: hidden;
  background-color: var(--color-bg-light);
  margin-top: var(--header-height);
}

.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.85) 50%, rgba(255, 255, 255, 0) 100%);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  min-height: 550px;
}

.hero-left {
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 0;
  position: relative;
  z-index: 2;
}

.hero-right {
  width: 40%;
}

.hero-title {
  font-size: clamp(38px, 5.5vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  color: var(--color-primary);
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.hero-subtitle {
  font-size: clamp(18px, 2.2vw, 28px);
  font-weight: 500;
  color: var(--color-primary-dark);
  margin-bottom: 8px;
}

.hero-description {
  font-size: clamp(16px, 1.3vw, 18px);
  font-weight: 400;
  color: var(--color-text-body);
  margin-bottom: 28px;
  line-height: 1.7;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

/* ============================================
   8. CTA BUTTONS
   ============================================ */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--color-primary);
  color: var(--color-white);
  font-weight: 600;
  font-size: 16px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
  white-space: nowrap;
  text-align: center;
}

.cta-btn:hover {
  background: var(--color-primary-dark);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.cta-btn:active {
  transform: translateY(0);
  box-shadow: none;
}

.cta-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex-shrink: 0;
}

/* --- Variants --- */
.cta-btn--white {
  background: var(--color-white);
  color: var(--color-primary);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-btn--white:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.cta-btn--outline {
  background: transparent;
  border: 2px solid var(--color-white);
  color: var(--color-white);
  box-shadow: none;
}

.cta-btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.15);
}

.cta-btn--sm {
  padding: 12px 24px;
  font-size: 14px;
}

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

/* ============================================
   9. SERVICE CARDS
   ============================================ */
.service-cards-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
  margin-bottom: 60px;
  position: relative;
  z-index: 10;
  max-width: 1230px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 10px;
}

/* Carousel Dots (hidden on desktop) */
.carousel-dots {
  display: none;
  justify-content: center;
  gap: 10px;
  padding: 0 0 24px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-border);
  transition: all 0.3s ease;
  cursor: pointer;
}

.carousel-dot.active {
  background: var(--color-primary);
  transform: scale(1.2);
}

.service-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1 1 240px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light));
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

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

.service-card__icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}

.service-card__icon svg {
  width: 100%;
  height: 100%;
  fill: var(--color-primary);
}

.service-card__title {
  font-size: 24px;
  font-weight: 600;
  color: var(--color-primary);
  line-height: 1.3;
}

.service-card__description {
  font-size: 15px;
  color: var(--color-text-light);
  line-height: 1.7;
}

.service-card__list {
  font-size: 15px;
  color: var(--color-text-light);
  line-height: 1.8;
}

.service-card__list span {
  display: block;
  padding-left: 20px;
  position: relative;
}

.service-card__list span::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
}

.service-card__cta {
  margin-top: auto;
  padding-top: 10px;
}

/* ============================================
   10. FEATURE CARDS (Premium)
   ============================================ */
.feature-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 36px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(226, 232, 240, 0.4);
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(26, 92, 255, 0.08);
  border-color: rgba(26, 92, 255, 0.1);
}

.feature-card__icon {
  width: 60px;
  height: 60px;
  margin: 0 auto;
}

.feature-card__icon svg {
  width: 100%;
  height: 100%;
  fill: var(--color-accent);
}

.feature-card__title {
  font-size: 24px;
  font-weight: 600;
  color: var(--color-primary);
}

.feature-card__text {
  font-size: 16px;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* ============================================
   11. INFO CARDS (Horizontal)
   ============================================ */
.info-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: left;
}

.info-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateX(5px);
}

.info-card__icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background-color: rgba(0, 212, 170, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-card__icon svg {
  width: 28px;
  height: 28px;
  fill: var(--color-accent);
}

.info-card__content {
  flex: 1;
}

.info-card__title {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text-dark);
  margin-bottom: 6px;
}

.info-card__text {
  font-size: 16px;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* ============================================
   12. BANNER SECTION
   ============================================ */
.banner-section {
  background: linear-gradient(135deg, #0D3B99 0%, #1A5CFF 50%, #4DA3FF 100%);
  padding: clamp(50px, 8vw, 80px) clamp(20px, 4vw, 40px);
  position: relative;
  overflow: hidden;
  color: var(--color-white);
  text-align: center;
}

/* Geometric overlay pattern */
.banner-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(255,255,255,0.04) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.06) 0%, transparent 50%),
    linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.03) 50%, transparent 60%);
  pointer-events: none;
}

.banner-section::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  pointer-events: none;
}

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

.banner-section .section-title {
  color: var(--color-white);
}

.banner-section .section-subtitle {
  color: rgba(255, 255, 255, 0.85);
}

/* ============================================
   13. SECTION SPLIT (Image + Content)
   ============================================ */
.section-split {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  align-items: center;
}

.section-split__image {
  flex: 1 1 300px;
  display: flex;
  justify-content: center;
}

.section-split__image--right {
  justify-content: flex-end;
}

.section-split__image img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  max-width: 100%;
}

.section-split__content {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0 0 0 30px;
}

.section-split--reverse {
  flex-direction: row-reverse;
}

.section-split--reverse .section-split__content {
  padding: 0 30px 0 0;
}

/* Plans Title */
.plans-title {
  color: var(--color-primary);
  font-size: clamp(22px, 4vw, 26px);
  margin-bottom: 24px;
  font-weight: 700;
  text-align: left;
}

/* Plans text card — styled text container */
.plans-text-card {
  background: linear-gradient(135deg, #F8FAFF 0%, #EEF4FF 100%);
  border-left: 4px solid var(--color-primary);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 24px 28px;
  color: var(--color-text-body);
  line-height: 1.8;
  font-size: 15px;
  text-align: left;
}

.plans-text-card p {
  margin-bottom: 1em;
}

.plans-text-card p:last-child {
  margin-bottom: 0;
}

/* ============================================
   14. WHATSAPP FLOATING BUTTON
   ============================================ */
@keyframes whatsapp-pulse {
  0% {
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  }
  70% {
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4),
                0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4),
                0 0 0 15px rgba(37, 211, 102, 0);
  }
}

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 998;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  animation: whatsapp-pulse 2s infinite;
  cursor: pointer;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
  animation: none;
}

.whatsapp-float svg {
  fill: var(--color-white);
  width: 32px;
  height: 32px;
}

/* ============================================
   15. FOOTER
   ============================================ */
.site-footer {
  background: #0B1D3A;
  color: var(--color-white);
  padding: 60px 0 0;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--color-primary);
  border-radius: var(--radius-pill);
}

.footer-col__text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

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

.footer-links a {
  display: inline-block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.2s ease;
}

.footer-links a:hover {
  color: var(--color-white);
  transform: translateX(4px);
}

/* --- Social Icons --- */
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.footer-social a svg {
  width: 18px;
  height: 18px;
  fill: var(--color-white);
}

/* --- Footer Bottom --- */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-disclaimer {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 8px;
  font-style: italic;
}

/* --- Missing footer classes (generated by footer.js) --- */
.footer-description {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 12px;
}

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

.footer-contact {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

.footer-contact li a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s ease;
}

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

.footer-contact-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  margin-top: 2px;
}

.footer-contact-icon svg {
  width: 18px;
  height: 18px;
  fill: var(--color-primary-light);
}

.footer-bottom-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   16. CONTACT CTA SECTION
   ============================================ */
.cta-section {
  background: var(--color-bg-light);
  background-image:
    radial-gradient(circle at 10% 90%, rgba(26, 92, 255, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 90% 10%, rgba(0, 212, 170, 0.03) 0%, transparent 50%);
  padding: clamp(50px, 8vw, 80px) 20px;
}

.cta-section__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.cta-section__text {
  flex: 1 1 280px;
}

.cta-section__text .section-title {
  text-align: left;
}

.cta-section__text .section-subtitle {
  text-align: left;
}

.cta-section__action {
  flex: 1 1 280px;
  text-align: center;
}

/* ============================================
   17. TESTIMONIALS
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 30px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.testimonial-card__stars {
  display: flex;
  gap: 4px;
  color: #FBBF24;
  font-size: 18px;
}

.testimonial-card__stars svg {
  width: 20px;
  height: 20px;
  fill: #FBBF24;
}

.testimonial-card__quote {
  font-size: 15px;
  color: var(--color-text-body);
  line-height: 1.7;
  font-style: italic;
  position: relative;
  padding-left: 16px;
  border-left: 3px solid var(--color-primary-200);
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-primary-50);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

.testimonial-card__name {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text-dark);
}

.testimonial-card__company {
  font-size: 13px;
  color: var(--color-text-muted);
}

/* ============================================
   18. PARTNERS / ALIANZAS
   ============================================ */
.partners-section {
  background: var(--color-bg-light);
}

.partners-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.partners-grid img {
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.3s ease;
  max-height: 50px;
  width: auto;
}

.partners-grid img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* ============================================
   19. RESPONSIVE — COMPONENTS
   ============================================ */

/* --- Tablet & Below (968px) --- */
@media (max-width: 968px) {
  .desktop-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

/* --- Mobile (768px) --- */
@media (max-width: 768px) {
  /* Hero */
  .hero-section {
    min-height: 360px;
  }

  .hero-inner {
    min-height: 360px;
  }

  .hero-left {
    width: 100%;
    padding: 32px 0;
  }

  .hero-right {
    display: none;
  }

  .hero-title {
    font-size: clamp(26px, 6vw, 36px);
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-description {
    font-size: 15px;
    max-width: 100%;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(30, 41, 59, 0.75) 0%, rgba(26, 92, 255, 0.85) 100%);
  }

  .hero-title,
  .hero-subtitle,
  .hero-description {
    color: #fff;
  }

  /* CTA Buttons */
  .cta-btn--lg {
    padding: 14px 24px;
    font-size: 16px;
  }

  /* Service Cards Grid (Horizontal Carousel for Mobile) */
  .service-cards-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    margin-top: -40px;
    margin-bottom: 10px;
    padding: 10px 16px 20px;
    gap: 14px;
    scrollbar-width: none;
  }

  .service-cards-grid::-webkit-scrollbar {
    display: none;
  }

  .service-cards-grid::after {
    content: '';
    flex-shrink: 0;
    width: 1px;
  }
  
  .service-card {
    flex: 0 0 78%;
    scroll-snap-align: center;
    margin: 0;
    padding: 24px;
  }

  .service-card__icon {
    width: 40px;
    height: 40px;
  }

  .service-card__title {
    font-size: 20px;
    margin-bottom: 8px;
  }

  .service-card__list {
    font-size: 14px;
    line-height: 1.6;
  }
  
  .service-card__list span {
    padding-left: 18px;
    margin-bottom: 6px;
  }

  /* Section Split - Compact illustration on mobile */
  .section-split {
    flex-direction: column;
    text-align: center;
  }

  .section-split__image {
    display: flex;
    max-width: 140px;
    margin: 0 auto 30px auto;
  }

  .section-split__image svg {
    max-width: 100% !important;
  }

  .section-split__content {
    flex: 1 1 100%;
  }

  /* Carousel Dots - show on mobile */
  .carousel-dots {
    display: flex;
    padding-bottom: 10px;
  }

  /* Feature Cards Mobile */
  .feature-card {
    flex: 1 1 100%;
    padding: 24px;
  }

  .feature-card__title {
    font-size: 20px;
  }

  .feature-card__icon {
    width: 40px;
    height: 40px;
  }

  /* Info Cards */
  .info-card {
    padding: 20px;
    gap: 14px;
  }

  .info-card__icon {
    width: 48px;
    height: 48px;
  }

  .info-card__icon svg {
    width: 24px;
    height: 24px;
  }

  .info-card__title {
    font-size: 16px;
  }

  .info-card__text {
    font-size: 14px;
  }

  /* Section Split */
  .section-split__content {
    padding: 0;
  }

  .section-split--reverse .section-split__content {
    padding: 0;
  }

  /* Banner Section */
  .banner-section {
    padding: clamp(35px, 6vw, 50px) 16px !important;
  }

  /* Footer */
  .site-footer {
    padding: 40px 0 0;
  }

  .footer-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .footer-title {
    font-size: 16px;
    margin-bottom: 14px;
  }

  /* CTA Section */
  .cta-section {
    padding: 30px 16px;
  }

  .cta-section__inner {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .cta-section__text {
    flex: 1 1 auto;
  }

  .cta-section__action {
    flex: 1 1 auto;
  }

  .cta-section__text .section-title,
  .cta-section__text .section-subtitle {
    text-align: center;
  }

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

  /* WhatsApp Button */
  .whatsapp-float {
    width: 52px;
    height: 52px;
    bottom: 18px;
    right: 18px;
  }

  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}

/* --- Small Mobile (480px) --- */
@media (max-width: 480px) {
  .hero-section {
    min-height: 320px;
  }

  .hero-inner {
    min-height: 320px;
    padding: 0 16px;
  }

  .hero-left {
    width: 100%;
    padding: 24px 0;
  }

  .hero-title {
    font-size: 24px;
  }

  .hero-description {
    font-size: 14px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

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

  .cta-btn--lg {
    padding: 13px 20px;
    font-size: 15px;
  }

  /* Service Cards */
  .service-card {
    flex: 0 0 82%;
    padding: 20px;
  }

  .service-card__title {
    font-size: 18px;
  }

  /* Feature Cards */
  .feature-card {
    padding: 20px;
  }

  .feature-card__title {
    font-size: 18px;
  }

  /* Info Cards */
  .info-card {
    padding: 16px;
    gap: 12px;
  }

  .info-card__icon {
    width: 36px;
    height: 36px;
  }

  /* Footer */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-bottom {
    padding: 16px 0;
    margin-top: 24px;
  }

  .partners-grid {
    gap: 24px;
  }

  .partners-grid img {
    max-height: 36px;
  }

  /* WhatsApp Button */
  .whatsapp-float {
    width: 48px;
    height: 48px;
    bottom: 14px;
    right: 14px;
  }

  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }
}
