:root {
  --bg: #061a24;
  --bg-soft: #0d2431;
  --card: rgba(9, 24, 34, 0.78);
  --card-strong: rgba(7, 21, 30, 0.92);
  --text: #e7edf0;
  --muted: #aab8c0;
  --line: rgba(255, 255, 255, 0.11);
  --accent: #d5b36d;
  --accent-strong: #f1d89c;
  --aqua: #78c9c9;
  --shadow: 0 18px 80px rgba(0, 0, 0, 0.3);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --content-width: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Sora", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(120, 201, 201, 0.14), transparent 30%),
    radial-gradient(circle at 80% 10%, rgba(213, 179, 109, 0.14), transparent 24%),
    linear-gradient(180deg, #04121a 0%, #061a24 38%, #0a1d29 100%);
  min-height: 100vh;
}

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

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

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 20;
  padding: 0.75rem 1rem;
  background: #fff;
  color: #000;
  border-radius: 0.5rem;
}

.page-glow {
  position: fixed;
  inset: auto;
  width: 28rem;
  height: 28rem;
  border-radius: 999px;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.2;
  z-index: 0;
}

.page-glow-left {
  left: -10rem;
  top: 10rem;
  background: rgba(120, 201, 201, 0.65);
}

.page-glow-right {
  right: -12rem;
  top: 24rem;
  background: rgba(213, 179, 109, 0.65);
}

.site-header,
.hero,
.section,
.trust-strip,
.site-footer {
  position: relative;
  z-index: 1;
  max-width: var(--content-width);
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.site-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding-top: 1.5rem;
  padding-bottom: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.brand img {
  width: 4.5rem;
  height: 4.5rem;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  gap: 0.2rem;
}

.brand-copy strong {
  font-size: 1rem;
  font-weight: 600;
}

.brand-copy span:last-child {
  color: var(--muted);
  font-size: 0.82rem;
}

.site-nav {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 1.35rem;
  padding: 0.85rem 1.05rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(7, 20, 28, 0.58);
  backdrop-filter: blur(16px);
}

.site-nav a {
  color: var(--muted);
  font-size: 0.9rem;
  transition: color 180ms ease;
}

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

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

.header-cta {
  padding: 0.9rem 1.3rem;
  font-size: 0.88rem;
  font-weight: 600;
  background: linear-gradient(135deg, rgba(213, 179, 109, 0.92), rgba(241, 216, 156, 0.88));
  color: #13202c;
  box-shadow: 0 12px 35px rgba(213, 179, 109, 0.25);
}

.header-cta:hover,
.button:hover {
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 0.35rem;
  justify-self: end;
}

.nav-toggle span {
  display: block;
  width: 1.5rem;
  height: 2px;
  margin: 0.32rem 0;
  background: var(--text);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 1.5rem;
  padding-top: 3.5rem;
  padding-bottom: 2rem;
}

.hero-copy,
.hero-panel,
.coverage-panel,
.contact-card,
.contact-form,
.service-card,
.approach-cards article {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-copy {
  position: relative;
  overflow: hidden;
  padding: clamp(2rem, 4vw, 4rem);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(110deg, rgba(6, 26, 36, 0.82), rgba(6, 26, 36, 0.72)),
    linear-gradient(0deg, rgba(10, 29, 41, 0.8), rgba(10, 29, 41, 0.8)),
    url("/assets/images/hero-pool.jpg") center/cover no-repeat;
}

.hero-copy::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 28%;
  background: linear-gradient(180deg, transparent, rgba(6, 26, 36, 0.75));
}

.eyebrow {
  margin: 0 0 1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 600;
}

.hero h1,
.section h2,
.contact-card h3,
.service-card h3,
.approach-cards h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  line-height: 0.96;
  letter-spacing: -0.03em;
}

.hero h1 {
  max-width: 11ch;
  font-size: clamp(3.25rem, 7vw, 6.6rem);
}

.lead,
.section-heading p,
.service-card p,
.split-copy p,
.coverage-list li,
.contact-card dd,
.form-note {
  color: var(--muted);
}

.lead {
  position: relative;
  z-index: 1;
  max-width: 42rem;
  margin: 1.5rem 0 0;
  line-height: 1.8;
}

.hero-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.7rem;
}

.button {
  min-height: 3.2rem;
  padding: 0.95rem 1.3rem;
  font-weight: 600;
}

.button-primary {
  background: linear-gradient(135deg, rgba(213, 179, 109, 0.95), rgba(241, 216, 156, 0.9));
  color: #13202c;
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.hero-points {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.7rem 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.18);
  font-size: 0.85rem;
}

.hero-panel {
  align-self: stretch;
  display: grid;
  align-content: start;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(10, 29, 41, 0.95), rgba(6, 18, 26, 0.95)),
    radial-gradient(circle at top right, rgba(120, 201, 201, 0.16), transparent 38%);
}

.panel-label,
.service-tag {
  margin: 0;
  color: var(--accent-strong);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 700;
}

.hero-panel-block {
  padding-top: 0.9rem;
  border-top: 1px solid var(--line);
}

.hero-panel-block span,
.contact-card dt,
.coverage-list p {
  display: block;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.74rem;
  font-weight: 600;
}

.hero-panel-block a,
.hero-panel-block p {
  margin: 0.55rem 0 0;
  font-size: 1.05rem;
  line-height: 1.5;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.trust-strip p {
  margin: 0;
  color: var(--muted);
  max-width: 32rem;
}

.trust-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
}

.trust-logos img {
  height: 2.7rem;
  width: auto;
  opacity: 0.9;
}

.section {
  padding-top: 5.5rem;
  padding-bottom: 1rem;
}

.section-alt {
  padding-top: 4rem;
}

.section-heading {
  max-width: 48rem;
}

.section-heading h2 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin-top: 0;
  margin-bottom: 1rem;
}

.section-heading p {
  margin: 0;
  line-height: 1.8;
}

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

.service-card {
  grid-column: span 4;
  display: grid;
  gap: 1rem;
  min-height: 100%;
  padding: 1.45rem;
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(12, 32, 45, 0.92), rgba(8, 21, 29, 0.95)),
    radial-gradient(circle at top left, rgba(120, 201, 201, 0.08), transparent 34%);
}

.service-card.wide {
  grid-column: span 6;
}

.service-card h3 {
  font-size: 2.25rem;
}

.service-card p,
.service-card li {
  line-height: 1.7;
}

.service-card ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
}

.service-link,
.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--accent-strong);
  font-size: 0.92rem;
  font-weight: 600;
}

.service-link::after,
.inline-link::after {
  content: ">";
  line-height: 1;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 1.25rem;
  align-items: start;
}

.split-copy h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1rem;
}

.split-copy p:last-child {
  line-height: 1.8;
}

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

.approach-cards article {
  min-height: 100%;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(10, 29, 41, 0.94), rgba(8, 21, 29, 0.98)),
    radial-gradient(circle at top right, rgba(213, 179, 109, 0.1), transparent 36%);
}

.approach-cards span {
  display: inline-flex;
  width: 2.4rem;
  height: 2.4rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 700;
}

.approach-cards h3 {
  font-size: 2rem;
  margin-top: 1rem;
  margin-bottom: 0.9rem;
}

.approach-cards p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.coverage-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.75fr);
  gap: 1.5rem;
  padding: 2rem;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(10, 29, 41, 0.94), rgba(8, 21, 29, 0.96)),
    radial-gradient(circle at bottom left, rgba(120, 201, 201, 0.09), transparent 38%);
}

.coverage-panel h2 {
  font-size: clamp(2.4rem, 4vw, 4rem);
  margin: 0;
}

.coverage-list ul {
  margin: 0.8rem 0 0;
  padding-left: 1.15rem;
}

.coverage-list li {
  line-height: 1.75;
}

.coverage-list p + ul + p {
  margin-top: 1.3rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: 1rem;
  margin-top: 2rem;
}

.contact-card,
.contact-form {
  padding: 1.6rem;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(10, 29, 41, 0.94), rgba(8, 21, 29, 0.96)),
    radial-gradient(circle at top right, rgba(213, 179, 109, 0.08), transparent 34%);
}

.contact-card h3 {
  font-size: 2.3rem;
}

.contact-card dl {
  margin: 1.5rem 0 0;
}

.contact-card dl div + div {
  margin-top: 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}

.contact-card dd {
  margin: 0.55rem 0 0;
  line-height: 1.7;
}

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

.contact-form label {
  display: grid;
  gap: 0.55rem;
  color: var(--text);
  font-size: 0.92rem;
}

.contact-form .full-width {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 0.95rem 1rem;
  outline: none;
}

.contact-form select {
  appearance: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(213, 179, 109, 0.9);
  box-shadow: 0 0 0 3px rgba(213, 179, 109, 0.14);
}

.contact-form option {
  color: #061a24;
}

.form-note {
  margin: 0;
  line-height: 1.7;
  font-size: 0.9rem;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  padding-top: 4rem;
  padding-bottom: 2.5rem;
  color: var(--muted);
  font-size: 0.86rem;
}

.page-shell {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 3rem 1.5rem 0;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 1rem;
}

.page-hero-copy,
.page-hero-side,
.detail-card,
.cta-panel,
.link-grid a,
.notice-card {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.page-hero-copy,
.page-hero-side,
.detail-card,
.cta-panel,
.notice-card {
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(10, 29, 41, 0.94), rgba(8, 21, 29, 0.97)),
    radial-gradient(circle at top right, rgba(120, 201, 201, 0.1), transparent 38%);
}

.page-hero-copy,
.page-hero-side,
.detail-card,
.cta-panel,
.notice-card {
  padding: 1.6rem;
}

.page-hero-copy h1,
.detail-card h2,
.cta-panel h2,
.notice-card h1 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.page-hero-copy h1,
.notice-card h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
}

.page-hero-copy p,
.page-hero-side p,
.detail-card p,
.detail-card li,
.cta-panel p,
.notice-card p {
  color: var(--muted);
  line-height: 1.75;
}

.page-hero-side dl,
.detail-card ul {
  margin: 1rem 0 0;
}

.page-hero-side div + div {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.page-hero-side dt {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.74rem;
  font-weight: 600;
}

.page-hero-side dd {
  margin: 0.4rem 0 0;
}

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

.detail-card h2,
.cta-panel h2 {
  font-size: clamp(2.1rem, 4vw, 3.2rem);
}

.detail-card ul {
  padding-left: 1.15rem;
}

.cta-panel {
  margin-top: 1rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.link-grid a {
  min-height: 100%;
  padding: 1.2rem;
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(10, 29, 41, 0.94), rgba(8, 21, 29, 0.97)),
    radial-gradient(circle at bottom left, rgba(213, 179, 109, 0.08), transparent 38%);
}

.link-grid strong {
  display: block;
  margin-bottom: 0.45rem;
}

.notice-card {
  margin-top: 1rem;
}

.home-page {
  --home-bg: #f3f7f8;
  --home-surface: rgba(255, 255, 255, 0.94);
  --home-surface-strong: #ffffff;
  --home-surface-alt: #e8f1f4;
  --home-ink: #0f2431;
  --home-ink-soft: #59707d;
  --home-line: rgba(15, 36, 49, 0.12);
  --home-accent: #0d6f8f;
  --home-accent-strong: #0b5e78;
  --home-accent-soft: #dff2f8;
  --home-gold: #c89c57;
  --home-shadow: 0 28px 60px rgba(22, 43, 58, 0.12);
  background:
    radial-gradient(circle at top left, rgba(13, 111, 143, 0.12), transparent 30%),
    radial-gradient(circle at 85% 0%, rgba(200, 156, 87, 0.13), transparent 24%),
    linear-gradient(180deg, #eef4f6 0%, #f8fbfc 28%, #eef5f8 100%);
  color: var(--home-ink);
}

.home-page .page-glow {
  opacity: 0.34;
  filter: blur(120px);
}

.home-page .page-glow-left {
  top: 5rem;
  left: -12rem;
  background: rgba(85, 168, 194, 0.42);
}

.home-page .page-glow-right {
  top: 14rem;
  right: -10rem;
  background: rgba(200, 156, 87, 0.32);
}

.home-page .site-header,
.home-hero,
.home-brand-strip,
.home-section,
.home-page .site-footer {
  position: relative;
  z-index: 1;
  max-width: var(--content-width);
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.home-page .site-header {
  position: sticky;
  top: 0;
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: rgba(243, 247, 248, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--home-line);
}

.home-page .brand-copy strong {
  color: var(--home-ink);
}

.home-page .brand-copy span:last-child {
  color: var(--home-ink-soft);
}

.home-page .site-nav {
  background: rgba(255, 255, 255, 0.8);
  border-color: var(--home-line);
  box-shadow: 0 12px 32px rgba(24, 44, 58, 0.08);
}

.home-page .site-nav a {
  color: var(--home-ink-soft);
}

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

.home-page .header-cta {
  background: linear-gradient(135deg, var(--home-accent), #0b88ad);
  color: #fff;
  box-shadow: 0 18px 32px rgba(13, 111, 143, 0.22);
}

.home-page .nav-toggle span {
  background: var(--home-ink);
}

.home-main {
  position: relative;
  z-index: 1;
}

.home-page .eyebrow {
  margin-bottom: 0;
  color: var(--home-accent-strong);
}

.home-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: 1.25rem;
  align-items: stretch;
  padding-top: 3.25rem;
}

.home-hero-copy {
  display: grid;
  gap: 1.5rem;
  align-content: start;
  padding: clamp(2rem, 4vw, 4rem);
  border: 1px solid var(--home-line);
  border-radius: 2.25rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 251, 0.94));
  box-shadow: var(--home-shadow);
}

.home-hero-copy h1,
.home-section-intro h2,
.home-quote-card h2,
.home-coverage-panel h2,
.home-process-panel h2,
.home-contact-intro h2,
.home-contact-card h3,
.home-service-feature h3,
.home-service-card h3,
.home-mini-card h2,
.home-principles h3,
.home-process-list h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.home-hero-copy h1 {
  font-size: clamp(3.1rem, 6vw, 5.8rem);
  color: var(--home-ink);
}

.home-lead,
.home-section-intro p:last-child,
.home-quote-card p,
.home-coverage-panel > p,
.home-process-panel > p,
.home-contact-intro p,
.home-contact-card p,
.home-page .form-note {
  margin: 0;
  color: var(--home-ink-soft);
  line-height: 1.85;
}

.home-lead {
  max-width: 42rem;
  font-size: 1.05rem;
}

.home-page .hero-actions {
  margin-top: 0;
}

.home-page .button-primary {
  background: linear-gradient(135deg, var(--home-accent), #0b88ad);
  color: #fff;
  box-shadow: 0 18px 30px rgba(13, 111, 143, 0.18);
}

.home-page .button-secondary {
  border-color: rgba(15, 36, 49, 0.16);
  color: var(--home-ink);
  background: transparent;
}

.home-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.home-stat-grid article {
  min-height: 100%;
  padding: 1rem 1.05rem;
  border: 1px solid var(--home-line);
  border-radius: 1.4rem;
  background: rgba(232, 241, 244, 0.68);
}

.home-stat-grid strong {
  display: block;
  color: var(--home-ink);
  font-size: 1.35rem;
}

.home-stat-grid span {
  display: block;
  margin-top: 0.35rem;
  color: var(--home-ink-soft);
  font-size: 0.88rem;
  line-height: 1.5;
}

.home-hero-media {
  display: grid;
  grid-template-rows: minmax(340px, 1fr) auto;
  gap: 1rem;
}

.home-image-card,
.home-mini-card,
.home-service-feature,
.home-service-card,
.home-quote-card,
.home-principles article,
.home-coverage-panel,
.home-process-panel,
.home-contact-card,
.home-page .home-contact-form {
  border: 1px solid var(--home-line);
  box-shadow: var(--home-shadow);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.home-image-card,
.home-mini-card,
.home-service-feature,
.home-service-card,
.home-quote-card,
.home-principles article,
.home-coverage-panel,
.home-process-panel,
.home-contact-card,
.home-page .home-contact-form {
  border-radius: 2rem;
}

.home-mini-card:hover,
.home-service-feature:hover,
.home-service-card:hover,
.home-principles article:hover,
.home-quote-card:hover,
.home-coverage-panel:hover,
.home-process-panel:hover,
.home-contact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 34px 72px rgba(22, 43, 58, 0.16);
}

.home-image-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  background: #0f2634;
}

.home-image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 27, 39, 0.08), rgba(9, 27, 39, 0.62));
}

.home-image-card img {
  width: 100%;
  min-height: 420px;
  height: 100%;
  object-fit: cover;
}

.home-image-badge {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  z-index: 1;
  max-width: 16rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(18px);
  color: #fff;
  font-size: 0.95rem;
  line-height: 1.5;
}

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

.home-mini-card {
  min-height: 100%;
  padding: 1.15rem;
  background: var(--home-surface);
}

.home-mini-card h2 {
  margin-top: 0.65rem;
  font-size: 1.65rem;
  color: var(--home-ink);
}

.home-mini-card-accent {
  background: linear-gradient(135deg, #0f2937, #12394c);
  border-color: transparent;
}

.home-mini-card-accent .service-tag {
  color: #bbe5f0;
}

.home-mini-card-accent h2 {
  color: #f4f7f8;
}

.home-brand-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.4rem;
  padding-bottom: 0.6rem;
}

.home-brand-strip p {
  margin: 0;
  max-width: 34rem;
  color: var(--home-ink-soft);
  line-height: 1.75;
}

.home-page .trust-logos img {
  opacity: 1;
}

.home-section {
  padding-top: 5.5rem;
}

.home-section-alt {
  padding-top: 4.5rem;
}

.home-section-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1.5rem;
  align-items: end;
}

.home-section-intro h2,
.home-quote-card h2,
.home-coverage-panel h2,
.home-process-panel h2,
.home-contact-intro h2 {
  font-size: clamp(2.6rem, 4.8vw, 4.8rem);
  color: var(--home-ink);
}

.home-service-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.home-service-feature {
  grid-column: span 7;
  padding: 2rem;
  background: linear-gradient(160deg, #0f2836, #123e50);
  color: #eef4f6;
}

.home-service-feature p,
.home-service-feature li {
  color: rgba(239, 244, 246, 0.8);
  line-height: 1.75;
}

.home-service-feature h3,
.home-service-card h3 {
  font-size: 2.3rem;
}

.home-service-feature ul {
  display: grid;
  gap: 0.45rem;
  margin: 1rem 0 0;
  padding-left: 1.1rem;
}

.home-service-feature .service-tag {
  color: #c8ebf7;
}

.home-service-feature .service-link {
  color: #fff;
}

.home-service-card {
  grid-column: span 5;
  padding: 1.6rem;
  background: var(--home-surface);
}

.home-service-card:nth-child(3),
.home-service-card:nth-child(4),
.home-service-card:nth-child(5) {
  grid-column: span 4;
}

.home-service-card p {
  color: var(--home-ink-soft);
  line-height: 1.75;
}

.home-page .service-tag {
  color: var(--home-accent-strong);
}

.home-page .service-link,
.home-page .inline-link {
  color: var(--home-accent);
}

.home-page .service-link::after,
.home-page .inline-link::after {
  content: "→";
}

.home-story-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 1rem;
  align-items: start;
}

.home-quote-card {
  padding: 2rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(233, 241, 244, 0.9));
}

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

.home-principles article {
  padding: 1.45rem;
  background: var(--home-surface-strong);
}

.home-principles span,
.home-process-list span {
  display: inline-flex;
  width: 2.6rem;
  height: 2.6rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
}

.home-principles span {
  background: var(--home-accent-soft);
  color: var(--home-accent-strong);
}

.home-principles h3 {
  margin-top: 1rem;
  margin-bottom: 0.7rem;
  font-size: 1.95rem;
  color: var(--home-ink);
}

.home-principles p {
  margin: 0;
  color: var(--home-ink-soft);
  line-height: 1.75;
}

.home-coverage-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  gap: 1rem;
  align-items: start;
}

.home-coverage-panel {
  padding: 2rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(243, 247, 248, 0.98));
}

.home-coverage-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.home-coverage-columns p,
.home-contact-card dt {
  margin: 0 0 0.65rem;
  color: var(--home-accent-strong);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
  font-weight: 700;
}

.home-coverage-columns ul {
  margin: 0;
  padding-left: 1.1rem;
}

.home-coverage-columns li {
  color: var(--home-ink-soft);
  line-height: 1.75;
}

.home-process-panel {
  padding: 2rem;
  background: linear-gradient(160deg, rgba(15, 40, 54, 0.97), rgba(18, 62, 80, 0.96));
}

.home-process-panel h2,
.home-process-panel h3 {
  color: #f4f7f8;
}

.home-process-panel > p {
  color: #c9e2ea;
}

.home-process-list {
  display: grid;
  gap: 1rem;
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
}

.home-process-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.home-process-list li:first-child {
  padding-top: 0;
  border-top: 0;
}

.home-process-list span {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.home-process-list h3 {
  margin-bottom: 0.4rem;
  font-size: 1.65rem;
}

.home-process-list p {
  margin: 0;
  color: rgba(244, 247, 248, 0.78);
  line-height: 1.75;
}

.home-contact-section {
  padding-bottom: 1rem;
}

.home-contact-intro {
  max-width: 46rem;
}

.home-contact-layout {
  display: grid;
  grid-template-columns: minmax(290px, 0.75fr) minmax(0, 1.25fr);
  gap: 1rem;
  margin-top: 2rem;
}

.home-contact-card {
  display: grid;
  gap: 1.5rem;
  padding: 1.7rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(233, 241, 244, 0.95));
}

.home-contact-card h3 {
  color: var(--home-ink);
  font-size: 2.4rem;
}

.home-contact-card dl {
  margin: 0;
}

.home-contact-card dl div + div {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--home-line);
}

.home-contact-card dd {
  margin: 0.45rem 0 0;
  color: var(--home-ink-soft);
  line-height: 1.7;
}

.home-page .home-contact-form {
  padding: 1.6rem;
  background: var(--home-surface-strong);
}

.home-page .contact-form label {
  color: var(--home-ink);
}

.home-page .contact-form input,
.home-page .contact-form select,
.home-page .contact-form textarea {
  border: 1px solid rgba(15, 36, 49, 0.12);
  background: #f8fbfc;
  color: var(--home-ink);
}

.home-page .contact-form input:focus,
.home-page .contact-form select:focus,
.home-page .contact-form textarea:focus {
  border-color: rgba(13, 111, 143, 0.8);
  box-shadow: 0 0 0 3px rgba(13, 111, 143, 0.12);
}

.home-page .contact-form option {
  color: var(--home-ink);
}

.home-page .site-footer {
  margin-top: 2rem;
  padding-top: 3rem;
  padding-bottom: 2.5rem;
  border-top: 1px solid rgba(15, 36, 49, 0.08);
  color: var(--home-ink-soft);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 500ms ease,
    transform 500ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .hero,
  .split-layout,
  .coverage-panel,
  .contact-layout,
  .page-hero,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .service-card.wide {
    grid-column: span 6;
  }

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

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

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: auto auto;
    grid-template-areas:
      "brand toggle"
      "nav nav"
      "cta cta";
  }

  .brand {
    grid-area: brand;
  }

  .nav-toggle {
    grid-area: toggle;
    display: inline-block;
  }

  .site-nav {
    grid-area: nav;
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 1.4rem;
  }

  .site-nav.is-open {
    display: inline-flex;
  }

  .header-cta {
    grid-area: cta;
    justify-self: start;
  }

  .service-card,
  .service-card.wide {
    grid-column: 1 / -1;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero,
  .section,
  .trust-strip,
  .site-footer {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .site-header {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .brand img {
    width: 3.7rem;
    height: 3.7rem;
  }

  .hero-copy,
  .hero-panel,
  .coverage-panel,
  .contact-card,
  .contact-form {
    padding: 1.25rem;
  }

  .hero h1 {
    max-width: none;
  }
}

@media (max-width: 1120px) {
  .home-hero,
  .home-section-intro,
  .home-story-layout,
  .home-coverage-layout,
  .home-contact-layout {
    grid-template-columns: 1fr;
  }

  .home-service-feature {
    grid-column: span 12;
  }

  .home-service-card,
  .home-service-card:nth-child(3),
  .home-service-card:nth-child(4),
  .home-service-card:nth-child(5) {
    grid-column: span 6;
  }

  .home-principles,
  .home-coverage-columns {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .home-media-grid,
  .home-stat-grid {
    grid-template-columns: 1fr;
  }

  .home-service-card,
  .home-service-card:nth-child(3),
  .home-service-card:nth-child(4),
  .home-service-card:nth-child(5) {
    grid-column: 1 / -1;
  }

  .home-page .site-nav {
    background: rgba(255, 255, 255, 0.94);
  }
}

@media (max-width: 640px) {
  .home-hero,
  .home-brand-strip,
  .home-section,
  .home-page .site-footer {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .home-hero {
    padding-top: 2rem;
  }

  .home-hero-copy,
  .home-service-feature,
  .home-service-card,
  .home-quote-card,
  .home-principles article,
  .home-coverage-panel,
  .home-process-panel,
  .home-contact-card,
  .home-page .home-contact-form {
    padding: 1.25rem;
    border-radius: 1.6rem;
  }

  .home-image-card img {
    min-height: 300px;
  }

  .home-image-badge {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    max-width: none;
  }

  .home-brand-strip {
    align-items: flex-start;
  }
}

/* Premium homepage redesign */
.home-page {
  --home-bg: #f4f6fb;
  --home-surface: #ffffff;
  --home-surface-soft: #eef2f8;
  --home-navy: #173562;
  --home-blue: #5577c8;
  --home-blue-strong: #4768bb;
  --home-blue-soft: #dbe4fb;
  --home-orange: #d48343;
  --home-orange-soft: #f7d2b0;
  --home-copy: #606d7c;
  --home-copy-strong: #2f3c4e;
  --home-line: #d8e0ef;
  --home-shadow: 0 24px 70px rgba(17, 39, 74, 0.1);
  background: linear-gradient(180deg, #f7f9fd 0%, #f3f6fb 100%);
  color: var(--home-copy);
  font-family: "Libre Franklin", sans-serif;
}

.home-page .page-glow {
  display: none;
}

.home-page .site-header,
.home-intro-band,
.home-market-section,
.home-solutions-section,
.home-operator-band,
.home-proof-section,
.home-contact-wrap,
.home-page .site-footer {
  position: relative;
  z-index: 2;
  max-width: var(--content-width);
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.home-page .site-header {
  position: fixed;
  left: 50%;
  top: 1rem;
  width: min(calc(100% - 2rem), var(--content-width));
  padding: 1rem 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(18, 34, 61, 0.18);
  backdrop-filter: blur(18px);
  box-shadow: none;
  transform: translateX(-50%);
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    top 220ms ease;
}

.home-page .site-header.is-scrolled {
  top: 0.85rem;
  border-color: rgba(71, 104, 187, 0.12);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 40px rgba(19, 53, 98, 0.1);
}

.home-page .brand-copy strong,
.home-page .brand-copy span:last-child,
.home-page .site-nav a {
  color: rgba(255, 255, 255, 0.9);
}

.home-page .site-header.is-scrolled .brand-copy strong {
  color: var(--home-navy);
}

.home-page .site-header.is-scrolled .brand-copy span:last-child,
.home-page .site-header.is-scrolled .site-nav a {
  color: var(--home-copy);
}

.home-page .site-nav {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.home-page .site-header.is-scrolled .site-nav {
  border-color: rgba(71, 104, 187, 0.12);
  background: rgba(245, 248, 255, 0.94);
  box-shadow: none;
}

.home-page .site-nav a:hover,
.home-page .site-nav a:focus-visible,
.home-page .site-header.is-scrolled .site-nav a:hover,
.home-page .site-header.is-scrolled .site-nav a:focus-visible {
  color: var(--home-orange);
}

.home-page .header-cta {
  background: linear-gradient(135deg, #d58948, #cf7b37);
  color: #fff;
  box-shadow: 0 18px 35px rgba(213, 131, 67, 0.28);
}

.home-page .nav-toggle span {
  background: #fff;
}

.home-page .site-header.is-scrolled .nav-toggle span {
  background: var(--home-navy);
}

.home-main {
  position: relative;
  z-index: 1;
}

.home-cinema {
  position: relative;
  min-height: 100svh;
  overflow: clip;
  color: #fff;
  background: #102747;
}

.home-cinema-media,
.home-cinema-media::before,
.home-cinema-media::after,
.home-cinema-video,
.home-cinema-shade,
.home-cinema-wave,
.home-cinema-wave svg {
  position: absolute;
  inset: 0;
}

.home-cinema-media::before,
.home-cinema-media::after {
  content: "";
  pointer-events: none;
}

.home-cinema-media::before {
  background:
    radial-gradient(circle at 20% 30%, rgba(120, 183, 255, 0.32), transparent 18%),
    radial-gradient(circle at 70% 18%, rgba(255, 255, 255, 0.14), transparent 20%);
  mix-blend-mode: screen;
}

.home-cinema-media::after {
  background: linear-gradient(180deg, rgba(15, 29, 52, 0.06), rgba(15, 29, 52, 0.18));
}

.home-cinema-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  animation: homeVideoFloat 12s ease-in-out infinite alternate;
}

.home-cinema-shade {
  background:
    linear-gradient(90deg, rgba(10, 24, 45, 0.56) 0%, rgba(10, 24, 45, 0.24) 42%, rgba(10, 24, 45, 0.34) 100%),
    linear-gradient(180deg, rgba(7, 14, 26, 0.08) 0%, rgba(7, 14, 26, 0.2) 100%);
}

.home-cinema-ripple {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  opacity: 0.55;
  animation: rippleDrift 14s linear infinite;
}

.home-cinema-ripple-a {
  right: -8rem;
  top: 7rem;
  width: 26rem;
  height: 26rem;
}

.home-cinema-ripple-b {
  left: -4rem;
  bottom: 10rem;
  width: 18rem;
  height: 18rem;
  animation-duration: 18s;
  animation-direction: reverse;
}

.home-cinema-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.54fr);
  gap: clamp(1.25rem, 3vw, 2.75rem);
  align-items: center;
  max-width: var(--content-width);
  min-height: 100svh;
  margin: 0 auto;
  padding: 7.25rem 1.5rem 8.5rem;
}

.home-cinema-copy {
  max-width: 45rem;
}

.home-kicker,
.home-section-tag,
.home-panel-kicker {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  font-weight: 700;
}

.home-section-tag {
  color: var(--home-blue);
}

.home-accent-rule {
  display: inline-block;
  width: 7rem;
  height: 0.38rem;
  margin: 1rem 0 1.35rem;
  border-radius: 999px;
  background:
    repeating-linear-gradient(
      90deg,
      var(--home-orange) 0 0.14rem,
      transparent 0.14rem 0.32rem
    );
}

.home-cinema-copy h1,
.home-section-head h2,
.home-intro-copy h2,
.home-flagship-copy h3,
.home-service-copy h3,
.home-operator-copy h2,
.home-proof-card h3,
.home-contact-card-modern h3 {
  margin: 0;
  color: #fff;
  font-family: "Libre Franklin", sans-serif;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.home-cinema-copy h1 {
  max-width: 13ch;
  font-size: clamp(3.4rem, 7vw, 5.6rem);
  line-height: 0.93;
  text-wrap: balance;
}

.home-cinema-slider {
  position: relative;
  min-height: 10rem;
  margin-top: 1.8rem;
}

.home-cinema-slide {
  position: absolute;
  inset: 0;
  max-width: 38rem;
  opacity: 0;
  transform: translateY(1rem);
  pointer-events: none;
  transition:
    opacity 320ms ease,
    transform 320ms ease;
}

.home-cinema-slide.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.home-slide-heading {
  margin: 0 0 0.55rem;
  color: #fff;
  font-size: 1.18rem;
  font-weight: 700;
}

.home-cinema-slide p:last-child,
.home-cinema-meta span,
.home-panel-grid article span {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.home-cinema .hero-actions {
  margin-top: 1.7rem;
}

.home-page .button {
  min-height: 3.25rem;
  padding: 0.85rem 1.45rem;
  border: 1px solid transparent;
  font-weight: 700;
}

.home-page .button-primary {
  background: linear-gradient(135deg, #d88a48, #cf7833);
  color: #fff;
  box-shadow: 0 18px 35px rgba(213, 131, 67, 0.24);
}

.home-page .button-secondary {
  background: #fff;
  border-color: rgba(71, 104, 187, 0.18);
  color: var(--home-navy);
}

.home-cinema .button-secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.24);
  color: #fff;
  backdrop-filter: blur(14px);
}

.home-cinema-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.6rem;
}

.home-cinema-meta span {
  padding: 0.72rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
}

.home-cinema-dots {
  display: flex;
  gap: 0.55rem;
  margin-top: 1.3rem;
}

.home-cinema-dots button {
  width: 0.85rem;
  height: 0.85rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.32);
  transition:
    transform 180ms ease,
    background-color 180ms ease;
}

.home-cinema-dots button.is-active {
  background: var(--home-orange);
  transform: scale(1.18);
}

.home-cinema-panel {
  display: grid;
  gap: 1.25rem;
  align-self: center;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 1.8rem;
  background: rgba(8, 24, 44, 0.26);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 60px rgba(5, 13, 27, 0.22);
}

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

.home-panel-grid article {
  display: grid;
  gap: 0.35rem;
  padding: 1rem;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.08);
}

.home-panel-grid article strong {
  color: #fff;
  font-size: 1rem;
}

.home-panel-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--home-navy);
  font-weight: 700;
}

.home-cinema-wave {
  z-index: 1;
  inset: auto 0 0;
  height: 10rem;
}

.home-cinema-wave path {
  fill: var(--home-surface);
}

.home-intro-band,
.home-market-section,
.home-solutions-section,
.home-proof-section,
.home-contact-wrap {
  padding-top: 4.8rem;
  padding-bottom: 4.8rem;
}

.home-intro-band {
  margin-top: -1rem;
}

.home-intro-grid,
.home-operator-grid,
.home-contact-layout-modern {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.78fr);
  gap: 1.5rem;
  align-items: start;
}

.home-intro-copy,
.home-intro-aside,
.home-flagship,
.home-service-row,
.home-proof-card,
.home-contact-card-modern,
.home-contact-form-modern,
.home-operator-list {
  border-radius: 2rem;
  background: var(--home-surface);
  box-shadow: var(--home-shadow);
}

.home-intro-copy,
.home-intro-aside,
.home-contact-card-modern,
.home-contact-form-modern {
  border: 1px solid var(--home-line);
  padding: clamp(1.5rem, 3vw, 2.25rem);
}

.home-intro-copy h2,
.home-section-head h2,
.home-service-copy h3,
.home-flagship-copy h3,
.home-operator-copy h2,
.home-proof-card h3,
.home-contact-card-modern h3 {
  color: var(--home-blue-strong);
}

.home-intro-copy h2,
.home-section-head h2,
.home-service-copy h3,
.home-flagship-copy h3,
.home-operator-copy h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.02;
  text-wrap: balance;
}

.home-intro-copy p,
.home-intro-aside p,
.home-section-head > p,
.home-market-grid p,
.home-flagship-copy p,
.home-service-copy p,
.home-operator-copy p,
.home-proof-card p,
.home-contact-card-modern p,
.home-contact-card-modern dd,
.home-page .form-note {
  margin: 0;
  color: var(--home-copy);
  line-height: 1.82;
}

.home-intro-copy {
  display: grid;
  gap: 1rem;
}

.home-intro-aside {
  display: grid;
  gap: 1.35rem;
  background: linear-gradient(180deg, #fbfcff 0%, #f1f5fb 100%);
}

.home-intro-metrics {
  display: grid;
  gap: 0.85rem;
}

.home-intro-metrics article {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 1.2rem;
  background: #fff;
  border: 1px solid var(--home-line);
}

.home-intro-metrics strong {
  color: var(--home-blue-strong);
  font-size: 1.05rem;
}

.home-intro-metrics span {
  color: var(--home-copy);
  font-size: 0.92rem;
}

.home-section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.62fr);
  gap: 1.5rem;
  align-items: end;
  margin-bottom: 1.8rem;
}

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

.home-market-grid article {
  padding: 1.45rem;
  border: 1px solid var(--home-line);
  border-radius: 1.7rem;
  background: linear-gradient(180deg, #ffffff 0%, #f5f8ff 100%);
  box-shadow: 0 20px 45px rgba(19, 53, 98, 0.06);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.home-market-grid article:hover,
.home-proof-card:hover,
.home-flagship:hover,
.home-service-row:hover,
.home-intro-copy:hover,
.home-intro-aside:hover,
.home-contact-card-modern:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 55px rgba(19, 53, 98, 0.1);
}

.home-market-grid h3 {
  margin: 0 0 0.75rem;
  color: var(--home-navy);
  font-size: 1.05rem;
}

.home-solutions-section {
  padding-top: 0.75rem;
}

.home-flagship,
.home-service-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
  align-items: center;
  margin-top: 1.5rem;
  padding: 1.6rem;
  border: 1px solid var(--home-line);
}

.home-service-row-reverse .home-service-visual {
  order: 2;
}

.home-service-row-reverse .home-service-copy {
  order: 1;
}

.home-flagship-copy,
.home-service-copy,
.home-operator-copy {
  display: grid;
  gap: 1rem;
}

.home-keyline {
  color: var(--home-blue);
  letter-spacing: 0.17em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
}

.home-flagship-visual,
.home-service-visual {
  position: relative;
  min-height: 28rem;
  overflow: hidden;
  border-radius: 1.6rem;
}

.home-flagship-visual-media,
.home-service-visual-media {
  min-height: 0;
}

.home-flagship-frame,
.home-service-visual-repair,
.home-service-visual-chemical,
.home-service-visual-indoor {
  position: relative;
  min-height: 100%;
  border-radius: inherit;
}

.home-flagship-frame {
  overflow: hidden;
  margin: 0;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #bfd4ff 0%, #6c8ce0 55%, #18345f 100%);
}

.home-flagship-visual-media .home-flagship-frame,
.home-service-visual-media .home-service-video-frame {
  min-height: 0;
}

.home-flagship-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 25, 44, 0.08), rgba(14, 25, 44, 0.48));
}

.home-flagship-frame img,
.home-flagship-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.1);
}

.home-floating-chip {
  position: absolute;
  z-index: 1;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--home-navy);
  font-size: 0.82rem;
  font-weight: 700;
  box-shadow: 0 18px 28px rgba(19, 53, 98, 0.15);
  animation: floatChip 4.6s ease-in-out infinite;
}

.chip-one {
  left: 1.2rem;
  top: 1.2rem;
}

.chip-two {
  right: 1.2rem;
  top: 9rem;
  animation-delay: 0.5s;
}

.chip-three {
  left: 2rem;
  bottom: 1.5rem;
  animation-delay: 1s;
}

.home-service-visual-repair {
  padding: 1.4rem;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.22), transparent 24%),
    linear-gradient(135deg, #4f6dbe 0%, #1a3560 100%);
}

.home-visual-stack {
  display: grid;
  gap: 0.9rem;
}

.home-visual-stack article {
  display: grid;
  gap: 0.45rem;
  padding: 1.2rem;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.94);
}

.home-visual-stack strong,
.home-console-top strong,
.home-systems-card strong,
.home-proof-card li,
.home-operator-list h3 {
  color: var(--home-navy);
}

.home-visual-stack span,
.home-console-board li,
.home-systems-card span,
.home-operator-list p {
  color: var(--home-copy);
}

.home-service-visual-chemical {
  display: grid;
  place-items: center;
  padding: 1.4rem;
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.18), transparent 22%),
    linear-gradient(135deg, #112748 0%, #6387db 100%);
}

.home-service-video-frame {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 16 / 9;
  margin: 0;
  overflow: hidden;
  border-radius: 1.5rem;
  box-shadow: 0 24px 38px rgba(6, 20, 41, 0.24);
}

.home-service-video-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 16, 31, 0.08), rgba(8, 16, 31, 0.58));
}

.home-service-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-service-video-caption,
.home-service-video-meta {
  position: absolute;
  z-index: 1;
}

.home-service-video-caption {
  left: 1.1rem;
  top: 1rem;
  padding: 0.62rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--home-navy);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.home-service-video-meta {
  left: 1.1rem;
  right: 1.1rem;
  bottom: 1.1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.home-service-video-meta span {
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #f5f8ff;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.home-console-board {
  width: min(100%, 26rem);
  padding: 1.35rem;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 30px rgba(8, 25, 46, 0.18);
}

.home-console-top {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.home-console-top span {
  color: var(--home-orange);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
}

.home-console-board ul,
.home-proof-card ul {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.65rem;
}

.home-service-visual-indoor {
  display: grid;
  place-items: center;
  padding: 1.4rem;
  background:
    radial-gradient(circle at 70% 18%, rgba(255, 255, 255, 0.16), transparent 24%),
    linear-gradient(135deg, #436dc4 0%, #173562 100%);
}

.home-systems-card {
  display: grid;
  gap: 0.95rem;
  width: min(100%, 27rem);
  padding: 1.35rem;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.94);
}

.home-systems-card > div {
  display: grid;
  gap: 0.35rem;
  padding-bottom: 0.95rem;
  border-bottom: 1px solid var(--home-line);
}

.home-systems-card > div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.service-link,
.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--home-orange);
  font-weight: 700;
}

.service-link::after,
.inline-link::after {
  content: "\2192";
  transition: transform 180ms ease;
}

.service-link:hover::after,
.inline-link:hover::after {
  transform: translateX(0.2rem);
}

.home-inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.home-operator-band {
  padding-top: 4.8rem;
  padding-bottom: 4.8rem;
}

.home-operator-grid {
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border-radius: 2rem;
  background: linear-gradient(135deg, #173562 0%, #4768bb 100%);
  box-shadow: 0 28px 65px rgba(19, 53, 98, 0.18);
}

.home-operator-copy h2,
.home-operator-copy p,
.home-operator-copy .inline-link,
.home-operator-list h3 {
  color: #fff;
}

.home-operator-copy p {
  color: rgba(255, 255, 255, 0.84);
}

.home-operator-copy .home-section-tag,
.home-operator-copy .home-accent-rule {
  color: #fff;
}

.home-operator-list {
  display: grid;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 1.2rem;
}

.home-operator-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1rem;
  border-radius: 1.3rem;
  background: rgba(255, 255, 255, 0.08);
}

.home-operator-list li > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.75rem;
  min-height: 2.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-weight: 800;
}

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

.home-proof-card {
  display: grid;
  gap: 1rem;
  padding: 1.7rem;
  border: 1px solid var(--home-line);
}

.home-proof-card-accent {
  background: linear-gradient(180deg, #eff4ff 0%, #ffffff 100%);
}

.home-proof-card h3 {
  font-size: 1.55rem;
}

.home-proof-card ul {
  color: var(--home-copy-strong);
}

.home-contact-layout-modern {
  align-items: stretch;
}

.home-contact-head {
  margin-bottom: 1.5rem;
}

.home-contact-card-modern {
  display: grid;
  align-content: start;
  gap: 1rem;
  background: linear-gradient(180deg, #fff 0%, #f4f7fd 100%);
}

.home-contact-card-modern dl {
  display: grid;
  gap: 1rem;
  margin: 0;
}

.home-contact-card-modern dt {
  margin-bottom: 0.25rem;
  color: var(--home-blue);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
}

.home-contact-card-modern dd {
  margin: 0;
  color: var(--home-copy-strong);
}

.home-page .home-contact-form-modern {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  background: #fff;
}

.home-page .home-contact-form-modern label {
  display: grid;
  gap: 0.45rem;
  color: var(--home-copy-strong);
  font-size: 0.92rem;
  font-weight: 600;
}

.home-page .home-contact-form-modern input,
.home-page .home-contact-form-modern select,
.home-page .home-contact-form-modern textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid var(--home-line);
  border-radius: 1rem;
  background: #f8faff;
  color: var(--home-copy-strong);
}

.home-page .home-contact-form-modern input:focus,
.home-page .home-contact-form-modern select:focus,
.home-page .home-contact-form-modern textarea:focus {
  outline: 2px solid rgba(71, 104, 187, 0.2);
  border-color: rgba(71, 104, 187, 0.36);
}

.home-page .home-contact-form-modern .full-width {
  grid-column: 1 / -1;
}

.home-page .site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem 1.5rem;
  margin-top: 1rem;
  padding-top: 1.6rem;
  padding-bottom: 2rem;
  border-top: 1px solid rgba(19, 53, 98, 0.08);
  color: var(--home-copy);
}

.home-page .site-footer p:first-child {
  color: var(--home-navy);
  font-weight: 700;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(1.75rem);
  transition:
    opacity 500ms ease,
    transform 500ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes homeVideoFloat {
  from {
    transform: scale(1.05) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.11) translate3d(0, -1.5%, 0);
  }
}

@keyframes rippleDrift {
  from {
    transform: scale(0.9) rotate(0deg);
  }
  to {
    transform: scale(1.16) rotate(360deg);
  }
}

@keyframes floatChip {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-0.35rem);
  }
}

@media (max-width: 1120px) {
  .home-cinema-inner,
  .home-intro-grid,
  .home-operator-grid,
  .home-contact-layout-modern,
  .home-section-head,
  .home-flagship,
  .home-service-row {
    grid-template-columns: 1fr;
  }

  .home-cinema-inner {
    padding-top: 7.25rem;
    padding-bottom: 7.5rem;
  }

  .home-cinema-copy,
  .home-cinema-panel {
    max-width: none;
  }

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

  .home-service-row-reverse .home-service-visual,
  .home-service-row-reverse .home-service-copy {
    order: initial;
  }
}

@media (max-width: 860px) {
  .home-page .site-header {
    top: 0.75rem;
    width: calc(100% - 1rem);
    grid-template-columns: auto auto;
    grid-template-areas:
      "brand toggle"
      "nav nav"
      "cta cta";
    gap: 1rem;
    border-radius: 1.6rem;
  }

  .home-page .brand {
    grid-area: brand;
  }

  .home-page .nav-toggle {
    grid-area: toggle;
    display: inline-block;
  }

  .home-page .site-nav {
    grid-area: nav;
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 1.2rem;
    padding: 1rem;
    background: rgba(10, 24, 45, 0.88);
  }

  .home-page .site-header.is-scrolled .site-nav {
    background: rgba(247, 249, 255, 0.98);
  }

  .home-page .site-nav.is-open {
    display: inline-flex;
  }

  .home-page .header-cta {
    grid-area: cta;
    justify-self: start;
  }

  .home-cinema-copy h1 {
    max-width: 10ch;
  }

  .home-cinema-slider {
    min-height: 12rem;
  }

  .home-panel-grid,
  .home-market-grid,
  .home-proof-grid,
  .home-page .home-contact-form-modern {
    grid-template-columns: 1fr;
  }

  .home-flagship-visual,
  .home-service-visual {
    min-height: 22rem;
  }
}

@media (max-width: 640px) {
  .home-page .site-header,
  .home-intro-band,
  .home-market-section,
  .home-solutions-section,
  .home-operator-band,
  .home-proof-section,
  .home-contact-wrap,
  .home-page .site-footer {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .home-page .site-header {
    padding: 0.95rem 1rem;
  }

  .home-page .brand img {
    width: 3.75rem;
    height: 3.75rem;
  }

  .home-cinema-inner {
    min-height: auto;
    padding: 6.5rem 1rem 6.75rem;
  }

  .home-cinema-copy h1 {
    max-width: 9ch;
    font-size: clamp(2.7rem, 14vw, 3.8rem);
  }

  .home-cinema-slider {
    min-height: 13.75rem;
  }

  .home-cinema-meta span,
  .home-floating-chip {
    font-size: 0.76rem;
  }

  .home-intro-copy,
  .home-intro-aside,
  .home-flagship,
  .home-service-row,
  .home-proof-card,
  .home-contact-card-modern,
  .home-contact-form-modern,
  .home-operator-grid {
    border-radius: 1.5rem;
  }

  .home-flagship,
  .home-service-row,
  .home-operator-grid {
    padding: 1.25rem;
  }

  .home-flagship-visual,
  .home-service-visual {
    min-height: 18rem;
  }

  .chip-two {
    top: auto;
    bottom: 5rem;
    right: 1rem;
  }

  .chip-three {
    left: 1rem;
    bottom: 1rem;
  }
}
