
/* ════════════════════════════════════════════════════════════════════════════════
   GLOBAL — FONTS & CSS VARIABLES
   ════════════════════════════════════════════════════════════════════════════════ */

@font-face {
  font-family: 'MuseoModerno';
  src: url('../fonts/MuseoModernoRegularttf.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'MuseoModerno';
  src: url('../fonts/MuseoModernoItalic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

html {
  scroll-behavior: smooth;
}

:root {
  --bg-color: #f6f8fa;
  --bg-secondary: #ffffff;
  --bg-primary: #f6f8fa;
  --bg-card: #ffffff;
  --text-color: #222;
  --text-primary: #222;
  --text-secondary: #555;
  --text-muted: #888;
  --border-color: #d0d7de;
  --border-light: rgba(0, 0, 0, 0.12);
  --dropdown-bg: #333;
  --dropdown-text: #ffffff;
  --accent-color: #0097b2;
  --accent-hover: #00c4cc;
  --accent: #0097b2;
  --primary: #0097b2;
  --card-shadow: rgba(0,0,0,0.1);
}

[data-theme="dark"] {
  --bg-color: #000000;
  --bg-secondary: #0a0a0a;
  --bg-primary: #0a0a0a;
  --bg-card: #111111;
  --text-color: #e8e8e8;
  --text-primary: #e8e8e8;
  --text-secondary: #b8b8b8;
  --text-muted: #888;
  --border-color: #3d3d3d;
  --border-light: rgba(255, 255, 255, 0.12);
  --dropdown-bg: #111111;
  --dropdown-text: #e8e8e8;
  --accent-color: #b794f6;
  --accent-hover: #9f7aea;
  --accent: #b794f6;
  --primary: #b794f6;
  --card-shadow: rgba(0,0,0,0.5);
}

/* ────────────────────────────────────────────────────────────
   GLOBAL — BASE STYLES
   ──────────────────────────────────────────────────────────── */

body {
  margin: 0;
 font-family: "MuseoModerno", sans-serif;
 background-color: var(--bg-color);
 color: var(--text-color);
 transition: background-color 0.3s ease, color 0.3s ease;
}

main > section {
  position: relative;
}
main > section::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  box-shadow:
    inset 0 120px 100px -50px rgba(0,0,0,0.7),
    inset 0 -120px 100px -50px rgba(0,0,0,0.7);
}
[data-theme="light"] main > section::after {
  box-shadow:
    inset 0 120px 100px -50px rgba(255,255,255,0.95),
    inset 0 -120px 100px -50px rgba(255,255,255,0.95);
}
main > section.hero-apple::after,
main > section.svc-hero::after,
main > section.res-hero::after,
main > section.about-hero-v2::after,
main > section.contact-hero-v2::after,
main > section.page-hero::after {
  display: none;
}

/* ════════════════════════════════════════════════════════════════════════════════
   GLOBAL — NAVBAR & HEADER
   ════════════════════════════════════════════════════════════════════════════════ */

.navbar {
max-width: 100%;
display: flex;
align-items: center;
justify-content: space-between;
height: 64px;
padding: 20px 32px;
background: var(--bg-secondary);
border-bottom: 2px solid var(--border-color);
position: relative;
transition: background-color 0.3s ease, border-color 0.3s ease;
}
.navbar-logo {
  flex-shrink: 0;
}
.navbar-logo img {
height: 80px;
object-fit: contain;
}

.navbar-logo .logo-dark,

/* ════════════════════════════════════════════════════════════════════════════════
   GLOBAL — FOOTER
   ════════════════════════════════════════════════════════════════════════════════ */

.footer-logo .logo-dark {
  display: none;
}
.navbar-logo .logo-light,
.footer-logo .logo-light {
  display: block;
}
[data-theme="dark"] .navbar-logo .logo-dark,
[data-theme="dark"] .footer-logo .logo-dark {
  display: block;
}
[data-theme="dark"] .navbar-logo .logo-light,
[data-theme="dark"] .footer-logo .logo-light {
  display: none;
}

.navbar-links {
display: flex;
gap: 24px;
list-style: none;
margin: 0;
padding: 0;
flex: 1;
justify-content: center;
align-items: center;
margin-left: 20px;
margin-right: 20px;
}

.menu-close-btn,
.menu-language-toggle,
.navbar-links-inner {
  display: none;
}

@media (min-width: 901px) {

  .menu-language-toggle {
    display: none !important;
  }

  .navbar-actions .language-toggle {
    display: block !important;
  }

  .navbar-links {
    display: flex !important;
    position: static !important;
    width: auto !important;
    height: auto !important;
    visibility: visible !important;
    background: transparent !important;
    flex-direction: row !important;
    padding: 0 !important;
    margin: 0 20px !important;
    box-shadow: none !important;
    overflow: visible !important;
  }
  .navbar-links-inner {
    display: flex;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: center;
    align-items: center;
  }
  .navbar-links-inner > li {
    border-bottom: none;
  }
  .navbar-links-inner > li > a,
  .navbar-links-inner > li > .dropdown-toggle {
    padding: 8px 12px;
  }
  .navbar-links-inner .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 160px;
    background: var(--dropdown-bg);
    border-radius: 5px;
    box-shadow: 0 2px 8px var(--card-shadow);
    max-height: none;
    overflow: visible;
  }
}

.navbar-links li a {
text-decoration: none;
color: var(--text-color);
font-weight: 500;
font-size: 1rem;
padding: 8px 12px;
display: block;
transition: color 0.3s ease;
}

.dropdown {
position: relative;
}
.arrow {
display: inline-block;
margin-left: 6px;
transition: transform 0.3s cubic-bezier(.4,2,.3,1);
font-size: 0.8em;
vertical-align: middle;
}
.dropdown.open .arrow {
transform: rotate(180deg);
}
.dropdown-menu {
display: none;
position: absolute;
top: 100%;
left: 0;
min-width: 160px;
background: var(--dropdown-bg);
border-radius: 5px;
box-shadow: 0 2px 8px var(--card-shadow);
list-style: none;
padding: 8px 0;
margin: 0;
z-index: 100;
transition: background-color 0.3s ease;
}
.dropdown-menu li a {
display: block;
padding: 8px 16px;
color: var(--dropdown-text);
text-decoration: none;
white-space: nowrap;
}
.dropdown-menu li a:hover {
background: #000000;
}

.dropdown.open .dropdown-menu {
display: block;
}

.dropdown.open > .dropdown-toggle {
  color: #0097b2;
  font-weight: 600;
}
[data-theme="dark"] .dropdown.open > .dropdown-toggle {
  color: #b388ff;
}

.navbar-toggle {
display: none;
background: none;
border: none;
cursor: pointer;
padding: 10px;
z-index: 1001;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 5px;
width: 40px;
height: 40px;
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 3px;
  background-color: var(--text-color);
  border-radius: 2px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
}

.navbar-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.navbar-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.navbar-actions {
display: flex;
align-items: center;
gap: 10px;
}

.theme-toggle {
  background: none;
  border: 2px solid var(--border-color);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s ease, background-color 0.3s ease;
  color: var(--text-color);
}
.theme-toggle:hover {
  background: var(--bg-color);
}
.theme-icon {
  font-size: 1.2rem;
}
.theme-icon.sun {
  color: var(--text-color);
}
.theme-icon.moon {
  display: none;
  color: var(--text-color);
}
[data-theme="dark"] .theme-icon.sun {
  display: none;
}
[data-theme="dark"] .theme-icon.moon {
  display: inline;
  color: var(--text-color);
}

.language-toggle {
  position: relative;
}
.lang-btn {
  background: none;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  padding: 6px 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: "MuseoModerno", sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-color);
  transition: border-color 0.3s ease, color 0.3s ease;
}
.lang-btn:hover {
  background: var(--bg-color);
}
.lang-btn .arrow {
  font-size: 0.7em;
  margin-left: 2px;
  transition: transform 0.2s;
}
.lang-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 120px;
  background: var(--dropdown-bg);
  border-radius: 8px;
  box-shadow: 0 4px 12px var(--card-shadow);
  list-style: none;
  padding: 8px 0;
  margin: 4px 0 0 0;
  z-index: 1000;
}
.lang-dropdown.open {
  display: block;
}
.lang-dropdown li a {
  display: block;
  padding: 10px 16px;
  color: var(--text-color);
  text-decoration: none;
  font-size: 0.9rem;
  transition: background 0.2s;
}
.lang-dropdown li a:hover {
  background: var(--accent-color);
  color: #fff;
}
[data-theme="light"] .lang-dropdown li a {
  color: #ffffff;
}

@media (max-width: 900px) {

.navbar {
  flex-wrap: nowrap;
  height: auto;
  padding: 12px 15px;
  align-items: center;
  justify-content: space-between;
}

.navbar-toggle {
  display: flex;
  order: 1;
  flex: 0 0 40px;
}

.navbar-logo {
  order: 2;
  flex: 1;
  display: flex;
  justify-content: center;
  flex-shrink: 0;
}

.navbar-actions {
  order: 3;
  flex: 0 0 40px;
  display: flex;
  justify-content: flex-end;
  margin-left: 0;
  margin-right: 0;
}

.navbar-actions .language-toggle {
  display: none;
}

.navbar-links {
  position: fixed;
  top: 0;
  left: -280px;
  width: 280px;
  height: 100vh;
  background: var(--bg-color);
  flex-direction: column;
  gap: 0;
  padding: 0;
  margin: 0;
  box-shadow: none;
  transition: left 0.3s ease, visibility 0.3s ease;
  z-index: 998;
  overflow-y: auto;
  visibility: hidden;
  display: flex;
  justify-content: flex-start;
}

.navbar-links.open {
  left: 0;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.15);
  visibility: visible;
}

.menu-close-btn {
  display: none !important;
}

.navbar-links-inner {
  display: block;
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
  padding-top: 100px;
}

.navbar-links-inner > li {
  width: 100%;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

.navbar-links-inner > li:last-child {
  border-bottom: none;
}

.navbar-links-inner > li > a,
.navbar-links-inner > li > .dropdown-toggle {
  padding: 16px 20px;
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-color);
  text-decoration: none;
}

.navbar-links-inner .dropdown-menu {
  position: static;
  box-shadow: none;
  min-width: 0;
  padding: 0;
  background: var(--bg-secondary);
  border-radius: 0;
  display: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.navbar-links-inner .dropdown.open .dropdown-menu {
  display: block;
  max-height: 500px;
}

.navbar-links-inner .dropdown .arrow {
  transition: transform 0.3s ease;
}

.navbar-links-inner .dropdown.open .arrow {
  transform: rotate(180deg);
}

.navbar-links-inner .dropdown-menu li a {
  padding: 14px 20px 14px 40px;
  color: var(--text-color);
  background: var(--bg-secondary);
  font-size: 0.95rem;
}

.navbar-links-inner .dropdown-menu li a:hover {
  background: var(--accent-color);
  color: #fff;
}

.menu-language-toggle {
  display: block;
  padding: 20px;
  border-top: 1px solid var(--border-color);
  position: relative;
}

.menu-language-toggle .lang-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: none;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  padding: 12px 20px;
  color: var(--text-color);
  cursor: pointer;
  font-size: 1rem;
  width: 100%;
}

.menu-language-toggle .lang-btn:hover {
  background: var(--bg-secondary);
}

.menu-language-toggle .lang-dropdown {
  display: none;
  list-style: none;
  padding: 0;
  margin: 10px 0 0 0;
  background: var(--bg-secondary);
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
}

.menu-language-toggle .lang-dropdown.open {
  display: block;
}

.menu-language-toggle .lang-dropdown li a {
  display: block;
  padding: 14px 20px;
  color: var(--text-color);
  text-decoration: none;
  text-align: center;
}

.menu-language-toggle .lang-dropdown li a:hover {
  background: var(--accent-color);
  color: #fff;
}

}

.menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 997;
}
.menu-overlay.active {
  display: block;
}

.hero-apple {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 40px 80px;
}

.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../img/SWengineers2.png');
  background-size: cover;
  background-position: center;
  filter: blur(8px);
  transform: scale(1.1);
  z-index: 0;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

[data-theme="dark"] .hero-bg-overlay {
  background: rgba(0, 0, 0, 0.6);
}

.hero-card {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 0;
  padding: 0;
  width: 100%;
  max-width: 1200px;
  min-height: 600px;
  display: flex;
  align-items: stretch;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

[data-theme="dark"] .hero-card {
  background: rgba(18, 18, 18, 0.98);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
}

.hero-orbs {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
  animation: floatOrb 8s ease-in-out infinite;
}

.hero-orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 151, 178, 0.4) 0%, transparent 70%);
  top: -100px;
  left: -100px;
  animation-delay: 0s;
}

.hero-orb-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.3) 0%, transparent 70%);
  bottom: -50px;
  right: 10%;
  animation-delay: -3s;
}

.hero-orb-3 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(0, 151, 178, 0.35) 0%, transparent 70%);
  top: 40%;
  right: -50px;
  animation-delay: -5s;
}

[data-theme="dark"] .hero-orb-1 {
  background: radial-gradient(circle, rgba(183, 148, 246, 0.4) 0%, transparent 70%);
}

[data-theme="dark"] .hero-orb-2 {
  background: radial-gradient(circle, rgba(232, 121, 249, 0.3) 0%, transparent 70%);
}

[data-theme="dark"] .hero-orb-3 {
  background: radial-gradient(circle, rgba(139, 92, 246, 0.35) 0%, transparent 70%);
}

@keyframes floatOrb {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(20px, -30px) scale(1.05);
  }
  50% {
    transform: translate(-10px, 20px) scale(0.95);
  }
  75% {
    transform: translate(15px, 10px) scale(1.02);
  }
}

.hero-card-content {
  flex: 1;
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.hero-card-image {
  flex: 0 0 45%;
  position: relative;
  overflow: hidden;
}

.hero-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-apple-title {
  font-family: 'MuseoModerno', sans-serif;
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: #1d1d1f;
  margin: 0 0 28px 0;
  letter-spacing: -0.03em;
}

[data-theme="dark"] .hero-apple-title {
  color: #f5f5f7;
}

/* ════════════════════════════════════════════════════════════════════════════════
   HOME PAGE — HERO SECTION
   ════════════════════════════════════════════════════════════════════════════════ */

.hero-accent {
  background: linear-gradient(135deg, #0097b2 0%, #00d4ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

[data-theme="dark"] .hero-accent {
  background: linear-gradient(135deg, #b794f6 0%, #e879f9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.animated-text {
  animation: colorShift 3s ease-in-out infinite;
  position: relative;
  background-size: 200% 200%;
}

@keyframes colorShift {
  0%, 100% {
    background-position: 0% 50%;
    filter: brightness(1);
  }
  50% {
    background-position: 100% 50%;
    filter: brightness(1.15);
  }
}

.hero-apple-subtitle {
  font-size: 1.15rem;
  line-height: 1.75;
  color: #86868b;
  margin: 0 0 40px 0;
  font-weight: 400;
  max-width: 480px;
}

[data-theme="dark"] .hero-apple-subtitle {
  color: #a1a1a6;
}

/* ────────────────────────────────────────────────────────────
   SHARED — HERO BUTTONS & CTA BUTTONS
   ──────────────────────────────────────────────────────────── */

.hero-buttons-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
  width: 100%;
  max-width: 500px;
  box-sizing: border-box;
}

.hero-buttons-stack.justify-center {
  margin-left: auto;
  margin-right: auto;
  align-items: center;
}

.btn-text {
  position: relative;
  z-index: 10;
  color: inherit;
  display: flex;
  align-items: center;
  gap: 10px;
}

[data-theme="dark"] .btn-text {
  color: inherit;
}

.hero-btn-simple {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 32px;
  font-family: 'MuseoModerno', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid #0097b2;
  background: #0097b2;
  color: #ffffff;
  border-radius: 14px;
  box-shadow:
    0 4px 20px rgba(0, 151, 178, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  position: relative;
  overflow: hidden;
  width: 100%;
  text-align: center;
  box-sizing: border-box;
}

.hero-btn-simple::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.05) 40%, transparent 60%);
  pointer-events: none;
}

[data-theme="dark"] .hero-btn-simple {
  border-color: rgba(167, 139, 250, 0.35);
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.18) 0%, rgba(167, 139, 250, 0.12) 50%, rgba(124, 58, 237, 0.08) 100%);
  color: #e2e8f0;
  box-shadow:
    0 4px 24px rgba(139, 92, 246, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .hero-btn-simple::before {
  background: linear-gradient(135deg, rgba(167, 139, 250, 0.2) 0%, rgba(139, 92, 246, 0.05) 40%, transparent 60%);
}

.hero-btn-simple:hover {
  transform: translateY(-2px);
  background: #007a94;
  border-color: #007a94;
  box-shadow:
    0 12px 40px rgba(0, 151, 178, 0.4),
    0 4px 12px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

[data-theme="dark"] .hero-btn-simple:hover {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.3) 0%, rgba(167, 139, 250, 0.2) 50%, rgba(124, 58, 237, 0.15) 100%);
  border-color: rgba(167, 139, 250, 0.6);
  box-shadow:
    0 12px 40px rgba(139, 92, 246, 0.3),
    0 4px 12px rgba(167, 139, 250, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.hero-btn-simple.hero-btn-ghost {
  background: transparent;
  border: 2px solid #0e3a46;
  color: #0e3a46;
}
.hero-btn-simple.hero-btn-ghost:hover {
  background: #0e3a46;
  border-color: #0e3a46;
  color: #ffffff;
}
[data-theme="dark"] .hero-btn-simple.hero-btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.7);
}
[data-theme="dark"] .hero-btn-simple.hero-btn-ghost:hover {
  border-color: rgba(167, 139, 250, 0.6);
  color: rgba(167, 139, 250, 0.9);
  background: rgba(139, 92, 246, 0.1);
}

.hero-trust-line {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-top: 1rem;
  opacity: 0.9;
  font-family: var(--ff-body);
  font-weight: 500;
  letter-spacing: -0.01em;
}

@media (max-width: 768px) {
  .hero-apple {
    min-height: auto;
    padding: 100px 16px 60px;
  }

  .hero-card {
    flex-direction: column-reverse;
    min-height: auto;
    max-width: 100%;
  }

  .hero-card-content {
    padding: 36px 28px;
  }

  .hero-card-image {
    flex: 0 0 250px;
    height: 250px;
  }

  .hero-apple-title {
    font-size: 2.2rem;
  }

  .hero-apple-subtitle {
    font-size: 1rem;
    margin-bottom: 32px;
  }

  .hero-buttons-stack {
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    padding: 0;
  }

  .hero-btn-simple {
    width: 100%;
    max-width: 100%;
    justify-content: center;
    padding: 16px 24px;
    font-size: 0.9rem;
  }

}

@media (min-width: 769px) and (max-width: 1024px) {
  .hero-apple {
    padding: 100px 24px 60px;
  }

  .hero-card {
    max-width: 900px;
    min-height: 500px;
  }

  .hero-card-content {
    padding: 48px 40px;
  }

  .hero-apple-title {
    font-size: 2.8rem;
  }

}

html[lang="es"] .hero-card-image {
  flex: 0 0 38%;
}

a {
  text-decoration: none;
}

/* ════════════════════════════════════════════════════════════════════════════════
   HOME PAGE — SOLUTIONS OVERVIEW
   ════════════════════════════════════════════════════════════════════════════════ */

.solutions-overview {
  padding: 80px 60px;
  background: var(--bg-secondary);
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.solution-card {
  background: var(--bg-color);
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  z-index: 101;
}

.solution-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px var(--card-shadow);
}

.solution-card.featured {
  border: 2px solid var(--accent-color);
  transform: scale(1.05);
}

.solution-card.featured:hover {
  transform: scale(1.05) translateY(-8px);
}

.solution-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-color);
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.solution-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.solution-icon svg {
  width: 48px;
  height: 48px;
  stroke: var(--accent-color);
}

.solution-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-color);
  margin: 0 0 16px 0;
}

.solution-description {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0 0 20px 0;
}

.solution-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  text-align: left;
}

.solution-features li {
  padding: 8px 0;
  color: var(--text-color);
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border-color);
}

.solution-features li:last-child {
  border-bottom: none;
}

.solution-features li::before {
  content: "✓";
  color: var(--accent-color);
  margin-right: 10px;
  font-weight: 700;
}

.solution-link {
  color: var(--accent-color);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.solution-link:hover {
  color: var(--text-color);
}

.solutions-assessment-cta {
  max-width: 800px;
  margin: 60px auto 40px;
  text-align: center;
  padding: 48px;
  background: linear-gradient(135deg, rgba(0, 151, 178, 0.08) 0%, rgba(0, 151, 178, 0.02) 100%);
  border: 1px solid rgba(0, 151, 178, 0.2);
}

[data-theme="dark"] .solutions-assessment-cta {
  background: linear-gradient(135deg, rgba(183, 148, 246, 0.1) 0%, rgba(183, 148, 246, 0.02) 100%);
  border-color: rgba(183, 148, 246, 0.3);
}

.assessment-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0 0 28px 0;
}

@media (max-width: 768px) {
  .solutions-assessment-cta {
    padding: 32px 20px;
  }
}

/* ────────────────────────────────────────────────────────────
   SHARED — CTA SECTION
   ──────────────────────────────────────────────────────────── */

.cta-section {
  padding: 120px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--bg-primary);
}

[data-theme="dark"] .cta-section {
  background: var(--bg-primary);
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(0, 151, 178, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(168, 85, 247, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(236, 72, 153, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

[data-theme="dark"] .cta-section::before {
  background:
    radial-gradient(ellipse at 20% 30%, rgba(0, 151, 178, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(168, 85, 247, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(236, 72, 153, 0.1) 0%, transparent 60%);
}

.cta-section .cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
  animation: floatOrb 20s ease-in-out infinite;
  z-index: 0;
}

.cta-section .cta-orb-1 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #0097b2, #8b5cf6);
  top: -10%;
  left: -5%;
}

.cta-section .cta-orb-2 {
  width: 250px;
  height: 250px;
  background: linear-gradient(135deg, #ec4899, #f43f5e);
  bottom: -10%;
  right: -5%;
  animation-delay: -5s;
}

.cta-section .cta-orb-3 {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, #06b6d4, #0097b2);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: -10s;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-color);
  margin: 0 0 16px 0;
}

.cta-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin: 0 0 32px 0;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn-primary-glow,
.cta-buttons .btn-outline-light {
  min-width: 280px;
  padding: 18px 48px;
  box-sizing: border-box;
  max-width: 100%;
}

/* ────────────────────────────────────────────────────────────
   GLOBAL — BUTTON STYLES
   ──────────────────────────────────────────────────────────── */

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 18px 40px;
  font-family: 'MuseoModerno', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: #0097b2;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  transition: background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  max-width: 100%;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  background: #007a94;
  box-shadow: 0 12px 35px rgba(0, 151, 178, 0.35);
}

.btn-primary:hover::before {
  opacity: 1;
}

[data-theme="dark"] .btn-primary {
  background: #7c3aed;
}

[data-theme="dark"] .btn-primary:hover {
  background: #9333ea;
  box-shadow: 0 12px 35px rgba(147, 51, 234, 0.4);
}

.btn-outline-light {
  display: inline-block;
  padding: 16px 36px;
  font-size: 1rem;
  font-weight: 600;
  color: #1a3a4a;
  background: rgba(255, 255, 255, 0.6);
  border: 2px solid rgba(0, 100, 120, 0.3);
  border-radius: 12px;
  text-decoration: none;
  backdrop-filter: blur(10px);
  transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
  cursor: pointer;
  box-sizing: border-box;
  max-width: 100%;
}

[data-theme="dark"] .btn-outline-light {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-color);
}

[data-theme="dark"] .btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(167, 139, 250, 0.5);
  color: #a78bfa;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.85);
  border-color: #0097b2;
  color: #0097b2;
  transform: translateY(-3px);
}

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

  .solution-card.featured {
    transform: none;
  }

  .solution-card.featured:hover {
    transform: translateY(-8px);
  }

  .solutions-overview,
  .cta-section {
    padding: 60px 24px;
  }

  .cta-title {
    font-size: 2rem;
  }
}

@media (max-width: 600px) {
  .solutions-overview,
  .cta-section {
    padding: 48px 16px;
  }

  .cta-title {
    font-size: 1.75rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .btn-primary,
  .btn-outline-light {
    width: 100%;
    max-width: 100%;
    padding: 14px 24px;
    font-size: 0.95rem;
  }
}

/* ────────────────────────────────────────────────────────────
   SHARED — PAGE HERO & BREADCRUMBS
   ──────────────────────────────────────────────────────────── */

.page-hero {
  padding: 120px 60px 80px;
  text-align: center;
  background: linear-gradient(180deg, rgba(0, 151, 178, 0.15) 0%, rgba(0, 151, 178, 0.05) 60%, transparent 100%);
  position: relative;
  overflow: hidden;
}

[data-theme="dark"] .page-hero {
  background: linear-gradient(180deg, rgba(183, 148, 246, 0.2) 0%, rgba(183, 148, 246, 0.08) 60%, transparent 100%);
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(180deg, transparent 0%, var(--bg-color) 100%);
  pointer-events: none;
  z-index: 1;
}

.page-hero-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  color: #0097b2;
  margin: 0 0 16px 0;
  position: relative;
  z-index: 2;
}

[data-theme="dark"] .page-hero-title {
  color: #b794f6;
}

.page-hero-subtitle {
  font-size: 1.2rem;
  color: #1a1a2e;
  margin: 0 0 40px 0;
  position: relative;
  z-index: 2;
}

[data-theme="dark"] .page-hero-subtitle {
  color: #ffffff;
}

.hero-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  background: rgba(0, 151, 178, 0.08);
  border: 1px solid rgba(0, 151, 178, 0.18);
  border-radius: 50px;
  margin-bottom: 28px;
  font-size: 0.88rem;
  letter-spacing: 0.01em;
  position: relative;
  z-index: 2;
}

[data-theme="dark"] .hero-breadcrumb {
  background: rgba(139, 92, 246, 0.1);
  border-color: rgba(139, 92, 246, 0.22);
}

.hero-breadcrumb a {
  color: var(--text-secondary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: color 0.2s;
}

.hero-breadcrumb a:hover {
  color: var(--accent-color);
}

[data-theme="dark"] .hero-breadcrumb a {
  color: rgba(255, 255, 255, 0.55);
}

[data-theme="dark"] .hero-breadcrumb a:hover {
  color: #a78bfa;
}

.hero-breadcrumb a svg {
  width: 16px;
  height: 16px;
}

.breadcrumb-separator {
  color: var(--text-secondary);
  opacity: 0.45;
  font-size: 0.85rem;
  user-select: none;
}

[data-theme="dark"] .breadcrumb-separator {
  color: rgba(255, 255, 255, 0.3);
}

.breadcrumb-current {
  color: var(--text-color);
  font-weight: 600;
  font-size: 0.88rem;
}

[data-theme="dark"] .breadcrumb-current {
  color: #fff;
}

.page-hero .hero-breadcrumb {
  margin-bottom: 20px;
}

.faq-accordion {
  max-width: 800px;
  margin: 32px auto 0;
}

.faq-item {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

[data-theme="dark"] .faq-item {
  background: var(--bg-secondary);
  border-color: rgba(255, 255, 255, 0.08);
}

.faq-item:hover {
  border-color: #0097b2;
}

[data-theme="dark"] .faq-item:hover {
  border-color: #b794f6;
}

.faq-item.active {
  border-color: #0097b2;
  box-shadow: 0 8px 24px rgba(0, 151, 178, 0.12);
}

[data-theme="dark"] .faq-item.active {
  border-color: #b794f6;
  box-shadow: 0 8px 24px rgba(183, 148, 246, 0.12);
}

.faq-question {
  width: 100%;
  padding: 24px 28px;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-color);
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: #0097b2;
}

[data-theme="dark"] .faq-question:hover {
  color: #b794f6;
}

.faq-icon {
  font-size: 1.5rem;
  color: #0097b2;
  transition: transform 0.3s ease;
}

[data-theme="dark"] .faq-icon {
  color: #b794f6;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 28px 24px;
}

.faq-answer p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin: 0;
}

.faq-answer a {
  color: #0097b2;
  text-decoration: none;
  font-weight: 600;
}

[data-theme="dark"] .faq-answer a {
  color: #b794f6;
}

.faq-answer a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {

}

/* ────────────────────────────────────────────────────────────
   HOME PAGE — FAQ SECTION
   ──────────────────────────────────────────────────────────── */

.faq-section {
  padding: 60px 5%;
  background: #ffffff;
  contain: content;
}

[data-theme="dark"] .faq-section {
  background: var(--bg-primary);
}

.faq-accordion-item {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

[data-theme="dark"] .faq-accordion-item {
  background: #1e1e2f;
  border-color: #374151;
}

.faq-accordion-item:hover {
  border-color: #0097b2;
}

[data-theme="dark"] .faq-accordion-item:hover {
  border-color: #b794f6;
}

.faq-accordion-item.active {
  box-shadow: 0 8px 30px rgba(0, 151, 178, 0.15);
  border-color: #0097b2;
}

[data-theme="dark"] .faq-accordion-item.active {
  box-shadow: 0 8px 30px rgba(183, 148, 246, 0.15);
  border-color: #b794f6;
}

.faq-accordion-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-accordion-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-content {
  padding: 0 24px 24px;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
}

.faq-answer-content p {
  margin: 0 0 16px 0;
}

.faq-answer-content p:last-child {
  margin-bottom: 0;
}

.faq-answer-content ul {
  margin: 16px 0;
  padding-left: 20px;
}

.faq-answer-content li {
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .faq-section {
    padding: 40px 5%;
  }

  .faq-answer-content {
    padding: 0 20px 20px;
    font-size: 0.95rem;
  }

}

.comparison-table-container {
  max-width: 1000px;
  margin: 0 auto;
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-secondary);
  border-radius: 16px;
  overflow: visible;
}

.comparison-table thead {
  background: var(--bg-color);
  overflow: visible;
}

.comparison-table th,
.comparison-table td {
  padding: 20px;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}

.plan-badge {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  color: var(--accent-color);
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 700;
  white-space: nowrap;
  z-index: 10;
}

.comparison-table tbody tr:hover {
  background: var(--bg-color);
}

.comparison-table tfoot td {
  padding: 24px 20px;
  border-bottom: none;
}

@media (max-width: 900px) {
  .page-hero {
    padding: 100px 24px 60px;
  }

  .page-hero-title {
    font-size: 2.5rem;
  }

  .comparison-table-container {
    display: none;
  }

}

@media (max-width: 600px) {
  .page-hero {
    padding: 80px 16px 48px;
  }

  .page-hero-title {
    font-size: 2.5rem;
  }

  .comparison-table-container {
    display: block;
    overflow-x: auto;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 12px 8px;
    font-size: 0.85rem;
  }

  .plan-badge {
    font-size: 0.6rem;
    padding: 3px 8px;
    top: 6px;
  }
}

.footer {
  font-family: "MuseoModerno", Arial, sans-serif;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 60px;
  background: var(--bg-secondary);
  border-top: 2px solid var(--border-color);
  position: relative;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.footer.footer-simple {
  padding: 48px 24px 32px;
  text-align: center;
}
.footer.footer-simple .footer-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}
.footer.footer-simple .footer-links {
  margin-bottom: 20px;
}

.footer-logo {
  margin-bottom: 20px;
}
.footer-logo img {
  height: 80px;
}

.footer-links {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.footer-link-small {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-family: "MuseoModerno", Arial, sans-serif;
  transition: color 0.2s;
}
.footer-link-small:hover {
  color: var(--accent-color);
}

.footer-copy {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
}

@media (max-width: 700px) {
  .footer {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px 16px;
    gap: 0;
    text-align: center;
  }
  .footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 16px;
    width: 100%;
  }
  .footer-logo img {
    height: 60px;
  }
  .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-bottom: 16px;
  }
  .footer-link-small {
    font-size: 0.8rem;
  }
  .footer-copy {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
  }
  .theme-toggle,
  .language-toggle {
    margin-bottom: 8px;
  }
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.solution-card {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.solution-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2), 0 0 40px rgba(0, 151, 178, 0.15);
  border-color: var(--accent-color);
}

[data-theme="dark"] .solution-card:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 50px rgba(0, 151, 178, 0.25);
}

.solution-card.featured:hover {
  transform: scale(1.05) translateY(-12px);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.25), 0 0 50px rgba(0, 151, 178, 0.2);
}

[data-theme="dark"] .solution-card.featured:hover {
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6), 0 0 60px rgba(0, 151, 178, 0.3);
}

/* ════════════════════════════════════════════════════════════════════════════════
   ABOUT PAGE
   ════════════════════════════════════════════════════════════════════════════════ */

.about-hero-v2 {
  position: relative;
  min-height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
  overflow: hidden;
  background: linear-gradient(160deg, #0a0a0f 0%, #0f1419 40%, #0d1020 100%);
}

.about-hero-v2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent 0%, #0d1117 100%);
  pointer-events: none;
  z-index: 3;
}

[data-theme="light"] .about-hero-v2 {
  background: linear-gradient(160deg, #f8fafc 0%, #eff6ff 40%, #f1f5f9 100%);
}

[data-theme="light"] .about-hero-v2::after {
  background: linear-gradient(to bottom, transparent 0%, #f8fafc 100%);
}

.about-hero-v2-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.about-hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(139, 92, 246, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 92, 246, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 75%);
}

[data-theme="light"] .about-hero-grid-pattern {
  background-image:
    linear-gradient(rgba(0, 151, 178, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 151, 178, 0.06) 1px, transparent 1px);
}

.about-hero-v2-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 25% 30%, rgba(139, 92, 246, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse 60% 45% at 75% 70%, rgba(0, 151, 178, 0.14) 0%, transparent 50%),
    radial-gradient(ellipse 50% 50% at 50% 50%, rgba(168, 85, 247, 0.06) 0%, transparent 60%);
  animation: aboutMeshFloat 22s ease-in-out infinite;
}

[data-theme="light"] .about-hero-v2-bg::before {
  background:
    radial-gradient(ellipse 80% 50% at 25% 30%, rgba(0, 151, 178, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse 60% 45% at 75% 70%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse 50% 50% at 50% 50%, rgba(0, 151, 178, 0.06) 0%, transparent 60%);
}

@keyframes aboutMeshFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(1.5%, -1%) scale(1.02); }
  50% { transform: translate(-1%, 1.5%) scale(1); }
  75% { transform: translate(-1.5%, -0.5%) scale(1.01); }
}

.about-hero-v2-bg::after {
  content: '';
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(0, 151, 178, 0.08));
  filter: blur(80px);
  top: -5%;
  right: -8%;
  animation: floatOrb 20s ease-in-out infinite;
}

[data-theme="light"] .about-hero-v2-bg::after {
  background: linear-gradient(135deg, rgba(0, 151, 178, 0.12), rgba(99, 102, 241, 0.06));
}

.about-hero-v2-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
}

.about-hero-v2 .hero-breadcrumb {
  margin-bottom: 28px;
}

.about-hero-v2-title {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
  margin: 0 0 20px 0;
  letter-spacing: -0.03em;
}

[data-theme="light"] .about-hero-v2-title {
  color: #1e293b;
}

.about-hero-v2-title .gradient-text {
  background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 50%, #c4b5fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  display: inline-block;
  padding: 0 4px;
}

[data-theme="light"] .about-hero-v2-title .gradient-text {
  background: linear-gradient(135deg, #0097b2 0%, #007a94 50%, #1d4ed8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-hero-v2-subtitle {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
  max-width: 640px;
  margin: 0 auto 36px auto;
}

[data-theme="light"] .about-hero-v2-subtitle {
  color: #64748b;
}

.about-hero-v2-stats {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.stat-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 32px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

[data-theme="light"] .stat-pill {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.stat-pill:hover {
  background: rgba(139, 92, 246, 0.1);
  border-color: rgba(139, 92, 246, 0.3);
  transform: translateY(-4px);
}

[data-theme="light"] .stat-pill:hover {
  background: rgba(0, 151, 178, 0.1);
  border-color: rgba(0, 151, 178, 0.3);
}

.stat-pill .stat-number {
  font-family: var(--ff-display);
  font-size: 1.85rem;
  font-weight: 700;
  color: #8b5cf6;
  line-height: 1;
  margin: 0;
}

[data-theme="light"] .stat-pill .stat-number {
  color: #0097b2;
}

.stat-pill .stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 8px;
}

[data-theme="light"] .stat-pill .stat-label {
  color: #64748b;
}

.about-story-section {
  padding: 100px 24px;
  background: linear-gradient(180deg, #0d1117 0%, #0a0f14 100%);
  position: relative;
}
[data-theme="light"] .about-story-section {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}
.about-story-section .section-container {
  max-width: 780px;
  margin: 0 auto;
}
.about-story-section .section-intro {
  text-align: center;
  margin-bottom: 48px;
}
.about-story-content p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin: 0 0 24px 0;
}
[data-theme="light"] .about-story-content p {
  color: #475569;
}
.about-story-highlight {
  margin-top: 36px;
  padding: 28px 36px;
  background: rgba(139, 92, 246, 0.08);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-left: 4px solid #8b5cf6;
  border-radius: 12px;
}
[data-theme="light"] .about-story-highlight {
  background: rgba(0, 151, 178, 0.06);
  border: 1px solid rgba(0, 151, 178, 0.18);
  border-left: 4px solid #0097b2;
}
.about-story-highlight p {
  font-size: 1.15rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  line-height: 1.7;
  font-style: italic;
}
[data-theme="light"] .about-story-highlight p {
  color: #1e293b;
}

.about-leadership-section {
  padding: 100px 24px;
  background: linear-gradient(180deg, #0a0f14 0%, #0d1117 100%);
  position: relative;
}

[data-theme="light"] .about-leadership-section {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

.about-leadership-section .section-container {
  max-width: 1100px;
  margin: 0 auto;
}

.about-leadership-section .section-intro {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag-v2 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.25);
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #a78bfa;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

[data-theme="light"] .section-tag-v2 {
  background: rgba(0, 151, 178, 0.1);
  border: 1px solid rgba(0, 151, 178, 0.25);
  color: #0097b2;
}

.section-tag-v2 svg {
  width: 16px;
  height: 16px;
  opacity: 0.85;
}

.section-headline-v2 {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: #ffffff;
  margin: 0;
  letter-spacing: -0.02em;
}

[data-theme="light"] .section-headline-v2 {
  color: #1e293b;
}

.section-desc-v2 {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  max-width: 580px;
  margin: 20px auto 0 auto;
}

[data-theme="light"] .section-desc-v2 {
  color: #64748b;
}

.leader-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  margin-top: 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

[data-theme="light"] .leader-card {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
}

.leader-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #8b5cf6, #a78bfa, #c4b5fd);
  opacity: 0;
  transition: opacity 0.3s ease;
}

[data-theme="light"] .leader-card::before {
  background: linear-gradient(90deg, #0097b2, #00b4d8, #48cae4);
}

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

.leader-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(139, 92, 246, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 24px 60px -16px rgba(139, 92, 246, 0.12);
}

[data-theme="light"] .leader-card:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(0, 151, 178, 0.25);
  box-shadow: 0 24px 60px -16px rgba(0, 151, 178, 0.15);
}

.leader-card-featured {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(50, 130, 240, 0.025) 100%);
}

[data-theme="light"] .leader-card-featured {
  background: linear-gradient(135deg, rgba(0, 151, 178, 0.05) 0%, rgba(139, 92, 246, 0.025) 100%);
}

.leader-card-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.leader-avatar-ring {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  padding: 4px;
  background: linear-gradient(135deg, #8b5cf6, #a78bfa, #c4b5fd);
  flex-shrink: 0;
}

[data-theme="light"] .leader-avatar-ring {
  background: linear-gradient(135deg, #0097b2, #00b4d8, #48cae4);
}

.leader-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a1f2e 0%, #0d1117 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

[data-theme="light"] .leader-avatar {
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.leader-avatar svg {
  width: 64px;
  height: 64px;
  color: rgba(255, 255, 255, 0.25);
}

[data-theme="light"] .leader-avatar svg {
  color: #94a3b8;
}

.leader-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.leader-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 10px;
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid rgba(139, 92, 246, 0.25);
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 600;
  color: #a78bfa;
  white-space: nowrap;
}

[data-theme="light"] .leader-badge {
  background: rgba(0, 151, 178, 0.1);
  border: 1px solid rgba(0, 151, 178, 0.25);
  color: #0097b2;
}

.leader-badge svg {
  width: 12px;
  height: 12px;
  opacity: 0.85;
}

.leader-card-content {
  display: flex;
  flex-direction: column;
}

.leader-header {
  margin-bottom: 16px;
}

.leader-name {
  font-family: var(--ff-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 6px 0;
  line-height: 1.2;
}

[data-theme="light"] .leader-name {
  color: #1e293b;
}

.leader-role {
  font-size: 0.9rem;
  font-weight: 500;
  color: #a78bfa;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0;
}

[data-theme="light"] .leader-role {
  color: #0097b2;
}

.leader-intro {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin: 0 0 12px 0;
}

[data-theme="light"] .leader-intro {
  color: #475569;
}

.leader-detail {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin: 0;
}

[data-theme="light"] .leader-detail {
  color: #64748b;
}

.leader-achievements {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

[data-theme="light"] .leader-achievements {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.achievements-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 20px 0;
}

[data-theme="light"] .achievements-title {
  color: #1e293b;
}

.achievements-title svg {
  width: 18px;
  height: 18px;
  color: #fbbf24;
}

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

.achievements-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

[data-theme="light"] .achievements-list li {
  color: #475569;
}

.achievement-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(139, 92, 246, 0.12);
  border-radius: 6px;
  margin-top: 2px;
}

[data-theme="light"] .achievement-icon {
  background: rgba(0, 151, 178, 0.1);
}

.achievement-icon svg {
  width: 14px;
  height: 14px;
  color: #a78bfa;
}

[data-theme="light"] .achievement-icon svg {
  color: #0097b2;
}

.achievements-list li strong {
  color: #a78bfa;
  font-weight: 600;
}

[data-theme="light"] .achievements-list li strong {
  color: #0097b2;
}

.leader-focus-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

[data-theme="light"] .leader-focus-areas {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.focus-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

[data-theme="light"] .focus-item {
  background: rgba(0, 151, 178, 0.05);
  border: 1px solid rgba(0, 151, 178, 0.15);
  color: #475569;
}

.focus-item:hover {
  background: rgba(139, 92, 246, 0.1);
  border-color: rgba(139, 92, 246, 0.3);
}

[data-theme="light"] .focus-item:hover {
  background: rgba(0, 151, 178, 0.1);
  border-color: rgba(0, 151, 178, 0.3);
}

.focus-item svg {
  width: 18px;
  height: 18px;
  color: #a78bfa;
  opacity: 0.85;
}

[data-theme="light"] .focus-item svg {
  color: #0097b2;
}

.about-approach-section-v2 {
  padding: 100px 24px;
  background: linear-gradient(180deg, #0d1117 0%, #0a0f14 100%);
  position: relative;
}

[data-theme="light"] .about-approach-section-v2 {
  background: linear-gradient(180deg, #f1f5f9 0%, #f8fafc 100%);
}

.about-approach-section-v2 .section-container {
  max-width: 1100px;
  margin: 0 auto;
}

.about-approach-section-v2 .section-intro {
  text-align: center;
  margin-bottom: 60px;
}

.approach-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.approach-grid-v2 .approach-card-v2:nth-child(4) {
  grid-column: 2;
}

.approach-card-v2 {
  position: relative;
  padding: 32px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s ease;
}

[data-theme="light"] .approach-card-v2 {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
}

.approach-card-v2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.06) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

[data-theme="light"] .approach-card-v2::before {
  background: linear-gradient(135deg, rgba(0, 151, 178, 0.06) 0%, transparent 50%);
}

.approach-card-v2:hover::before {
  opacity: 1;
}

.approach-card-v2:hover {
  transform: translateY(-6px);
  border-color: rgba(139, 92, 246, 0.3);
  box-shadow: 0 20px 50px -16px rgba(139, 92, 246, 0.15);
}

[data-theme="light"] .approach-card-v2:hover {
  border-color: rgba(0, 151, 178, 0.3);
  box-shadow: 0 20px 50px -16px rgba(0, 151, 178, 0.15);
}

.approach-card-v2:hover .approach-card-line {
  transform: scaleX(1);
}

.approach-card-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid rgba(139, 92, 246, 0.25);
  border-radius: 12px;
  margin-bottom: 20px;
}

[data-theme="light"] .approach-card-icon {
  background: rgba(0, 151, 178, 0.1);
  border: 1px solid rgba(0, 151, 178, 0.25);
}

.approach-card-icon svg {
  width: 26px;
  height: 26px;
  color: #a78bfa;
}

[data-theme="light"] .approach-card-icon svg {
  color: #0097b2;
}

.approach-card-title {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 12px 0;
  line-height: 1.3;
}

[data-theme="light"] .approach-card-title {
  color: #1e293b;
}

.approach-card-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
  margin: 0;
}

[data-theme="light"] .approach-card-desc {
  color: #64748b;
}

.approach-card-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #8b5cf6, #a78bfa);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

[data-theme="light"] .approach-card-line {
  background: linear-gradient(90deg, #0097b2, #00b4d8);
}

.approach-closing-v2 {
  text-align: center;
  margin-top: 48px;
  padding: 32px 40px;
  background: rgba(139, 92, 246, 0.06);
  border: 1px solid rgba(139, 92, 246, 0.18);
  border-radius: 16px;
}

[data-theme="light"] .approach-closing-v2 {
  background: rgba(0, 151, 178, 0.06);
  border: 1px solid rgba(0, 151, 178, 0.18);
}

.approach-closing-v2 p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  line-height: 1.7;
}

[data-theme="light"] .approach-closing-v2 p {
  color: #475569;
}

.approach-closing-v2 strong {
  color: #a78bfa;
}

[data-theme="light"] .approach-closing-v2 strong {
  color: #0097b2;
}

.about-values-section-v2 {
  padding: 100px 24px;
  background: linear-gradient(180deg, #0a0f14 0%, #0d1117 100%);
  position: relative;
}

[data-theme="light"] .about-values-section-v2 {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

.about-values-section-v2 .section-container {
  max-width: 1100px;
  margin: 0 auto;
}

.about-values-section-v2 .section-intro {
  text-align: center;
  margin-bottom: 60px;
}

.values-grid-v2 {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  justify-content: center;
}

.values-grid-v2 .value-card-v2 {
  width: calc(33.333% - 16px);
  min-width: 300px;
}

.value-card-v2 {
  position: relative;
  padding: 28px 28px 28px 72px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  transition: all 0.4s ease;
}

[data-theme="light"] .value-card-v2 {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
}

.value-card-v2:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(139, 92, 246, 0.25);
  transform: translateX(6px);
}

[data-theme="light"] .value-card-v2:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(0, 151, 178, 0.25);
}

.value-card-number {
  position: absolute;
  top: 24px;
  left: 24px;
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: #8b5cf6;
  opacity: 0.35;
  line-height: 1;
}

[data-theme="light"] .value-card-number {
  color: #0097b2;
}

.value-card-v2:hover .value-card-number {
  opacity: 0.6;
}

.value-card-title {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 10px 0;
  line-height: 1.35;
}

[data-theme="light"] .value-card-title {
  color: #1e293b;
}

.value-card-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
  margin: 0;
}

[data-theme="light"] .value-card-desc {
  color: #64748b;
}

@media (max-width: 900px) {
  .leader-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 32px;
    gap: 28px;
  }

  .leader-card-visual {
    justify-self: center;
  }

  .leader-badges {
    max-width: none;
  }

  .leader-header {
    text-align: center;
  }

  .leader-intro,
  .leader-detail {
    text-align: left;
  }

  .achievements-list li {
    text-align: left;
  }

  .leader-focus-areas {
    justify-content: center;
  }

  .about-hero-v2-stats {
    gap: 16px;
  }

  .stat-pill {
    padding: 16px 24px;
  }

  .stat-pill .stat-number {
    font-size: 1.5rem;
  }

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

  .approach-grid-v2 .approach-card-v2:nth-child(4) {
    grid-column: auto;
  }

  .values-grid-v2 .value-card-v2 {
    width: calc(50% - 12px);
    min-width: 280px;
  }
}

@media (max-width: 600px) {
  .about-hero-v2 {
    padding: 120px 20px 80px;
    min-height: auto;
  }

  .about-hero-v2 .hero-breadcrumb {
    margin-bottom: 24px;
  }

  .about-hero-v2-subtitle {
    margin-bottom: 28px;
  }

  .about-story-section,
  .about-leadership-section,
  .about-approach-section-v2,
  .about-values-section-v2 {
    padding: 80px 20px;
  }

  .about-story-section .section-intro,
  .about-leadership-section .section-intro,
  .about-approach-section-v2 .section-intro,
  .about-values-section-v2 .section-intro {
    margin-bottom: 40px;
  }

  .leader-card {
    padding: 24px;
  }

  .leader-avatar-ring {
    width: 120px;
    height: 120px;
  }

  .leader-avatar svg {
    width: 52px;
    height: 52px;
  }

  .value-card-v2 {
    padding: 24px 24px 24px 64px;
  }

  .value-card-number {
    font-size: 1.4rem;
    left: 20px;
    top: 22px;
  }

  .approach-card-v2 {
    padding: 28px;
  }

  .approach-closing-v2 {
    padding: 28px;
  }

  .approach-grid-v2 {
    grid-template-columns: 1fr;
  }

  .values-grid-v2 .value-card-v2 {
    width: 100%;
    min-width: auto;
  }
}

.mesh-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(0, 151, 178, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(168, 85, 247, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(236, 72, 153, 0.08) 0%, transparent 60%);
}

[data-theme="dark"] .mesh-gradient {
  background:
    radial-gradient(ellipse at 20% 20%, rgba(0, 151, 178, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(168, 85, 247, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(236, 72, 153, 0.1) 0%, transparent 60%);
}

.floating-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.6;
  animation: floatOrb 20s ease-in-out infinite;
}

.stat-number {
  display: block;
  font-family: 'MuseoModerno', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

/* ────────────────────────────────────────────────────────────
   SHARED — GLASS CARDS & ADVANCED BUTTONS
   ──────────────────────────────────────────────────────────── */

.glass-card {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

[data-theme="dark"] .glass-card {
  background: rgba(30, 30, 40, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.btn-primary-glow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 18px 40px;
  background: linear-gradient(135deg, #0097b2 0%, #0085a0 50%, #007a94 100%);
  color: #ffffff;
  font-family: 'MuseoModerno', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border: 1.5px solid rgba(0, 151, 178, 0.6);
  border-radius: 14px;
  text-decoration: none;
  transition: background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    0 4px 24px rgba(0, 151, 178, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  box-sizing: border-box;
  max-width: 100%;
}

.btn-primary-glow::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.25) 0%, rgba(255,255,255,0.05) 40%, transparent 60%);
  opacity: 1;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.btn-primary-glow:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #00a8c6 0%, #0097b2 50%, #0085a0 100%);
  border-color: #0097b2;
  box-shadow:
    0 12px 40px rgba(0, 151, 178, 0.35),
    0 4px 12px rgba(0, 151, 178, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-primary-glow:hover::before {
  opacity: 0.6;
}

[data-theme="dark"] .btn-primary-glow {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.18) 0%, rgba(167, 139, 250, 0.12) 50%, rgba(124, 58, 237, 0.08) 100%);
  border: 1.5px solid rgba(167, 139, 250, 0.35);
  color: #e2e8f0;
  box-shadow:
    0 4px 24px rgba(139, 92, 246, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .btn-primary-glow::before {
  background: linear-gradient(135deg, rgba(167, 139, 250, 0.2) 0%, rgba(139, 92, 246, 0.05) 40%, transparent 60%);
}

[data-theme="dark"] .btn-primary-glow:hover {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.3) 0%, rgba(167, 139, 250, 0.2) 50%, rgba(124, 58, 237, 0.15) 100%);
  border-color: rgba(167, 139, 250, 0.6);
  box-shadow:
    0 12px 40px rgba(139, 92, 246, 0.3),
    0 4px 12px rgba(167, 139, 250, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.btn-glass {
  display: inline-block;
  padding: 16px 32px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-color);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 12px;
  text-decoration: none;
  backdrop-filter: blur(10px);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

[data-theme="dark"] .btn-glass {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

[data-theme="dark"] .btn-glass:hover {
  background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 600px) {
  .btn-primary-glow,
  .btn-glass {
    width: 100%;
    text-align: center;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn-primary {
  color: white;
  background: linear-gradient(135deg, #0097b2, #00a8c7);
  border: none;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #007d94, #0097b2);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 151, 178, 0.3);
}

[data-theme="dark"] .btn-primary {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

[data-theme="dark"] .btn-primary:hover {
  background: linear-gradient(135deg, #7c3aed, #6d28d9);
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

/* ════════════════════════════════════════════════════════════════════════════════
   LEGAL PAGES — PRIVACY POLICY & TERMS OF SERVICE
   ════════════════════════════════════════════════════════════════════════════════ */

.legal-hero {
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 80px 5%;
}

.legal-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.legal-hero-bg .mesh-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 151, 178, 0.08) 0%, transparent 50%, rgba(0, 151, 178, 0.05) 100%);
}

[data-theme="dark"] .legal-hero-bg .mesh-gradient {
  background: linear-gradient(135deg, rgba(183, 148, 246, 0.08) 0%, transparent 50%, rgba(183, 148, 246, 0.05) 100%);
}

.legal-orb-1 {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 151, 178, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  top: -100px;
  right: 10%;
  animation: floatOrb 8s ease-in-out infinite;
}

.legal-orb-2 {
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(0, 151, 178, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  bottom: -50px;
  left: 5%;
  animation: floatOrb 10s ease-in-out infinite reverse;
}

[data-theme="dark"] .legal-orb-1 {
  background: radial-gradient(circle, rgba(183, 148, 246, 0.15) 0%, transparent 70%);
}

[data-theme="dark"] .legal-orb-2 {
  background: radial-gradient(circle, rgba(183, 148, 246, 0.1) 0%, transparent 70%);
}

.legal-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
}

.legal-hero-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(0, 151, 178, 0.1), rgba(0, 151, 178, 0.05));
  border: 1px solid rgba(0, 151, 178, 0.2);
  border-radius: 20px;
  margin-bottom: 24px;
}

.legal-hero-icon svg {
  stroke: #0097b2;
}

[data-theme="dark"] .legal-hero-icon {
  background: linear-gradient(135deg, rgba(183, 148, 246, 0.1), rgba(183, 148, 246, 0.05));
  border: 1px solid rgba(183, 148, 246, 0.2);
}

[data-theme="dark"] .legal-hero-icon svg {
  stroke: #b794f6;
}

.legal-hero-title {
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 12px 0;
  font-family: "MuseoModerno", sans-serif;
}

.legal-hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin: 0;
}

.legal-content {
  padding: 60px 5%;
  background: var(--bg-primary);
  min-height: calc(100vh - 400px);
  contain: content;
}

.legal-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  align-items: start;
}

.legal-nav {
  position: sticky;
  top: 100px;
  background: var(--bg-secondary);
  border-radius: 16px;
  padding: 28px;
  border: 1px solid var(--border-color);
}

.legal-nav h3 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 20px 0;
}

.legal-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.legal-nav li {
  margin-bottom: 8px;
}

.legal-nav a {
  display: block;
  padding: 10px 14px;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  border-radius: 8px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.legal-nav a:hover {
  background: rgba(0, 151, 178, 0.08);
  color: #0097b2;
}

[data-theme="dark"] .legal-nav a:hover {
  background: rgba(183, 148, 246, 0.08);
  color: #b794f6;
}

.legal-article {
  background: var(--bg-secondary);
  border-radius: 20px;
  padding: 48px;
  border: 1px solid var(--border-color);
}

.legal-section {
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border-color);
}

.legal-section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.legal-section h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 20px 0;
  font-family: "MuseoModerno", sans-serif;
}

.legal-section h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 28px 0 16px 0;
}

.legal-section h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 20px 0 12px 0;
}

.legal-section p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin: 0 0 16px 0;
}

.legal-section ul,
.legal-section ol {
  margin: 0 0 20px 0;
  padding-left: 24px;
}

.legal-section li {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.legal-contact-info {
  background: linear-gradient(135deg, rgba(0, 151, 178, 0.05), rgba(0, 151, 178, 0.02));
  border: 1px solid rgba(0, 151, 178, 0.15);
  border-radius: 12px;
  padding: 24px;
  margin-top: 20px;
}

[data-theme="dark"] .legal-contact-info {
  background: linear-gradient(135deg, rgba(183, 148, 246, 0.05), rgba(183, 148, 246, 0.02));
  border: 1px solid rgba(183, 148, 246, 0.15);
}

.legal-contact-info p {
  margin: 0 0 8px 0;
}

.legal-contact-info p:last-child {
  margin-bottom: 0;
}

.legal-updates {
  background: linear-gradient(135deg, rgba(0, 151, 178, 0.03), transparent);
  border-radius: 16px;
  padding: 32px !important;
  margin-top: 16px;
}

[data-theme="dark"] .legal-updates {
  background: linear-gradient(135deg, rgba(183, 148, 246, 0.03), transparent);
}

@media (max-width: 1024px) {
  .legal-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .legal-nav {
    position: relative;
    top: 0;
  }

  .legal-article {
    padding: 36px;
  }
}

@media (max-width: 768px) {
  .legal-hero {
    min-height: 220px;
    padding: 60px 5%;
  }

  .legal-hero-title {
    font-size: 2rem;
  }

  .legal-hero-icon {
    width: 64px;
    height: 64px;
  }

  .legal-hero-icon svg {
    width: 32px;
    height: 32px;
  }

  .legal-content {
    padding: 40px 4%;
  }

  .legal-article {
    padding: 28px 20px;
    border-radius: 16px;
  }

  .legal-section h2 {
    font-size: 1.5rem;
  }

  .legal-nav {
    padding: 20px;
  }

}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
  color: #ffffff;
}

[data-theme="dark"] .faq-item.active .faq-chevron {
  color: #1a1a2e;
}

@media (max-width: 768px) {

}

@media (max-width: 600px) {
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    width: 100%;
    padding: 0;
  }

  .cta-buttons .btn-primary,
  .cta-buttons .btn-outline-light,
  .cta-buttons .btn-primary-glow,
  .cta-buttons a {
    width: 100%;
    max-width: 100%;
    min-width: auto;
    padding: 14px 24px;
    font-size: 0.95rem;
    text-align: center;
    box-sizing: border-box;
  }

  .cta-title {
    font-size: 1.6rem;
    padding: 0 16px;
  }

  .cta-subtitle {
    font-size: 0.95rem;
    padding: 0 16px;
  }
}

@media (max-width: 768px) {
  .btn-submit {
    width: 100%;
    max-width: 100%;
    padding: 14px 24px;
    font-size: 0.95rem;
  }

}

@media (max-width: 480px) {
  .btn-submit {
    padding: 12px 20px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {

.hero-buttons .btn-primary {
    width: 100%;
    max-width: 280px;
    text-align: center;
    padding: 14px 24px;
  }
}

.solution-tagline {
  font-size: 0.95rem;
  font-weight: 600;
  color: #0097b2;
  margin-bottom: 12px;
  margin-top: -8px;
}

[data-theme="dark"] .solution-tagline {
  color: #b794f6;
}

.solution-best-for {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
}

.solution-best-for strong {
  color: var(--text-primary);
}

/* ────────────────────────────────────────────────────────────
   HOME PAGE — TYPOGRAPHY & SECTION TITLES
   ──────────────────────────────────────────────────────────── */

.section-title-striking {
  font-family: 'MuseoModerno', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.section-subtitle-large {
  font-size: 1.3rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
  font-weight: 500;
}

.gradient-text-teal {
  background: linear-gradient(135deg, #0097b2 0%, #00d4ff 50%, #0097b2 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

[data-theme="dark"] .gradient-text-teal {
  background: linear-gradient(135deg, #b794f6 0%, #e879f9 50%, #b794f6 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-purple {
  background: linear-gradient(135deg, #0097b2 0%, #00d4ff 50%, #0097b2 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease-in-out infinite;
}

[data-theme="dark"] .gradient-text-purple {
  background: linear-gradient(135deg, #b794f6 0%, #e879f9 50%, #b794f6 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease-in-out infinite;
}

.gradient-text-animated {
  background: linear-gradient(135deg, #0097b2 0%, #00d4ff 25%, #00c4cc 50%, #00d4ff 75%, #0097b2 100%);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease-in-out infinite;
}

[data-theme="dark"] .gradient-text-animated {
  background: linear-gradient(135deg, #b794f6 0%, #e879f9 25%, #c084fc 50%, #e879f9 75%, #b794f6 100%);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease-in-out infinite;
}

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@media (max-width: 768px) {
  .section-title-striking {
    font-size: 2rem;
    padding: 0 16px;
  }

  .section-subtitle-large {
    font-size: 1.1rem;
    padding: 0 16px;
  }
}

/* ────────────────────────────────────────────────────────────
   HOME PAGE — "THE DIFFERENCE" SECTION
   ──────────────────────────────────────────────────────────── */

.difference-section {
  padding: 100px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

[data-theme="dark"] .difference-section {
  background: #0a0a0a;
}

.difference-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% 40%, rgba(30, 58, 138, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 60%, rgba(0, 151, 178, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

[data-theme="dark"] .difference-section::before {
  background:
    radial-gradient(ellipse 80% 50% at 20% 40%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 60%, rgba(129, 140, 248, 0.1) 0%, transparent 50%);
}

.difference-section .container {
  position: relative;
  z-index: 101;
}

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

.section-cta-bg .floating-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.7;
  animation: floatOrb 20s ease-in-out infinite;
}

.diff-orb-1 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, #1e3a8a, #0097b2);
  top: -10%;
  left: -5%;
  animation-delay: 0s;
}

.diff-orb-2 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #007a94, #00b4d8);
  bottom: -5%;
  right: -8%;
  animation-delay: -5s;
}

.diff-orb-3 {
  width: 250px;
  height: 250px;
  background: linear-gradient(135deg, #1d4ed8, #0097b2);
  bottom: 20%;
  left: 15%;
  animation-delay: -10s;
}

.diff-orb-4 {
  width: 180px;
  height: 180px;
  background: linear-gradient(135deg, #1e40af, #007a94);
  top: 30%;
  right: 10%;
  animation-delay: -15s;
}

[data-theme="dark"] .diff-orb-1 {
  background: linear-gradient(135deg, #4338ca, #6366f1);
}

[data-theme="dark"] .diff-orb-2 {
  background: linear-gradient(135deg, #4f46e5, #818cf8);
}

[data-theme="dark"] .diff-orb-3 {
  background: linear-gradient(135deg, #3730a3, #6366f1);
}

[data-theme="dark"] .diff-orb-4 {
  background: linear-gradient(135deg, #4c1d95, #5b21b6);
}

@media (max-width: 768px) {
  .section-cta-bg .floating-orb {
    filter: blur(50px);
    opacity: 0.4;
  }

  .diff-orb-1 {
    width: 150px;
    height: 150px;
  }

  .diff-orb-2 {
    width: 120px;
    height: 120px;
  }

  .diff-orb-3 {
    width: 100px;
    height: 100px;
  }

  .diff-orb-4 {
    width: 80px;
    height: 80px;
  }
}

.sol-orb-1 {
  width: 380px;
  height: 380px;
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  top: 5%;
  right: -5%;
  animation-delay: -3s;
}

.sol-orb-2 {
  width: 320px;
  height: 320px;
  background: linear-gradient(135deg, #8b5cf6, #c084fc);
  bottom: 10%;
  left: -8%;
  animation-delay: -8s;
}

.sol-orb-3 {
  width: 220px;
  height: 220px;
  background: linear-gradient(135deg, #9333ea, #a855f7);
  top: 40%;
  left: 20%;
  animation-delay: -12s;
}

.sol-orb-4 {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, #6d28d9, #7c3aed);
  bottom: -5%;
  right: 25%;
  animation-delay: -17s;
}

[data-theme="dark"] .sol-orb-1 {
  background: linear-gradient(135deg, #c026d3, #e879f9);
}

[data-theme="dark"] .sol-orb-2 {
  background: linear-gradient(135deg, #a21caf, #d946ef);
}

[data-theme="dark"] .sol-orb-3 {
  background: linear-gradient(135deg, #d946ef, #f0abfc);
}

[data-theme="dark"] .sol-orb-4 {
  background: linear-gradient(135deg, #86198f, #a21caf);
}

.difference-section .section-cta-bg .mesh-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(30, 58, 138, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(0, 151, 178, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(96, 165, 250, 0.06) 0%, transparent 60%);
}

[data-theme="dark"] .difference-section .section-cta-bg .mesh-gradient {
  background:
    radial-gradient(ellipse at 20% 30%, rgba(99, 102, 241, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(129, 140, 248, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(165, 180, 252, 0.08) 0%, transparent 60%);
}

.solutions-overview .section-cta-bg .mesh-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(124, 58, 237, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(168, 85, 247, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(192, 132, 252, 0.06) 0%, transparent 60%);
}

[data-theme="dark"] .solutions-overview .section-cta-bg .mesh-gradient {
  background:
    radial-gradient(ellipse at 20% 30%, rgba(192, 38, 211, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(217, 70, 239, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(240, 171, 252, 0.08) 0%, transparent 60%);
}

.section-cta-bg .mesh-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(0, 151, 178, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(0, 180, 200, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(0, 212, 255, 0.06) 0%, transparent 60%);
}

[data-theme="dark"] .section-cta-bg .mesh-gradient {
  background:
    radial-gradient(ellipse at 20% 30%, rgba(139, 92, 246, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(168, 85, 247, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(192, 132, 252, 0.08) 0%, transparent 60%);
}

.difference-section .container,
.solutions-overview .section-header,
.solutions-overview .solutions-grid,
.solutions-overview .solutions-assessment-cta {
  position: relative;
  z-index: 101;
}

.difference-section .section-header {
  position: relative;
  z-index: 101;
}

.difference-section .section-title-striking {
  color: var(--text-primary);
}

[data-theme="dark"] .difference-section .section-title-striking {
  color: #ffffff;
}

.difference-section .section-subtitle-large {
  color: var(--text-secondary);
}

[data-theme="dark"] .difference-section .section-subtitle-large {
  color: rgba(255, 255, 255, 0.7);
}

.difference-intro {
  text-align: center;
  max-width: 800px;
  margin: 60px auto 0;
  padding-top: 40px;
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-secondary);
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border-color);
}

[data-theme="dark"] .difference-intro {
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
  .difference-section {
    padding: 60px 0;
  }

  .difference-intro {
    padding: 0 20px;
    font-size: 1rem;
    margin-bottom: 40px;
  }

}

.pain-points-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.pain-point-card {
  position: relative;
  background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(248,250,252,0.95) 100%);
  border-radius: 24px;
  padding: 40px 32px 36px;
  text-align: center;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow:
    0 4px 24px rgba(0,0,0,0.04),
    0 1px 3px rgba(0,0,0,0.02);
}

[data-theme="dark"] .pain-point-card {
  background: linear-gradient(135deg, rgba(30,35,50,0.95) 0%, rgba(20,25,40,0.98) 100%);
  border-color: rgba(255,255,255,0.08);
  box-shadow:
    0 4px 24px rgba(0,0,0,0.3),
    0 1px 3px rgba(0,0,0,0.2),
    inset 0 1px 0 rgba(255,255,255,0.04);
}

.pain-point-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 20px 50px rgba(0,0,0,0.08),
    0 8px 20px rgba(0,0,0,0.04);
}

[data-theme="dark"] .pain-point-card:hover {
  box-shadow:
    0 20px 50px rgba(0,0,0,0.5),
    0 8px 20px rgba(0,0,0,0.3),
    inset 0 1px 0 rgba(255,255,255,0.06);
}

.pain-point-card:nth-child(1):hover {
  border-color: rgba(255, 107, 107, 0.3);
}

.pain-point-card:nth-child(2):hover {
  border-color: rgba(167, 139, 250, 0.3);
}

.pain-point-card:nth-child(3):hover {
  border-color: rgba(16, 185, 129, 0.3);
}

[data-theme="dark"] .pain-point-card:nth-child(1):hover {
  border-color: rgba(255, 107, 107, 0.4);
}

[data-theme="dark"] .pain-point-card:nth-child(2):hover {
  border-color: rgba(167, 139, 250, 0.4);
}

[data-theme="dark"] .pain-point-card:nth-child(3):hover {
  border-color: rgba(16, 185, 129, 0.4);
}

.pain-point-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.pain-point-card:nth-child(1) .pain-point-accent {
  background: linear-gradient(90deg, #FF6B6B 0%, #FFB347 100%);
}

.pain-point-card:nth-child(2) .pain-point-accent {
  background: linear-gradient(90deg, #A78BFA 0%, #6366F1 100%);
}

.pain-point-card:nth-child(3) .pain-point-accent {
  background: linear-gradient(90deg, #10B981 0%, #06B6D4 100%);
}

.pain-point-card:hover .pain-point-accent {
  opacity: 1;
}

.pain-point-icon-wrap {
  width: 100px;
  height: 100px;
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.pain-point-icon {
  width: 80px;
  height: 80px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.pain-point-card:hover .pain-point-icon {
  transform: scale(1.1);
}

.pain-point-title {
  font-family: var(--font-museo), sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 16px;
  line-height: 1.4;
  letter-spacing: -0.02em;
}

[data-theme="dark"] .pain-point-title {
  color: #f8fafc;
}

.pain-point-text {
  font-family: var(--font-primary), sans-serif;
  font-size: 0.975rem;
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}

[data-theme="dark"] .pain-point-text {
  color: #94a3b8;
}

/* ────────────────────────────────────────────────────────────
   HOME PAGE — PAIN POINTS SECTION
   ──────────────────────────────────────────────────────────── */

@media (max-width: 992px) {
  .pain-points-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .pain-points-grid .pain-point-card:last-child {
    grid-column: span 2;
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .pain-points-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pain-points-grid .pain-point-card:last-child {
    grid-column: span 1;
    max-width: none;
  }

  .pain-point-card {
    padding: 32px 24px 28px;
  }

  .pain-point-icon-wrap {
    width: 88px;
    height: 88px;
    margin-bottom: 24px;
  }

  .pain-point-icon {
    width: 70px;
    height: 70px;
  }

  .pain-point-title {
    font-size: 1.125rem;
  }

  .pain-point-text {
    font-size: 0.9375rem;
  }
}

/* ════════════════════════════════════════════════════════════════════════════════
   SERVICES PAGE — PLAN DETAIL SECTIONS
   ════════════════════════════════════════════════════════════════════════════════ */

.plan-section {
  position: relative;
  padding: 100px 0 100px;
  overflow: hidden;
}

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

.plan-floating-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.15;
}

.plan-orb-1 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, #F59E0B, #FBBF24);
  top: -100px;
  right: -100px;
  animation: floatOrb 20s ease-in-out infinite;
}

.plan-orb-2 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #10B981, #06B6D4);
  bottom: -50px;
  left: -50px;
  animation: floatOrb 25s ease-in-out infinite reverse;
}

.plan-section-featured .plan-orb-1 {
  background: linear-gradient(135deg, #F97316, #EF4444);
}

.plan-section-featured .plan-orb-2 {
  background: linear-gradient(135deg, #F97316, #FBBF24);
}

.plan-featured-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(249, 115, 22, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

[data-theme="dark"] .plan-featured-glow {
  background: radial-gradient(ellipse at center, rgba(249, 115, 22, 0.08) 0%, transparent 70%);
}

.plan-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto 60px;
  padding: 0 24px;
}

.plan-layout-reverse {
  direction: rtl;
}

.plan-layout-reverse > * {
  direction: ltr;
}

.plan-content {
  max-width: 540px;
}

.plan-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 20px;
}

.plan-badge svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.plan-badge-spark {
  background: rgba(245, 158, 11, 0.1);
  color: #D97706;
  border: 1px solid rgba(245, 158, 11, 0.2);
}

.plan-badge-spark svg {
  stroke: #F59E0B;
}

[data-theme="dark"] .plan-badge-spark {
  background: rgba(245, 158, 11, 0.15);
  color: #FBBF24;
}

.plan-badge-ignite {
  background: rgba(249, 115, 22, 0.1);
  color: #EA580C;
  border: 1px solid rgba(249, 115, 22, 0.2);
}

.plan-badge-ignite svg {
  stroke: #F97316;
}

[data-theme="dark"] .plan-badge-ignite {
  background: rgba(249, 115, 22, 0.15);
  color: #FB923C;
}

.plan-badge-blaze {
  background: rgba(139, 92, 246, 0.1);
  color: #7C3AED;
  border: 1px solid rgba(139, 92, 246, 0.2);
}

.plan-badge-blaze svg {
  stroke: #8B5CF6;
}

[data-theme="dark"] .plan-badge-blaze {
  background: rgba(139, 92, 246, 0.15);
  color: #A78BFA;
}

.plan-badge-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.plan-popular-badge {
  background: linear-gradient(135deg, #F97316, #EF4444);
  color: white;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.plan-headline {
  font-family: var(--font-museo), sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a2e;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

[data-theme="dark"] .plan-headline {
  color: #f8fafc;
}

.plan-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 20px;
}

.plan-price {
  font-family: var(--font-museo), sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  background: linear-gradient(135deg, #10B981, #06B6D4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.plan-section-featured .plan-price {
  background: linear-gradient(135deg, #F97316, #EF4444);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#blaze .plan-price {
  background: linear-gradient(135deg, #8B5CF6, #6366F1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.plan-price-note {
  font-size: 0.9rem;
  color: #64748b;
}

[data-theme="dark"] .plan-price-note {
  color: #94a3b8;
}

.plan-description {
  font-size: 1.05rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 28px;
}

[data-theme="dark"] .plan-description {
  color: #94a3b8;
}

.plan-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.plan-visual {
  display: flex;
  justify-content: center;
}

.plan-visual-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(248,250,252,0.98) 100%);
  border-radius: 24px;
  padding: 40px;
  box-shadow:
    0 20px 60px rgba(0,0,0,0.06),
    0 4px 20px rgba(0,0,0,0.03);
  border: 1px solid rgba(0,0,0,0.04);
  max-width: 360px;
  width: 100%;
}

[data-theme="dark"] .plan-visual-card {
  background: linear-gradient(135deg, rgba(30,35,50,0.95) 0%, rgba(20,25,40,0.98) 100%);
  border-color: rgba(255,255,255,0.06);
  box-shadow:
    0 20px 60px rgba(0,0,0,0.3),
    0 4px 20px rgba(0,0,0,0.2);
}

.plan-illustration {
  width: 100%;
  height: auto;
  margin-bottom: 24px;
}

[data-theme="light"] .plan-visual-spark .plan-illustration {
  filter: hue-rotate(200deg) saturate(1.3);
}

@keyframes orbitPulse {
  0%, 100% { opacity: 0.8; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

.plan-visual-stats {
  display: flex;
  justify-content: center;
  gap: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

[data-theme="dark"] .plan-visual-stats {
  border-top-color: rgba(255,255,255,0.08);
}

.plan-stat {
  text-align: center;
}

.plan-stat-number {
  display: block;
  font-family: var(--font-museo), sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 4px;
}

[data-theme="dark"] .plan-stat-number {
  color: #f8fafc;
}

.plan-stat-label {
  font-size: 0.75rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

[data-theme="dark"] .plan-stat-label {
  color: #94a3b8;
}

.plan-features-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.plan-features-title {
  font-family: var(--font-museo), sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a1a2e;
  text-align: center;
  margin-bottom: 40px;
}

[data-theme="dark"] .plan-features-title {
  color: #f8fafc;
}

.plan-features-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.plan-feature-card {
  background: rgba(255,255,255,0.7);
  border-radius: 16px;
  padding: 24px 20px;
  border: 1px solid rgba(0,0,0,0.04);
  transition: all 0.3s ease;
}

[data-theme="dark"] .plan-feature-card {
  background: rgba(30,35,50,0.6);
  border-color: rgba(255,255,255,0.05);
}

.plan-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

[data-theme="dark"] .plan-feature-card:hover {
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

.plan-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(16,185,129,0.1) 0%, rgba(6,182,212,0.1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.plan-feature-icon svg {
  width: 22px;
  height: 22px;
  stroke: #10B981;
}

.plan-section-featured .plan-feature-icon {
  background: linear-gradient(135deg, rgba(249,115,22,0.1) 0%, rgba(239,68,68,0.1) 100%);
}

.plan-section-featured .plan-feature-icon svg {
  stroke: #F97316;
}

#blaze .plan-feature-icon {
  background: linear-gradient(135deg, rgba(139,92,246,0.1) 0%, rgba(99,102,241,0.1) 100%);
}

#blaze .plan-feature-icon svg {
  stroke: #8B5CF6;
}

.plan-feature-card h4 {
  font-family: var(--font-museo), sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 8px;
  line-height: 1.3;
}

[data-theme="dark"] .plan-feature-card h4 {
  color: #f8fafc;
}

.plan-feature-card p {
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

[data-theme="dark"] .plan-feature-card p {
  color: #94a3b8;
}

.plan-details-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1200px;
  margin: 50px auto 0;
  padding: 0 24px;
}

.plan-detail-box {
  background: rgba(255,255,255,0.6);
  border-radius: 16px;
  padding: 28px;
  border: 1px solid rgba(0,0,0,0.04);
}

[data-theme="dark"] .plan-detail-box {
  background: rgba(30,35,50,0.5);
  border-color: rgba(255,255,255,0.05);
}

.plan-detail-box h4 {
  font-family: var(--font-museo), sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 12px;
}

[data-theme="dark"] .plan-detail-box h4 {
  color: #f8fafc;
}

.plan-detail-box p {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}

[data-theme="dark"] .plan-detail-box p {
  color: #94a3b8;
}

.plan-detail-exclusions {
  background: rgba(239, 68, 68, 0.03);
  border-color: rgba(239, 68, 68, 0.1);
}

[data-theme="dark"] .plan-detail-exclusions {
  background: rgba(239, 68, 68, 0.05);
  border-color: rgba(239, 68, 68, 0.15);
}

.plan-detail-exclusions h4 {
  color: #DC2626;
}

[data-theme="dark"] .plan-detail-exclusions h4 {
  color: #F87171;
}

@media (max-width: 1100px) {
  .plan-features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .plan-section {
    padding: 70px 0;
  }

  .plan-layout {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .plan-layout-reverse {
    direction: ltr;
  }

  .plan-content {
    max-width: 600px;
    margin: 0 auto;
  }

  .plan-badge-row {
    justify-content: center;
  }

  .plan-ctas {
    justify-content: center;
  }

  .plan-visual-card {
    max-width: 320px;
    margin: 0 auto;
  }

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

  .plan-details-row {
    grid-template-columns: 1fr;
  }

  .plan-headline {
    font-size: 2rem;
  }
}

@media (max-width: 640px) {
  .plan-section {
    padding: 50px 0;
  }

  .plan-layout {
    gap: 32px;
    margin-bottom: 40px;
  }

  .plan-headline {
    font-size: 1.75rem;
  }

  .plan-price {
    font-size: 1.5rem;
  }

  .plan-description {
    font-size: 1rem;
  }

  .plan-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .plan-ctas a {
    text-align: center;
  }

  .plan-visual-card {
    padding: 28px 20px;
  }

  .plan-features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .plan-feature-card {
    padding: 20px 18px;
  }

  .plan-features-title {
    font-size: 1.25rem;
    margin-bottom: 28px;
  }

  .plan-details-row {
    margin-top: 36px;
    gap: 16px;
  }

  .plan-detail-box {
    padding: 22px 20px;
  }
}

.page-orbs-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.page-orbs-container .floating-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: floatOrb 25s ease-in-out infinite;
}

.page-orb-1 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(0, 151, 178, 0.25) 0%, transparent 70%);
  top: 25%;
  left: -10%;
  animation-delay: 0s;
}

.page-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 200, 220, 0.2) 0%, transparent 70%);
  top: 55%;
  right: -8%;
  animation-delay: -5s;
}

.page-orb-3 {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(0, 151, 178, 0.22) 0%, transparent 70%);
  bottom: 15%;
  left: 20%;
  animation-delay: -10s;
}

.page-orb-4 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(0, 180, 200, 0.18) 0%, transparent 70%);
  top: 70%;
  right: 25%;
  animation-delay: -15s;
}

.page-orb-5 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(0, 151, 178, 0.3) 0%, transparent 70%);
  top: 35%;
  right: 10%;
  animation-delay: -3s;
}

.page-orb-6 {
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.25) 0%, transparent 70%);
  bottom: 30%;
  left: 5%;
  animation-delay: -8s;
}

.page-orb-7 {
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(0, 151, 178, 0.28) 0%, transparent 70%);
  top: 45%;
  left: 35%;
  animation-delay: -12s;
}

.page-orb-8 {
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(0, 200, 220, 0.22) 0%, transparent 70%);
  bottom: 45%;
  right: 30%;
  animation-delay: -18s;
}

[data-theme="dark"] .page-orb-1 {
  background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 70%);
}

[data-theme="dark"] .page-orb-2 {
  background: radial-gradient(circle, rgba(167, 139, 250, 0.25) 0%, transparent 70%);
}

[data-theme="dark"] .page-orb-3 {
  background: radial-gradient(circle, rgba(183, 148, 246, 0.28) 0%, transparent 70%);
}

[data-theme="dark"] .page-orb-4 {
  background: radial-gradient(circle, rgba(139, 92, 246, 0.22) 0%, transparent 70%);
}

[data-theme="dark"] .page-orb-5 {
  background: radial-gradient(circle, rgba(232, 121, 249, 0.3) 0%, transparent 70%);
}

[data-theme="dark"] .page-orb-6 {
  background: radial-gradient(circle, rgba(167, 139, 250, 0.28) 0%, transparent 70%);
}

[data-theme="dark"] .page-orb-7 {
  background: radial-gradient(circle, rgba(183, 148, 246, 0.25) 0%, transparent 70%);
}

[data-theme="dark"] .page-orb-8 {
  background: radial-gradient(circle, rgba(192, 132, 252, 0.22) 0%, transparent 70%);
}

.hero-apple,
.difference-section,
.solutions-overview,

/* ────────────────────────────────────────────────────────────
   HOME PAGE — GET STARTED CTA
   ──────────────────────────────────────────────────────────── */

.get-started-cta,
footer {
  position: relative;
  z-index: 1;
}

.get-started-cta {
  position: relative;
  padding: 100px 2rem;
  overflow: hidden;
  background: var(--bg-primary);
}

.get-started-cta .cta-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.get-started-cta .floating-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.6;
  animation: floatOrb 20s ease-in-out infinite;
}

.get-started-cta .cta-orb-1 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, #0097b2, #00d4ff);
  top: 5%;
  left: -5%;
  animation-delay: 0s;
}

.get-started-cta .cta-orb-2 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #0891b2, #22d3d1);
  bottom: 5%;
  right: -8%;
  animation-delay: -5s;
}

.get-started-cta .cta-orb-3 {
  width: 250px;
  height: 250px;
  background: linear-gradient(135deg, #06b6d4, #67e8f9);
  bottom: -10%;
  left: 15%;
  animation-delay: -10s;
}

.get-started-cta .cta-orb-4 {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, #0e7490, #0891b2);
  top: -5%;
  right: 10%;
  animation-delay: -15s;
}

[data-theme="dark"] .get-started-cta .cta-orb-1 {
  background: linear-gradient(135deg, #0ea5e9, #38bdf8);
}

[data-theme="dark"] .get-started-cta .cta-orb-2 {
  background: linear-gradient(135deg, #0284c7, #0ea5e9);
}

[data-theme="dark"] .get-started-cta .cta-orb-3 {
  background: linear-gradient(135deg, #38bdf8, #7dd3fc);
}

[data-theme="dark"] .get-started-cta .cta-orb-4 {
  background: linear-gradient(135deg, #0369a1, #0284c7);
}

.get-started-cta .mesh-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(0, 151, 178, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(8, 145, 178, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(6, 182, 212, 0.08) 0%, transparent 60%);
}

[data-theme="dark"] .get-started-cta .mesh-gradient {
  background:
    radial-gradient(ellipse at 20% 30%, rgba(14, 165, 233, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(56, 189, 248, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(125, 211, 252, 0.08) 0%, transparent 60%);
}

.get-started-cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
}

.get-started-headline {
  font-family: 'MuseoModerno', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 3rem;
}

.steps-cta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 3rem;
}

.step-cta-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 151, 178, 0.2);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
}

[data-theme="dark"] .step-cta-card {
  background: rgba(30, 30, 40, 0.6);
  border: 1px solid rgba(139, 92, 246, 0.3);
}

.step-cta-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 151, 178, 0.15);
  border-color: rgba(0, 151, 178, 0.4);
}

[data-theme="dark"] .step-cta-card:hover {
  box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
  border-color: rgba(139, 92, 246, 0.5);
}

.step-cta-number {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, #0097b2, #00c4cc);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'MuseoModerno', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(0, 151, 178, 0.3);
}

[data-theme="dark"] .step-cta-number {
  background: linear-gradient(135deg, #8b5cf6, #a855f7);
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.35);
}

.step-cta-title {
  font-family: 'MuseoModerno', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-color);
  margin: 0 0 0.75rem 0;
}

.step-cta-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}

.get-started-cta .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

@media (max-width: 992px) {
  .steps-cta-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2.5rem;
  }

  .get-started-headline {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .get-started-cta {
    padding: 80px 1.5rem;
  }

  .get-started-headline {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .step-cta-card {
    padding: 30px 24px;
  }

  .step-cta-number {
    width: 56px;
    height: 56px;
    font-size: 1.5rem;
  }
}

.difference-section .container,
.solutions-overview > .section-header,
.solutions-overview > .solutions-grid,
.solutions-overview > .solutions-assessment-cta {
  position: relative;
  z-index: 101;
}

.solutions-overview {
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 5;
}

/* ════════════════════════════════════════════════════════════════════════════════
   SERVICES PAGE — HERO SECTION
   ════════════════════════════════════════════════════════════════════════════════ */

.svc-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 2rem 100px;
  overflow: hidden;
  background: var(--bg-primary);
}

.svc-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: linear-gradient(to bottom, transparent 0%, var(--bg-primary) 100%);
  pointer-events: none;
  z-index: 5;
}

.svc-hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.svc-mesh-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(0, 151, 178, 0.1) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 80%, rgba(0, 212, 255, 0.07) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(6, 182, 212, 0.05) 0%, transparent 60%);
}

[data-theme="dark"] .svc-mesh-gradient {
  background:
    radial-gradient(ellipse at 30% 20%, rgba(139, 92, 246, 0.2) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 80%, rgba(168, 85, 247, 0.14) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(232, 121, 249, 0.08) 0%, transparent 60%);
}

.svc-hero .floating-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.6;
  animation: floatOrb 20s ease-in-out infinite;
}

[data-theme="light"] .svc-hero .floating-orb {
  opacity: 0.3;
  filter: blur(80px);
}

.svc-hero .svc-orb-1 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #0097b2, #00d4ff);
  top: -10%;
  left: 10%;
  animation-delay: -2s;
}

.svc-hero .svc-orb-2 {
  width: 420px;
  height: 420px;
  background: linear-gradient(135deg, #06b6d4, #0097b2);
  top: 30%;
  right: -12%;
  animation-delay: -9s;
}

.svc-hero .svc-orb-3 {
  width: 220px;
  height: 220px;
  background: linear-gradient(135deg, #00d4ff, #38bdf8);
  bottom: 8%;
  left: -6%;
  animation-delay: -5s;
}

.svc-hero .svc-orb-4 {
  width: 340px;
  height: 340px;
  background: linear-gradient(135deg, #0e7490, #06b6d4);
  bottom: -12%;
  right: 20%;
  animation-delay: -14s;
}

[data-theme="dark"] .svc-hero .svc-orb-1 {
  background: linear-gradient(135deg, #a855f7, #c084fc);
}

[data-theme="dark"] .svc-hero .svc-orb-2 {
  background: linear-gradient(135deg, #8b5cf6, #a78bfa);
}

[data-theme="dark"] .svc-hero .svc-orb-3 {
  background: linear-gradient(135deg, #c084fc, #e879f9);
}

[data-theme="dark"] .svc-hero .svc-orb-4 {
  background: linear-gradient(135deg, #7c3aed, #8b5cf6);
}

.svc-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1100px;
}

.svc-hero-title {
  font-family: 'MuseoModerno', sans-serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
  margin: 0 0 24px;
  letter-spacing: -0.02em;
}

.svc-hero-subtitle {
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin: 0 auto 44px;
  max-width: 800px;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .svc-hero {
    min-height: auto;
    padding: 100px 20px 64px;
  }

  .svc-hero-title {
    font-size: 1.85rem;
  }

  .svc-hero-subtitle {
    font-size: 1rem;
    margin-bottom: 32px;
  }

  .svc-hero .svc-orb-1 {
    width: 120px;
    height: 120px;
    top: 5%;
    left: 5%;
    filter: blur(40px);
  }

  .svc-hero .svc-orb-2 {
    width: 160px;
    height: 160px;
    top: 20%;
    right: -5%;
    filter: blur(50px);
  }

  .svc-hero .svc-orb-3 {
    width: 100px;
    height: 100px;
    bottom: 15%;
    left: 0;
    filter: blur(35px);
  }

  .svc-hero .svc-orb-4 {
    width: 130px;
    height: 130px;
    bottom: 5%;
    right: 10%;
    filter: blur(45px);
  }

}

/* ════════════════════════════════════════════════════════════════════════════════
   RESOURCES PAGES — HUB, ARTICLES, FAQ, GUIDES, TEMPLATES
   ════════════════════════════════════════════════════════════════════════════════ */

.res-hero {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 2rem 60px;
  background: linear-gradient(135deg,
    rgba(0,151,178,0.03) 0%,
    transparent 40%,
    rgba(183,148,246,0.02) 100%);
}

[data-theme="dark"] .res-hero {
  background: linear-gradient(135deg,
    rgba(0,151,178,0.06) 0%,
    transparent 40%,
    rgba(183,148,246,0.04) 100%);
}

.res-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.res-hero .mesh-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% 40%, rgba(0,151,178,0.15) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(183,148,246,0.1) 0%, transparent 50%),
    radial-gradient(ellipse 50% 60% at 50% 100%, rgba(0,151,178,0.08) 0%, transparent 40%);
  animation: resourceMeshFloat 20s ease-in-out infinite;
}

[data-theme="dark"] .res-hero .mesh-gradient {
  background:
    radial-gradient(ellipse 80% 50% at 20% 40%, rgba(0,151,178,0.22) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(183,148,246,0.18) 0%, transparent 50%),
    radial-gradient(ellipse 50% 60% at 50% 100%, rgba(0,151,178,0.12) 0%, transparent 40%);
}

@keyframes resourceMeshFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(2%, -1%) scale(1.02); }
  50% { transform: translate(-1%, 2%) scale(1); }
  75% { transform: translate(-2%, -1%) scale(1.01); }
}

.res-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,151,178,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,151,178,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  z-index: 0;
}

[data-theme="dark"] .res-hero::before {
  background-image:
    linear-gradient(rgba(183,148,246,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(183,148,246,0.05) 1px, transparent 1px);
}

.res-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: linear-gradient(to bottom, transparent, var(--bg-primary));
  z-index: 1;
  pointer-events: none;
}

.res-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.res-hero .hero-breadcrumb {
  margin-bottom: 2rem;
}

.res-hero-title {
  font-family: 'MuseoModerno', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-color) 50%, var(--text-primary) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: resHeroTitleShine 8s ease-in-out infinite;
}

@keyframes resHeroTitleShine {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

.res-hero-description {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--text-secondary);
  max-width: 720px;
  margin: 0 auto;
  opacity: 0.9;
}

.res-hero-decor {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  opacity: 0.6;
  pointer-events: none;
}

.res-hero-decor-1 {
  width: 8px;
  height: 8px;
  background: var(--accent-color);
  top: 25%;
  left: 15%;
  animation: floatDecor 6s ease-in-out infinite;
}

.res-hero-decor-2 {
  width: 6px;
  height: 6px;
  background: #b794f6;
  top: 35%;
  right: 20%;
  animation: floatDecor 8s ease-in-out infinite reverse;
}

.res-hero-decor-3 {
  width: 10px;
  height: 10px;
  background: var(--accent-color);
  bottom: 30%;
  left: 25%;
  animation: floatDecor 7s ease-in-out infinite;
}

.res-hero-decor-4 {
  width: 5px;
  height: 5px;
  background: #b794f6;
  bottom: 25%;
  right: 15%;
  animation: floatDecor 5s ease-in-out infinite reverse;
}

@keyframes floatDecor {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.6; }
  50% { transform: translateY(-20px) scale(1.2); opacity: 1; }
}

.res-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 2rem;
  padding: 1rem;
  background: rgba(255,255,255,0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 60px;
  border: 1px solid rgba(0,151,178,0.1);
  max-width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

[data-theme="dark"] .res-filter-bar {
  background: rgba(20,20,30,0.4);
  border-color: rgba(183,148,246,0.1);
}

.res-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  border: none;
  background: transparent;
  color: var(--text-secondary);
  font-family: 'MuseoModerno', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.res-filter-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent-color);
  border-radius: 50px;
  transform: scale(0);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.res-filter-btn:hover:not(.disabled) {
  color: var(--accent-color);
  transform: translateY(-2px);
}

.res-filter-btn.active {
  color: #fff;
  box-shadow: 0 8px 24px rgba(0,151,178,0.35);
}

.res-filter-btn.active::before {
  transform: scale(1);
}

[data-theme="dark"] .res-filter-btn.active {
  box-shadow: 0 8px 24px rgba(183,148,246,0.35);
}

.res-filter-btn.disabled {
  opacity: 0.4;
  cursor: default;
  pointer-events: none;
}

.res-filter-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.res-section {
  position: relative;
  padding: 100px 2rem;
  overflow: visible;
}

.res-section-alt {
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.res-section-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

.res-section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.res-section-title {
  font-family: 'MuseoModerno', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.res-intro-section {
  padding: 60px 2rem 40px;
}

.res-intro-text {
  font-size: 1.2rem;
  line-height: 1.9;
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  padding: 2rem;
}

.res-intro-text::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 4rem;
  font-family: 'MuseoModerno', sans-serif;
  color: var(--accent-color);
  opacity: 0.2;
  line-height: 1;
}

.res-category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.res-category-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  border-radius: 24px;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid rgba(0,151,178,0.1);
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

[data-theme="dark"] .res-category-card {
  background: rgba(20,20,30,0.7);
  border-color: rgba(183,148,246,0.1);
}

.res-category-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,151,178,0.1) 0%, transparent 50%, rgba(183,148,246,0.05) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

[data-theme="dark"] .res-category-card::before {
  background: linear-gradient(135deg, rgba(183,148,246,0.1) 0%, transparent 50%, rgba(0,151,178,0.05) 100%);
}

.res-category-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0,151,178,0.3);
  box-shadow:
    0 20px 40px rgba(0,151,178,0.15),
    0 0 0 1px rgba(0,151,178,0.1);
}

[data-theme="dark"] .res-category-card:hover {
  border-color: rgba(183,148,246,0.3);
  box-shadow:
    0 20px 40px rgba(183,148,246,0.15),
    0 0 0 1px rgba(183,148,246,0.1);
}

.res-category-card:hover::before {
  opacity: 1;
}

.res-category-icon {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(0,151,178,0.12), rgba(183,148,246,0.08));
  margin-bottom: 1.5rem;
  font-size: 2rem;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
}

.res-category-card:hover .res-category-icon {
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(0,151,178,0.2);
}

[data-theme="dark"] .res-category-card:hover .res-category-icon {
  box-shadow: 0 8px 24px rgba(183,148,246,0.2);
}

.res-category-icon svg {
  width: 36px;
  height: 36px;
  color: var(--accent-color);
}

[data-theme="dark"] .res-category-icon svg {
  color: #b794f6;
}

.res-category-title {
  position: relative;
  z-index: 1;
  font-family: 'MuseoModerno', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
  text-align: center;
}

.res-featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.res-featured-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px;
  border-radius: 24px;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid rgba(0,151,178,0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

[data-theme="dark"] .res-featured-card {
  background: rgba(20,20,30,0.75);
  border-color: rgba(183,148,246,0.1);
}

.res-featured-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), #b794f6);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.res-featured-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,151,178,0.25);
  box-shadow: 0 24px 48px rgba(0,151,178,0.12);
}

[data-theme="dark"] .res-featured-card:hover {
  border-color: rgba(183,148,246,0.25);
  box-shadow: 0 24px 48px rgba(183,148,246,0.12);
}

.res-featured-card:hover::before {
  transform: scaleX(1);
}

.res-featured-label {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: linear-gradient(135deg, rgba(0,151,178,0.1), rgba(183,148,246,0.1));
  color: var(--accent-color);
  margin-bottom: 1.25rem;
  width: fit-content;
}

[data-theme="dark"] .res-featured-label {
  color: #b794f6;
}

.res-featured-card-title {
  font-family: 'MuseoModerno', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.res-featured-card-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-secondary);
  flex: 1;
  margin-bottom: 1.25rem;
}

.res-featured-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 1.25rem;
}

.res-featured-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'MuseoModerno', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-color);
  text-decoration: none;
  transition: gap 0.3s ease;
  margin-top: auto;
}

.res-featured-card-cta:hover {
  gap: 12px;
}

[data-theme="dark"] .res-featured-card-cta {
  color: #b794f6;
}

.res-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.res-blog-card {
  position: relative;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-radius: 24px;
  border: 1px solid rgba(0,151,178,0.1);
  padding: 32px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

[data-theme="dark"] .res-blog-card {
  background: rgba(20,20,30,0.7);
  border-color: rgba(183,148,246,0.1);
}

.res-blog-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 32px;
  right: 32px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), #b794f6);
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 3px 3px 0 0;
}

.res-blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,151,178,0.15);
  border-color: rgba(0,151,178,0.2);
}

[data-theme="dark"] .res-blog-card:hover {
  box-shadow: 0 20px 50px rgba(183,148,246,0.15);
  border-color: rgba(183,148,246,0.2);
}

.res-blog-card:hover::after {
  transform: scaleX(1);
}

.res-blog-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.res-article-category {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: linear-gradient(135deg, rgba(0,151,178,0.12), rgba(183,148,246,0.08));
  color: var(--accent-color);
  margin-bottom: 1rem;
  width: fit-content;
}

[data-theme="dark"] .res-article-category {
  background: linear-gradient(135deg, rgba(183,148,246,0.15), rgba(0,151,178,0.1));
  color: #b794f6;
}

.res-blog-card-title {
  font-family: 'MuseoModerno', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.res-blog-card-excerpt {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-secondary);
  flex: 1;
  margin-bottom: 1.5rem;
}

.res-article-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'MuseoModerno', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-color);
  text-decoration: none;
  transition: gap 0.3s ease, color 0.3s ease;
  margin-top: auto;
}

.res-article-cta:hover {
  gap: 12px;
}

[data-theme="dark"] .res-article-cta {
  color: #b794f6;
}

.res-inline-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3rem;
  padding: 1.5rem 2rem;
  background: linear-gradient(135deg, rgba(0,151,178,0.05), rgba(183,148,246,0.03));
  border-radius: 60px;
  border: 1px solid rgba(0,151,178,0.1);
}

[data-theme="dark"] .res-inline-cta {
  background: linear-gradient(135deg, rgba(183,148,246,0.05), rgba(0,151,178,0.03));
  border-color: rgba(183,148,246,0.1);
}

.res-inline-cta p {
  font-size: 1rem;
  color: var(--text-secondary);
  margin: 0;
}

.res-inline-cta .btn-glass {
  padding: 10px 24px;
  font-size: 0.9rem;
}

.res-tag {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  background: linear-gradient(135deg, rgba(0,151,178,0.1), rgba(183,148,246,0.05));
  color: var(--accent-color);
  border: 1px solid rgba(0,151,178,0.15);
}

[data-theme="dark"] .res-tag {
  background: linear-gradient(135deg, rgba(183,148,246,0.1), rgba(0,151,178,0.05));
  color: #b794f6;
  border-color: rgba(183,148,246,0.15);
}

.res-faq-category-title {
  font-family: 'MuseoModerno', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(0,151,178,0.15);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.res-faq-category-title::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 28px;
  background: linear-gradient(180deg, var(--accent-color), #b794f6);
  border-radius: 3px;
}

[data-theme="dark"] .res-faq-category-title {
  border-color: rgba(183,148,246,0.15);
}

.res-faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.res-faq-item {
  position: relative;
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0,151,178,0.1);
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="dark"] .res-faq-item {
  background: rgba(20,20,30,0.55);
  border-color: rgba(183,148,246,0.1);
}

.res-faq-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--accent-color), #b794f6);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.res-faq-item:hover {
  border-color: rgba(0,151,178,0.2);
}

[data-theme="dark"] .res-faq-item:hover {
  border-color: rgba(183,148,246,0.2);
}

.res-faq-item.open {
  border-color: rgba(0,151,178,0.25);
  box-shadow: 0 12px 40px rgba(0,151,178,0.1);
}

[data-theme="dark"] .res-faq-item.open {
  border-color: rgba(183,148,246,0.25);
  box-shadow: 0 12px 40px rgba(183,148,246,0.1);
}

.res-faq-item.open::before {
  transform: scaleY(1);
}

.res-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 24px;
  border: none;
  background: none;
  cursor: pointer;
  text-align: left;
  font-family: 'MuseoModerno', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  gap: 16px;
  transition: color 0.3s ease;
}

.res-faq-question:hover {
  color: var(--accent-color);
}

[data-theme="dark"] .res-faq-question:hover {
  color: #b794f6;
}

.res-faq-chevron {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0,151,178,0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--text-secondary);
}

[data-theme="dark"] .res-faq-chevron {
  background: rgba(183,148,246,0.1);
}

.res-faq-item.open .res-faq-chevron {
  transform: rotate(180deg);
  background: var(--accent-color);
  color: #fff;
}

[data-theme="dark"] .res-faq-item.open .res-faq-chevron {
  background: #b794f6;
}

.res-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
  padding: 0 24px;
}

.res-faq-item.open .res-faq-answer {
  max-height: 400px;
  padding: 0 24px 24px;
}

.res-faq-answer p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
}

.res-faq-answer p:last-child {
  margin-bottom: 0;
}

.res-faq-answer ul {
  padding-left: 1.25rem;
  margin: 0.5rem 0;
}

.res-faq-answer li {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.res-faq-answer a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.2s ease;
}

.res-faq-answer a:hover {
  opacity: 0.8;
}

[data-theme="dark"] .res-faq-answer a {
  color: #b794f6;
}

.res-faq-answer a {
  color: var(--accent-color);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.2s;
}
.res-faq-answer a:hover {
  opacity: 0.8;
}
[data-theme="dark"] .res-faq-answer a {
  color: #b794f6;
}

@media (max-width: 1024px) {
  .res-blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .res-hero {
    min-height: auto;
    padding: 100px 1.2rem 40px;
  }
  .res-hero-title {
    font-size: 1.8rem;
  }
  .res-hero-description {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  .res-filter-bar {
    gap: 6px;
  }
  .res-filter-btn {
    padding: 8px 14px;
    font-size: 0.8rem;
  }
  .res-section {
    padding: 50px 1.2rem;
  }
  .res-section-title {
    font-size: 1.8rem;
  }
  .res-blog-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .res-blog-card {
    padding: 20px;
  }
}

.res-intro-section {
  padding-top: 40px;
  padding-bottom: 20px;
}
.res-intro-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.res-category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.res-category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 36px 24px;
  border-radius: 20px;
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid rgba(0,151,178,0.12);
  text-decoration: none;
  color: inherit;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
[data-theme="dark"] .res-category-card {
  background: rgba(20,20,30,0.55);
  border-color: rgba(183,148,246,0.12);
}
.res-category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 44px rgba(0,151,178,0.14);
  border-color: rgba(0,151,178,0.3);
}
[data-theme="dark"] .res-category-card:hover {
  box-shadow: 0 14px 44px rgba(183,148,246,0.14);
  border-color: rgba(183,148,246,0.3);
}
.res-category-icon {
  font-size: 2.4rem;
  margin-bottom: 1rem;
  line-height: 1;
}
.res-category-title {
  font-family: 'MuseoModerno', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.res-featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.res-featured-card {
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid rgba(0,151,178,0.12);
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
[data-theme="dark"] .res-featured-card {
  background: rgba(20,20,30,0.55);
  border-color: rgba(183,148,246,0.12);
}
.res-featured-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,151,178,0.12);
  border-color: rgba(0,151,178,0.25);
}
[data-theme="dark"] .res-featured-card:hover {
  box-shadow: 0 12px 40px rgba(183,148,246,0.12);
  border-color: rgba(183,148,246,0.25);
}
.res-featured-label {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  background: rgba(0,151,178,0.12);
  color: var(--accent-color);
  margin-bottom: 0.8rem;
  align-self: flex-start;
}
[data-theme="dark"] .res-featured-label {
  background: rgba(183,148,246,0.12);
  color: #b794f6;
}
.res-featured-card-title {
  font-family: 'MuseoModerno', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.6rem;
  line-height: 1.35;
}
.res-featured-card-desc {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-secondary);
  flex: 1;
  margin-bottom: 1rem;
}
.res-featured-card-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
}
.res-featured-card-cta {
  display: inline-block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--accent-color);
  text-decoration: none;
  transition: opacity 0.2s;
  margin-top: auto;
}
[data-theme="dark"] .res-featured-card-cta {
  color: #b794f6;
}
.res-featured-card-cta:hover {
  opacity: 0.75;
}

.res-article-category {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: rgba(0,151,178,0.1);
  color: var(--accent-color);
  margin-bottom: 0.7rem;
}
[data-theme="dark"] .res-article-category {
  background: rgba(183,148,246,0.1);
  color: #b794f6;
}
.res-article-cta {
  display: inline-block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--accent-color);
  text-decoration: none;
  transition: opacity 0.2s;
  margin-top: auto;
  padding-top: 0.5rem;
}
[data-theme="dark"] .res-article-cta {
  color: #b794f6;
}
.res-article-cta:hover {
  opacity: 0.75;
}

.res-inline-cta {
  text-align: center;
  padding: 40px 28px;
  border-radius: 20px;
  background: rgba(0,151,178,0.06);
  border: 1px solid rgba(0,151,178,0.15);
  margin-top: 40px;
}
[data-theme="dark"] .res-inline-cta {
  background: rgba(183,148,246,0.06);
  border-color: rgba(183,148,246,0.15);
}
.res-inline-cta p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 1rem;
}

.res-faq-category-title {
  font-family: 'MuseoModerno', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 2.5rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(0,151,178,0.15);
}
[data-theme="dark"] .res-faq-category-title {
  border-bottom-color: rgba(183,148,246,0.15);
}
.res-faq-category-title:first-child {
  margin-top: 0;
}

.res-guide-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.res-guide-card {
  position: relative;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid rgba(0,151,178,0.1);
  border-radius: 24px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

[data-theme="dark"] .res-guide-card {
  background: rgba(20,20,30,0.7);
  border-color: rgba(183,148,246,0.1);
}

.res-guide-card::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(0,151,178,0.08) 0%, transparent 70%);
  border-radius: 50%;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

[data-theme="dark"] .res-guide-card::before {
  background: radial-gradient(circle, rgba(183,148,246,0.1) 0%, transparent 70%);
}

.res-guide-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 36px;
  right: 36px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), #b794f6, var(--accent-color));
  background-size: 200% 100%;
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 3px 3px 0 0;
}

.res-guide-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0,151,178,0.15);
  border-color: rgba(0,151,178,0.2);
}

[data-theme="dark"] .res-guide-card:hover {
  box-shadow: 0 24px 60px rgba(183,148,246,0.15);
  border-color: rgba(183,148,246,0.2);
}

.res-guide-card:hover::before {
  transform: scale(1.5);
  opacity: 0.5;
}

.res-guide-card:hover::after {
  transform: scaleX(1);
}

.res-guide-card-title {
  position: relative;
  font-family: 'MuseoModerno', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.res-guide-card-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
  padding: 6px 14px;
  background: linear-gradient(135deg, rgba(0,151,178,0.1), rgba(183,148,246,0.05));
  border-radius: 50px;
  width: fit-content;
}

[data-theme="dark"] .res-guide-card-subtitle {
  color: #b794f6;
  background: linear-gradient(135deg, rgba(183,148,246,0.12), rgba(0,151,178,0.06));
}

.res-guide-card-desc {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-secondary);
  flex: 1;
  margin-bottom: 1.5rem;
}

.res-guide-cta {
  align-self: flex-start;
  position: relative;
  z-index: 1;
}

.res-template-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.res-template-card {
  position: relative;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid rgba(0,151,178,0.1);
  border-radius: 24px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

[data-theme="dark"] .res-template-card {
  background: rgba(20,20,30,0.7);
  border-color: rgba(183,148,246,0.1);
}

.res-template-card::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(183,148,246,0.08) 0%, transparent 70%);
  border-radius: 50%;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

[data-theme="dark"] .res-template-card::before {
  background: radial-gradient(circle, rgba(0,151,178,0.08) 0%, transparent 70%);
}

.res-template-card::after {
  content: '';
  position: absolute;
  top: 36px;
  bottom: 36px;
  left: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--accent-color), #b794f6);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 0 4px 4px 0;
}

.res-template-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0,151,178,0.15);
  border-color: rgba(0,151,178,0.2);
}

[data-theme="dark"] .res-template-card:hover {
  box-shadow: 0 24px 60px rgba(183,148,246,0.15);
  border-color: rgba(183,148,246,0.2);
}

.res-template-card:hover::before {
  transform: scale(1.5);
  opacity: 0.5;
}

.res-template-card:hover::after {
  transform: scaleY(1);
}

.res-template-card-title {
  position: relative;
  font-family: 'MuseoModerno', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.85rem;
  line-height: 1.35;
}

.res-template-card-desc {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-secondary);
  flex: 1;
  margin-bottom: 1.5rem;
}

.res-template-cta {
  align-self: flex-start;
  position: relative;
  z-index: 1;
  margin-bottom: 1rem;
}

.res-template-plan-cta {
  font-size: 0.88rem;
  margin: 0;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(0,151,178,0.1);
}

[data-theme="dark"] .res-template-plan-cta {
  border-color: rgba(183,148,246,0.1);
}

.res-template-plan-cta a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  transition: gap 0.3s ease, opacity 0.2s ease;
}

[data-theme="dark"] .res-template-plan-cta a {
  color: #b794f6;
}

.res-template-plan-cta a:hover {
  gap: 10px;
  opacity: 0.85;
}

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

@media (max-width: 768px) {
  .res-hero {
    min-height: 500px;
    padding: 140px 1.5rem 80px;
  }

  .res-hero-title {
    font-size: 2.2rem;
  }

  .res-hero-description {
    font-size: 1rem;
  }

  .res-section {
    padding: 60px 1.5rem;
  }

  .res-intro-section {
    padding: 40px 1.5rem 20px;
  }

  .res-intro-text {
    font-size: 1rem;
    padding: 1.5rem;
  }

  .res-intro-text::before {
    font-size: 3rem;
    top: -5px;
  }

  .res-category-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .res-category-card {
    padding: 32px 24px;
    flex-direction: row;
    justify-content: flex-start;
    gap: 1.25rem;
  }

  .res-category-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 0;
  }

  .res-featured-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .res-featured-card {
    padding: 24px;
  }

  .res-blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .res-blog-card {
    padding: 24px;
  }

  .res-filter-bar {
    padding: 0.75rem;
    gap: 8px;
  }

  .res-filter-btn {
    padding: 10px 18px;
    font-size: 0.85rem;
  }

  .res-inline-cta {
    flex-direction: column;
    gap: 1rem;
    padding: 24px 20px;
    text-align: center;
  }

  .res-faq-category-title {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
  }

  .res-faq-category-title::before {
    height: 24px;
  }

  .res-faq-question {
    padding: 16px 20px;
    font-size: 0.95rem;
  }

  .res-faq-answer {
    padding: 0 20px;
  }

  .res-faq-item.open .res-faq-answer {
    padding: 0 20px 20px;
  }

  .res-guide-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .res-guide-card {
    padding: 28px;
  }

  .res-guide-card-title {
    font-size: 1.2rem;
  }

  .res-template-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .res-template-card {
    padding: 28px;
  }

  .res-template-card-title {
    font-size: 1.2rem;
  }
}

/* ════════════════════════════════════════════════════════════════════════════════
   THANK YOU PAGE
   ════════════════════════════════════════════════════════════════════════════════ */

.thankyou-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem;
  overflow: hidden;
}

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

.thankyou-hero-bg .mesh-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 40%, rgba(0, 151, 178, 0.08), transparent 70%);
}

[data-theme="dark"] .thankyou-hero-bg .mesh-gradient {
  background: radial-gradient(ellipse 80% 50% at 50% 40%, rgba(183, 148, 246, 0.1), transparent 70%);
}

.thankyou-orb-1 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, #06b6d4, #0097b2);
  top: 10%;
  right: 10%;
  opacity: 0.15;
}

.thankyou-orb-2 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #a855f7, #ec4899);
  bottom: 20%;
  left: 5%;
  opacity: 0.12;
}

.thankyou-orb-3 {
  width: 250px;
  height: 250px;
  background: linear-gradient(135deg, #10b981, #06b6d4);
  top: 40%;
  left: 20%;
  opacity: 0.1;
}

.thankyou-hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  text-align: center;
}

.thankyou-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(16, 185, 129, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

.thankyou-icon svg {
  stroke: #10b981;
}

[data-theme="dark"] .thankyou-icon {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.08));
}

.thankyou-title {
  font-family: 'MuseoModerno', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-color);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.thankyou-subtitle {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.thankyou-prose {
  margin-bottom: 2.5rem;
}

.thankyou-prose p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

.thankyou-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

@media (max-width: 768px) {

  .thankyou-title {
    font-size: 2.2rem;
  }

  .thankyou-ctas {
    flex-direction: column;
    align-items: center;
  }

  .thankyou-ctas .btn-primary-glow,
  .thankyou-ctas .btn-outline-light {
    width: 100%;
    max-width: 280px;
  }
}

/* ════════════════════════════════════════════════════════════════════════════════
   SERVICES PAGE — PLAN STAGE NAVIGATOR ("Where Are You Right Now?")
   ════════════════════════════════════════════════════════════════════════════════ */

.plan-stage-section {
  padding: 8rem 0 7rem;
  margin-top: 2rem;
  position: relative;
}

.plan-stage-section .container,
.plan-stage-section .section-header {
  position: relative;
  z-index: 101;
}

.plan-stage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}

.plan-stage-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem 1.75rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
  min-height: 180px;
}

.plan-stage-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 200, 150, 0.35);
  box-shadow: 0 12px 40px rgba(0, 200, 150, 0.1);
}

.plan-stage-card-featured {
  border-color: rgba(0, 200, 150, 0.3);
  background: rgba(0, 200, 150, 0.05);
}

.plan-stage-card-featured:hover {
  border-color: rgba(0, 200, 150, 0.5);
  box-shadow: 0 16px 48px rgba(0, 200, 150, 0.15);
}

.plan-stage-situation {
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0 0 1.25rem;
  font-style: italic;
  opacity: 0.9;
}

.plan-stage-plan {
  font-family: 'MuseoModerno', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--accent-color, #00c896);
  letter-spacing: 0.01em;
}

[data-theme="light"] .plan-stage-card {
  background: rgba(0, 0, 0, 0.02);
  border-color: rgba(0, 0, 0, 0.08);
}
[data-theme="light"] .plan-stage-card:hover {
  border-color: rgba(0, 100, 75, 0.3);
  box-shadow: 0 12px 40px rgba(0, 100, 75, 0.08);
}
[data-theme="light"] .plan-stage-card-featured {
  background: rgba(0, 200, 150, 0.04);
  border-color: rgba(0, 100, 75, 0.2);
}

@media (max-width: 768px) {
  .plan-stage-section {
    padding: 5rem 0 4rem;
    margin-top: 1rem;
  }

  .plan-stage-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2.5rem;
  }

  .plan-stage-card {
    min-height: auto;
    padding: 1.5rem 1.25rem;
  }

  .plan-section {
    padding: 80px 0 60px;
  }
}

/* ────────────────────────────────────────────────────────────
   SERVICES PAGE — CUSTOM ENGAGEMENT SECTION
   ──────────────────────────────────────────────────────────── */

.custom-engagement-section {
  position: relative;
  padding: 6rem 1.5rem;
  margin: 6rem auto;
  max-width: 1200px;
  background: linear-gradient(135deg, rgba(88, 28, 135, 0.2) 0%, rgba(30, 20, 50, 0.95) 50%, rgba(20, 15, 40, 0.98) 100%);
  border-radius: 32px;
  overflow: hidden;
}

.custom-engagement-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  pointer-events: none;
}

.custom-glow-orb {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(147, 51, 234, 0.25) 0%, rgba(88, 28, 135, 0.1) 40%, transparent 70%);
  filter: blur(60px);
  animation: pulseGlow 6s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

.custom-engagement-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.custom-engagement-title {
  font-family: 'MuseoModerno', sans-serif;
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 600;
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  background: linear-gradient(135deg, #fff 0%, #c084fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.custom-engagement-text {
  font-size: 1.125rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2.5rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.custom-engagement-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #9333ea 0%, #7c3aed 50%, #6d28d9 100%);
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(147, 51, 234, 0.4), 0 0 0 0 rgba(147, 51, 234, 0);
  border: 1px solid rgba(167, 139, 250, 0.3);
}

.custom-engagement-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(147, 51, 234, 0.5), 0 0 20px rgba(147, 51, 234, 0.3);
  background: linear-gradient(135deg, #a855f7 0%, #8b5cf6 50%, #7c3aed 100%);
}

.custom-engagement-btn svg {
  transition: transform 0.3s ease;
}

.custom-engagement-btn:hover svg {
  transform: translateX(4px);
}

[data-theme="light"] .custom-engagement-section {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.08) 0%, rgba(124, 58, 237, 0.12) 50%, rgba(109, 40, 217, 0.1) 100%);
}

[data-theme="light"] .custom-glow-orb {
  background: radial-gradient(circle, rgba(147, 51, 234, 0.15) 0%, rgba(88, 28, 135, 0.05) 40%, transparent 70%);
}

[data-theme="light"] .custom-engagement-title {
  background: linear-gradient(135deg, #581c87 0%, #7c3aed 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

[data-theme="light"] .custom-engagement-text {
  color: rgba(55, 48, 80, 0.85);
}

/* ════════════════════════════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE & TABLET BREAKPOINTS
   ════════════════════════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
  .custom-engagement-section {
    padding: 4rem 1.25rem;
    margin: 2rem 0;
    border-radius: 24px;
  }

  .custom-engagement-title {
    font-size: 1.75rem;
  }

  .custom-engagement-text {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .custom-engagement-btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
  }

  .custom-glow-orb {
    width: 300px;
    height: 300px;
  }
}

@media (max-width: 480px) {
  
  html {
    font-size: 14px;
  }

  h1, .hero-apple-title {
    font-size: 1.75rem !important;
    line-height: 1.2;
  }

  h2, .section-title-striking {
    font-size: 1.5rem !important;
  }

  h3 {
    font-size: 1.25rem;
  }

  .hero-apple {
    padding: 80px 16px 40px;
    min-height: auto;
  }

  .hero-card {
    border-radius: 20px;
    margin: 0 8px;
  }

  .hero-card-content {
    padding: 24px 20px;
  }

  .hero-apple-subtitle {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .hero-btn-simple {
    padding: 14px 20px;
    font-size: 0.88rem;
    max-width: 100%;
  }

  .hero-buttons-stack {
    max-width: 100%;
    padding: 0;
  }

  .btn-primary-glow,
  .btn-primary,
  .btn-outline-light,
  .btn-glass {
    padding: 14px 20px;
    font-size: 0.9rem;
    min-width: auto;
    max-width: 100%;
    width: 100%;
  }

  .cta-buttons .btn-primary-glow,
  .cta-buttons .btn-outline-light {
    min-width: auto;
    padding: 14px 20px;
  }

  .discovery-cta-btn {
    padding: 14px 20px;
    font-size: 0.9rem;
  }

  .error-cta-btn {
    padding: 12px 24px;
    font-size: 0.9rem;
    max-width: 100%;
    box-sizing: border-box;
  }

  .form-submit-v2 .btn-primary-glow {
    padding: 14px 20px;
  }

  .solution-link {
    font-size: 0.9rem;
  }

  .navbar {
    padding: 12px 16px;
  }

  .navbar-logo img {
    max-height: 32px;
  }

  section {
    padding: 40px 16px !important;
  }

  .container {
    padding: 0 16px;
  }

  .footer {
    padding: 40px 16px 24px;
  }

  .cta-section {
    padding: 40px 16px !important;
  }

  .cta-title {
    font-size: 1.5rem !important;
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cta-buttons .btn-primary-glow,
  .cta-buttons .btn-outline-light {
    width: 100%;
    min-width: auto;
    max-width: 100%;
    padding: 14px 20px;
    font-size: 0.9rem;
  }

  .faq-accordion-item {
    margin-bottom: 8px;
  }

  .faq-question {
    padding: 16px;
    font-size: 0.95rem;
  }

  .faq-answer-content {
    padding: 0 16px 16px;
    font-size: 0.9rem;
  }

  .res-hero {
    padding: 100px 16px 40px !important;
    min-height: 280px !important;
  }

  .res-hero-title {
    font-size: 1.75rem !important;
  }

  .res-hero-description {
    font-size: 0.95rem;
  }

  .res-section-inner {
    padding: 0 8px;
  }

  .res-faq-question {
    padding: 16px;
    font-size: 0.95rem;
  }

  .res-faq-answer {
    font-size: 0.9rem;
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  h1, .hero-apple-title {
    font-size: 2rem;
  }

  h2, .section-title-striking {
    font-size: 1.75rem;
  }

  .hero-apple {
    padding: 100px 20px 50px;
  }

  .hero-card-content {
    padding: 32px 28px;
  }

  section {
    padding: 50px 20px !important;
  }

  .res-hero {
    padding: 110px 20px 50px !important;
    min-height: 320px !important;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .hero-card {
    flex-direction: column;
  }

  .hero-card-image {
    height: 300px;
  }

  .res-hero {
    min-height: 340px;
    padding: 130px 2rem 60px;
  }
}

@media (max-width: 768px) {
  
  .navbar-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background: var(--bg-primary);
    flex-direction: column;
    padding: 80px 24px 24px;
    transition: right 0.3s ease;
    z-index: 1000;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
  }

  .navbar-links.active {
    right: 0;
  }

  .navbar-toggle {
    display: flex !important;
  }

  .navbar-links-inner {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 0;
  }

  .navbar-links-inner li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .navbar-links-inner li a {
    display: block;
    padding: 16px 0;
    font-size: 1rem;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: transparent;
    padding-left: 16px;
    display: none;
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }

  .hero-card {
    flex-direction: column-reverse;
  }

  .hero-card-image {
    flex: 0 0 200px;
    height: 200px;
  }

  .hero-buttons-stack {
    gap: 12px;
  }

  .about-hero-v2 {
    padding: 100px 20px 60px;
    min-height: auto;
  }

  .about-hero-v2-title {
    font-size: 2rem;
  }

  .values-grid-v2 {
    grid-template-columns: 1fr;
  }

  .floating-orb {
    opacity: 0.3;
    transform: scale(0.6);
  }

  .page-orbs-container {
    display: none;
  }

  .cta-content {
    padding: 0 20px;
  }

  .cta-subtitle {
    font-size: 1rem;
  }

  table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

}

@media (max-height: 500px) and (orientation: landscape) {
  .hero-apple {
    min-height: auto;
    padding: 60px 20px 40px;
  }

  .hero-card {
    flex-direction: row;
  }

  .hero-card-image {
    flex: 0 0 40%;
    height: auto;
  }

  .res-hero {
    min-height: 300px;
    padding: 80px 20px 40px;
  }
}

@media (hover: none) and (pointer: coarse) {
  
  .btn-primary-glow,
  .btn-outline-light,
  .hero-btn-simple,
  .faq-question {
    min-height: 48px;
    box-sizing: border-box;
  }

  a, button {
    -webkit-tap-highlight-color: rgba(0, 151, 178, 0.2);
  }
}

@media print {
  .navbar,
  .footer,
  .floating-orb,
  .page-orbs-container,
  .cta-section {
    display: none !important;
  }

  body {
    background: white !important;
    color: black !important;
  }

  a {
    color: black !important;
    text-decoration: underline;
  }
}

/* ════════════════════════════════════════════════════════════════════════════════
   CONTACT PAGE
   ════════════════════════════════════════════════════════════════════════════════ */

.contact-page-v2 {
  min-height: 100vh;
  background: linear-gradient(180deg, #0a0f14 0%, #0d1117 50%, #0a0f14 100%);
}

[data-theme="light"] .contact-page-v2 {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 50%, #f8fafc 100%);
}

.contact-hero-v2 {
  position: relative;
  padding: 120px 24px 80px;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(160deg, #0a0a0f 0%, #0f1419 40%, #0d1020 100%);
}

[data-theme="light"] .contact-hero-v2 {
  background: linear-gradient(160deg, #f8fafc 0%, #eff6ff 40%, #f1f5f9 100%);
}

.contact-hero-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 20%;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(to bottom,
    transparent 0%,
    rgba(10,15,20,0.08) 15%,
    rgba(10,15,20,0.25) 30%,
    rgba(10,15,20,0.50) 45%,
    rgba(10,15,20,0.75) 60%,
    rgba(10,15,20,0.92) 75%,
    #0a0f14 90%,
    #0a0f14 100%);
}

[data-theme="light"] .contact-hero-fade {
  background: linear-gradient(to bottom,
    transparent 0%,
    rgba(248,250,252,0.08) 15%,
    rgba(248,250,252,0.25) 30%,
    rgba(248,250,252,0.50) 45%,
    rgba(248,250,252,0.75) 60%,
    rgba(248,250,252,0.92) 75%,
    #f8fafc 90%,
    #f8fafc 100%);
}

.contact-hero-v2-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.contact-hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(139, 92, 246, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 92, 246, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 75%);
}

[data-theme="light"] .contact-hero-grid-pattern {
  background-image:
    linear-gradient(rgba(0, 151, 178, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 151, 178, 0.06) 1px, transparent 1px);
}

.contact-hero-v2-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 30% 35%, rgba(0, 151, 178, 0.16) 0%, transparent 55%),
    radial-gradient(ellipse 55% 50% at 70% 65%, rgba(139, 92, 246, 0.14) 0%, transparent 50%),
    radial-gradient(ellipse 45% 40% at 50% 50%, rgba(99, 102, 241, 0.06) 0%, transparent 60%);
  animation: contactMeshFloat 20s ease-in-out infinite;
}

[data-theme="light"] .contact-hero-v2-bg::before {
  background:
    radial-gradient(ellipse 70% 55% at 30% 35%, rgba(0, 151, 178, 0.1) 0%, transparent 55%),
    radial-gradient(ellipse 55% 50% at 70% 65%, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse 45% 40% at 50% 50%, rgba(0, 151, 178, 0.04) 0%, transparent 60%);
}

@keyframes contactMeshFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(1%, -1.5%) scale(1.01); }
  66% { transform: translate(-1.5%, 1%) scale(1); }
}

.contact-hero-v2-bg::after {
  display: none;
}

[data-theme="light"] .contact-hero-v2-bg::after {
  display: none;
}

.contact-hero-v2-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.contact-hero-v2 .hero-breadcrumb {
  margin-bottom: 32px;
}

.contact-hero-v2-title {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 16px;
  line-height: 1.15;
}

[data-theme="light"] .contact-hero-v2-title {
  color: #1e293b;
}

.contact-hero-v2-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

[data-theme="light"] .contact-hero-v2-subtitle {
  color: #64748b;
}

.contact-main-v2 {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 24px 100px;
}

.contact-grid-v2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

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

.contact-option-v2 {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 40px;
  transition: all 0.4s ease;
}

[data-theme="light"] .contact-option-v2 {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
}

.contact-option-v2:hover {
  border-color: rgba(139, 92, 246, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(139, 92, 246, 0.1);
}

[data-theme="light"] .contact-option-v2:hover {
  border-color: rgba(0, 151, 178, 0.3);
  box-shadow: 0 20px 50px rgba(0, 151, 178, 0.12);
}

.contact-option-icon-v2 {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.25);
  border-radius: 16px;
  margin-bottom: 24px;
}

[data-theme="light"] .contact-option-icon-v2 {
  background: rgba(0, 151, 178, 0.1);
  border: 1px solid rgba(0, 151, 178, 0.25);
}

.contact-option-icon-v2 svg {
  width: 28px;
  height: 28px;
  color: #a78bfa;
}

[data-theme="light"] .contact-option-icon-v2 svg {
  color: #0097b2;
}

.contact-option-title-v2 {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 12px;
}

[data-theme="light"] .contact-option-title-v2 {
  color: #1e293b;
}

.contact-option-desc-v2 {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin: 0 0 28px;
}

[data-theme="light"] .contact-option-desc-v2 {
  color: #64748b;
}

.calendar-placeholder-v2 {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 60px 40px;
  text-align: center;
}

[data-theme="light"] .calendar-placeholder-v2 {
  background: rgba(0, 151, 178, 0.04);
  border: 1px solid rgba(0, 151, 178, 0.15);
}

.calendar-placeholder-v2 svg {
  width: 48px;
  height: 48px;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 16px;
}

[data-theme="light"] .calendar-placeholder-v2 svg {
  color: #94a3b8;
}

.calendar-placeholder-v2 p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

[data-theme="light"] .calendar-placeholder-v2 p {
  color: #64748b;
}

.contact-form-v2 {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row-v2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 600px) {
  .form-row-v2 {
    grid-template-columns: 1fr;
  }
}

.form-group-v2 {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group-v2 label {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
}

[data-theme="light"] .form-group-v2 label {
  color: #475569;
}

.form-group-v2 label .required {
  color: #f87171;
}

.form-group-v2 input,
.form-group-v2 select,
.form-group-v2 textarea {
  padding: 14px 16px;
  font-size: 0.95rem;
  font-family: var(--ff-body);
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  outline: none;
  transition: all 0.3s ease;
}

[data-theme="light"] .form-group-v2 input,
[data-theme="light"] .form-group-v2 select,
[data-theme="light"] .form-group-v2 textarea {
  color: #1e293b;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.12);
}

.form-group-v2 input::placeholder,
.form-group-v2 textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

[data-theme="light"] .form-group-v2 input::placeholder,
[data-theme="light"] .form-group-v2 textarea::placeholder {
  color: #94a3b8;
}

.form-group-v2 input:focus,
.form-group-v2 select:focus,
.form-group-v2 textarea:focus {
  border-color: #8b5cf6;
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15);
}

[data-theme="light"] .form-group-v2 input:focus,
[data-theme="light"] .form-group-v2 select:focus,
[data-theme="light"] .form-group-v2 textarea:focus {
  border-color: #0097b2;
  box-shadow: 0 0 0 3px rgba(0, 151, 178, 0.15);
}

.form-group-v2 select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 44px;
}

.form-group-v2 textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit-v2 {
  margin-top: 8px;
}

.form-submit-v2 button {
  width: 100%;
  padding: 16px 32px;
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #0097b2 0%, #0085a0 50%, #007a94 100%);
  border: 1.5px solid rgba(0, 151, 178, 0.6);
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

[data-theme="dark"] .form-submit-v2 button {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.18) 0%, rgba(167, 139, 250, 0.12) 50%, rgba(124, 58, 237, 0.08) 100%);
  border: 1.5px solid rgba(167, 139, 250, 0.35);
  color: #e2e8f0;
}

.form-submit-v2 button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 151, 178, 0.35);
  background: linear-gradient(135deg, #00a8c6 0%, #0097b2 50%, #0085a0 100%);
}

[data-theme="dark"] .form-submit-v2 button:hover {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.3) 0%, rgba(167, 139, 250, 0.2) 50%, rgba(124, 58, 237, 0.15) 100%);
  border-color: rgba(167, 139, 250, 0.6);
  box-shadow: 0 12px 30px rgba(139, 92, 246, 0.35);
}

.form-note-v2 {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px;
  background: rgba(139, 92, 246, 0.08);
  border-radius: 12px;
  margin-top: 8px;
}

[data-theme="light"] .form-note-v2 {
  background: rgba(0, 151, 178, 0.08);
}

.form-note-v2 span {
  font-size: 1.2rem;
}

.form-note-v2 p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  line-height: 1.5;
}

[data-theme="light"] .form-note-v2 p {
  color: #64748b;
}

.thank-you-message {
  display: none;
  text-align: center;
  padding: 60px 40px;
}

.thank-you-message.show {
  display: block;
}

.thank-you-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(34, 197, 94, 0.15);
  border-radius: 50%;
  margin: 0 auto 24px;
}

.thank-you-icon svg {
  width: 40px;
  height: 40px;
  color: #22c55e;
}

.thank-you-message h3 {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 12px;
}

[data-theme="light"] .thank-you-message h3 {
  color: #1e293b;
}

.thank-you-message p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  line-height: 1.7;
}

[data-theme="light"] .thank-you-message p {
  color: #64748b;
}

.discovery-call-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.discovery-call-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.discovery-feature {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 50px;
  font-size: 0.85rem;
  color: #a78bfa;
}

[data-theme="light"] .discovery-feature {
  background: rgba(0, 151, 178, 0.1);
  border-color: rgba(0, 151, 178, 0.2);
  color: #0097b2;
}

.discovery-feature svg {
  width: 16px;
  height: 16px;
}

.discovery-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  margin-top: 16px;
  width: 100%;
  max-width: 100%;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  box-sizing: border-box;
}

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

.form-submit-v2 .btn-primary-glow {
  width: 100%;
  padding: 14px 24px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
}

/* ════════════════════════════════════════════════════════════════════════════════
   404 PAGE
   ════════════════════════════════════════════════════════════════════════════════ */

.error-content-section {
  padding: 80px 5%;
  text-align: center;
}

.error-message {
  color: var(--text-secondary);
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.error-cta-btn {
  display: inline-block;
  padding: 14px 32px;
  background: var(--accent-color);
  color: #fff;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.error-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 151, 178, 0.3);
}

[data-theme="dark"] .error-cta-btn:hover {
  box-shadow: 0 8px 25px rgba(183, 148, 246, 0.3);
}

/* ──────────────────────────────────────────────────────────────
   UTILITY CLASSES
   ────────────────────────────────────────────────────────────── */

.emoji-icon {
  font-size: 2rem;
}

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

.mt-2 {
  margin-top: 2rem;
}

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

/* ════════════════════════════════════════════════════════════════════════════════
   CONTACT PAGE — Intro Copy Centering
   ════════════════════════════════════════════════════════════════════════════════ */

.contact-intro-copy {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
  font-size: 1.08rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.6);
}

[data-theme="light"] .contact-intro-copy {
  color: #64748b;
}

/* ════════════════════════════════════════════════════════════════════════════════
   RESOURCES PAGE — Full-page ambient orbs (visible across all sections)
   ════════════════════════════════════════════════════════════════════════════════ */

.res-page {
  position: relative;
}

.res-page .res-section {
  background: transparent !important;
}

.res-page .res-section::after {
  display: none !important;
}

.res-ambient-orbs {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.res-ambient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: floatOrb 22s ease-in-out infinite;
}

[data-theme="light"] .res-ambient-orb {
  opacity: 0.22;
  filter: blur(100px);
}

.res-amb-1 {
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, #8b5cf6, #c084fc);
  top: 2%;
  right: -8%;
  animation-delay: 0s;
}

.res-amb-2 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, #7c3aed, #a78bfa);
  top: 0%;
  left: -5%;
  animation-delay: -4s;
}

.res-amb-3 {
  width: 550px;
  height: 550px;
  background: linear-gradient(135deg, #6d28d9, #8b5cf6);
  top: 25%;
  left: -12%;
  animation-delay: -7s;
}

.res-amb-4 {
  width: 420px;
  height: 420px;
  background: linear-gradient(135deg, #c084fc, #e879f9);
  top: 35%;
  right: -6%;
  animation-delay: -11s;
}

.res-amb-5 {
  width: 480px;
  height: 480px;
  background: linear-gradient(135deg, #a855f7, #c084fc);
  top: 55%;
  left: 5%;
  animation-delay: -14s;
}

.res-amb-6 {
  width: 380px;
  height: 380px;
  background: linear-gradient(135deg, #7c3aed, #a78bfa);
  top: 60%;
  right: 8%;
  animation-delay: -17s;
}

.res-amb-7 {
  width: 450px;
  height: 450px;
  background: linear-gradient(135deg, #8b5cf6, #e879f9);
  top: 78%;
  left: -10%;
  animation-delay: -20s;
}

.res-amb-8 {
  width: 520px;
  height: 520px;
  background: linear-gradient(135deg, #6d28d9, #c084fc);
  top: 82%;
  right: -5%;
  animation-delay: -3s;
}

[data-theme="light"] .res-amb-1 { background: linear-gradient(135deg, #0097b2, #00d4ff); }
[data-theme="light"] .res-amb-2 { background: linear-gradient(135deg, #06b6d4, #0097b2); }
[data-theme="light"] .res-amb-3 { background: linear-gradient(135deg, #0e7490, #06b6d4); }
[data-theme="light"] .res-amb-4 { background: linear-gradient(135deg, #00d4ff, #38bdf8); }
[data-theme="light"] .res-amb-5 { background: linear-gradient(135deg, #0097b2, #06b6d4); }
[data-theme="light"] .res-amb-6 { background: linear-gradient(135deg, #06b6d4, #00d4ff); }
[data-theme="light"] .res-amb-7 { background: linear-gradient(135deg, #0e7490, #0097b2); }
[data-theme="light"] .res-amb-8 { background: linear-gradient(135deg, #0097b2, #38bdf8); }

/* ════════════════════════════════════════════════════════════════════════════════
   SERVICES — Stronger section-transition shadows on difference sections
   ════════════════════════════════════════════════════════════════════════════════ */

.difference-section::after {
  box-shadow:
    inset 0 180px 140px -50px rgba(0, 0, 0, 0.95),
    inset 0 -180px 140px -50px rgba(0, 0, 0, 0.95) !important;
}

[data-theme="light"] .difference-section::after {
  box-shadow:
    inset 0 200px 160px -40px rgba(255, 255, 255, 1),
    inset 0 -200px 160px -40px rgba(255, 255, 255, 1) !important;
}

/* ════════════════════════════════════════════════════════════════════════════════
   ABOUT PAGE — Softer section shadows (avoids green-tinted look)
   ════════════════════════════════════════════════════════════════════════════════ */

main > section.about-story-section::after,
main > section.about-approach-section-v2::after,
main > section.about-leadership-section::after,
main > section.about-values-section-v2::after {
  box-shadow:
    inset 0 80px 70px -40px rgba(0, 0, 0, 0.35),
    inset 0 -80px 70px -40px rgba(0, 0, 0, 0.35) !important;
}

[data-theme="light"] main > section.about-story-section::after,
[data-theme="light"] main > section.about-approach-section-v2::after,
[data-theme="light"] main > section.about-leadership-section::after,
[data-theme="light"] main > section.about-values-section-v2::after {
  box-shadow:
    inset 0 80px 70px -40px rgba(255, 255, 255, 0.6),
    inset 0 -80px 70px -40px rgba(255, 255, 255, 0.6) !important;
}