:root {
  --bg: #0b0f1a;
  --surface: #0f1626;
  --text: #e8eefc;
  --muted: #a7b1c6;
  --border: #1e2a3d;
  --primary: #5b8cff;
  --primary-2: #46d1c8;
  --shadow: 0 24px 60px rgba(3, 8, 20, 0.45);
  --radius: 16px;
  --maxw: 1120px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
  line-height: 1.6;
  background: var(--bg);
  color: var(--text);
}

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

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

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

p {
  margin: 0 0 1rem;
}

h1, h2, h3, h4 {
  margin: 0 0 0.75rem;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.2rem, 2.8vw, 3.4rem);
}

h2 {
  font-size: clamp(1.6rem, 2.2vw, 2.4rem);
}

h3 {
  font-size: 1.2rem;
}

:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section--dark {
  background: radial-gradient(circle at top, rgba(91, 140, 255, 0.18), transparent 50%),
    linear-gradient(135deg, #0b0f1a 0%, #0d1324 40%, #0b0f1a 100%);
  color: var(--text);
}

.section--light {
  background: #f7f9fc;
  color: #0b1220;
}

.section--light .muted {
  color: #5b667a;
}

.section--light .card {
  background: #ffffff;
  border-color: #e3e8f3;
  box-shadow: 0 16px 40px rgba(12, 20, 40, 0.08);
}

.section--light .proof-list li {
  color: #3f4a63;
}

.section--light .proof-list li::before {
  color: #5b8cff;
}

.section--light .btn--ghost {
  color: #1b2642;
  border-color: #c8d3e6;
}

.section--light .btn--ghost:hover {
  border-color: #5b8cff;
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}

.grid {
  display: grid;
  gap: 24px;
}

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

.grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split {
  display: flex;
  align-items: center;
  gap: 48px;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.85rem;
  letter-spacing: 0.01em;
}

.pill--light {
  border-color: #d3dbea;
  color: #1b2642;
  background: #f1f5fb;
}

.pill--filter {
  cursor: pointer;
  border-color: #d6deee;
  background: #ffffff;
  color: #1b2642;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.pill--filter.is-active {
  border-color: transparent;
  background: linear-gradient(135deg, #5b8cff, #46d1c8);
  color: #0b1220;
  box-shadow: 0 12px 24px rgba(59, 89, 180, 0.3);
}

.card {
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(91, 140, 255, 0.5);
  box-shadow: 0 24px 60px rgba(6, 12, 28, 0.55);
}

.card--dark {
  background: linear-gradient(135deg, rgba(91, 140, 255, 0.12), rgba(70, 209, 200, 0.08));
  border-color: rgba(255, 255, 255, 0.12);
}

.card--outline {
  background: #ffffff;
  border: 1px solid #e3e8f3;
  box-shadow: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn--primary {
  background: linear-gradient(135deg, #5b8cff, #46d1c8);
  color: #0b1220;
  box-shadow: 0 12px 24px rgba(59, 89, 180, 0.35);
}

.btn--primary:hover {
  transform: translateY(-2px);
}

.btn--ghost {
  border-color: rgba(255, 255, 255, 0.35);
  color: #ffffff;
}

.btn--ghost:hover {
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-2px);
}

.btn--small {
  padding: 10px 16px;
  font-size: 0.9rem;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  background: rgba(9, 13, 24, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.brand__link {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand__name {
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #ffffff, #a8c0ff);
  -webkit-background-clip: text;
  color: transparent;
}

.brand__divider {
  width: 1px;
  height: 22px;
  background: rgba(255, 255, 255, 0.3);
}

.brand__tag {
  font-size: 0.85rem;
  color: var(--muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-links a {
  color: #e5ecff;
  font-weight: 500;
  font-size: 0.95rem;
}

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

.hamburger {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: #e5ecff;
  margin: 6px 0;
  border-radius: 999px;
}

.menu-overlay {
  background: rgba(4, 8, 18, 0.6);
}

.mobile-menu {
  background: #0f1626;
  color: #e8eefc;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu a {
  color: #e8eefc;
}

.hero {
  padding-top: 100px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.75rem;
  color: var(--muted);
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.proof-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: grid;
  gap: 10px;
}

.proof-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #d6def2;
}

.proof-list li::before {
  content: "-";
  color: var(--primary-2);
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 20px;
}

.brand-lockup__mark {
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 800;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #0b1220, #5b8cff);
  -webkit-background-clip: text;
  color: transparent;
}

.brand-lockup__divider {
  width: 2px;
  height: 48px;
  background: linear-gradient(180deg, #5b8cff, #46d1c8);
}

.brand-lockup__tagline {
  font-size: 1.1rem;
  color: #3f4a63;
  max-width: 420px;
}

.stats {
  gap: 32px;
  align-items: stretch;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat__value {
  font-size: 2rem;
  font-weight: 700;
}

.stat__label {
  color: var(--muted);
  font-size: 0.95rem;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cta-band {
  padding: 70px 0;
}

.cta-band .card {
  background: linear-gradient(135deg, rgba(91, 140, 255, 0.18), rgba(70, 209, 200, 0.12));
}

.footer {
  padding: 50px 0;
  background: #0b0f1a;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer p,
.footer a {
  color: #a9b5cf;
}

.footer .brand__name {
  color: #ffffff;
  background: none;
}

.section--light input,
.section--light textarea,
.section--light select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d7deec;
  background: #ffffff;
  color: #1b2642;
  font-size: 0.95rem;
}

.section--light textarea {
  min-height: 140px;
  resize: vertical;
}

.form-grid {
  display: grid;
  gap: 16px;
}

.form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.accordion {
  display: grid;
  gap: 12px;
}

.accordion__item {
  border-radius: 14px;
  border: 1px solid #e3e8f3;
  background: #ffffff;
}

.accordion__trigger {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 16px 18px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.accordion__content {
  max-height: 0;
  overflow: hidden;
  padding: 0 18px;
  transition: max-height 0.25s ease;
}

.accordion__content.is-open {
  padding-bottom: 16px;
}

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

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

@media (max-width: 980px) {
  .split {
    flex-direction: column;
    align-items: flex-start;
  }

  .grid--3,
  .grid--4,
  .grid--2 {
    grid-template-columns: 1fr;
  }

  .brand-lockup {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: block;
  }
}

/* PASTE AT END OF css/theme-v2.css */

.section--light { color: #0b1220; }
.section--light .muted { color: rgba(11, 18, 32, 0.68); }
.section--light a { color: #0b63ff; }
.section--light input,
.section--light textarea,
.section--light select {
  background: rgba(255, 255, 255, 0.98);
  color: #0b1220;
  border: 1px solid rgba(11, 18, 32, 0.14);
  caret-color: #0b1220;
}
.section--light select option {
  background: #ffffff;
  color: #0b1220;
}
.section--light input::placeholder,
.section--light textarea::placeholder {
  color: rgba(11, 18, 32, 0.45);
}
.section--light :focus-visible {
  outline: 2px solid rgba(27, 99, 255, 0.5);
  outline-offset: 2px;
}

/* PASTE AT END OF css/theme-v2.css: Readability + Contrast */
html { font-size: 16px; }
body { line-height: 1.6; letter-spacing: 0.1px; }
p { font-size: 1.02rem; }
h1, h2, h3, h4, h5, h6 { margin-bottom: 0.9rem; line-height: 1.2; }
.section-heading { gap: 14px; margin-bottom: 42px; }

.section--light { color: #0b1220; }
.section--light .muted,
.section--light .subtle { color: rgba(11, 18, 32, 0.68); }
.section--light a { color: #0b63ff; }
.section--light a:hover { text-decoration: underline; }
.section--light .card:not(.card--dark) { color: #0b1220; }
.section--light input,
.section--light textarea,
.section--light select {
  background: #ffffff;
  color: #0b1220;
  border: 1px solid rgba(11, 18, 32, 0.14);
  caret-color: #0b1220;
}
.section--light select option {
  background: #ffffff;
  color: #0b1220;
}
.section--light input::placeholder,
.section--light textarea::placeholder {
  color: rgba(11, 18, 32, 0.45);
}

.section--dark { color: #eef2ff; }
.section--dark .muted,
.section--dark .subtle { color: rgba(232, 238, 252, 0.75); }
.section--dark a { color: #cfe0ff; }
.section--dark a:hover { color: #ffffff; text-decoration: underline; }
.section--dark .btn--ghost { color: #eef2ff; border-color: rgba(255, 255, 255, 0.55); }
.section--dark .btn--ghost:hover { border-color: rgba(255, 255, 255, 0.9); }
.section--dark :focus-visible { outline: 2px solid rgba(255, 255, 255, 0.75); outline-offset: 2px; }

.surface-light { color: #0b1220; }
.surface-light .muted,
.surface-light .subtle { color: rgba(11, 18, 32, 0.68); }
.surface-light a { color: #0b63ff; }
.surface-light a:hover { text-decoration: underline; }

.surface-dark { color: #e8eefc; }
.surface-dark .muted,
.surface-dark .subtle { color: rgba(232, 238, 252, 0.72); }
.surface-dark a { color: #cfe0ff; }
.surface-dark a:hover { color: #ffffff; text-decoration: underline; }

.btn__icon {
  display: inline-flex;
  align-items: center;
  margin-right: 8px;
}

.btn__icon svg {
  display: block;
}

@media (max-width: 720px) {
  p { font-size: 1rem; }
}

/* v2 final: branding + contact chat polish */
.brand-mark {
  height: 1em;
  width: auto;
  margin-right: 0.5rem;
  vertical-align: -0.12em;
}

.brand,
.brand__link {
  display: inline-flex;
  align-items: baseline;
}

.brand-lockup__logo-slot {
  width: min(44vw, 360px);
  min-width: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-lockup__logo-wide {
  width: 100%;
  height: auto;
  opacity: 0;
  transform: translateY(16px);
  animation: brandLogoIn 0.7s ease forwards;
}

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

.contact-chat-cta {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #4f7ef3, #44d1c7);
  color: #091327;
  border-color: transparent;
  box-shadow: 0 10px 24px rgba(43, 97, 214, 0.35), 0 0 0 0 rgba(68, 209, 199, 0.6);
  animation: chatGlowBreath 2.2s ease-in-out infinite;
}

.contact-chat-cta:hover {
  transform: translateY(-3px);
}

.contact-chat-cta::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.5);
  pointer-events: none;
}

.contact-chat-cta::after {
  content: "";
  position: absolute;
  top: 0;
  left: -130%;
  width: 55%;
  height: 100%;
  transform: skewX(-20deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  opacity: 0;
}

.contact-chat-cta:hover::after {
  opacity: 1;
  animation: chatShimmer 0.9s ease;
}

.chat-cta-icon {
  transition: transform 0.24s ease;
}

.contact-chat-cta:hover .chat-cta-icon {
  animation: chatIconWiggle 0.55s ease;
}

@keyframes chatGlowBreath {
  0% { box-shadow: 0 10px 24px rgba(43, 97, 214, 0.35), 0 0 0 0 rgba(68, 209, 199, 0.4); }
  50% { box-shadow: 0 16px 30px rgba(43, 97, 214, 0.45), 0 0 0 7px rgba(68, 209, 199, 0.12); }
  100% { box-shadow: 0 10px 24px rgba(43, 97, 214, 0.35), 0 0 0 0 rgba(68, 209, 199, 0.4); }
}

@keyframes chatShimmer {
  0% { left: -130%; }
  100% { left: 140%; }
}

@keyframes chatIconWiggle {
  0% { transform: rotate(0deg); }
  33% { transform: rotate(-12deg); }
  66% { transform: rotate(9deg); }
  100% { transform: rotate(0deg); }
}

.contact-chat-card {
  position: relative;
}

.guest-gate {
  margin-bottom: 14px;
  padding: 16px;
  border-radius: 14px;
  border: 1px solid #d7deec;
  background: #ffffff;
}

.pulse-highlight {
  animation: pulseHighlight 1s ease;
}

@keyframes pulseHighlight {
  0% { box-shadow: 0 0 0 0 rgba(43, 97, 214, 0.5); }
  100% { box-shadow: 0 0 0 20px rgba(43, 97, 214, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .contact-chat-cta,
  .contact-chat-cta::after,
  .chat-cta-icon,
  .brand-lockup__logo-wide,
  .pulse-highlight {
    animation: none !important;
    transition: none !important;
  }
}

/* Home banner: element-based Iluana lockup */
.home-brand-banner {
  width: 100%;
  background: #ffffff;
  padding: clamp(68px, 9vw, 112px) 24px;
}

.home-brand-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: clamp(20px, 4vw, 42px);
}

.brand-left {
  flex: 0 1 auto;
}

.brand-wide-logo {
  width: clamp(240px, 33vw, 470px);
  height: auto;
}

.brand-divider {
  width: 1px;
  height: clamp(86px, 10vw, 128px);
  background: linear-gradient(180deg, #5b8cff, #46d1c8);
}

.brand-tagline-wrap {
  overflow: hidden;
}

.brand-tagline {
  margin: 0;
  font-size: clamp(1.7rem, 3.2vw, 3rem);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #0b1220;
}

.home-brand-banner.banner-animate .brand-left {
  animation: slideInLeftFade 700ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.home-brand-banner.banner-animate .brand-divider {
  animation: dropDivider 600ms cubic-bezier(0.2, 0.8, 0.2, 1) 950ms both;
}

.home-brand-banner.banner-animate .brand-tagline {
  animation: revealTaglineFromDivider 800ms cubic-bezier(0.2, 0.8, 0.2, 1) 1750ms both;
}

@keyframes slideInLeftFade {
  from {
    opacity: 0;
    transform: translateX(-32px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes dropDivider {
  from {
    opacity: 0;
    transform: translateY(-28px) scaleY(0.2);
    transform-origin: top center;
  }
  to {
    opacity: 1;
    transform: translateY(0) scaleY(1);
    transform-origin: top center;
  }
}

@keyframes revealTaglineFromDivider {
  from {
    opacity: 0;
    transform: translateX(-10px);
    clip-path: inset(0 100% 0 0);
  }
  to {
    opacity: 1;
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
  }
}

@media (max-width: 900px) {
  .home-brand-banner {
    padding-left: 20px;
    padding-right: 20px;
  }

  .home-brand-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .brand-wide-logo {
    width: min(84vw, 420px);
  }

  .brand-divider {
    width: min(260px, 72vw);
    height: 1px;
  }

  .brand-tagline {
    font-size: clamp(1.45rem, 7vw, 2.1rem);
    line-height: 1.14;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-brand-banner.banner-animate .brand-left,
  .home-brand-banner.banner-animate .brand-divider,
  .home-brand-banner.banner-animate .brand-tagline {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    clip-path: inset(0 0 0 0) !important;
  }
}

.brand-mark{
  height: 1.15em;          /* slightly bigger than the “I” */
  width: auto;
  display: inline-block;
  vertical-align: -0.12em; /* baseline alignment */
  margin-right: 0.5rem;
}

.brand,
.brand__link{
  display: inline-flex;
  align-items: center;
}

.contact-email-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, #5b8cff, #46d1c8);
  color: #0b1220;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 10px 22px rgba(43, 97, 214, 0.28), 0 0 0 0 rgba(70, 209, 200, 0.45);
  transition: transform 0.2s ease, box-shadow 0.25s ease, filter 0.2s ease;
}

.contact-email-btn:hover {
  color: #0b1220;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(43, 97, 214, 0.34), 0 0 0 5px rgba(70, 209, 200, 0.12);
  filter: saturate(1.03);
}

.contact-email-btn:active {
  transform: translateY(0) scale(0.98);
}

@media (prefers-reduced-motion: reduce) {
  .contact-email-btn {
    transition: none !important;
  }

  .contact-email-btn:hover,
  .contact-email-btn:active {
    transform: none !important;
    filter: none !important;
  }
}

/* Premium corporate marketing footer */
.site-footer {
  position: relative;
  margin-top: 0;
  background:
    radial-gradient(120% 110% at 0% 0%, rgba(91, 140, 255, 0.24), transparent 56%),
    radial-gradient(90% 90% at 100% 15%, rgba(70, 209, 200, 0.14), transparent 62%),
    linear-gradient(145deg, #060b16 0%, #0a1324 45%, #0b1220 100%);
  color: #e8eefc;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.12;
  pointer-events: none;
}

.footer-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(240px, 1.25fr) minmax(200px, 1fr) auto;
  gap: 42px;
  padding-top: 56px;
  padding-bottom: 34px;
}

.footer-col {
  min-width: 0;
}

.footer-brand-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #f2f6ff;
}

.footer-brand-link:hover {
  color: #f2f6ff;
}

.footer-brand-mark {
  width: 34px;
  height: 34px;
}

.footer-brand-name {
  font-size: 1.22rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.footer-brand-tagline {
  margin: 14px 0 10px;
  max-width: 360px;
  color: rgba(232, 238, 252, 0.82);
}

.footer-support-link {
  color: #d5e2ff;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(213, 226, 255, 0.45);
  text-underline-offset: 3px;
}

.footer-support-link:hover {
  color: #ffffff;
  text-decoration-color: rgba(255, 255, 255, 0.8);
}

.footer-title {
  margin: 0 0 12px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(232, 238, 252, 0.7);
}

.footer-nav-col .footer-title + .footer-links {
  margin-bottom: 18px;
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-links a {
  position: relative;
  display: inline-block;
  width: fit-content;
  color: #e8eefc;
  font-weight: 500;
}

.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, #5b8cff, #46d1c8);
  transition: transform 0.2s ease;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-links a:hover::after {
  transform: scaleX(1);
}

.footer-social-col {
  justify-self: end;
  text-align: left;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-links a {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #eef3ff;
  border: 1px solid rgba(232, 238, 252, 0.3);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.social-links a:hover {
  transform: translateY(-2px);
  border-color: rgba(109, 153, 255, 0.7);
  background: rgba(91, 140, 255, 0.15);
  box-shadow: 0 10px 24px rgba(19, 38, 78, 0.45);
}

.footer-bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(2, 6, 16, 0.28);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px 18px;
  padding-top: 14px;
  padding-bottom: 16px;
}

.footer-bottom-inner p {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(224, 232, 247, 0.85);
}

.footer-bottom-inner a {
  color: #d8e4ff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-bottom-inner a:hover {
  color: #ffffff;
}

@media (max-width: 980px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 46px;
    padding-bottom: 28px;
  }

  .footer-social-col {
    justify-self: start;
  }

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

@media (max-width: 640px) {
  .footer-brand-link {
    justify-content: center;
  }

  .footer-brand-tagline {
    max-width: none;
    text-align: center;
  }

  .footer-brand {
    text-align: center;
  }

  .footer-nav-col {
    text-align: center;
  }

  .footer-links a {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-social-col {
    justify-self: center;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }

  .footer-bottom-inner {
    text-align: center;
    align-items: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .social-links a,
  .footer-links a::after {
    transition: none !important;
  }
}

.contact-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.contact-cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}

.cta-btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.25s ease, border-color 0.2s ease, filter 0.2s ease;
}

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

.cta-email {
  color: #0b1220;
  background: linear-gradient(135deg, #5b8cff, #46d1c8);
  box-shadow: 0 10px 22px rgba(43, 97, 214, 0.3);
}

.cta-whatsapp {
  color: #0b1220;
  background: linear-gradient(135deg, #4fcf8d, #26b069);
  box-shadow: 0 10px 22px rgba(28, 123, 84, 0.26);
}

.cta-chat {
  color: #0b1220;
  background: linear-gradient(135deg, #5b8cff, #46d1c8);
  box-shadow: 0 10px 22px rgba(43, 97, 214, 0.3);
}

.contact-cta-row .cta-btn {
  min-width: 214px;
}

.cta-email:hover,
.cta-whatsapp:hover,
.cta-chat:hover {
  color: #0b1220;
  transform: translateY(-2px);
  filter: saturate(1.03);
}

.cta-email:hover {
  box-shadow: 0 14px 28px rgba(43, 97, 214, 0.36), 0 0 0 5px rgba(70, 209, 200, 0.12);
}

.cta-whatsapp:hover {
  box-shadow: 0 14px 28px rgba(28, 123, 84, 0.34), 0 0 0 5px rgba(79, 207, 141, 0.13);
}

.cta-chat:hover {
  box-shadow: 0 14px 28px rgba(43, 97, 214, 0.34), 0 0 0 5px rgba(70, 209, 200, 0.11);
}

.cta-btn:active {
  transform: translateY(0) scale(0.98);
}

.cta-email::before,
.cta-whatsapp::before {
  content: "";
  position: absolute;
  top: 0;
  left: -130%;
  width: 55%;
  height: 100%;
  transform: skewX(-20deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  opacity: 0;
}

.cta-email:hover::before,
.cta-whatsapp:hover::before {
  opacity: 1;
  animation: ctaShimmer 0.9s ease;
}

@keyframes ctaShimmer {
  0% { left: -130%; }
  100% { left: 140%; }
}

@media (max-width: 640px) {
  .contact-cta-wrap {
    align-items: stretch;
  }

  .contact-cta-row {
    flex-direction: column;
  }

  .cta-btn,
  .contact-cta-row .cta-btn {
    width: 100%;
    min-width: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cta-btn,
  .cta-email::before,
  .cta-whatsapp::before {
    transition: none !important;
    animation: none !important;
  }

  .cta-email:hover,
  .cta-whatsapp:hover,
  .cta-chat:hover,
  .cta-btn:active {
    transform: none !important;
    filter: none !important;
  }
}

.chat-login-required {
  margin: 0 0 10px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(11, 18, 32, 0.14);
  background: rgba(91, 140, 255, 0.08);
  color: #1b2642;
  font-size: 0.92rem;
}
