@font-face { font-family: 'Poppins'; src: url('fonts/Poppins-Regular.ttf') format('truetype'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'Poppins'; src: url('fonts/Poppins-Medium.ttf') format('truetype'); font-weight: 500; font-display: swap; }
@font-face { font-family: 'Poppins'; src: url('fonts/Poppins-Bold.ttf') format('truetype'); font-weight: 700; font-display: swap; }
@font-face { font-family: 'Instrument Sans'; src: url('fonts/InstrumentSans-Regular.ttf') format('truetype'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'Instrument Sans'; src: url('fonts/InstrumentSans-Bold.ttf') format('truetype'); font-weight: 700; font-display: swap; }

:root {
  --orange: #EB6D07;
  --orange-dark: #B94500;
  --orange-deep: #7A2E00;
  --orange-light: #FF9A4D;
  --violet: #6B3FC7;
  --cream: #FFF8F0;
  --white: #FFFFFF;
  --ink: #241A10;
  --muted: #7A6C5D;
  --line: #F0E1CF;
  --radius-lg: 28px;
  --radius-md: 18px;
  --wrap: 1180px;
}

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

html { scroll-behavior: smooth; }

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

img { max-width: 100%; display: block; }

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 32px;
}

h1, h2, h3 { font-family: 'Poppins', Arial, sans-serif; font-weight: 700; }

/* ---------------- header ---------------- */
header.site {
  position: relative;
  z-index: 10;
  padding: 26px 0;
}
header.site .wrap { display: flex; align-items: center; justify-content: space-between; }
.logo-mark { height: 34px; }
.btn {
  display: inline-flex;
  align-items: center;
  font-family: 'Poppins', Arial, sans-serif;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  padding: 13px 24px;
  border-radius: 999px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn svg { flex-shrink: 0; margin-right: 9px; }

.btn-primary {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(36,26,16,0.18);
}
.btn-primary:hover { box-shadow: 0 10px 24px rgba(36,26,16,0.24); }

.btn-onhero {
  background: var(--white);
  color: var(--orange-dark);
  box-shadow: 0 10px 30px rgba(122,46,0,0.22);
  font-size: 16.5px;
  padding: 16px 30px;
}

.btn-onhero:hover { box-shadow: 0 14px 36px rgba(122,46,0,0.28); }

.btn-onbar {
  background: var(--white);
  color: var(--orange-dark);
  box-shadow: 0 10px 26px rgba(0,0,0,0.18);
  font-size: 16.5px;
  padding: 16px 30px;
}

/* ---------------- hero ---------------- */
.hero {
  position: relative;
  border-radius: 0 0 40px 40px;
  overflow: hidden;
  padding-bottom: 86px;
  background: radial-gradient(120% 140% at 12% -10%, #FFB066 0%, var(--orange) 38%, var(--orange-dark) 72%, var(--orange-deep) 100%);
}

.hero-decor { position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: 0; pointer-events: none; }
.blob-violet {
  position: absolute; width: 420px; height: 420px; border-radius: 50%;
  background: var(--violet);
  opacity: 0.3;
  top: -160px; right: -120px;
}
.dots {
  position: absolute;
  width: 170px; height: 170px;
  bottom: 20px; left: 20px;
  background-image: radial-gradient(rgba(255,255,255,0.35) 2.5px, transparent 2.5px);
  background-size: 20px 20px;
  opacity: 0.5;
}
.wave-line {
  position: absolute;
  right: -60px;
  top: 120px;
  width: 420px;
  opacity: 0.5;
}

.hero-inner { position: relative; z-index: 2; padding-top: 64px; text-align: center; }
.eyebrow {
  display: inline-block;
  font-family: 'Poppins', Arial, sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.4);
  padding: 9px 20px;
  border-radius: 999px;
}
.hero h1 {
  color: var(--white);
  font-size: 58px;
  line-height: 1.12;
  letter-spacing: -1px;
  max-width: 820px;
  margin: 26px auto 0 auto;
}
.hero .sub {
  max-width: 620px;
  margin: 26px auto 0 auto;
  color: #FFEFE0;
  font-size: 19px;
  line-height: 1.6;
}
.hero .sub b { color: var(--white); font-weight: 700; }

.hero-cta { margin-top: 38px; }

.stat-row {
  margin-top: 54px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.stat { text-align: center; margin: 0 32px; }
.stat .n {
  font-family: 'Poppins', Arial, sans-serif;
  font-weight: 700;
  font-size: 34px;
  color: var(--white);
  letter-spacing: -0.5px;
}
.stat .l {
  font-size: 13.5px;
  color: #FFE3C9;
  margin-top: 4px;
  letter-spacing: 0.3px;
}

/* ---------------- services ---------------- */
.services { padding: 90px 0 20px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 52px auto; }
.section-head .eyebrow-dark {
  font-family: 'Poppins', Arial, sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--orange-dark);
}
.section-head h2 {
  font-size: 34px;
  margin-top: 14px;
  letter-spacing: -0.5px;
}
.section-head p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 16.5px;
  line-height: 1.6;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -11px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  width: calc(25% - 22px);
  margin: 0 11px 22px 11px;
  box-sizing: border-box;
}
@media (max-width: 980px) { .service-card { width: calc(50% - 22px); } }
@media (max-width: 640px) { .service-card { width: calc(100% - 22px); } }
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(122,46,0,0.1);
}
.service-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: #FFF1E2;
  display: flex; align-items: center; justify-content: center;
}
.service-card h3 {
  font-size: 18.5px;
  margin-top: 18px;
  letter-spacing: -0.2px;
}
.service-card p {
  font-size: 14.5px;
  color: var(--muted);
  margin-top: 8px;
  line-height: 1.55;
}

/* ---------------- bottom cta ---------------- */
.cta-bar {
  margin: 96px 0 0 0;
  background: linear-gradient(120deg, var(--orange-dark) 0%, var(--orange) 55%, var(--orange-light) 100%);
  border-radius: var(--radius-lg);
}
.cta-bar .wrap {
  padding: 56px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.cta-bar .wrap > * { margin: 10px 0; }
.cta-bar h2 {
  color: var(--white);
  font-size: 30px;
  letter-spacing: -0.5px;
  max-width: 460px;
}
.cta-bar .phone {
  color: #FFE3C9;
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 14.5px;
  margin-top: 10px;
}

/* ---------------- footer ---------------- */
footer.site {
  padding: 48px 0 42px 0;
}
footer.site .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.foot-logo { height: 24px; opacity: 0.85; }
.foot-copy {
  font-size: 13px;
  color: var(--muted);
}

/* ---------------- whatsapp fab (mobile) ---------------- */
.wa-fab {
  display: none;
  position: fixed;
  right: 20px; bottom: 20px;
  z-index: 50;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  align-items: center; justify-content: center;
  box-shadow: 0 10px 26px rgba(0,0,0,0.28);
}

/* ---------------- responsive ---------------- */
@media (max-width: 980px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: 42px; }
  .stat { margin: 0 20px; }
}

@media (max-width: 640px) {
  .wrap { padding: 0 20px; }
  header.site .btn-primary span.long { display: none; }
  .hero { border-radius: 0 0 28px 28px; padding-bottom: 60px; }
  .hero-inner { padding-top: 40px; }
  .hero h1 { font-size: 32px; margin-top: 20px; }
  .hero .sub { font-size: 16.5px; }
  .stat-row { margin-top: 40px; }
  .stat { margin: 0 14px; }
  .stat .n { font-size: 26px; }
  .service-grid { grid-template-columns: 1fr; }
  .services { padding: 60px 0 10px 0; }
  .section-head h2 { font-size: 26px; }
  .cta-bar { margin-top: 60px; }
  .cta-bar .wrap { padding: 40px 28px; flex-direction: column; text-align: center; }
  .cta-bar h2 { font-size: 24px; max-width: none; }
  .wa-fab { display: flex; }
}
