:root{
  --page-bg:#F6F7F8;
  --card-bg:#FFFFFF;
  --button-bg:#07C369;
  --button-bg-hover:#06ad5e;
  --links:#07C369;
  --form-bg:#1C303F;
  --text:#353333;
  --heading:#FFFFFF;
  --button-text:#FFFFFF;
  --muted:#9EB0BC;
  --hero-text:#D0DAE1;
  --line:rgba(255,255,255,.10);
  --card-line:#E7ECF0;
  --shadow:0 24px 60px rgba(9, 25, 36, .16);
  --radius:12px;
  --radius-lg:24px;
  --container:1200px;
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

html, body{
  margin:0;
  padding:0;
}

body{
  font-family:"Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:var(--page-bg);
  color:var(--text);
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}

a{
  text-decoration:none;
  color:inherit;
}

.container{
  width:min(calc(100% - 32px), var(--container));
  margin:0 auto;
}

/* TOPBAR */

.topbar{
  position:relative;
  z-index:5;
  background:transparent;
  padding:18px 0 0;
}

.topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

.logo{
  color:#FFFFFF;
  font-size:24px;
  font-weight:900;
  letter-spacing:-0.04em;
}

.topbar__right{
  display:flex;
  align-items:center;
  gap:12px;
  color:#DCE6EC;
  font-size:14px;
  font-weight:700;
}

.topbar__sep{
  width:1px;
  height:16px;
  background:rgba(255,255,255,.25);
}

.topbar__link:hover{
  opacity:.85;
}

/* HERO */

.hero{
  margin-top:-62px;
  padding:88px 0 42px;
  background:
    radial-gradient(circle at top right, rgba(7,195,105,.12), transparent 25%),
    linear-gradient(180deg, #1C303F 0%, #18303D 100%);
  overflow:hidden;
}

.hero__inner{
  padding:56px 0 0;
}

.hero__content{
  max-width:760px;
  margin-bottom:28px;
}

.hero__badge{
  display:inline-flex;
  align-items:center;
  min-height:38px;
  padding:0 14px;
  border-radius:999px;
  background:rgba(255,255,255,.08);
  border:1px solid var(--line);
  color:#DCE6EC;
  font-size:13px;
  font-weight:800;
  letter-spacing:.02em;
  margin-bottom:18px;
}

.hero__content h1{
  margin:0 0 14px;
  color:var(--heading);
  font-size:clamp(40px, 6vw, 72px);
  line-height:0.98;
  letter-spacing:-0.06em;
  font-weight:900;
}

.hero__content p{
  margin:0;
  color:var(--hero-text);
  font-size:18px;
  line-height:1.65;
  max-width:680px;
}

/* SEARCH CARD */

.search-card{
  background:rgba(255,255,255,.06);
  border:1px solid var(--line);
  border-radius:28px;
  padding:18px;
  box-shadow:var(--shadow);
  backdrop-filter:blur(6px);
}

#tpwl-search{
  min-height:92px;
}

/* WIDGET STYLING */

#tpwl-search,
#tpwl-search *{
  font-family:"Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
}

#tpwl-search > div,
#tpwl-search form{
  border-radius:20px !important;
}

#tpwl-search input,
#tpwl-search select,
#tpwl-search button,
#tpwl-search [role="button"],
#tpwl-search [class*="button"],
#tpwl-search [class*="Button"]{
  border-radius:var(--radius) !important;
}

#tpwl-search button,
#tpwl-search [type="submit"],
#tpwl-search [class*="submit"],
#tpwl-search [class*="Submit"]{
  background:var(--button-bg) !important;
  color:var(--button-text) !important;
  border:none !important;
  box-shadow:none !important;
  transition:background .2s ease;
}

#tpwl-search button:hover,
#tpwl-search [type="submit"]:hover{
  background:var(--button-bg-hover) !important;
}

#tpwl-search a{
  color:var(--links) !important;
}

#tpwl-search [class*="segment"],
#tpwl-search [class*="field"],
#tpwl-search [class*="Field"],
#tpwl-search [class*="control"],
#tpwl-search [class*="Control"]{
  border-radius:var(--radius) !important;
}

/* FEATURES */

.features{
  padding:34px 0 22px;
}

.features__grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:18px;
}

.feature{
  background:var(--card-bg);
  border:1px solid var(--card-line);
  border-radius:22px;
  padding:24px;
  box-shadow:0 10px 28px rgba(16, 24, 40, .04);
}

.feature__icon{
  width:40px;
  height:40px;
  border-radius:12px;
  display:grid;
  place-items:center;
  background:rgba(7,195,105,.12);
  color:var(--button-bg);
  font-weight:900;
  margin-bottom:14px;
}

.feature h3{
  margin:0 0 10px;
  font-size:20px;
  line-height:1.15;
  color:#202b33;
  letter-spacing:-0.03em;
}

.feature p{
  margin:0;
  color:#697884;
  line-height:1.65;
  font-size:15px;
}

/* PROMO */

.promo{
  padding:8px 0 36px;
}

.promo__grid{
  display:grid;
  grid-template-columns:1.4fr .9fr;
  gap:18px;
}

.promo-card{
  background:var(--card-bg);
  border:1px solid var(--card-line);
  border-radius:24px;
  padding:28px;
  box-shadow:0 10px 28px rgba(16, 24, 40, .04);
}

.promo-card--wide{
  background:linear-gradient(180deg, #FFFFFF 0%, #FBFCFD 100%);
}

.promo-card__label{
  display:inline-flex;
  align-items:center;
  min-height:34px;
  padding:0 12px;
  border-radius:999px;
  background:rgba(7,195,105,.12);
  color:#07C369;
  font-size:12px;
  font-weight:800;
  margin-bottom:16px;
}

.promo-card h2{
  margin:0 0 12px;
  font-size:36px;
  line-height:1.02;
  letter-spacing:-0.05em;
  color:#1F2D37;
}

.promo-card p{
  margin:0;
  color:#687783;
  line-height:1.7;
  font-size:16px;
}

.promo-card ul{
  margin:0;
  padding-left:18px;
  color:#687783;
  line-height:1.9;
}

.promo-card li strong{
  color:#1E2B35;
}

/* MOBILE */

@media (max-width: 980px){
  .features__grid{
    grid-template-columns:1fr;
  }

  .promo__grid{
    grid-template-columns:1fr;
  }
}

@media (max-width: 768px){
  .container{
    width:min(calc(100% - 20px), var(--container));
  }

  .topbar{
    padding-top:14px;
  }

  .hero{
    margin-top:-56px;
    padding:82px 0 28px;
  }

  .hero__inner{
    padding-top:40px;
  }

  .hero__content{
    margin-bottom:20px;
  }

  .hero__content p{
    font-size:16px;
  }

  .search-card{
    padding:12px;
    border-radius:20px;
  }

  .feature,
  .promo-card{
    padding:20px;
  }

  .promo-card h2{
    font-size:28px;
  }
}

@media (max-width: 520px){
  .logo{
    font-size:20px;
  }

  .topbar__right{
    font-size:13px;
    gap:10px;
  }

  .hero__content h1{
    font-size:40px;
  }

  .hero__badge{
    font-size:12px;
  }
}

.promo-widget{
  margin-top:20px;
  display:flex;
  justify-content:center;
  align-items:center;
  background:#FFFFFF;
  border-radius:24px;
  padding:24px;
  box-shadow:0 10px 28px rgba(16, 24, 40, .04);
}