:root {
  --primary: #3b1e72;
  --secondary: #4c2a85;
  --primary-dark: #241044;
  --primary-soft: #f1ecfb;
  --accent: #d4a017;
  --accent-dark: #9d7410;
  --teal: #6d4bb0;
  --ink: #1f2937;
  --muted: #626878;
  --line: #e9e2f4;
  --surface: #ffffff;
  --surface-soft: #f8f9fc;
  --glass: rgba(255, 255, 255, 0.15);
  --glass-strong: rgba(255, 255, 255, 0.24);
  --shadow-sm: 0 12px 30px rgba(59, 30, 114, 0.09);
  --shadow-md: 0 20px 55px rgba(59, 30, 114, 0.16);
  --shadow-glow: 0 0 34px rgba(212, 160, 23, 0.36);
  --radius: 8px;
  --container: 1180px;
  --header-height: 78px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  font-family: "Open Sans", Arial, sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.65;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(212, 160, 23, 0.72);
  outline-offset: 3px;
}

::selection {
  color: #ffffff;
  background: var(--accent);
}

.skip-link {
  position: absolute;
  top: -120px;
  left: 16px;
  z-index: 2000;
  padding: 10px 14px;
  color: #ffffff;
  background: var(--primary);
  border-radius: var(--radius);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.section-pad {
  position: relative;
  padding: 86px 0;
  overflow: hidden;
}

.section-pad::before {
  position: absolute;
  top: -38px;
  left: -5%;
  width: 110%;
  height: 76px;
  content: "";
  border-bottom: 2px solid rgba(212, 160, 23, 0.42);
  border-radius: 0 0 50% 50%;
  pointer-events: none;
}

.section-soft {
  background:
    linear-gradient(135deg, rgba(59, 30, 114, 0.06), rgba(212, 160, 23, 0.07)),
    var(--surface-soft);
}

.section-dark {
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(36, 16, 68, 0.98), rgba(59, 30, 114, 0.95)),
    var(--primary-dark);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Poppins", Arial, sans-serif;
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  font-size: 3.75rem;
  font-weight: 800;
}

h2 {
  font-size: 2.5rem;
  font-weight: 800;
}

h3 {
  font-size: 1.1rem;
  font-weight: 700;
}

p {
  margin: 0;
  color: var(--muted);
}

.section-dark p,
.section-heading-light p {
  color: rgba(255, 255, 255, 0.76);
}

.section-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.section-kicker::before,
.eyebrow::before {
  width: 28px;
  height: 2px;
  content: "";
  background: var(--accent);
}

.section-heading {
  width: min(720px, 100%);
  margin: 0 auto 44px;
  text-align: center;
}

.section-heading p:last-child {
  margin-top: 14px;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 20px;
  overflow: hidden;
  color: #ffffff;
  font-weight: 800;
  border: 0;
  border-radius: var(--radius);
  transform: translateY(0);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.btn::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  transform: translateX(-120%);
  transition: transform 0.55s ease;
}

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

.btn:hover::after {
  transform: translateX(120%);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: 0 16px 34px rgba(59, 30, 114, 0.34);
}

.btn-primary:hover {
  color: #ffffff;
  box-shadow: var(--shadow-glow);
}

.btn-secondary {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(16px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 40px rgba(212, 160, 23, 0.24);
}

.hero .hero-actions .btn-primary,
.final-cta .hero-actions .btn-primary {
  background: #3b1e72;
  border: 1px solid rgba(212, 160, 23, 0.52);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22), 0 0 20px rgba(212, 160, 23, 0.14);
}

.hero .hero-actions .btn-primary:hover,
.final-cta .hero-actions .btn-primary:hover {
  background: #4c2a85;
  border-color: rgba(212, 160, 23, 0.82);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.26), 0 0 28px rgba(212, 160, 23, 0.28);
  transform: translateY(-3px);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 12px 32px rgba(59, 30, 114, 0.08);
  backdrop-filter: blur(18px);
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.scrolled,
.site-header.menu-active {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 16px 40px rgba(59, 30, 114, 0.12);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 11px;
  color: var(--primary);
}

.brand-logo-link {
  min-width: 78px;
}

.brand-logo {
  display: block;
  width: auto;
  height: clamp(50px, 5vw, 64px);
  max-width: 165px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(59, 30, 114, 0.14));
  transition: transform 0.24s ease, filter 0.24s ease;
}

.brand-logo-link:hover .brand-logo {
  filter: drop-shadow(0 14px 24px rgba(59, 30, 114, 0.22));
  transform: translateY(-1px);
}

.site-header.scrolled .brand,
.site-header.menu-active .brand {
  color: var(--ink);
}

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: #ffffff;
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: var(--radius);
  box-shadow: 0 14px 30px rgba(59, 30, 114, 0.28);
}

.brand-text {
  display: grid;
  line-height: 1.05;
}

.brand-text strong {
  font-family: "Poppins", Arial, sans-serif;
  font-size: 1rem;
  letter-spacing: 0;
}

.brand-text small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-header.scrolled .brand-text small,
.site-header.menu-active .brand-text small {
  color: var(--muted);
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  color: var(--primary);
  font-size: 0.94rem;
  font-weight: 800;
}

.site-header.scrolled .nav-menu,
.site-header.menu-active .nav-menu {
  color: var(--primary);
}

.nav-menu a {
  position: relative;
  padding: 8px 0;
  transition: color 0.22s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--secondary);
}

.nav-menu a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  content: "";
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

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

.btn-nav {
  min-height: 42px;
  padding: 10px 16px;
  font-size: 0.9rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border: 1px solid rgba(212, 160, 23, 0.3);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 10px;
  background: var(--primary-soft);
  border: 1px solid rgba(59, 30, 114, 0.14);
  border-radius: var(--radius);
}

.site-header.scrolled .nav-toggle,
.site-header.menu-active .nav-toggle {
  background: #ffffff;
  border-color: var(--line);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px 0;
  background: var(--primary);
  border-radius: 99px;
  transition: transform 0.25s ease, opacity 0.25s ease, background 0.25s ease;
}

.site-header.scrolled .nav-toggle span,
.site-header.menu-active .nav-toggle span {
  background: var(--primary);
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 92svh;
  padding: 128px 0 74px;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -3;
  content: "";
  background:
    linear-gradient(135deg, rgba(36, 16, 68, 0.92), rgba(59, 30, 114, 0.88) 48%, rgba(31, 41, 55, 0.84)),
    url("https://images.unsplash.com/photo-1519389950473-47ba0277781c?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 36%;
  z-index: -1;
  content: "";
  background: linear-gradient(0deg, rgba(36, 16, 68, 0.95), transparent);
}

.hero-bg,
.particles {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.hero-bg::before {
  position: absolute;
  right: -12%;
  bottom: -105px;
  left: -12%;
  height: 230px;
  content: "";
  background: linear-gradient(180deg, rgba(212, 160, 23, 0.2), rgba(212, 160, 23, 0.03));
  border-top: 3px solid rgba(212, 160, 23, 0.72);
  border-radius: 50% 50% 0 0;
  transform: rotate(-2deg);
}

.shape {
  position: absolute;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(135deg, rgba(212, 160, 23, 0.18), rgba(255, 255, 255, 0.08));
  transform: skewX(-12deg);
  animation: drift 10s ease-in-out infinite alternate;
}

.shape-one {
  top: 14%;
  right: 8%;
  width: 260px;
  height: 92px;
}

.shape-two {
  bottom: 18%;
  left: 4%;
  width: 220px;
  height: 68px;
  animation-delay: 1.8s;
}

.shape-three {
  top: 40%;
  left: 52%;
  width: 150px;
  height: 46px;
  animation-delay: 3s;
}

.particle {
  position: absolute;
  width: 5px;
  height: 5px;
  opacity: 0.72;
  background: rgba(255, 255, 255, 0.66);
  transform: rotate(45deg);
  animation: particleFloat var(--duration) ease-in-out infinite;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.85fr);
  align-items: center;
  gap: 56px;
}

.hero-content {
  max-width: 760px;
}

.hero h1 {
  max-width: 820px;
  min-height: 236px;
}

.typing-text {
  color: #ffffff;
  text-shadow: 0 0 28px rgba(212, 160, 23, 0.48);
}

.typing-text::after {
  display: inline-block;
  width: 2px;
  height: 0.88em;
  margin-left: 6px;
  vertical-align: -0.08em;
  content: "";
  background: var(--accent);
  animation: blink 0.9s steps(2, start) infinite;
}

.hero-subtitle {
  max-width: 620px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 640px;
  margin-top: 34px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 14px;
  color: #ffffff;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(212, 160, 23, 0.24);
  border-radius: var(--radius);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(16px);
}

.trust-badge i {
  color: var(--accent);
}

.hero-visual {
  position: relative;
  min-height: 520px;
}

.hero-image-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
  transform: perspective(1000px) rotateY(-4deg) rotateX(2deg);
}

.hero-image-shell::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, transparent 35%, rgba(36, 16, 68, 0.78)),
    linear-gradient(120deg, rgba(212, 160, 23, 0.26), transparent 42%);
}

.tools-computer {
  height: 520px;
  background:
    radial-gradient(circle at 22% 24%, rgba(212, 160, 23, 0.24), transparent 28%),
    radial-gradient(circle at 78% 18%, rgba(109, 75, 176, 0.3), transparent 30%),
    linear-gradient(145deg, rgba(36, 16, 68, 0.94), rgba(59, 30, 114, 0.78));
}

.tools-computer::before {
  position: absolute;
  inset: 18px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 34px 34px;
  animation: gridMove 12s linear infinite;
}

.tools-computer::after {
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 30%),
    radial-gradient(circle at 50% 48%, rgba(212, 160, 23, 0.2), transparent 34%),
    linear-gradient(180deg, transparent, rgba(36, 16, 68, 0.74));
  pointer-events: none;
}

.computer-stage {
  position: relative;
  z-index: 1;
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  padding: 42px 34px 70px;
}

.monitor {
  position: relative;
  z-index: 3;
  width: min(78%, 430px);
  min-width: 310px;
  padding: 10px;
  background: linear-gradient(145deg, #f7f0d4, #8b76b9 45%, var(--primary-dark));
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 14px;
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.46),
    0 0 44px rgba(212, 160, 23, 0.18);
  animation: monitorFloat 5.2s ease-in-out infinite;
}

.monitor::before {
  position: absolute;
  inset: -2px;
  z-index: -1;
  content: "";
  background: linear-gradient(120deg, rgba(212, 160, 23, 0.72), rgba(76, 42, 133, 0.66), rgba(59, 30, 114, 0.72));
  border-radius: 16px;
  opacity: 0.42;
  filter: blur(18px);
  animation: glowPulse 3.8s ease-in-out infinite;
}

.monitor-topbar {
  display: flex;
  gap: 7px;
  padding: 6px 8px 10px;
}

.monitor-topbar span {
  width: 9px;
  height: 9px;
  background: rgba(255, 255, 255, 0.82);
  border-radius: 50%;
}

.monitor-topbar span:nth-child(1) {
  background: var(--accent);
}

.monitor-topbar span:nth-child(2) {
  background: #facc15;
}

.monitor-topbar span:nth-child(3) {
  background: var(--secondary);
}

.monitor-screen {
  position: relative;
  min-height: 245px;
  padding: 28px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(36, 16, 68, 0.96), rgba(59, 30, 114, 0.88)),
    var(--primary-dark);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
}

.monitor-screen::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(110deg, transparent 15%, rgba(255, 255, 255, 0.13), transparent 45%);
  transform: translateX(-120%);
  animation: screenShine 4.6s ease-in-out infinite;
}

.screen-glow {
  position: absolute;
  inset: 18% 14%;
  background: radial-gradient(circle, rgba(212, 160, 23, 0.26), transparent 62%);
  filter: blur(10px);
  animation: glowPulse 4.2s ease-in-out infinite;
}

.monitor-screen p {
  position: relative;
  z-index: 1;
  margin-bottom: 22px;
  color: #ffffff;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  text-align: center;
}

.screen-logo-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.screen-logo-grid span {
  --chip-bg: #4c2a85;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 42px;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 800;
  background: var(--chip-bg);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
  animation: chipPulse 3.2s ease-in-out infinite;
}

.screen-logo-grid span:nth-child(2n) {
  animation-delay: 0.7s;
}

.screen-logo-grid span:nth-child(3n) {
  animation-delay: 1.3s;
}

.screen-logo-grid i {
  color: #ffffff;
  font-size: 1.05rem;
}

.computer-base {
  position: relative;
  z-index: 2;
  width: 220px;
  height: 78px;
  margin-top: -2px;
}

.computer-base::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 74px;
  height: 54px;
  content: "";
  background: linear-gradient(180deg, #8b76b9, var(--primary-dark));
  clip-path: polygon(18% 0, 82% 0, 100% 100%, 0 100%);
  transform: translateX(-50%);
}

.computer-base span {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 18px;
  background: linear-gradient(90deg, #6d4bb0, #f7f0d4, #4c2a85);
  border-radius: 999px;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.32);
}

.tool-orbit {
  position: absolute;
  inset: 30px;
  z-index: 4;
  pointer-events: none;
}

.tool-orbit::before {
  position: absolute;
  inset: 18px;
  content: "";
  border: 1px dashed rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  animation: orbitSpin 18s linear infinite;
}

.orbit-two::before {
  inset: 56px;
  border-color: rgba(212, 160, 23, 0.26);
  animation-direction: reverse;
  animation-duration: 24s;
}

.tool-bubble {
  --chip-bg: #4c2a85;
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 84px;
  min-height: 42px;
  padding: 9px 11px;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
  background: var(--chip-bg);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
  animation: logoFloat 4.4s ease-in-out infinite;
}

.tool-bubble i {
  color: #ffffff;
  font-size: 1rem;
}

.tool-bubble b {
  font: inherit;
}

.tool-1 { top: 5%; left: 8%; animation-delay: 0s; }
.tool-2 { top: 0; left: 45%; animation-delay: 0.35s; }
.tool-3 { top: 10%; right: 4%; animation-delay: 0.7s; }
.tool-4 { right: 0; bottom: 32%; animation-delay: 1.05s; }
.tool-5 { right: 12%; bottom: 6%; animation-delay: 1.4s; }
.tool-6 { bottom: 2%; left: 18%; animation-delay: 1.75s; }
.tool-7 { top: 24%; left: 0; animation-delay: 2.1s; }
.tool-8 { top: 42%; right: 9%; animation-delay: 2.45s; }
.tool-9 { bottom: 24%; left: 2%; animation-delay: 2.8s; }
.tool-10 { top: 28%; right: 0; animation-delay: 3.15s; }
.tool-11 { bottom: 13%; right: 33%; animation-delay: 3.5s; }
.tool-12 { top: 53%; left: 10%; animation-delay: 3.85s; }

.hero-image-shell img {
  height: 520px;
  object-fit: cover;
}

.hero-stat {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  padding: 14px 16px;
  color: #ffffff;
  background: rgba(36, 16, 68, 0.78);
  border: 1px solid rgba(212, 160, 23, 0.26);
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
}

.hero-stat strong,
.hero-stat span {
  display: block;
}

.hero-stat span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.84rem;
}

.floating-panel {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 230px;
  padding: 13px 16px;
  color: #ffffff;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
  animation: floatPanel 4.5s ease-in-out infinite;
}

.floating-panel i {
  color: var(--accent);
}

.panel-top {
  top: 42px;
  left: -34px;
}

.panel-bottom {
  right: -22px;
  bottom: 88px;
  animation-delay: 1.5s;
}

.scroll-indicator {
  position: absolute;
  bottom: 24px;
  left: 50%;
  display: grid;
  width: 28px;
  height: 46px;
  place-items: start center;
  border: 2px solid rgba(255, 255, 255, 0.42);
  border-radius: 99px;
  transform: translateX(-50%);
}

.scroll-indicator span {
  width: 4px;
  height: 9px;
  margin-top: 8px;
  background: #ffffff;
  border-radius: 99px;
  animation: scrollPulse 1.4s ease-in-out infinite;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(290px, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: 60px;
}

.about-media {
  position: relative;
}

.about-media::before {
  position: absolute;
  inset: 22px -16px -18px 18px;
  z-index: -1;
  content: "";
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: var(--radius);
}

.about-media img {
  height: 560px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.experience-card {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 170px;
  padding: 16px;
  color: #ffffff;
  background: rgba(36, 16, 68, 0.84);
  border: 1px solid rgba(212, 160, 23, 0.24);
  border-radius: var(--radius);
  backdrop-filter: blur(16px);
}

.experience-card strong {
  display: block;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 2.35rem;
  line-height: 1;
}

.experience-card span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
}

.about-content > p {
  margin-top: 18px;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0;
}

.feature-list div {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 14px;
  color: var(--ink);
  font-weight: 800;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.feature-list i {
  display: grid;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  place-items: center;
  color: #ffffff;
  font-size: 0.78rem;
  background: var(--primary);
  border-radius: 8px;
}

blockquote {
  margin: 0 0 28px;
  padding: 18px 20px;
  color: var(--primary);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  background: linear-gradient(135deg, rgba(59, 30, 114, 0.08), rgba(212, 160, 23, 0.12));
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.counter-card {
  position: relative;
  padding: 18px 12px;
  overflow: hidden;
  text-align: center;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.counter-card::before {
  position: absolute;
  top: 0;
  right: 18px;
  left: 18px;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.counter-card strong {
  display: block;
  color: var(--primary);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 2rem;
  line-height: 1;
}

.counter-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.course-showcase {
  max-width: 780px;
  margin: -16px auto 36px;
  text-align: center;
}

.courses {
  position: relative;
}

.courses::before {
  position: absolute;
  inset: 26px max(18px, calc((100% - var(--container)) / 2)) auto;
  height: 5px;
  content: "";
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(212, 160, 23, 0.95), transparent);
  border-radius: 999px;
  opacity: 0;
  transform: scaleX(0.38);
}

.courses.section-arrival-highlight::before {
  animation: sectionArrivalGlow 1.45s ease both;
}

.course-showcase p {
  position: relative;
  display: inline-block;
  color: var(--primary);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 1.42rem;
  font-weight: 800;
}

.course-showcase p::after {
  position: absolute;
  right: 12%;
  bottom: -9px;
  left: 12%;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  border-radius: 999px;
  transform: scaleX(0.72);
  animation: underlineGlow 2.8s ease-in-out infinite;
}

.course-showcase-labels {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.course-showcase-labels span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 15px;
  color: var(--primary);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(243, 238, 255, 0.88));
  border: 1px solid rgba(59, 30, 114, 0.14);
  border-radius: 999px;
  box-shadow: 0 12px 26px rgba(59, 30, 114, 0.08);
}

.course-showcase-labels i {
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(212, 160, 23, 0.5);
}

.course-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  grid-auto-rows: 1fr;
  gap: 18px;
  align-items: stretch;
}

.course-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 288px;
  padding: 25px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(243, 238, 255, 0.82)),
    #ffffff;
  border: 1px solid rgba(59, 30, 114, 0.14);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(59, 30, 114, 0.11);
  backdrop-filter: blur(18px);
  transition: opacity 0.28s ease, transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.course-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(135deg, rgba(59, 30, 114, 0.06), transparent 44%),
    linear-gradient(315deg, rgba(212, 160, 23, 0.1), transparent 48%);
  opacity: 0;
  transition: opacity 0.28s ease;
}

.course-card::after {
  position: absolute;
  top: 0;
  right: 18px;
  left: 18px;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.course-card:hover {
  border-color: rgba(212, 160, 23, 0.58);
  box-shadow: 0 24px 58px rgba(59, 30, 114, 0.14), 0 0 30px rgba(212, 160, 23, 0.2);
  transform: translateY(-7px);
}

.course-card:hover::before,
.course-card:hover::after {
  opacity: 1;
}

.course-card:hover::after {
  transform: scaleX(1);
}

.course-card > * {
  position: relative;
  z-index: 1;
}

.course-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: var(--primary);
  font-size: 1.25rem;
  background: #f3eeff;
  border: 1px solid rgba(59, 30, 114, 0.14);
  border-radius: var(--radius);
  box-shadow: 0 12px 24px rgba(59, 30, 114, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.course-card:hover .course-icon {
  color: var(--primary);
  box-shadow: 0 14px 30px rgba(59, 30, 114, 0.16), 0 0 24px rgba(212, 160, 23, 0.24);
  transform: translateY(-3px) rotate(-3deg);
}

.course-card h3 {
  min-height: 58px;
  margin-top: 18px;
  color: var(--primary-dark);
  font-size: 1.08rem;
}

.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 16px;
}

.skill-tags span {
  padding: 6px 9px;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 800;
  background: rgba(59, 30, 114, 0.08);
  border: 1px solid rgba(59, 30, 114, 0.08);
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.skill-tags span:hover {
  color: #ffffff;
  background: var(--primary);
  transform: translateY(-2px);
}

.learn-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: auto;
  padding: 20px 0 3px;
  color: var(--primary);
  font-weight: 800;
  border-bottom: 2px solid rgba(212, 160, 23, 0);
  transition: color 0.22s ease, border-color 0.22s ease;
}

.learn-link:hover {
  color: var(--primary-dark);
  border-color: var(--accent);
}

.learn-link i {
  color: var(--accent);
  transition: transform 0.2s ease;
}

.learn-link:hover i {
  transform: translateX(4px);
}

.why {
  position: relative;
  overflow: hidden;
}

.why::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 78%, transparent);
}

.why-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.why-card {
  position: relative;
  padding: 26px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.07));
  border: 1px solid rgba(212, 160, 23, 0.2);
  border-radius: var(--radius);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(14px);
  transition: transform 0.25s ease, background 0.25s ease;
}

.why-card::after {
  position: absolute;
  top: 0;
  right: 18px;
  left: 18px;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.55;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.why-card:hover {
  background: linear-gradient(145deg, rgba(212, 160, 23, 0.18), rgba(255, 255, 255, 0.1));
  transform: translateY(-8px);
}

.why-card:hover::after {
  opacity: 1;
  transform: scaleX(1.08);
}

.why-card i {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  margin-bottom: 18px;
  color: #ffffff;
  font-size: 1.18rem;
  background: var(--primary);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
}

.why-card p {
  margin-top: 12px;
}

.google-review-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: -16px 0 30px;
  padding: 18px;
  background: #ffffff;
  border: 1px solid rgba(59, 30, 114, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(59, 30, 114, 0.1);
}

.google-review-brand,
.overall-rating {
  display: flex;
  align-items: center;
  gap: 12px;
}

.google-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: #ea4335;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  background: #ffffff;
  border: 1px solid rgba(66, 133, 244, 0.18);
  border-radius: 13px;
  box-shadow: 0 12px 26px rgba(66, 133, 244, 0.16);
}

.google-map-mark {
  position: relative;
  overflow: hidden;
}

.google-map-mark::before {
  position: absolute;
  inset: 8px;
  content: "";
  background:
    linear-gradient(90deg, #4285f4 0 50%, #34a853 50% 100%);
  border-radius: 50%;
  opacity: 0.12;
}

.google-map-mark i {
  position: relative;
  z-index: 1;
  font-size: 1.45rem;
}

.google-review-brand strong,
.overall-rating strong {
  display: block;
  color: var(--primary);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 1rem;
}

.google-review-brand span:not(.google-mark),
.overall-rating span:last-child {
  display: block;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.overall-rating {
  padding: 10px 14px;
  background: #f8f7fc;
  border: 1px solid rgba(59, 30, 114, 0.1);
  border-radius: 14px;
}

.review-count-badge {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 13px;
  color: var(--primary);
  font-size: 0.86rem;
  font-weight: 800;
  white-space: nowrap;
  background: #f3eeff;
  border: 1px solid rgba(59, 30, 114, 0.12);
  border-radius: 999px;
}

.testimonial-slider {
  position: relative;
  overflow: hidden;
  padding: 8px 1px 2px;
}

.testimonial-track {
  --review-gap: 18px;
  display: flex;
  gap: var(--review-gap);
  align-items: stretch;
  transition: transform 0.5s ease;
  will-change: transform;
}

.testimonial-card {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 0 0 calc((100% - (var(--review-gap) * 2)) / 3);
  min-height: 292px;
  padding: 24px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(248, 247, 252, 0.9)),
    #ffffff;
  border: 1px solid rgba(59, 30, 114, 0.14);
  border-radius: var(--radius);
  box-shadow: 0 16px 36px rgba(59, 30, 114, 0.09);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.testimonial-card::before {
  position: absolute;
  top: 0;
  right: 22px;
  left: 22px;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.72;
}

.testimonial-card:hover {
  border-color: rgba(212, 160, 23, 0.42);
  box-shadow: 0 22px 48px rgba(59, 30, 114, 0.13), 0 0 22px rgba(212, 160, 23, 0.14);
  transform: translateY(-6px);
}

.review-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.review-avatar {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  flex: 0 0 auto;
  color: #ffffff;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
  background: #4c2a85;
  border-radius: 50%;
  box-shadow: 0 12px 24px rgba(59, 30, 114, 0.16);
}

.testimonial-card:nth-child(2n) .review-avatar { background: #2563eb; }
.testimonial-card:nth-child(3n) .review-avatar { background: #16a34a; }
.testimonial-card:nth-child(4n) .review-avatar { background: #f97316; }
.testimonial-card:nth-child(5n) .review-avatar { background: #7c3aed; }

.review-card-header h3 {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.2;
}

.review-source {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
}

.review-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.review-stars {
  color: #d4a017;
  font-size: 0.96rem;
  letter-spacing: 1px;
  white-space: nowrap;
}

.testimonial-card p {
  color: #334155;
  font-size: 0.98rem;
  line-height: 1.75;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 24px;
}

.slider-btn {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--primary);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.slider-btn:hover {
  color: #ffffff;
  background: var(--primary);
  transform: translateY(-2px);
}

.slider-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.slider-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  background: #cbd5e1;
  border: 0;
  border-radius: 50%;
  transition: width 0.2s ease, background 0.2s ease;
}

.slider-dots button.active {
  width: 28px;
  background: var(--accent);
  border-radius: 999px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  aspect-ratio: 16 / 10;
  min-height: 260px;
  padding: 0;
  overflow: hidden;
  background: var(--primary-dark);
  border: 1px solid rgba(59, 30, 114, 0.16);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(59, 30, 114, 0.12);
  cursor: pointer;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.86;
  transition: transform 0.45s ease, opacity 0.45s ease;
}

.gallery-item::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(36, 16, 68, 0.08), rgba(36, 16, 68, 0.9));
  opacity: 0.88;
  transition: opacity 0.25s ease;
}

.gallery-overlay {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 1;
  display: grid;
  gap: 5px;
  color: #ffffff;
  text-align: left;
  transform: translateY(6px);
  transition: transform 0.25s ease;
}

.gallery-overlay strong {
  font-family: "Poppins", Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
}

.gallery-overlay small {
  max-width: 420px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 700;
}

.gallery-count {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 1;
  min-height: 32px;
  padding: 7px 11px;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 800;
  background: rgba(59, 30, 114, 0.82);
  border: 1px solid rgba(212, 160, 23, 0.42);
  border-radius: 999px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
}

.gallery-item.is-loading .gallery-count {
  color: var(--primary);
  background: rgba(255, 255, 255, 0.9);
}

.gallery-item:hover {
  border-color: rgba(212, 160, 23, 0.48);
  box-shadow: 0 24px 58px rgba(59, 30, 114, 0.18), 0 0 26px rgba(212, 160, 23, 0.14);
  transform: translateY(-5px);
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item:hover img {
  opacity: 1;
  transform: scale(1.07);
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.78fr);
  gap: 46px;
  align-items: start;
}

.contact-info > p {
  margin-top: 16px;
}

.address-stack {
  display: grid;
  gap: 14px;
  margin: 30px 0;
}

.address-stack article {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  overflow: hidden;
  padding: 18px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.address-stack article::before {
  position: absolute;
  top: 0;
  right: 18px;
  left: 18px;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.address-stack i {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #ffffff;
  background: #f97316;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
}

.address-stack p {
  margin-top: 8px;
  text-transform: capitalize;
}

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

.contact-actions a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 15px;
  color: var(--primary);
  font-weight: 800;
  background: var(--primary-soft);
  border-radius: var(--radius);
  transition: color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.contact-actions a:hover {
  color: #ffffff;
  background: var(--primary);
  transform: translateY(-2px);
}

.inquiry-form {
  position: relative;
  padding: 28px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.82)),
    #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.inquiry-form::before {
  position: absolute;
  top: 0;
  right: 28px;
  left: 28px;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.form-header {
  display: flex;
  gap: 14px;
  margin-bottom: 24px;
}

.form-header > span {
  display: grid;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  place-items: center;
  color: #ffffff;
  font-size: 1.35rem;
  background: #16a34a;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
}

.form-header p {
  margin-top: 6px;
  font-size: 0.92rem;
}

.inquiry-form label {
  display: block;
  margin: 15px 0 7px;
  color: var(--ink);
  font-weight: 800;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.inquiry-form select {
  appearance: none;
  cursor: pointer;
  padding-right: 46px;
  color: var(--primary);
  font-weight: 800;
  background-color: #fbfaff;
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10L12 15L17 10' stroke='%233B1E72' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-position: calc(100% - 16px) 50%;
  background-size: 18px 18px;
  background-repeat: no-repeat;
  border-color: rgba(59, 30, 114, 0.24);
}

.inquiry-form select:hover {
  background-color: #ffffff;
  border-color: rgba(59, 30, 114, 0.4);
  box-shadow: 0 10px 24px rgba(59, 30, 114, 0.07);
}

.inquiry-form select option {
  color: var(--ink);
  background: #ffffff;
}

.inquiry-form select option:checked {
  color: var(--primary);
  background: #f3eeff;
}

.inquiry-form textarea {
  resize: vertical;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  background: #ffffff;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(59, 30, 114, 0.08), 0 12px 28px rgba(59, 30, 114, 0.12);
  outline: 0;
}

.custom-select {
  position: relative;
  width: 100%;
}

.inquiry-form select.enhanced-select-native {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  clip-path: inset(50%);
}

.custom-select-trigger {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 50px;
  padding: 13px 46px 13px 14px;
  color: var(--primary);
  font: inherit;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
  background: #fbfaff;
  border: 1px solid rgba(59, 30, 114, 0.24);
  border-radius: var(--radius);
  box-shadow: 0 8px 18px rgba(59, 30, 114, 0.05);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.custom-select-trigger::after {
  position: absolute;
  top: 50%;
  right: 17px;
  width: 9px;
  height: 9px;
  content: "";
  border-right: 2px solid var(--primary);
  border-bottom: 2px solid var(--primary);
  transform: translateY(-62%) rotate(45deg);
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.custom-select-trigger:hover {
  background: #ffffff;
  border-color: rgba(59, 30, 114, 0.42);
  box-shadow: 0 12px 26px rgba(59, 30, 114, 0.08);
}

.custom-select.open .custom-select-trigger,
.custom-select-trigger:focus-visible {
  background: #ffffff;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(59, 30, 114, 0.08), 0 16px 34px rgba(59, 30, 114, 0.13);
  outline: 0;
}

.custom-select.open .custom-select-trigger::after {
  border-color: var(--accent);
  transform: translateY(-34%) rotate(225deg);
}

.custom-select.placeholder .custom-select-value {
  color: #6b5d82;
}

.custom-select.invalid .custom-select-trigger {
  border-color: #dc2626;
  box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.08);
}

.custom-select-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  left: 0;
  z-index: 35;
  max-height: 238px;
  padding: 7px;
  overflow-y: auto;
  background: #ffffff;
  border: 1px solid rgba(59, 30, 114, 0.14);
  border-radius: var(--radius);
  box-shadow: 0 22px 48px rgba(59, 30, 114, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px) scale(0.98);
  transform-origin: top center;
  visibility: hidden;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

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

.custom-select-option {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 40px;
  padding: 10px 12px;
  color: var(--ink);
  font: inherit;
  font-size: 0.94rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  background: transparent;
  border: 0;
  border-radius: 10px;
  transition: color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.custom-select-option:hover,
.custom-select-option:focus-visible,
.custom-select-option.is-active {
  color: var(--primary);
  background: #f3eeff;
  transform: translateX(2px);
  outline: 0;
}

.custom-select-option.is-selected {
  color: var(--primary);
  background: rgba(59, 30, 114, 0.08);
  font-weight: 800;
}

.custom-select-option.is-disabled {
  color: #8b7c9f;
  cursor: default;
  background: transparent;
  transform: none;
}

.form-submit {
  width: 100%;
  margin-top: 22px;
}

.form-status {
  min-height: 24px;
  margin-top: 12px;
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 800;
}

.map-section {
  height: 420px;
  background: var(--surface-soft);
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.final-cta {
  position: relative;
  padding: 92px 0;
  overflow: hidden;
  text-align: center;
  isolation: isolate;
}

.final-cta::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(135deg, rgba(36, 16, 68, 0.93), rgba(59, 30, 114, 0.84)),
    url("https://images.unsplash.com/photo-1522202176988-66273c2fd55f?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.final-cta::after {
  position: absolute;
  inset: 12% auto auto 50%;
  z-index: -1;
  width: 480px;
  height: 180px;
  content: "";
  background: linear-gradient(120deg, rgba(212, 160, 23, 0.24), rgba(255, 255, 255, 0.08));
  border: 1px solid rgba(212, 160, 23, 0.2);
  transform: translateX(-50%) skewX(-16deg);
  animation: drift 8s ease-in-out infinite alternate;
}

.final-cta-inner {
  display: grid;
  justify-items: center;
  max-width: 800px;
}

.final-cta h2 {
  font-size: 3rem;
}

.final-cta p:not(.section-kicker) {
  max-width: 650px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.15rem;
}

.site-footer {
  padding: 72px 0 24px;
  color: #cbd5e1;
  background: linear-gradient(135deg, var(--primary-dark), #16092f);
  border-top: 4px solid var(--accent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.72fr 0.82fr 1fr;
  gap: 34px;
}

.footer-brand {
  margin-bottom: 18px;
}

.footer-logo {
  height: clamp(54px, 5vw, 68px);
  max-width: 180px;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.3));
}

.site-footer p {
  color: #94a3b8;
}

.site-footer h3 {
  margin-bottom: 16px;
  color: #ffffff;
  font-size: 1rem;
}

.site-footer a:not(.brand):not(.btn) {
  display: block;
  margin-bottom: 9px;
  color: #cbd5e1;
  transition: color 0.2s ease, transform 0.2s ease;
}

.site-footer a:not(.brand):not(.btn):hover {
  color: var(--accent);
  transform: translateX(3px);
}

.footer-contact-line {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 10px;
  line-height: 1.35;
}

.footer-address {
  align-items: flex-start;
}

.footer-address i {
  margin-top: 2px;
}

.footer-contact-line i {
  flex: 0 0 auto;
}

.footer-contact-line a,
.footer-contact-line span {
  min-width: 0;
}

.footer-contact-line a {
  white-space: nowrap;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
}

.footer-cta {
  width: fit-content;
  min-height: 42px;
  margin-top: 18px;
  padding: 10px 14px;
  color: #ffffff;
  background: #3b1e72;
  border: 1px solid rgba(212, 160, 23, 0.52);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24), 0 0 20px rgba(212, 160, 23, 0.14);
}

.footer-cta:hover {
  background: #4c2a85;
  border-color: rgba(212, 160, 23, 0.82);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.28), 0 0 28px rgba(212, 160, 23, 0.28);
  transform: translateY(-3px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 46px;
  padding-top: 22px;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
}

.footer-credit {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.footer-credit a {
  position: relative;
  display: inline-block;
  color: #f6d47b;
  font-weight: 800;
  text-decoration: none;
  transition: color 0.22s ease, text-shadow 0.22s ease;
}

.footer-credit a::after {
  position: absolute;
  right: 0;
  bottom: -3px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.footer-credit a:hover {
  color: #ffffff;
  text-shadow: 0 0 16px rgba(212, 160, 23, 0.42);
}

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

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1500;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(15, 8, 31, 0.9);
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(18px);
  transition: opacity 0.25s ease;
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

body.lightbox-open {
  overflow: hidden;
}

.lightbox-stage {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 14px;
  width: min(1040px, 92vw);
  margin: 0;
}

.lightbox img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.lightbox img.is-changing {
  opacity: 0;
  transform: scale(0.985);
}

.lightbox figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: min(680px, 100%);
  padding: 11px 14px;
  color: #ffffff;
  background: rgba(59, 30, 114, 0.5);
  border: 1px solid rgba(212, 160, 23, 0.28);
  border-radius: 999px;
  backdrop-filter: blur(12px);
}

.lightbox figcaption strong,
.lightbox figcaption span {
  font-size: 0.9rem;
  font-weight: 800;
}

.lightbox-close {
  position: absolute;
  top: 22px;
  right: 22px;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: #ffffff;
  background: rgba(59, 30, 114, 0.72);
  border: 1px solid rgba(212, 160, 23, 0.38);
  border-radius: 50%;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
  transform: translateY(-50%);
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.lightbox-prev {
  left: 24px;
}

.lightbox-next {
  right: 24px;
}

.lightbox-nav:hover,
.lightbox-close:hover {
  background: #4c2a85;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28), 0 0 24px rgba(212, 160, 23, 0.22);
}

.lightbox-nav:hover {
  transform: translateY(-50%) scale(1.04);
}

.lightbox.single-image .lightbox-nav {
  display: none;
}

.whatsapp-float,
.back-to-top {
  position: fixed;
  right: 20px;
  z-index: 950;
  display: grid;
  place-items: center;
  color: #ffffff;
  border: 0;
  border-radius: 50%;
  box-shadow: 0 18px 38px rgba(59, 30, 114, 0.24);
  transition: transform 0.22s ease, opacity 0.22s ease, visibility 0.22s ease;
}

.whatsapp-float {
  bottom: 24px;
  width: 58px;
  height: 58px;
  font-size: 1.8rem;
  background: #16a34a;
}

.back-to-top {
  bottom: 96px;
  width: 46px;
  height: 46px;
  font-size: 1rem;
  background: var(--primary);
  opacity: 0;
  visibility: hidden;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.whatsapp-float:hover,
.back-to-top:hover {
  transform: translateY(-4px) scale(1.04);
}

.mobile-cta {
  position: fixed;
  right: 10px;
  bottom: 10px;
  left: 10px;
  z-index: 940;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(226, 232, 240, 0.92);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(59, 30, 114, 0.22);
  backdrop-filter: blur(18px);
}

.mobile-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  color: #ffffff;
  font-weight: 800;
  background: var(--primary);
  border-radius: var(--radius);
}

.mobile-cta a:last-child {
  background: #22c55e;
}

/* Premium solid color icon system */
.btn > i,
.trust-badge i,
.floating-panel i,
.feature-list i,
.counter-card i,
.course-icon,
.why-card i,
.address-stack i,
.contact-actions a > i,
.form-header > span,
.footer-social i,
.site-footer a:not(.brand):not(.btn) > i,
.site-footer p > i,
.mobile-cta i,
.slider-btn i {
  --icon-bg: var(--primary);
  --icon-color: #ffffff;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--icon-color);
  background: var(--icon-bg);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 10px 22px rgba(59, 30, 114, 0.14);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease, color 0.24s ease, background 0.24s ease;
}

.btn > i,
.contact-actions a > i,
.footer-social i,
.site-footer a:not(.brand):not(.btn) > i,
.site-footer p > i,
.mobile-cta i {
  width: 27px;
  height: 27px;
  font-size: 1rem;
  border-radius: 8px;
}

.trust-badge i,
.floating-panel i,
.feature-list i,
.address-stack i,
.slider-btn i {
  width: 38px;
  height: 38px;
  font-size: 1.12rem;
  border-radius: 11px;
}

.course-icon,
.why-card i,
.form-header > span {
  width: 54px;
  height: 54px;
  font-size: 1.5rem;
  border-radius: 14px;
}

.counter-card i {
  width: 40px;
  height: 40px;
  margin: 0 auto 12px;
  font-size: 1.18rem;
  border-radius: 12px;
}

.course-icon i,
.form-header > span i {
  line-height: 1;
}

.btn:hover > i,
.trust-badge:hover i,
.floating-panel:hover i,
.feature-list div:hover i,
.counter-card:hover i,
.course-card:hover .course-icon,
.why-card:hover i,
.address-stack article:hover i,
.contact-actions a:hover > i,
.footer-social:hover i,
.site-footer a:not(.brand):not(.btn):hover > i,
.site-footer p:hover > i,
.mobile-cta a:hover i,
.slider-btn:hover i,
.whatsapp-float:hover,
.back-to-top:hover {
  border-color: rgba(212, 160, 23, 0.42);
  box-shadow: 0 16px 34px rgba(59, 30, 114, 0.16), 0 0 20px rgba(212, 160, 23, 0.2);
  transform: translateY(-3px) scale(1.04);
}

.btn-primary > i,
.btn-nav > i,
.final-cta .btn-primary > i,
.feature-list div:nth-child(2) i,
.why-card:nth-child(1) i,
.why-card:nth-child(6) i {
  --icon-bg: #4c2a85;
}

.btn-secondary > i,
.final-cta .btn-secondary > i,
.form-submit > i,
.footer-cta > i,
.form-header > span,
.mobile-cta a:last-child i {
  --icon-bg: #16a34a;
}

.trust-badge:nth-child(1) i,
.course-card:nth-child(6) .course-icon,
.site-footer .footer-grid > div:nth-child(2) a:nth-of-type(2) > i {
  --icon-bg: #4f46e5;
}

.trust-badge:nth-child(2) i,
.floating-panel.panel-top i,
.feature-list div:nth-child(3) i,
.counter-card:nth-child(1) i,
.course-card:nth-child(1) .course-icon,
.course-card:nth-child(2) .course-icon,
.course-card:nth-child(8) .course-icon,
.why-card:nth-child(4) i,
.mobile-cta a:first-child i,
.site-footer .footer-grid > div:nth-child(2) a:nth-of-type(3) > i {
  --icon-bg: #2563eb;
}

.trust-badge:nth-child(3) i,
.feature-list div:nth-child(1) i,
.counter-card:nth-child(4) i,
.course-card:nth-child(3) .course-icon,
.course-card:nth-child(4) .course-icon,
.course-card:nth-child(9) .course-icon,
.why-card:nth-child(2) i,
.why-card:nth-child(3) i,
.contact-actions a[href^="tel"] > i,
.site-footer p .ph-phone {
  --icon-bg: #16a34a;
}

.trust-badge:nth-child(4) i,
.feature-list div:nth-child(4) i,
.counter-card:nth-child(3) i,
.course-card:nth-child(10) .course-icon,
.site-footer .footer-grid > div:nth-child(3) a:nth-of-type(6) > i {
  --icon-bg: #7c3aed;
}

.floating-panel.panel-bottom i,
.counter-card:nth-child(2) i,
.site-footer .footer-grid > div:nth-child(2) a:nth-of-type(4) > i,
.site-footer .footer-grid > div:nth-child(3) a:nth-of-type(3) > i,
.site-footer .footer-grid > div:nth-child(3) a:nth-of-type(5) > i {
  --icon-bg: #d4a017;
  --icon-color: #1f2937;
}

.course-card:nth-child(5) .course-icon,
.why-card:nth-child(5) i,
.address-stack article:nth-child(1) i,
.address-stack article:nth-child(2) i,
.address-stack article:nth-child(3) i,
.site-footer p .ph-map-pin,
.site-footer .footer-grid > div:nth-child(2) a:nth-of-type(6) > i {
  --icon-bg: #f97316;
}

.site-footer .footer-grid > div:nth-child(3) a:nth-of-type(2) > i {
  --icon-bg: #06b6d4;
}

.site-footer .footer-grid > div:nth-child(3) a:nth-of-type(4) > i {
  --icon-bg: #22c55e;
}

.contact-actions a[href*="facebook"] > i,
.footer-social i,
.site-footer .footer-grid > div:nth-child(2) a:nth-of-type(5) > i {
  --icon-bg: #2563eb;
}

.site-footer .footer-grid > div:nth-child(2) a:nth-of-type(1) > i,
.site-footer .footer-grid > div:nth-child(3) a:nth-of-type(1) > i {
  --icon-bg: #d4a017;
}

.whatsapp-float,
.back-to-top {
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: none;
}

.whatsapp-float {
  background: #16a34a;
}

.back-to-top {
  background: #4c2a85;
}

.whatsapp-float i {
  color: #ffffff;
}

.back-to-top i {
  color: #ffffff;
}

.tool-bubble i,
.screen-logo-grid i {
  transition: transform 0.22s ease, color 0.22s ease, filter 0.22s ease;
}

.tool-bubble:hover,
.screen-logo-grid span:hover {
  border-color: rgba(212, 160, 23, 0.42);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.2), 0 0 18px rgba(212, 160, 23, 0.18);
}

.tool-bubble:hover i,
.screen-logo-grid span:hover i {
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.45));
  transform: scale(1.1);
}

.screen-logo-grid span:nth-child(1) { --chip-bg: #2563eb; }
.screen-logo-grid span:nth-child(4) { --chip-bg: #16a34a; }
.screen-logo-grid span:nth-child(5) {
  --chip-bg: #d4a017;
  color: #1f2937;
}
.screen-logo-grid span:nth-child(3) { --chip-bg: #7c3aed; }
.screen-logo-grid span:nth-child(2) { --chip-bg: #f97316; }
.screen-logo-grid span:nth-child(6) { --chip-bg: #06b6d4; }

.tool-1 { --chip-bg: #2563eb; }
.tool-2 { --chip-bg: #16a34a; }
.tool-3,
.tool-4 {
  --chip-bg: #d4a017;
  color: #1f2937;
}
.tool-5 { --chip-bg: #7c3aed; }
.tool-6 { --chip-bg: #f97316; }
.tool-7,
.tool-8,
.tool-9,
.tool-12 { --chip-bg: #06b6d4; }
.tool-10,
.tool-11 { --chip-bg: #4f46e5; }

.course-card:hover .course-icon {
  color: #ffffff;
}

.tool-3 i,
.tool-4 i,
.screen-logo-grid span:nth-child(5) i {
  color: #1f2937;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.ripple-effect {
  position: absolute;
  width: 12px;
  height: 12px;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.48);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(1);
  animation: rippleExpand 0.62s ease-out forwards;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

@keyframes rippleExpand {
  to {
    opacity: 0;
    transform: translate(-50%, -50%) scale(18);
  }
}

@keyframes underlineGlow {
  0%,
  100% {
    opacity: 0.62;
    transform: scaleX(0.72);
  }
  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes sectionArrivalGlow {
  0% {
    opacity: 0;
    transform: scaleX(0.32);
    box-shadow: 0 0 0 rgba(212, 160, 23, 0);
  }
  36% {
    opacity: 1;
    transform: scaleX(1);
    box-shadow: 0 0 28px rgba(212, 160, 23, 0.42);
  }
  100% {
    opacity: 0;
    transform: scaleX(0.92);
    box-shadow: 0 0 0 rgba(212, 160, 23, 0);
  }
}

@keyframes drift {
  from {
    transform: translate3d(0, 0, 0) skewX(-12deg);
  }
  to {
    transform: translate3d(18px, -22px, 0) skewX(-12deg);
  }
}

@keyframes particleFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(45deg);
  }
  50% {
    transform: translate3d(24px, -38px, 0) rotate(45deg);
  }
}

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

@keyframes scrollPulse {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(17px);
  }
}

@keyframes gridMove {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 34px 34px;
  }
}

@keyframes monitorFloat {
  0%,
  100% {
    transform: translateY(0) rotateX(0deg);
  }
  50% {
    transform: translateY(-12px) rotateX(2deg);
  }
}

@keyframes glowPulse {
  0%,
  100% {
    opacity: 0.42;
    transform: scale(1);
  }
  50% {
    opacity: 0.78;
    transform: scale(1.04);
  }
}

@keyframes screenShine {
  0%,
  42% {
    transform: translateX(-120%);
  }
  72%,
  100% {
    transform: translateX(120%);
  }
}

@keyframes chipPulse {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 0 0 rgba(212, 160, 23, 0);
  }
  50% {
    transform: translateY(-3px);
    box-shadow: 0 0 24px rgba(212, 160, 23, 0.2);
  }
}

@keyframes orbitSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes logoFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, -10px, 0) scale(1.04);
  }
}

@media (max-width: 1100px) {
  h1 {
    font-size: 3.05rem;
  }

  h2 {
    font-size: 2.15rem;
  }

  .btn-nav {
    display: none;
  }

  .hero-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    min-height: 184px;
  }

  .hero-visual {
    min-height: auto;
    max-width: 640px;
  }

  .tools-computer {
    height: 500px;
  }

  .about-media {
    max-width: 650px;
  }

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

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

  .testimonial-card {
    flex-basis: calc((100% - var(--review-gap)) / 2);
  }

  .google-review-summary {
    flex-wrap: wrap;
  }

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

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

@media (max-width: 860px) {
  body {
    padding-bottom: 76px;
  }

  .section-pad {
    padding: 68px 0;
  }

  h1 {
    font-size: 2.45rem;
  }

  h2 {
    font-size: 1.9rem;
  }

  .nav-toggle {
    display: grid;
  }

  .nav-menu {
    position: fixed;
    top: var(--header-height);
    right: 14px;
    left: 14px;
    display: grid;
    gap: 4px;
    padding: 16px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-14px);
    backdrop-filter: blur(18px);
    transition: opacity 0.22s ease, transform 0.22s ease;
  }

  .nav-menu.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-menu a {
    padding: 12px;
    border-radius: var(--radius);
  }

  .nav-menu a:hover,
  .nav-menu a.active {
    background: var(--primary-soft);
  }

  .nav-menu a::after {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 112px 0 54px;
  }

  .hero h1 {
    min-height: 146px;
  }

  .hero-subtitle {
    font-size: 1.05rem;
  }

  .trust-grid,
  .feature-list {
    grid-template-columns: 1fr;
  }

  .hero-image-shell {
    transform: none;
  }

  .tools-computer {
    height: 440px;
  }

  .computer-stage {
    padding: 34px 22px 66px;
  }

  .monitor {
    width: min(84%, 430px);
    min-width: 280px;
  }

  .monitor-screen {
    min-height: 220px;
    padding: 24px;
  }

  .tool-orbit {
    inset: 12px;
  }

  .tool-bubble {
    min-width: 72px;
    min-height: 38px;
    padding: 8px 10px;
    font-size: 0.72rem;
  }

  .hero-image-shell img {
    height: 380px;
  }

  .floating-panel {
    position: static;
    max-width: none;
    margin-top: 12px;
    animation: none;
  }

  .panel-bottom {
    margin-left: 42px;
  }

  .about-media img {
    height: 430px;
  }

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

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

  .google-review-summary {
    display: grid;
    gap: 12px;
  }

  .overall-rating {
    justify-content: space-between;
  }

  .testimonial-slider {
    overflow: hidden;
    padding: 8px 1px 2px;
  }

  .testimonial-track {
    display: flex;
    gap: 0;
    align-items: stretch;
    touch-action: pan-y;
  }

  .testimonial-card {
    flex: 0 0 100%;
    min-height: 310px;
    padding: 26px;
    text-align: left;
  }

  .slider-controls {
    display: flex;
  }

  .whatsapp-float {
    right: 18px;
    bottom: 92px;
    width: 54px;
    height: 54px;
  }

  .back-to-top {
    display: none;
  }

  .mobile-cta {
    display: grid;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .navbar {
    min-height: 70px;
  }

  :root {
    --header-height: 70px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand-text strong {
    font-size: 0.92rem;
  }

  .brand-text small {
    font-size: 0.72rem;
  }

  h1 {
    font-size: 2.08rem;
  }

  h2 {
    font-size: 1.72rem;
  }

  .hero {
    padding-top: 96px;
  }

  .hero h1 {
    min-height: 126px;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .hero-actions .btn,
  .contact-actions a {
    width: 100%;
  }

  .trust-badge {
    align-items: flex-start;
  }

  .hero-image-shell img {
    height: 320px;
  }

  .tools-computer {
    height: 390px;
  }

  .tools-computer::before {
    inset: 10px;
  }

  .computer-stage {
    padding: 28px 10px 58px;
  }

  .monitor {
    width: min(88%, 330px);
    min-width: 0;
  }

  .monitor-screen {
    min-height: 206px;
    padding: 20px 18px;
  }

  .monitor-screen p {
    font-size: 1rem;
  }

  .screen-logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .screen-logo-grid span {
    min-height: 36px;
    font-size: 0.76rem;
  }

  .computer-base {
    width: 170px;
    height: 62px;
  }

  .tool-orbit {
    inset: 4px;
  }

  .tool-orbit::before {
    display: none;
  }

  .tool-bubble {
    width: 38px;
    min-width: 38px;
    min-height: 38px;
    padding: 0;
    font-size: 0.78rem;
    border-radius: 10px;
  }

  .tool-bubble b {
    display: none;
  }

  .tool-1 { top: 7%; left: 5%; }
  .tool-2 { top: 3%; left: 45%; }
  .tool-3 { top: 9%; right: 5%; }
  .tool-4 { right: 1%; bottom: 38%; }
  .tool-5 { right: 8%; bottom: 10%; }
  .tool-6 { bottom: 4%; left: 19%; }
  .tool-7 { top: 29%; left: 0; }
  .tool-8 { top: 43%; right: 5%; }
  .tool-9 { bottom: 27%; left: 0; }
  .tool-10 { top: 27%; right: 0; }
  .tool-11 { bottom: 13%; right: 34%; }
  .tool-12 { top: 55%; left: 7%; }

  .hero-stat {
    right: 12px;
    bottom: 12px;
    padding: 12px;
  }

  .about-media::before {
    inset: 16px -8px -12px 12px;
  }

  .about-media img {
    height: 360px;
  }

  .experience-card {
    right: 12px;
    bottom: 12px;
  }

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

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

  .course-card {
    min-height: 288px;
  }

  .course-card h3 {
    min-height: 58px;
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .gallery-item {
    min-height: 230px;
  }

  .lightbox {
    padding: 18px;
  }

  .lightbox-nav {
    top: auto;
    bottom: 22px;
    width: 44px;
    height: 44px;
    transform: none;
  }

  .lightbox-nav:hover {
    transform: scale(1.04);
  }

  .lightbox-prev {
    left: 22px;
  }

  .lightbox-next {
    right: 22px;
  }

  .lightbox figcaption {
    margin-bottom: 58px;
    border-radius: var(--radius);
  }

  .address-stack article {
    grid-template-columns: 1fr;
  }

  .inquiry-form {
    padding: 22px;
  }

  .form-header {
    align-items: flex-start;
  }

  .map-section {
    height: 330px;
  }

  .final-cta {
    padding: 72px 0;
  }

  .final-cta h2 {
    font-size: 2rem;
  }

  .footer-grid,
  .footer-bottom {
    display: grid;
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    gap: 8px;
  }

  .footer-credit {
    line-height: 1.55;
    white-space: normal;
  }
}

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