@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Outfit:wght@500;600;700;800&display=swap');

:root {
  --orange: #e5681d;
  --orange-dark: #b9470c;
  --orange-soft: #fff0e5;
  --gold: #f4b844;
  --navy: #10274d;
  --blue: #2f82bd;
  --ink: #1d2736;
  --muted: #647085;
  --paper: #fffaf5;
  --white: #ffffff;
  --line: #ead9ca;
  --shadow-sm: 0 8px 24px rgba(37, 28, 20, 0.07);
  --shadow: 0 18px 48px rgba(29, 39, 54, 0.13);
  --radius: 20px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
.container { width: min(1120px, calc(100% - 30px)); margin-inline: auto; }
.section { padding: 52px 0; }
.section.soft { background: var(--white); }
.eyebrow {
  color: var(--orange-dark);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.section-head { max-width: 680px; margin-bottom: 25px; }
.section-head h2 {
  margin: 8px 0 11px;
  color: var(--navy);
  font: 800 clamp(1.75rem, 7vw, 2.8rem)/1.08 'Outfit', sans-serif;
  letter-spacing: -0.025em;
}
.section-head p { margin: 0; color: var(--muted); }

.topbar { background: var(--navy); color: var(--white); font-size: 0.78rem; }
.topbar .container { display: flex; justify-content: space-between; gap: 12px; padding: 7px 0; }
.topbar span { display: inline-flex; align-items: center; gap: 6px; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 250, 245, 0.96);
  border-bottom: 1px solid rgba(229, 104, 29, 0.14);
  backdrop-filter: blur(14px);
}
.nav-wrap { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand img { width: 104px; height: 72px; object-fit: contain; }
.nav-toggle {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border: 0;
  border-radius: 12px;
  background: var(--navy);
  color: var(--white);
  cursor: pointer;
}
.nav-links {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 15px;
  left: 15px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.nav-links.open { display: grid; }
.nav-links a { padding: 11px 13px; border-radius: 10px; color: var(--navy); font-weight: 700; }
.nav-links a:hover, .nav-links a.active { background: var(--orange-soft); color: var(--orange-dark); }

.hero {
  position: relative;
  overflow: hidden;
  padding: 54px 0 58px;
  background:
    radial-gradient(circle at 90% 10%, rgba(47, 130, 189, 0.13), transparent 30%),
    linear-gradient(135deg, #fff7ef 0%, #ffffff 62%, #eef7fc 100%);
}
.hero::before {
  position: absolute;
  top: -90px;
  left: -95px;
  width: 220px;
  height: 220px;
  border: 38px solid rgba(229, 104, 29, 0.08);
  border-radius: 50%;
  content: '';
}
.hero-grid { position: relative; z-index: 1; display: grid; gap: 34px; }
.hero-copy h1 {
  margin: 11px 0 17px;
  color: var(--navy);
  font: 800 clamp(2.45rem, 12vw, 4.8rem)/0.98 'Outfit', sans-serif;
  letter-spacing: -0.045em;
}
.hero-copy h1 span { color: var(--orange); }
.hero-copy > p { max-width: 620px; margin: 0; color: #4f5d70; font-size: 1rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 24px; }
.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 17px;
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(229, 104, 29, 0.22); }
.btn-primary { background: var(--orange); color: var(--white); }
.btn-primary:hover { background: var(--orange-dark); }
.btn-outline { border: 1px solid var(--line); background: var(--white); color: var(--navy); }
.btn-navy { background: var(--navy); color: var(--white); }
.wa-icon { width: 19px; height: 19px; flex: 0 0 auto; }
.btn .wa-icon, .contact-row > .wa-icon { padding: 2px; border-radius: 50%; background: #25d366; }
.hero-card {
  overflow: hidden;
  border: 1px solid rgba(16, 39, 77, 0.11);
  border-radius: 25px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.hero-card-media { position: relative; min-height: 265px; background: #edf3f5; }
.hero-card-media img { width: 100%; height: 300px; object-fit: cover; }
.hero-card-chip {
  position: absolute;
  top: 15px;
  left: 15px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--navy);
  box-shadow: var(--shadow-sm);
  font-size: 0.78rem;
  font-weight: 800;
}
.hero-card-chip::before { width: 8px; height: 8px; border-radius: 50%; background: #21a866; content: ''; }
.hero-card-body { display: grid; gap: 12px; padding: 18px; }
.hero-card-title { display: flex; gap: 12px; align-items: center; }
.hero-card-title .icon-wrap { margin: 0; }
.hero-card-title strong { display: block; color: var(--navy); font: 700 1.05rem 'Outfit', sans-serif; }
.hero-card-title span { display: block; color: var(--muted); font-size: 0.82rem; }
.hero-contact { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.hero-contact a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 10px;
  border-radius: 10px;
  background: var(--orange-soft);
  color: var(--orange-dark);
  font-size: 0.84rem;
  font-weight: 800;
}
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 24px; }
.stat {
  min-height: 92px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.stat strong { display: block; margin-bottom: 2px; color: var(--orange-dark); font: 800 1.5rem 'Outfit', sans-serif; }
.stat span { display: block; color: #4e5b6d; font-size: 0.82rem; font-weight: 600; line-height: 1.35; }

.cards { display: grid; gap: 14px; }
.card {
  padding: 21px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.icon-wrap {
  display: grid;
  width: 47px;
  height: 47px;
  margin-bottom: 14px;
  place-items: center;
  border-radius: 14px;
  background: var(--orange-soft);
  color: var(--orange-dark);
}
.card h3 { margin: 0 0 7px; color: var(--navy); font: 700 1.14rem 'Outfit', sans-serif; }
.card p { margin: 0; color: var(--muted); font-size: 0.91rem; }
.split { display: grid; gap: 29px; align-items: center; }
.split-img img { width: 100%; height: 285px; object-fit: cover; border-radius: 22px; box-shadow: var(--shadow); }
.checklist { display: grid; gap: 11px; margin: 19px 0 22px; padding: 0; list-style: none; }
.checklist li { display: flex; align-items: flex-start; gap: 10px; }
.checklist svg { flex: 0 0 auto; margin-top: 3px; color: var(--orange); }
.why-grid { display: grid; gap: 13px; }
.why-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: var(--white);
}
.why-card .icon-wrap { flex: 0 0 auto; margin: 0; }
.why-card h3 { margin: 1px 0 5px; color: var(--navy); font: 700 1.04rem 'Outfit', sans-serif; }
.why-card p { margin: 0; color: var(--muted); font-size: 0.87rem; }
.band { padding: 52px 0; background: var(--navy); color: var(--white); }
.band .section-head h2 { color: var(--white); }
.band .section-head p { color: #d3dce9; }
.area-grid { display: grid; gap: 12px; }
.area-card { padding: 19px; border-radius: 17px; background: var(--white); color: var(--ink); }
.area-card svg { color: var(--blue); }
.area-card h3 { margin: 8px 0 4px; color: var(--navy); }
.area-card p { margin: 0; color: var(--muted); font-size: 0.87rem; }
.testimonials { display: grid; gap: 14px; }
.review-card {
  position: relative;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.review-stars { display: flex; gap: 3px; margin-bottom: 12px; color: #ef9f0b; }
.review-stars svg { width: 17px; height: 17px; fill: currentColor; }
.review-card blockquote { margin: 0 0 17px; color: #4b586b; font-size: 0.93rem; }
.reviewer { display: flex; align-items: center; gap: 10px; }
.reviewer .reviewer-avatar {
  display: flex;
  flex: 0 0 39px;
  width: 39px;
  height: 39px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 50%;
  background: var(--navy);
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1;
  text-align: center;
}
.reviewer strong { display: block; color: var(--navy); }
.reviewer span { display: block; color: var(--muted); font-size: 0.76rem; }
.faq-list { display: grid; gap: 10px; }
.faq-list details { border: 1px solid var(--line); border-radius: 14px; background: var(--white); }
.faq-list summary { padding: 16px 18px; color: var(--navy); cursor: pointer; font-weight: 800; }
.faq-list p { margin: 0; padding: 0 18px 17px; color: var(--muted); font-size: 0.9rem; }
.cta {
  display: grid;
  gap: 18px;
  align-items: center;
  padding: 28px 22px;
  border-radius: 24px;
  background: linear-gradient(120deg, var(--orange-dark), var(--orange) 62%, #ef8b32);
  color: var(--white);
  box-shadow: 0 16px 38px rgba(185, 71, 12, 0.22);
}
.cta h2 { margin: 0; font: 800 clamp(1.65rem, 7vw, 2.45rem)/1.08 'Outfit', sans-serif; }
.cta p { margin: 7px 0 0; color: #fff4e9; }
.cta .btn { justify-self: start; background: var(--white); color: var(--navy); }

.page-hero {
  padding: 44px 0;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(120deg, #fff3e7, #f0f8fd);
}
.page-hero h1 { margin: 8px 0 9px; color: var(--navy); font: 800 clamp(2.1rem, 9vw, 3.65rem)/1 'Outfit', sans-serif; }
.page-hero p { max-width: 680px; margin: 0; color: var(--muted); }
.size-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.size-card { padding: 18px; border: 1px solid var(--line); border-radius: 16px; background: var(--white); text-align: center; }
.size-card strong { display: block; color: var(--orange-dark); font: 800 1.55rem 'Outfit', sans-serif; }
.size-card span { color: var(--muted); font-size: 0.8rem; }
.table-wrap { overflow-x: auto; border-radius: 17px; box-shadow: var(--shadow); }
.pricing-table { width: 100%; min-width: 420px; border-collapse: collapse; background: var(--white); }
.pricing-table th, .pricing-table td { padding: 13px 15px; border-bottom: 1px solid var(--line); text-align: left; }
.pricing-table th { background: var(--navy); color: var(--white); }
.pricing-table tr:last-child td { border-bottom: 0; }
.pricing-table td:last-child { color: var(--orange-dark); font-weight: 800; }
.note { margin-top: 14px; padding: 15px; border-left: 4px solid var(--orange); border-radius: 8px; background: var(--orange-soft); color: #68411f; }
.contact-grid { display: grid; gap: 24px; }
.contact-list { display: grid; gap: 10px; margin-top: 20px; }
.contact-row { display: flex; gap: 12px; align-items: flex-start; padding: 14px; border: 1px solid var(--line); border-radius: 14px; background: var(--white); }
.contact-row > svg { flex: 0 0 auto; margin-top: 3px; color: var(--orange); }
.contact-row strong { display: block; color: var(--navy); font-size: 0.82rem; }
.contact-row span { display: block; color: var(--muted); font-size: 0.88rem; overflow-wrap: anywhere; }
.form { display: grid; gap: 12px; padding: 21px; border: 1px solid var(--line); border-radius: 20px; background: var(--white); box-shadow: var(--shadow-sm); }
.form h2 { margin: 0; color: var(--navy); font: 700 1.4rem 'Outfit', sans-serif; }
.form > p { margin: -3px 0 2px; color: var(--muted); font-size: 0.86rem; }
.form label { display: block; margin-bottom: 4px; color: var(--navy); font-size: 0.81rem; font-weight: 800; }
.form input, .form textarea, .form select { width: 100%; padding: 11px 12px; border: 1px solid #dcd1c8; border-radius: 10px; background: #fffcfa; color: var(--ink); }
.form textarea { min-height: 108px; resize: vertical; }
.map { width: 100%; min-height: 320px; border: 0; border-radius: 20px; box-shadow: var(--shadow); }

.site-footer { padding: 42px 0 0; background: #0e1f39; color: #d3dce9; }
.footer-grid { display: grid; gap: 25px; padding-bottom: 31px; }
.site-footer .brand {
  width: fit-content;
  padding: 10px 14px;
  border-radius: 12px;
  background: var(--white);
}
.site-footer .brand img { width: 168px; height: auto; max-height: 140px; object-fit: contain; }
.site-footer h3 { margin: 0 0 12px; color: var(--white); font: 700 1rem 'Outfit', sans-serif; }
.site-footer p { margin: 9px 0 0; color: #b9c5d5; font-size: 0.87rem; }
.footer-links { display: grid; gap: 8px; font-size: 0.88rem; }
.footer-links a, .footer-contact-row { color: #d3dce9; overflow-wrap: anywhere; }
.footer-links a:hover { color: var(--gold); }
.footer-contact-row { display: flex; gap: 9px; align-items: flex-start; }
.footer-contact-row svg { flex: 0 0 auto; width: 16px; margin-top: 3px; color: var(--gold); }
.footer-bottom { padding: 15px 0; border-top: 1px solid rgba(255, 255, 255, 0.12); color: #9cacc1; font-size: 0.76rem; text-align: center; }
.float-wa {
  position: fixed;
  right: 15px;
  bottom: 16px;
  z-index: 60;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 3px solid var(--white);
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 10px 28px rgba(20, 145, 69, 0.38);
  animation: pulse 2.5s infinite;
}
.float-wa img { width: 28px; height: 28px; }
.float-wa .wa-icon, .float-wa img { padding: 0; background: transparent; }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: none; }

@keyframes pulse {
  0%, 100% { box-shadow: 0 10px 24px rgba(20, 145, 69, 0.35); }
  50% { box-shadow: 0 10px 34px rgba(20, 145, 69, 0.62); }
}

@media (min-width: 700px) {
  .container { width: min(1120px, calc(100% - 64px)); }
  .section { padding: 68px 0; }
  .nav-wrap { min-height: 88px; }
  .brand img { width: 126px; height: 82px; }
  .nav-toggle { display: none; }
  .nav-links { position: static; display: flex; align-items: center; padding: 0; border: 0; background: transparent; box-shadow: none; }
  .nav-links a { padding: 9px 11px; font-size: 0.87rem; }
  .hero { padding: 72px 0; }
  .hero-grid { grid-template-columns: 1.02fr 0.98fr; align-items: center; }
  .hero-card-media img { height: 340px; }
  .stats { grid-template-columns: repeat(4, 1fr); }
  .cards { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr 1fr; }
  .split-img img { height: 350px; }
  .area-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonials { grid-template-columns: repeat(3, 1fr); }
  .cta { grid-template-columns: 1fr auto; padding: 34px; }
  .cta .btn { justify-self: end; }
  .page-hero { padding: 55px 0; }
  .contact-grid { grid-template-columns: 0.9fr 1.1fr; }
  .footer-grid { grid-template-columns: 1.15fr 0.65fr 1.2fr; }
}

@media (min-width: 980px) {
  .nav-links { gap: 4px; }
  .nav-links a { padding-inline: 15px; }
  .hero-copy h1 { font-size: 4.9rem; }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 430px) {
  .topbar .container { font-size: 0.73rem; }
  .hero-actions .btn { flex: 1 1 145px; }
  .hero-contact { grid-template-columns: 1fr; }
  .stat { min-height: 87px; padding: 13px; }
  .cta .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
