/* Homepage-specific styles (shadcn layout) */

main {
  isolation: isolate;
  overflow: hidden;
}

header.fixed {
  overflow: visible;
}

#mainNav {
  overflow: visible;
}

/* ========== Mega Menu (Flyout) ========== */
.mega-menu-trigger {
  position: relative;
  display: flex;
  align-items: center;
}

.mega-menu-toggle {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  cursor: pointer;
}

#mainNav > a:hover,
#mainNav > a.nav-active,
.mega-menu-toggle:hover,
.mega-menu-toggle.nav-active,
.mega-menu-trigger:has(.mega-menu.open) .mega-menu-toggle {
  color: var(--gold) !important;
}

.mega-menu-trigger:has(.mega-menu.open) .mega-menu-toggle {
  font-weight: 600;
  box-shadow: inset 0 -2px 0 var(--gold);
}

.mega-menu-toggle svg {
  transition: transform 0.25s ease;
}

.mega-menu.open ~ .mega-menu-toggle svg,
.mega-menu-trigger:has(.mega-menu.open) .mega-menu-toggle svg {
  transform: rotate(180deg);
}

.mega-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: auto;
  transform: translateY(-6px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  pointer-events: none;
}

.mega-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.mega-menu-inner {
  background: var(--white);
  border: 1px solid var(--gray-200);
  box-shadow: 0 10px 32px rgba(11, 46, 89, 0.14);
  border-radius: 4px;
  overflow: hidden;
}

.mega-flyout {
  display: flex;
  align-items: stretch;
  min-height: 260px;
}

.mega-flyout-primary,
.mega-flyout-secondary,
.mega-flyout-tertiary {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mega-flyout-primary {
  width: 220px;
  flex-shrink: 0;
  background: #f3f4f6;
  border-right: 1px solid var(--gray-200);
}

.mega-flyout-panels {
  position: relative;
  min-width: 420px;
}

.mega-flyout-panel {
  display: none;
  height: 100%;
}

.mega-flyout-panel.active {
  display: flex;
  align-items: stretch;
}

.mega-flyout-secondary {
  width: 240px;
  flex-shrink: 0;
  background: #fafafa;
  border-right: 1px solid var(--gray-200);
}

.mega-flyout-tertiary-wrap {
  position: relative;
  flex: 1;
  min-width: 240px;
  background: var(--white);
}

.mega-flyout-tertiary {
  display: none;
  padding: 6px 0;
}

.mega-flyout-tertiary.active {
  display: block;
}

.mega-flyout-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 13px 16px;
  border: none;
  border-bottom: 1px solid var(--gray-200);
  background: transparent;
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 500;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s ease, color 0.15s ease;
}

.mega-flyout-primary .mega-flyout-item:last-child,
.mega-flyout-secondary .mega-flyout-item:last-child {
  border-bottom: none;
}

.mega-flyout-item:hover,
.mega-flyout-item.active {
  background: #e8edf3;
  color: var(--navy);
  font-weight: 600;
}

.mega-flyout-item--link::after {
  display: none;
}

.mega-flyout-item[data-panel]::after,
.mega-flyout-item[data-subpanel]::after {
  content: '';
  width: 7px;
  height: 7px;
  border-top: 1.5px solid var(--gray-400);
  border-right: 1.5px solid var(--gray-400);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.mega-flyout-item.active::after {
  border-color: var(--navy);
}

.mega-flyout-tertiary a {
  display: block;
  padding: 12px 18px;
  border-bottom: 1px solid var(--gray-100);
  color: var(--gray-600);
  font-size: 0.88rem;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}

.mega-flyout-tertiary li:last-child a {
  border-bottom: none;
}

.mega-flyout-tertiary a:hover {
  background: #f8fafc;
  color: var(--navy);
}

.mega-flyout-all {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  padding: 10px 16px;
  border-top: 1px solid var(--gray-200);
  background: #f8fafc;
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
}

.mega-flyout-all:hover {
  color: var(--gold);
  background: #f3f4f6;
}

.mega-flyout-panel.active .mega-flyout-tertiary-wrap {
  padding-bottom: 40px;
}

.mega-menu::before {
  content: '';
  position: fixed;
  inset: 0;
  top: 64px;
  background: rgba(10, 20, 40, 0.18);
  z-index: -1;
}

@media (max-width: 768px) {
  .mega-menu { display: none !important; }
  .mega-menu-toggle svg { display: none; }
}

/* ========== Hero Split Layout ========== */
.hero-split {
  position: relative;
  margin-top: 4rem;
  background: #fff;
  overflow: hidden;
  isolation: isolate;
  contain: paint;
}

.hero-split::before {
  content: '';
  position: absolute;
  inset: -20%;
  z-index: 0;
  pointer-events: none;
  transform: rotate(-3deg);
  transform-origin: center center;
  background-image:
    linear-gradient(hsl(213 78% 20% / 0.06) 1px, transparent 1px),
    linear-gradient(90deg, hsl(213 78% 20% / 0.06) 1px, transparent 1px);
  background-size: 112px 112px;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 30%, transparent 95%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 30%, transparent 95%);
}

.hero-split-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  min-height: 560px;
}

.hero-split-content {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  padding: 1rem 0;
}

.hero-split-title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.2;
  color: hsl(var(--primary));
  letter-spacing: -0.02em;
}

.hero-highlight {
  position: relative;
  display: inline-block;
  color: hsl(var(--accent));
  z-index: 1;
  isolation: isolate;
}

.hero-highlight::after {
  content: '';
  position: absolute;
  left: -10%;
  right: -10%;
  top: 6%;
  bottom: 6%;
  border: 2.5px solid hsl(var(--primary));
  border-radius: 50%;
  transform: rotate(-3deg);
  z-index: -1;
  opacity: 0.9;
}

.hero-split-desc {
  font-size: 1rem;
  line-height: 1.75;
  color: hsl(var(--muted-foreground));
  max-width: 28rem;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
}

.btn-hero-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.65rem 0.65rem 1.5rem;
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  border-radius: 9999px;
  font-size: 0.95rem;
  font-weight: 600;
  overflow: hidden;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 4px 14px rgba(11, 46, 89, 0.2);
}

.btn-hero-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 55%;
  height: 100%;
  background: linear-gradient(
    100deg,
    transparent 0%,
    rgba(255, 255, 255, 0.1) 35%,
    rgba(255, 255, 255, 0.35) 50%,
    rgba(255, 255, 255, 0.1) 65%,
    transparent 100%
  );
  transform: skewX(-18deg);
  animation: btn-hero-shine 3.5s ease-in-out infinite;
  pointer-events: none;
}

.btn-hero-primary > span {
  position: relative;
  z-index: 1;
}

@keyframes btn-hero-shine {
  0%, 65% {
    left: -120%;
  }
  100% {
    left: 160%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn-hero-primary::before {
    animation: none;
    display: none;
  }
}

.btn-hero-primary:hover {
  background: hsl(var(--primary) / 0.9);
  transform: translateY(-1px);
}

.btn-hero-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 9999px;
  background: hsl(var(--accent));
  color: hsl(var(--accent-foreground));
  flex-shrink: 0;
}

.btn-hero-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: hsl(var(--primary));
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.2s;
}

.btn-hero-link:hover {
  color: hsl(var(--accent));
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  padding-top: 0.5rem;
  max-width: 32rem;
}

.hero-stat strong {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: hsl(var(--primary));
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

.hero-stat span {
  font-size: 0.8rem;
  line-height: 1.5;
  color: hsl(var(--muted-foreground));
}

/* Right visual */
.hero-split-visual {
  --hero-shape-top: 8%;
  --hero-shape-height: 88%;
  --hero-shape-bottom: calc(100% - var(--hero-shape-top) - var(--hero-shape-height));
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-visual-glow {
  position: absolute;
  right: 4%;
  bottom: calc(var(--hero-shape-bottom) - 4%);
  width: 80%;
  height: calc(var(--hero-shape-height) + 12%);
  border-radius: 1.5rem;
  transform: rotate(3deg);
  transform-origin: bottom center;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(
    ellipse 75% 70% at 50% 55%,
    rgba(11, 46, 89, 0.45) 0%,
    rgba(30, 90, 160, 0.25) 40%,
    rgba(11, 46, 89, 0.08) 65%,
    transparent 80%
  );
  filter: blur(28px);
  animation: hero-glow-pulse 3.5s ease-in-out infinite;
}

@keyframes hero-glow-pulse {
  0%, 100% {
    opacity: 0.5;
    transform: rotate(3deg) scale(0.98);
    filter: blur(28px);
  }
  50% {
    opacity: 1;
    transform: rotate(3deg) scale(1.05);
    filter: blur(36px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-visual-glow {
    animation: none;
    opacity: 0.65;
  }
}

.hero-visual-shape,
.hero-visual-photo-clip {
  position: absolute;
  right: 8%;
  bottom: var(--hero-shape-bottom);
  width: 72%;
  border-radius: 1.25rem;
  transform: rotate(3deg);
  transform-origin: bottom center;
}

.hero-visual-shape {
  height: var(--hero-shape-height);
  background: hsl(var(--background) / 0.95);
  border: none;
  box-shadow: 0 8px 32px rgba(11, 46, 89, 0.08);
  z-index: 1;
}

@supports ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  .hero-visual-shape {
    background: hsl(var(--background) / 0.6);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
  }
}

.hero-visual-photo-clip {
  height: calc(var(--hero-shape-height) + 45%);
  overflow: hidden;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  line-height: 0;
}

.hero-visual-wrap {
  position: absolute;
  inset: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  z-index: 3;
  pointer-events: none;
}

.hero-visual-wrap > * {
  pointer-events: auto;
}

.hero-visual-photo {
  position: relative;
  z-index: 1;
  width: 128%;
  max-width: none;
  max-height: 520px;
  height: auto;
  object-fit: contain;
  object-position: center bottom;
  border-radius: 0;
  box-shadow: none;
  display: block;
  flex-shrink: 0;
}

.hero-float-card {
  position: absolute;
  z-index: 2;
  padding: 0.75rem 1rem;
  box-shadow: 0 8px 24px rgba(11, 46, 89, 0.12);
  animation: hero-float 4s ease-in-out infinite;
}

.hero-float-card--tl {
  top: 34%;
  left: 0;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  width: 200px;
  min-height: 77px;
  animation-delay: 0s;
}

.hero-float-card--br {
  bottom: 28%;
  right: -2%;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  width: 200px;
  min-height: 77px;
  animation-delay: 1s;
}

.hero-float-card--main {
  bottom: 2%;
  left: 20%;
  transform: translateX(calc(-50% - 1.75rem));
  width: min(100vw, 300px);
  max-width: 300px;
  padding: 1rem;
  animation-delay: 0.5s;
}

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

.hero-float-card--main {
  animation-name: hero-float-center;
}

@keyframes hero-float-center {
  0%, 100% { transform: translateX(calc(-50% - 1.75rem)) translateY(0); }
  50% { transform: translateX(calc(-50% - 1.75rem)) translateY(-6px); }
}

.hero-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
}

.hero-tab {
  font-size: 0.7rem;
  font-weight: 500;
  padding: 0.25rem 0.6rem;
  border-radius: 9999px;
  color: hsl(var(--muted-foreground));
  background: hsl(var(--muted));
  cursor: default;
}

.hero-tab.active {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}

.hero-solution-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.hero-solution-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.hero-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 9999px;
  background: hsl(var(--accent));
  color: hsl(var(--accent-foreground));
  flex-shrink: 0;
}

/* Testimonials slider */
.testimonials-track {
  display: flex;
  gap: 1rem;
  transition: transform 0.4s ease;
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 0.667rem);
  min-width: 0;
}

.testimonials-dots button {
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  background: hsl(var(--border));
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.testimonials-dots button.active {
  background: hsl(var(--accent));
  width: 24px;
}

/* Intro section */
.intro-split-section {
  padding-top: 1.5rem;
  padding-bottom: 5rem;
}

/* Agent card header */
.agent-card-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1.75rem;
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}

.agent-card-photo {
  width: 4.5rem;
  height: 4.5rem;
  flex-shrink: 0;
  border-radius: 0.75rem;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.agent-card-header-text {
  flex: 1;
  min-width: 0;
}

.agent-card-header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  margin-left: auto;
}

.agent-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.agent-card-btn i,
.agent-card-btn svg {
  width: 1rem;
  height: 1rem;
}

.agent-card-btn--contact {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.agent-card-btn--contact:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-1px);
}

.agent-card-btn--line {
  color: #fff;
  background: #06c755;
  border: 1px solid #06c755;
}

.agent-card-btn--line:hover {
  background: #05b34c;
  border-color: #05b34c;
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .agent-card-header {
    flex-wrap: wrap;
  }

  .agent-card-header-actions {
    width: 100%;
    margin-left: 0;
    padding-left: calc(4.5rem + 1.25rem);
  }
}

@media (max-width: 480px) {
  .agent-card-header-actions {
    padding-left: 0;
    flex-direction: column;
    align-items: stretch;
  }

  .agent-card-btn {
    justify-content: center;
  }
}

.agent-stat:not(:last-child) {
  border-right: 1px solid hsl(var(--border));
}

@media (max-width: 1024px) {
  .hero-split-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    min-height: auto;
  }

  .hero-split-visual {
    min-height: 400px;
    order: -1;
  }

  .hero-float-card--br {
    right: 0;
  }

  .testimonial-card {
    flex: 0 0 calc(50% - 0.5rem);
  }

  .agent-card-body {
    grid-template-columns: repeat(3, 1fr) !important;
  }

  .agent-stat:nth-child(3) {
    border-right: none !important;
  }

  .agent-stat:nth-child(4),
  .agent-stat:nth-child(5) {
    border-top: 1px solid hsl(var(--border));
  }
}

@media (max-width: 768px) {
  #mainNav {
    display: none;
    position: fixed;
    top: 4rem;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: hsl(var(--background));
    border-bottom: 1px solid hsl(var(--border));
    box-shadow: 0 4px 20px rgba(11, 46, 89, 0.1);
  }

  #mainNav.open {
    display: flex;
  }

  .header-actions-desktop {
    display: none !important;
  }

  .mobile-toggle {
    display: inline-flex !important;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .hero-float-card--tl {
    left: 0;
    width: 200px;
    min-height: 77px;
  }

  .hero-visual-wrap {
    width: 92%;
  }

  .hero-visual-photo {
    width: 135%;
    max-height: 420px;
  }

  .hero-float-card--main {
    width: min(calc(100vw - 2rem), 280px);
  }

  .testimonial-card {
    flex: 0 0 100%;
  }

  .agent-card-body {
    grid-template-columns: 1fr !important;
  }

  .agent-stat {
    border-right: none !important;
    border-top: 1px solid hsl(var(--border));
  }

  .agent-stat:first-child {
    border-top: none;
  }
}

@media (min-width: 769px) {
  .mobile-toggle {
    display: none !important;
  }
}

/* ========== Intro About Section ========== */
.intro-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.intro-about-visual {
  position: relative;
}

.intro-about-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 1.25rem;
  box-shadow: 0 12px 40px rgba(11, 46, 89, 0.1);
}

.intro-about-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.intro-about-title {
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.25;
  color: hsl(var(--foreground));
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.intro-about-desc {
  font-size: 0.95rem;
  line-height: 1.75;
  color: hsl(var(--muted-foreground));
  margin-bottom: 1.5rem;
  max-width: 32rem;
}

.intro-feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.intro-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: hsl(var(--foreground));
  line-height: 1.5;
}

.intro-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 9999px;
  background: hsl(var(--accent));
  color: hsl(var(--accent-foreground));
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.intro-about-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.intro-about-cta .btn-hero-primary,
.intro-about-cta .btn-intro-outline {
  height: 3.5rem;
  box-sizing: border-box;
}

.intro-about-cta .btn-hero-primary {
  padding: 0 0.5rem 0 1.5rem;
}

.intro-about-cta .btn-intro-outline {
  padding: 0 1.5rem;
}

.btn-intro-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.5rem;
  border-radius: 9999px;
  border: 2px solid hsl(var(--primary));
  color: hsl(var(--primary));
  font-size: 0.95rem;
  font-weight: 600;
  background: transparent;
  transition: background 0.2s, color 0.2s;
}

.btn-intro-outline:hover {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}

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

  .intro-about-visual {
    max-width: 520px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .intro-about-content {
    text-align: center;
    align-items: center;
  }

  .intro-feature-list li {
    text-align: left;
  }

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

/* ========== Services Feature Grid ========== */
.services-feature-section {
  background: hsl(var(--muted) / 0.35);
  padding-top: 3.5rem;
  padding-bottom: 5rem;
}

.services-feature-section .container {
  max-width: 1000px;
}

.services-feature-inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1.75rem;
}

.services-feature-inner > .text-center {
  padding-top: 0.5rem;
}

.services-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.125rem 1.25rem;
}

.service-feature-card {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  padding: 1.25rem 1.375rem;
  min-height: 0;
  border: none;
  border-radius: 0.875rem;
  background: hsl(var(--background));
  box-shadow: 0 4px 24px rgba(11, 46, 89, 0.07);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.service-feature-card:hover {
  box-shadow: 0 8px 32px rgba(11, 46, 89, 0.12);
  transform: translateY(-2px);
}

.service-feature-card--featured {
  background: linear-gradient(135deg, hsl(var(--primary)) 0%, #061d38 100%);
  color: #fff;
  box-shadow: 0 8px 32px rgba(11, 46, 89, 0.22);
}

.service-feature-card--featured:hover {
  box-shadow: 0 12px 40px rgba(11, 46, 89, 0.28);
}

.service-feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.625rem;
  background: #fff;
  color: hsl(var(--primary));
  box-shadow: 0 2px 10px rgba(11, 46, 89, 0.1);
}

.service-feature-icon i,
.service-feature-icon svg {
  width: 1.15rem;
  height: 1.15rem;
}

.service-feature-card--featured .service-feature-icon {
  color: hsl(var(--accent));
}

.service-feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: hsl(var(--foreground));
}

.service-feature-card--featured h3 {
  color: #fff;
}

.service-feature-card p {
  flex: 1;
  font-size: 0.85rem;
  line-height: 1.5;
  color: hsl(var(--muted-foreground));
}

.service-feature-card--featured p {
  color: rgba(255, 255, 255, 0.88);
}

.service-feature-link {
  align-self: flex-start;
  margin-top: auto;
  padding-top: 0.25rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: hsl(var(--primary));
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.2s ease;
}

.service-feature-link:hover {
  color: hsl(var(--accent));
}

.service-feature-card--featured .service-feature-link {
  color: #fff;
}

.service-feature-card--featured .service-feature-link:hover {
  color: hsl(var(--accent));
}

@media (max-width: 1024px) {
  .services-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }
}

@media (max-width: 640px) {
  .services-feature-inner {
    gap: 1.5rem;
  }

  .services-feature-grid {
    grid-template-columns: 1fr;
    gap: 0.875rem;
  }

  .service-feature-card {
    padding: 1.125rem 1.25rem;
  }
}

/* ========== Recommended Plans ========== */
.recommended-plans-section {
  position: relative;
  z-index: 1;
  isolation: isolate;
  overflow: hidden;
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}

.recommended-plans-section h2 {
  color: #fff;
}

.recommended-plans-section .text-muted-foreground {
  color: rgba(255, 255, 255, 0.78);
}

.recommended-plans-section .btn-outline {
  border-color: rgba(255, 255, 255, 0.45);
  background: transparent;
  color: #fff;
}

.recommended-plans-section .btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.65);
}

.recommended-plans-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.recommended-plan-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: none;
  outline: none;
  border-radius: 1.25rem;
  background: hsl(var(--background));
  background-clip: padding-box;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.recommended-plan-card:hover {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
  transform: translateY(-4px);
}

.recommended-plan-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.recommended-plan-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.recommended-plan-card:hover .recommended-plan-media img {
  transform: scale(1.06);
}

.recommended-plan-media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(11, 46, 89, 0.05) 0%,
    rgba(11, 46, 89, 0.55) 100%
  );
}

.recommended-plan-badge {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  padding: 0.3rem 0.75rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.92);
  color: hsl(var(--primary));
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  backdrop-filter: blur(6px);
}

.recommended-plan-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1.25rem 1.35rem 1.35rem;
}

.recommended-plan-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
  color: hsl(var(--foreground));
  letter-spacing: -0.01em;
}

.recommended-plan-body p {
  font-size: 0.85rem;
  line-height: 1.65;
  color: hsl(var(--muted-foreground));
}

.recommended-plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin: 0.35rem 0 0;
  padding: 0;
}

.recommended-plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.8rem;
  line-height: 1.45;
  color: hsl(var(--foreground));
}

.recommended-plan-features li i,
.recommended-plan-features li svg {
  flex-shrink: 0;
  width: 0.95rem;
  height: 0.95rem;
  margin-top: 0.1rem;
  color: hsl(var(--accent));
}

.recommended-plan-meta {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(11, 46, 89, 0.08);
}

.recommended-plan-meta .stat-pair {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  flex-shrink: 0;
}

.recommended-plan-meta .stat-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  color: #64748b;
  font-weight: 500;
}

.recommended-plan-meta .stat-item svg {
  width: 14px;
  height: 14px;
  color: var(--navy, #0b2e59);
  opacity: 0.75;
}

.recommended-plan-meta .card-share {
  display: none;
}

.articles-card-meta {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 0.65rem;
}

.articles-card-meta .articles-card-date {
  margin: 0;
  flex-shrink: 0;
}

.articles-card-meta .stat-pair {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  flex-shrink: 0;
}

.articles-card-meta .stat-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  color: #64748b;
  font-weight: 500;
}

.articles-card-meta .stat-item svg {
  width: 14px;
  height: 14px;
  color: var(--navy, #0b2e59);
  opacity: 0.75;
}

.articles-card-meta .card-share {
  display: none;
}

@media (max-width: 1200px) {
  .recommended-plans-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .recommended-plans-grid {
    grid-template-columns: 1fr;
  }
}

/* ========== Articles Feature + Videos ========== */
.articles-container {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.articles-feature-header {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 3rem 4rem;
  align-items: start;
}

.articles-feature-title {
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: hsl(var(--foreground));
  white-space: nowrap;
}

.articles-feature-badge {
  display: inline-block;
  margin-left: 0.5rem;
  padding: 0.3rem 0.7rem;
  border-radius: 0.35rem;
  background: hsl(var(--accent));
  color: hsl(var(--accent-foreground));
  font-size: 0.75rem;
  font-weight: 700;
  vertical-align: middle;
  transform: translateY(-0.35rem);
}

.articles-feature-desc {
  font-size: 0.95rem;
  line-height: 1.8;
  color: hsl(var(--muted-foreground));
  max-width: 32rem;
  justify-self: end;
  padding-top: 0.35rem;
}

.articles-video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  align-items: stretch;
}

.articles-cards-block {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.articles-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.75rem;
  align-items: stretch;
}

.articles-video-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.25rem;
  aspect-ratio: 16 / 10;
  min-height: 0;
  background: hsl(var(--primary));
  box-shadow: 0 12px 40px rgba(11, 46, 89, 0.12);
}

.articles-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border-radius: 1.25rem;
  text-decoration: none;
  color: inherit;
}

.articles-card-media {
  position: relative;
  flex-shrink: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: hsl(var(--muted));
}

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

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

.articles-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.25rem;
  min-height: 9.5rem;
}

.articles-card-body h3 {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  color: hsl(var(--foreground));
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  transition: color 0.2s ease;
}

.articles-card:hover .articles-card-body h3 {
  color: hsl(var(--accent));
}

.articles-card-body p {
  flex: 1;
  font-size: 0.875rem;
  line-height: 1.6;
  color: hsl(var(--muted-foreground));
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.articles-card-date {
  margin-top: auto;
  padding-top: 0.35rem;
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
}

.articles-video-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.articles-video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 1.75rem;
  background: linear-gradient(180deg, transparent 35%, rgba(11, 46, 89, 0.75) 100%);
  pointer-events: none;
}

.articles-video-overlay p {
  max-width: 16rem;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 700;
  line-height: 1.35;
  color: #fff;
}

.articles-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border: none;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.92);
  color: hsl(var(--primary));
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transform: translate(-50%, -50%);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.articles-video-play i,
.articles-video-play svg {
  width: 1.35rem;
  height: 1.35rem;
  margin-left: 0.15rem;
}

.articles-video-play:hover {
  transform: translate(-50%, -50%) scale(1.06);
  background: #fff;
}

.articles-video-card.is-playing .articles-video-play {
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 1024px) {
  .articles-container {
    gap: 3rem;
  }

  .articles-feature-header {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .articles-feature-title {
    white-space: normal;
  }

  .articles-feature-desc {
    justify-self: start;
    max-width: none;
    padding-top: 0;
  }

  .articles-cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .articles-container {
    gap: 2.5rem;
  }

  .articles-video-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .articles-video-card {
    aspect-ratio: 16 / 11;
  }

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

  .articles-card-body {
    min-height: auto;
  }
}

/* ========== Buy Insurance Online ========== */
.online-buy-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  contain: paint;
  background: transparent;
}

.online-buy-panel {
  position: relative;
  z-index: 1;
  padding: 3.25rem 3.5rem 3.75rem;
  border-radius: 1.25rem;
  background: #0B2E59;
  box-shadow: 0 16px 56px rgba(11, 46, 89, 0.22);
  overflow: hidden;
}

.online-buy-panel::before {
  content: '';
  position: absolute;
  inset: -40%;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  transform: rotate(-12deg);
  animation: gridDrift 25s linear infinite;
}

@keyframes gridDrift {
  0% { transform: rotate(-12deg) translate(0, 0); }
  50% { transform: rotate(-12deg) translate(30px, 30px); }
  100% { transform: rotate(-12deg) translate(0, 0); }
}

.online-buy-panel > * {
  position: relative;
  z-index: 1;
}

.online-buy-header {
  margin: 0 auto 3rem;
  max-width: 40rem;
  text-align: center;
}

.online-buy-title {
  font-size: clamp(1.75rem, 3vw, 1.875rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #fff;
}

.online-buy-desc {
  margin-top: 0.75rem;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
}

.online-buy-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  width: 100%;
  margin: 0 auto;
}

.online-buy-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 2rem;
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.04) 100%);
  backdrop-filter: blur(8px);
  color: #fff;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.online-buy-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transform: skewX(-20deg);
  transition: none;
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  50% { left: 150%; }
  100% { left: 150%; }
}

.online-buy-card:nth-child(2)::before {
  animation-delay: 1.5s;
}

.online-buy-card:hover {
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255,255,255,0.1) inset;
}

.online-buy-card-inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}

.online-buy-card-logo {
  width: 5rem;
  height: 5rem;
  flex-shrink: 0;
  object-fit: contain;
  background: #fff;
  border-radius: 0.85rem;
  padding: 0.5rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}

.online-buy-card-logo--fin {
  width: 5rem;
  height: 5rem;
}

.online-buy-card-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.online-buy-card-label {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
  white-space: nowrap;
  color: #fff;
}

.online-buy-card-sub {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
}

.online-buy-card-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.online-buy-card-arrow svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #fff;
  transition: transform 0.3s ease;
}

.online-buy-card:hover .online-buy-card-arrow {
  background: #fff;
}

.online-buy-card:hover .online-buy-card-arrow svg {
  color: hsl(var(--primary));
  transform: translateX(3px);
}

@media (max-width: 768px) {
  .online-buy-panel {
    padding: 2.5rem 1.5rem 3rem;
  }

  .online-buy-cards {
    grid-template-columns: 1fr;
    max-width: 24rem;
    margin: 0 auto;
  }

  .online-buy-card {
    padding: 1.25rem 1.5rem;
  }

  .online-buy-card-inner {
    gap: 1rem;
  }

  .online-buy-card-label {
    white-space: normal;
    font-size: 1.1rem;
  }

  .online-buy-card-logo {
    width: 3.75rem;
    height: 3.75rem;
  }

  .online-buy-card-logo--fin {
    width: 3.75rem;
    height: 3.75rem;
  }
}

@media (max-width: 480px) {
  .online-buy-title {
    font-size: 1.65rem;
  }

  .online-buy-card-label {
    font-size: 1rem;
  }

  .online-buy-card-arrow {
    width: 2.25rem;
    height: 2.25rem;
  }
}

/* ========== CTA Banner ========== */
.site-cta {
  overflow: hidden;
}

.site-cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 4rem 0;
}

.site-cta-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: hsl(var(--accent));
  margin-bottom: 0.5rem;
}

.site-cta-desc {
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 1.35rem;
}

.site-cta-contacts {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem 1.25rem;
}

.site-cta-contact {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.site-cta-contact:hover {
  opacity: 0.85;
}

.site-cta-contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  flex-shrink: 0;
}

.site-cta-contact-icon i,
.site-cta-contact-icon svg {
  width: 1rem;
  height: 1rem;
}

.site-cta-contact-icon--phone {
  background: #fff;
  color: hsl(var(--primary));
}

.site-cta-contact-icon--line {
  background: #06c755;
  color: #fff;
}

.site-cta-divider {
  width: 1px;
  height: 1.5rem;
  background: rgba(255, 255, 255, 0.35);
}

.site-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  background: hsl(var(--accent));
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(200, 155, 60, 0.35);
  transition: background 0.2s ease, transform 0.2s ease;
}

.site-cta-btn:hover {
  background: #d4ad5a;
  transform: translateY(-1px);
}

.site-cta-btn i,
.site-cta-btn svg {
  width: 1.15rem;
  height: 1.15rem;
}

/* ========== Site Footer ========== */
.site-footer {
  color: rgba(255,255,255,0.82);
  padding: 0;
}

.site-footer-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  padding: 2.5rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.site-footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  letter-spacing: 0.01em;
}

.site-footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer-col ul li {
  margin-bottom: 0.45rem;
}

.site-footer-col ul a {
  font-size: 0.8rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer-col ul a:hover {
  color: #fff;
}

.site-footer-info {
  border-collapse: collapse;
  margin-bottom: 1rem;
}

.site-footer-info td {
  font-size: 0.8rem;
  line-height: 1.5;
  padding: 0.2rem 0;
  vertical-align: top;
}

.site-footer-info td:first-child {
  color: rgba(255,255,255,0.5);
  padding-right: 0.75rem;
  white-space: nowrap;
}

.site-footer-info td:last-child {
  color: rgba(255,255,255,0.85);
}

.site-footer-info a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
}

.site-footer-info a:hover {
  color: #fff;
}

.site-footer-socials {
  display: flex;
  gap: 0.65rem;
  margin-top: 0.5rem;
}

.site-footer-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 9999px;
  color: #fff;
  transition: opacity 0.2s ease;
}

.site-footer-social-icon:hover {
  opacity: 0.85;
}

.site-footer-social-icon i,
.site-footer-social-icon svg {
  width: 1.1rem;
  height: 1.1rem;
}

.site-footer-social-icon--fb,
.site-footer-social-icon--facebook {
  background: #1877f2;
}

.site-footer-social-icon--line {
  background: #06c755;
}

.site-footer-social-icon--tiktok {
  background: #000;
}

.site-footer-social-icon--instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.site-footer-social-icon--youtube {
  background: #ff0000;
}

.site-footer-social-icon--email {
  background: #c0392b;
}

.site-footer-social-icon--phone {
  background: #0b2e59;
}

.site-footer-social-icon--website {
  background: #334155;
}

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

.site-footer-bottom p,
.site-footer-bottom a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}

.site-footer-bottom a {
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer-bottom a:hover {
  color: #fff;
}

.site-footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

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

@media (max-width: 768px) {
  .site-footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

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

@media (max-width: 480px) {
  .site-footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .site-cta-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 3rem 0;
  }

  .site-cta-action {
    width: 100%;
  }

  .site-cta-btn {
    width: 100%;
  }

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

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