:root {
  --gold: #f6a11a;
  --gold-light: #ffd93a;
  --gold-dark: #ff7a1a;
  --cream: #efe1c8;
  --cream-deep: #ddc08a;
  --white: #ffffff;
  --charcoal: #11264f;
  --gray: #56637a;
  --gray-light: #d4d9e2;
  --navy: #09162f;
  --forest: #2d7a3a;
  --brand-gradient: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 48%, var(--gold-light) 100%);
  --shadow-soft: 0 20px 48px rgba(246, 161, 26, 0.18);
  --shadow-panel: 0 26px 64px rgba(17, 38, 79, 0.08);
  --card-radius: 24px;
  --section-space: 92px;
  --transition-smooth: 0.32s cubic-bezier(0.22, 1, 0.36, 1);
  --transition-slow: 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  background: var(--white);
  color: var(--charcoal);
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

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

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

nav {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--cream-deep);
  backdrop-filter: blur(12px);
  transition: box-shadow var(--transition-smooth), background var(--transition-smooth),
    border-color var(--transition-smooth), transform var(--transition-smooth);
}

nav.scrolled {
  box-shadow: 0 4px 32px rgba(246, 161, 26, 0.14);
  background: rgba(255, 255, 255, 0.985);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  max-width: min(26vw, 280px);
}

.logo-image {
  width: auto;
  height: 68px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
}

.nav-links a {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal);
  text-decoration: none;
  position: relative;
  transition: color var(--transition-smooth), transform var(--transition-smooth);
}

.nav-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -4px;
  left: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-dark);
}

.nav-links a:hover {
  transform: translateY(-1px);
}

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

.nav-cta {
  background: var(--brand-gradient);
  color: var(--white) !important;
  padding: 10px 24px;
  font-size: 10px !important;
  letter-spacing: 0.16em !important;
  box-shadow: 0 16px 30px rgba(246, 161, 26, 0.18);
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover,
.nav-cta.active {
  background: var(--charcoal);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: 0;
  background: transparent;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--charcoal);
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

main {
  padding-top: 88px;
}

section {
  padding: var(--section-space) 0;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-label,
.page-eyebrow,
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
}

.section-label {
  margin-bottom: 20px;
}

.page-eyebrow {
  margin-bottom: 24px;
}

.hero-eyebrow {
  margin-bottom: 28px;
}

.section-label span,
.page-eyebrow span,
.hero-eyebrow span,
.eyebrow-inline {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.section-label-line,
.page-eyebrow-line,
.hero-eyebrow-line,
.eyebrow-inline::before {
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.page-eyebrow-line,
.hero-eyebrow-line {
  width: 48px;
}

.section-title,
.page-title,
.hero-title {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 0.98;
  color: var(--charcoal);
}

.section-title {
  font-size: clamp(40px, 3.8vw, 60px);
  margin-bottom: 18px;
}

.page-title {
  font-size: clamp(56px, 5.4vw, 78px);
}

.hero-title {
  font-size: clamp(48px, 5vw, 72px);
  margin-bottom: 24px;
}

.section-title em,
.page-title em,
.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.section-sub,
.hero-sub,
.intro-copy,
.copy-block p,
.stacked-copy p,
.process-step p,
.service-card p,
.product-desc,
.product-panel p,
.trust-card p,
.stat-panel p,
.about-value p,
.team-card p,
.detail-card p,
.timeline-item p,
.spec-card p,
.contact-info p,
.footer-brand p {
  line-height: 1.85;
  color: var(--gray);
}

.section-sub,
.hero-sub {
  font-size: 15px;
}

.section-sub {
  max-width: 560px;
}

.hero-sub {
  max-width: 500px;
  margin-bottom: 38px;
}

.gold-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
}

.btn-primary,
.btn-secondary,
.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 16px 36px;
  border: 0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background var(--transition-smooth), color var(--transition-smooth),
    transform var(--transition-smooth), box-shadow var(--transition-smooth),
    border-color var(--transition-smooth);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.btn-primary::before,
.btn-secondary::before,
.btn-outline-gold::before {
  content: "";
  position: absolute;
  inset: -30% auto -30% -45%;
  width: 44%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  transform: skewX(-24deg) translateX(-180%);
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
  z-index: -1;
}

.btn-primary:hover::before,
.btn-secondary:hover::before,
.btn-outline-gold:hover::before {
  transform: skewX(-24deg) translateX(520%);
}

.btn-primary {
  background: var(--brand-gradient);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--charcoal);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(246, 161, 26, 0.32);
}

.btn-secondary {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--gray-light);
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
  transform: translateY(-2px);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold-light);
  border: 1.5px solid var(--gold);
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

.hero {
  min-height: auto;
  background: var(--white);
  display: flex;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}

.hero-bg-video,
.hero-bg-logo,
.hero-bg-wash {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-bg-video {
  overflow: hidden;
  opacity: 0.92;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.045);
}

.hero-bg-logo {
  background-image: url("assets/logo.png");
  background-repeat: no-repeat;
  background-size: min(540px, 42vw);
  background-position: calc(100% - 5vw) 54%;
  opacity: 0.08;
  filter: blur(1px);
}

.hero-bg-wash {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.54) 0%,
    rgba(255, 255, 255, 0.34) 30%,
    rgba(255, 255, 255, 0.12) 58%,
    rgba(239, 225, 200, 0.18) 100%
  );
}

.hero-bg-pattern,
.page-hero::before,
.cta-section::before,
.dark-panel::before,
.section-blue::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 60px,
    rgba(246, 161, 26, 0.04) 60px,
    rgba(246, 161, 26, 0.04) 61px
  );
  pointer-events: none;
}

.hero-bg-pattern {
  opacity: 0.36;
}

.hero-gold-line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 56vw;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
  transform: translateY(-50%);
  opacity: 0.4;
}

.hero-inner {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 20px min(18px, 2vw) 80px 14px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  align-items: start;
  position: relative;
  z-index: 2;
}

.hero-inner > *,
.intro-grid > *,
.content-grid > *,
.contact-layout > *,
.metrics-grid > * {
  min-width: 0;
}

.hero-btns,
.cta-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-copy-panel {
  max-width: min(620px, calc(100vw - 44px));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.56), rgba(255, 255, 255, 0.38));
  border: 1px solid rgba(246, 161, 26, 0.14);
  border-radius: 28px;
  box-shadow: var(--shadow-panel);
  backdrop-filter: blur(14px);
  padding: 32px 34px 32px;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth),
    border-color var(--transition-smooth), background var(--transition-smooth);
}

.hero-stat-num,
.stat-panel strong,
.service-num,
.product-num,
.timeline-year {
  font-family: "Cormorant Garamond", serif;
}

.hero-stat-label,
.meta-kicker,
.service-list li,
.contact-list strong,
.detail-card strong,
.timeline-meta,
.footer-col h5 {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.service-card,
.product-panel,
.detail-card,
.stat-panel,
.team-card,
.trust-card,
.about-value,
.spec-card {
  background: var(--white);
  border: 1px solid rgba(17, 38, 79, 0.08);
  border-radius: var(--card-radius);
  box-shadow: 0 14px 34px rgba(17, 38, 79, 0.04);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth),
    border-color var(--transition-smooth), background var(--transition-smooth);
}

.hero-copy-panel:hover {
  transform: translateY(-6px);
}

.service-icon,
.trust-icon,
.spec-icon-wrap,
.detail-icon,
.about-value-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.service-card h3,
.trust-card h4,
.stat-panel h4,
.detail-card h4,
.product-name,
.product-panel h3,
.about-value h4,
.team-card h4,
.spec-card h4,
.contact-info h3,
.contact-form-wrap h4 {
  font-family: "Cormorant Garamond", serif;
  color: var(--charcoal);
}

.contact-link {
  text-decoration: none;
}

.contact-link:hover {
  color: var(--gold-dark);
}

.page-hero {
  background: var(--navy);
  padding: 148px 0 88px;
  position: relative;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.page-hero::after,
.cta-section::after,
.dark-panel::after,
.section-blue::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 120px;
  background: linear-gradient(180deg, transparent, rgba(9, 22, 47, 0.18));
  pointer-events: none;
}

.page-hero .container,
.cta-inner,
.dark-panel .container,
.section-blue .container,
.process-surface .container {
  position: relative;
  z-index: 2;
}

.page-hero .page-title,
.cta-section .section-title,
.dark-panel .section-title {
  color: var(--white);
}

.page-hero .page-title em {
  color: var(--gold-light);
}

.page-hero-about {
  background-image: linear-gradient(rgba(9, 22, 47, 0.7), rgba(9, 22, 47, 0.82)), url("images/about-hero.webp");
  background-position: center 38%;
}

.page-hero-services {
  background-image: linear-gradient(rgba(9, 22, 47, 0.7), rgba(9, 22, 47, 0.82)), url("images/services-hero.webp");
  background-position: center 46%;
}

.page-hero-products {
  background-image: linear-gradient(rgba(9, 22, 47, 0.7), rgba(9, 22, 47, 0.82)), url("images/products-hero.webp");
  background-position: center 42%;
}

.page-hero-industries {
  background-image: linear-gradient(rgba(9, 22, 47, 0.7), rgba(9, 22, 47, 0.82)), url("images/industries-hero.webp");
  background-position: center 34%;
}

.page-hero-contact {
  background-image: linear-gradient(rgba(9, 22, 47, 0.7), rgba(9, 22, 47, 0.82)), url("images/contact-hero.webp");
  background-position: center 44%;
}

.intro-grid,
.content-grid,
.contact-layout,
.metrics-grid,
.two-column {
  display: grid;
  gap: 80px;
  align-items: start;
}

.intro-grid,
.content-grid,
.contact-layout {
  grid-template-columns: 1fr 1fr;
}

.media-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.feature-media,
.showcase-card {
  background: var(--white);
  border: 1px solid rgba(17, 38, 79, 0.08);
  border-radius: var(--card-radius);
  box-shadow: 0 16px 38px rgba(17, 38, 79, 0.05);
}

.feature-media {
  overflow: hidden;
  position: relative;
}

.feature-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(9, 22, 47, 0.28));
  pointer-events: none;
}

.feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow), filter var(--transition-smooth);
}

.feature-media:hover img {
  transform: scale(1.03);
}

.feature-media-tall {
  min-height: 380px;
}

.feature-media-wide {
  min-height: 320px;
}

.feature-media figcaption {
  position: absolute;
  right: 24px;
  bottom: 20px;
  left: 24px;
  z-index: 1;
  font-size: 12px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}

.section-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 24px;
  align-items: stretch;
  margin-top: 52px;
  margin-bottom: 60px;
}

.showcase-card {
  padding: 34px 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 225, 200, 0.9));
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.showcase-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 34px;
  font-weight: 600;
  line-height: 1.05;
  color: var(--charcoal);
}

.showcase-card p {
  font-size: 14px;
  line-height: 1.85;
  color: var(--gray);
}

.about-overview-top {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(440px, 0.98fr);
  gap: 56px;
  align-items: start;
}

.about-overview-section .copy-block {
  max-width: 640px;
  padding-top: 18px;
}

.overview-media {
  min-height: 420px;
  border: 1px solid rgba(221, 192, 138, 0.35);
  box-shadow: 0 22px 56px rgba(17, 38, 79, 0.1);
}

.overview-media img {
  filter: saturate(1.04) contrast(1.02);
}

.overview-media::after {
  height: 46%;
  background: linear-gradient(180deg, transparent, rgba(9, 22, 47, 0.58));
}

.media-badge {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.56);
  backdrop-filter: blur(10px);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal);
}

.overview-media figcaption {
  max-width: 420px;
  font-size: 13px;
  line-height: 1.75;
}

.about-overview-bottom {
  margin-top: 28px;
  padding-top: 26px;
  border-top: 1px solid rgba(221, 192, 138, 0.6);
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: 24px;
  align-items: start;
}

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

.overview-panel {
  padding: 26px 24px 24px;
  border-top: 1px solid rgba(221, 192, 138, 0.8);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 247, 240, 0.96));
}

.overview-panel h4 {
  margin-top: 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: 29px;
  font-weight: 600;
  line-height: 1.03;
  color: var(--charcoal);
}

.overview-panel p {
  margin-top: 14px;
  font-size: 13px;
  line-height: 1.85;
  color: var(--gray);
}

.overview-note {
  min-height: 100%;
  padding: 26px 24px 24px;
  background: linear-gradient(180deg, rgba(239, 225, 200, 0.4), rgba(255, 255, 255, 0.96));
  border-left: 1px solid rgba(221, 192, 138, 0.55);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.overview-note p {
  font-size: 13px;
  line-height: 1.8;
  color: var(--gray);
}

.copy-block p,
.stacked-copy p {
  font-size: 15px;
  margin-bottom: 18px;
}

.copy-block p.lead,
.intro-copy.lead {
  font-size: 18px;
  font-weight: 500;
  font-family: "Cormorant Garamond", serif;
  color: var(--charcoal);
  line-height: 1.55;
}

.accent-surface {
  background: var(--cream);
}

.section-white {
  background: var(--white);
}

.section-blue {
  background: linear-gradient(135deg, rgba(9, 22, 47, 0.98), rgba(17, 38, 79, 0.94));
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.section-blue .section-title,
.section-blue .section-sub {
  color: var(--white);
}

.section-blue .section-sub {
  color: rgba(255, 255, 255, 0.68);
}

.section-blue .product-panels {
  background: transparent;
}

.section-blue .product-panel {
  background: rgba(255, 255, 255, 0.96);
}

.section-blue .product-panel p {
  color: var(--gray);
}

.process-surface {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

main > section:not(.hero):not(.page-hero) {
  position: relative;
}

main > section:not(.hero):not(.page-hero) + section:not(.page-hero)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 40px;
  right: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(221, 192, 138, 0.8), transparent);
  opacity: 0.55;
  pointer-events: none;
}

.process-surface .process-steps {
  gap: 18px;
  border: 0;
  background: transparent;
}

.process-surface .process-step {
  background: rgba(255, 255, 255, 0.94);
}

.process-surface .section-sub,
.process-surface .process-step p {
  color: var(--gray);
}

.process-surface .process-step h4 {
  color: var(--charcoal);
}

.process-surface .process-step::after {
  color: rgba(246, 161, 26, 0.14);
}

.process-surface .process-step:hover {
  background: #f6ead4;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 18px;
  background: transparent;
}

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

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.trust-grid,
.team-grid,
.services-grid,
.specs-grid {
  margin-top: 60px;
}

.trust-card,
.team-card,
.about-value,
.service-card {
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
}

.trust-card,
.team-card {
  padding: 40px 32px;
  text-align: center;
}

.trust-card:hover,
.team-card:hover,
.about-value:hover,
.spec-card:hover {
  background: var(--cream);
}

.trust-card:hover,
.team-card:hover {
  transform: translateY(-4px);
}

.trust-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.trust-card h4,
.stat-panel h4,
.detail-card h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
}

.service-card {
  padding: 48px 36px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(17, 38, 79, 0.08);
  border-radius: var(--card-radius);
  box-shadow: 0 16px 38px rgba(17, 38, 79, 0.05);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.service-card:hover {
  background: var(--cream);
  transform: translateY(-8px);
  border-color: rgba(246, 161, 26, 0.2);
  box-shadow: 0 24px 52px rgba(246, 161, 26, 0.16);
  z-index: 1;
}

.service-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.service-num {
  display: block;
  font-size: 60px;
  font-weight: 300;
  color: var(--cream-deep);
  line-height: 1;
  transition: color 0.25s;
}

.service-card:hover .service-num {
  color: var(--gold-light);
}

.service-tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(239, 225, 200, 0.66);
  border: 1px solid rgba(221, 192, 138, 0.58);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal);
}

.service-icon {
  font-size: 32px;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.2;
}

.service-card p {
  font-size: 13px;
  margin-bottom: 20px;
}

.service-features,
.service-list,
.contact-list,
.footer-col ul,
.products-list {
  list-style: none;
}

.service-features,
.service-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-features li,
.service-list li {
  font-size: 11px;
  color: var(--gray);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.75;
}

.service-features li::before,
.service-list li::before,
.contact-list li::before {
  content: "";
  width: 16px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.service-divider {
  width: 100%;
  height: 1px;
  margin: 24px 0 18px;
  background: linear-gradient(90deg, rgba(221, 192, 138, 0.7), rgba(221, 192, 138, 0.16));
}

.service-best-for {
  margin-top: auto;
  padding-top: 2px;
}

.service-best-for .meta-kicker {
  color: var(--gold-dark);
  margin-bottom: 8px;
}

.service-best-for p {
  margin-bottom: 0;
  font-size: 12px;
  line-height: 1.8;
  color: var(--gray);
}

.dark-panel {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.dark-panel .section-sub,
.dark-panel .process-step p,
.dark-panel .timeline-item p,
.dark-panel .stat-panel p {
  color: rgba(255, 255, 255, 0.58);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 60px;
  gap: 18px;
  border: 0;
  background: transparent;
}

.process-step {
  padding: 40px 32px;
  border: 1px solid rgba(246, 161, 26, 0.16);
  border-radius: var(--card-radius);
  background: rgba(255, 255, 255, 0.02);
  position: relative;
  transition: transform var(--transition-smooth), background var(--transition-smooth),
    border-color var(--transition-smooth), box-shadow var(--transition-smooth);
}

.process-step::after {
  content: attr(data-num);
  position: absolute;
  top: 28px;
  right: 24px;
  font-family: "Cormorant Garamond", serif;
  font-size: 48px;
  font-weight: 300;
  color: rgba(246, 161, 26, 0.1);
  line-height: 1;
}

.process-step-icon {
  font-size: 28px;
  margin-bottom: 20px;
  display: block;
}

.process-step h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 12px;
}

.process-step:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(9, 22, 47, 0.12);
}

.product-row {
  display: grid;
  grid-template-columns: 80px minmax(220px, 1fr) minmax(280px, 1fr) auto;
  align-items: center;
  gap: 40px;
  padding: 36px 40px;
  background: var(--white);
  border: 1px solid var(--cream-deep);
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}

.product-row:hover {
  background: var(--cream);
  border-color: var(--gold-light);
  transform: translateX(6px);
}

.product-num {
  font-size: 36px;
  font-weight: 300;
  color: var(--gold-light);
}

.product-name {
  font-size: 26px;
  font-weight: 600;
}

.product-name small,
.product-badge,
.detail-content label,
.form-group label,
.team-card .role {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.product-name small,
.team-card .role {
  color: var(--gold);
  margin-bottom: 4px;
}

.product-desc {
  font-size: 13px;
}

.product-badge {
  padding: 8px 20px;
  background: var(--cream);
  border: 1px solid var(--gold-light);
  color: var(--gold-dark);
  white-space: nowrap;
}

.product-panels {
  margin-top: 60px;
}

.product-panel {
  padding: 40px 36px;
  border: 1px solid rgba(17, 38, 79, 0.08);
  border-radius: var(--card-radius);
  box-shadow: 0 16px 38px rgba(17, 38, 79, 0.05);
}

.product-panel:hover,
.detail-card:hover,
.spec-card:hover,
.about-value:hover,
.stat-panel:hover,
.timeline-item:hover {
  transform: translateY(-6px);
  border-color: rgba(246, 161, 26, 0.2);
  box-shadow: 0 18px 42px rgba(17, 38, 79, 0.08);
}

.product-panel h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 10px;
}

.product-panel p {
  font-size: 13px;
  margin-bottom: 18px;
}

.about-value {
  padding: 32px 28px;
}

.about-value-icon,
.spec-icon-wrap,
.detail-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--cream), var(--cream-deep));
  border: 1px solid var(--gold-light);
  font-size: 18px;
  margin-bottom: 16px;
}

.about-value h4,
.spec-card h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.team-avatar {
  width: 80px;
  height: 80px;
  background: var(--brand-gradient);
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--white);
}

.team-card h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 4px;
}

.metrics-grid {
  grid-template-columns: 1.1fr 0.9fr;
}

.stats-stack,
.details-stack,
.timeline-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.stat-panel,
.detail-card,
.timeline-item {
  border: 1px solid rgba(246, 161, 26, 0.16);
  padding: 28px 30px;
  border-radius: var(--card-radius);
  box-shadow: 0 14px 34px rgba(17, 38, 79, 0.04);
}

.stat-panel strong {
  font-size: 44px;
  font-weight: 600;
  line-height: 1;
  color: var(--gold-light);
  display: block;
  margin-bottom: 10px;
}

.stat-panel h4 {
  color: var(--white);
}

.detail-card h4 {
  margin-bottom: 10px;
}

.timeline-item {
  position: relative;
  padding-left: 36px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  top: 34px;
  left: 16px;
  width: 1px;
  height: calc(100% + 18px);
  background: rgba(246, 161, 26, 0.18);
}

.timeline-item:last-child::before {
  display: none;
}

.timeline-year {
  font-size: 26px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 6px;
}

.timeline-meta {
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 12px;
}

.spec-card {
  padding: 48px 40px;
  display: flex;
  gap: 28px;
  align-items: flex-start;
  transition: background 0.25s;
}

.contact-layout {
  padding: 100px 0;
  grid-template-columns: 1fr 1.1fr;
}

.contact-info h3 {
  font-size: 36px;
  font-weight: 300;
  margin-bottom: 20px;
  line-height: 1.2;
}

.contact-info p {
  font-size: 14px;
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-detail {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.detail-icon {
  margin-bottom: 0;
  flex-shrink: 0;
}

.detail-content label {
  color: var(--gold);
  margin-bottom: 4px;
}

.detail-content span,
.contact-list li {
  font-size: 14px;
  color: var(--charcoal);
  line-height: 1.75;
}

.contact-form-wrap {
  background: var(--cream);
  padding: 48px;
  border: 1px solid var(--cream-deep);
  border-radius: calc(var(--card-radius) + 2px);
  box-shadow: var(--shadow-panel);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth),
    border-color var(--transition-smooth);
}

.response-note {
  font-size: 12px;
  line-height: 1.7;
  color: var(--gray);
  margin-top: 14px;
}

.form-status {
  display: none;
  margin-bottom: 22px;
  padding: 14px 16px;
  border-radius: 16px;
  font-size: 13px;
  line-height: 1.7;
}

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

.form-status.success {
  background: rgba(45, 122, 58, 0.1);
  border: 1px solid rgba(45, 122, 58, 0.2);
  color: #245d2d;
}

.form-status.error {
  background: rgba(183, 60, 42, 0.08);
  border: 1px solid rgba(183, 60, 42, 0.18);
  color: #8b2c1f;
}

.contact-form-wrap h4 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 32px;
}

.honeypot-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  color: var(--gray);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--white);
  border: 1px solid var(--cream-deep);
  font-size: 13px;
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(246, 161, 26, 0.1);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-submit {
  width: 100%;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 22px;
}

.contact-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.contact-list strong {
  color: var(--gold);
  font-size: 8px;
  display: block;
}

.cta-section {
  background-color: var(--navy);
  background-image:
    linear-gradient(135deg, rgba(9, 22, 47, 0.68) 0%, rgba(17, 38, 79, 0.56) 46%, rgba(9, 22, 47, 0.72) 100%),
    url("images/services-hero.webp");
  background-size: cover;
  background-position: center 48%;
  background-repeat: no-repeat;
  text-align: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.cta-section::before {
  background-image:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 60px,
      rgba(246, 161, 26, 0.05) 60px,
      rgba(246, 161, 26, 0.05) 61px
    );
  background-size: auto;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.42;
}

.cta-inner .section-sub {
  margin: 0 auto 48px;
  color: rgba(255, 255, 255, 0.72);
}

.cta-section .btn-outline-gold {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(246, 161, 26, 0.65);
}

.cta-section .btn-outline-gold:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 54px;
}

.faq-item {
  border: 1px solid rgba(246, 161, 26, 0.18);
  background: var(--white);
  overflow: hidden;
  border-radius: 22px;
  box-shadow: 0 12px 30px rgba(17, 38, 79, 0.04);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth),
    border-color var(--transition-smooth);
}

.faq-toggle {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--charcoal);
  text-align: left;
  cursor: pointer;
  transition: background var(--transition-smooth), color var(--transition-smooth);
}

.faq-item:hover,
.faq-item.open {
  border-color: rgba(246, 161, 26, 0.32);
}

.faq-item:hover .faq-toggle,
.faq-item.open .faq-toggle {
  background: linear-gradient(180deg, rgba(239, 225, 200, 0.6), rgba(255, 255, 255, 0));
}

.faq-toggle span:first-child {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 500;
}

.faq-icon {
  flex-shrink: 0;
  font-size: 22px;
  color: var(--gold-dark);
  transition: transform 0.25s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.faq-item.open .faq-body {
  grid-template-rows: 1fr;
}

.faq-body-inner {
  overflow: hidden;
}

.faq-body p {
  padding: 0 28px 24px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--gray);
}

.map-wrap {
  margin-top: 54px;
  border: 1px solid rgba(246, 161, 26, 0.16);
  background: var(--white);
  overflow: hidden;
  border-radius: calc(var(--card-radius) + 4px);
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth),
    border-color var(--transition-smooth);
}

.map-frame {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

.quick-actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  background: transparent;
  margin-top: 34px;
}

.quick-action-card {
  background: var(--white);
  padding: 26px 24px;
  border: 1px solid rgba(17, 38, 79, 0.08);
  border-radius: var(--card-radius);
  box-shadow: 0 16px 36px rgba(17, 38, 79, 0.05);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth),
    background var(--transition-smooth);
}

.quick-action-card:hover,
.contact-form-wrap:hover,
.map-wrap:hover,
.faq-item:hover {
  transform: translateY(-6px);
  border-color: rgba(246, 161, 26, 0.18);
  box-shadow: 0 18px 42px rgba(17, 38, 79, 0.08);
}

.quick-action-card:hover {
  background: #f6ead4;
}

.quick-action-card h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--charcoal);
}

.quick-action-card p,
.quick-action-card a {
  font-size: 13px;
  line-height: 1.8;
  color: var(--gray);
  text-decoration: none;
}

.quick-action-card a:hover {
  color: var(--gold-dark);
}

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 1100;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1ebf73, #0a8f57);
  color: var(--white);
  text-decoration: none;
  font-size: 26px;
  box-shadow: 0 16px 34px rgba(10, 143, 87, 0.32);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: whatsappFloat 3.2s ease-in-out infinite;
}

.floating-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 38px rgba(10, 143, 87, 0.38);
}

.mobile-cta-bar {
  display: none;
}

footer {
  background: #081226;
  padding: 80px 0 40px;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(246, 161, 26, 0.15);
}

.footer-brand .logo {
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(246, 161, 26, 0.2);
  padding: 16px 18px;
  max-width: 250px;
  border-radius: 18px;
}

.footer-brand .logo-image {
  height: 72px;
}

.footer-brand p,
.footer-col ul li a,
.footer-bottom p,
.footer-bottom span,
.footer-bottom a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.42);
}

.footer-bottom a {
  text-decoration: none;
  transition: color var(--transition-smooth), transform var(--transition-smooth);
}

.footer-bottom a:hover {
  color: var(--gold-light);
  transform: translateY(-1px);
}

.footer-col h5 {
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  text-decoration: none;
  transition: color var(--transition-smooth), transform var(--transition-smooth);
}

.footer-col ul li a:hover {
  color: var(--gold-light);
  transform: translateX(4px);
}

.footer-bottom {
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }

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

@keyframes whatsappFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

main .hero-eyebrow,
main .hero-title,
main .hero-sub,
main .hero-btns,
main .page-eyebrow,
main .page-title {
  animation: fadeUp 0.7s ease both;
}

main .hero-title,
main .page-title {
  animation-delay: 0.08s;
}

main .hero-sub {
  animation-delay: 0.16s;
}

main .hero-btns {
  animation-delay: 0.22s;
}

body.is-ready .hero-video {
  transform: scale(1.06);
}

@media (max-width: 1100px) {
  .hero-inner,
  .intro-grid,
  .content-grid,
  .contact-layout,
  .metrics-grid {
    gap: 48px;
  }

  .section-showcase {
    grid-template-columns: 1fr;
  }

  .about-overview-top,
  .about-overview-bottom {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .overview-panels {
    grid-template-columns: 1fr;
  }

  .overview-note {
    border-left: 0;
    border-top: 1px solid rgba(221, 192, 138, 0.55);
  }

  .hero-video {
    object-position: center 34%;
  }

  .hero-bg-logo {
    background-size: min(440px, 40vw);
    background-position: calc(100% - 2vw) 52%;
  }

  .hero-copy-panel {
    max-width: min(560px, calc(100vw - 40px));
    padding: 24px 24px 28px;
  }

  .grid-4,
  .services-grid,
  .quick-actions {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 88px;
    right: 0;
    left: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 40px 28px;
    gap: 20px;
    border-bottom: 1px solid var(--cream-deep);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  }

  .nav-links.open {
    display: flex;
  }

  .hero {
    min-height: auto;
  }

  .hero-bg-video {
    opacity: 0.94;
  }

  .cta-section {
    background-position: center 42%;
  }

  .hero-video {
    object-position: center 28%;
  }

  .hero-bg-logo {
    background-size: min(360px, 52vw);
    background-position: center 14%;
    opacity: 0.08;
  }

  .hero-bg-wash {
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.68) 0%,
      rgba(255, 255, 255, 0.34) 42%,
      rgba(239, 225, 200, 0.26) 100%
    );
  }

  .hero-inner,
  .intro-grid,
  .content-grid,
  .contact-layout,
  .metrics-grid,
  .about-overview-top,
  .about-overview-bottom,
  .grid-3,
  .grid-4,
  .services-grid,
  .team-grid,
  .specs-grid,
  .process-steps,
  .grid-2,
  .quick-actions {
    grid-template-columns: 1fr;
  }

  .feature-media-tall,
  .feature-media-wide {
    min-height: 280px;
  }

  .hero-copy-panel {
    background: rgba(255, 255, 255, 0.58);
  }

  .form-row,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .product-row {
    grid-template-columns: 60px 1fr;
    gap: 18px;
  }

  .product-desc,
  .product-badge {
    display: none;
  }

  .process-step,
  .product-row,
  .contact-form-wrap,
  .spec-card {
    padding-left: 28px;
    padding-right: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 58px;
  }

  .nav-inner {
    min-height: 80px;
  }

  .logo {
    max-width: 210px;
  }

  .logo-image {
    height: 50px;
  }

  main {
    padding-top: 80px;
  }

  .hero {
    min-height: auto;
  }

  .nav-links {
    top: 80px;
  }

  .nav-inner,
  .container,
  .hero-inner,
  .footer-inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  main > section:not(.hero):not(.page-hero) + section:not(.page-hero)::before {
    left: 20px;
    right: 20px;
  }

  .hero-inner {
    padding-top: 12px;
    padding-bottom: 42px;
  }

  section {
    padding: 72px 0;
  }

  .page-hero {
    padding: 116px 0 64px;
  }

  .hero-title {
    font-size: clamp(38px, 10vw, 56px);
  }

  .page-title {
    font-size: clamp(40px, 11vw, 58px);
  }

  .service-card,
  .trust-card,
  .team-card,
  .product-panel,
  .about-value,
  .stat-panel,
  .detail-card {
    padding: 32px 24px;
  }

  .contact-form-wrap {
    padding: 32px 24px;
  }

  .hero-copy-panel {
    padding: 18px 18px 22px;
  }

  .service-card-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .service-tag {
    min-height: 30px;
    padding: 0 12px;
  }

  .cta-section {
    background-position: center 40%;
  }

  .showcase-card {
    padding: 28px 24px;
  }

  .showcase-card h3 {
    font-size: 30px;
  }

  .overview-media {
    min-height: 300px;
  }

  .overview-panel h4 {
    font-size: 24px;
  }

  .feature-media-tall,
  .feature-media-wide {
    min-height: 240px;
  }

  .feature-media figcaption {
    right: 18px;
    bottom: 16px;
    left: 18px;
    font-size: 11px;
    line-height: 1.6;
  }

  .faq-toggle {
    padding: 20px 20px;
  }

  .faq-toggle span:first-child {
    font-size: 20px;
  }

  .faq-body p {
    padding: 0 20px 20px;
  }

  .map-frame {
    height: 320px;
  }

  .footer-brand .logo {
    padding: 12px 14px;
  }

  .footer-brand .logo-image {
    height: 58px;
  }

  .hero-btns,
  .cta-btns {
    flex-direction: column;
    align-items: stretch;
  }

  .floating-whatsapp {
    bottom: 86px;
    right: 16px;
    width: 54px;
    height: 54px;
  }

  .mobile-cta-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1090;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: rgba(9, 22, 47, 0.98);
    border-top: 1px solid rgba(246, 161, 26, 0.18);
    backdrop-filter: blur(12px);
  }

  .mobile-cta-bar a {
    min-height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    color: var(--white);
    text-decoration: none;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }

  .mobile-cta-bar a:first-child {
    background: var(--brand-gradient);
    color: var(--white);
  }

  .mobile-cta-bar a:last-child {
    border-left: 1px solid rgba(246, 161, 26, 0.18);
  }
}

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

}
