/* ============================================================
   PowerGroup NYC — Main Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --gold:        #C9A84C;
  --gold-light:  #E4C46E;
  --gold-dark:   #A8872F;
  --black:       #0a0a0a;
  --dark:        #111111;
  --dark-2:      #1a1a1a;
  --dark-3:      #222222;
  --white:       #ffffff;
  --gray-100:    #f5f5f5;
  --gray-200:    #e8e8e8;
  --gray-400:    #aaaaaa;
  --gray-600:    #666666;
  --gray-800:    #333333;

  --font-h: 'Oswald', sans-serif;
  --font-b: 'Inter', sans-serif;

  --ease:    all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --ease-lg: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow:  0 8px 32px rgba(0,0,0,0.10);
  --shadow-dark: 0 12px 40px rgba(0,0,0,0.35);
  --shadow-gold: 0 0 30px rgba(201,168,76,0.25);
  --radius:  8px;
  --radius-lg: 16px;
  --nav-h:   80px;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-b);
  color: var(--gray-800);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Typography ────────────────────────────────────────────── */
h1,h2,h3,h4,h5 { font-family: var(--font-h); line-height: 1.15; font-weight: 600; }
h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.2rem; }
p  { line-height: 1.75; color: var(--gray-600); }

/* ── Layout helpers ────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container--wide { max-width: 1400px; }

section { padding: 100px 0; }

.section-label {
  display: inline-block;
  font-family: var(--font-h);
  font-size: .85rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--dark);
  margin-bottom: 1rem;
}
.section-title span { color: var(--gold); }
.section-subtitle {
  max-width: 600px;
  color: var(--gray-600);
  font-size: 1.05rem;
  line-height: 1.75;
}
.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .9rem 2rem;
  border-radius: var(--radius);
  font-family: var(--font-h);
  font-size: 1rem;
  letter-spacing: .05em;
  font-weight: 500;
  transition: var(--ease);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: var(--ease);
}
.btn:hover::after { background: rgba(255,255,255,0.08); }

.btn-primary {
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 4px 20px rgba(201,168,76,0.35);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.5);
}

.btn-outline {
  border: 2px solid var(--white);
  color: var(--white);
  background: transparent;
}
.btn-outline:hover {
  background: var(--white);
  color: var(--black);
  transform: translateY(-2px);
}

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

.btn-outline-dark {
  border: 2px solid var(--dark);
  color: var(--dark);
}
.btn-outline-dark:hover {
  background: var(--dark);
  color: var(--white);
}

.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ── Navbar ────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: var(--ease);
  padding: 0 1.5rem;
}
.navbar__inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.navbar.scrolled {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.4);
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: .6rem;
}
.navbar__logo img {
  height: 46px;
  width: auto;
}
.navbar__logo-text {
  font-family: var(--font-h);
  font-size: 1.4rem;
  color: var(--white);
  letter-spacing: .05em;
  line-height: 1.2;
}
.navbar__logo-text span { color: var(--gold); }
.navbar__logo-sub {
  font-size: .65rem;
  letter-spacing: .15em;
  color: var(--gray-400);
  display: block;
  margin-top: -2px;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.navbar__links a {
  color: rgba(255,255,255,0.85);
  font-size: .92rem;
  font-weight: 500;
  letter-spacing: .04em;
  transition: var(--ease);
  position: relative;
  padding-bottom: 3px;
}
.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--ease);
}
.navbar__links a:hover,
.navbar__links a.active {
  color: var(--gold);
}
.navbar__links a:hover::after,
.navbar__links a.active::after { width: 100%; }

.navbar__cta { margin-left: .5rem; }

.navbar__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.navbar__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--ease);
}
.navbar__burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.navbar__burger.open span:nth-child(2) { opacity: 0; }
.navbar__burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.navbar__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(16px);
  padding: 1.5rem;
  flex-direction: column;
  gap: 1rem;
  z-index: 999;
  border-top: 1px solid rgba(201,168,76,0.2);
}
.navbar__mobile.open { display: flex; }
.navbar__mobile a {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  padding: .75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-family: var(--font-h);
  letter-spacing: .04em;
  transition: var(--ease);
}
.navbar__mobile a:hover { color: var(--gold); padding-left: .5rem; }

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--black);
  overflow: hidden;
  padding-top: var(--nav-h);
}
#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: .6;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,10,10,0.9) 0%,
    rgba(10,10,10,0.6) 50%,
    rgba(201,168,76,0.05) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: 5rem 0;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  padding: .4rem 1rem;
  border-radius: 50px;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.hero__badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse-dot 2s infinite;
}
.hero__title {
  color: var(--white);
  margin-bottom: 1.25rem;
  line-height: 1.05;
}
.hero__title .line-gold { color: var(--gold); display: block; }
.hero__description {
  color: rgba(255,255,255,0.7);
  font-size: 1.15rem;
  max-width: 560px;
  margin-bottom: 2.25rem;
  line-height: 1.8;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}
.hero__scroll {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: rgba(255,255,255,0.5);
  font-size: .85rem;
  letter-spacing: .08em;
}
.hero__scroll-line {
  width: 40px;
  height: 1px;
  background: rgba(201,168,76,0.5);
}

/* ── Stats Bar ─────────────────────────────────────────────── */
.stats-bar {
  background: var(--dark-2);
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  padding: 0;
}
.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stats-bar__item {
  padding: 2.5rem 1.5rem;
  text-align: center;
  border-right: 1px solid rgba(201,168,76,0.1);
  position: relative;
}
.stats-bar__item:last-child { border-right: none; }
.stats-bar__num {
  font-family: var(--font-h);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: .35rem;
}
.stats-bar__label {
  font-size: .85rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* ── Services ──────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  transition: var(--ease-lg);
  position: relative;
  overflow: hidden;
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--ease);
}
.service-card:hover {
  border-color: rgba(201,168,76,0.3);
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  transform: translateY(-6px);
}
.service-card:hover::before { transform: scaleX(1); }

.service-card__icon {
  width: 56px;
  height: 56px;
  background: rgba(201,168,76,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: var(--ease);
}
.service-card__icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-card:hover .service-card__icon {
  background: var(--gold);
}
.service-card:hover .service-card__icon svg { stroke: var(--black); }

.service-card__title {
  font-family: var(--font-h);
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: .65rem;
}
.service-card__text {
  font-size: .93rem;
  color: var(--gray-600);
  line-height: 1.7;
}
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--gold);
  font-size: .9rem;
  font-weight: 500;
  margin-top: 1.25rem;
  transition: var(--ease);
}
.service-card__link svg { width: 16px; height: 16px; transition: var(--ease); }
.service-card__link:hover { gap: .7rem; }

/* ── Why Us ────────────────────────────────────────────────── */
.why-us { background: var(--dark); }
.why-us .section-title { color: var(--white); }
.why-us .section-subtitle { color: rgba(255,255,255,0.55); }
.why-us__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  transition: var(--ease);
}
.why-card:hover {
  background: rgba(201,168,76,0.06);
  border-color: rgba(201,168,76,0.2);
  transform: translateY(-4px);
}
.why-card__num {
  font-family: var(--font-h);
  font-size: 3rem;
  color: rgba(201,168,76,0.2);
  line-height: 1;
  margin-bottom: 1rem;
}
.why-card__title {
  font-family: var(--font-h);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: .6rem;
}
.why-card__text {
  font-size: .9rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}

/* ── Process ───────────────────────────────────────────────── */
.process { background: var(--gray-100); }
.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
  position: relative;
}
.process__steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(12.5% + 1rem);
  right: calc(12.5% + 1rem);
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
  opacity: .3;
}
.step {
  text-align: center;
  position: relative;
}
.step__num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--gold);
  font-family: var(--font-h);
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  border: 3px solid rgba(201,168,76,0.3);
  position: relative;
  z-index: 1;
  transition: var(--ease);
}
.step:hover .step__num {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}
.step__title {
  font-family: var(--font-h);
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: .5rem;
}
.step__text { font-size: .9rem; color: var(--gray-600); }

/* ── Testimonials ──────────────────────────────────────────── */
.testimonials { background: var(--white); }
.testimonial-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.testimonial-card {
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: var(--ease);
  border: 1px solid transparent;
}
.testimonial-card:hover {
  border-color: rgba(201,168,76,0.2);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.testimonial-card__quote {
  font-size: 3rem;
  color: var(--gold);
  font-family: Georgia, serif;
  line-height: .7;
  margin-bottom: 1rem;
  opacity: .6;
}
.testimonial-card__text {
  font-size: .97rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-h);
  color: var(--black);
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
}
.testimonial-card__name {
  font-weight: 600;
  font-size: .95rem;
  color: var(--dark);
  line-height: 1.2;
}
.testimonial-card__role { font-size: .82rem; color: var(--gray-400); }

.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
}
.stars svg {
  width: 16px;
  height: 16px;
  fill: var(--gold);
  stroke: var(--gold);
}

/* ── CTA Banner ────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-banner h2 {
  color: var(--black);
  margin-bottom: 1rem;
  position: relative;
}
.cta-banner p {
  color: rgba(0,0,0,0.65);
  font-size: 1.1rem;
  max-width: 520px;
  margin: 0 auto 2rem;
  position: relative;
}
.cta-banner .btn-dark { position: relative; font-size: 1.05rem; padding: 1rem 2.25rem; }

/* ── Page Hero (inner pages) ────────────────────────────────── */
.page-hero {
  background: var(--black);
  padding: calc(var(--nav-h) + 80px) 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201,168,76,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(201,168,76,0.05) 0%, transparent 50%);
}
.page-hero__content { position: relative; }
.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1rem;
}
.page-hero__breadcrumb a { color: var(--gold); transition: var(--ease); }
.page-hero__breadcrumb a:hover { color: var(--gold-light); }
.page-hero__breadcrumb svg { width: 14px; height: 14px; }
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero p {
  color: rgba(255,255,255,0.6);
  font-size: 1.1rem;
  max-width: 560px;
}

/* ── Footer ────────────────────────────────────────────────── */
.footer {
  background: var(--black);
  color: rgba(255,255,255,0.6);
  padding: 80px 0 0;
  border-top: 1px solid rgba(201,168,76,0.1);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer__logo img { height: 48px; width: auto; margin-bottom: 1.25rem; }
.footer__logo-text {
  font-family: var(--font-h);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: .25rem;
}
.footer__logo-text span { color: var(--gold); }
.footer__tagline {
  font-size: .9rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  max-width: 280px;
  margin-bottom: 1.5rem;
}
.footer__social {
  display: flex;
  gap: .75rem;
}
.footer__social-link {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--ease);
  color: rgba(255,255,255,0.5);
}
.footer__social-link svg { width: 16px; height: 16px; }
.footer__social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}
.footer__col h4 {
  font-family: var(--font-h);
  color: var(--white);
  font-size: 1rem;
  letter-spacing: .06em;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: .75rem;
}
.footer__col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--gold);
}
.footer__col ul li { margin-bottom: .6rem; }
.footer__col ul a {
  color: rgba(255,255,255,0.5);
  font-size: .9rem;
  transition: var(--ease);
}
.footer__col ul a:hover { color: var(--gold); padding-left: 4px; }
.footer__contact-item {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  margin-bottom: .9rem;
  font-size: .9rem;
  color: rgba(255,255,255,0.5);
}
.footer__contact-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}
.footer__bottom {
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .85rem;
  color: rgba(255,255,255,0.3);
}
.footer__bottom a { color: var(--gold); }

/* ── About Page ────────────────────────────────────────────── */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-story__img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--dark-2);
}
.about-story__img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--dark-2) 0%, var(--dark-3) 100%);
}
.about-story__img-placeholder svg {
  width: 80px;
  height: 80px;
  stroke: rgba(201,168,76,0.3);
  fill: none;
}
.about-story__badge {
  position: absolute;
  bottom: 2rem;
  right: -1rem;
  background: var(--gold);
  color: var(--black);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-dark);
}
.about-story__badge-num {
  font-family: var(--font-h);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}
.about-story__badge-text { font-size: .78rem; font-weight: 600; letter-spacing: .05em; }

.about-values { background: var(--dark); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.value-card {
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--ease);
}
.value-card:hover {
  background: rgba(201,168,76,0.05);
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-4px);
}
.value-card__icon {
  width: 50px;
  height: 50px;
  background: rgba(201,168,76,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.value-card__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.value-card h3 { color: var(--white); margin-bottom: .6rem; font-size: 1.1rem; }
.value-card p { color: rgba(255,255,255,0.5); font-size: .9rem; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.team-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--gray-100);
  transition: var(--ease);
  border: 1px solid var(--gray-200);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.team-card__img {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--dark-2) 0%, var(--dark-3) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-card__initials {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-h);
  font-size: 1.6rem;
  color: var(--black);
  font-weight: 700;
}
.team-card__info { padding: 1.25rem; }
.team-card__name { font-family: var(--font-h); color: var(--dark); margin-bottom: .25rem; }
.team-card__role { font-size: .85rem; color: var(--gold); font-weight: 500; }
.team-card__cert { font-size: .8rem; color: var(--gray-400); margin-top: .35rem; }

/* ── Services Page ─────────────────────────────────────────── */
.services-detail {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.service-detail-card {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: flex;
  gap: 1.5rem;
  transition: var(--ease);
}
.service-detail-card:hover {
  border-color: rgba(201,168,76,0.3);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.service-detail-card__icon {
  width: 60px;
  height: 60px;
  background: rgba(201,168,76,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--ease);
}
.service-detail-card:hover .service-detail-card__icon { background: var(--gold); }
.service-detail-card__icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: var(--ease);
}
.service-detail-card:hover .service-detail-card__icon svg { stroke: var(--black); }
.service-detail-card h3 { color: var(--dark); margin-bottom: .5rem; font-size: 1.15rem; }
.service-detail-card p { font-size: .92rem; color: var(--gray-600); line-height: 1.7; }
.service-detail-card ul { margin-top: .75rem; }
.service-detail-card ul li {
  font-size: .88rem;
  color: var(--gray-600);
  padding: .25rem 0;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.service-detail-card ul li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.faq { background: var(--gray-100); }
.faq__list { margin-top: 3rem; max-width: 800px; margin-left: auto; margin-right: auto; }
.faq-item {
  border-bottom: 1px solid var(--gray-200);
  overflow: hidden;
}
.faq-item__q {
  width: 100%;
  text-align: left;
  padding: 1.4rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-h);
  font-size: 1.05rem;
  color: var(--dark);
  cursor: pointer;
  transition: var(--ease);
  background: none;
}
.faq-item__q:hover { color: var(--gold); }
.faq-item__q svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  flex-shrink: 0;
  transition: transform .3s ease;
}
.faq-item.open .faq-item__q svg { transform: rotate(45deg); }
.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
  color: var(--gray-600);
  font-size: .95rem;
  line-height: 1.75;
}
.faq-item.open .faq-item__a { max-height: 300px; padding-bottom: 1.25rem; }

/* ── Projects Page ─────────────────────────────────────────── */
.projects-filter {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 3rem;
}
.filter-btn {
  padding: .55rem 1.4rem;
  border-radius: 50px;
  font-size: .9rem;
  font-weight: 500;
  border: 1.5px solid var(--gray-200);
  color: var(--gray-600);
  transition: var(--ease);
  background: var(--white);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.project-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  background: var(--dark-2);
  cursor: pointer;
}
.project-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .6s cubic-bezier(0.4, 0, 0.2, 1);
}
.project-card:hover .project-card__bg { transform: scale(1.08); }
.project-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
  transition: var(--ease);
}
.project-card:hover .project-card__overlay { background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 100%); }
.project-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.75rem;
  transform: translateY(10px);
  transition: var(--ease);
}
.project-card:hover .project-card__content { transform: translateY(0); }
.project-card__tag {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  padding: .25rem .7rem;
  border-radius: 50px;
  margin-bottom: .75rem;
  text-transform: uppercase;
}
.project-card__title { color: var(--white); font-size: 1.1rem; margin-bottom: .35rem; }
.project-card__loc { color: rgba(255,255,255,0.6); font-size: .85rem; }

.project-card__gradient-1 {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}
.project-card__gradient-2 {
  background: linear-gradient(135deg, #0d1117 0%, #161b22 50%, #21262d 100%);
}
.project-card__gradient-3 {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}
.project-card__gradient-4 {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #111111 100%);
}
.project-card__gradient-5 {
  background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
}
.project-card__gradient-6 {
  background: linear-gradient(135deg, #14213d 0%, #1b2a4a 100%);
}

.project-card__icon-large {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  opacity: .15;
  transition: var(--ease);
}
.project-card:hover .project-card__icon-large { opacity: .08; }
.project-card__icon-large svg {
  width: 80px;
  height: 80px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1;
}

/* ── Contact Page ──────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.contact-info__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.75rem;
}
.contact-info__icon {
  width: 46px;
  height: 46px;
  background: rgba(201,168,76,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info__icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.8;
}
.contact-info__label { font-size: .8rem; color: var(--gray-400); letter-spacing: .06em; text-transform: uppercase; }
.contact-info__val { font-size: 1rem; color: var(--dark); font-weight: 500; margin-top: .15rem; }

.hours-table { margin-top: 1.5rem; }
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: .6rem 0;
  border-bottom: 1px solid var(--gray-200);
  font-size: .9rem;
}
.hours-row .day { color: var(--gray-600); }
.hours-row .time { font-weight: 500; color: var(--dark); }
.hours-row .time.open { color: #22c55e; }

.contact-form {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.contact-form h3 {
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: .5rem;
}
.contact-form > p { font-size: .95rem; color: var(--gray-600); margin-bottom: 2rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  margin-bottom: 1.25rem;
  position: relative;
}
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 500;
  color: var(--gray-800);
  margin-bottom: .4rem;
}
.form-group label span { color: var(--gold); }
.form-control {
  width: 100%;
  padding: .85rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: .95rem;
  font-family: var(--font-b);
  color: var(--dark);
  background: var(--white);
  transition: var(--ease);
  outline: none;
  appearance: none;
}
.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}
.form-control::placeholder { color: var(--gray-400); }
textarea.form-control { resize: vertical; min-height: 130px; }
select.form-control { cursor: pointer; }

.form-submit { margin-top: .5rem; }
.form-submit .btn { width: 100%; justify-content: center; font-size: 1.05rem; padding: 1rem; }

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}
.form-success svg {
  width: 56px;
  height: 56px;
  stroke: #22c55e;
  fill: none;
  margin: 0 auto 1rem;
}
.form-success h4 { color: var(--dark); font-size: 1.3rem; margin-bottom: .5rem; }
.form-success p { color: var(--gray-600); }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid       { grid-template-columns: repeat(2, 1fr); }
  .why-us__grid        { grid-template-columns: repeat(2, 1fr); }
  .process__steps      { grid-template-columns: repeat(2, 1fr); }
  .process__steps::before { display: none; }
  .footer__grid        { grid-template-columns: 1fr 1fr; }
  .team-grid           { grid-template-columns: repeat(2, 1fr); }
  .projects-grid       { grid-template-columns: repeat(2, 1fr); }
  .contact-layout      { grid-template-columns: 1fr; }
  .stats-bar__grid     { grid-template-columns: repeat(2, 1fr); }
  .values-grid         { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --nav-h: 68px; }
  section { padding: 70px 0; }
  .navbar__links, .navbar__cta { display: none; }
  .navbar__burger { display: flex; }
  .services-grid       { grid-template-columns: 1fr; }
  .services-detail     { grid-template-columns: 1fr; }
  .testimonial-track   { grid-template-columns: 1fr; }
  .about-story         { grid-template-columns: 1fr; }
  .about-story__badge  { right: 1rem; }
  .values-grid         { grid-template-columns: 1fr; }
  .team-grid           { grid-template-columns: repeat(2, 1fr); }
  .projects-grid       { grid-template-columns: 1fr; }
  .form-row            { grid-template-columns: 1fr; }
  .hero__actions       { flex-direction: column; align-items: flex-start; }
  .footer__grid        { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom      { flex-direction: column; gap: .75rem; text-align: center; }
  .stats-bar__grid     { grid-template-columns: repeat(2, 1fr); }
  .why-us__grid        { grid-template-columns: 1fr; }
  .process__steps      { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }
  .stats-bar__grid { grid-template-columns: 1fr 1fr; }
  .hero__title { font-size: 2.4rem; }
  .contact-form { padding: 1.5rem; }
}
