:root {
  --green: #09b850;
  --green-bright: #63d993;
  --green-dark: #078f40;
  --green-deep: #056b32;
  --green-pale: #e8f7ee;
  --ink: #081d28;
  --ink-2: #102c38;
  --text: #50616a;
  --muted: #7b8a92;
  --line: #dce7e1;
  --soft: #f3f8f5;
  --white: #ffffff;
  --container: 1240px;
  --header-height: 92px;
  --shadow: 0 24px 70px rgba(8, 29, 40, 0.13);
  --shadow-hover: 0 30px 80px rgba(8, 29, 40, 0.18);
  --ease-premium: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: auto; scroll-padding-top: calc(var(--header-height) + 20px); }
body {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { border: 0; }

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-family: "Plus Jakarta Sans", "Manrope", Arial, sans-serif;
  line-height: 1.09;
  letter-spacing: -0.045em;
}
p { margin: 0; }

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}
.section { padding: 120px 0; }
.section-heading { margin-bottom: 52px; }
.heading-split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
}
.heading-split > p { max-width: 500px; color: var(--text); }
.section h2, .trusted-copy h2, .results-copy h2, .contact-cta h2 {
  font-size: clamp(2.35rem, 4vw, 4.6rem);
  font-weight: 700;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
}
.eyebrow-light { color: #95f3b9; }

.button {
  min-height: 54px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.button span { font-size: 1.08rem; }
.button:hover { transform: translateY(-3px); }
.button-primary { color: var(--white); background: var(--green); }
.button-primary:hover { background: var(--green-dark); }
.button-dark { color: var(--white); background: var(--ink); }
.button-dark:hover { background: #263744; }
.button-light { color: var(--ink); background: var(--white); }
.button-light:hover { color: var(--white); background: var(--green); }
.button-outline { border: 1px solid var(--line); color: var(--ink); }
.button-outline:hover { border-color: var(--green); color: var(--green-dark); }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.text-link span { color: var(--green); transition: transform 0.25s ease; }
.text-link:hover span { transform: translate(4px, -4px); }

.scroll-progress {
  position: fixed;
  inset: 0 0 auto 0;
  height: 3px;
  z-index: 9999;
  pointer-events: none;
}
.scroll-progress span { display: block; width: 0; height: 100%; background: var(--green); }

/* Header */
.site-header {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: var(--header-height);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.site-header.is-sticky {
  position: fixed;
  background: rgba(18, 32, 44, 0.96);
  box-shadow: 0 12px 35px rgba(0,0,0,0.16);
  backdrop-filter: blur(14px);
  animation: headerDrop 0.35s ease both;
}
.site-header.header-solid { position: relative; background: var(--ink); }
@keyframes headerDrop { from { transform: translateY(-100%); } to { transform: translateY(0); } }
.header-inner {
  height: 100%;
  display: grid;
  grid-template-columns: 240px 1fr auto;
  align-items: center;
}
.brand { display: inline-flex; align-items: center; gap: 12px; width: fit-content; }
.brand-mark {
  width: 42px;
  height: 42px;
  position: relative;
  display: grid;
  place-items: center;
  background: var(--green);
  clip-path: polygon(50% 0, 94% 23%, 94% 72%, 50% 100%, 6% 72%, 6% 23%);
}
.brand-mark::before, .brand-mark::after {
  content: "";
  position: absolute;
  width: 3px;
  height: 25px;
  background: var(--white);
  transform: rotate(28deg);
}
.brand-mark::before { left: 14px; }
.brand-mark::after { right: 14px; }
.brand-copy { display: flex; flex-direction: column; line-height: 1; }
.brand-copy strong { font-size: 1.05rem; letter-spacing: 0.03em; }
.brand-copy small { margin-top: 6px; font-size: 0.52rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.78; }

.primary-nav { justify-self: center; }
.nav-list { display: flex; align-items: center; gap: 34px; margin: 0; padding: 0; list-style: none; }
.nav-item { position: relative; }
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: var(--header-height);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
}
.nav-link:hover, .nav-link.is-active { color: var(--green); }
.nav-link .chev { font-size: 0.7rem; transition: transform 0.2s ease; }
.dropdown {
  position: absolute;
  left: -24px;
  top: calc(100% - 8px);
  width: 220px;
  margin: 0;
  padding: 16px 0;
  list-style: none;
  background: var(--white);
  color: var(--ink);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  box-shadow: var(--shadow);
  transition: 0.25s ease;
}
.dropdown a { display: block; padding: 10px 24px; font-size: 0.86rem; color: var(--text); }
.dropdown a:hover { color: var(--green-dark); padding-left: 29px; }
.nav-item:hover .dropdown, .nav-item:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-item:hover .chev { transform: rotate(180deg); }

.header-actions { display: flex; align-items: center; gap: 12px; }
.header-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.22);
  background: transparent;
  cursor: pointer;
}
.header-icon svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; }
.header-quote { min-height: 44px; padding-inline: 18px; }
.menu-toggle { display: none; }

/* Hero */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  color: var(--white);
  background: transparent;
}
.hero-slides, .hero-slide { position: absolute; inset: 0; width: 100%; height: 100%; overflow: hidden; background: transparent; }
.hero-slide {
  opacity: 0;
  visibility: hidden;
  transform: scale(1.04);
  background-size: cover;
  background-position: center 48%;
  background-repeat: no-repeat;
  transition: opacity 1s ease-in-out, visibility 1s ease-in-out, transform 6s linear;
}
.hero-slide.is-active { opacity: 1; visibility: visible; transform: scale(1); z-index: 1; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
          linear-gradient(90deg, rgba(10, 24, 34, 0.93) 0%, rgba(10, 24, 34, 0.78) 42%, rgba(10, 24, 34, 0.18) 78%),
          linear-gradient(0deg, rgba(9, 21, 30, 0.38), transparent 45%);
}
.hero-inner{
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: flex-start;
}
.hero-copy { width: min(760px, 75%); }
.hero-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 23px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.76);
}
.hero-kicker span { width: 30px; height: 2px; background: var(--green); }
.hero h1 { font-size: clamp(3.8rem, 7vw, 7.8rem); font-weight: 700; max-width: 900px; }
.hero-copy > p:not(.hero-kicker) { max-width: 650px; margin-top: 2px; font-size: 1.05rem; color: rgba(255,255,255,0.74); }
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 38px; }
.hero-play { display: inline-flex; align-items: center; gap: 12px; font-size: 0.84rem; font-weight: 700; }
.hero-play span { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,0.35); border-radius: 50%; color: var(--green); font-size: 0.72rem; }
.hero-socials { position: absolute; z-index: 5; right: 26px; top: 50%; transform: translateY(-50%); display: flex; flex-direction: column; gap: 14px; }
.hero-socials a { width: 36px; height: 36px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,0.25); border-radius: 50%; font-size: 0.72rem; font-weight: 800; transition: 0.2s ease; }
.hero-socials a:hover { background: var(--green); border-color: var(--green); }
.hero-controls { position: absolute; z-index: 5; left: 50%; bottom: 38px; transform: translateX(-50%); display: flex; align-items: center; gap: 18px; }
.hero-arrow { width: 42px; height: 42px; display: grid; place-items: center; color: var(--white); background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18); cursor: pointer; }
.hero-arrow:hover { background: var(--green); border-color: var(--green); }
.hero-dots { display: flex; align-items: center; gap: 12px; }
.hero-dots button { width: 48px; height: 3px; padding: 0; position: relative; overflow: visible; background: rgba(255,255,255,0.3); cursor: pointer; }
.hero-dots button::after { content: ""; position: absolute; inset: 0; width: 0; background: var(--green); }
.hero-dots button.is-active::after { width: 100%; animation: dotFill 5s linear; }
.hero-dots span { position: absolute; left: 0; bottom: 10px; font-size: 0.65rem; color: rgba(255,255,255,0.62); }
@keyframes dotFill { from { width: 0; } to { width: 100%; } }
.hero-slide.is-active .hero-copy > * { animation: heroRise 0.8s ease both; }
.hero-slide.is-active .hero-copy > *:nth-child(2) { animation-delay: 0.12s; }
.hero-slide.is-active .hero-copy > *:nth-child(3) { animation-delay: 0.22s; }
.hero-slide.is-active .hero-copy > *:nth-child(4) { animation-delay: 0.32s; }
@keyframes heroRise { from { opacity: 0; transform: translateY(34px); } to { opacity: 1; transform: translateY(0); } }

/* About */
.about-grid { display: grid; grid-template-columns: 1.02fr 0.98fr; align-items: center; gap: 95px; }
.about-visual { min-height: 610px; position: relative; }
.about-photo { position: absolute; overflow: hidden; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.about-photo:hover img { transform: scale(1.04); }
.about-photo-tall { left: 0; bottom: 0; width: 55%; height: 82%; }
.about-photo-small { right: 0; top: 0; width: 43%; height: 62%; }
.experience-card { position: absolute; right: 5%; bottom: 7%; width: 230px; min-height: 168px; padding: 28px; display: flex; align-items: flex-end; gap: 18px; background: var(--green); color: var(--white); z-index: 2; }
.experience-card strong {
  font-family: "Plus Jakarta Sans", serif; font-size: 3.5rem; line-height: 0.9; }
.experience-card p { font-size: 0.78rem; font-weight: 700; line-height: 1.5; text-transform: uppercase; letter-spacing: 0.07em; }
.decor-dot { position: absolute; border-radius: 50%; background: var(--green); }
.decor-dot-one { width: 13px; height: 13px; right: 48%; top: 9%; }
.decor-dot-two { width: 7px; height: 7px; right: 44%; top: 18%; }
.about-content h2 { margin-bottom: 32px; }
.tab-list { display: flex; gap: 32px; border-bottom: 1px solid var(--line); }
.tab-button { padding: 0 0 13px; position: relative; background: transparent; color: var(--muted); font-size: 0.84rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; cursor: pointer; }
.tab-button::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -1px; height: 2px; background: var(--green); transition: right 0.25s ease; }
.tab-button.is-active { color: var(--ink); }
.tab-button.is-active::after { right: 0; }
.tab-panels { min-height: 112px; padding-top: 25px; color: var(--text); }
.tab-panel { display: none; }
.tab-panel.is-active { display: block; animation: fadeUp 0.35s ease; }
.progress-block { margin-top: 22px; }
.progress-meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; font-size: 0.82rem; font-weight: 800; }
.progress-meta strong { color: var(--green-dark); }
.progress-track { height: 5px; background: #e9efec; }
.progress-track span { display: block; height: 100%; background: var(--green); }
.about-leader { margin-top: 32px; padding-top: 27px; display: grid; grid-template-columns: 62px 1fr auto; align-items: center; gap: 16px; border-top: 1px solid var(--line); }
.about-leader img { width: 62px; height: 62px; border-radius: 50%; object-fit: cover; object-position: top; }
.about-leader strong, .about-leader span { display: block; }
.about-leader strong { font-size: 0.95rem; }
.about-leader span { margin-top: 3px; color: var(--muted); font-size: 0.78rem; }
.circle-link { width: 50px; height: 50px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--green-dark); transition: 0.25s ease; }
.circle-link:hover { color: var(--white); background: var(--green); border-color: var(--green); transform: rotate(45deg); }

/* Services */
.services-section { background: var(--soft); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.service-card { position: relative; background: var(--white); overflow: hidden; }
.service-image { height: 245px; overflow: hidden; }
.service-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.65s ease; }
.service-card:hover .service-image img { transform: scale(1.06); }
.service-body { min-height: 278px; padding: 35px 34px 32px; position: relative; }
.service-number { position: absolute; right: 28px; top: 27px; color: #c7d0d4; font-size: 0.74rem; font-weight: 800; }
.service-icon { width: 58px; height: 58px; margin-top: -66px; margin-bottom: 26px; position: relative; display: grid; place-items: center; color: var(--white); background: var(--green); font-size: 1.5rem; box-shadow: 0 12px 30px rgba(9,184,80,0.28); }
.service-card h3 { font-size: 1.42rem; }
.service-card h3 a:hover { color: var(--green-dark); }
.service-card p { margin: 16px 0 24px; color: var(--text); font-size: 0.9rem; }

.expertise-marquee { overflow: hidden; padding: 24px 0; color: var(--white); background: var(--ink); }
.marquee-track { width: max-content; display: flex; gap: 40px; animation: marquee 34s linear infinite; }
.marquee-track span { display: flex; align-items: center; gap: 40px;
  font-family: "Plus Jakarta Sans", serif; font-size: 1.1rem; font-weight: 700; white-space: nowrap; }
.marquee-track i { color: var(--green); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* Why */
.why-section { position: relative; color: var(--white); background: #152531; }
.why-section::before { content: ""; position: absolute; inset: 0 48% 0 0; background: linear-gradient(rgba(18,32,44,.58), rgba(18,32,44,.78)), url("../images/blog-06.jpg") center/cover; opacity: 0.32; }
.why-grid { position: relative; display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 90px; align-items: center; }
.why-content h2 { margin-bottom: 28px; }
.why-intro { margin-bottom: 34px; color: rgba(255,255,255,0.7); }
.why-cards { display: grid; grid-template-columns: repeat(3, 1fr); background: rgba(255,255,255,0.05); }
.why-cards article { min-height: 340px; padding: 34px 28px; position: relative; border-left: 1px solid rgba(255,255,255,0.13); transition: background-color 0.3s ease, transform 0.3s ease; }
.why-cards article:hover { background: var(--green); transform: translateY(-8px); }
.why-cards article > span { position: absolute; top: 24px; right: 22px; color: rgba(255,255,255,0.35); font-size: 0.72rem; }
.feature-symbol { margin: 55px 0 54px; color: var(--green); font-size: 2.35rem; }
.why-cards article:hover .feature-symbol { color: var(--white); }
.why-cards h3 { font-size: 1.25rem; }
.why-cards p { margin-top: 18px; color: rgba(255,255,255,0.62); font-size: 0.84rem; }
.why-cards article:hover p { color: rgba(255,255,255,0.86); }

.trusted-strip { display: grid; grid-template-columns: 1fr 1fr; min-height: 470px; background: var(--green); color: var(--white); }
.trusted-image { overflow: hidden; clip-path: polygon(0 0, 100% 0, 87% 100%, 0 100%); }
.trusted-image img { width: 100%; height: 100%; object-fit: cover; }
.trusted-copy { padding: 80px 8vw; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
.trusted-copy .button { margin-top: 32px; }

/* Portfolio */
.portfolio-section { padding-bottom: 0; }
.portfolio-row { display: grid; grid-template-columns: repeat(4, 1fr); }
.portfolio-card { min-height: 520px; position: relative; overflow: hidden; }
.portfolio-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(10,22,31,0.88), transparent 62%); }
.portfolio-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.65s ease; }
.portfolio-card:hover img { transform: scale(1.06); }
.portfolio-overlay { position: absolute; inset: auto 30px 30px; z-index: 2; color: var(--white); transform: translateY(10px); transition: transform 0.3s ease; }
.portfolio-card:hover .portfolio-overlay { transform: translateY(0); }
.portfolio-overlay > span { color: #a9efc3; font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.12em; }
.portfolio-overlay h3 { margin-top: 8px; padding-right: 45px; font-size: 1.45rem; }
.portfolio-overlay a { position: absolute; right: 0; bottom: 0; width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,0.35); border-radius: 50%; }
.portfolio-overlay a:hover { background: var(--green); border-color: var(--green); }

.results-section { padding: 80px 0; color: var(--white); background: var(--ink); }
.results-grid { display: grid; grid-template-columns: 1.6fr repeat(3, 0.6fr); gap: 30px; align-items: center; }
.results-copy h2 { font-size: clamp(2.1rem, 3.1vw, 3.6rem); }
.stat { padding-left: 28px; border-left: 1px solid rgba(255,255,255,0.16); }
.stat strong, .stat span { display: block; }
.stat strong {
  font-family: "Plus Jakarta Sans", serif; font-size: clamp(2.8rem, 4vw, 4.5rem); line-height: 1; color: var(--green); }
.stat > span { margin-top: 11px; color: rgba(255,255,255,0.6); font-size: 0.77rem; text-transform: uppercase; letter-spacing: 0.07em; }

/* Pricing */
.pricing-layout { display: grid; grid-template-columns: 0.72fr 1.65fr; gap: 70px; }
.pricing-intro > p:not(.eyebrow):not(.pricing-note) { margin: 28px 0; color: var(--text); }
.pricing-note { display: flex; align-items: center; gap: 10px; margin-bottom: 25px; font-weight: 700; }
.pricing-note span { color: var(--green); }
.pricing-cards { display: grid; grid-template-columns: repeat(3, 1fr); align-items: stretch; }
.price-card { min-height: 460px; padding: 36px 28px; position: relative; display: flex; flex-direction: column; border: 1px solid var(--line); border-right: 0; }
.price-card:last-child { border-right: 1px solid var(--line); }
.price-card-featured { margin-top: -18px; margin-bottom: -18px; padding-top: 54px; border: 0; color: var(--white); background: var(--ink); box-shadow: var(--shadow); z-index: 2; }
.popular-label { position: absolute; top: 0; right: 0; padding: 8px 13px; color: var(--ink); background: var(--green); font-size: 0.65rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; }
.plan-icon { width: 54px; height: 54px; display: grid; place-items: center; margin-bottom: 28px; color: var(--green-dark); background: #e9f9ef; font-size: 1.45rem; }
.price-card-featured .plan-icon { color: var(--white); background: var(--green); }
.price-card h3 { font-size: 1.25rem; }
.price-card p { margin: 18px 0 25px; color: var(--text); font-size: 0.83rem; }
.price-card-featured p { color: rgba(255,255,255,0.62); }
.price { margin-top: auto; margin-bottom: 24px; }
.price strong {
  font-family: "Plus Jakarta Sans", serif; font-size: 2.7rem; line-height: 1; }
.price span { color: var(--muted); font-size: 0.74rem; }
.price-card .button { width: 100%; }

/* Blog */
.blog-section { background: var(--soft); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card { background: var(--white); padding-bottom: 30px; }
.blog-image { height: 260px; display: block; overflow: hidden; }
.blog-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.blog-card:hover .blog-image img { transform: scale(1.05); }
.blog-meta, .blog-card h3, .blog-card > .text-link { margin-inline: 28px; }
.blog-meta { margin-top: 24px; display: flex; justify-content: space-between; color: var(--muted); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; }
.blog-meta span { color: var(--green-dark); font-weight: 800; }
.blog-card h3 { margin-top: 13px; margin-bottom: 22px; font-size: 1.25rem; line-height: 1.35; letter-spacing: -0.03em; }
.blog-card h3 a:hover { color: var(--green-dark); }

.contact-cta { padding: 75px 0; color: var(--white); background: var(--green); }
.contact-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.contact-cta h2 { font-size: clamp(2.1rem, 3.5vw, 4rem); }
.contact-cta-actions { display: flex; align-items: center; gap: 28px; }
.phone-link { display: flex; align-items: center; gap: 14px; }
.phone-link > span { width: 52px; height: 52px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,0.42); border-radius: 50%; }
.phone-link small, .phone-link strong { display: block; }
.phone-link small { font-size: 0.7rem; opacity: 0.72; text-transform: uppercase; letter-spacing: 0.08em; }
.phone-link strong { margin-top: 3px; font-size: 1rem; }

/* Footer */
.site-footer { color: rgba(255,255,255,0.7); background: linear-gradient(135deg, #061923 0%, var(--ink) 52%, #0d2b37 100%); }
.footer-main { padding: 88px 0 68px; display: grid; grid-template-columns: 1.1fr 0.7fr 0.85fr 1.1fr; gap: 60px; }
.footer-brand p { max-width: 320px; margin-top: 24px; font-size: 0.88rem; }
.footer-socials { display: flex; gap: 10px; margin-top: 26px; }
.footer-socials a { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,0.16); border-radius: 50%; font-size: 0.7rem; font-weight: 800; transition: color 0.45s var(--ease-premium), background 0.45s var(--ease-premium), border-color 0.45s var(--ease-premium), transform 0.3s ease; }
.footer-socials a:hover { color: var(--white); background: var(--green); border-color: var(--green); transform: translateY(-3px); }
.footer-column h3 { margin-bottom: 24px; color: var(--white); font-size: 1rem; letter-spacing: -0.02em; }
.footer-links { margin: 0; padding: 0; list-style: none; }
.footer-links li + li { margin-top: 11px; }
.footer-links a { font-size: 0.84rem; transition: color 0.3s ease, padding-left 0.3s ease; }
.footer-links a:hover { color: var(--green); padding-left: 4px; }
.footer-contact { display: grid; gap: 12px; font-size: 0.84rem; }
.newsletter-form { display: flex; margin-top: 20px; border-bottom: 1px solid rgba(255,255,255,0.28); }
.newsletter-form input { width: 100%; padding: 13px 0; border: 0; outline: 0; color: var(--white); background: transparent; }
.newsletter-form input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-form button { padding: 0 10px; color: var(--green); background: transparent; cursor: pointer; font-size: 1.2rem; }
.footer-bottom { padding: 22px 0; border-top: 1px solid rgba(255,255,255,0.1); }
.footer-bottom-inner { display: flex; justify-content: space-between; gap: 25px; font-size: 0.75rem; }
.footer-bottom-links { display: flex; gap: 22px; }
.footer-bottom-links a { transition: color 0.3s ease; }
.footer-bottom-links a:hover { color: var(--green); }

/* Footer entrance animation (driven by main.js) */
.site-footer[data-animate] .footer-column,
.site-footer[data-animate] .footer-bottom-inner { opacity: 0; transform: translate3d(0, 28px, 0); filter: blur(2px); transition: opacity .66s var(--ease-smooth), transform .86s var(--ease-premium), filter .66s var(--ease-smooth); }
.site-footer[data-animate].is-visible .footer-column,
.site-footer[data-animate].is-visible .footer-bottom-inner { opacity: 1; transform: translate3d(0, 0, 0); filter: blur(0); }
.site-footer[data-animate] .footer-column:nth-child(1) { transition-delay: 0ms; }
.site-footer[data-animate] .footer-column:nth-child(2) { transition-delay: 90ms; }
.site-footer[data-animate] .footer-column:nth-child(3) { transition-delay: 180ms; }
.site-footer[data-animate] .footer-bottom-inner { transition-delay: 240ms; }

@media (prefers-reduced-motion: reduce) {
  .site-footer[data-animate] .footer-column,
  .site-footer[data-animate] .footer-bottom-inner { transition: none !important; opacity: 1 !important; transform: none !important; filter: none !important; }
}

.back-to-top { position: fixed; right: 24px; bottom: 24px; z-index: 900; width: 44px; height: 44px; display: grid; place-items: center; color: var(--white); background: var(--green); cursor: pointer; opacity: 0; visibility: hidden; transform: translateY(12px); transition: 0.25s ease; }
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }

/* Inner pages */
.page-hero { min-height: 390px; position: relative; display: flex; align-items: center; color: var(--white); background: linear-gradient(90deg, rgba(13,28,38,.94), rgba(13,28,38,.55)), url("assets/images/about-hero.png") center/cover; }
.page-hero-content { padding-top: 20px; }
.page-hero h1 { font-size: clamp(3rem, 5vw, 5.4rem); }
.breadcrumbs { margin-top: 20px; display: flex; gap: 12px; color: rgba(255,255,255,0.66); font-size: 0.82rem; }
.breadcrumbs span { color: var(--green); }
.inner-intro { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 85px; align-items: center; }
.inner-intro-image { position: relative; min-height: 500px; }
.inner-intro-image img { width: 82%; height: 500px; object-fit: cover; }
.inner-intro-image .floating-image { position: absolute; right: 0; bottom: -30px; width: 43%; height: 235px; border: 14px solid var(--white); }
.inner-intro-copy > p:not(.eyebrow) { margin-top: 26px; color: var(--text); }
.check-list { display: grid; gap: 12px; margin: 27px 0 32px; padding: 0; list-style: none; }
.check-list li { display: flex; gap: 11px; color: var(--text); }
.check-list li::before { content: "✓"; color: var(--green); font-weight: 800; }
.process-section { background: var(--soft); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.process-card { min-height: 280px; padding: 34px; border: 1px solid var(--line); border-right: 0; background: var(--white); }
.process-card:last-child { border-right: 1px solid var(--line); }
.process-card > span { color: var(--green);
  font-family: "Plus Jakarta Sans", serif; font-size: 2rem; font-weight: 800; }
.process-card h3 { margin-top: 48px; font-size: 1.2rem; }
.process-card p { margin-top: 16px; color: var(--text); font-size: 0.85rem; }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.testimonial-card { padding: 38px; border: 1px solid var(--line); }
.quote-mark { color: var(--green); font-size: 2.7rem; line-height: 1; }
.testimonial-card > p { margin: 18px 0 28px; color: var(--text); font-style: italic; }
.testimonial-person { display: flex; align-items: center; gap: 13px; }
.testimonial-person img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; }
.testimonial-person strong, .testimonial-person span { display: block; }
.testimonial-person strong { font-size: 0.85rem; }
.testimonial-person span { color: var(--muted); font-size: 0.72rem; }
.services-full-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-tile { min-height: 300px; padding: 36px; position: relative; overflow: hidden; border: 1px solid var(--line); transition: 0.3s ease; }
.service-tile::after { content: "↗"; position: absolute; right: 26px; bottom: 24px; color: var(--green); font-size: 1.4rem; }
.service-tile:hover { color: var(--white); background: var(--ink); transform: translateY(-6px); box-shadow: var(--shadow); }
.service-tile-icon { color: var(--green); font-size: 2.4rem; }
.service-tile h3 { margin-top: 60px; font-size: 1.35rem; }
.service-tile p { margin-top: 16px; color: var(--text); font-size: 0.86rem; }
.service-tile:hover p { color: rgba(255,255,255,0.68); }
.filter-bar { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-bottom: 40px; }
.filter-button { padding: 11px 18px; color: var(--text); background: var(--soft); cursor: pointer; font-size: 0.77rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; }
.filter-button.is-active, .filter-button:hover { color: var(--white); background: var(--green); }
.project-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.project-card { min-height: 500px; position: relative; overflow: hidden; }
.project-card.is-hidden { display: none; }
.project-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.project-card:hover img { transform: scale(1.05); }
.project-card .portfolio-overlay { background: var(--white); color: var(--ink); left: 24px; right: 24px; bottom: 24px; padding: 24px; }
.project-card .portfolio-overlay > span { color: var(--green-dark); }
.project-card .portfolio-overlay a { color: var(--white); background: var(--green); border: 0; right: 20px; bottom: 22px; }
.blog-page-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-page-grid .blog-card { border: 1px solid var(--line); }
.contact-layout { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 70px; }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-field { display: grid; gap: 8px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 0.76rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.07em; }
.form-field input, .form-field textarea, .form-field select { width: 100%; border: 1px solid var(--line); outline: 0; padding: 15px 16px; color: var(--ink); background: var(--white); }
.form-field textarea { min-height: 150px; resize: vertical; }
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(9,184,80,0.1); }
.form-message { grid-column: 1 / -1; min-height: 24px; color: var(--green-dark); font-size: 0.84rem; }
.contact-sidebar { display: grid; gap: 16px; }
.contact-card { padding: 27px; display: grid; grid-template-columns: 50px 1fr; gap: 16px; align-items: center; color: var(--white); background: var(--ink); }
.contact-card-icon { width: 50px; height: 50px; display: grid; place-items: center; color: var(--ink); background: var(--green); }
.contact-card h3 { font-size: 1rem; }
.contact-card p { margin-top: 6px; color: rgba(255,255,255,0.64); font-size: 0.82rem; }
.map-placeholder { min-height: 300px; position: relative; display: grid; place-items: center; overflow: hidden; background: linear-gradient(45deg, #e7eeea 25%, transparent 25%) -18px 0/36px 36px, linear-gradient(45deg, transparent 75%, #e7eeea 75%) -18px 0/36px 36px, linear-gradient(45deg, transparent 75%, #eef3f0 75%) 0 0/36px 36px, linear-gradient(45deg, #eef3f0 25%, #f8faf9 25%) 0 0/36px 36px; }
.map-placeholder::after { content: "Our Office"; padding: 12px 18px; color: var(--white); background: var(--green); box-shadow: var(--shadow); font-size: 0.8rem; font-weight: 800; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.72s ease, transform 0.72s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.09s; }
.reveal-delay-2 { transition-delay: 0.18s; }
.reveal-delay-3 { transition-delay: 0.27s; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* Responsive */
@media (max-width: 1100px) {
  :root { --header-height: 78px; }
  .header-inner { grid-template-columns: 1fr auto; }
  .primary-nav { position: fixed; inset: var(--header-height) 0 0; padding: 35px 24px; background: var(--ink); transform: translateX(100%); transition: transform 0.35s ease; overflow-y: auto; }
  .nav-open .primary-nav { transform: translateX(0); }
  .nav-list { align-items: stretch; flex-direction: column; gap: 0; }
  .nav-link { width: 100%; min-height: 58px; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,0.12); }
  .dropdown { position: static; width: 100%; display: none; padding: 0 0 12px 12px; background: transparent; color: var(--white); box-shadow: none; opacity: 1; visibility: visible; transform: none; }
  .nav-item.is-open .dropdown { display: block; }
  .dropdown a { color: rgba(255,255,255,0.65); }
  .header-actions .header-icon, .header-quote { display: none; }
  .menu-toggle { display: grid; }
  .menu-toggle span, .menu-toggle::before, .menu-toggle::after { content: ""; width: 19px; height: 2px; background: currentColor; transition: 0.25s ease; }
  .menu-toggle { gap: 4px; }
  .nav-open .menu-toggle span { opacity: 0; }
  .nav-open .menu-toggle::before { transform: translateY(6px) rotate(45deg); }
  .nav-open .menu-toggle::after { transform: translateY(-6px) rotate(-45deg); }
  .about-grid, .why-grid, .pricing-layout, .inner-intro, .contact-layout { grid-template-columns: 1fr; }
  .about-grid { gap: 60px; }
  .about-visual { width: min(650px, 100%); }
  .why-section::before { inset: 0; opacity: 0.12; }
  .why-cards { grid-template-columns: repeat(3, 1fr); }
  .trusted-copy { padding-inline: 6vw; }
  .portfolio-row { grid-template-columns: repeat(2, 1fr); }
  .results-grid { grid-template-columns: 1.4fr repeat(3, 0.7fr); }
  .pricing-layout { gap: 50px; }
  .footer-main { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .section { padding: 88px 0; }
  .container { width: min(calc(100% - 34px), var(--container)); }
  .heading-split { align-items: flex-start; flex-direction: column; gap: 24px; }
  .hero { min-height: 700px; }
  .hero-copy { width: 100%; }
  .hero h1 { font-size: clamp(3.25rem, 12vw, 5.2rem); }
  .hero-socials { display: none; }
  .service-grid, .blog-grid, .blog-page-grid, .services-full-grid { grid-template-columns: repeat(2, 1fr); }
  .why-cards { grid-template-columns: 1fr; }
  .why-cards article { min-height: 250px; border-left: 0; border-top: 1px solid rgba(255,255,255,0.13); }
  .feature-symbol { margin: 35px 0 25px; }
  .trusted-strip { grid-template-columns: 1fr; }
  .trusted-image { min-height: 390px; clip-path: none; }
  .results-grid { grid-template-columns: repeat(3, 1fr); }
  .results-copy { grid-column: 1 / -1; margin-bottom: 20px; }
  .pricing-cards { overflow-x: auto; padding: 20px 0; }
  .price-card { min-width: 280px; }
  .contact-cta-inner, .contact-cta-actions { align-items: flex-start; flex-direction: column; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-card:nth-child(2) { border-right: 1px solid var(--line); }
  .process-card:nth-child(n+3) { border-top: 0; }
  .testimonial-grid, .project-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 580px) {
  .brand-copy small { display: none; }
  .hero { min-height: 680px; }
  .hero-inner { align-items: center; padding-top: 60px; }
  .hero-copy { width: 100%; }
  .hero h1 { font-size: 3rem; }
  .hero-copy > p:not(.hero-kicker) { font-size: 0.92rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .hero-controls { bottom: 22px; }
  .hero-dots button { width: 35px; }
  .about-visual { min-height: 480px; }
  .about-photo-tall { width: 65%; height: 76%; }
  .about-photo-small { width: 45%; height: 52%; }
  .experience-card { right: 0; width: 200px; min-height: 140px; padding: 22px; }
  .experience-card strong { font-size: 2.7rem; }
  .tab-list { gap: 20px; }
  .service-grid, .blog-grid, .blog-page-grid, .services-full-grid, .project-grid, .testimonial-grid { grid-template-columns: 1fr; }
  .portfolio-row { grid-template-columns: 1fr; }
  .portfolio-card { min-height: 470px; }
  .results-grid { grid-template-columns: 1fr; }
  .results-copy { grid-column: auto; }
  .stat { padding: 20px 0 0; border-left: 0; border-top: 1px solid rgba(255,255,255,0.16); }
  .pricing-cards { grid-template-columns: 1fr; overflow: visible; }
  .price-card { min-width: 0; border-right: 1px solid var(--line); }
  .price-card-featured { margin: 0; }
  .footer-main { grid-template-columns: 1fr; gap: 42px; }
  .footer-bottom-inner { flex-direction: column; }
  .process-grid { grid-template-columns: 1fr; }
  .process-card { border-right: 1px solid var(--line); }
  .process-card:nth-child(n+2) { border-top: 0; }
  .contact-form { grid-template-columns: 1fr; }
  .form-field.full { grid-column: auto; }
  .form-message { grid-column: auto; }
  .inner-intro-image { min-height: 430px; }
  .inner-intro-image img { height: 430px; }
}

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


/* =========================================================
   Premium motion and colour refinement
   ========================================================= */
body {
  background:
          radial-gradient(circle at 8% 18%, rgba(9, 184, 80, 0.035), transparent 24rem),
          var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection {
  color: var(--ink);
  background: var(--green-bright);
}

:focus-visible {
  outline: 3px solid rgba(9, 184, 80, 0.42);
  outline-offset: 4px;
}

.button,
.header-icon,
.hero-arrow,
.hero-socials a,
.circle-link,
.portfolio-overlay a,
.footer-socials a,
.back-to-top,
.filter-button {
  transition-duration: 0.45s;
  transition-timing-function: var(--ease-premium);
}

.hero-line {
  transition-duration: 0.45s;
  transition-timing-function: var(--ease-premium);
  font-size: 114px;
  font-family: "Plus Jakarta Sans", serif;
  font-weight: 700;
  line-height: 1.5;

}

.hero-line-span {
  transition-duration: 0.9s;
  transition-timing-function: var(--ease-premium);
  font-family: "Baskerville Old Face";
  font-weight: 1000;
  letter-spacing: 1px;
}

.button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  box-shadow: 0 0 0 rgba(8, 29, 40, 0);
}
.button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(110deg, transparent 20%, rgba(255,255,255,.28) 48%, transparent 76%);
  transform: translateX(-135%);
  transition: transform 0.75s var(--ease-premium);
}
.button:hover::before { transform: translateX(135%); }
.button:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(8, 29, 40, 0.18);
}
.button span { transition: transform 0.45s var(--ease-premium); }
.button:hover span { transform: translate(3px, -3px); }
.button-primary,
.experience-card,
.contact-cta,
.trusted-strip {
  background: linear-gradient(135deg, var(--green) 0%, #08aa49 55%, var(--green-dark) 100%);
}
.button-primary:hover { background: linear-gradient(135deg, #16c965, var(--green-dark)); }
.button-outline { background: rgba(255,255,255,.76); backdrop-filter: blur(10px); }

.scroll-progress { height: 4px; }
.scroll-progress span {
  background: linear-gradient(90deg, var(--green-dark), var(--green-bright));
  box-shadow: 0 0 14px rgba(9, 184, 80, .65);
  transition: width .12s linear;
}

.site-header {
  transition: background-color .55s var(--ease-premium), box-shadow .55s var(--ease-premium), transform .55s var(--ease-premium), border-color .55s ease;
}
.site-header.is-sticky {
  background: rgba(8, 29, 40, 0.9);
  box-shadow: 0 18px 50px rgba(3, 18, 26, .22);
  border-color: rgba(255,255,255,.08);
  backdrop-filter: blur(18px) saturate(135%);
}
.site-header.header-solid { background: var(--ink); }
.brand-mark {
  background: linear-gradient(145deg, var(--green-bright), var(--green) 48%, var(--green-dark));
  filter: drop-shadow(0 8px 16px rgba(9, 184, 80, .24));
}
.nav-link { position: relative; transition: color .38s var(--ease-premium); }
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 27px;
  height: 2px;
  background: var(--green);
  transition: right .45s var(--ease-premium);
}
.nav-link:hover::after,
.nav-link.is-active::after { right: 0; }
.dropdown {
  border-top: 3px solid var(--green);
  transform: translateY(20px) scale(.98);
  transition: opacity .42s var(--ease-premium), visibility .42s, transform .42s var(--ease-premium);
}
.dropdown a { transition: color .3s ease, padding-left .4s var(--ease-premium), background-color .3s ease; }
.dropdown a:hover { background: var(--green-pale); }

.hero-slide{
  opacity:0;
  visibility:hidden;
  position:absolute;
  inset:0;
  transition:opacity .6s ease;
}

.hero-slide.is-active{
  opacity:1;
  visibility:visible;
  position:relative;
}

.hero-dots button{
  opacity:.4;
  transition:.3s;
}

.hero-dots button.is-active{
  opacity:1;
}

.section,
.results-section,
.contact-cta,
.trusted-strip { position: relative; }
.services-section,
.process-section { background: linear-gradient(180deg, #f7fbf8 0%, var(--soft) 100%); }
.services-section::before,
.process-section::before {
  content: "";
  position: absolute;
  width: 28rem;
  height: 28rem;
  right: -18rem;
  top: 5rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(9,184,80,.08), transparent 68%);
  pointer-events: none;
}
.eyebrow { color: var(--green-dark); }
.eyebrow::before {
  transform-origin: left;
  box-shadow: 0 0 10px rgba(9,184,80,.38);
}
.reveal.is-visible .eyebrow::before,
.eyebrow.reveal.is-visible::before { animation: lineGrow .8s .08s var(--ease-premium) both; }
@keyframes lineGrow { from { transform: scaleX(0); } to { transform: scaleX(1); } }

.service-card,
.blog-card,
.price-card,
.testimonial-card,
.process-card,
.contact-card,
.service-tile {
  transition: transform .65s var(--ease-premium), box-shadow .65s var(--ease-premium), border-color .45s ease, background-color .45s ease, color .45s ease;
}
.service-card {
  border: 1px solid rgba(8,29,40,.045);
  box-shadow: 0 12px 38px rgba(8,29,40,.045);
}
.service-card::after {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  z-index: 3;
  background: linear-gradient(90deg, var(--green), var(--green-bright));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .65s var(--ease-premium);
}
.service-card:hover,
.blog-card:hover,
.testimonial-card:hover,
.process-card:hover,
.price-card:not(.price-card-featured):hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(9,184,80,.28);
}
.service-card:hover::after { transform: scaleX(1); }
.service-card:hover .service-image img,
.blog-card:hover .blog-image img,
.portfolio-card:hover img,
.project-card:hover img { transform: scale(1.075); filter: saturate(1.08) contrast(1.02); }
.service-icon,
.contact-card-icon,
.plan-icon {
  background: linear-gradient(145deg, var(--green-bright), var(--green) 55%, var(--green-dark));
  box-shadow: 0 14px 34px rgba(9,184,80,.28);
}
.service-card:hover .service-icon { transform: translateY(-5px) rotate(-4deg); }
.service-icon { transition: transform .6s var(--ease-premium); }

.about-photo,
.inner-intro-image > img { box-shadow: 0 25px 70px rgba(8,29,40,.13); }
.about-photo img { transition-duration: 1.1s; transition-timing-function: var(--ease-premium); }
.experience-card { box-shadow: 0 22px 55px rgba(9,184,80,.25); }
.progress-track { overflow: hidden; border-radius: 10px; }
.progress-track span {
  width: 0 !important;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green-dark), var(--green-bright));
  box-shadow: 0 0 14px rgba(9,184,80,.42);
  transition: width 1.6s .25s var(--ease-premium);
}
.progress-block.is-animated .progress-track span { width: var(--progress-width, 75%) !important; }

.expertise-marquee { position: relative; background: linear-gradient(90deg, #071b26, var(--ink-2), #071b26); }
.expertise-marquee::before,
.expertise-marquee::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 10vw;
  z-index: 2;
  background: linear-gradient(90deg, var(--ink), transparent);
  pointer-events: none;
}
.expertise-marquee::after { left: auto; right: 0; transform: scaleX(-1); }
.expertise-marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track { animation-duration: 42s; }

.why-section,
.results-section { background: linear-gradient(135deg, #061923 0%, var(--ink) 52%, #0d2b37 100%); }
.why-cards article { overflow: hidden; transition-duration: .65s; transition-timing-function: var(--ease-premium); }
.why-cards article::after {
  content: "";
  position: absolute;
  width: 9rem;
  height: 9rem;
  right: -6rem;
  bottom: -6rem;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  transition: transform .7s var(--ease-premium);
}
.why-cards article:hover { background: linear-gradient(145deg, var(--green), var(--green-dark)); transform: translateY(-10px); }
.why-cards article:hover::after { transform: scale(2.3); }

.trusted-image img { transition: transform 1.2s var(--ease-premium), filter .8s ease; }
.trusted-strip:hover .trusted-image img { transform: scale(1.035); filter: saturate(1.08); }
.portfolio-card::after { transition: background .65s ease; }
.portfolio-card:hover::after { background: linear-gradient(0deg, rgba(3,20,28,.94), rgba(3,20,28,.05) 72%); }
.portfolio-overlay { transition-duration: .65s; transition-timing-function: var(--ease-premium); }
.portfolio-overlay a { transition: transform .5s var(--ease-premium), background-color .4s ease, border-color .4s ease; }
.portfolio-overlay a:hover { transform: rotate(45deg) scale(1.05); }

.price-card-featured {
  background: linear-gradient(150deg, #071c27 0%, #102f3c 100%);
  box-shadow: 0 30px 80px rgba(8,29,40,.24);
}
.price-card-featured::after {
  content: "";
  position: absolute;
  width: 13rem;
  height: 13rem;
  right: -7rem;
  top: -7rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(9,184,80,.22), transparent 65%);
  pointer-events: none;
}
.contact-cta { overflow: hidden; }
.contact-cta::before,
.contact-cta::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.contact-cta::before { width: 28rem; height: 28rem; right: -11rem; top: -18rem; border: 1px solid rgba(255,255,255,.18); box-shadow: 0 0 0 70px rgba(255,255,255,.035); }
.contact-cta::after { width: 10rem; height: 10rem; left: 36%; bottom: -8rem; background: rgba(255,255,255,.08); }
.contact-cta-inner { position: relative; z-index: 1; }

.form-field input,
.form-field textarea,
.form-field select {
  transition: border-color .35s ease, box-shadow .35s ease, transform .35s var(--ease-premium), background-color .35s ease;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(9,184,80,.11), 0 14px 30px rgba(8,29,40,.06);
  transform: translateY(-2px);
  background: #fbfffc;
}
.back-to-top { background: linear-gradient(145deg, var(--green-bright), var(--green-dark)); box-shadow: 0 12px 30px rgba(9,184,80,.28); }
.back-to-top:hover { transform: translateY(-5px); box-shadow: 0 18px 38px rgba(9,184,80,.36); }

/* Smoother, clearer scroll reveals */
.reveal {
  opacity: 0;
  transform: translate3d(0, 56px, 0) scale(.985);
  filter: blur(8px);
  transition-property: opacity, transform, filter;
  transition-duration: 1.05s;
  transition-timing-function: var(--ease-premium);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}
.reveal.reveal-from-left { transform: translate3d(-64px, 18px, 0) scale(.985); }
.reveal.reveal-from-right { transform: translate3d(64px, 18px, 0) scale(.985); }
.reveal.reveal-scale { transform: translate3d(0, 26px, 0) scale(.94); }
.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}
.reveal-delay-1 { --reveal-delay: 110ms; transition-delay: var(--reveal-delay); }
.reveal-delay-2 { --reveal-delay: 220ms; transition-delay: var(--reveal-delay); }
.reveal-delay-3 { --reveal-delay: 330ms; transition-delay: var(--reveal-delay); }

@media (hover: hover) {
  .service-tile:hover { transform: translateY(-10px); }
  .process-card:hover > span { transform: translateY(-4px) scale(1.05); }
  .process-card > span { display: inline-block; transition: transform .55s var(--ease-premium); }
}

@media (max-width: 1100px) {
  .nav-link::after { bottom: 8px; }
  .primary-nav { transition-duration: .65s; transition-timing-function: var(--ease-premium); }
  .hero::before { width: 70vw; height: 70vw; }
}

@media (max-width: 720px) {
  .reveal,
  .reveal.reveal-from-left,
  .reveal.reveal-from-right,
  .reveal.reveal-scale { transform: translate3d(0, 38px, 0) scale(.99); filter: blur(5px); }
  .reveal.is-visible { transform: none; filter: none; }
  .hero::after { display: none; }
  .hero-slide { background-position: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; filter: none; }
}

/* Mobile navigation visibility correction */
@media (max-width: 1100px) {
  .header-actions .menu-toggle {
    display: grid;
  }
}

/* Keep decorative motion layers inside their sections on narrow screens */
.services-section,
.process-section,
.pricing-section,
.price-card-featured {
  overflow: hidden;
}

/* Rounded surfaces and unified bottom-up reveal refinement */
:root {
  --radius-button: 12px;
  --radius-card: 20px;
  --radius-card-small: 16px;
}

.button,
.filter-button,
.header-icon,
.hero-arrow,
.menu-toggle,
.form-field input,
.form-field textarea,
.form-field select {
  border-radius: var(--radius-button);
}

.button::before {
  border-radius: inherit;
}

.service-card,
.blog-card,
.price-card,
.testimonial-card,
.process-card,
.contact-card,
.service-tile,
.portfolio-card,
.project-card,
.experience-card {
  border-radius: var(--radius-card);
}

.service-card,
.blog-card,
.portfolio-card,
.project-card,
.experience-card,
.service-tile,
.price-card-featured {
  overflow: hidden;
}

.service-image,
.blog-image,
.project-card .portfolio-overlay,
.about-photo,
.inner-intro-image > img,
.inner-intro-image .floating-image {
  border-radius: var(--radius-card-small);
}

.service-card .service-image,
.blog-card .blog-image {
  border-radius: var(--radius-card) var(--radius-card) 0 0;
}

.service-icon,
.contact-card-icon,
.plan-icon {
  border-radius: 14px;
}

.project-card .portfolio-overlay {
  box-shadow: 0 18px 45px rgba(8, 29, 40, 0.16);
}

.pricing-cards,
.process-grid {
  gap: 22px;
}

.price-card,
.price-card:last-child,
.process-card,
.process-card:last-child,
.process-card:nth-child(2) {
  border-right: 1px solid var(--line);
}

.why-cards {
  gap: 14px;
  background: transparent;
}

.why-cards article {
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: var(--radius-card-small);
}

.portfolio-row {
  gap: 14px;
  padding-inline: 14px;
}

/* Every observed element now enters from below, using one coherent motion language. */
.reveal,
.reveal.reveal-from-left,
.reveal.reveal-from-right,
.reveal.reveal-scale {
  opacity: 0;
  transform: translate3d(0, 68px, 0);
  filter: blur(3px);
  transition:
          opacity .78s var(--ease-smooth),
          transform 1s var(--ease-premium),
          filter .78s var(--ease-smooth),
          box-shadow .6s var(--ease-premium),
          border-color .45s ease,
          background-color .45s ease,
          color .45s ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

.reveal.is-visible,
.reveal.reveal-from-left.is-visible,
.reveal.reveal-from-right.is-visible,
.reveal.reveal-scale.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}

.reveal.reveal-complete {
  transition-delay: 0ms;
  will-change: auto;
}

@media (hover: hover) {
  .reveal.is-visible.service-card:hover,
  .reveal.is-visible.blog-card:hover,
  .reveal.is-visible.testimonial-card:hover,
  .reveal.is-visible.process-card:hover,
  .reveal.is-visible.price-card:not(.price-card-featured):hover,
  .reveal.is-visible.service-tile:hover {
    transform: translate3d(0, -12px, 0);
  }

  .reveal.is-visible.portfolio-card:hover,
  .reveal.is-visible.project-card:hover {
    transform: translate3d(0, -8px, 0);
    box-shadow: var(--shadow-hover);
  }
}

@media (max-width: 720px) {
  :root {
    --radius-button: 11px;
    --radius-card: 17px;
    --radius-card-small: 14px;
  }

  .reveal,
  .reveal.reveal-from-left,
  .reveal.reveal-from-right,
  .reveal.reveal-scale {
    transform: translate3d(0, 46px, 0);
    filter: blur(2px);
  }

  .portfolio-row {
    padding-inline: 12px;
  }
}


/* =========================================================
   Hierarchical reveal staggering
   Parent sections rise first; their children then follow in sequence.
   ========================================================= */
.reveal .stagger-item {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  filter: blur(2px);
  transition:
          opacity .66s var(--ease-smooth),
          transform .86s var(--ease-premium),
          filter .66s var(--ease-smooth);
  transition-delay: calc(var(--reveal-delay, 0ms) + var(--stagger-delay, 150ms));
  will-change: opacity, transform, filter;
}

.reveal.is-visible .stagger-item {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}

/* Nested groups receive slightly tighter movement while retaining their individual timing. */
.reveal .section-heading .stagger-item,
.reveal .service-body .stagger-item,
.reveal .portfolio-overlay .stagger-item,
.reveal .contact-form .stagger-item,
.reveal .contact-card .stagger-item,
.reveal .contact-cta-actions .stagger-item,
.reveal .footer-column .stagger-item {
  transform: translate3d(0, 22px, 0);
}

.reveal.is-visible .section-heading .stagger-item,
.reveal.is-visible .service-body .stagger-item,
.reveal.is-visible .portfolio-overlay .stagger-item,
.reveal.is-visible .contact-form .stagger-item,
.reveal.is-visible .contact-cta-actions .stagger-item,
.reveal.is-visible .footer-column .stagger-item {
  transform: translate3d(0, 0, 0);
}

@media (max-width: 720px) {
  .reveal .stagger-item {
    transform: translate3d(0, 22px, 0);
    filter: blur(1px);
  }

  .reveal.is-visible .stagger-item {
    transform: translate3d(0, 0, 0);
    filter: blur(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal .stagger-item,
  .reveal.is-visible .stagger-item {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
}

/* =========================================================
   High-end editorial spacing and motion calibration
   Motion follows restrained UX conventions: short travel,
   emphasized deceleration, compact staggering and reduced motion.
   ========================================================= */
:root {
  --ease-enter: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-standard: cubic-bezier(0.2, 0, 0, 1);
  --motion-fast: 280ms;
  --motion-medium: 480ms;
  --motion-reveal: 620ms;
  --surface-border: rgba(8, 29, 40, 0.07);
  --surface-shadow: 0 18px 55px rgba(8, 29, 40, 0.07);
  --surface-shadow-hover: 0 26px 70px rgba(8, 29, 40, 0.12);
}

/* More editorial whitespace and narrower visual groups. */
.section {
  padding: 144px 0;
}

.section-heading {
  margin-bottom: 64px;
}

.heading-split {
  gap: 72px;
}

.heading-split > p {
  max-width: 460px;
}

.about-grid {
  gap: 120px;
}

.services-section,
.blog-section,
.process-section {
  background: #f8fbf9;
}

.service-grid,
.blog-grid,
.blog-page-grid,
.project-grid,
.services-full-grid,
.testimonial-grid {
  width: min(100%, 1120px);
  margin-inline: auto;
  gap: 34px;
}

/* Smaller image cards with an inset gallery treatment. */
.service-card,
.blog-card,
.project-card,
.portfolio-card {
  border: 1px solid var(--surface-border);
  box-shadow: var(--surface-shadow);
}

.service-image,
.blog-image {
  margin: 10px 10px 0;
  border-radius: 15px !important;
}

.service-image {
  height: 205px;
}

.service-body {
  min-height: 260px;
  padding: 32px 32px 34px;
}

.blog-image {
  height: 215px;
}

.blog-card {
  padding-bottom: 34px;
}

.blog-meta,
.blog-card h3,
.blog-card > .text-link {
  margin-inline: 30px;
}

.portfolio-section {
  padding-bottom: 132px;
}

.portfolio-row {
  width: min(calc(100% - 96px), 1400px);
  margin-inline: auto;
  padding-inline: 0;
  gap: 24px;
}

.portfolio-card {
  min-height: 430px;
}

.portfolio-overlay {
  inset: auto 26px 26px;
}

.project-grid {
  gap: 32px;
}

.project-card {
  min-height: 420px;
}

.project-card .portfolio-overlay {
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 22px;
}

.trusted-strip {
  width: min(calc(100% - 64px), 1440px);
  min-height: 420px;
  margin-inline: auto;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(8, 29, 40, 0.13);
}

.trusted-copy {
  padding: 72px 7vw;
}

.why-cards article {
  min-height: 300px;
  padding: 32px 26px;
}

.feature-symbol {
  margin: 46px 0 38px;
}

.price-card,
.process-card,
.testimonial-card,
.service-tile,
.contact-card {
  box-shadow: 0 14px 42px rgba(8, 29, 40, 0.045);
}

/* Restrained hover response: depth without jumpiness. */
.service-card,
.blog-card,
.portfolio-card,
.project-card,
.price-card,
.process-card,
.testimonial-card,
.service-tile {
  transition:
          transform var(--motion-medium) var(--ease-enter),
          box-shadow var(--motion-medium) var(--ease-enter),
          border-color var(--motion-fast) ease;
}

@media (hover: hover) {
  .service-card:hover,
  .blog-card:hover,
  .testimonial-card:hover,
  .process-card:hover,
  .price-card:not(.price-card-featured):hover,
  .service-tile:hover {
    transform: translate3d(0, -7px, 0);
    box-shadow: var(--surface-shadow-hover);
  }

  .portfolio-card:hover,
  .project-card:hover {
    transform: translate3d(0, -5px, 0);
    box-shadow: var(--surface-shadow-hover);
  }

  .reveal.is-visible.service-card:hover,
  .reveal.is-visible.blog-card:hover,
  .reveal.is-visible.testimonial-card:hover,
  .reveal.is-visible.process-card:hover,
  .reveal.is-visible.price-card:not(.price-card-featured):hover,
  .reveal.is-visible.service-tile:hover {
    transform: translate3d(0, -7px, 0);
  }

  .reveal.is-visible.portfolio-card:hover,
  .reveal.is-visible.project-card:hover {
    transform: translate3d(0, -5px, 0);
  }
}

/* Calibrated reveal system.
   Major editorial pairs may fly in sideways; repeated content always rises. */
.reveal,
.reveal.reveal-from-left,
.reveal.reveal-from-right,
.reveal.reveal-scale {
  --reveal-x: 0px;
  --reveal-y: 28px;
  opacity: 0;
  transform: translate3d(var(--reveal-x), var(--reveal-y), 0);
  filter: none;
  transition:
          opacity 440ms ease-out,
          transform var(--motion-reveal) var(--ease-enter),
          box-shadow var(--motion-medium) var(--ease-enter),
          border-color var(--motion-fast) ease,
          background-color var(--motion-fast) ease,
          color var(--motion-fast) ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal.fly-in-left {
  --reveal-x: -34px;
  --reveal-y: 8px;
}

.reveal.fly-in-right {
  --reveal-x: 34px;
  --reveal-y: 8px;
}

.reveal.is-visible,
.reveal.reveal-from-left.is-visible,
.reveal.reveal-from-right.is-visible,
.reveal.reveal-scale.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.reveal.reveal-complete {
  transition-delay: 0ms;
  will-change: auto;
}

.reveal .stagger-item {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  filter: none;
  transition:
          opacity 360ms ease-out,
          transform 520ms var(--ease-enter);
  transition-delay: calc(var(--reveal-delay, 0ms) + var(--stagger-delay, 90ms));
  will-change: opacity, transform;
}

.reveal.is-visible .stagger-item {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* Hero fly-ins remain expressive but no longer feel theatrical. */
.hero-slide.is-active .hero-copy > * {
  animation-duration: 720ms;
  animation-timing-function: var(--ease-enter);
}

.hero-slide.is-active .hero-copy > *:nth-child(2) { animation-delay: 80ms; }
.hero-slide.is-active .hero-copy > *:nth-child(3) { animation-delay: 120ms; }
.hero-slide.is-active .hero-copy > *:nth-child(4) { animation-delay: 180ms; }

@keyframes heroRise {
  from { opacity: 0; transform: translate3d(0, 28px, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

.hero::before {
  animation-duration: 16s;
  opacity: 0.7;
}

.hero::after {
  animation-duration: 12s;
  opacity: 0.6;
}

.marquee-track {
  animation-duration: 52s;
}

@media (max-width: 1100px) {
  .section {
    padding: 116px 0;
  }

  .about-grid {
    gap: 76px;
  }

  .portfolio-row {
    width: min(calc(100% - 48px), 980px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .portfolio-card {
    min-height: 400px;
  }

  .trusted-strip {
    width: min(calc(100% - 48px), 980px);
  }
}

@media (max-width: 820px) {
  .section {
    padding: 100px 0;
  }

  .section-heading {
    margin-bottom: 48px;
  }

  .service-grid,
  .blog-grid,
  .blog-page-grid,
  .project-grid,
  .services-full-grid,
  .testimonial-grid {
    gap: 24px;
  }

  .service-image {
    height: 190px;
  }

  .blog-image {
    height: 200px;
  }

  .project-card {
    min-height: 390px;
  }

  .trusted-strip {
    width: min(calc(100% - 34px), 760px);
  }

  .reveal.fly-in-left,
  .reveal.fly-in-right {
    --reveal-x: 0px;
    --reveal-y: 24px;
  }
}

@media (max-width: 580px) {
  .section {
    padding: 84px 0;
  }

  .portfolio-section {
    padding-bottom: 84px;
  }

  .portfolio-row {
    width: min(calc(100% - 34px), 520px);
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .portfolio-card,
  .project-card {
    min-height: 380px;
  }

  .service-image,
  .blog-image {
    height: 190px;
  }

  .trusted-strip {
    width: min(calc(100% - 24px), 520px);
    border-radius: 18px;
  }

  .trusted-copy {
    padding: 56px 28px;
  }

  .reveal,
  .reveal.reveal-from-left,
  .reveal.reveal-from-right,
  .reveal.reveal-scale {
    --reveal-x: 0px;
    --reveal-y: 22px;
  }

  .reveal .stagger-item {
    transform: translate3d(0, 14px, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal.is-visible,
  .reveal .stagger-item,
  .reveal.is-visible .stagger-item {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }

  .hero::before,
  .hero::after,
  .marquee-track {
    animation: none !important;
  }
}


/* Mobile drawer must span the viewport before translating off-canvas. */
@media (max-width: 1100px) {
  .primary-nav {
    width: 100%;
    max-width: none;
    justify-self: stretch;
  }
}

/* =========================================================
   BIMHUB GLOBAL BRAND LOGO
   ========================================================= */

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: 190px;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}


/* Footer logo */

.footer-brand .brand-logo {
  width: 180px;
  height: auto;
}


/* Responsive */

@media (max-width: 900px) {
  .brand-logo {
    width: 165px;
  }

  .footer-brand .brand-logo {
    width: 165px;
  }
}


@media (max-width: 600px) {
  .brand-logo {
    width: 145px;
  }

  .footer-brand .brand-logo {
    width: 150px;
  }
}

.video-home {
  width: 100%;
  height: 100%;
  object-fit: cover;
  overlay: auto;
}

#about-overview-title {
  font-size: 44px;
  letter-spacing: 1px;
  line-height: 1.5;
  justify-content: center;
  font-family: Garamond;
}
