:root {
  --ink: #1B140D;
  --ink-2: #2A1D12;
  --ink-soft: #4A3C2E;
  --orange: #D9591E;
  --orange-deep: #A8420F;
  --orange-light: #F0833D;
  --orange-soft: #FBEAD9;
  --gold-line: #D7B98E;
  --white: #FFFFFF;
  --paper: #FAF6F0;
  --slate: #756A5E;
  --line: #E7DED1;
  --footer-bg: #17110A;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.icon-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.icon { width: 20px; height: 20px; flex-shrink: 0; display: inline-block; vertical-align: middle; }

/* ── HEADER (white) ── */
header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 0 40px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 0 rgba(27,20,13,0.04);
}
.header-inner {
  max-width: 1240px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  gap: 20px;
}
.logo-block { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.logo-emblem {
  width: 56px; height: 72px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-text { line-height: 1.15; }
.logo-text h1 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 20px;
  color: var(--ink);
  letter-spacing: 0.1px;
}
.logo-text span {
  font-size: 10.5px;
  color: var(--orange-deep);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
}
header nav { display: flex; gap: 32px; }
header nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.2px;
  transition: color 0.2s;
  position: relative;
}
header nav a::after {
  content: '';
  position: absolute;
  bottom: -22px; left: 0;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width 0.25s;
}
header nav a:hover { color: var(--orange-deep); }
header nav a:hover::after { width: 100%; }
.header-cta {
  background: var(--ink);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.2px;
  border: none;
  border-radius: 999px;
  padding: 11px 22px 11px 18px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  box-shadow: 0 8px 18px rgba(27,20,13,0.18);
}
.header-cta .icon { width: 16px; height: 16px; color: var(--orange-light); }
.header-cta:hover { background: var(--orange-deep); transform: translateY(-1px); box-shadow: 0 12px 24px rgba(168,66,15,0.32); }

/* ── HERO (dark, premium anchor) ── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(165deg, var(--ink) 0%, var(--ink-2) 55%, #1F160D 100%);
}
.hero-pattern {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 70% 30%, rgba(0,0,0,0.7), transparent 75%);
  mask-image: radial-gradient(ellipse 80% 70% at 70% 30%, rgba(0,0,0,0.7), transparent 75%);
}
.hero-glow {
  position: absolute;
  width: 680px; height: 680px;
  background: radial-gradient(circle at 35% 35%, rgba(217,89,30,0.60), rgba(240,131,61,0.16) 55%, transparent 72%);
  border-radius: 42% 58% 65% 35% / 45% 40% 60% 55%;
  top: -180px; right: -200px;
  filter: blur(6px);
  pointer-events: none;
}
.hero-glow-2 {
  position: absolute;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(217,89,30,0.18), transparent 70%);
  bottom: -140px; left: -100px;
  pointer-events: none;
}
.hero-inner {
  max-width: 1240px;
  margin: auto;
  padding: 60px 40px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  display: block;
  color: var(--orange-light);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 18px;
  animation: fadeUp 0.6s ease both;
}
.hero h2 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(38px, 4.8vw, 64px);
  line-height: 1.06;
  color: var(--white);
  margin-bottom: 22px;
  animation: fadeUp 0.7s ease 0.1s both;
  letter-spacing: -1px;
}
.hero h2 .accent { color: var(--orange-light); display: block; }
.hero p {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255,255,255,0.68);
  max-width: 500px;
  margin-bottom: 18px;
  animation: fadeUp 0.7s ease 0.3s both;
  font-weight: 400;
}
.hero-tagline {
  color: var(--orange-light);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin-bottom: 36px;
  animation: fadeUp 0.7s ease 0.35s both;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 36px; animation: fadeUp 0.7s ease 0.4s both; }
.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.2px;
  border: none;
  border-radius: 999px;
  padding: 17px 32px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  box-shadow: 0 1px 2px rgba(168,66,15,0.2), 0 14px 28px rgba(217,89,30,0.34);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 1px 2px rgba(168,66,15,0.3), 0 20px 36px rgba(217,89,30,0.44); }
.btn-primary .icon { width: 16px; height: 16px; }
.btn-outline {
  background: rgba(255,255,255,0.04);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.2px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  padding: 16px 28px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
}
.btn-outline:hover { border-color: var(--orange-light); background: rgba(217,89,30,0.10); transform: translateY(-2px); }
.hero-highlight {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 12px 20px 12px 12px;
  animation: fadeUp 0.7s ease 0.5s both;
}
.hero-highlight-thumb {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-highlight-thumb .icon { width: 18px; height: 18px; color: var(--white); }
.hero-highlight-tag {
  display: block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--orange-light);
  margin-bottom: 3px;
}
.hero-highlight p { font-size: 13.5px; font-weight: 600; color: rgba(255,255,255,0.88); margin: 0; }

/* hero card */
.hero-card {
  background: var(--white);
  border-radius: 20px;
  box-shadow:
    0 1px 1px rgba(27,20,13,0.04),
    0 12px 24px rgba(27,20,13,0.12),
    0 36px 64px rgba(27,20,13,0.22);
  padding: 38px 34px;
  animation: fadeUp 0.8s ease 0.3s both;
}
.hero-card h3 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 26px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-card h3 .icon { width: 18px; height: 18px; color: var(--orange); }
.contact-row { display: flex; align-items: center; gap: 16px; margin-bottom: 22px; }
.contact-icon {
  width: 46px; height: 46px;
  border-radius: 13px;
  background: radial-gradient(circle at 30% 25%, var(--orange-soft), #F6DEC4 100%);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 1px rgba(217,89,30,0.14);
}
.contact-icon .icon { width: 20px; height: 20px; color: var(--orange-deep); }
.contact-row .label { font-size: 10.5px; letter-spacing: 1.4px; text-transform: uppercase; color: var(--slate); font-weight: 600; }
.contact-row .value { font-size: 16.5px; font-weight: 700; color: var(--ink); margin-top: 2px; }
.whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: #1F9E5A;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: 0.2px;
  border: none;
  border-radius: 12px;
  padding: 15px;
  cursor: pointer;
  margin-top: 22px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(31,158,90,0.28);
}
.whatsapp-btn .icon { width: 18px; height: 18px; }
.whatsapp-btn:hover { background: #18814A; transform: translateY(-1px); box-shadow: 0 14px 28px rgba(31,158,90,0.36); }

/* ── STATS STRIP (dark continuation of hero) ── */
.stats-strip {
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 30px 40px;
}
.stats-inner {
  max-width: 1240px;
  margin: auto;
  display: flex;
  justify-content: space-around;
  gap: 20px;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat .num {
  font-family: 'Fraunces', serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--orange-light);
  line-height: 1;
}
.stat .lbl { font-size: 11.5px; font-weight: 600; letter-spacing: 1.4px; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-top: 8px; }

/* ── OUR BRAND ── */
.brand-section {
  background: var(--ink);
  padding: 120px 40px;
  position: relative;
  overflow: hidden;
}
.brand-glow {
  position: absolute;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(217,89,30,0.20), transparent 70%);
  top: 50%; right: -120px;
  transform: translateY(-50%);
  pointer-events: none;
}
.brand-grid {
  max-width: 1240px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 70px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.brand-section .eyebrow {
  display: block;
  color: var(--orange-light);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.brand-section h2 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(30px, 3.8vw, 46px);
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -0.6px;
}
.brand-section .lead {
  font-size: 16.5px;
  line-height: 1.8;
  color: rgba(255,255,255,0.66);
  max-width: 520px;
  margin-bottom: 24px;
}
.brand-tagline {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-style: italic;
  font-size: 21px;
  color: var(--orange-light);
  margin-bottom: 34px;
}
.brand-visual {
  perspective: 1400px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-plaque-wrap {
  position: relative;
  transform: rotateY(-18deg) rotateX(2deg);
  transform-style: preserve-3d;
}
.brand-plaque {
  position: relative;
  background: var(--white);
  border-radius: 18px;
  width: 320px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 26px 38px 64px rgba(0,0,0,0.50), 0 10px 24px rgba(0,0,0,0.30);
}
.brand-plaque::before {
  content: '';
  position: absolute;
  top: 6px; left: -12px; right: 6px; bottom: -12px;
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  border-radius: 16px;
  z-index: -1;
}
.brand-plaque img { width: 78%; height: 78%; object-fit: contain; }
@media (max-width: 900px) {
  .brand-grid { grid-template-columns: 1fr; }
  .brand-visual { margin-top: 20px; }
  .brand-plaque-wrap { transform: rotateY(-10deg) rotateX(1deg); }
}
@media (max-width: 600px) {
  .brand-section { padding: 70px 20px; }
  .brand-plaque { width: 240px; height: 240px; }
}

/* ── SECTION BASE ── */
section { padding: 96px 40px; }
.section-inner { max-width: 1240px; margin: auto; }
.section-title {
  text-align: center;
  margin-bottom: 60px;
}
.section-title .tag {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  color: var(--orange-deep);
  display: block;
  margin-bottom: 12px;
}
.section-title h2 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: clamp(28px, 3.4vw, 42px);
  color: var(--ink);
  letter-spacing: -0.4px;
}
.section-title .underline {
  width: 50px; height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--gold-line));
  margin: 18px auto 0;
}

/* ── SERVICES ── */
.services { background: var(--paper); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  cursor: default;
  box-shadow: 0 1px 2px rgba(27,20,13,0.03), 0 8px 20px rgba(27,20,13,0.04);
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(217,89,30,0.30);
  box-shadow: 0 1px 2px rgba(27,20,13,0.04), 0 28px 48px rgba(27,20,13,0.12);
}
.service-icon {
  width: 58px; height: 58px;
  display: flex; align-items: center; justify-content: center;
  background: radial-gradient(circle at 30% 25%, var(--orange-soft), #F6DEC4 100%);
  border-radius: 16px;
  margin-bottom: 22px;
  box-shadow: inset 0 0 0 1px rgba(217,89,30,0.12);
}
.service-icon .icon { width: 26px; height: 26px; color: var(--orange-deep); }
.service-card h3 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 12px;
  letter-spacing: -0.1px;
}
.service-card p { font-size: 14.5px; line-height: 1.7; color: var(--slate); }

/* ── PRODUCTS ── */
.products-section { background: var(--white); }
.brands-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 52px;
}
.brand-badge {
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink-soft);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.3px;
  border-radius: 999px;
  padding: 10px 22px;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 2px rgba(27,20,13,0.03), 0 8px 20px rgba(27,20,13,0.04);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(217,89,30,0.30);
  box-shadow: 0 1px 2px rgba(27,20,13,0.04), 0 28px 48px rgba(27,20,13,0.12);
}
.product-icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: radial-gradient(circle at 30% 25%, var(--orange-soft), #F6DEC4 100%);
  border-radius: 14px;
  margin-bottom: 18px;
  box-shadow: inset 0 0 0 1px rgba(217,89,30,0.12);
}
.product-icon .icon { width: 24px; height: 24px; color: var(--orange-deep); }
.product-brand {
      font-size: 14px;
    margin-top: 10px;
	font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--orange-deep);
  margin-bottom: 8px;
}
.product-card h3 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 17px;
  color: var(--ink);
  margin-bottom: 10px;
  letter-spacing: -0.1px;
}
.product-card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--slate);
  margin-bottom: 22px;
  flex-grow: 1;
}
.product-buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--ink);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: 0.2px;
  border-radius: 10px;
  padding: 12px 18px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.product-buy .icon { width: 15px; height: 15px; color: #34C77A; }
.product-buy:hover { background: var(--orange-deep); transform: translateY(-1px); }
.products-note {
  text-align: center;
  font-size: 13.5px;
  color: var(--slate);
  margin-top: 40px;
}

/* ── WHY BUY FROM US ── */
.why-buy-section { background: var(--paper); }
.why-buy-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  margin-bottom: 48px;
}
.why-buy-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 32px 26px;
  text-align: center;
  box-shadow: 0 1px 2px rgba(27,20,13,0.03), 0 8px 20px rgba(27,20,13,0.04);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.why-buy-card:hover {
  transform: translateY(-6px);
  border-color: rgba(217,89,30,0.30);
  box-shadow: 0 1px 2px rgba(27,20,13,0.04), 0 28px 48px rgba(27,20,13,0.12);
}
.why-buy-icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: radial-gradient(circle at 30% 25%, var(--orange-soft), #F6DEC4 100%);
  border-radius: 50%;
  margin: 0 auto 20px;
  box-shadow: inset 0 0 0 1px rgba(217,89,30,0.12);
}
.why-buy-icon .icon { width: 25px; height: 25px; color: var(--orange-deep); }
.why-buy-card h3 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 17px;
  color: var(--ink);
  margin-bottom: 10px;
  letter-spacing: -0.1px;
}
.why-buy-card p { font-size: 14px; line-height: 1.65; color: var(--slate); }
.why-buy-cta { text-align: center; }
@media (max-width: 900px) {
  .why-buy-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .why-buy-grid { grid-template-columns: 1fr; }
}


/* ── WHY CHOOSE US ── */
.why { background: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.why-points { display: flex; flex-direction: column; gap: 24px; }
.why-point { display: flex; gap: 18px; align-items: flex-start; }
.why-point .check {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.why-point .check .icon { width: 15px; height: 15px; color: var(--orange-light); }
.why-point h4 { font-family: 'Fraunces', serif; font-weight: 600; font-size: 16px; color: var(--ink); margin-bottom: 5px; letter-spacing: -0.1px; }
.why-point p { font-size: 14.5px; color: var(--slate); line-height: 1.65; }
.why-visual {
  background: linear-gradient(155deg, var(--ink) 0%, var(--ink-2) 50%, var(--orange-deep) 130%);
  border-radius: 22px;
  padding: 52px 42px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(27,20,13,0.06), 0 30px 60px rgba(27,20,13,0.24);
}
.why-visual::before {
  content: '';
  position: absolute;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(240,131,61,0.35), transparent 70%);
  top: -80px; right: -60px;
  pointer-events: none;
}
.why-visual .big-icon {
  width: 60px; height: 60px;
  display: inline-flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  position: relative;
}
.why-visual .big-icon .icon { width: 28px; height: 28px; color: var(--orange-light); }
.why-visual h3 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 23px;
  color: var(--white);
  margin-bottom: 12px;
  position: relative;
}
.why-visual p { font-size: 14.5px; color: rgba(255,255,255,0.72); line-height: 1.7; position: relative; }
.guarantee-badge {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.30);
  background: rgba(255,255,255,0.06);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 10px 24px;
  margin-top: 24px;
  position: relative;
}

/* ── PROCESS ── */
.process { background: var(--paper); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px; left: 12%;
  width: 76%;
  height: 1px;
  background: var(--line);
}
.step { text-align: center; padding: 0 16px; }
.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--orange);
  color: var(--orange-deep);
  font-family: 'Fraunces', serif;
  font-size: 21px;
  font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
  position: relative;
  z-index: 1;
  box-shadow: 0 1px 2px rgba(27,20,13,0.04), 0 10px 22px rgba(217,89,30,0.16);
}
.step h4 { font-family: 'Fraunces', serif; font-weight: 600; font-size: 15px; color: var(--ink); margin-bottom: 9px; }
.step p { font-size: 13.5px; color: var(--slate); line-height: 1.65; }

/* ── TESTIMONIALS ── */
.testimonials { background: var(--white); }
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 26px; }
.testi-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 32px 30px;
  position: relative;
}
.testi-card::before {
  content: "“";
  position: absolute;
  top: 14px; right: 26px;
  font-family: 'Fraunces', serif;
  font-size: 64px;
  font-weight: 600;
  color: var(--orange-soft);
  line-height: 1;
}
.stars { color: var(--orange); font-size: 15px; margin-bottom: 16px; letter-spacing: 2px; }
.testi-card p { font-size: 14.5px; line-height: 1.8; color: var(--ink-soft); margin-bottom: 22px; }
.testi-author { display: flex; align-items: center; gap: 13px; }
.author-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', serif;
  font-size: 16px;
  color: var(--orange-light);
  font-weight: 600;
}
.author-name { font-weight: 700; font-size: 15px; color: var(--ink); }
.author-loc { font-size: 12px; color: var(--slate); }

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(120deg, var(--ink) 0%, var(--ink-2) 55%, var(--orange-deep) 140%);
  padding: 72px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 85% 15%, rgba(240,131,61,0.30), transparent 55%);
}
.cta-banner h2 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: clamp(26px, 3.6vw, 42px);
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
  letter-spacing: -0.4px;
}
.cta-banner p {
  font-size: 16px;
  color: rgba(255,255,255,0.72);
  margin-bottom: 34px;
  position: relative;
}
.cta-banner .btn-primary {
  position: relative;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 1px 2px rgba(0,0,0,0.1), 0 18px 36px rgba(0,0,0,0.28);
}
.cta-banner .btn-primary .icon { color: var(--orange-deep); }
.cta-banner .btn-primary:hover { background: var(--orange); color: var(--white); }
.cta-banner .btn-primary:hover .icon { color: var(--white); }

/* ── FOOTER (dark anchor) ── */
footer {
  background: var(--footer-bg);
  border-top: 1px solid rgba(217,89,30,0.30);
  padding: 56px 40px 30px;
}
.footer-inner {
  max-width: 1240px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 44px;
}
.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.footer-logo {
  width: 52px; height: 52px;
  object-fit: contain;
  flex-shrink: 0;
}
.footer-brand h3 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 21px;
  color: var(--white);
}
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.50); line-height: 1.8; max-width: 280px; }
.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 12px;
  color: var(--orange-light);
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.58);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--orange-light); }
.footer-bottom {
  max-width: 1240px;
  margin: auto;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p { font-size: 12.5px; color: rgba(255,255,255,0.36); }
.footer-bottom .wa {
  color: #34C77A;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.footer-bottom .wa .icon { width: 15px; height: 15px; }

/* ── FLOATING WHATSAPP ── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #1F9E5A;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 1px 2px rgba(31,158,90,0.3), 0 14px 30px rgba(31,158,90,0.40);
  transition: transform 0.2s, box-shadow 0.2s;
  animation: waPulse 2.8s ease-in-out infinite;
}
.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 1px 2px rgba(31,158,90,0.3), 0 18px 38px rgba(31,158,90,0.5);
  animation: none;
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 1px 2px rgba(31,158,90,0.25), 0 14px 30px rgba(31,158,90,0.36); }
  50%       { box-shadow: 0 1px 2px rgba(31,158,90,0.3), 0 14px 34px rgba(31,158,90,0.50); }
}
@media (max-width: 600px) {
  .wa-float { bottom: 18px; right: 18px; width: 56px; height: 56px; }
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  header nav { display: none; }
  .hero-inner { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-steps::before { display: none; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  section { padding: 64px 20px; }
  header { padding: 0 20px; }
  .hero-inner { padding: 44px 20px; }
  .stats-strip { padding: 24px 20px; }
  .process-steps { grid-template-columns: 1fr; }
  .hero h2 { font-size: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .services-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
.logo-text h1{font-size: 14px;}
.logo-text span {font-size: 5px;}
}

