/* =====================================================================
   ITAZ Solutions — homepage styles (mobile-first, fully responsive)
   ===================================================================== */

/* ---------- Tokens ---------- */
:root {
  --ink: #111111;
  --slate: #354052;
  --slate-2: #4A5568;
  --gray-1: #FAFAFA;
  --gray-2: #EBEBEB;       /* light section background */
  --gray-3: #DBDBDB;
  --gray-4: #AFAFAF;
  --gray-5: #6B7280;
  --gray-6: #4A4A4A;

  --tan-dark: #64512F;
  --tan-mid: #C9B496;
  --tan-light: #BDAD8A;
  --tan-bg: #F2EFE6;
  --tan-bg-2: #EBE6D9;

  --gold-grad-h: linear-gradient(90deg, #64512F 0%, #C9B496 50%, #BDAD8A 100%);
  --gold-grad-d: linear-gradient(135deg, #64512F 0%, #C9B496 50%, #BDAD8A 100%);
  /* From Figma: hero/footer Gradient/2 = #585858 → #060606 vertical */
  --dark-grad: linear-gradient(180deg, #585858 0%, #060606 100%);
  --topbar-grad: linear-gradient(180deg, #585858 0%, #3B3B3B 100%);

  --dark-bg: #1C1C25;
  --maxw: 1280px;

  --shadow-sm: 0 2px 6px rgba(0,0,0,0.05);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 16px 40px rgba(15,23,42,0.12);

  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, "Helvetica Neue", Arial, sans-serif;
}

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--slate);
  background: var(--gray-2);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: transparent; }
ul { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4, h5, h6 { margin: 0; font-weight: 800; color: var(--ink); letter-spacing: -0.01em; }
p { margin: 0; color: var(--gray-5); }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Eyebrow — pill-style highlighted badge ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 16px 7px 14px;
  border-radius: 999px;
  background: rgba(100,81,47,0.08);
  border: 1px solid rgba(100,81,47,0.18);
  color: var(--tan-dark);
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  line-height: 1;
  vertical-align: middle;
  box-shadow: 0 4px 14px -6px rgba(100,81,47,0.25);
}
/* Round gold dots inside the pill */
.eyebrow::before,
.eyebrow::after {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--gold-grad-d);
}
/* Light variant — for dark backgrounds (hero, dark sections) */
.eyebrow-light {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.92);
  box-shadow: 0 4px 14px -6px rgba(0,0,0,0.4);
}
.eyebrow-light::before,
.eyebrow-light::after { background: var(--tan-mid); }
.eyebrow-dark  { color: var(--tan-dark); }

/* ---------- Section Title ---------- */
.section-title {
  font-size: clamp(28px, 4.5vw, 40px);
  line-height: 1.2;
  margin: 12px 0 18px;
  color: var(--ink);
}

/* ---------- Section Head ---------- */
.section-head { margin-bottom: 40px; }
.section-head-center { text-align: center; }
.section-head-center .eyebrow { justify-content: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center; justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
  transition: transform .15s, box-shadow .15s, filter .15s, background .15s;
}
.btn:hover { transform: translateY(-1px); }
.btn-gold {
  background: var(--gold-grad-h);
  color: #1A1408;
}
.btn-gold:hover { filter: brightness(1.05); box-shadow: 0 8px 24px rgba(100,81,47,0.3); }
.btn-white {
  background: #fff;
  color: var(--ink);
}
.btn-white:hover { background: #f5f5f5; }
.btn-dark {
  background: var(--ink);
  color: #fff;
}
.btn-dark:hover { background: #333; }
/* Larger CTA size variant for prominent buttons */
.btn-lg {
  padding: 18px 36px;
  font-size: 16px;
  letter-spacing: 0.02em;
  box-shadow: 0 10px 30px rgba(100,81,47,0.30);
}
.btn-lg:hover { box-shadow: 0 14px 36px rgba(100,81,47,0.40); }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }

.link {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 700; font-size: 14px;
  color: var(--tan-dark);
}
.link::after { content: "→"; transition: transform .2s; }
.link:hover::after { transform: translateX(4px); }


/* =====================================================================
   HEADER (top utility bar + main header)
   ===================================================================== */
.topbar {
  background: var(--topbar-grad);
  color: #fff;
  font-size: 13px;
}
.topbar-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 12px 20px 12px 220px; /* clearance for the 200px-wide logo oval */
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.topbar-msg, .topbar-hours {
  display: flex; align-items: center; gap: 8px;
  font-weight: 600;
}
.topbar svg { width: 14px; height: 14px; }
@media (max-width: 960px) {
  .topbar-inner { padding-left: 150px; }
}
@media (max-width: 720px) {
  .topbar-inner { padding-left: 150px; font-size: 12px; }
  .topbar-hours { display: none; }
}

.header {
  background: #fff;
  position: sticky; top: 0; z-index: 50;
  border-bottom: 1px solid #eee;
}
.header-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
  display: flex; align-items: center;
  height: 76px;
  gap: 20px;
}
/* Logo: matches Figma "Mask Group" — 253x193 oval, sits above page top by ~23px,
   so it overlaps the topbar + white header AND dips into the hero. */
.brand {
  flex-shrink: 0;
  position: relative;
  z-index: 60;
  margin-left: -28px;       /* corresponds to Figma left:48px - container padding 20 */
}
.brand-circle {
  width: 200px; height: 152px;          /* scaled 253x193 to a comfortable header size */
  border-radius: 50%;
  background: #fff;
  border: 1px solid #eee;
  display: grid; place-items: center;
  box-shadow: 0 6px 24px rgba(0,0,0,0.10);
  overflow: hidden;
  /* Pull up so the oval extends above the topbar, like Figma */
  margin-top: -68px;
  margin-bottom: -28px;
}
.brand-circle img { width: 150px; height: auto; }

.nav { display: flex; align-items: center; gap: 28px; flex: 1; justify-content: center; }
.nav a {
  font-weight: 700; font-size: 15px;
  color: var(--slate);
  position: relative;
  display: inline-flex; align-items: center; gap: 4px;
  padding: 6px 0;
  transition: color .15s;
}
.nav a:hover, .nav a.active { color: var(--tan-dark); }
.nav a.active::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--gold-grad-h);
  border-radius: 2px;
}

.header-actions { display: flex; align-items: center; gap: 18px; }
.quick-call { display: flex; align-items: center; gap: 10px; }
.quick-call-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--gray-3);
  display: grid; place-items: center;
  color: var(--tan-dark);
}
.quick-call-icon svg { width: 16px; height: 16px; }
.quick-call-text small { display: block; font-size: 11px; font-weight: 700; color: var(--slate); }
.quick-call-text strong { font-size: 13px; color: var(--gray-5); font-weight: 600; }

.menu-toggle {
  display: none;
  width: 42px; height: 42px;
  border-radius: 8px;
  border: 1px solid var(--gray-3);
  background: #fff;
  align-items: center; justify-content: center;
}
.menu-toggle svg { width: 22px; height: 22px; }

@media (max-width: 960px) {
  .nav, .header-actions .quick-call, .header-actions .btn { display: none; }
  .menu-toggle { display: inline-flex; }
  .header-actions { margin-left: auto; }
  .brand { margin-left: 0; }
  .brand-circle {
    width: 130px; height: 100px;
    margin-top: -44px;
    margin-bottom: -16px;
  }
  .brand-circle img { width: 96px; }
  .header-inner { height: 64px; }
}

.mobile-nav {
  display: none;
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: #fff;
  border-top: 1px solid #eee;
  flex-direction: column;
  padding: 16px 20px;
  gap: 4px;
  box-shadow: var(--shadow-md);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 12px 4px;
  font-weight: 700;
  border-bottom: 1px solid #f0f0f0;
}
.mobile-nav a:last-child { border-bottom: 0; margin-top: 8px; }


/* =====================================================================
   HERO
   ===================================================================== */
.hero {
  position: relative;
  background: var(--dark-grad);
  color: #fff;
  overflow: hidden;
  padding: 60px 0 0;
}
/* Mesh fills the entire hero, opacity 20%, blend screen — matches Figma image 1 */
.hero-bg-mesh {
  position: absolute;
  inset: 0;
  background: url("./assets/hero-grid-bg.png") center / cover no-repeat;
  opacity: 0.20;
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 0;
}
/* Hero-canvas mimics the 1440-wide Figma design, centered on wider viewports.
   Ring + sphere positioned absolutely inside it match Figma exactly. */
.hero-canvas {
  position: absolute;
  inset: 0;
  max-width: 1440px;
  margin: 0 auto;
  pointer-events: none;
}
/* Ring + sphere: ring sized to hug the sphere closely.
   Sphere is 556×556. Ring 580×580 (only 12px gap each side) keeps ring close to sphere edge.
   Both centered inside hero-canvas: ring at left:826-12=814, sphere at left:826. */
/* Ring at 564×564 — hairline gap (~4px) from sphere edge, halo effect */
.hero-ring {
  position: absolute;
  left: 822px;
  top: 18px;
  width: 564px; height: 564px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.45);
  box-sizing: border-box;
  z-index: 0;
}
.hero-sphere {
  position: absolute;
  left: 826px;
  top: 22px;
  width: 556px; height: 556px;
  background: url("./assets/sphere-3d.png") center/contain no-repeat;
  filter: drop-shadow(0 24px 60px rgba(0,0,0,0.5));
  z-index: 1;
  transform: rotate(-165.52deg);
  transform-origin: center;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 100px;
}
.hero-text { padding-right: 20px; }
.hero-title {
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.1;
  font-weight: 800;
  color: #fff;
  margin: 16px 0 20px;
}
.gold-text {
  background: var(--gold-grad-h);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-lead {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
  font-weight: 600;
  max-width: 480px;
  margin-bottom: 28px;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* Cards: Figma Frame 76 — auto-width per card, stacked vertically, left:732 top:140 in 1440 canvas */
.hero-cards {
  position: absolute;
  left: 732px;
  top: 140px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  z-index: 3;
  pointer-events: auto;
}
.hero-card {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 24px 14px 14px;
  background: rgba(28,28,37,0.78);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  transition: transform .2s;
}
/* Subtle stagger so the column visually follows the sphere's curve, like Figma */
.hero-card:nth-child(1) { transform: translateX(20px); }
.hero-card:nth-child(2) { transform: translateX(0); }
.hero-card:nth-child(3) { transform: translateX(8px); }
.hero-card:nth-child(4) { transform: translateX(28px); }
.hero-card:hover { transform: translateX(-4px); }
.hero-card-icon {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,0.95);
  color: #1c1c25;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.hero-card-icon svg { width: 20px; height: 20px; }

.wave-divider {
  position: relative;
  display: block;
  width: 100%;
  height: 60px;
  z-index: 2;
}

@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 80px;
  }
  .hero-text { padding-right: 0; }
  .hero-cards { justify-self: start; }
  /* Mobile: scale + reposition relative to right edge instead of fixed left */
  .hero-canvas { display: none; }
  .hero::after {
    content: "";
    position: absolute;
    right: -80px; top: 100px;
    width: 300px; height: 300px;
    background: url("./assets/sphere-3d.png") center/contain no-repeat;
    transform: rotate(-165.52deg);
    opacity: 0.55;
    pointer-events: none;
    z-index: 0;
  }
}
@media (max-width: 960px) {
  .hero-cards { position: static; width: auto; }
  .hero-card { width: auto; max-width: 280px; }
}
@media (max-width: 480px) {
  .hero-card { max-width: 100%; }
}


/* =====================================================================
   VALUE — "Make Your Business Great"
   ===================================================================== */
.value-section { padding: 80px 0; }
.value-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.value-image {
  position: relative;
}
.value-image img {
  width: 100%; aspect-ratio: 4/5;
  border-radius: 24px;
  object-fit: cover;
}
.float-card {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  font-size: 13px;
  min-width: 150px;
}
.float-card-business { top: 24px; left: -16px; }
.float-card-performance { top: 24px; right: -16px; }
.float-card-head {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px;
  color: var(--gray-5);
  font-weight: 700;
  margin-bottom: 8px;
}
.float-card-icon {
  width: 22px; height: 22px;
  border-radius: 6px;
  background: var(--tan-bg);
  color: var(--tan-dark);
  display: grid; place-items: center;
}
.float-card-icon svg { width: 14px; height: 14px; }
.float-card-number {
  font-size: 22px; font-weight: 800; color: var(--ink);
  line-height: 1;
  display: flex; align-items: center; gap: 8px;
  letter-spacing: -0.02em;
}
.trend {
  font-size: 10px; font-weight: 700;
  color: #2ECC71;
  background: rgba(46,204,113,0.12);
  padding: 3px 6px;
  border-radius: 999px;
}
.float-card-bars {
  display: flex; gap: 5px; align-items: end;
  margin-top: 12px;
  height: 30px;
}
.float-card-bars i { flex: 1; background: var(--tan-bg-2); border-radius: 3px; height: 60%; }
.float-card-bars i:nth-child(1) { height: 40%; }
.float-card-bars i:nth-child(2) { height: 70%; }
.float-card-bars i:nth-child(3) { height: 55%; }
.float-card-bars i.active { height: 90%; background: var(--tan-mid); }
.float-card-bars i:nth-child(5) { height: 45%; }
.float-card-bars i:nth-child(6) { height: 65%; }
.donut { width: 56px; height: 56px; margin-top: 4px; }
.donut svg { width: 100%; height: 100%; }

.checklist { display: grid; gap: 12px; margin: 24px 0 28px; }
.checklist li {
  display: flex; align-items: center; gap: 12px;
  font-weight: 500; font-size: 15px;
  color: var(--slate);
}
.checklist li::before {
  content: "";
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--tan-bg);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364512F' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: center;
}

@media (max-width: 880px) {
  .value-grid { grid-template-columns: 1fr; gap: 60px; }
  .float-card-business  { top: 16px; left: 16px; }
  .float-card-performance { top: 16px; right: 16px; }
}


/* =====================================================================
   CLIENTS
   ===================================================================== */
.clients-section { padding: 56px 0 64px; }
.clients-title {
  text-align: center;
  color: var(--gray-5);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 0 0 28px;
}
.clients-title::before, .clients-title::after {
  content: "";
  flex: 1;
  max-width: 70px;
  height: 1px;
  background: var(--gray-3);
}
.clients-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.client-pill {
  background: #fff;
  border-radius: 14px;
  padding: 18px 14px;
  display: flex; align-items: center; justify-content: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 800;
  color: var(--slate);
  box-shadow: 0 4px 14px rgba(15,15,30,0.05);
  letter-spacing: -0.02em;
}
.cm {
  width: 26px; height: 26px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 13px;
  color: #fff;
  font-weight: 700;
  flex-shrink: 0;
}
.cm-orange { background: #FF6B35; }
.cm-mint   { background: #2ECC71; }
.cm-amber  { background: #F39C12; }
.cm-pink   { background: #E91E63; }
.cm-teal   { background: #1ABC9C; }

@media (max-width: 960px) { .clients-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .clients-grid { grid-template-columns: repeat(2, 1fr); } }


/* =====================================================================
   SERVICES (dark)
   ===================================================================== */
.services-section {
  background: var(--dark-bg);
  color: #fff;
  padding: 80px 0;
  position: relative;
}
.services-section .section-head { text-align: center; }
.services-section .section-head .eyebrow { justify-content: center; }
.services-section .section-title { color: #fff; }

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: start;
}
.services-aside img {
  width: 100%;
  border-radius: 16px;
  margin-bottom: 24px;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.services-aside h3 {
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 14px;
}
.services-aside p {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.services-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.service-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px;
  text-align: left;
  transition: transform .2s, box-shadow .2s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.18); }
.service-card-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--tan-bg);
  color: var(--tan-dark);
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.service-card-icon svg { width: 26px; height: 26px; }
.service-card h3 {
  font-size: 16px;
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 10px;
  line-height: 1.3;
}
.service-card p {
  color: var(--gray-5);
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 880px) {
  .services-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-aside { text-align: center; }
}
@media (max-width: 480px) {
  .services-cards { grid-template-columns: 1fr; }
}


/* =====================================================================
   PROCESS — How ITAZ Work
   ===================================================================== */
.process-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.process-blob {
  position: absolute;
  right: -120px; bottom: -100px;
  width: 280px; height: 280px;
  background: url("./assets/gold-blob.png") center/contain no-repeat;
  opacity: 0.5;
  pointer-events: none;
}
.process-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.process-content p {
  margin: 14px 0 0;
  font-size: 14px;
  color: var(--gray-5);
  line-height: 1.7;
}
.process-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin: 28px 0;
}
.process-items li {
  display: flex; align-items: center; gap: 14px;
}
.process-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--gray-3);
  color: var(--tan-dark);
  display: grid; place-items: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}
.process-icon svg { width: 24px; height: 24px; }
.process-items strong {
  font-weight: 700;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.3;
}
.process-photo img {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  border-radius: 24px;
  aspect-ratio: 4/3;
  object-fit: cover;
  box-shadow: 0 16px 40px rgba(15,23,42,0.12);
}

@media (max-width: 880px) {
  .process-grid { grid-template-columns: 1fr; gap: 40px; }
  .process-items { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .process-items { grid-template-columns: 1fr; }
}


/* =====================================================================
   CTA BANNER
   ===================================================================== */
.cta-banner {
  background: var(--dark-bg);
  color: #fff;
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute; inset: 0;
  background: url("./assets/wave-pattern.png") right center / contain no-repeat;
  opacity: 0.12;
  pointer-events: none;
}
.cta-banner-inner {
  display: flex;
  align-items: center; justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  position: relative;
}
.cta-banner h2 {
  color: #fff;
  font-size: clamp(22px, 3vw, 32px);
  margin: 0;
}


/* =====================================================================
   BLOG
   ===================================================================== */
.blog-section { padding: 80px 0; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-card-img {
  aspect-ratio: 16/10;
  background-size: cover;
  background-position: center;
}
.blog-card-body { padding: 22px 22px 26px; }
.blog-meta {
  display: flex; gap: 14px;
  font-size: 12px;
  color: var(--gray-5);
  margin-bottom: 12px;
}
.blog-meta span { display: inline-flex; align-items: center; gap: 5px; }
.blog-meta svg { width: 13px; height: 13px; }
.blog-card h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 14px;
  line-height: 1.4;
}

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


/* =====================================================================
   FOOTER
   ===================================================================== */
.footer {
  background: var(--dark-bg);
  color: #fff;
  position: relative;
  padding: 64px 0 0;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute; inset: 0;
  background: url("./assets/wave-pattern.png") left top / cover no-repeat;
  opacity: 0.08;
  pointer-events: none;
}
.footer-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}
.footer-col h5 {
  font-size: 16px; color: #fff;
  margin: 0 0 18px;
  position: relative;
  padding-bottom: 12px;
}
.footer-col h5::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 28px; height: 2px;
  background: var(--gold-grad-h);
}
.footer-col p, .footer-col a {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  line-height: 1.7;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col a:hover { color: #fff; }

.footer-bottom {
  position: relative;
  background: #fff;
  border-radius: 16px 16px 0 0;
  margin: 0 24px;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom-logo img {
  height: 28px;
  width: auto;
  display: block;
}
.footer-bottom small {
  color: var(--gray-5);
  font-size: 13px;
}

@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}


/* =====================================================================
   INNER PAGE STYLES (about, services, team, blog, contact, etc.)
   ===================================================================== */

/* Page hero — every inner page uses its own Figma Frame 77 export with the title
   baked in. Background image is selected per page via body[data-page]. */
.page-hero {
  position: relative;
  background-color: #1c1c25;
  background-image: url("./assets/page-hero-bg.png");  /* default = About Us */
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
  height: 560px;
  overflow: hidden;
}
body[data-page="services"]      .page-hero { background-image: url("./assets/page-hero-bg-services.png"); }
body[data-page="service-detail"] .page-hero { background-image: url("./assets/page-hero-bg-service-detail.png"); }
body[data-page="team"]          .page-hero { background-image: url("./assets/page-hero-bg-team.png"); }
body[data-page="team-single"]   .page-hero { background-image: url("./assets/page-hero-bg-team-single.png"); }
body[data-page="blog"]          .page-hero { background-image: url("./assets/page-hero-bg-blog.png"); }
body[data-page="blog-detail"]   .page-hero { background-image: url("./assets/page-hero-bg-blog-detail.png"); }
body[data-page="contact"]       .page-hero { background-image: url("./assets/page-hero-bg-contact.png"); }
/* Title + breadcrumb are baked into each bg image, so visually hide HTML versions
   while keeping them readable for screen readers + SEO */
.page-hero h1,
.page-hero .crumbs {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
/* Canvas mirrors Figma's 1440-wide design and centers on wider viewports */
.page-hero-canvas {
  position: absolute;
  inset: 0;
  max-width: 1440px;
  margin: 0 auto;
  pointer-events: none;
  z-index: 1;
}
/* element2 3 (first) — bottom-left sphere fragment */
.ph-blob-3 {
  position: absolute;
  width: 590px; height: 588px;
  top: 128px; left: -207px;
  transform: rotate(55.7deg);
}
/* element2 3 (second) — top-right sphere fragment, mirrored to balance with bottom-left */
.ph-blob-3-tr {
  position: absolute;
  width: 590px; height: 588px;
  top: -156px;
  right: -207px;
  left: auto;
  transform: rotate(-124.3deg);
}
/* element2 2 — top-left atmospheric ghost (Figma exact: 20% opacity, 20px blur — subtle, not prominent) */
.ph-blob-2 {
  position: absolute;
  width: 444px; height: 442px;
  top: -146px; left: -207px;
  transform: rotate(-180deg);
  opacity: 0.20;
  filter: blur(20px);
}
/* element2 4 — bottom-right atmospheric ghost (same Figma exact values) */
.ph-blob-4 {
  position: absolute;
  width: 444px; height: 442px;
  top: 268px; left: 890px;
  transform: rotate(116.8deg);
  opacity: 0.20;
  filter: blur(20px);
}
/* Wireframe 44 — central wireframe globe, 449x433, top:20 left:496, opacity 15% */
.ph-wire {
  position: absolute;
  width: 449px; height: 433px;
  top: 20px; left: 496px;
  opacity: 0.15;
}
/* Title + breadcrumb sit centered on top */
/* HTML title + breadcrumb (visible by default; hidden only on About Us via data-page rule above) */
.page-hero h1 {
  position: relative; z-index: 2;
  color: #fff;
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 800;
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}
.page-hero .crumbs {
  position: relative; z-index: 2;
  display: inline-flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.75);
  font-size: 15px;
  font-weight: 600;
}
.page-hero .crumbs span { color: var(--tan-mid); }

@media (max-width: 720px) {
  .page-hero { height: 380px; }
  /* Scale assets ~60% on mobile, hide subtle blurred ones */
  .ph-blob-3 { width: 354px; height: 353px; top: 60px; left: -120px; }
  .ph-blob-3-tr { width: 340px; height: 340px; top: -180px; left: auto; right: -120px; }
  .ph-blob-2 { display: none; }
  .ph-blob-4 { display: none; }
  .ph-wire { width: 280px; height: 270px; top: 50px; left: 50%; transform: translateX(-50%); }
}

/* Wave divider used after page-hero */
.page-hero + .wave-divider {
  position: relative;
  margin-top: -80px;
  height: 80px;
  z-index: 3;
}
.page-hero + .wave-divider svg { width: 100%; height: 100%; display: block; }

/* Section base + variants */
.section { padding: 80px 0; }
@media (max-width: 880px) { .section { padding: 64px 0; } }
@media (max-width: 480px) { .section { padding: 48px 0; } }
.section-grey { background: #F4F4F4; }

/* eyebrow.center for centered section heads */
.eyebrow.center { justify-content: center; }
.section-head { text-align: center; }
.section-head .eyebrow { justify-content: center; }
.section-head h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  margin: 12px 0 14px;
  font-weight: 800;
  color: var(--ink);
}
.section-head p {
  max-width: 640px;
  margin: 0 auto;
  color: var(--gray-5);
}

/* Two-column section layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.two-col h2 {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  margin: 12px 0 16px;
  color: var(--ink);
}
.two-col p { color: var(--gray-5); margin: 0 0 16px; }
@media (max-width: 880px) { .two-col { grid-template-columns: 1fr; gap: 40px; } }

/* Mission heading — one line on desktop, wraps on mobile */
.mission-heading {
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 800;
  line-height: 1.2;
  margin: 12px 0 16px;
  white-space: nowrap;
}
@media (max-width: 880px) {
  .mission-heading {
    white-space: normal;
    font-size: clamp(22px, 5vw, 28px);
  }
}

/* image-stack with stat-pill (about, contact) */
.image-stack { position: relative; }
.image-stack > img {
  width: 100%; border-radius: 24px; display: block;
  aspect-ratio: 4/5; object-fit: cover;
}
.stat-pill {
  position: absolute; bottom: 24px; left: -24px;
  background: var(--ink); color: #fff;
  padding: 18px 22px;
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  min-width: 130px;
}
.stat-pill strong { font-size: 30px; font-weight: 800; display: block; line-height: 1; }
.stat-pill span { font-size: 12px; opacity: .85; line-height: 1.3; display: inline-block; margin-top: 6px; }
@media (max-width: 880px) {
  .stat-pill { left: 16px; bottom: 16px; padding: 14px 18px; }
  .stat-pill strong { font-size: 24px; }
  .stat-pill span { font-size: 11px; }
}
@media (max-width: 480px) {
  .image-stack > img { aspect-ratio: 4/3; }
  .stat-pill { padding: 12px 16px; }
  .stat-pill strong { font-size: 22px; }
}

/* Feature mini (icon + text inline rows) */
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 20px 0 24px; }
.feature-mini { display: flex; align-items: center; gap: 12px; }
.feature-mini-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--tan-bg); color: var(--tan-dark);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.feature-mini-icon svg { width: 20px; height: 20px; }
.feature-mini strong { display: block; font-weight: 700; color: var(--ink); font-size: 15px; }
.feature-mini small { color: var(--gray-5); font-size: 13px; }
@media (max-width: 480px) { .feature-row { grid-template-columns: 1fr; } }

/* Domain experience chips (about page Our Story) */
.domain-chips {
  list-style: none;
  margin: 14px 0 22px;
  padding: 0 0 4px;
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.domain-chips::-webkit-scrollbar { display: none; }
.domain-chips li {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(100, 81, 47, 0.08);
  border: 1px solid rgba(100, 81, 47, 0.20);
  color: var(--tan-dark);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background .2s, border-color .2s, transform .2s;
}
.domain-chips li:hover {
  background: rgba(100, 81, 47, 0.14);
  border-color: rgba(100, 81, 47, 0.32);
  transform: translateY(-1px);
}
.domain-chips .flag {
  display: inline-block;
  margin-right: 6px;
  font-size: 14px;
  line-height: 1;
}

/* On mobile, allow chips to wrap (since horizontal scroll is awkward on touch) */
@media (max-width: 600px) {
  .domain-chips {
    flex-wrap: wrap;
    overflow-x: visible;
    padding: 0;
  }
  .domain-chips li {
    font-size: 12px;
    padding: 5px 10px;
  }
}

.mt-2 { margin-top: 14px; }

/* =====================================================================
   FLOW STEPS — Discovery → Delivery (premium card layout)
   ===================================================================== */
.process-flow {
  position: relative;
  overflow: hidden;
  padding-top: 56px;       /* tighter top so the badge anchors near the section start */
  padding-bottom: 88px;    /* matching breathing room below the cards */
}
.process-flow .section-head {
  margin-bottom: 56px;
  padding-top: 0;
}
.process-flow .section-title {
  letter-spacing: -0.02em;
  margin-top: 16px;        /* consistent gap below the badge */
}

/* Process-flow eyebrow inherits the pill style from base .eyebrow */

.process-flow .section-head p {
  max-width: 920px;
  font-size: 15px;
  white-space: normal;
}
@media (min-width: 1100px) {
  .process-flow .section-head p { white-space: nowrap; max-width: none; }
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  position: relative;
  align-items: stretch;
}

/* Card */
.flow-step {
  background: #fff;
  border: 1px solid rgba(100,81,47,0.06);
  border-radius: 20px;
  padding: 28px 26px;
  position: relative;
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  row-gap: 14px;
  text-align: left;
  isolation: isolate;
  overflow: hidden;
  box-shadow:
    0 1px 0 0 rgba(255,255,255,0.6) inset,
    0 6px 18px -6px rgba(15,15,30,0.06);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
/* Gold accent strip at top */
.flow-step::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: var(--gold-grad-h);
  opacity: 0.85;
}
.flow-step:hover {
  transform: translateY(-4px);
  box-shadow:
    0 1px 0 0 rgba(255,255,255,0.8) inset,
    0 18px 36px -14px rgba(100,81,47,0.22);
  border-color: rgba(100,81,47,0.18);
}

/* Top row: icon (left) + step number (right) on the SAME baseline */
.flow-step-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--tan-bg);
  color: var(--tan-dark);
  display: grid; place-items: center;
  flex-shrink: 0;
  box-shadow: 0 0 0 6px rgba(201,180,150,0.10);
  transition: background .25s, box-shadow .25s, color .25s;
  grid-row: 1;
  justify-self: start;
}
.flow-step-icon svg { width: 24px; height: 24px; }
.flow-step:hover .flow-step-icon {
  background: var(--gold-grad-h);
  color: #fff;
  box-shadow: 0 0 0 8px rgba(201,180,150,0.25);
}

.flow-step-num {
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-size: 38px;
  font-weight: 700;
  font-feature-settings: "tnum";
  letter-spacing: -0.02em;
  background: var(--gold-grad-h);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  opacity: 0.95;
  pointer-events: none;
  position: absolute;
  top: 50%;          /* align vertically with icon center */
  right: 24px;
  transform: translateY(-50%);
  /* But icon's vertical center is fixed (28px padding + 28px half-icon = 56px),
     so override 50% with a precise top in px */
  top: 56px;
  transform: translateY(-50%);
}

.flow-step h4 {
  font-size: 19px;
  font-weight: 800;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.01em;
  line-height: 1.3;
  grid-row: 2;
}
.flow-step p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--gray-5);
  margin: 0;
  grid-row: 3;
}

/* Connector dotted line — runs through icon centers (icon top: 28px + 28 radius = 56px) */
@media (min-width: 881px) {
  .flow-grid::before {
    content: "";
    position: absolute;
    left: 54px; right: 54px;
    top: 56px;
    height: 2px;
    background-image:
      radial-gradient(circle, var(--tan-mid) 1px, transparent 1.5px);
    background-size: 14px 2px;
    background-repeat: repeat-x;
    background-position: left center;
    opacity: 0.55;
    z-index: 0;
  }
  .flow-step { z-index: 1; }
}

/* Responsive */
@media (max-width: 1100px) {
  .flow-grid { gap: 20px; }
  .flow-step { padding: 28px 24px 24px; }
  .flow-step-num { font-size: 38px; }
}
@media (max-width: 880px) {
  .flow-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
  .flow-grid::before { display: none; }
  .process-flow .section-head { margin-bottom: 40px; }
  .process-flow { padding-bottom: 72px; }
}
@media (max-width: 480px) {
  .flow-grid { grid-template-columns: 1fr; }
  .process-flow { padding-top: 48px; padding-bottom: 56px; }
}

/* Working cycle (process steps grid of 4) — legacy, kept for other pages */
.cycle-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
@media (max-width: 880px) { .cycle-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .cycle-grid { grid-template-columns: 1fr; } }
.cycle-step { text-align: center; }
.cycle-step-icon {
  width: 96px; height: 96px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--gray-3);
  color: var(--tan-dark);
  display: grid; place-items: center;
  margin: 0 auto 18px;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.cycle-step-icon svg { width: 36px; height: 36px; }
.cycle-step-num {
  position: absolute;
  bottom: -8px; right: -4px;
  background: var(--gold-grad-h);
  color: #1A1408;
  width: 30px; height: 30px;
  border-radius: 50%;
  font-size: 12px; font-weight: 800;
  display: grid; place-items: center;
}
.cycle-step h4 { font-size: 18px; margin: 0 0 8px; font-weight: 800; color: var(--ink); }
.cycle-step p { color: var(--gray-5); font-size: 13px; line-height: 1.6; }

/* Team grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 880px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .team-grid { grid-template-columns: 1fr; } }
.team-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  display: block;
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.team-card-img { aspect-ratio: 4/5; background-size: cover; background-position: center; }
.team-card-body { padding: 18px 18px 22px; text-align: center; }
.team-card h4 { font-size: 18px; font-weight: 800; margin: 0 0 4px; color: var(--ink); }
.team-card p { font-size: 13px; color: var(--gray-5); margin: 0; }

/* ===== Team Avatar (gradient circle with initials) ===== */
.team-avatar {
  position: relative;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.35), transparent 55%),
    linear-gradient(135deg, #64512F 0%, #9C7F4F 40%, #C9B496 80%, #BDAD8A 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.team-avatar::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 90%, rgba(255,255,255,0.18), transparent 40%),
    radial-gradient(circle at 20% 80%, rgba(0,0,0,0.18), transparent 50%);
  pointer-events: none;
}
.team-avatar::after {
  content: attr(data-initials);
  position: relative;
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 7vw, 72px);
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #FAF7EF;
  text-shadow: 0 2px 8px rgba(0,0,0,0.18);
  z-index: 1;
}
.team-avatar-large::after {
  font-size: clamp(80px, 12vw, 140px);
}
/* Decorative dots */
.team-avatar > .team-card-add {
  z-index: 2;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 880px) { .pricing-grid { grid-template-columns: 1fr; } }
.pricing-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 28px;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
}
.pricing-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--tan-bg);
  color: var(--tan-dark);
  display: grid; place-items: center;
  margin-bottom: 20px;
}
.pricing-icon svg { width: 26px; height: 26px; }
.pricing-price {
  font-size: 36px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
  margin: 0 0 18px;
}
.pricing-price small { display: block; font-size: 13px; font-weight: 600; color: var(--gray-5); margin-top: 6px; }
.pricing-features { display: flex; flex-direction: column; gap: 10px; margin: 0 0 22px; }
.pricing-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--slate);
}
.pricing-features svg { width: 16px; height: 16px; color: var(--tan-dark); flex-shrink: 0; }

/* Section dark variant for inner pages */
.section.section-dark {
  background: var(--dark-bg);
  color: #fff;
}
.section.section-dark h2 { color: #fff; }
.section.section-dark p { color: rgba(255,255,255,0.72); }
.section.section-dark .eyebrow {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.92);
  box-shadow: 0 4px 14px -6px rgba(0,0,0,0.4);
}
.section.section-dark .eyebrow::before,
.section.section-dark .eyebrow::after { background: var(--tan-mid); }

/* Contact form & info */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}
@media (max-width: 720px) { .contact-info-grid { grid-template-columns: 1fr; } }
.contact-item {
  background: #fff;
  border-radius: 14px;
  padding: 20px 18px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--shadow-sm);
}
.contact-item-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--tan-bg);
  color: var(--tan-dark);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.contact-item h4 { font-size: 14px; font-weight: 700; margin: 0 0 4px; color: var(--ink); }
.contact-item p { font-size: 13px; color: var(--gray-5); margin: 0; line-height: 1.4; }

/* ===== Contact form — premium 2-column layout ===== */
.form-card {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 0;
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow:
    0 1px 0 0 rgba(255,255,255,0.6) inset,
    0 16px 40px -18px rgba(15,15,30,0.18),
    0 4px 12px -4px rgba(15,15,30,0.06);
  border: 1px solid rgba(100,81,47,0.08);
  margin-top: 32px;
}
@media (max-width: 880px) {
  .form-card { grid-template-columns: 1fr; }
}

/* LEFT — info panel (gold tan background) */
.form-card-info {
  background:
    radial-gradient(circle at 100% 0%, rgba(201,180,150,0.4), transparent 60%),
    linear-gradient(150deg, #F2EAD6 0%, #E5D9BC 100%);
  padding: 44px 40px;
  position: relative;
}
.form-card-info::before {
  content: "";
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 4px;
  background: var(--gold-grad-h);
}
.form-card-info .eyebrow {
  margin-bottom: 18px;
}
.form-card-info h2 {
  font-size: clamp(24px, 2.6vw, 30px);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin: 0 0 14px;
}
.form-card-info p {
  color: var(--gray-7);
  font-size: 14.5px;
  line-height: 1.65;
  margin: 0 0 26px;
}
.form-card-info h4 {
  font-size: 13px;
  font-weight: 800;
  color: var(--tan-dark);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin: 0 0 14px;
}
.form-card-info .benefits {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
}
@media (max-width: 600px) {
  .form-card-info .benefits { grid-template-columns: 1fr; }
}
.form-card-info .benefits li {
  position: relative;
  padding-left: 26px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.5;
}
.form-card-info .benefits li::before {
  content: "";
  position: absolute;
  left: 0; top: 1px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--gold-grad-h);
  display: block;
}
.form-card-info .benefits li::after {
  content: "";
  position: absolute;
  left: 5px; top: 6px;
  width: 8px; height: 4px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

/* RIGHT — form panel (white background) */
.form-card-form {
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-card .field-label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-card .field-label > span {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.form-card .field-label > span em {
  color: #b8344a;
  font-style: normal;
  margin-left: 2px;
}
.form-card .field {
  width: 100%;
  padding: 13px 16px;
  background: #FAFAFA;
  border: 1.5px solid #E8E4DA;
  border-radius: 10px;
  font-family: inherit;
  font-size: 14px;
  color: var(--ink);
  transition: border-color .15s, background .15s, box-shadow .15s;
  outline: none;
}
.form-card .field::placeholder {
  color: #A8A29A;
}
.form-card .field:hover {
  border-color: #C9B496;
  background: #FFFFFF;
}
.form-card .field:focus {
  border-color: var(--tan-dark);
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(201,180,150,0.25);
}
.form-card textarea.field {
  min-height: 120px;
  resize: vertical;
  line-height: 1.55;
}

/* Honeypot — visually hidden, off-screen, untabbable. Bots will still fill it. */
.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
}

/* Gradient submit button */
.btn-grad-block {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border: 0;
  border-radius: 999px;
  background: var(--gold-grad-h);
  color: #FFFFFF;
  font-family: inherit;
  font-size: 14.5px;
  font-weight: 800;
  letter-spacing: 0.04em;
  cursor: pointer;
  margin-top: 6px;
  box-shadow:
    0 8px 22px -8px rgba(100,81,47,0.45),
    0 2px 6px -2px rgba(100,81,47,0.25);
  transition: transform .18s, box-shadow .18s, filter .18s;
}
.btn-grad-block:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow:
    0 12px 28px -8px rgba(100,81,47,0.55),
    0 4px 8px -2px rgba(100,81,47,0.3);
}
.btn-grad-block:active {
  transform: translateY(0);
}
.btn-grad-block[disabled] {
  opacity: 0.65;
  cursor: progress;
  transform: none;
}

.form-status {
  font-size: 13.5px;
  font-weight: 600;
  min-height: 18px;
  line-height: 1.5;
}
.form-status-success {
  color: #1a7f3a;
  background: rgba(26,127,58,0.08);
  padding: 10px 14px;
  border-radius: 8px;
  border-left: 3px solid #1a7f3a;
}
.form-status-error {
  color: #b8344a;
  background: rgba(184,52,74,0.08);
  padding: 10px 14px;
  border-radius: 8px;
  border-left: 3px solid #b8344a;
}

@media (max-width: 600px) {
  .form-card-info, .form-card-form { padding: 32px 24px; }
}

/* Blog single (article) */
.with-sidebar {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
}
@media (max-width: 960px) { .with-sidebar { grid-template-columns: 1fr; } }
.sidebar-card {
  background: #fff;
  border-radius: 14px;
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}
.sidebar-card h4 { font-size: 16px; margin: 0 0 14px; color: var(--ink); position: relative; padding-bottom: 10px; }
.sidebar-card h4::after { content: ""; position: absolute; left: 0; bottom: 0; width: 24px; height: 2px; background: var(--gold-grad-h); }
.sidebar-card ul li { margin-bottom: 10px; font-size: 14px; color: var(--gray-5); }
.sidebar-card ul li a { color: var(--slate); }
.sidebar-card ul li a:hover { color: var(--tan-dark); }
.recent-post { display: flex; gap: 12px; margin-bottom: 14px; }
.recent-post-img { width: 70px; height: 60px; border-radius: 8px; background-size: cover; background-position: center; flex-shrink: 0; }
.recent-post-body small { color: var(--gray-5); font-size: 12px; display: block; margin-bottom: 4px; }
.recent-post-body strong { font-size: 13px; line-height: 1.4; color: var(--ink); }
.tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tags span { font-size: 12px; padding: 5px 12px; background: var(--gray-2); border-radius: 999px; color: var(--gray-5); }
