:root {
  --primary: #ff6b81;
  --primary-dark: #f14f68;
  --dark: #081828;
  --body: #6f7782;
  --light: #f9f9f9;
  --border: #eeeeee;
  --white: #ffffff;
  --shadow: 0 3px 5px rgba(0, 0, 0, 0.09);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Inter", sans-serif;
  color: var(--body);
  font-size: 16px;
  line-height: 25px;
  overflow-x: hidden;
  background: var(--white);
}
a { color: inherit; text-decoration: none; transition: all .4s ease; }
ul { list-style: none; }
h1, h2, h3, h4 { color: var(--dark); margin: 0; font-weight: 700; }
p { margin: 0; }
.container { width: min(1140px, calc(100% - 30px)); margin: 0 auto; }
.section { padding: 100px 0; }

.site-header {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  z-index: 20;
  padding: 24px 0;
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--white); font-size: 22px; font-weight: 800; letter-spacing: -0.03em; }
.brand-icon { width: 34px; height: 34px; display: grid; place-items: center; background: var(--white); color: var(--primary); border-radius: 8px; font-weight: 900; box-shadow: 0 4px 6px rgba(0,0,0,.16); }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a { color: var(--white); font-size: 15.5px; font-weight: 700; opacity: .95; }
.nav-links a:hover { opacity: .75; }
.nav-button {
  background: var(--white);
  color: var(--primary);
  padding: 13px 25px;
  border-radius: 6px;
  font-weight: 700;
  box-shadow: 0 4px 6px rgba(0,0,0,.12);
}
.nav-button:hover { background: var(--dark); color: var(--white); }

.hero-area {
  position: relative;
  padding: 180px 0 120px;
  background: var(--primary);
  overflow: hidden;
}
.hero-area::before, .hero-area::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(255,255,255,.09);
}
.hero-area::before { width: 420px; height: 420px; right: -160px; top: 90px; }
.hero-area::after { width: 260px; height: 260px; left: -100px; bottom: -80px; }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 510px; align-items: center; gap: 60px; }
.hero-content h1 { font-size: 44px; font-weight: 800; line-height: 56px; color: var(--white); text-shadow: 0 3px 8px rgba(0,0,0,.09); text-transform: capitalize; }
.hero-content p { margin-top: 30px; color: var(--white); max-width: 560px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 40px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 0 30px; border-radius: 6px; font-weight: 700; font-size: 14px; border: 0; cursor: pointer; transition: all .4s ease; }
.btn-light { background: var(--white); color: var(--primary); }
.btn-light:hover { background: var(--dark); color: var(--white); transform: translateY(-2px); }
.btn-soft { background: rgba(255,255,255,.42); color: var(--white); }
.btn-soft:hover { background: var(--white); color: var(--primary); transform: translateY(-2px); }
.btn-dark { background: var(--dark); color: var(--white); width: 100%; }
.btn-dark:hover { background: var(--primary); color: var(--white); }

.hero-visual { position: relative; min-height: 520px; }
.phone {
  position: absolute;
  width: 286px;
  min-height: 515px;
  border-radius: 34px;
  background: var(--white);
  padding: 28px 22px;
  box-shadow: 0 35px 80px rgba(8,24,40,.34);
  border: 10px solid #fff;
}
.phone-front { right: 80px; top: 0; z-index: 2; }
.phone-back { right: 225px; top: 72px; opacity: .55; transform: rotate(-10deg); min-height: 430px; background: #ffe7eb; }
.phone-top { width: 74px; height: 7px; background: #ececec; border-radius: 99px; margin: 0 auto 28px; }
.score-badge { width: 88px; height: 88px; border-radius: 50%; display: grid; place-items: center; margin: 10px auto 24px; background: var(--primary); color: #fff; font-size: 28px; font-weight: 800; box-shadow: 0 8px 20px rgba(255,107,129,.35); }
.phone h2 { text-align: center; font-size: 22px; margin-bottom: 12px; }
.screen-copy { text-align: center; font-size: 14px; line-height: 24px; color: #66707a; margin-bottom: 22px; }
.check-row { display: flex; align-items: center; gap: 12px; padding: 13px 0; border-top: 1px solid #f0f0f0; color: var(--dark); font-weight: 600; font-size: 14px; }
.check-row b { color: var(--primary); }
.map-card { margin-top: 18px; padding: 16px; border-radius: 12px; background: #f9f9f9; display: flex; align-items: center; gap: 12px; color: var(--dark); font-size: 14px; }
.map-card span { width: 44px; height: 44px; border-radius: 9px; background: linear-gradient(135deg, #ff6b81, #ffc0ca); }
.mini-card { height: 120px; border-radius: 18px; background: rgba(255,255,255,.7); margin-top: 45px; }
.mini-lines span { display: block; height: 12px; background: rgba(255,255,255,.72); border-radius: 99px; margin-top: 14px; }
.mini-lines span:nth-child(2) { width: 75%; }
.mini-lines span:nth-child(3) { width: 58%; }

.section-title { text-align: center; max-width: 680px; margin: 0 auto 50px; }
.section-title span, .split-copy span { color: var(--primary); font-weight: 700; text-transform: uppercase; font-size: 15px; margin-bottom: 8px; }
.section-title h2 { font-size: 34px; line-height: 42px; font-weight: 800; margin-bottom: 20px; }
.section-title p { max-width: 560px; margin: 0 auto; }
.features, .pricing { background: var(--light); }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.feature-card { background: var(--white); border: 1px solid var(--border); border-radius: 6px; padding: 35px; text-align: left; transition: all .5s cubic-bezier(.68,-.55,.27,1.55); }
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.feature-card i { width: 60px; height: 60px; display: grid; place-items: center; background: var(--primary); color: var(--white); border-radius: 7px; font-style: normal; font-size: 25px; font-weight: 900; box-shadow: 0 4px 6px rgba(0,0,0,.16); margin-bottom: 30px; }
.feature-card h3 { font-size: 19px; font-weight: 700; margin-bottom: 18px; }
.feature-card p { line-height: 24px; }

.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.split-grid.reverse { grid-template-columns: .95fr 1.05fr; }
.mock-panel { background: var(--white); border: 1px solid var(--border); border-radius: 10px; padding: 30px; min-height: 360px; box-shadow: 0 12px 35px rgba(8,24,40,.08); }
.browser-bar { display: flex; gap: 8px; margin-bottom: 28px; }
.browser-bar span { width: 13px; height: 13px; border-radius: 50%; background: var(--primary); opacity: .75; }
.browser-bar span:nth-child(2) { opacity: .45; }
.browser-bar span:nth-child(3) { opacity: .25; }
.audit-list { display: grid; gap: 16px; }
.audit-list div { padding: 18px; border-radius: 8px; border: 1px solid var(--border); background: #fcfcfc; }
.audit-list b { display: block; color: var(--dark); margin-bottom: 4px; }
.audit-list em { font-style: normal; color: var(--body); }
.split-copy h2 { font-size: 34px; line-height: 43px; font-weight: 800; margin: 8px 0 24px; }
.split-copy p { margin-bottom: 28px; }
.inline-link { color: var(--primary); font-weight: 800; }
.split-alt { background: #fff; padding-top: 0; }
.publish-panel { background: linear-gradient(135deg, #fff, #fff5f7); }
.publish-score { display: flex; align-items: center; justify-content: space-between; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.publish-score strong { color: var(--primary); font-size: 42px; }
.publish-score span { color: var(--dark); font-weight: 700; }
.publish-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin: 28px 0; }
.publish-grid span { min-height: 82px; border-radius: 9px; background: #fff; border: 1px solid var(--border); box-shadow: 0 3px 5px rgba(0,0,0,.04); }
.publish-panel button { width: 100%; min-height: 52px; border: 0; border-radius: 6px; background: var(--primary); color: white; font-weight: 800; }

.achievement { background: var(--primary); text-align: center; padding: 130px 0; }
.achievement h2 { color: #fff; font-size: 35px; line-height: 45px; margin-bottom: 10px; }
.achievement p { color: #fff; }
.achievement-title { max-width: 740px; margin: 0 auto; }
.stats-grid { margin-top: 50px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.stats-grid h3 { color: #fff; font-size: 35px; font-weight: 800; margin-bottom: 5px; }
.stats-grid p { font-weight: 700; text-transform: capitalize; }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.price-card { background: var(--white); border: 1px solid var(--border); border-radius: 10px; transition: all .5s cubic-bezier(.68,-.55,.27,1.55); overflow: hidden; }
.price-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.price-card.featured { border-color: rgba(255,107,129,.35); box-shadow: 0 12px 30px rgba(255,107,129,.11); }
.price-head { padding: 25px; border-bottom: 1px solid var(--border); }
.price-head h3 { font-size: 17px; font-weight: 700; margin-bottom: 20px; }
.price-head p { font-size: 14px; line-height: 24px; }
.price-head strong { display: block; color: var(--dark); font-size: 30px; line-height: 1; padding: 30px 0; }
.price-head strong span { font-size: 14px; color: var(--body); font-weight: 400; margin-left: 3px; }
.price-body { padding: 25px; }
.price-body h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; margin-bottom: 25px; }
.price-body li { position: relative; padding-left: 25px; font-size: 15px; margin-bottom: 13px; }
.price-body li::before { content: "✓"; position: absolute; left: 0; color: var(--primary); font-weight: 900; }

.install-cta { background: var(--primary); padding: 95px 0; text-align: center; }
.cta-box { max-width: 760px; }
.install-cta h2 { color: #fff; font-size: 35px; line-height: 45px; margin-bottom: 18px; }
.install-cta p { color: #fff; margin-bottom: 30px; }

.faq-list { max-width: 850px; margin: 0 auto; display: grid; gap: 14px; }
details { background: var(--white); border: 1px solid var(--border); border-radius: 8px; overflow: hidden; }
summary { list-style: none; cursor: pointer; padding: 20px 24px; color: var(--dark); font-size: 17px; font-weight: 700; position: relative; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 24px; color: var(--primary); font-size: 28px; top: 18px; }
details[open] summary::after { content: "–"; }
details p { padding: 0 24px 22px; }
.footer { background: var(--dark); padding: 36px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.footer p { color: rgba(255,255,255,.7); }

@media (max-width: 991px) {
  .section { padding: 60px 0; }
  .nav-links { display: none; }
  .hero-area { padding: 135px 0 70px; }
  .hero-grid, .split-grid, .split-grid.reverse { grid-template-columns: 1fr; gap: 44px; }
  .hero-visual { min-height: 500px; }
  .feature-grid, .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .achievement { padding: 80px 0; }
}
@media (max-width: 767px) {
  body { font-size: 15px; line-height: 24px; }
  .site-header { padding: 18px 0; }
  .brand { font-size: 18px; }
  .nav-button { display: none; }
  .hero-area { padding: 120px 0 55px; }
  .hero-content h1 { font-size: 34px; line-height: 44px; }
  .hero-content p { margin-top: 22px; }
  .hero-actions { margin-top: 28px; }
  .hero-visual { min-height: 470px; transform: scale(.86); transform-origin: top center; }
  .phone-front { right: 40px; }
  .phone-back { right: 160px; }
  .section-title h2, .split-copy h2 { font-size: 26px; line-height: 34px; }
  .feature-grid, .pricing-grid, .stats-grid { grid-template-columns: 1fr; }
  .feature-card { padding: 28px; }
  .achievement h2, .install-cta h2 { font-size: 26px; line-height: 34px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
.single-pricing-wrap {
  max-width: 520px;
  margin: 0 auto;
}
.single-price .price-head strong {
  font-size: 42px;
}
