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

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

:root {
  --bg: #ffffff;
  --sky: #87ceeb;
  --sky-soft: #eef9ff;
  --sky-deep: #2b8fbf;
  --ink: #0f2434;
  --muted: #5d7383;
  --line: rgba(15, 36, 52, 0.12);
  --surface: rgba(255, 255, 255, 0.86);
  --accent: #ff5733;
  --accent-alt: #ccff00;
  --shadow: 0 24px 70px rgba(30, 93, 132, 0.14);
  --radius-xl: 32px;
  --container: min(1200px, calc(100% - 2.5rem));
  --transition: 220ms ease;
  --wa-size: 62px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(135, 206, 235, 0.22), transparent 28%),
    radial-gradient(circle at right 12%, rgba(204, 255, 0, 0.14), transparent 22%),
    linear-gradient(180deg, #ffffff 0%, #f6fbff 58%, #ffffff 100%);
  color: var(--ink);
  font-family: 'Montserrat', 'Segoe UI Variable', 'Segoe UI', system-ui, sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

.home-page {
  height: 100dvh;
  overflow: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 100;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: var(--ink);
  color: #ffffff;
  transition: top var(--transition);
}

.skip-link:focus {
  top: 1rem;
}

.page-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(16px);
}

.home-page .site-header {
  position: fixed;
  width: 100%;
  border-bottom-color: transparent;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.42));
}

.header-inner,
.section-inner,
.footer-inner {
  width: var(--container);
  margin: 0 auto;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}


.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  padding: 0.2rem;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(15, 36, 52, 0.09);
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(43, 143, 191, 0.18);
  flex-shrink: 0;
}
.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  gap: 0.15rem;
}

.brand-kicker {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--sky-deep);
}

.brand-name {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.site-nav a {
  position: relative;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(15, 36, 52, 0.72);
  transition: color var(--transition);
}

.site-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.45rem;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-alt));
  transition: width var(--transition);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.current {
  color: var(--ink);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.current::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 1.2rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle span + span {
  margin-top: 0.28rem;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 44;
  background: rgba(7, 18, 27, 0.28);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

body.nav-open .nav-overlay {
  opacity: 1;
  pointer-events: auto;
}

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

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

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

.hero {
  position: relative;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 7.5rem 1.25rem 2rem;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(135, 206, 235, 0.45), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(204, 255, 0, 0.22), transparent 22%),
    radial-gradient(circle at 50% 82%, rgba(255, 87, 51, 0.12), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #ebf8ff 54%, #ffffff 100%);
  z-index: -4;
}

.hero::after {
  content: '';
  position: absolute;
  inset: -18%;
  background-image:
    linear-gradient(rgba(15, 36, 52, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 36, 52, 0.06) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.42;
  transform: perspective(1100px) rotateX(72deg) translateY(16%);
  animation: drift-grid 18s linear infinite;
  z-index: -3;
}

.hero-wave-field {
  position: absolute;
  inset: -14%;
  border-radius: 50%;
  background:
    repeating-radial-gradient(circle at 52% 50%, rgba(43, 143, 191, 0.3) 0 2px, rgba(43, 143, 191, 0) 2px 24px),
    repeating-radial-gradient(circle at 48% 52%, rgba(204, 255, 0, 0.18) 0 1px, rgba(204, 255, 0, 0) 1px 30px),
    radial-gradient(circle at center, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0) 72%);
  opacity: 0.52;
  pointer-events: none;
  animation: magnetic-pulse 9.4s ease-in-out infinite, magnetic-drift 22s linear infinite;
  z-index: -2;
}

.hero-synapse {
  position: absolute;
  inset: -10%;
  pointer-events: none;
  opacity: 0.5;
  background:
    radial-gradient(circle at 18% 34%, rgba(204, 255, 0, 0.44) 0 0.45rem, rgba(204, 255, 0, 0) 0.9rem),
    radial-gradient(circle at 32% 72%, rgba(135, 206, 235, 0.46) 0 0.5rem, rgba(135, 206, 235, 0) 1rem),
    radial-gradient(circle at 52% 44%, rgba(255, 87, 51, 0.34) 0 0.45rem, rgba(255, 87, 51, 0) 0.95rem),
    radial-gradient(circle at 74% 27%, rgba(135, 206, 235, 0.42) 0 0.5rem, rgba(135, 206, 235, 0) 1rem),
    radial-gradient(circle at 84% 68%, rgba(204, 255, 0, 0.4) 0 0.5rem, rgba(204, 255, 0, 0) 1rem);
  z-index: -1;
  animation: synapse-flicker 3.4s ease-in-out infinite;
}

.hero-synapse::before,
.hero-synapse::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-synapse::before {
  background-image:
    linear-gradient(112deg, rgba(135, 206, 235, 0) 16%, rgba(135, 206, 235, 0.24) 24%, rgba(135, 206, 235, 0) 34%),
    linear-gradient(44deg, rgba(204, 255, 0, 0) 18%, rgba(204, 255, 0, 0.22) 26%, rgba(204, 255, 0, 0) 34%),
    linear-gradient(146deg, rgba(255, 87, 51, 0) 18%, rgba(255, 87, 51, 0.2) 27%, rgba(255, 87, 51, 0) 36%);
  background-size: 210% 210%;
  filter: blur(0.4px);
  opacity: 0.58;
  animation: synapse-flow 9s linear infinite;
}

.hero-synapse::after {
  background:
    radial-gradient(circle at 25% 30%, rgba(255, 255, 255, 0.84) 0 0.25rem, rgba(255, 255, 255, 0) 0.7rem),
    radial-gradient(circle at 56% 58%, rgba(255, 255, 255, 0.78) 0 0.24rem, rgba(255, 255, 255, 0) 0.72rem),
    radial-gradient(circle at 80% 44%, rgba(255, 255, 255, 0.82) 0 0.24rem, rgba(255, 255, 255, 0) 0.7rem);
  opacity: 0.52;
  animation: synapse-drift 13s ease-in-out infinite;
}

.hero-wave-field::before,
.hero-wave-field::after {
  content: '';
  position: absolute;
  inset: 16%;
  border-radius: 50%;
  pointer-events: none;
}

.hero-wave-field::before {
  background: conic-gradient(from 0deg, rgba(135, 206, 235, 0), rgba(135, 206, 235, 0.34), rgba(255, 87, 51, 0.2), rgba(204, 255, 0, 0.24), rgba(135, 206, 235, 0));
  filter: blur(18px);
  opacity: 0.6;
  animation: magnetic-spin 20s linear infinite;
}

.hero-wave-field::after {
  border: 1px solid rgba(43, 143, 191, 0.25);
  box-shadow:
    0 0 0 3.4rem rgba(135, 206, 235, 0.1),
    0 0 0 7.8rem rgba(135, 206, 235, 0.07);
  opacity: 0.42;
  animation: magnetic-ring 6.8s ease-in-out infinite;
}

.hero-art {
  position: absolute;
  border-radius: 999px;
  filter: blur(0.5px);
  pointer-events: none;
}

.hero-art-one {
  top: 11%;
  left: -6%;
  width: 26rem;
  height: 26rem;
  border: 1px solid rgba(135, 206, 235, 0.42);
  background: radial-gradient(circle, rgba(135, 206, 235, 0.22), rgba(135, 206, 235, 0.02));
  animation: float 12s ease-in-out infinite;
}

.hero-art-two {
  right: -8%;
  bottom: 10%;
  width: 22rem;
  height: 22rem;
  border: 1px solid rgba(255, 87, 51, 0.22);
  background: radial-gradient(circle, rgba(255, 87, 51, 0.14), rgba(255, 87, 51, 0.02));
  animation: float 10s ease-in-out infinite reverse;
}

.hero-art-three {
  width: min(76vw, 52rem);
  height: min(76vw, 52rem);
  top: 52%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(43, 143, 191, 0.15);
  box-shadow:
    0 0 0 2.4rem rgba(135, 206, 235, 0.05),
    0 0 0 7rem rgba(135, 206, 235, 0.04);
  opacity: 0.9;
}

.hero-inner {
  width: min(100%, 980px);
  margin: 0 auto;
  text-align: center;
  position: relative;
}


.hero-badge,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.62rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(43, 143, 191, 0.18);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 12px 30px rgba(43, 143, 191, 0.08);
  color: var(--sky-deep);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero-badge {
  margin-bottom: 1.35rem;
}


.hero-logo {
  display: block;
  width: clamp(180px, 28vw, 290px);
  height: auto;
  margin: 0 auto 1rem;
  filter: drop-shadow(0 14px 28px rgba(15, 36, 52, 0.14));
  transform-origin: center;
  animation: logo-spin-in 1.15s cubic-bezier(0.2, 0.9, 0.2, 1) both, logo-pulse 2.8s ease-in-out 1.15s infinite;
}

.hero-title {
  margin: 0;
  font-size: clamp(3.3rem, 10vw, 7rem);
  line-height: 0.95;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-subtitle {
  max-width: 850px;
  margin: 1.5rem auto 0;
  font-size: clamp(1.05rem, 2vw, 1.42rem);
  line-height: 1.62;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.3rem;
  position: relative;
  z-index: 2;
}

.cta-button,
.button-secondary,
.button-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-width: 11rem;
  padding: 1rem 1.55rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.96rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition);
}

.cta-button {
  background: linear-gradient(135deg, var(--accent) 0%, #ff7d44 100%);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.42);
  text-shadow: 0 1px 1px rgba(7, 18, 27, 0.22);
  box-shadow: 0 16px 34px rgba(255, 87, 51, 0.32);
}

.hero-actions .cta-button {
  min-width: 13.2rem;
}

.button-secondary {
  background: linear-gradient(135deg, rgba(204, 255, 0, 0.92), rgba(235, 255, 133, 0.94));
  color: var(--ink);
  box-shadow: 0 16px 32px rgba(204, 255, 0, 0.2);
}

.button-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.28);
  color: #ffffff;
}

.cta-button:hover,
.button-secondary:hover,
.button-ghost:hover,
.cta-button:focus-visible,
.button-secondary:focus-visible,
.button-ghost:focus-visible {
  transform: translateY(-2px);
}

.hero-footer {
  position: absolute;
  left: 50%;
  bottom: 1.25rem;
  width: min(1040px, calc(100% - 2rem));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  font-size: 0.84rem;
  color: var(--muted);
}

.hero-chip {
  padding: 0.8rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(15, 36, 52, 0.08);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(12px);
}

.page-intro {
  padding: 7.5rem 0 3.5rem;
}

.section {
  padding: 0 0 5.5rem;
}

.section-alt {
  padding: 4.5rem 0 5.5rem;
  background: linear-gradient(180deg, rgba(135, 206, 235, 0.08), rgba(255, 255, 255, 0));
}

.section-heading {
  max-width: 780px;
  margin-bottom: 2.8rem;
}

.section-heading h1,
.section-heading h2 {
  margin: 1rem 0 0.8rem;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 1.08;
}

.copy-lead {
  margin: 0;
  font-size: 1.08rem;
  color: var(--muted);
  line-height: 1.82;
}

.story-grid,
.contact-wrap,
.feature-grid,
.value-grid {
  display: grid;
  gap: 1.5rem;
}

.story-grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  align-items: start;
}

.card,
.metric-card,
.service-card,
.price-card,
.contact-panel,
.contact-form-card {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.card,
.contact-panel,
.contact-form-card,
.price-card,
.service-card,
.metric-card {
  padding: 2rem;
}

.rich-text p,
.rich-text li,
.service-card p,
.price-card p,
.note-bar,
.contact-form-card p,
.copy-muted {
  color: var(--muted);
  line-height: 1.85;
}

.rich-text p + p {
  margin-top: 1rem;
}

.rich-text h2,
.rich-text h3 {
  margin-top: 2rem;
  margin-bottom: 0.8rem;
  font-size: 1.45rem;
}

.highlight-list,
.plan-features,
.contact-points,
.policy-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}

.highlight-list li,
.contact-points li,
.policy-list li {
  position: relative;
  padding-left: 1.55rem;
  color: var(--muted);
}

.highlight-list li::before,
.contact-points li::before,
.policy-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-alt));
  box-shadow: 0 0 0 5px rgba(204, 255, 0, 0.16);
}

.stat-stack {
  display: grid;
  gap: 1rem;
}

.metric-card strong {
  display: block;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--ink);
}

.metric-card span {
  display: block;
  margin-top: 0.6rem;
  color: var(--muted);
}

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

.service-card {
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  inset: auto -15% -15% auto;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(135, 206, 235, 0.14), transparent 68%);
}

.service-icon {
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(135, 206, 235, 0.28), rgba(255, 255, 255, 0.92));
  border: 1px solid rgba(43, 143, 191, 0.12);
  color: var(--ink);
}

.service-icon svg {
  width: 1.65rem;
  height: 1.65rem;
}

.service-card h3,
.price-card h2,
.price-card h3,
.contact-panel h1,
.contact-form-card h2 {
  margin: 1rem 0 0.65rem;
  line-height: 1.2;
}

.service-tags {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.service-tags span,
.pill,
.price-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-tags span,
.pill {
  background: rgba(135, 206, 235, 0.12);
  color: var(--sky-deep);
}

.price-badge {
  background: rgba(255, 87, 51, 0.12);
  color: var(--accent);
}

.price-card.featured {
  border-color: rgba(255, 87, 51, 0.28);
  transform: translateY(-0.4rem);
}

.price-tag {
  margin-top: 1rem;
  font-size: 2rem;
  line-height: 1;
}

.plan-features li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--muted);
}

.plan-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.66rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: var(--accent-alt);
  box-shadow: 0 0 0 5px rgba(204, 255, 0, 0.16);
}

.note-bar {
  margin-top: 1.5rem;
  padding: 1rem 1.2rem;
  border-radius: 20px;
  border: 1px dashed rgba(43, 143, 191, 0.24);
  background: rgba(255, 255, 255, 0.7);
}

.cta-band {
  padding: 3rem 0 5.5rem;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  flex-wrap: wrap;
  padding: 2rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(15, 36, 52, 0.96), rgba(43, 143, 191, 0.94));
  box-shadow: 0 24px 60px rgba(15, 36, 52, 0.24);
  color: #ffffff;
}

.cta-panel p {
  margin: 0.5rem 0 0;
  color: rgba(255, 255, 255, 0.8);
}

.site-footer {
  margin-top: auto;
  padding: 2rem 0 2.6rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-links a {
  transition: color var(--transition);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--ink);
}

.contact-page {
  background:
    radial-gradient(circle at 0% 0%, rgba(135, 206, 235, 0.24), transparent 30%),
    radial-gradient(circle at 100% 100%, rgba(255, 87, 51, 0.1), transparent 22%),
    linear-gradient(135deg, #f7fcff 0%, #edf8ff 56%, #ffffff 100%);
}

.contact-shell {
  min-height: 100dvh;
  padding: 1.35rem;
  display: grid;
  align-items: center;
}

.contact-topbar {
  width: min(1120px, 100%);
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.contact-back {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-wrap {
  width: min(1120px, 100%);
  margin: 0 auto;
  grid-template-columns: minmax(290px, 0.85fr) minmax(0, 1.15fr);
}

.contact-panel {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(15, 36, 52, 0.98), rgba(43, 143, 191, 0.92));
  color: #ffffff;
}

.contact-panel::after {
  content: '';
  position: absolute;
  right: -3rem;
  bottom: -3rem;
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(204, 255, 0, 0.26), transparent 72%);
}

.contact-panel .pill {
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.88);
}

.contact-panel p,
.contact-panel li {
  color: rgba(255, 255, 255, 0.82);
}

.contact-form-card {
  background: rgba(255, 255, 255, 0.92);
}

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

.field {
  display: grid;
  gap: 0.45rem;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.9rem;
  font-weight: 500;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(15, 36, 52, 0.12);
  border-radius: 18px;
  padding: 1rem 1rem;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(43, 143, 191, 0.5);
  box-shadow: 0 0 0 4px rgba(135, 206, 235, 0.14);
}

.field textarea {
  min-height: 11rem;
  resize: vertical;
}

.form-status {
  display: none;
  margin-bottom: 1rem;
  padding: 1rem 1.2rem;
  border-radius: 18px;
  font-size: 0.95rem;
}

.form-status.visible {
  display: block;
}

.form-status.is-success {
  background: rgba(204, 255, 0, 0.22);
  color: #475b00;
}

.form-status.is-error {
  background: rgba(255, 87, 51, 0.12);
  color: #7f2c19;
}

.checkbox-line {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.checkbox-line input {
  width: 1rem;
  height: 1rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.form-note {
  margin-top: 1rem;
  font-size: 0.84rem;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 90;
  display: none;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.2rem;
  border-radius: 24px;
  background: rgba(10, 21, 31, 0.96);
  color: #ffffff;
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.24);
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-banner p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}

.cookie-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.cookie-actions .button-ghost {
  border-color: rgba(255, 255, 255, 0.2);
}

.legal-grid {
  display: grid;
  gap: 1.25rem;
}

.policy-card {
  padding: 1.75rem;
}

.policy-card h2 {
  margin-top: 0;
}

.table-like {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

.table-row {
  display: grid;
  grid-template-columns: minmax(140px, 220px) minmax(0, 1fr);
  gap: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(15, 36, 52, 0.08);
}

.table-row strong {
  color: var(--ink);
}

.table-row span {
  color: var(--muted);
}

.visually-hidden,
.honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@keyframes logo-spin-in {
  0% {
    transform: rotate(-280deg) scale(0.82);
    opacity: 0;
  }

  60% {
    transform: rotate(18deg) scale(1.04);
    opacity: 1;
  }

  100% {
    transform: rotate(0deg) scale(1);
    opacity: 1;
  }
}

@keyframes logo-pulse {
  0%,
  100% {
    transform: scale(1);
    filter: drop-shadow(0 14px 28px rgba(15, 36, 52, 0.14));
  }

  50% {
    transform: scale(1.065);
    filter: drop-shadow(0 20px 34px rgba(43, 143, 191, 0.28));
  }
}

@keyframes magnetic-pulse {
  0%,
  100% {
    transform: scale(0.98) translate3d(0, 0, 0);
    opacity: 0.4;
  }

  50% {
    transform: scale(1.08) translate3d(0, -1.4%, 0);
    opacity: 0.6;
  }
}

@keyframes magnetic-drift {
  0% {
    background-position: 0 0, 0 0, 50% 50%;
  }

  50% {
    background-position: -24px 20px, 18px -22px, 50% 50%;
  }

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

@keyframes magnetic-spin {
  from {
    transform: rotate(0deg) scale(1);
  }

  to {
    transform: rotate(360deg) scale(1.05);
  }
}

@keyframes magnetic-ring {
  0%,
  100% {
    transform: scale(0.94);
    opacity: 0.24;
  }

  50% {
    transform: scale(1.14);
    opacity: 0.46;
  }
}

@keyframes synapse-flow {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    background-position: 0% 0%;
  }

  50% {
    transform: translate3d(-0.8%, -1.2%, 0) scale(1.03);
    background-position: 48% 56%;
  }

  100% {
    transform: translate3d(0, 0, 0) scale(1);
    background-position: 0% 0%;
  }
}

@keyframes synapse-drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.36;
  }

  50% {
    transform: translate3d(1.6%, -1%, 0) scale(1.08);
    opacity: 0.62;
  }
}

@keyframes synapse-flicker {
  0%,
  100% {
    opacity: 0.46;
  }

  25% {
    opacity: 0.62;
  }

  50% {
    opacity: 0.4;
  }

  75% {
    opacity: 0.68;
  }
}

@keyframes drift-grid {
  0% {
    transform: perspective(1100px) rotateX(72deg) translateY(16%) translateX(0);
  }

  50% {
    transform: perspective(1100px) rotateX(72deg) translateY(14%) translateX(-1.5%);
  }

  100% {
    transform: perspective(1100px) rotateX(72deg) translateY(16%) translateX(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -18px, 0);
  }
}

@media (max-width: 960px) {
  .nav-toggle {
    display: inline-grid;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(236, 248, 255, 0.98));
    border-color: rgba(43, 143, 191, 0.28);
    color: var(--ink);
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 45;
    width: min(84vw, 360px);
    padding: 7rem 1.5rem 2rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
    background:
      radial-gradient(circle at top right, rgba(135, 206, 235, 0.18), transparent 40%),
      linear-gradient(180deg, rgba(8, 23, 35, 0.98), rgba(13, 36, 54, 0.98));
    border-left: 1px solid rgba(135, 206, 235, 0.24);
    box-shadow: -24px 0 56px rgba(3, 11, 17, 0.46);
    transform: translateX(100%);
    transition: transform var(--transition);
  }

  body.nav-open .site-nav {
    transform: translateX(0);
  }

  .site-nav a {
    font-size: 1rem;
    color: rgba(240, 248, 255, 0.94);
  }

  .site-nav a:hover,
  .site-nav a:focus-visible,
  .site-nav a.current {
    color: #ffffff;
  }

  .site-nav a::after {
    background: linear-gradient(90deg, var(--accent-alt), var(--accent));
  }

  .story-grid,
  .contact-wrap,
  .feature-grid,
  .value-grid,
  .price-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .hero {
    padding-top: 5.4rem;
    padding-bottom: 1.1rem;
    min-height: 92dvh;
  }

  .hero-wave-field {
    inset: -20%;
    opacity: 0.42;
  }

  .hero-synapse {
    inset: -16%;
    opacity: 0.38;
  }

  .hero-title {
    font-size: clamp(2.35rem, 14vw, 4.1rem);
  }

  .hero-subtitle {
    margin-top: 0.7rem;
    font-size: clamp(0.9rem, 3vw, 1.02rem);
    line-height: 1.46;
  }

  .hero-badge {
    padding: 0.5rem 0.76rem;
    font-size: 0.62rem;
    letter-spacing: 0.12em;
  }

  .hero-logo {
    width: clamp(132px, 40vw, 190px);
    margin-bottom: 0.58rem;
  }

  .hero-actions {
    margin-top: 0.95rem;
  }

  .hero-footer {
    display: none;
  }

  .story-grid,
  .contact-wrap,
  .feature-grid,
  .value-grid,
  .price-grid,
  .form-grid,
  .table-row {
    grid-template-columns: 1fr;
  }

  .contact-shell {
    padding: 1rem;
  }

  .contact-topbar {
    margin-bottom: 0.85rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}


/* Round 2 visual refinements: premium hero, stronger pricing cards, CTA micro-motion */
:root {
  --shadow-strong: 0 30px 74px rgba(17, 62, 95, 0.24);
}

.hero {
  padding: 7.5rem 1.25rem 2.5rem;
}

.hero::before {
  background:
    radial-gradient(circle at 14% 16%, rgba(135, 206, 235, 0.56), transparent 28%),
    radial-gradient(circle at 84% 18%, rgba(204, 255, 0, 0.28), transparent 24%),
    radial-gradient(circle at 50% 86%, rgba(255, 87, 51, 0.18), transparent 32%),
    linear-gradient(140deg, #ffffff 0%, #e8f7ff 46%, #f5fcff 72%, #ffffff 100%);
}

.hero::after {
  background-size: 68px 68px;
  opacity: 0.34;
}

.hero-inner {
  padding: clamp(1.2rem, 2.4vw, 2.2rem);
  border-radius: 36px;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.45));
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 26px 58px rgba(11, 38, 57, 0.14);
  backdrop-filter: blur(10px);
}

.hero-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(135, 206, 235, 0.34);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
  pointer-events: none;
}


.hero-badge,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.62rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(43, 143, 191, 0.18);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 12px 30px rgba(43, 143, 191, 0.08);
  color: var(--sky-deep);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero-badge {
  margin-bottom: 1.35rem;
}

.hero-title {
  color: var(--ink);
  background-image: linear-gradient(120deg, #0f2434 0%, #2b8fbf 52%, #0f2434 100%);
  background-size: 100% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 12px 36px rgba(43, 143, 191, 0.12);
}

.hero-subtitle {
  max-width: 790px;
  color: rgba(18, 47, 67, 0.84);
}

.cta-button,
.button-secondary,
.button-ghost {
  position: relative;
  overflow: hidden;
}

.cta-button {
  animation: cta-breathe 2.8s ease-in-out infinite;
}

.cta-button::after,
.button-secondary::after {
  content: '→';
  font-size: 1.02rem;
  line-height: 1;
  transform: translateX(0);
  transition: transform var(--transition);
}

.cta-button:hover,
.button-secondary:hover,
.button-ghost:hover,
.cta-button:focus-visible,
.button-secondary:focus-visible,
.button-ghost:focus-visible {
  transform: translateY(-3px) scale(1.01);
}

.cta-button:hover,
.cta-button:focus-visible {
  box-shadow: 0 20px 42px rgba(255, 87, 51, 0.38);
}

.cta-button:hover::after,
.cta-button:focus-visible::after,
.button-secondary:hover::after,
.button-secondary:focus-visible::after {
  transform: translateX(4px);
}

.price-grid {
  gap: 1.35rem;
}

.price-card {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.97), rgba(241, 250, 255, 0.84)),
    linear-gradient(135deg, rgba(204, 255, 0, 0.08), rgba(255, 87, 51, 0.06));
  border: 1px solid rgba(43, 143, 191, 0.16);
  box-shadow: 0 18px 44px rgba(16, 58, 84, 0.12);
  transition: transform 280ms ease, box-shadow 280ms ease, border-color 280ms ease;
}

.price-card::before {
  content: '';
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, rgba(43, 143, 191, 0.18), rgba(204, 255, 0, 0.72), rgba(255, 87, 51, 0.84));
}

.price-card:hover,
.price-card:focus-within {
  transform: translateY(-8px);
  border-color: rgba(43, 143, 191, 0.3);
  box-shadow: var(--shadow-strong);
}

.price-badge {
  background: linear-gradient(135deg, rgba(255, 87, 51, 0.18), rgba(255, 125, 68, 0.24));
  border: 1px solid rgba(255, 87, 51, 0.25);
  color: #b53216;
}

.price-card.featured {
  border-color: rgba(255, 87, 51, 0.42);
  transform: translateY(-0.55rem);
  box-shadow: 0 34px 74px rgba(255, 87, 51, 0.2);
}

.price-card.featured::after {
  content: '';
  position: absolute;
  top: -3rem;
  right: -3rem;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 87, 51, 0.22), transparent 72%);
  pointer-events: none;
}

.price-tag {
  font-size: 2.05rem;
  color: #113247;
}

.price-card.featured .price-tag {
  color: #8b2e17;
}

@keyframes cta-breathe {
  0%,
  100% {
    box-shadow: 0 16px 34px rgba(255, 87, 51, 0.32);
  }

  50% {
    box-shadow:
      0 20px 42px rgba(255, 87, 51, 0.38),
      0 0 0 6px rgba(255, 87, 51, 0.12);
  }
}

@media (max-width: 960px) {
  .price-card.featured {
    transform: translateY(-0.2rem);
  }
}

@media (max-width: 720px) {
  .hero-inner {
    padding: 1.1rem 0.9rem;
    border-radius: 24px;
  }

  .price-card.featured {
    transform: translateY(0);
  }
}

/* Round 3 conversion refinements: sticky mobile CTA, persuasive price micro-copy, optimized contact form */
.price-microcopy {
  margin: 0.6rem 0 1rem;
  padding: 0.58rem 0.75rem;
  border-radius: 12px;
  border: 1px dashed rgba(43, 143, 191, 0.3);
  background: linear-gradient(135deg, rgba(135, 206, 235, 0.16), rgba(255, 255, 255, 0.9));
  color: #1a4c67;
  font-size: 0.86rem;
  line-height: 1.5;
}

.price-card-cta {
  margin-top: 1.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: 100%;
  padding: 0.78rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(15, 36, 52, 0.12);
  background: rgba(255, 255, 255, 0.86);
  color: #0f2434;
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.price-card-cta::after {
  content: '→';
  font-size: 0.95rem;
}

.price-card-cta:hover,
.price-card-cta:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 87, 51, 0.35);
  box-shadow: 0 10px 26px rgba(15, 36, 52, 0.14);
}

.price-card.featured .price-card-cta {
  background: linear-gradient(135deg, #ff5733, #ff7d44);
  border-color: rgba(255, 87, 51, 0.68);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(255, 87, 51, 0.24);
}

.contact-form-card {
  border: 1px solid rgba(43, 143, 191, 0.2);
  box-shadow: 0 22px 52px rgba(11, 38, 57, 0.14);
}

.form-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 0.9rem 0 1rem;
}

.form-benefits span {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.72rem;
  border-radius: 999px;
  background: rgba(135, 206, 235, 0.15);
  border: 1px solid rgba(43, 143, 191, 0.2);
  color: #205067;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.field input,
.field select,
.field textarea {
  border-color: rgba(15, 36, 52, 0.16);
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fcff 100%);
}

.field label {
  color: #12364d;
}

.form-submit-wrap {
  margin-top: 1rem;
}

.contact-submit {
  min-width: 100%;
}

.mobile-sticky-cta-wrap {
  display: none;
}

@media (max-width: 720px) {
  .price-page .site-footer {
    padding-bottom: 7.2rem;
  }

  .mobile-sticky-cta-wrap {
    position: fixed;
    left: 0.85rem;
    right: 0.85rem;
    bottom: 5.6rem;
    z-index: 87;
    display: block;
  }

  .mobile-sticky-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.95rem 1rem;
    border-radius: 16px;
    background: linear-gradient(135deg, #ff5733 0%, #ff7d44 100%);
    color: #0b1f2e;
    font-size: 0.84rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 18px 40px rgba(255, 87, 51, 0.36);
  }

  .contact-form-card {
    padding: 1.2rem;
  }

  .form-submit-wrap {
    position: sticky;
    bottom: 0.65rem;
    z-index: 7;
    margin-top: 1rem;
    padding: 0.72rem;
    border-radius: 16px;
    border: 1px solid rgba(43, 143, 191, 0.2);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(243, 250, 255, 0.96));
    box-shadow: 0 18px 40px rgba(16, 58, 84, 0.18);
    backdrop-filter: blur(8px);
  }

  .form-submit-wrap .form-note {
    margin-top: 0.6rem;
    margin-bottom: 0;
    font-size: 0.75rem;
    line-height: 1.4;
  }
}

/* Round 4 conversion refinements: consent-safe event tracking + stronger thank-you state */
.thank-you-panel {
  display: none;
  margin: 0.9rem 0 1rem;
  padding: 1rem;
  border-radius: 18px;
  border: 1px solid rgba(204, 255, 0, 0.42);
  background:
    linear-gradient(160deg, rgba(204, 255, 0, 0.24), rgba(255, 255, 255, 0.95)),
    linear-gradient(160deg, rgba(135, 206, 235, 0.2), rgba(255, 255, 255, 0.9));
  box-shadow: 0 14px 34px rgba(64, 108, 8, 0.14);
}

.thank-you-panel.visible {
  display: block;
  animation: thank-you-rise 380ms ease;
}

.thank-you-panel strong {
  display: block;
  font-size: 1.04rem;
  color: #294600;
  margin-bottom: 0.35rem;
}

.thank-you-panel p {
  margin: 0;
  color: #355305;
  line-height: 1.55;
}

.thank-you-actions {
  margin-top: 0.8rem;
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.thank-you-actions a {
  min-width: 170px;
}

.lead-sent .contact-form-card {
  border-color: rgba(204, 255, 0, 0.36);
}

@keyframes thank-you-rise {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

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

@media (max-width: 720px) {
  .thank-you-actions {
    gap: 0.5rem;
  }

  .thank-you-actions a {
    width: 100%;
    min-width: 0;
  }
}













/* Language switcher */
.header-tools {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-left: 0.75rem;
}

.lang-switch {
  position: relative;
}

.lang-select {
  appearance: none;
  min-width: 7.8rem;
  padding: 0.62rem 2.05rem 0.62rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(15, 36, 52, 0.2);
  background: rgba(255, 255, 255, 0.95);
  color: #0b1f2e;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}

.lang-switch::after {
  content: '▾';
  position: absolute;
  right: 0.82rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.68rem;
  color: #0b1f2e;
  pointer-events: none;
}

.contact-top-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

@media (max-width: 960px) {
  .header-inner .lang-switch {
    margin-left: auto;
  }

  .header-inner .lang-select {
    min-width: 6.9rem;
    padding: 0.56rem 1.95rem 0.56rem 0.7rem;
    background: #eef7fc;
    border-color: rgba(11, 31, 46, 0.28);
    color: #0b1f2e;
  }

  .site-nav a {
    color: rgba(240, 248, 255, 0.94);
  }
}

@media (max-width: 720px) {
  .contact-top-actions {
    width: 100%;
    justify-content: space-between;
  }

  .contact-top-actions .lang-select {
    min-width: 6.5rem;
    font-size: 0.7rem;
  }
}

@media (max-width: 960px) {
  .header-inner > .lang-switch {
    order: 2;
    margin-left: auto;
  }

  .header-inner .nav-toggle {
    order: 3;
    margin-left: 0.45rem;
  }
}


@media (max-width: 960px) {
  .nav-overlay {
    background: rgba(4, 10, 18, 0.62);
  }
}




/* Social direct contact: TikTok + Instagram */
.social-quick-links {
  display: flex;
  align-items: center;
  gap: 0.52rem;
}

.site-nav .social-quick-links {
  margin-left: 0.4rem;
}

.social-quick-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  border: 1px solid rgba(43, 143, 191, 0.32);
  background: linear-gradient(135deg, rgba(12, 30, 44, 0.94), rgba(27, 72, 103, 0.92));
  box-shadow: 0 10px 22px rgba(8, 23, 35, 0.2);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.social-quick-link.tiktok {
  border-color: rgba(204, 255, 0, 0.44);
}

.social-quick-link.instagram {
  border-color: rgba(255, 87, 51, 0.44);
}

.social-quick-link:hover,
.social-quick-link:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(8, 23, 35, 0.28);
}

.social-quick-link img {
  width: 0.95rem;
  height: 0.95rem;
  object-fit: contain;
}

.social-link-text {
  display: none;
}

.contact-top-actions .social-quick-link {
  width: auto;
  height: 2.1rem;
  padding: 0 0.72rem;
  border-radius: 12px;
}

.contact-top-actions .social-link-text {
  display: inline-block;
  color: #ffffff;
  font-size: 0.69rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 960px) {
  .site-nav .social-quick-links {
    width: 100%;
    margin-top: 0.95rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(135, 206, 235, 0.3);
  }

  .site-nav .social-quick-link {
    width: auto;
    height: 2.32rem;
    padding: 0 0.86rem;
    border-radius: 13px;
    background: linear-gradient(135deg, rgba(11, 30, 45, 0.96), rgba(20, 56, 81, 0.94));
    border-color: rgba(244, 251, 255, 0.24);
  }

  .site-nav .social-link-text {
    display: inline-block;
    color: rgba(244, 251, 255, 0.96);
    font-size: 0.73rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
}

@media (max-width: 720px) {
  .contact-top-actions {
    width: 100%;
    gap: 0.55rem;
    flex-wrap: wrap;
  }

  .contact-top-actions .social-quick-links {
    width: 100%;
  }

  .contact-top-actions .social-quick-link {
    flex: 1;
    justify-content: center;
    min-width: 0;
    height: 2.34rem;
  }
}

.wa-fab {
  position: fixed;
  bottom: 1.35rem;
  right: 1.35rem;
  width: var(--wa-size);
  height: var(--wa-size);
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #6dff92 0 35%, transparent 45%), linear-gradient(135deg, #22c35e, #0ba34a);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 32px rgba(12, 45, 24, 0.32), 0 6px 16px rgba(12, 45, 24, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.26);
  z-index: 9999;
  cursor: grab;
  transition: transform 160ms ease, box-shadow 160ms ease;
  user-select: none;
  touch-action: none;
  opacity: 0.98;
}

.wa-fab:hover,
.wa-fab:focus-visible {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 14px 32px rgba(12, 45, 24, 0.36), 0 6px 14px rgba(12, 45, 24, 0.26);
}

.wa-fab:focus-visible {
  outline: 2px solid #ccff00;
  outline-offset: 3px;
}

.wa-fab.dragging {
  cursor: grabbing;
  box-shadow: 0 16px 34px rgba(12, 45, 24, 0.3);
}

.wa-fab svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.wa-fab .wa-dot {
  fill: currentColor;
  stroke: none;
}

@media (max-width: 640px) {
  .wa-fab {
    width: 56px;
    height: 56px;
    bottom: 0.95rem;
    right: 0.95rem;
  }
}

@media (max-height: 860px) and (min-width: 721px) {
  .hero {
    padding-top: 5.4rem;
    padding-bottom: 0.8rem;
  }

  .hero-inner {
    padding: 0.9rem 1.1rem;
  }

  .hero-logo {
    width: clamp(128px, 14vw, 178px);
    margin-bottom: 0.5rem;
  }

  .hero-title {
    font-size: clamp(2.4rem, 5.2vw, 4.3rem);
  }

  .hero-subtitle {
    max-width: 720px;
    margin-top: 0.68rem;
    font-size: clamp(0.9rem, 1.1vw, 1rem);
    line-height: 1.4;
  }

  .hero-actions {
    margin-top: 0.85rem;
  }

  .hero-footer {
    display: none;
  }
}
