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

:root {
  --light-bg: #ffffff;
  --off-white: #f7f7f5;
  --text-dark: #111111;
  --text-mid: #444444;
  --text-muted: #888888;
  --border: #e0e0e0;
  --serif: 'Libre Baskerville', Georgia, serif;
  --sans: 'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--light-bg);
  color: var(--text-dark);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: absolute;
  top: 1.45rem;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  width: min(620px, 92vw);
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.55rem 0.95rem;
  border-radius: 16px;
  background: rgba(243, 243, 237, 0.94);
  backdrop-filter: blur(8px);
}

.logo {
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(17,17,17,0.78);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-img {
  height: 40px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: rgba(17,17,17,0.78);
  text-decoration: none;
  font-size: 0.82rem;
  transition: color 0.2s;
}
.nav-links a:hover { color: #111; }

.nav-cta {
  background: #111;
  color: #fff;
  border-radius: 999px;
  padding: 0.58rem 1.15rem;
  font-size: 0.76rem;
  line-height: 1;
  text-decoration: none;
  transition: opacity 0.2s;
}
.nav-cta:hover { opacity: 0.9; }

/* ── HERO ── */
.hero {
  background: linear-gradient(rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.45) 100%), url('../images/hero-bg.webp') center/cover no-repeat;
  min-height: 100vh;
  padding: 0 5%;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.8rem;
}

.hero-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #a8e063;
  display: inline-block;
  flex-shrink: 0;
}

.hero-split {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-split-left h1 {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 400;
  line-height: 1.12;
  color: #fff;
  margin: 0;
}

.hero-split-left h1 em {
  font-style: italic;
  color: rgba(255,255,255,0.7);
}

.hero-split-right {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.hero-split-right p {
  color: rgba(255,255,255,0.6);
  font-size: 0.92rem;
  line-height: 1.85;
  margin: 0;
  max-width: 380px;
}

.btn-pill {
  display: inline-block;
  background: #fff;
  color: #111;
  padding: 0.85rem 2rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.2s;
  width: fit-content;
}
.btn-pill:hover { opacity: 0.85; }

.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-w {
  background: #fff; color: #111;
  padding: 0.72rem 1.6rem;
  font-size: 0.78rem; font-weight: 500;
  text-decoration: none;
  transition: opacity 0.2s;
  display: inline-block;
}
.btn-w:hover { opacity: 0.82; }

.btn-gh {
  border: 1px solid rgba(255,255,255,0.28);
  color: rgba(255,255,255,0.7);
  padding: 0.72rem 1.6rem;
  font-size: 0.78rem;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
  display: inline-block;
}
.btn-gh:hover { border-color: rgba(255,255,255,0.65); color: #fff; }

/* ── ABOUT ── */
.about {
  padding: 6rem 0;
  background: var(--off-white);
}

.about .services-label {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(17,17,17,0.55);
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.about .services-header h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2.7vw, 2.35rem);
  font-weight: 400;
  color: var(--text-dark);
  white-space: nowrap;
}

.about-inner {
  padding: 0 12%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.22fr 0.78fr;
  gap: 5rem;
  align-items: center;
}

.about-media {
  width: 118%;
  margin-left: -15%;
  border-radius: 16px;
  overflow: hidden;
}

.about-media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
  transform: scale(1.08) translateY(-2%);
  transform-origin: center 58%;
  box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}

.about-content {
  max-width: 500px;
  min-width: 0;
}

.about .services-header {
  margin-bottom: 2rem;
}

.about p {
  color: var(--text-mid);
  font-size: 0.88rem;
  line-height: 1.85;
  margin-bottom: 1.8rem;
}

.lnk {
  font-size: 0.8rem;
  color: var(--text-dark);
  text-decoration: none;
  border-bottom: 1px solid #111;
  padding-bottom: 1px;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: opacity 0.2s;
}
.lnk:hover { opacity: 0.55; }

@media (max-width: 900px) {
  .about-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-media {
    width: 100%;
    margin-left: 0;
  }

  .about-media img {
    transform: scale(1.04);
    transform-origin: center;
  }

  .about-content {
    max-width: none;
  }

  .about .services-header h2 {
    white-space: normal;
  }
}

/* ── PORTFOLIO ── */
.hp-portfolio {
  padding: 6rem 0 4rem;
  background: #0d0d0d;
}

.hp-portfolio-inner {
  padding: 0;
}

.hp-portfolio-header {
  display: none;
}

.hp-portfolio-header h2 {
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 400;
  color: #fff;
  margin-top: 0.8rem;
  margin-bottom: 0.6rem;
  line-height: 1.2;
}

.hp-portfolio-sub {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  margin-top: 0.4rem;
}

.hp-portfolio-grid {
  display: flex;
  gap: 1rem;
  padding: 0;
  margin-left: 12%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
}
.hp-portfolio-grid::-webkit-scrollbar { display: none; }
.hp-portfolio-grid:active { cursor: grabbing; }

.hp-port-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  width: 36vw;
  height: 620px;
  scroll-snap-align: start;
  transition: transform 0.3s ease;
}
.hp-port-card:hover { transform: translateY(-4px); }

.hp-port-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}
.hp-port-card:hover .hp-port-bg { transform: scale(1.04); }

.hp-port-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.55) 40%, rgba(0,0,0,0.1) 70%, rgba(0,0,0,0.0) 100%);
}

.hp-port-content {
  position: relative;
  z-index: 2;
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.hp-port-top {
  display: flex;
  align-items: flex-start;
}

.hp-port-logo {
  height: 40px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  object-position: left;
  filter: brightness(0) invert(1);
  opacity: 1;
}

.hp-port-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.hp-port-dot-label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 0.3rem;
}

.hp-port-bottom h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: #fff;
  margin: 0;
  line-height: 1.25;
}

.hp-port-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  margin: 0.2rem 0 0;
}

/* CTA card */
.hp-port-cta {
  background: #161616;
  border: 1px solid rgba(255,255,255,0.07);
}
.hp-port-cta .hp-port-content { justify-content: flex-end; }
.hp-port-cta:hover { background: #1e1e1e; transform: translateY(-4px); }

.hp-portfolio-nav {
  display: flex;
  gap: 0.6rem;
  justify-content: flex-end;
  margin-top: 1.5rem;
  padding: 0 5%;
}

.hp-port-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.9);
  background: #fff;
  color: #111;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.hp-port-btn:hover {
  background: #e0e0e0;
}

/* ── APPROACH ── */
.approach {
  padding: 6rem 5%;
  border-top: 1px solid var(--border);
}

.approach-inner { 
  max-width: 1100px;
  margin: 0 auto;
}

.approach > .approach-inner > h2 {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 400;
  margin-bottom: 3.5rem;
}

.approach-steps { display: flex; flex-direction: column; }

.approach-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  align-items: start;
}

.step-num {
  font-size: 0.68rem;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
}

.step-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--text-dark);
}

.step-desc {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.9;
  padding-top: 0.4rem;
}

/* ── STATS DARK ── */
.stats-dark {
  background: #111;
  padding: 6rem 5%;
  color: #fff;
}

.stats-dark-inner {
  max-width: 1100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  margin: 0 auto;
}

.stats-dark h2 {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 400;
  line-height: 1.35;
  margin-bottom: 1rem;
}

.stats-sub {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.85;
}

.stats-numbers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem 2rem;
}

.sn .n {
  font-family: var(--serif);
  font-size: 2.6rem;
  font-weight: 400;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.3rem;
}
.sn .l {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.38);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ── INDUSTRIES ── */
.industries {
  padding: 6rem 5%;
  background: #ecece7;
  border-top: 1px solid #d7d7d2;
}

.industries-inner {
  display: grid;
  grid-template-columns: minmax(280px, 380px) 1fr;
  gap: 4rem;
  max-width: 1100px;
  align-items: start;
  margin: 0 auto;
}

.industries-left .services-label {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(17,17,17,0.6);
  margin-bottom: 1rem;
}

.industries-left h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3.65rem);
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 1.6rem;
}

.industries-left p {
  font-size: 1rem;
  color: rgba(17,17,17,0.88);
  line-height: 1.55;
  max-width: 330px;
  margin-bottom: 2rem;
}

.faq-quote-btn {
  display: inline-block;
  padding: 0.72rem 1.45rem;
  border-radius: 999px;
  border: 1px solid rgba(17,17,17,0.25);
  color: #111;
  font-size: 0.9rem;
  font-weight: 400;
  text-decoration: none;
  transition: border-color 0.2s, background-color 0.2s;
}

.faq-quote-btn:hover {
  border-color: rgba(17,17,17,0.45);
  background: rgba(255,255,255,0.5);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.faq-item {
  background: rgba(17,17,17,0.04);
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  text-align: left;
  padding: 1.35rem 1.2rem;
  color: #151515;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.35;
}

.faq-toggle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(17,17,17,0.22);
  position: relative;
  flex-shrink: 0;
}

.faq-toggle::before,
.faq-toggle::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 11px;
  height: 1.5px;
  background: rgba(17,17,17,0.8);
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease;
}

.faq-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open .faq-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding: 0 1.2rem 1.4rem;
  font-size: 0.99rem;
  color: rgba(17,17,17,0.82);
  line-height: 1.55;
}

.faq-item.is-open .faq-answer {
  max-height: 360px;
}

.faq-item.is-open {
  background: rgba(17,17,17,0.07);
}

/* ── PARTNERS ── */
.partners {
  background: #ecece7;
  padding: 6rem 5%;
  color: #111;
}

.partners-hdr {
  max-width: 1100px;
  margin: 0 auto 2.3rem;
  text-align: left;
  border-top: 1px solid #d4d4ce;
  padding-top: 1rem;
}
.partners-hdr .services-label {
  justify-content: flex-start;
  color: rgba(17,17,17,0.65);
  margin-bottom: 0.85rem;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
}
.partners-hdr h2 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4vw, 3.6rem);
  font-weight: 400;
  margin-bottom: 0;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem;
  max-width: 1100px;
  margin: 0 auto;
}

.partner-card {
  text-decoration: none;
  color: #111;
  display: block;
  transition: transform 0.2s ease;
}

.partner-card:hover {
  transform: translateY(-2px);
}

.partner-img {
  width: 100%;
  aspect-ratio: 1 / 1.25;
  object-fit: cover;
  display: block;
  border-radius: 12px;
  margin-bottom: 0.8rem;
}

.p-name {
  font-family: var(--sans);
  font-size: 1.75rem;
  font-weight: 500;
  margin-bottom: 0.2rem;
  line-height: 1.15;
}
.p-role {
  font-size: 1.22rem;
  color: rgba(17,17,17,0.75);
  line-height: 1.2;
}

@media (max-width: 1200px) {
  .p-name {
    font-size: 1.45rem;
  }

  .p-role {
    font-size: 1.05rem;
  }
}

@media (max-width: 900px) {
  .partners-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .p-name {
    font-size: 1.2rem;
  }

  .p-role {
    font-size: 0.95rem;
  }
}

@media (max-width: 560px) {
  .partners-grid {
    grid-template-columns: 1fr;
  }
}

/* ── BLOG ── */
.blog {
  padding: 6rem 5%;
}

.blog-header {
  max-width: 1200px;
  margin: 0 auto 3rem;
}

.blog-header .services-label {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(17,17,17,0.55);
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.blog-header h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  font-weight: 400;
  color: var(--text-dark);
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.blog-card {
  text-decoration: none;
  color: var(--text-dark);
  display: block;
  transition: opacity 0.2s;
}
.blog-card:hover { opacity: 0.8; }

.blog-card-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 6px;
  margin-bottom: 1.5rem;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.blog-card:hover .blog-card-img img {
  transform: scale(1.03);
}

.blog-card-date {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
}

.blog-card-body h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.35;
  margin-bottom: 0.7rem;
}

.blog-card-body p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.75;
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

/* ── FOOTER ── */
footer.site-footer {
  position: relative;
  background: #0d0d0d;
  color: #fff;
  padding: 8rem 5% 2rem;
  overflow: hidden;
  min-height: 580px;
}

.site-footer .footer-bg {
  position: absolute;
  inset: 0;
  background-image: url("../images/Footer-image.avif");
  background-size: cover;
  background-position: center 15%;
  opacity: 1;
  transform: scale(1.01);
  filter: brightness(1.25) contrast(1.05) sepia(0.15);
}

.site-footer .footer-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8,8,8,0.05) 0%, rgba(8,8,8,0.45) 100%);
}

.site-footer .footer-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.site-footer .footer-heading {
  margin-bottom: 5.5rem;
  max-width: 680px;
}

.site-footer .footer-cta {
  margin-top: 1.8rem;
  display: inline-block;
  background: #fff;
  color: #111;
  padding: 0.8rem 1.8rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.2s;
}
.site-footer .footer-cta:hover { opacity: 0.85; }

.site-footer .footer-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.75);
  margin-bottom: 0.8rem;
}

.site-footer .footer-heading h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.6vw, 3rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.1;
}

.site-footer .footer-card {
  background: rgba(0,0,0,0.78);
  border-radius: 18px;
  padding: 2.8rem 3rem;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3.5rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(6px);
}

.site-footer .footer-left {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.site-footer .footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-content: start;
}

.site-footer .f-logo {
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.4rem;
}

.site-footer .f-logo-img {
  height: 44px;
  width: auto;
}


.site-footer .footer-meta {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.site-footer .footer-meta-label {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.75);
}

.site-footer .footer-meta p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.95);
  line-height: 1.7;
  margin: 0;
}

.site-footer .footer-link {
  color: #fff;
  text-decoration: none;
}
.site-footer .footer-link:hover { color: #fff; }

.site-footer .footer-col h4 {
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.2rem;
}

.site-footer .footer-col ul { list-style: none; }
.site-footer .footer-col li { margin-bottom: 0.6rem; }
.site-footer .footer-col a {
  font-size: 0.82rem;
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}
.site-footer .footer-col a:hover { color: #fff; }

.site-footer .footer-socials {
  display: flex;
  gap: 0.6rem;
}
.site-footer .footer-socials a {
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.7rem;
  border-radius: 50%;
  transition: border-color 0.2s, color 0.2s;
}
.site-footer .footer-socials a:hover { border-color: #fff; color: #fff; }
.socials a:hover { border-color: #111; color: #111; }

/* ── ANIM ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-content > * { animation: fadeUp 0.65s ease both; }
.hero h1 { animation-delay: 0.08s; }
.hero p { animation-delay: 0.22s; }
.hero-btns { animation-delay: 0.36s; }

/* ── SERVICES ── */
.services {
  padding: 6rem 12%;
  background: #0d0d0d;
}

.services-header {
  margin-bottom: 3rem;
}

.services-label {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.services-header h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 400;
  color: #fff;
}

.services-grid {
  padding: 0;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1rem;
  align-items: stretch;
}

.service-card-large  { min-height: 620px; }
.services-col        { display: flex; flex-direction: column; gap: 1rem; }
.services-col .service-card { flex: 1; min-height: 0; }

.service-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}

.service-card-small {
  flex: 1;
}

.service-card-bottom {
  grid-column: 1 / -1;
  min-height: 220px;
}

.service-card-dark {
  background: #1e2a35;
  border: 1px solid rgba(255,255,255,0.08);
}

.service-card-dark .service-content {
  justify-content: center;
}

.service-p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-top: 0.6rem;
}

.service-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.service-card:hover .service-bg {
  transform: scale(1.04);
}

.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.05) 100%);
}

.service-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.service-content h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 0.8rem;
}

.service-content p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 0.8rem;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-list li {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  padding: 0.2rem 0;
  padding-left: 1.2rem;
  position: relative;
}

.service-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
  .about-inner, .approach-step,
  .stats-dark-inner, .industries-inner, .blog-layout,
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .stats-numbers { grid-template-columns: 1fr 1fr; }
  nav {
    width: calc(100% - 2rem);
    padding: 0.65rem 0.85rem;
    border-radius: 14px;
  }

  nav .nav-links {
    gap: 1.15rem;
  }

  nav .nav-cta {
    padding: 0.52rem 0.95rem;
    font-size: 0.72rem;
  }
  .hp-portfolio-grid { grid-template-columns: 1fr; }
  .hp-port-card { min-height: 380px; }
}

@media (max-width: 640px) {
  nav .nav-links { display: none; }
}
