:root {
  --orange: #ea6a1e;
  --orange-2: #f2801f;
  --orange-dark: #d25a12;
  --peach: #fdecdd;
  --peach-2: #fef5ec;
  --dark: #1f2636;
  --dark-2: #29313f;
  --ink: #1c2333;
  --muted: #6b7280;
  --line: #e8ebf0;
  --bg: #ffffff;
  --bg-soft: #f7f8fa;
  --white: #ffffff;
  --success: #1f9d6b;
  --danger: #d1435b;
  --radius: 12px;
  --radius-lg: 22px;
  --shadow: 0 10px 40px rgba(28,35,51,.07);
  --shadow-lg: 0 26px 64px rgba(28,35,51,.13);
  --grad: linear-gradient(105deg, var(--orange) 0%, var(--orange) 34%, var(--dark) 100%);
  --container: 1200px;
  --font: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { overflow-x: hidden; max-width: 100%; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--ink); background: var(--bg); line-height: 1.65; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 22px; }
.accent { color: var(--orange); }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 14px 30px; border-radius: 8px; font-weight: 700; font-size: 15px; border: 2px solid transparent; cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, background .18s ease; }
.btn-orange { background: var(--orange); color: #fff; }
.head-actions .btn { padding: 12px 20px; white-space: nowrap; }
.btn-orange:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(234,106,30,.4); }
.btn-dark { background: var(--dark); color: #fff; }
.btn-dark:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-ghost { background: transparent; border-color: rgba(255,255,255,.35); color: #fff; }
.btn-ghost:hover { background: rgba(255,255,255,.12); }
.btn .arr { font-size: 13px; }

.topbar { background: var(--dark); color: rgba(255,255,255,.85); font-size: 14px; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; padding: 11px 22px; flex-wrap: wrap; gap: 8px; }
.topbar a:hover { color: var(--orange); }
.topbar .ic { color: var(--orange); margin-right: 7px; }

header.site-head { position: sticky; top: 0; z-index: 60; background: var(--white); box-shadow: 0 2px 18px rgba(28,35,51,.06); }
header.site-head.on-peach { background: transparent; box-shadow: none; }
.site-head .container { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 14px 22px; flex-wrap: nowrap; }
.brand { display: flex; align-items: center; gap: 11px; color: var(--ink); }
.brand svg { flex-shrink: 0; }
.brand .bname { font-weight: 800; font-size: 16.5px; line-height: 1.12; letter-spacing: -.2px; max-width: 150px; }
.nav { display: flex; align-items: center; gap: 0; list-style: none; }
.nav > li { position: relative; }
.nav > li > a { padding: 9px 11px; font-weight: 600; font-size: 15px; white-space: nowrap; border-radius: 8px; display: inline-flex; align-items: center; gap: 6px; color: var(--ink); }
.nav > li > a.active, .nav > li > a:hover { color: var(--orange); }
.caret { font-size: 10px; opacity: .7; }
.dropdown { position: absolute; top: 100%; left: 0; min-width: 290px; background: #fff; border-radius: 14px; box-shadow: var(--shadow-lg); padding: 10px; opacity: 0; visibility: hidden; transform: translateY(10px); transition: all .18s ease; }
.nav > li:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: block; padding: 9px 13px; border-radius: 8px; font-size: 14.5px; color: var(--ink); }
.dropdown a:hover { background: var(--peach-2); color: var(--orange); }
.menu-toggle { display: none; background: none; border: none; font-size: 27px; color: var(--ink); cursor: pointer; }
.head-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

.hero { background: var(--peach); position: relative; }
.hero-inner { text-align: center; padding: 64px 0 40px; }
.hero h1 { font-size: clamp(32px, 5vw, 54px); line-height: 1.12; letter-spacing: -1.2px; color: var(--ink); max-width: 960px; margin: 0 auto 22px; font-weight: 800; }
.hero p.lede { color: #5a6273; font-size: 18px; max-width: 720px; margin: 0 auto; }
.hero-form-wrap { background: var(--peach); padding-bottom: 70px; }
.hero-form { background: #fff; border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow-lg); max-width: 1080px; margin: 0 auto; }
.hero-form h3 { text-align: center; color: var(--ink); font-size: 26px; margin-bottom: 6px; }
.hero-form .sub { text-align: center; color: var(--muted); font-size: 14.5px; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr 150px 1fr; gap: 14px; }
.form-row-2 { margin-top: 14px; }

.field label { display: block; font-size: 13.5px; font-weight: 600; margin-bottom: 6px; color: var(--ink); }
.field input, .field select, .field textarea { width: 100%; padding: 14px 16px; border: 1.5px solid var(--line); border-radius: 9px; font-family: inherit; font-size: 15px; color: var(--ink); background: #fff; transition: border .15s ease; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(234,106,30,.12); }
.hp-field { position: absolute; left: -9999px; opacity: 0; }

.section { padding: 86px 0; }
.section.soft { background: var(--bg-soft); }
.eyebrow { display: inline-block; color: var(--orange); font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; font-size: 13px; margin-bottom: 12px; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 54px; }
.section-head h2 { font-size: clamp(28px, 3.6vw, 42px); color: var(--ink); letter-spacing: -.8px; font-weight: 800; }
.section-head p { color: var(--muted); font-size: 16.5px; margin-top: 12px; }

.about { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: center; }
.about .imgwrap { border-radius: 26px 26px 26px 90px; overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 3/3.9; background: linear-gradient(135deg, #dfe4ec, #f0f2f6); }
.about h2 { font-size: clamp(28px, 3.4vw, 40px); color: var(--ink); letter-spacing: -.8px; margin: 8px 0 16px; font-weight: 800; }
.about p { color: var(--muted); font-size: 16px; margin-bottom: 20px; }
.about .checks { list-style: none; margin-bottom: 26px; }
.about .checks li { display: flex; gap: 11px; align-items: flex-start; padding: 8px 0; font-size: 15.5px; color: var(--ink); }
.about .checks .tri { color: var(--orange); font-weight: 800; }

.stats-band { background: var(--grad); border-radius: var(--radius-lg); padding: 46px 40px; color: #fff; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.stat .num { font-size: 46px; font-weight: 800; line-height: 1; }
.stat .label { font-size: 14.5px; opacity: .9; margin-top: 8px; }
.stats-foot { margin-top: 26px; font-weight: 700; font-size: 15px; }
.stats-foot b { color: #ffd9b8; }

.slider { position: relative; }
.slides { display: flex; gap: 26px; overflow: hidden; scroll-behavior: smooth; }
.slide { flex: 0 0 calc(33.333% - 18px); }
.svc-card { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 34px 28px; height: 100%; transition: transform .2s ease, box-shadow .2s ease; }
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.svc-card .ic { width: 62px; height: 62px; margin-bottom: 20px; color: var(--orange); }
.svc-card h3 { color: var(--ink); font-size: 21px; margin-bottom: 12px; font-weight: 700; }
.svc-card p { color: var(--muted); font-size: 15px; margin-bottom: 16px; }
.svc-card .more { color: var(--orange); font-weight: 700; font-size: 14.5px; }
.dots { display: flex; justify-content: center; gap: 9px; margin-top: 34px; }
.dot { width: 11px; height: 11px; border-radius: 50%; background: #d8dce3; border: none; cursor: pointer; transition: all .2s ease; }
.dot.active { background: var(--orange); width: 30px; border-radius: 999px; }
.slide-nav { position: absolute; top: 42%; width: 44px; height: 44px; border-radius: 50%; border: none; background: #fff; box-shadow: var(--shadow); color: var(--ink); cursor: pointer; font-size: 18px; z-index: 3; }
.slide-nav.prev { left: -18px; } .slide-nav.next { right: -18px; }

.expertise { background: var(--dark); color: #fff; }
.expertise .container { display: grid; grid-template-columns: 1.05fr .95fr; gap: 50px; align-items: center; }
.expertise h2 { font-size: clamp(28px, 3.6vw, 42px); letter-spacing: -.8px; margin: 8px 0 16px; font-weight: 800; }
.expertise p { color: rgba(255,255,255,.72); font-size: 16px; margin-bottom: 30px; }
.rings { display: flex; gap: 26px; margin-bottom: 30px; flex-wrap: wrap; }
.ring { text-align: center; }
.ring .circle { width: 118px; height: 118px; border-radius: 50%; display: grid; place-items: center; margin: 0 auto 12px; background: conic-gradient(var(--orange) var(--p), rgba(255,255,255,.14) 0); }
.ring .circle span { width: 92px; height: 92px; border-radius: 50%; background: var(--dark); display: grid; place-items: center; font-size: 24px; font-weight: 800; }
.ring .cap { font-size: 13px; color: rgba(255,255,255,.72); max-width: 130px; }
.expertise .imgwrap { border-radius: 18px; overflow: hidden; aspect-ratio: 3/3.9; box-shadow: var(--shadow-lg); }

.cta-band { background: var(--grad); color: #fff; text-align: center; border-radius: var(--radius-lg); padding: 62px 30px; }
.cta-band h2 { font-size: clamp(28px, 3.4vw, 40px); margin-bottom: 12px; font-weight: 800; }
.cta-band p { color: rgba(255,255,255,.9); max-width: 640px; margin: 0 auto 28px; }

.pricing { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; align-items: stretch; }
.price-card { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 32px 26px; position: relative; display: flex; flex-direction: column; }
.price-card.featured { border-color: var(--orange); box-shadow: 0 20px 50px rgba(234,106,30,.18); }
.price-card .tier { font-size: 22px; font-weight: 800; color: var(--ink); text-transform: uppercase; }
.price-card .tier small { display: block; color: var(--orange); font-size: 13px; letter-spacing: 1px; margin-top: 2px; }
.price-card .price { font-size: 42px; font-weight: 800; color: var(--ink); margin: 18px 0 6px; }
.price-card .price small { font-size: 12px; font-weight: 700; color: var(--muted); }
.price-card ul { list-style: none; margin: 18px 0 24px; flex: 1; }
.price-card li { padding: 9px 0; font-size: 14.5px; display: flex; gap: 10px; align-items: flex-start; border-bottom: 1px solid var(--line); color: var(--ink); }
.price-card li .tick { color: var(--orange); font-weight: 800; }
.price-card .btn { width: 100%; }
.badge-pop { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--orange); color: #fff; font-size: 12px; font-weight: 700; padding: 5px 16px; border-radius: 999px; }

.testi { text-align: center; max-width: 820px; margin: 0 auto; }
.testi .stars { color: var(--orange); font-size: 20px; letter-spacing: 3px; margin-bottom: 18px; }
.testi .quote { font-size: 19px; line-height: 1.7; color: var(--ink); min-height: 120px; }
.avatars { display: flex; justify-content: center; align-items: center; gap: 16px; margin-top: 30px; }
.avatars .av { width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(135deg, var(--peach), #f5d8bf); display: grid; place-items: center; color: var(--orange-dark); font-weight: 800; cursor: pointer; opacity: .55; transition: all .2s ease; border: 3px solid transparent; }
.avatars .av.active { opacity: 1; transform: scale(1.25); border-color: var(--orange); }
.avatars .av { overflow: hidden; }
.avatars .av img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.testi .who { margin-top: 16px; font-weight: 700; color: var(--ink); }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.step { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 34px 28px; position: relative; }
.step .big { position: absolute; top: 26px; right: 28px; font-size: 40px; font-weight: 800; color: var(--peach); }
.step .ic { width: 52px; height: 52px; color: var(--orange); margin-bottom: 30px; }
.step h3 { color: var(--ink); font-size: 21px; margin-bottom: 10px; font-weight: 700; }
.step p { color: var(--muted); font-size: 15px; }

.faq-list { max-width: 860px; margin: 0 auto; }
.faq-item { background: var(--dark); border-radius: 12px; margin-bottom: 14px; overflow: hidden; }
.faq-q { width: 100%; text-align: left; background: none; border: none; padding: 20px 24px; font-size: 16.5px; font-weight: 600; color: #fff; cursor: pointer; display: flex; justify-content: space-between; gap: 16px; align-items: center; font-family: inherit; }
.faq-q .sign { flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%; background: var(--orange); color: #fff; display: grid; place-items: center; font-size: 20px; transition: transform .2s ease; }
.faq-item.open .faq-q .sign { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease; color: rgba(255,255,255,.75); font-size: 15px; padding: 0 24px; }
.faq-item.open .faq-a { max-height: 320px; padding-bottom: 22px; }

.page-hero { background: var(--peach); padding: 64px 0; }
.page-hero h1 { font-size: clamp(28px, 3.8vw, 44px); letter-spacing: -.8px; color: var(--ink); font-weight: 800; }
.page-hero .crumb { color: var(--orange); font-size: 14px; margin-bottom: 10px; font-weight: 600; }
.svc-body { display: grid; grid-template-columns: 1fr 370px; gap: 46px; }
.svc-body .content h2 { color: var(--ink); margin: 26px 0 12px; font-size: 26px; }
.svc-body .content p { color: var(--muted); margin-bottom: 16px; }
.sidebar-card { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 28px; position: sticky; top: 100px; box-shadow: var(--shadow); }

.alert { padding: 14px 18px; border-radius: 10px; font-size: 14.5px; margin-bottom: 18px; }
.alert-success { background: rgba(31,157,107,.1); color: var(--success); }
.alert-danger { background: rgba(209,67,91,.1); color: var(--danger); }

.modal-overlay { position: fixed; inset: 0; background: rgba(28,35,51,.6); z-index: 90; display: none; align-items: center; justify-content: center; padding: 20px; }
.modal-overlay.show { display: flex; }
.modal { background: #fff; border-radius: 20px; max-width: 460px; width: 100%; padding: 34px; position: relative; box-shadow: var(--shadow-lg); }
.modal .close { position: absolute; top: 16px; right: 18px; background: none; border: none; font-size: 26px; color: var(--muted); cursor: pointer; }
.modal h3 { color: var(--ink); margin-bottom: 6px; }
.modal p { color: var(--muted); font-size: 14px; margin-bottom: 18px; }
.modal .field { margin-bottom: 13px; }

footer.site-foot { background: var(--dark); color: rgba(255,255,255,.72); padding: 66px 0 26px; }
footer.site-foot .cols { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 34px; }
footer.site-foot h4 { color: #fff; font-size: 16px; margin-bottom: 18px; }
footer.site-foot a { display: block; padding: 6px 0; font-size: 14.5px; }
footer.site-foot a:hover { color: var(--orange); }
footer.site-foot .brand { color: #fff; margin-bottom: 16px; }
footer.site-foot .contact-li { display: flex; gap: 10px; font-size: 14px; padding: 5px 0; }
footer.site-foot .contact-li .ic { color: var(--orange); }
.socials { display: flex; gap: 10px; margin-top: 16px; }
.socials a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2); display: grid; place-items: center; }
.socials a:hover { background: var(--orange); border-color: var(--orange); }
.foot-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 42px; padding-top: 22px; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: 13.5px; }

.to-top { position: fixed; left: 22px; bottom: 22px; width: 46px; height: 46px; border-radius: 50%; background: var(--dark); color: #fff; border: none; display: grid; place-items: center; cursor: pointer; z-index: 50; font-size: 20px; box-shadow: var(--shadow); }

@media (max-width: 1000px) {
  .about, .expertise .container { grid-template-columns: 1fr; }
  .svc-body { grid-template-columns: 1fr; gap: 34px; }
  .sidebar-card { position: static; top: auto; }
  .form-row { grid-template-columns: 1fr 1fr; }
  .stats-grid, .pricing { grid-template-columns: repeat(2, 1fr); }
  .slide { flex: 0 0 calc(50% - 13px); }
  .steps { grid-template-columns: 1fr; }
  .slide-nav { display: none; }
  .section { padding: 64px 0; }
  .nav { position: fixed; top: 0; right: 0; height: 100vh; width: 300px; background: #fff; flex-direction: column; align-items: stretch; padding: 80px 20px 20px; box-shadow: var(--shadow-lg); transform: translateX(100%); transition: transform .25s ease; z-index: 70; overflow-y: auto; }
  .nav.open { transform: translateX(0); }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; padding-left: 12px; }
  .menu-toggle { display: block; }
}
@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; }
  .stats-grid, .pricing { grid-template-columns: 1fr; }
  .slide { flex: 0 0 100%; }
  footer.site-foot .cols { grid-template-columns: 1fr 1fr; }
  .container { padding: 0 16px; }
  .section { padding: 48px 0; }
  .page-hero { padding: 44px 0; }
  .hero-form { padding: 20px; }
  .head-actions .btn { padding: 10px 14px; font-size: 14px; }
  .head-actions .arr { display: none; }
  .modal { padding: 26px 22px; }
}
@media (max-width: 380px) {
  .brand .bname { font-size: 15px; max-width: 124px; }
  footer.site-foot .cols { grid-template-columns: 1fr; }
}

.imgwrap img { width: 100%; height: 100%; object-fit: cover; object-position: center 28%; display: block; }
.legal-content h2 { font-size: 21px; color: var(--ink); margin: 28px 0 10px; font-weight: 800; }
.legal-content p { color: var(--muted); font-size: 15.5px; line-height: 1.75; margin-bottom: 12px; }
