/* =========================
   RESET
========================= */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Helvetica,
    Arial,
    sans-serif;

  background: #f7f8fb;
  color: #121826;
  line-height: 1.6;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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


/* =========================
   HEADER
========================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;

  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);

  border-bottom: 1px solid #e9ebf0;
}

.navbar {
  min-height: 76px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-size: 23px;
  font-weight: 850;
  letter-spacing: -1px;
}

.brand span {
  color: #2563eb;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.desktop-nav > a {
  font-size: 14px;
  font-weight: 600;
  color: #576173;
}

.desktop-nav > a:hover {
  color: #111827;
}

.nav-offer-btn {
  border: 0;
  border-radius: 9px;

  background: #111827;
  color: #ffffff;

  padding: 11px 17px;

  font-size: 14px;
  font-weight: 700;
}

.nav-offer-btn:hover {
  background: #2563eb;
}

.mobile-menu-button {
  display: none;

  border: 0;
  background: none;

  font-size: 26px;
}

.mobile-nav {
  display: none;
}


/* =========================
   FORWARD BANNER
========================= */

.forward-banner {
  display: none;

  background: #111827;
  color: #ffffff;

  position: relative;
  z-index: 900;
}

.forward-banner.active {
  display: block;
}

.forward-banner-inner {
  min-height: 58px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  gap: 20px;

  font-size: 14px;
}

.forward-label {
  display: inline-block;

  margin-right: 10px;

  padding: 4px 8px;

  border-radius: 5px;

  background: #2563eb;

  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
}

.forward-banner strong {
  margin-right: 5px;
}

.forward-banner button {
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 7px;

  background: transparent;
  color: #ffffff;

  padding: 8px 13px;

  font-size: 13px;
  font-weight: 700;
}


/* =========================
   BUTTONS
========================= */

.button {
  display: inline-flex;

  min-height: 52px;

  align-items: center;
  justify-content: center;

  padding: 0 24px;

  border-radius: 10px;

  font-weight: 750;

  border: 0;

  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: #111827;
  color: #ffffff;
}

.button-primary:hover {
  background: #2563eb;
}

.button-secondary {
  background: #ffffff;
  color: #111827;

  border: 1px solid #d8dce5;
}

.button-secondary:hover {
  border-color: #111827;
}

.button-light {
  background: #ffffff;
  color: #111827;
}


/* =========================
   HERO
========================= */

.hero {
  position: relative;

  padding: 115px 0 105px;

  background:
    radial-gradient(
      circle at 80% 5%,
      rgba(37,99,235,0.14),
      transparent 30%
    ),
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f7f8fb 100%
    );
}

.hero-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 1.3fr)
    minmax(320px, 0.7fr);

  gap: 80px;

  align-items: center;
}

.eyebrow,
.section-eyebrow {
  display: inline-block;

  margin-bottom: 18px;

  color: #2563eb;

  font-size: 12px;
  font-weight: 850;

  letter-spacing: 1.7px;
}

.hero h1 {
  max-width: 800px;

  font-size: clamp(52px, 6.5vw, 86px);

  line-height: 0.98;

  letter-spacing: -4.8px;

  font-weight: 850;
}

.hero h1 span {
  color: #2563eb;
}

.hero-description {
  max-width: 650px;

  margin-top: 28px;

  color: #697386;

  font-size: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;

  gap: 14px;

  margin-top: 36px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;

  gap: 35px;

  margin-top: 55px;
}

.hero-trust div {
  display: flex;
  flex-direction: column;
}

.hero-trust strong {
  font-size: 14px;
}

.hero-trust span {
  color: #7a8494;

  font-size: 12px;
}


/* =========================
   FEATURED HERO CARD
========================= */

.hero-card {
  position: relative;

  padding: 40px;

  border: 1px solid #e1e5ec;
  border-radius: 22px;

  background: rgba(255,255,255,0.96);

  box-shadow:
    0 30px 70px
    rgba(15, 23, 42, 0.08);
}

.hero-card-badge {
  display: inline-flex;

  padding: 6px 10px;

  border-radius: 999px;

  background: #e9efff;
  color: #2563eb;

  font-size: 10px;
  font-weight: 850;

  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-card-domain {
  margin-top: 25px;

  font-size: 40px;
  font-weight: 850;

  letter-spacing: -2px;
}

.hero-card-domain span {
  color: #2563eb;
}

.hero-card p {
  margin-top: 12px;

  color: #6c7587;
}

.hero-card-button {
  width: 100%;

  margin-top: 30px;

  padding: 14px;

  border: 0;
  border-radius: 9px;

  background: #111827;
  color: #ffffff;

  font-weight: 750;
}

.hero-card-button:hover {
  background: #2563eb;
}


/* =========================
   SECTION HEADER
========================= */

.section-header {
  display: flex;

  justify-content: space-between;
  align-items: end;

  gap: 50px;

  margin-bottom: 42px;
}

.section-header h2,
.faq-intro h2 {
  max-width: 680px;

  font-size: clamp(36px, 4vw, 52px);

  line-height: 1.05;

  letter-spacing: -2.4px;
}

.section-header > p {
  max-width: 430px;

  color: #727c8e;
}


/* =========================
   DOMAIN SECTION
========================= */

.domains-section {
  padding: 100px 0;
}

.domain-toolbar {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 25px;

  margin-bottom: 30px;
}

.search-box {
  position: relative;

  width: min(520px, 100%);
}

.search-box svg {
  position: absolute;

  left: 17px;
  top: 50%;

  transform: translateY(-50%);

  width: 19px;
  height: 19px;

  fill: none;
  stroke: #9099a8;

  stroke-width: 2;
}

.search-box input {
  width: 100%;

  height: 54px;

  padding: 0 18px 0 48px;

  border: 1px solid #dfe3ea;
  border-radius: 11px;

  background: #ffffff;

  outline: none;
}

.search-box input:focus {
  border-color: #2563eb;

  box-shadow:
    0 0 0 3px
    rgba(37,99,235,0.09);
}

.domain-count {
  color: #7b8494;

  font-size: 14px;
}

.domain-count strong {
  color: #111827;
}


/* =========================
   DOMAIN CARDS
========================= */

.domain-grid {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 18px;
}

.domain-card {
  position: relative;

  display: flex;
  flex-direction: column;

  min-height: 285px;

  padding: 28px;

  border: 1px solid #e4e7ed;
  border-radius: 17px;

  background: #ffffff;

  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.domain-card:hover {
  transform: translateY(-4px);

  border-color: #c3ccda;

  box-shadow:
    0 17px 45px
    rgba(15, 23, 42, 0.07);
}

.domain-card.domain-highlight {
  border: 2px solid #2563eb;

  box-shadow:
    0 0 0 5px
    rgba(37,99,235,0.08),
    0 22px 55px
    rgba(37,99,235,0.12);
}

.domain-card.hidden {
  display: none;
}

.featured-domain {
  background:
    linear-gradient(
      145deg,
      #ffffff,
      #f2f6ff
    );
}

.domain-card-top {
  display: flex;

  justify-content: space-between;
  align-items: center;

  min-height: 28px;
}

.domain-category {
  color: #647087;

  font-size: 11px;
  font-weight: 750;

  text-transform: uppercase;
  letter-spacing: 0.7px;
}

.featured-tag {
  padding: 5px 9px;

  border-radius: 999px;

  background: #e9efff;
  color: #2563eb;

  font-size: 10px;
  font-weight: 850;

  text-transform: uppercase;
}

.domain-card h3 {
  margin-top: 25px;

  font-size: 31px;

  line-height: 1;

  letter-spacing: -1.5px;
}

.domain-card h3 span {
  color: #2563eb;
}

.domain-card > p {
  margin-top: 14px;

  color: #707a8c;

  font-size: 14px;
}

.domain-card-footer {
  display: flex;

  justify-content: space-between;
  align-items: center;

  gap: 15px;

  margin-top: auto;
  padding-top: 28px;
}

.domain-status {
  position: relative;

  padding-left: 14px;

  color: #667085;

  font-size: 12px;
  font-weight: 650;
}

.domain-status::before {
  content: "";

  position: absolute;

  left: 0;
  top: 50%;

  width: 7px;
  height: 7px;

  transform: translateY(-50%);

  border-radius: 50%;

  background: #22c55e;
}

.domain-card-footer button {
  display: flex;

  align-items: center;
  gap: 8px;

  border: 0;

  background: transparent;

  color: #2563eb;

  font-size: 13px;
  font-weight: 750;
}

.domain-card-footer button span {
  transition: transform 0.2s ease;
}

.domain-card-footer button:hover span {
  transform: translateX(3px);
}


/* =========================
   NO RESULTS
========================= */

.no-results {
  display: none;

  padding: 60px;

  border: 1px dashed #d6dbe5;
  border-radius: 16px;

  text-align: center;

  background: #ffffff;
}

.no-results.active {
  display: block;
}

.no-results p {
  margin-top: 7px;

  color: #778194;
}


/* =========================
   PROCESS
========================= */

.process-section {
  padding: 105px 0;

  background: #111827;
  color: #ffffff;
}

.section-header.light p {
  color: #a6afbf;
}

.process-grid {
  display: grid;

  grid-template-columns:
    repeat(4, minmax(0,1fr));

  gap: 16px;
}

.process-card {
  min-height: 265px;

  padding: 28px;

  border:
    1px solid rgba(255,255,255,0.12);

  border-radius: 15px;
}

.process-number {
  color: #7399ff;

  font-size: 12px;
  font-weight: 850;
}

.process-card h3 {
  margin-top: 70px;

  font-size: 20px;
}

.process-card p {
  margin-top: 10px;

  color: #a7b0bf;

  font-size: 14px;
}


/* =========================
   FAQ
========================= */

.faq-section {
  padding: 105px 0;

  background: #ffffff;
}

.faq-layout {
  display: grid;

  grid-template-columns:
    0.8fr 1.2fr;

  gap: 90px;
}

.faq-intro p {
  max-width: 410px;

  margin-top: 20px;

  color: #727c8e;
}

.faq-list details {
  border-bottom: 1px solid #e5e8ee;

  padding: 22px 0;
}

.faq-list summary {
  cursor: pointer;

  list-style: none;

  font-size: 17px;
  font-weight: 750;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";

  float: right;

  color: #2563eb;

  font-size: 23px;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 670px;

  padding-top: 13px;

  color: #707a8c;
}


/* =========================
   FINAL CTA
========================= */

.final-cta {
  padding: 80px 0;
}

.final-cta-card {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 40px;

  padding: 55px;

  border-radius: 22px;

  background:
    linear-gradient(
      135deg,
      #1d4ed8,
      #2563eb
    );

  color: #ffffff;
}

.final-cta-card .section-eyebrow {
  color: #c7d7ff;
}

.final-cta-card h2 {
  font-size: 44px;

  line-height: 1;

  letter-spacing: -2px;
}

.final-cta-card p {
  margin-top: 12px;

  color: #d8e2ff;
}


/* =========================
   FOOTER
========================= */

.site-footer {
  background: #ffffff;

  border-top: 1px solid #e6e9ef;
}

.footer-main {
  display: flex;

  justify-content: space-between;

  gap: 60px;

  padding: 55px 0;
}

.footer-brand {
  display: inline-block;
}

.footer-main p {
  max-width: 400px;

  margin-top: 12px;

  color: #778194;

  font-size: 14px;
}

.footer-links {
  display: flex;

  gap: 25px;

  color: #626d7f;

  font-size: 14px;
}

.footer-bottom {
  min-height: 70px;

  display: flex;

  justify-content: space-between;
  align-items: center;

  gap: 20px;

  border-top: 1px solid #edf0f4;

  color: #8a93a2;

  font-size: 12px;
}


/* =========================
   MODAL
========================= */

.modal-overlay {
  position: fixed;

  inset: 0;

  z-index: 5000;

  display: flex;

  align-items: center;
  justify-content: center;

  padding: 25px;

  background:
    rgba(10, 15, 25, 0.72);

  backdrop-filter: blur(7px);

  opacity: 0;
  visibility: hidden;

  transition:
    opacity 0.2s ease,
    visibility 0.2s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  position: relative;

  width: min(680px, 100%);
  max-height: calc(100vh - 50px);

  overflow-y: auto;

  padding: 42px;

  border-radius: 20px;

  background: #ffffff;

  box-shadow:
    0 35px 100px
    rgba(0,0,0,0.28);

  transform: translateY(15px);

  transition:
    transform 0.2s ease;
}

.modal-overlay.active .modal {
  transform: translateY(0);
}

.modal-close {
  position: absolute;

  right: 20px;
  top: 17px;

  width: 38px;
  height: 38px;

  border: 0;
  border-radius: 50%;

  background: #f1f3f6;

  color: #3d4655;

  font-size: 25px;
  line-height: 1;
}

.modal-header {
  padding-right: 40px;
}

.modal-header h2 {
  font-size: 37px;

  line-height: 1;

  letter-spacing: -1.7px;
}

.modal-header p {
  margin-top: 12px;

  color: #727c8e;
}


/* =========================
   FORM
========================= */

.offer-form {
  margin-top: 30px;
}

.form-row {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 16px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;

  margin-bottom: 7px;

  font-size: 13px;
  font-weight: 750;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;

  border: 1px solid #dce1e9;
  border-radius: 9px;

  background: #ffffff;

  padding: 13px 14px;

  outline: none;

  color: #151c28;
}

.form-group select {
  height: 49px;
}

.form-group textarea {
  min-height: 110px;

  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #2563eb;

  box-shadow:
    0 0 0 3px
    rgba(37,99,235,0.09);
}

.money-input {
  position: relative;
}

.money-input span {
  position: absolute;

  left: 14px;
  top: 50%;

  transform: translateY(-50%);

  color: #6c7587;
}

.money-input input {
  padding-left: 30px;
}

.consent-row {
  display: flex;

  align-items: flex-start;

  gap: 10px;

  margin: 5px 0 20px;

  color: #6e7889;

  font-size: 12px;
}

.consent-row input {
  margin-top: 3px;
}

.form-submit {
  width: 100%;

  min-height: 51px;

  border: 0;
  border-radius: 9px;

  background: #111827;
  color: #ffffff;

  font-weight: 750;
}

.form-submit:hover {
  background: #2563eb;
}

.form-security {
  margin-top: 12px;

  text-align: center;

  color: #8b94a3;

  font-size: 11px;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1000px) {

  .hero-grid {
    grid-template-columns: 1fr;

    gap: 55px;
  }

  .hero-card {
    max-width: 600px;
  }

  .domain-grid {
    grid-template-columns:
      repeat(2, minmax(0,1fr));
  }

  .process-grid {
    grid-template-columns:
      repeat(2, minmax(0,1fr));
  }

  .faq-layout {
    grid-template-columns: 1fr;

    gap: 45px;
  }
}


@media (max-width: 760px) {

  .container {
    width:
      min(100% - 30px, 1180px);
  }

  .desktop-nav {
    display: none;
  }

  .mobile-menu-button {
    display: block;
  }

  .mobile-nav.active {
    display: flex;

    flex-direction: column;

    padding: 15px 20px 22px;

    border-top:
      1px solid #edf0f4;

    background: #ffffff;
  }

  .mobile-nav a,
  .mobile-nav button {
    padding: 12px 0;

    border: 0;

    background: none;

    text-align: left;

    font-weight: 650;
  }

  .forward-banner-inner {
    align-items: flex-start;
    flex-direction: column;

    padding-top: 12px;
    padding-bottom: 12px;
  }

  .hero {
    padding: 75px 0;
  }

  .hero h1 {
    letter-spacing: -3px;
  }

  .hero-description {
    font-size: 18px;
  }

  .section-header {
    align-items: flex-start;
    flex-direction: column;

    gap: 15px;
  }

  .domain-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

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

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

  .process-card {
    min-height: 210px;
  }

  .process-card h3 {
    margin-top: 45px;
  }

  .final-cta-card {
    align-items: flex-start;
    flex-direction: column;

    padding: 38px 28px;
  }

  .footer-main {
    flex-direction: column;
  }

  .footer-links {
    flex-direction: column;

    gap: 10px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;

    justify-content: center;

    padding: 20px 0;
  }

  .modal {
    padding: 33px 22px;
  }

  .form-row {
    grid-template-columns: 1fr;

    gap: 0;
  }
}
.form-success {
  text-align: center;
  padding: 30px 10px 10px;
}

.success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #e9f9ef;
  color: #16a34a;

  font-size: 28px;
  font-weight: 800;
}

.form-success h3 {
  font-size: 30px;
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.form-success p {
  color: #6f7888;
  line-height: 1.7;
  margin-bottom: 28px;
}