:root {
  --navy: #041742;
  --navy-deep: #020d28;
  --navy-mid: #0a2a4d;
  --navy-soft: #14365c;
  --teal: #3b93a9;
  --teal-bright: #4aa8bc;
  --teal-deep: #2a6f8c;
  --teal-mist: #d4eaf0;
  --paper: #f7f7f5;
  --paper-warm: #eef1ee;
  --ink: #0c1a2e;
  --muted: #5b6d7a;
  --line: rgba(4, 23, 66, 0.1);
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(4, 23, 66, 0.12);
  --shadow-lg: 0 40px 80px rgba(4, 23, 66, 0.18);
  --radius: 22px;
  --radius-sm: 14px;
  --header: 92px;
  --grad: linear-gradient(90deg, var(--navy) 0%, var(--teal-deep) 48%, var(--teal) 100%);
  --grad-diag: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 42%, var(--teal-deep) 100%);
  --font: "Outfit", system-ui, sans-serif;
  --serif: "Instrument Serif", Georgia, serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

button {
  cursor: pointer;
  border: 0;
  background: none;
}

ul {
  list-style: none;
}

::selection {
  background: var(--teal);
  color: var(--white);
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--navy);
}

::-webkit-scrollbar-thumb {
  background: var(--teal);
  border-radius: 99px;
}

.skip {
  position: absolute;
  left: 12px;
  top: -40px;
  background: var(--navy);
  color: var(--white);
  padding: 8px 14px;
  z-index: 100;
  border-radius: 8px;
}

.skip:focus {
  top: 12px;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.container-wide {
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-deep);
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--grad);
  border-radius: 99px;
}

.eyebrow.light {
  color: var(--teal-mist);
}

h1,
h2,
h3,
h4 {
  line-height: 1.12;
  letter-spacing: -0.03em;
  font-weight: 600;
}

h1 {
  font-size: clamp(2.6rem, 6vw, 5.2rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

h3 {
  font-size: 1.25rem;
}

.lede {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-style: italic;
  color: var(--muted);
  line-height: 1.45;
}

.gradient-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero .gradient-text {
  background: linear-gradient(90deg, #6ebfd0 0%, #d7f1f6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease), box-shadow 0.35s var(--ease), color 0.35s var(--ease);
}

.btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.35s var(--ease);
}

.btn:hover svg {
  transform: translateX(4px);
}

.btn-primary {
  background: var(--grad);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(59, 147, 169, 0.28);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(59, 147, 169, 0.38);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
}

.btn-navy:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
}

.btn-outline {
  border: 1px solid var(--line);
  color: var(--navy);
  background: var(--white);
}

.btn-outline:hover {
  border-color: var(--teal);
  color: var(--teal-deep);
  transform: translateY(-2px);
}

/* Top utility bar */
.top-bar {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.84rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 8px 0;
}

.top-bar-contact {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 22px;
}

.top-bar-contact a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.88);
  transition: color 0.25s var(--ease);
}

.top-bar-contact a:hover {
  color: var(--teal-bright);
}

.top-bar-contact svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  opacity: 0.85;
}

.top-bar-social {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-bar-social a {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease);
}

.top-bar-social a:hover {
  background: var(--teal);
  color: var(--white);
  border-color: transparent;
  transform: translateY(-1px);
}

.top-bar-social svg {
  width: 14px;
  height: 14px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header);
  background: rgba(247, 247, 245, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.35s var(--ease), border-color 0.35s var(--ease), height 0.35s var(--ease);
}

.site-header.is-scrolled {
  box-shadow: 0 10px 40px rgba(4, 23, 66, 0.08);
  border-bottom-color: var(--line);
  height: 76px;
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  height: 52px;
  width: auto;
  flex-shrink: 0;
}

.site-header.is-scrolled .logo {
  height: 46px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--navy);
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.nav a:hover::after,
.nav a.is-active::after {
  transform: scaleX(1);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid var(--line);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--navy);
  transition: 0.3s var(--ease);
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: var(--header) 16px 16px;
  background: var(--navy);
  color: var(--white);
  border-radius: 24px;
  padding: 32px 28px;
  z-index: 49;
  flex-direction: column;
  gap: 8px;
  box-shadow: var(--shadow-lg);
}

.mobile-nav.is-open {
  display: flex;
}

.mobile-nav a {
  font-size: 1.4rem;
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav .btn {
  margin-top: 18px;
  width: 100%;
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header));
  background: var(--grad-diag);
  color: var(--white);
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 72px 0 80px;
}

.hero::before {
  content: "";
  position: absolute;
  width: 720px;
  height: 720px;
  right: -180px;
  top: -160px;
  background: radial-gradient(circle, rgba(59, 147, 169, 0.45) 0%, rgba(59, 147, 169, 0) 68%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at 70% 40%, black, transparent 72%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: center;
}

.hero h1 {
  margin: 18px 0 22px;
}

.hero .lede {
  color: rgba(247, 247, 245, 0.82);
  max-width: 36ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-meta strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 600;
}

.hero-meta span {
  color: rgba(247, 247, 245, 0.62);
  font-size: 0.86rem;
}

.brief {
  position: relative;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  padding: 32px 28px 28px;
  backdrop-filter: blur(16px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.18);
}

.brief::before,
.brief::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  pointer-events: none;
}

.brief::before {
  transform: rotate(2.4deg) translate(10px, -12px);
  background: rgba(255, 255, 255, 0.03);
}

.brief::after {
  transform: rotate(-1.8deg) translate(-8px, 8px);
}

.brief-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.brief-mark {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--grad);
  display: grid;
  place-items: center;
}

.brief-mark svg,
.brief-mark i {
  width: 26px;
  height: 26px;
  font-size: 1.25rem;
  color: var(--white);
}

.brief-kicker {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal-mist);
}

.brief li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.98rem;
}

.brief li:last-child {
  border-bottom: 0;
}

.brief li svg,
.brief li > i {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--teal-bright);
  font-size: 0.9rem;
}

.checkmark {
  stroke: currentColor;
  fill: none;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Marquee */
.marquee {
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
  border-top: 1px solid rgba(59, 147, 169, 0.25);
  border-bottom: 1px solid rgba(59, 147, 169, 0.25);
}

.marquee-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marquee 32s linear infinite;
  padding: 16px 0;
  font-size: 0.86rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
}

.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 48px;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.78);
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  display: inline-block;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Sections */
.section {
  padding: 108px 0;
}

.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 56px;
}

.section-head p {
  color: var(--muted);
  font-size: 1.05rem;
}

.section-dark {
  background: var(--navy);
  color: var(--white);
}

.section-dark .lede,
.section-dark .section-head p,
.section-dark .muted {
  color: rgba(247, 247, 245, 0.7);
}

/* About teaser */
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}

.about-copy p + p {
  margin-top: 16px;
  color: var(--muted);
}

.about-visual {
  position: relative;
  min-height: 460px;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 460px;
}

.about-float {
  position: absolute;
  left: 22px;
  bottom: 22px;
  right: 22px;
  background: rgba(247, 247, 245, 0.94);
  color: var(--navy);
  border-radius: 18px;
  padding: 18px 20px;
  display: flex;
  gap: 14px;
  align-items: center;
  box-shadow: var(--shadow);
}

.about-float strong {
  display: block;
  font-size: 0.98rem;
}

.about-float span {
  color: var(--muted);
  font-size: 0.88rem;
}

.peak-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--grad);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--white);
}

/* Services — 4-up dynamic grid */
.services-band {
  position: relative;
  background:
    radial-gradient(ellipse 80% 60% at 0% 0%, rgba(59, 147, 169, 0.08), transparent 55%),
    radial-gradient(ellipse 70% 50% at 100% 100%, rgba(4, 23, 66, 0.05), transparent 50%),
    var(--paper-warm);
  overflow: hidden;
}

.services-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.35;
  pointer-events: none;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.55), transparent 90%);
}

.services-band > .container {
  position: relative;
  z-index: 1;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  width: 100%;
}

.service-card-link {
  display: block;
  height: 100%;
  text-decoration: none;
  color: inherit;
  min-width: 0;
}

.svc-card {
  height: 100%;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 26px 22px 24px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}

.service-card-link:hover .svc-card {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(59, 147, 169, 0.35);
}

.svc-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--paper-warm);
  color: var(--teal-deep);
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  margin-bottom: 16px;
  transition: background 0.35s var(--ease), color 0.35s var(--ease), transform 0.35s var(--ease);
}

.service-card-link:hover .svc-card-icon {
  background: var(--grad);
  color: var(--white);
  transform: scale(1.06);
}

.svc-card-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown > a i {
  font-size: 0.65rem;
  margin-left: 4px;
  opacity: 0.7;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 260px;
  max-height: 70vh;
  overflow-y: auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 10px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s;
  z-index: 60;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 0.9rem;
  color: var(--navy);
}

.nav-dropdown-menu a::after {
  display: none;
}

.nav-dropdown-menu a:hover {
  background: var(--paper-warm);
  color: var(--teal-deep);
}

.nav-dropdown-menu i {
  color: var(--teal);
  width: 18px;
  text-align: center;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85);
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}

.footer-social a:hover {
  background: var(--teal);
  color: var(--white);
}

.top-bar-contact i,
.top-bar-social i {
  font-size: 0.85rem;
}

.wa-fab i {
  font-size: 1.55rem;
}

/* Content pages: blogs / faqs / reviews */
.content-grid {
  display: grid;
  gap: 20px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.blog-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: var(--grad-diag);
}

.blog-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.blog-card-body h3 {
  color: var(--navy);
  font-size: 1.1rem;
}

.blog-card-body p {
  color: var(--muted);
  font-size: 0.92rem;
  flex: 1;
}

.blog-meta {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 600;
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary i {
  color: var(--teal);
  transition: transform 0.3s var(--ease);
}

.faq-item[open] summary i {
  transform: rotate(180deg);
}

.faq-item .faq-body {
  padding: 0 22px 18px;
  color: var(--muted);
  line-height: 1.7;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.review-stars {
  color: #eab308;
  letter-spacing: 2px;
}

.review-card p {
  color: var(--muted);
  font-style: italic;
  flex: 1;
}

.review-card strong {
  color: var(--navy);
}

.rating-summary {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 20px 36px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.empty-state {
  text-align: center;
  color: var(--muted);
  padding: 40px 20px;
  grid-column: 1 / -1;
}

.svc-card-body .svc-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--teal);
  line-height: 1;
}

.svc-card-body h3 {
  font-size: 1.05rem;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.svc-card-body p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
  flex: 1;
}

.svc-card-body .svc-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--teal-deep);
}

.svc-card-body .svc-more svg,
.svc-card-body .svc-more i {
  width: 14px;
  height: 14px;
  font-size: 0.75rem;
  transition: transform 0.3s var(--ease);
}

.service-card-link:hover .svc-more svg,
.service-card-link:hover .svc-more i {
  transform: translateX(3px);
}

.icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--paper-warm);
  color: var(--teal-deep);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}

.icon-wrap svg {
  width: 24px;
  height: 24px;
}

.practice-num {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--teal);
  min-width: 2ch;
  line-height: 1;
}

/* Service detail page */
.svc-detail-layout {
  display: grid;
  grid-template-columns: 1.4fr 0.75fr;
  gap: 32px;
  align-items: start;
}

.svc-detail-main {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.svc-detail-main img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 24px;
}

.svc-detail-icon {
  width: 88px;
  height: 88px;
  border-radius: 22px;
  background: var(--grad);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 2.1rem;
  margin-bottom: 22px;
  box-shadow: var(--shadow);
}

.service-block-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin: 36px 0 18px;
  flex-wrap: wrap;
}

.service-block-head h3 {
  color: var(--navy);
  font-size: 1.35rem;
}

.service-block-head span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.service-subs {
  display: grid;
  gap: 14px;
  margin-bottom: 8px;
}

.service-sub {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px 18px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--paper-warm);
}

.service-sub-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--teal);
  line-height: 1;
  min-width: 2ch;
}

.service-sub h4 {
  color: var(--navy);
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.service-sub p,
.service-sub div {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.service-sub p:last-child {
  margin-bottom: 0;
}

.svc-side-card a i {
  width: 18px;
  text-align: center;
  color: var(--teal);
  flex-shrink: 0;
}

.related-services {
  margin-top: 40px;
}

.related-services h3 {
  color: var(--navy);
  margin-bottom: 18px;
  font-size: 1.25rem;
}

.related-services .services-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.vm-grid.vm-grid-single {
  grid-template-columns: 1fr;
  max-width: 720px;
}

.vm-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px;
  border-left: 6px solid var(--teal);
  box-shadow: var(--shadow);
}

.vm-card h3 {
  color: var(--navy);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
}

.vm-card h3 i {
  color: var(--teal);
}

.vm-card .vm-copy,
.vm-card .vm-copy p {
  color: var(--muted);
  line-height: 1.7;
}

.not-found {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.not-found .hero-actions {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 23, 66, 0.78);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 20px;
}

.modal-overlay.is-open {
  display: flex;
}

.modal-card {
  background: var(--white);
  width: 100%;
  max-width: 520px;
  padding: 40px 36px;
  border-radius: 28px;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.modal-card .close-modal {
  position: absolute;
  top: 18px;
  right: 18px;
  color: var(--muted);
  font-size: 1.25rem;
  cursor: pointer;
}

.submit-review-band {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 72px 0;
}

.submit-review-band p {
  color: rgba(255, 255, 255, 0.75);
  margin: 10px auto 24px;
  max-width: 42ch;
}

.teaser-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.teaser-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px;
}

.teaser-card h3 {
  color: var(--navy);
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.teaser-card p {
  color: var(--muted);
  font-size: 0.9rem;
}

.blog-card-placeholder {
  height: 160px;
  background: var(--grad-diag);
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.85);
  font-size: 2rem;
}

.svc-detail-main h2 {
  color: var(--navy);
  margin-bottom: 14px;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.svc-detail-main .svc-body {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.svc-detail-main .svc-body p {
  margin-bottom: 1em;
}

.svc-side {
  position: sticky;
  top: calc(var(--header) + 20px);
  display: grid;
  gap: 18px;
}

.svc-side-card {
  background: var(--navy);
  color: var(--white);
  border-radius: 24px;
  padding: 26px 24px;
}

.svc-side-card h3 {
  margin-bottom: 16px;
  font-size: 1.1rem;
}

.svc-side-card ul {
  display: grid;
  gap: 4px;
}

.svc-side-card a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.94rem;
  transition: color 0.25s var(--ease);
}

.svc-side-card a:hover,
.svc-side-card a.is-active {
  color: var(--teal-mist);
}

.svc-side-card a svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  opacity: 0.7;
}

.svc-side-cta {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 26px 24px;
}

.svc-side-cta h3 {
  color: var(--navy);
  margin-bottom: 8px;
}

.svc-side-cta p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 18px;
}

/* Mobile app */
.app-section {
  position: relative;
  background: var(--grad-diag);
  color: var(--white);
  overflow: hidden;
}

.app-section::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -120px;
  bottom: -180px;
  background: radial-gradient(circle, rgba(59, 147, 169, 0.45), transparent 68%);
  pointer-events: none;
}

.app-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.9;
  pointer-events: none;
}

.app-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.app-copy .eyebrow {
  margin-bottom: 12px;
}

.app-copy h2 {
  max-width: 14ch;
}

.app-copy > p {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.78);
  max-width: 42ch;
  font-size: 1.05rem;
}

.app-features {
  margin: 28px 0 32px;
  display: grid;
  gap: 14px;
}

.app-features li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.98rem;
}

.app-features .app-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--teal-mist);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.app-features .app-check svg,
.app-features .app-check i {
  width: 14px;
  height: 14px;
  font-size: 0.7rem;
}

.app-features strong {
  display: block;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 2px;
}

.app-features span {
  display: block;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
}

.app-stores {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 56px;
  padding: 10px 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  transition: background 0.3s var(--ease), transform 0.3s var(--ease), border-color 0.3s var(--ease);
}

.store-btn:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
}

.store-btn svg,
.store-btn > i {
  width: 26px;
  height: 26px;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.store-btn small {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.7;
  line-height: 1.2;
}

.store-btn strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.app-visual {
  display: flex;
  justify-content: center;
  perspective: 1000px;
}

.phone-frame {
  width: min(280px, 100%);
  aspect-ratio: 9 / 18.5;
  border-radius: 36px;
  background: #0a1224;
  border: 3px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.35),
    inset 0 0 0 2px rgba(255, 255, 255, 0.06);
  padding: 12px;
  position: relative;
  transform: rotateY(-8deg) rotateX(4deg);
  animation: phone-float 6s var(--ease) infinite;
}

@keyframes phone-float {
  0%, 100% { transform: rotateY(-8deg) rotateX(4deg) translateY(0); }
  50% { transform: rotateY(-6deg) rotateX(2deg) translateY(-10px); }
}

.phone-frame::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 72px;
  height: 8px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.12);
  z-index: 2;
}

.phone-screen {
  height: 100%;
  border-radius: 28px;
  background: linear-gradient(180deg, #0d2340 0%, #061428 100%);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 36px 16px 16px;
}

.phone-status {
  display: flex;
  justify-content: space-between;
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 18px;
}

.phone-brand {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-bright);
  font-weight: 600;
  margin-bottom: 6px;
}

.phone-screen h3 {
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.phone-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 12px;
}

.phone-tile {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 12px 10px;
}

.phone-tile i {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(59, 147, 169, 0.35);
  color: var(--teal-mist);
  margin-bottom: 8px;
  font-style: normal;
}

.phone-tile i svg {
  width: 14px;
  height: 14px;
}

.phone-tile strong {
  display: block;
  font-size: 0.72rem;
  color: var(--white);
  font-weight: 600;
  line-height: 1.25;
}

.phone-row {
  background: rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 10px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.8);
}

.phone-row em {
  font-style: normal;
  color: var(--teal-bright);
  font-weight: 600;
  font-size: 0.65rem;
}

.phone-cta {
  margin-top: auto;
  background: var(--grad);
  border-radius: 12px;
  padding: 12px;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--white);
}

/* Values / why */
.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.value-card {
  padding: 32px 28px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.value-num {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--teal-bright);
  display: block;
  margin-bottom: 16px;
}

.value-card h3 {
  margin-bottom: 10px;
}

.value-card p {
  color: rgba(247, 247, 245, 0.7);
}

/* Process */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  counter-reset: step;
}

.process-step {
  background: var(--white);
  border-radius: 24px;
  padding: 28px 24px 32px;
  border: 1px solid var(--line);
  position: relative;
}

.process-step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--serif);
  font-size: 2.4rem;
  color: var(--teal);
  display: block;
  margin-bottom: 18px;
  line-height: 1;
}

.process-step h3 {
  margin-bottom: 10px;
  color: var(--navy);
}

.process-step p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* CTA band */
.cta-band {
  position: relative;
  overflow: hidden;
  background: var(--grad-diag);
  color: var(--white);
  border-radius: 32px;
  padding: 64px 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}

.cta-band::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -80px;
  top: -140px;
  background: radial-gradient(circle, rgba(59, 147, 169, 0.55), transparent 70%);
}

.cta-band > * {
  position: relative;
  z-index: 1;
}

.cta-band p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.78);
  max-width: 48ch;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
}

.contact-card,
.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 32px;
  box-shadow: var(--shadow);
}

.contact-list {
  margin-top: 28px;
  display: grid;
  gap: 16px;
}

.contact-list a,
.contact-list p {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  color: var(--ink);
}

.contact-list strong {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}

.icon-chip {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--paper-warm);
  color: var(--teal-deep);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.map-wrap {
  margin-top: 24px;
  border-radius: 20px;
  overflow: hidden;
  height: 240px;
  border: 1px solid var(--line);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.form {
  display: grid;
  gap: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field {
  display: grid;
  gap: 6px;
}

.field span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 12px;
  padding: 13px 14px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(59, 147, 169, 0.15);
  background: var(--white);
}

.form-note {
  font-size: 0.82rem;
  color: var(--muted);
}

.form-success {
  display: none;
  text-align: center;
  padding: 48px 16px;
}

.form-card.is-sent .form {
  display: none;
}

.form-card.is-sent .form-success {
  display: block;
}

.form-success h3 {
  margin: 12px 0 8px;
}

/* Page hero */
.page-hero {
  background: var(--grad-diag);
  color: var(--white);
  padding: 88px 0 72px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -120px;
  top: -160px;
  background: radial-gradient(circle, rgba(59, 147, 169, 0.5), transparent 70%);
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  margin-top: 4px;
}

.crumb {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 32px;
}

.page-hero-service .crumb {
  margin-bottom: 0;
  padding-bottom: 2.75rem;
}

.page-hero-service h1 {
  margin-top: 0;
  padding-top: 0;
}

.page-hero-service {
  padding-bottom: 96px;
}

.page-hero-service + .section {
  padding-top: 0;
  margin-top: -48px;
  position: relative;
  z-index: 2;
}

.crumb a:hover {
  color: var(--white);
}

.page-hero .lede {
  margin-top: 16px;
  max-width: 46ch;
  color: rgba(247, 247, 245, 0.82);
}

/* About page extras */
.story-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.portrait {
  border-radius: 28px;
  overflow: hidden;
  min-height: 420px;
  box-shadow: var(--shadow);
}

.portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 420px;
}

.principles {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.principle {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  padding: 18px;
  background: var(--white);
  border-radius: 18px;
  border: 1px solid var(--line);
}

/* Footer */
.site-footer {
  background: var(--navy-deep);
  color: var(--white);
  padding: 64px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
  background: var(--paper);
  border-radius: 16px;
  padding: 10px 14px;
  display: inline-flex;
  margin-bottom: 16px;
}

.footer-logo img {
  height: 48px;
  width: auto;
}

.site-footer p,
.site-footer a {
  color: rgba(247, 247, 245, 0.68);
  font-size: 0.94rem;
}

.site-footer h4 {
  margin-bottom: 16px;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal-bright);
}

.site-footer ul {
  display: grid;
  gap: 10px;
}

.site-footer a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 22px;
  color: rgba(247, 247, 245, 0.45);
  font-size: 0.84rem;
}

/* WhatsApp */
.wa-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: grid;
  place-items: center;
  box-shadow: 0 16px 32px rgba(37, 211, 102, 0.35);
  transition: transform 0.3s var(--ease);
}

.wa-fab:hover {
  transform: translateY(-3px) scale(1.04);
}

.wa-fab svg {
  width: 28px;
  height: 28px;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  animation: rise 0.9s var(--ease) forwards;
}

.delay-1 { animation-delay: 0.12s; }
.delay-2 { animation-delay: 0.24s; }
.delay-3 { animation-delay: 0.36s; }
.delay-4 { animation-delay: 0.48s; }

@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}

.js-reveal {
  opacity: 0;
  transform: translateY(32px);
  animation: rise 0.8s var(--ease) forwards;
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.js-reveal.is-in {
  opacity: 1;
  transform: none;
}

/* Utilities */
.muted { color: var(--muted); }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.center { text-align: center; }

/* Responsive */
@media (max-width: 980px) {
  .nav,
  .header-cta .btn {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .top-bar-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
  }

  .hero-grid,
  .about-grid,
  .section-head,
  .contact-grid,
  .story-grid,
  .cta-band,
  .footer-grid,
  .app-grid,
  .svc-detail-layout {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-grid,
  .reviews-grid,
  .teaser-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vm-grid {
    grid-template-columns: 1fr;
  }

  .service-sub {
    grid-template-columns: 1fr;
  }

  .svc-side {
    position: static;
  }

  .phone-frame {
    transform: none;
    animation: phone-float-mobile 5s var(--ease) infinite;
  }

  @keyframes phone-float-mobile {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
  }

  .hero {
    padding: 48px 0 64px;
  }

  .brief {
    margin-top: 12px;
  }

  .values,
  .process {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .cta-band {
    padding: 40px 28px;
  }

  .section {
    padding: 80px 0;
  }
}

@media (max-width: 640px) {
  .container,
  .container-wide {
    width: min(1180px, calc(100% - 28px));
  }

  .logo {
    height: 42px;
  }

  .hero-meta {
    gap: 18px;
  }

  .top-bar-contact {
    gap: 6px 14px;
    font-size: 0.78rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .blog-grid,
  .reviews-grid,
  .teaser-strip {
    grid-template-columns: 1fr;
  }

  .app-stores {
    flex-direction: column;
  }

  .store-btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee-track,
  .reveal,
  .js-reveal,
  .btn,
  .phone-frame {
    animation: none;
    transition: none;
  }
  .js-reveal,
  .reveal {
    opacity: 1;
    transform: none;
  }
}
