:root {
  --ink: #071821;
  --ink-soft: #143041;
  --ink-muted: #4a6677;
  --paper: #f4f8fa;
  --paper-2: #e8f1f5;
  --white: #ffffff;
  --teal: #14b8a6;
  --teal-deep: #0d9488;
  --teal-glow: rgba(20, 184, 166, 0.28);
  --amber: #f0a202;
  --amber-deep: #d97706;
  --line: rgba(7, 24, 33, 0.1);
  --line-light: rgba(255, 255, 255, 0.12);
  --shadow: 0 18px 50px rgba(7, 24, 33, 0.12);
  --radius: 18px;
  --radius-sm: 12px;
  --font-display: "Outfit", sans-serif;
  --font-body: "Plus Jakarta Sans", sans-serif;
  --container: 1160px;
  --header-h: 78px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 90% -10%, rgba(20, 184, 166, 0.12), transparent 55%),
    radial-gradient(900px 500px at -10% 20%, rgba(240, 162, 2, 0.08), transparent 50%),
    linear-gradient(180deg, #f7fbfd 0%, var(--paper) 40%, #eef5f8 100%);
  line-height: 1.65;
  min-height: 100vh;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
}

p {
  margin: 0 0 1rem;
}

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  background: var(--teal);
  color: var(--ink);
  padding: 0.7rem 1rem;
  border-radius: 999px;
  z-index: 1000;
  font-weight: 600;
}

.skip-link:focus {
  top: 1rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease), backdrop-filter 0.35s var(--ease);
  background: rgba(244, 248, 250, 0.72);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(7, 24, 33, 0.92);
  border-bottom-color: var(--line-light);
  box-shadow: 0 10px 30px rgba(7, 24, 33, 0.18);
  color: var(--white);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.brand-mark-wrap {
  position: relative;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.brand-mark,
.brand img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(7, 24, 33, 0.12);
}

.brand-mark-wrap .brand-mark {
  position: absolute;
  inset: 0;
  transition: opacity 0.3s var(--ease);
}

.brand-mark-dark {
  opacity: 1;
  z-index: 1;
}

.brand-mark-light {
  opacity: 0;
  z-index: 0;
  pointer-events: none;
}

.site-header.is-scrolled .brand-mark-dark {
  opacity: 0;
  z-index: 0;
  pointer-events: none;
}

.site-header.is-scrolled .brand-mark-light {
  opacity: 1;
  z-index: 1;
  pointer-events: auto;
}

.brand-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.brand-name span {
  color: var(--teal-deep);
}

.site-header.is-scrolled .brand-name span {
  color: var(--teal);
}

.brand-sub {
  font-size: 0.72rem;
  color: var(--ink-muted);
  font-weight: 500;
}

.site-header.is-scrolled .brand-sub {
  color: rgba(255, 255, 255, 0.65);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink-soft);
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}

.site-header.is-scrolled .nav-link {
  color: rgba(255, 255, 255, 0.86);
}

.nav-link:hover,
.nav-link.is-active {
  background: rgba(20, 184, 166, 0.12);
  color: var(--teal-deep);
}

.site-header.is-scrolled .nav-link:hover,
.site-header.is-scrolled .nav-link.is-active {
  background: rgba(20, 184, 166, 0.16);
  color: var(--teal);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-panel {
  position: absolute;
  top: calc(100% + 0.6rem);
  left: 0;
  min-width: 260px;
  padding: 0.6rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s;
  z-index: 50;
}

.nav-dropdown.is-open .nav-dropdown-panel,
.nav-dropdown:hover .nav-dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-panel a {
  display: block;
  padding: 0.65rem 0.8rem;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 560;
  color: var(--ink-soft);
}

.nav-dropdown-panel a:hover,
.nav-dropdown-panel a.is-active {
  background: var(--paper-2);
  color: var(--teal-deep);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  padding: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.25s;
}

.site-header.is-scrolled .nav-toggle {
  border-color: var(--line-light);
  background: rgba(255, 255, 255, 0.08);
}

.site-header.is-scrolled .nav-toggle span {
  background: var(--white);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 1rem 1.6rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), filter 0.25s var(--ease), background 0.25s var(--ease);
  font-family: inherit;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.38) 45%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.55s var(--ease);
  z-index: -1;
  pointer-events: none;
}

.btn:hover {
  transform: translateY(-3px) scale(1.02);
  filter: brightness(1.08);
}

.btn:hover::after {
  transform: translateX(120%);
}

.btn:active {
  transform: translateY(-1px) scale(0.99);
}

.btn-sm {
  padding: 0.72rem 1.1rem;
  font-size: 0.88rem;
}

.btn-accent {
  background: linear-gradient(135deg, #ffd84d 0%, #ffb703 45%, #fb8500 100%);
  color: #1a1203;
  box-shadow:
    0 0 0 1px rgba(255, 215, 77, 0.45),
    0 12px 30px rgba(251, 133, 0, 0.45),
    0 0 28px rgba(255, 183, 3, 0.35);
}

.btn-accent:hover {
  box-shadow:
    0 0 0 1px rgba(255, 215, 77, 0.7),
    0 16px 36px rgba(251, 133, 0, 0.55),
    0 0 36px rgba(255, 183, 3, 0.5);
}

.btn-primary {
  background: linear-gradient(135deg, #5eead4 0%, #2dd4bf 40%, #14b8a6 100%);
  color: #04201c;
  box-shadow:
    0 0 0 1px rgba(94, 234, 212, 0.45),
    0 12px 30px rgba(20, 184, 166, 0.4),
    0 0 28px rgba(45, 212, 191, 0.35);
}

.btn-primary:hover {
  box-shadow:
    0 0 0 1px rgba(94, 234, 212, 0.7),
    0 16px 36px rgba(20, 184, 166, 0.55),
    0 0 36px rgba(45, 212, 191, 0.5);
}

.btn-call {
  background: linear-gradient(135deg, #fff1a8 0%, #ffd166 25%, #ff9f1c 55%, #ff6b00 100%);
  color: #1a0f00;
  box-shadow:
    0 0 0 2px rgba(255, 241, 168, 0.55),
    0 14px 34px rgba(255, 107, 0, 0.5),
    0 0 40px rgba(255, 159, 28, 0.45);
  animation: callPulse 2s ease-in-out infinite;
}

.btn-call:hover {
  box-shadow:
    0 0 0 2px rgba(255, 241, 168, 0.85),
    0 18px 40px rgba(255, 107, 0, 0.65),
    0 0 50px rgba(255, 159, 28, 0.6);
  animation: none;
}

.btn-call .call-ico {
  width: 1.15em;
  height: 1.15em;
  flex-shrink: 0;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  text-shadow: none;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.28);
  border-color: rgba(255, 255, 255, 0.55);
}

.btn-ghost-dark {
  background: #fff;
  color: var(--ink);
  border: 1px solid rgba(20, 184, 166, 0.35);
  box-shadow: 0 10px 24px rgba(7, 24, 33, 0.08);
  text-shadow: none;
}

.btn-ghost-dark:hover {
  border-color: var(--teal);
  box-shadow: 0 14px 28px rgba(20, 184, 166, 0.18);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.95rem;
}

@keyframes callPulse {
  0%, 100% {
    box-shadow:
      0 0 0 2px rgba(255, 241, 168, 0.55),
      0 14px 34px rgba(255, 107, 0, 0.5),
      0 0 40px rgba(255, 159, 28, 0.45);
    transform: translateY(0) scale(1);
  }
  50% {
    box-shadow:
      0 0 0 4px rgba(255, 241, 168, 0.35),
      0 18px 42px rgba(255, 107, 0, 0.62),
      0 0 55px rgba(255, 159, 28, 0.65);
    transform: translateY(-1px) scale(1.03);
  }
}

.header-cta {
  font-weight: 800 !important;
  letter-spacing: 0.01em;
}

.site-header.is-scrolled .header-cta {
  animation: callPulse 2s ease-in-out infinite;
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: heroZoom 18s ease-in-out infinite alternate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(100deg, rgba(7, 24, 33, 0.88) 8%, rgba(7, 24, 33, 0.55) 48%, rgba(7, 24, 33, 0.28) 100%),
    linear-gradient(0deg, rgba(7, 24, 33, 0.72) 0%, transparent 45%);
}

.hero-content {
  width: min(100% - 2.5rem, var(--container));
  margin: 0 auto;
  padding: 5rem 0 4.5rem;
  max-width: 720px;
  margin-left: max(1.25rem, calc((100% - var(--container)) / 2));
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1.1rem;
}

.hero-kicker::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--teal);
}

.hero h1 {
  font-size: clamp(2.4rem, 5.4vw, 4.2rem);
  font-weight: 800;
  margin-bottom: 1rem;
  max-width: 12ch;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 0.85rem;
}

.hero p {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 48ch;
  margin-bottom: 1.8rem;
}

@keyframes heroZoom {
  from { transform: scale(1.02); }
  to { transform: scale(1.08); }
}

/* Sections */
.section {
  padding: 5.5rem 0;
}

.section- Tight {
  padding: 4rem 0;
}

.section-head {
  max-width: 680px;
  margin-bottom: 2.5rem;
}

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-deep);
  margin-bottom: 0.75rem;
}

.section-head h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  margin-bottom: 0.9rem;
}

.section-head p {
  color: var(--ink-muted);
  font-size: 1.05rem;
}

.about-band {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.about-visual {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  min-height: 420px;
  box-shadow: var(--shadow);
}

.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 420px;
}

.about-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(7, 24, 33, 0.15), rgba(20, 184, 166, 0.35));
}

.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin: 1.5rem 0 2rem;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.9rem 1rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 14px;
  font-weight: 600;
  font-size: 0.95rem;
}

.feature-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 0.4rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--amber));
  flex-shrink: 0;
}

.cta-phone {
  margin-top: 2rem;
  padding: 1.55rem 1.75rem;
  border-radius: 24px;
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 183, 3, 0.28), transparent 42%),
    radial-gradient(circle at 88% 80%, rgba(20, 184, 166, 0.22), transparent 45%),
    linear-gradient(135deg, #06151d 0%, #0d2a38 55%, #123848 100%);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  flex-wrap: wrap;
  border: 1px solid rgba(255, 183, 3, 0.28);
  box-shadow:
    0 18px 40px rgba(7, 24, 33, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}

.cta-phone::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 159, 28, 0.22), transparent 70%);
  right: -40px;
  top: -50px;
  pointer-events: none;
}

.cta-phone-copy {
  position: relative;
  z-index: 1;
}

.cta-phone .section-label {
  margin-bottom: 0.35rem;
}

.cta-phone strong,
.cta-phone .call-number {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3.4vw, 2.25rem);
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: #ffe8a3;
  text-shadow: 0 0 18px rgba(255, 183, 3, 0.45);
  transition: color 0.25s var(--ease), transform 0.25s var(--ease);
}

.cta-phone .call-number:hover {
  color: #fff;
  transform: scale(1.03);
}

.cta-phone .call-number .call-ico {
  width: 1.05em;
  height: 1.05em;
  color: #ffb703;
  filter: drop-shadow(0 0 8px rgba(255, 183, 3, 0.7));
  animation: ringShake 2.4s ease-in-out infinite;
}

@keyframes ringShake {
  0%, 70%, 100% { transform: rotate(0deg); }
  75% { transform: rotate(-12deg); }
  80% { transform: rotate(12deg); }
  85% { transform: rotate(-8deg); }
  90% { transform: rotate(8deg); }
  95% { transform: rotate(0deg); }
}

/* Solutions section */
.solutions-section {
  position: relative;
  padding-top: 4.5rem;
}

.solutions-section::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 420px;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(20, 184, 166, 0.16), transparent 55%),
    radial-gradient(ellipse at 85% 10%, rgba(255, 159, 28, 0.14), transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.solutions-section > .container {
  position: relative;
  z-index: 1;
}

.solutions-intro {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2.6rem;
}

.solutions-intro-copy .section-label {
  margin-bottom: 0.85rem;
}

.solutions-intro-copy h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
  max-width: 14ch;
}

.title-highlight {
  display: inline;
  background: linear-gradient(120deg, rgba(255, 209, 102, 0.55), rgba(94, 234, 212, 0.45));
  background-size: 100% 0.42em;
  background-repeat: no-repeat;
  background-position: 0 88%;
  padding: 0 0.12em;
  border-radius: 0.15em;
  color: #0b3b36;
}

.solutions-intro-copy p {
  color: var(--ink-muted);
  font-size: 1.05rem;
  max-width: 52ch;
  margin-bottom: 1.2rem;
}

.solutions-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.solutions-pills span {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  color: #0f4c47;
  background: linear-gradient(135deg, rgba(94, 234, 212, 0.28), rgba(255, 209, 102, 0.22));
  border: 1px solid rgba(20, 184, 166, 0.28);
}

.solutions-intro-media {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow:
    0 22px 50px rgba(7, 24, 33, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.4);
  min-height: 280px;
  transform: rotate(-1.2deg);
  transition: transform 0.35s var(--ease);
}

.solutions-intro-media:hover {
  transform: rotate(0deg) scale(1.015);
}

.solutions-intro-media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.solutions-intro-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, transparent 40%, rgba(7, 24, 33, 0.35));
  pointer-events: none;
}

.solutions-intro-badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 2;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #fff1a8, #ffb703 55%, #ff8c00);
  color: #1a0f00;
  font-weight: 800;
  font-size: 0.88rem;
  box-shadow: 0 10px 24px rgba(255, 140, 0, 0.35);
}

/* Guides grid */
.guides-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
}

.guide-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(7, 24, 33, 0.08);
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
  min-height: 100%;
  box-shadow: 0 12px 28px rgba(7, 24, 33, 0.06);
}

.guide-tile:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 48px rgba(7, 24, 33, 0.16);
  border-color: rgba(20, 184, 166, 0.35);
}

.guide-media {
  position: relative;
  display: block;
  height: 168px;
  overflow: hidden;
}

.guide-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 0.55s var(--ease);
}

.guide-tile:hover .guide-media img {
  transform: scale(1.12);
}

.guide-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(7, 24, 33, 0.45));
  pointer-events: none;
}

.guide-icon {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 2;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #5eead4, #14b8a6);
  color: #04201c;
  box-shadow:
    0 0 0 3px rgba(255, 255, 255, 0.85),
    0 12px 24px rgba(20, 184, 166, 0.45);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.guide-tile:hover .guide-icon {
  transform: scale(1.08) rotate(-4deg);
}

.guide-tile.accent-amber .guide-icon {
  background: linear-gradient(145deg, #ffe08a, #ff9f1c);
  color: #1a0f00;
  box-shadow:
    0 0 0 3px rgba(255, 255, 255, 0.85),
    0 12px 24px rgba(255, 159, 28, 0.45);
}

.guide-tile.accent-coral .guide-icon {
  background: linear-gradient(145deg, #fdba74, #f97316);
  color: #1a0f00;
  box-shadow:
    0 0 0 3px rgba(255, 255, 255, 0.85),
    0 12px 24px rgba(249, 115, 22, 0.45);
}

.guide-body {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding: 1.25rem 1.25rem 1.35rem;
  flex: 1;
}

.guide-tile h3 {
  font-size: 1.22rem;
  margin: 0;
  color: var(--ink);
  line-height: 1.25;
  background: linear-gradient(90deg, currentColor 0%, currentColor 100%);
}

.guide-tile.accent-teal h3 {
  color: #0f766e;
}

.guide-tile.accent-amber h3 {
  color: #b45309;
}

.guide-tile.accent-coral h3 {
  color: #c2410c;
}

.guide-tile h3::after {
  content: "";
  display: block;
  width: 42px;
  height: 3px;
  margin-top: 0.55rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #14b8a6, #ffb703);
}

.guide-tile.accent-amber h3::after {
  background: linear-gradient(90deg, #ffb703, #ff6b00);
}

.guide-tile.accent-coral h3::after {
  background: linear-gradient(90deg, #fb923c, #ea580c);
}

.guide-tile p {
  color: var(--ink-muted);
  font-size: 0.94rem;
  flex: 1;
  margin: 0;
}

.guide-tile .learn {
  font-weight: 800;
  color: #0f766e;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.2rem;
}

.guide-tile.accent-amber .learn {
  color: #b45309;
}

.guide-tile.accent-coral .learn {
  color: #c2410c;
}

.guide-tile .learn::after {
  content: "→";
  transition: transform 0.25s var(--ease);
}

.guide-tile:hover .learn::after {
  transform: translateX(5px);
}

@media (max-width: 980px) {
  .solutions-intro {
    grid-template-columns: 1fr;
  }

  .solutions-intro-copy h2 {
    max-width: none;
  }

  .solutions-intro-media {
    transform: none;
    min-height: 220px;
  }
}

/* Testimonials */
.testimonials {
  background:
    linear-gradient(180deg, rgba(7, 24, 33, 0.96), #0a2230),
    var(--ink);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.22), transparent 70%);
  top: -120px;
  right: -80px;
  pointer-events: none;
}

.testimonials .section-label {
  color: var(--teal);
}

.testimonials .section-head p {
  color: rgba(255, 255, 255, 0.7);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.testimonial {
  padding: 1.7rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.testimonial p {
  font-size: 1.02rem;
  color: rgba(255, 255, 255, 0.88);
}

.testimonial footer {
  margin-top: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.testimonial strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.testimonial span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
}

/* Page hero */
.page-hero {
  position: relative;
  min-height: 280px;
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}

.page-hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(100deg, rgba(7, 24, 33, 0.9), rgba(7, 24, 33, 0.55));
}

.page-hero-content {
  width: min(100% - 2.5rem, var(--container));
  margin: 0 auto;
  padding: 4rem 0 2.8rem;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  max-width: 16ch;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.9rem;
}

.breadcrumb a:hover {
  color: var(--teal);
}

/* Content layouts */
.content-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 2.2rem;
  align-items: start;
}

.prose {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(1.4rem, 3vw, 2.2rem);
}

.prose h2 {
  font-size: 1.55rem;
  margin-top: 1.8rem;
}

.prose h2:first-child,
.prose > h2:first-of-type {
  margin-top: 0;
}

.prose h3 {
  font-size: 1.15rem;
  margin-top: 1.4rem;
}

.prose p,
.prose li {
  color: var(--ink-muted);
}

.prose ul,
.prose ol {
  margin: 0 0 1.1rem;
  padding-left: 1.2rem;
}

.prose ul {
  list-style: disc;
}

.prose ol {
  list-style: decimal;
}

.prose li {
  margin-bottom: 0.45rem;
}

.prose a {
  color: var(--teal-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.side-panel {
  position: sticky;
  top: calc(var(--header-h) + 1rem);
  display: grid;
  gap: 1rem;
}

.side-card {
  background: var(--ink);
  color: var(--white);
  border-radius: 20px;
  padding: 1.35rem;
}

.side-card h3 {
  font-size: 1.1rem;
}

.side-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
}

.side-card a.phone,
.side-card .call-number {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0.9rem 0 1.05rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: #1a0f00;
  background: linear-gradient(135deg, #fff1a8, #ffb703 50%, #ff8c00);
  box-shadow:
    0 0 0 1px rgba(255, 241, 168, 0.5),
    0 10px 24px rgba(255, 140, 0, 0.4);
  animation: callPulse 2.2s ease-in-out infinite;
}

.side-card a.phone:hover,
.side-card .call-number:hover {
  filter: brightness(1.08);
  color: #1a0f00;
}

.info-card.is-hotline {
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 183, 3, 0.28), transparent 45%),
    linear-gradient(145deg, #fffaf0, #fff);
  border: 1px solid rgba(255, 159, 28, 0.45);
  box-shadow: 0 14px 30px rgba(255, 140, 0, 0.14);
}

.info-card.is-hotline h3 {
  color: #c2410c;
}

.info-card.is-hotline a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: #9a3412;
  text-shadow: 0 0 12px rgba(255, 183, 3, 0.25);
}

.info-card.is-hotline a:hover {
  color: #c2410c;
}

.footer-contact a.call-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #ffd166 !important;
  font-weight: 800;
  font-size: 1.05rem;
  text-shadow: 0 0 12px rgba(255, 183, 3, 0.35);
}

.footer-contact a.call-link:hover {
  color: #ffe8a3 !important;
}

/* Floating call FAB */
.floating-call {
  position: fixed;
  right: 1.15rem;
  bottom: 1.15rem;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.95rem 1.2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #fff1a8 0%, #ffd166 30%, #ff9f1c 65%, #ff6b00 100%);
  color: #1a0f00;
  font-weight: 800;
  font-size: 0.95rem;
  text-decoration: none;
  box-shadow:
    0 0 0 3px rgba(255, 241, 168, 0.35),
    0 16px 36px rgba(255, 107, 0, 0.5),
    0 0 40px rgba(255, 159, 28, 0.45);
  animation: callPulse 2s ease-in-out infinite;
}

.floating-call:hover {
  transform: translateY(-3px) scale(1.04);
  filter: brightness(1.08);
  animation: none;
}

.floating-call .call-ico {
  width: 1.2em;
  height: 1.2em;
  animation: ringShake 2.4s ease-in-out infinite;
}

.floating-call-label {
  max-width: 16ch;
  line-height: 1.15;
}

@media (max-width: 640px) {
  .floating-call-label {
    display: none;
  }

  .floating-call {
    width: 60px;
    height: 60px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }

  .floating-call .call-ico {
    width: 1.45em;
    height: 1.45em;
  }
}

.side-links {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.2rem;
}

.side-links h3 {
  font-size: 1rem;
  margin-bottom: 0.85rem;
}

.side-links a {
  display: block;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.side-links a:last-child {
  border-bottom: none;
}

.side-links a:hover {
  color: var(--teal-deep);
}

/* Mission cards */
.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.mission-card {
  padding: 1.5rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
}

.mission-card h3 {
  font-size: 1.15rem;
  color: var(--teal-deep);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.5rem;
}

.contact-info {
  display: grid;
  gap: 1rem;
}

.info-card {
  padding: 1.35rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
}

.info-card h3 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--teal-deep);
  margin-bottom: 0.45rem;
}

.info-card p,
.info-card a {
  font-weight: 600;
  font-size: 1.05rem;
}

.contact-form {
  padding: 1.6rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-field {
  margin-bottom: 1rem;
}

.form-field label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}

.form-field .req {
  color: #c2410c;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  font: inherit;
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 4px var(--teal-glow);
}

.form-field.is-invalid input,
.form-field.is-invalid textarea,
.form-field.is-invalid select {
  border-color: #dc2626;
  box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.12);
}

.field-error {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: #b91c1c;
}

.form-field textarea {
  min-height: 140px;
  resize: vertical;
}

.form-note {
  margin-top: 0.9rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  font-weight: 600;
}

.form-note.is-success {
  background: rgba(20, 184, 166, 0.12);
  color: var(--teal-deep);
}

.form-note.is-error {
  background: rgba(220, 38, 38, 0.1);
  color: #b91c1c;
}

.hp-field {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.btn.is-loading {
  opacity: 0.75;
  cursor: wait;
}

/* Footer */
.disclaimer-strip {
  background: #102937;
  color: rgba(255, 255, 255, 0.72);
  padding: 1.6rem 0;
  font-size: 0.88rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.disclaimer-strip strong {
  color: #fff;
}

.site-footer {
  position: relative;
  background: #071821;
  color: rgba(255, 255, 255, 0.75);
  padding: 4rem 0 0;
  overflow: hidden;
}

.footer-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.18), transparent 70%);
  left: -160px;
  bottom: -180px;
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr 1.1fr;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.footer-brand p {
  margin-top: 1rem;
  font-size: 0.94rem;
  max-width: 36ch;
}

.site-footer h3 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.72);
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--teal);
}

.footer-links li + li,
.footer-contact li + li {
  margin-top: 0.55rem;
}

.footer-contact li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
}

.footer-contact svg {
  flex-shrink: 0;
  margin-top: 0.15rem;
  color: var(--teal);
}

.footer-bottom {
  margin-top: 2.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.2rem 0;
  font-size: 0.88rem;
  position: relative;
  z-index: 1;
}

.brand-footer .brand-name span {
  color: var(--teal);
}

/* Reveal animations */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

[data-reveal="left"] {
  transform: translateX(-28px);
}

[data-reveal="right"] {
  transform: translateX(28px);
}

[data-reveal].is-visible[data-reveal="left"],
[data-reveal].is-visible[data-reveal="right"] {
  transform: none;
}

/* Legal narrow */
.legal-wrap {
  max-width: 860px;
}

/* Responsive */
@media (max-width: 980px) {
  .about-band,
  .content-wrap,
  .contact-grid,
  .footer-grid,
  .guides-grid,
  .mission-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .guides-grid {
    grid-template-columns: 1fr 1fr;
  }

  .side-panel {
    position: static;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: rgba(7, 24, 33, 0.97);
    color: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    gap: 0.35rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    max-height: calc(100svh - var(--header-h));
    overflow: auto;
  }

  .site-nav.is-open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav .nav-link,
  .site-header.is-scrolled .nav-link {
    color: rgba(255, 255, 255, 0.9);
    justify-content: space-between;
  }

  .nav-dropdown-panel {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    box-shadow: none;
    display: none;
    min-width: 0;
  }

  .nav-dropdown.is-open .nav-dropdown-panel {
    display: block;
  }

  .nav-dropdown-panel a {
    color: rgba(255, 255, 255, 0.85);
  }

  .header-cta {
    width: 100%;
    justify-content: center;
  }

  .hero-content {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 640px) {
  .guides-grid,
  .form-row,
  .feature-list {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 78svh;
  }

  .brand-sub {
    display: none;
  }

  .section {
    padding: 3.8rem 0;
  }
}
