/* =====================================================
   HARVEY WEB DESIGN — style.css
   Colors: #1a2535 (dark navy) | #c9a84c (gold) | #fff
   Fonts: Montserrat (headings) | Inter (body)
   ===================================================== */

/* --- Custom Properties --- */
:root {
  --dark:        #1a2535;
  --dark-2:      #243044;
  --dark-3:      #2e3c52;
  --gold:        #c9a84c;
  --gold-light:  #e8d5a0;
  --gold-dim:    rgba(201, 168, 76, 0.14);
  --gold-border: rgba(201, 168, 76, 0.3);
  --white:       #ffffff;
  --off-white:   #f8f7f4;
  --gray:        #f2f4f8;
  --text:        #1c1c2e;
  --muted:       #6b7280;
  --border:      #e5e7eb;

  --radius:      8px;
  --radius-lg:   16px;
  --shadow:      0 4px 24px rgba(0, 0, 0, 0.07);
  --shadow-lg:   0 16px 48px rgba(0, 0, 0, 0.13);

  --font-head:   'Montserrat', 'Arial Black', Arial, sans-serif;
  --font-body:   'Inter', Arial, sans-serif;

  --nav-h:       72px;
  --gap:         100px;
  --container:   1160px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- Layout --- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}
.section { padding: var(--gap) 0; }
.section--dark  { background: var(--dark); color: var(--white); }
.section--gray  { background: var(--gray); }
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* --- Typography helpers --- */
.section-label {
  display: block;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.12;
  color: var(--dark);
  margin-bottom: 16px;
}
.section--dark .section-title { color: var(--white); }
.section-sub {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 560px;
}
.section--dark .section-sub { color: rgba(255,255,255,0.55); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.4px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: transparent;
  color: var(--gold);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-outline-dark {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
}
.btn-outline-dark:hover {
  background: var(--dark);
  color: var(--white);
}

/* ===========================
   LOGO MARK (HTML component)
   =========================== */
.logo-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}
.logo-mark__h {
  position: relative;
  width: 28px;
  height: 38px;
  flex-shrink: 0;
}
.lm-bar {
  position: absolute;
  width: 5px;
  height: 100%;
  background: #fff;
  border-radius: 2px;
  top: 0;
}
.lm-bar--l { left: 0; }
.lm-bar--r { right: 0; }
.lm-cross {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 5px;
  background: var(--gold);
  border-radius: 2px;
}
.logo-mark__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-mark__harvey {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.5px;
  line-height: 1;
}
.logo-mark__rule {
  display: block;
  height: 2.5px;
  background: var(--gold);
  border-radius: 2px;
  margin: 4px 0 3px;
}
.logo-mark__sub {
  font-family: var(--font-head);
  font-size: 7.5px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 3.5px;
  text-transform: uppercase;
}
/* Light bg version */
.logo-mark--light .lm-bar { background: var(--dark); }
.logo-mark--light .logo-mark__harvey { color: var(--dark); }

/* ===========================
   NAVIGATION
   =========================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.nav.scrolled {
  background: var(--dark);
  box-shadow: 0 2px 24px rgba(0,0,0,0.3);
}
.nav__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  width: 100%;
}
.nav__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.nav__links a {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.6px;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
  padding-bottom: 4px;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  border-radius: 1px;
  transition: width 0.25s ease;
}
.nav__links a:hover,
.nav__links a.active { color: var(--gold); }
.nav__links a:hover::after,
.nav__links a.active::after { width: 100%; }
.nav__cta { display: flex; align-items: center; gap: 16px; }
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav__hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--dark);
  padding: 28px;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  z-index: 999;
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color 0.2s;
}
.nav__mobile a:last-child { border-bottom: none; margin-top: 16px; }
.nav__mobile a:hover { color: var(--gold); }

/* ===========================
   HERO
   =========================== */
.hero {
  min-height: 100vh;
  background: var(--dark);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
}
.hero::before {
  content: '';
  position: absolute;
  top: -250px; right: -200px;
  width: 750px; height: 750px;
  background: radial-gradient(circle, rgba(201,168,76,0.11) 0%, transparent 68%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -150px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 68%);
  pointer-events: none;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 0;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(201,168,76,0.18);
  border: 1px solid rgba(201,168,76,0.5);
  border-radius: 50px;
  padding: 9px 20px;
  font-size: 14px;
  color: #f0d98a;
  font-weight: 700;
  margin-bottom: 28px;
  letter-spacing: 0.3px;
}
.hero__badge::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.4); }
}
.hero__title {
  font-family: var(--font-head);
  font-size: clamp(38px, 5.5vw, 70px);
  font-weight: 900;
  line-height: 1.06;
  color: #fff;
  margin-bottom: 24px;
  letter-spacing: -1.5px;
}
.hero__title span { color: var(--gold); }
.hero__sub {
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 480px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 56px;
}
.hero__stats {
  display: flex;
  gap: 36px;
}
.hero__stat-num {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.hero__stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  margin-top: 5px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* Hero browser mockup */
.hero__visual { position: relative; }
.hero__mockup {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.45);
  position: relative;
  overflow: hidden;
}
.hero__mockup::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 19px;
  background: linear-gradient(135deg, rgba(201,168,76,0.25), transparent 55%);
  z-index: -1;
}
.mockup__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 18px;
}
.mockup__dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.mockup__dot:nth-child(1) { background: #ff5f57; }
.mockup__dot:nth-child(2) { background: #febc2e; }
.mockup__dot:nth-child(3) { background: #28c840; }
.mockup__url {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border-radius: 4px;
  height: 22px;
  margin-left: 8px;
  display: flex;
  align-items: center;
  padding: 0 12px;
}
.mockup__url span {
  font-size: 10px;
  color: rgba(255,255,255,0.25);
  font-family: monospace;
}
.mockup__content {
  background: rgba(255,255,255,0.02);
  border-radius: 10px;
  padding: 22px;
  min-height: 290px;
}
.mockup__hero-bar {
  background: linear-gradient(90deg, var(--gold), rgba(201,168,76,0.35));
  height: 7px;
  border-radius: 4px;
  width: 58%;
  margin-bottom: 10px;
}
.mockup__line {
  background: rgba(255,255,255,0.07);
  height: 4px;
  border-radius: 2px;
  margin-bottom: 7px;
}
.mockup__line.w-90 { width: 90%; }
.mockup__line.w-80 { width: 80%; }
.mockup__line.w-65 { width: 65%; }
.mockup__line.w-40 { width: 40%; }
.mockup__btn-preview {
  display: inline-block;
  background: var(--gold);
  border-radius: 5px;
  height: 22px;
  width: 96px;
  margin-top: 14px;
  opacity: 0.9;
}
.mockup__cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 9px;
  margin-top: 18px;
}
.mockup__card {
  background: rgba(255,255,255,0.05);
  border-radius: 7px;
  height: 64px;
  border: 1px solid rgba(255,255,255,0.04);
}

/* ===========================
   LOGOS BAR
   =========================== */
.logos {
  padding: 44px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--off-white);
}
.logos__label {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}
.logos__track {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}
.logos__item {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.5px;
  color: var(--muted);
  text-transform: uppercase;
  opacity: 0.55;
  transition: opacity 0.2s;
}
.logos__item:hover { opacity: 1; }

/* ===========================
   SERVICES
   =========================== */
.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-border);
}
.service-card:hover::after { transform: scaleX(1); }
.service-card__icon {
  width: 58px; height: 58px;
  background: var(--gold-dim);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.service-card__icon svg {
  width: 26px; height: 26px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-card__title {
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}
.service-card__desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
}
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 22px;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.5px;
  transition: gap 0.2s;
}
.service-card__link:hover { gap: 12px; }

/* ===========================
   PORTFOLIO
   =========================== */
.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.portfolio-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  aspect-ratio: 4/3;
  background: var(--dark-2);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.portfolio-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.22);
}
.portfolio-card__preview {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-start;
  padding: 16px;
  position: relative;
}
.portfolio-card__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--dark-2), var(--dark-3));
}
.portfolio-card__screen {
  position: relative;
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 14px;
  min-height: 160px;
}
.portfolio-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(20,32,48,0.88);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.portfolio-card:hover .portfolio-card__overlay { opacity: 1; }
.portfolio-card__label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 14px 20px;
  background: linear-gradient(transparent, rgba(20,32,48,0.92));
}
.portfolio-card__label-name {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}
.portfolio-card__name {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.portfolio-card__type {
  font-size: 13px;
  color: var(--gold);
  font-weight: 600;
}
.portfolio-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}
.tag {
  background: rgba(201,168,76,0.15);
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 11px;
  border-radius: 20px;
  letter-spacing: 0.3px;
  border: 1px solid var(--gold-border);
}

/* ===========================
   PROCESS STEPS
   =========================== */
.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 60px;
  position: relative;
}
.process__steps::before {
  content: '';
  position: absolute;
  top: 27px;
  left: calc(12.5% + 28px);
  right: calc(12.5% + 28px);
  height: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(201,168,76,0.15));
  z-index: 0;
}
.process-step {
  text-align: center;
  padding: 0 18px;
  position: relative;
  z-index: 1;
}
.process-step__num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--dark);
  border: 3px solid var(--gold);
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 800;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 26px;
  position: relative;
  transition: background 0.2s;
}
.process-step:hover .process-step__num {
  background: var(--gold);
  color: var(--dark);
}
.process-step__title {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.process-step__desc {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}

/* Light bg process */
.process-step--light .process-step__num { background: var(--white); }
.process-step--light .process-step__title { color: var(--dark); }
.process-step--light .process-step__desc { color: var(--muted); }

/* ===========================
   PRICING
   =========================== */
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
  align-items: start;
}
.pricing-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.pricing-card--featured {
  border-color: var(--gold);
  background: var(--dark);
  transform: scale(1.04);
  box-shadow: 0 24px 64px rgba(201,168,76,0.18);
}
.pricing-card--featured:hover { transform: scale(1.04) translateY(-5px); }
.pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--dark);
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 20px;
  white-space: nowrap;
}
.pricing-card__tier {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.pricing-card__setup-label {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 4px;
}
.pricing-card--featured .pricing-card__setup-label { color: rgba(255,255,255,0.45); }
.pricing-card__setup {
  font-family: var(--font-head);
  font-size: 38px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-card--featured .pricing-card__setup { color: var(--white); }
.pricing-card__setup sup {
  font-size: 20px;
  vertical-align: super;
  font-weight: 600;
}
.pricing-card__monthly {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
}
.pricing-card__monthly-label {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 24px;
}
.pricing-card--featured .pricing-card__monthly-label { color: rgba(255,255,255,0.38); }
.pricing-card__divider {
  height: 1px;
  background: var(--border);
  margin: 20px 0 24px;
}
.pricing-card--featured .pricing-card__divider { background: rgba(255,255,255,0.1); }
.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 32px;
}
.pricing-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.4;
}
.pricing-card--featured .pricing-card__feature { color: rgba(255,255,255,0.8); }
.pricing-card__feature::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  background: var(--gold);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
  color: var(--dark);
  margin-top: 1px;
}

/* ===========================
   TESTIMONIAL
   =========================== */
.testimonial-card {
  background: var(--dark-2);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-lg);
  padding: 52px 56px;
  max-width: 720px;
  margin: 60px auto 0;
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 130px;
  color: var(--gold);
  opacity: 0.15;
  position: absolute;
  top: -20px; left: 28px;
  line-height: 1;
  pointer-events: none;
}
.testimonial-card__text {
  font-size: 18px;
  color: rgba(255,255,255,0.82);
  line-height: 1.8;
  font-style: italic;
  position: relative;
  z-index: 1;
  margin-bottom: 32px;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 16px;
}
.testimonial-card__avatar {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  flex-shrink: 0;
}
.testimonial-card__name {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
}
.testimonial-card__role {
  font-size: 13px;
  color: var(--gold);
  margin-top: 2px;
}

/* ===========================
   FAQ
   =========================== */
.faq__list {
  max-width: 740px;
  margin: 60px auto 0;
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  background: none;
  border: none;
  text-align: left;
  gap: 16px;
  transition: color 0.2s;
}
.faq-item__question:hover { color: var(--gold); }
.faq-item__icon {
  width: 26px; height: 26px;
  min-width: 26px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background 0.3s ease;
}
.faq-item__icon::after {
  content: '+';
  font-size: 16px;
  color: var(--gold);
  line-height: 1;
  transition: color 0.3s;
}
.faq-item.open .faq-item__icon {
  transform: rotate(45deg);
  background: var(--gold);
}
.faq-item.open .faq-item__icon::after { color: var(--dark); }
.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s ease, padding 0.3s ease;
}
.faq-item.open .faq-item__answer {
  max-height: 320px;
  padding-bottom: 22px;
}
.faq-item__answer p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
}

/* ===========================
   CTA BANNER
   =========================== */
.cta-banner {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(201,168,76,0.09) 0%, transparent 65%);
  pointer-events: none;
}
.cta-banner__inner {
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta-banner__title {
  font-family: var(--font-head);
  font-size: clamp(32px, 4.5vw, 54px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.1;
  letter-spacing: -1px;
}
.cta-banner__title span { color: var(--gold); }
.cta-banner__sub {
  font-size: 17px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 44px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.cta-banner__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===========================
   PAGE HEADERS (inner pages)
   =========================== */
.page-header {
  background: var(--dark);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.1) 0%, transparent 68%);
  pointer-events: none;
}
.page-header__label {
  display: block;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.page-header__title {
  font-family: var(--font-head);
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 16px;
}
.page-header__sub {
  font-size: 17px;
  color: rgba(255,255,255,0.55);
  max-width: 540px;
  line-height: 1.75;
}

/* ===========================
   FORMS
   =========================== */
.form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form__group--full { grid-column: 1 / -1; }
.form__label {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--dark);
}
.section--dark .form__label { color: rgba(255,255,255,0.7); }
.form__label span { color: var(--gold); }
.form__input,
.form__select,
.form__textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}
.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}
.form__textarea { resize: vertical; min-height: 140px; }
.form__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%236b7280' d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 40px;
}

/* Questionnaire specific */
.q-section {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 32px;
}
.q-section__header {
  background: var(--dark);
  padding: 18px 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.q-section__letter {
  width: 32px; height: 32px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 800;
  color: var(--dark);
  flex-shrink: 0;
}
.q-section__title {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
}
.q-section__body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.checkboxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
  cursor: pointer;
}
.checkbox-label input[type="checkbox"] {
  width: 18px; height: 18px;
  border: 2px solid var(--border);
  border-radius: 4px;
  appearance: none;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  transition: border-color 0.2s, background 0.2s;
}
.checkbox-label input[type="checkbox"]:checked {
  background: var(--gold);
  border-color: var(--gold);
}
.checkbox-label input[type="checkbox"]:checked::after {
  content: '✓';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 11px;
  font-weight: 700;
  color: var(--dark);
}
.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.radio-label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
  transition: border-color 0.2s, background 0.2s;
}
.radio-label:hover { border-color: var(--gold); }
.radio-label input[type="radio"] { display: none; }
.radio-label:has(input:checked) {
  border-color: var(--gold);
  background: var(--gold-dim);
  color: var(--dark);
  font-weight: 600;
}
.pricing-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pricing-option {
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.pricing-option:hover { border-color: var(--gold); }
.pricing-option:has(input:checked) {
  border-color: var(--gold);
  background: var(--gold-dim);
}
.pricing-option input[type="radio"] { display: none; }
.pricing-option__tier {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.pricing-option__price {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
}
.pricing-option__mo {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}
.pricing-option__pages {
  font-size: 13px;
  color: var(--muted);
  margin-top: 8px;
  line-height: 1.5;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: #111c2a;
  color: rgba(255,255,255,0.65);
  padding: 72px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer__brand p {
  font-size: 14px;
  line-height: 1.75;
  margin-top: 20px;
  max-width: 280px;
  color: rgba(255,255,255,0.45);
}
.footer__col-title {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer__links a {
  font-size: 14px;
  color: rgba(255,255,255,0.48);
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--gold); }
.footer__contact-item {
  font-size: 14px;
  color: rgba(255,255,255,0.48);
  margin-bottom: 10px;
  line-height: 1.5;
}
.footer__contact-item a {
  color: rgba(255,255,255,0.48);
  transition: color 0.2s;
}
.footer__contact-item a:hover { color: var(--gold); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__copy {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}
.footer__copy a { color: var(--gold); transition: opacity 0.2s; }
.footer__copy a:hover { opacity: 0.7; }
.footer__socials { display: flex; gap: 12px; }
.footer__social {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s;
}
.footer__social:hover {
  border-color: var(--gold);
  background: var(--gold-dim);
}
.footer__social svg {
  width: 16px; height: 16px;
  fill: rgba(255,255,255,0.5);
  transition: fill 0.2s;
}
.footer__social:hover svg { fill: var(--gold); }

/* ===========================
   SCROLL ANIMATIONS
   =========================== */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* ===========================
   CONTACT PAGE
   =========================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 0;
}
.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 32px;
}
.contact-info__icon {
  width: 48px; height: 48px;
  background: var(--gold-dim);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info__icon svg {
  width: 22px; height: 22px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-info__label {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.contact-info__value {
  font-size: 16px;
  color: var(--dark);
  font-weight: 500;
}

/* ===========================
   PORTFOLIO PAGE
   =========================== */
.filter-bar {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 44px 0 56px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 9px 22px;
  border: 2px solid var(--border);
  border-radius: 50px;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--muted);
  background: none;
  cursor: pointer;
  transition: all 0.2s ease;
}
.filter-btn:hover,
.filter-btn.active {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-dim);
}

/* ===========================
   ABOUT PAGE
   =========================== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.value-card {
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.value-card:hover {
  border-color: var(--gold-border);
  box-shadow: var(--shadow);
}
.value-card__icon {
  font-size: 32px;
  margin-bottom: 16px;
}
.value-card__title {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.value-card__desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero__visual { display: none; }
  .portfolio__grid { grid-template-columns: repeat(2, 1fr); }
  .process__steps { grid-template-columns: repeat(2, 1fr); gap: 44px; }
  .process__steps::before { display: none; }
  .pricing__grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .pricing-card--featured { transform: none; }
  .pricing-card--featured:hover { transform: translateY(-5px); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .pricing-options { grid-template-columns: 1fr; }
  .checkboxes { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --gap: 72px; --nav-h: 64px; }
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .services__grid { grid-template-columns: 1fr; }
  .portfolio__grid { grid-template-columns: 1fr; }
  .hero__stats { gap: 22px; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .testimonial-card { padding: 36px 28px; }
  .form__row { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .checkboxes { grid-template-columns: 1fr 1fr; }
  .radio-group { flex-direction: column; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .cta-banner__actions { flex-direction: column; align-items: center; }
  .checkboxes { grid-template-columns: 1fr; }
  .testimonial-card { padding: 28px 20px; }
}
