:root{
  --bg:#f6f8fc;
  --bg-soft:#eef4ff;
  --card:#ffffff;
  --text:#0f172a;
  --muted:#667085;
  --line:#e4e7ec;
  --line-strong:#d7deea;
  --primary:#175cd3;
  --primary-2:#0f4fc4;
  --primary-soft:#eef4ff;
  --wa:#25D366;
  --wa-dark:#1fb85a;
  --mail:#111827;
  --mail-dark:#0b1220;
  --success:#12b76a;
  --shadow-lg:0 20px 50px rgba(16,24,40,.08);
  --shadow-md:0 10px 24px rgba(16,24,40,.06);
  --radius-xl:28px;
  --radius-lg:20px;
  --radius-md:16px;
  --radius-sm:12px;
  --max:1180px;
}

*{
  box-sizing:border-box;
}

html,body{
  margin:0;
  padding:0;
  font-family:Inter, Arial, Helvetica, sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at top left, rgba(23,92,211,.08), transparent 26%),
    radial-gradient(circle at bottom right, rgba(37,211,102,.06), transparent 24%),
    linear-gradient(180deg, #f8fbff 0%, #f6f8fc 100%);
}

body{
  min-height:100vh;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}

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

.page{
  max-width:var(--max);
  margin:0 auto;
  padding:22px 16px 40px;
}

.hero{
  text-align:center;
  padding:10px 6px 28px;
}

.hero-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:10px 16px;
  background:rgba(255,255,255,.92);
  border:1px solid var(--line-strong);
  border-radius:999px;
  box-shadow:0 8px 20px rgba(16,24,40,.04);
  color:#475467;
  font-size:13px;
  font-weight:800;
  letter-spacing:.02em;
  margin-bottom:18px;
}

.hero-badge-dot{
  width:10px;
  height:10px;
  border-radius:50%;
  background:linear-gradient(135deg,var(--primary),var(--success));
  box-shadow:0 0 0 6px rgba(23,92,211,.08);
  flex:0 0 10px;
}

.domain-hero-card{
  max-width:920px;
  margin:0 auto 18px;
  padding:18px 22px;
  border-radius:24px;
  border:1px solid var(--line-strong);
  background:linear-gradient(180deg,#ffffff 0%, #f8fbff 100%);
  box-shadow:0 16px 36px rgba(23,92,211,.08);
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  min-height:78px;
}

.domain-hero-icon{
  width:28px;
  height:28px;
  color:var(--primary);
  flex:0 0 28px;
}

.domain-hero-name{
  font-size:clamp(24px,4.5vw,40px);
  line-height:1.1;
  font-weight:900;
  color:var(--primary);
  letter-spacing:-0.03em;
  word-break:break-word;
  overflow-wrap:anywhere;
}


.domain-ismi{
  font-size:clamp(14px,3.5vw,30px);
  line-height:1.1;
  font-weight:900;
  color:#c9000d;
  letter-spacing:-0.02em;
  word-break:break-word;
  overflow-wrap:anywhere;
}





.hero h1{
  margin:0;
  font-size:clamp(30px,5vw,56px);
  line-height:1.03;
  letter-spacing:-0.04em;
  font-weight:900;
}

.hero p{
  max-width:760px;
  margin:14px auto 0;
  font-size:17px;
  line-height:1.8;
  color:var(--muted);
}

.layout{
  display:grid;
  grid-template-columns:1.06fr .94fr;
  gap:22px;
  align-items:stretch;
}

.panel{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:var(--radius-xl);
  box-shadow:var(--shadow-lg);
  overflow:hidden;
}

.left{
  padding:30px;
  background:
    radial-gradient(circle at top left, rgba(23,92,211,.05), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.right{
  padding:30px;
  background:#fff;
}

.domain-strip{
  display:flex;
  align-items:center;
  gap:16px;
  padding:18px;
  border:1px solid var(--line);
  border-radius:22px;
  background:linear-gradient(180deg,#ffffff 0%, #f9fbff 100%);
  box-shadow:var(--shadow-md);
  margin-bottom:20px;
}

.domain-strip-icon{
  width:56px;
  height:56px;
  flex:0 0 56px;
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:var(--primary-soft);
  color:var(--primary);
}

.domain-strip-icon svg{
  width:26px;
  height:26px;
}

.domain-strip-text{
  min-width:0;
}

.domain-strip-label{
  font-size:12px;
  line-height:1;
  letter-spacing:.1em;
  text-transform:uppercase;
  font-weight:800;
  color:#667085;
  margin-bottom:8px;
}

.domain-strip-name{
  font-size:clamp(20px,3vw,30px);
  line-height:1.15;
  font-weight:900;
  letter-spacing:-0.03em;
  color:var(--primary);
  word-break:break-word;
  overflow-wrap:anywhere;
}

.title{
  margin:0 0 10px;
  font-size:32px;
  line-height:1.12;
  letter-spacing:-0.03em;
  font-weight:900;
}

.muted{
  margin:0;
  color:var(--muted);
  font-size:15px;
  line-height:1.8;
}

.mini-cards{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
  margin-top:22px;
}

.mini-card{
  border:1px solid var(--line);
  border-radius:18px;
  background:#fff;
  padding:16px;
}

.mini-label{
  font-size:13px;
  color:var(--muted);
  font-weight:700;
  margin-bottom:8px;
}

.mini-value{
  font-size:24px;
  line-height:1.1;
  font-weight:900;
  letter-spacing:-0.02em;
}

.mini-value.small{
  font-size:16px;
  line-height:1.5;
  color:#344054;
  font-weight:700;
}

.quick-actions{
  margin-top:18px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.quick-link{
  min-height:48px;
  padding:0 15px;
  border-radius:14px;
  border:1px solid var(--line);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  font-size:14px;
  font-weight:800;
  background:#fff;
  transition:transform .16s ease, background .16s ease;
}

.quick-link:hover{
  transform:translateY(-1px);
  background:#f8fafc;
}

.quick-link svg{
  width:18px;
  height:18px;
  flex:0 0 18px;
}

.quick-link.whatsapp{
  color:#128c4a;
}

.features{
  margin-top:22px;
  display:grid;
  gap:12px;
}

.feature{
  display:flex;
  align-items:flex-start;
  gap:12px;
  padding:15px;
  border:1px solid var(--line);
  border-radius:18px;
  background:#fff;
}

.feature-no{
  width:36px;
  height:36px;
  flex:0 0 36px;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:var(--primary-soft);
  color:var(--primary);
  font-size:13px;
  font-weight:900;
}

.feature strong{
  display:block;
  margin-bottom:4px;
  font-size:15px;
}

.feature span{
  display:block;
  font-size:14px;
  line-height:1.65;
  color:var(--muted);
}

.trust{
  margin-top:18px;
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}

.trust-pill{
  padding:8px 12px;
  border:1px solid var(--line);
  border-radius:999px;
  background:#fff;
  font-size:13px;
  font-weight:700;
  color:#475467;
}

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

.form-head h2{
  margin:0 0 8px;
  font-size:30px;
  line-height:1.12;
  letter-spacing:-0.03em;
  font-weight:900;
}

.form-head p{
  margin:0;
  color:var(--muted);
  font-size:15px;
  line-height:1.75;
}

.form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}

.field{
  margin-bottom:14px;
}

.field.full{
  grid-column:1 / -1;
}

label{
  display:block;
  margin-bottom:8px;
  font-size:14px;
  font-weight:800;
  color:#344054;
}

input,
textarea{
  width:100%;
  appearance:none;
  border:1px solid #d0d5dd;
  background:#fff;
  border-radius:16px;
  padding:15px 16px;
  font-size:16px;
  line-height:1.4;
  color:var(--text);
  outline:none;
  transition:border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

input::placeholder,
textarea::placeholder{
  color:#98a2b3;
}

input:focus,
textarea:focus{
  border-color:#98b8ff;
  box-shadow:0 0 0 4px rgba(23,92,211,.10);
}

textarea{
  min-height:128px;
  resize:vertical;
}

.buttons{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  margin-top:10px;
}

.btn{
  min-height:58px;
  border:none;
  border-radius:18px;
  padding:0 18px;
  font-size:16px;
  font-weight:900;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  transition:transform .16s ease, opacity .16s ease, background .16s ease;
}

.btn:hover{
  transform:translateY(-1px);
}

.btn svg{
  width:20px;
  height:20px;
  flex:0 0 20px;
}

.btn-wa{
  background:var(--wa);
  color:#fff;
  box-shadow:0 10px 24px rgba(37,211,102,.22);
}

.btn-wa:hover{
  background:var(--wa-dark);
}

.btn-mail{
  background:var(--mail);
  color:#fff;
  box-shadow:0 10px 24px rgba(17,24,39,.16);
}

.btn-mail:hover{
  background:var(--mail-dark);
}

.note{
  margin-top:14px;
  font-size:13px;
  line-height:1.75;
  color:var(--muted);
}

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

@media (max-width: 640px){
  .page{
    padding:14px 12px 28px;
  }

  .hero{
    padding:6px 2px 18px;
  }

  .hero p{
    font-size:15px;
  }

  .left,
  .right{
    padding:22px;
  }

  .title,
  .form-head h2{
    font-size:25px;
  }

  .domain-hero-card{
    padding:16px 14px;
    gap:10px;
  }

  .domain-hero-icon{
    width:22px;
    height:22px;
    flex-basis:22px;
  }

  .domain-strip{
    align-items:flex-start;
  }

  .mini-cards{
    grid-template-columns:1fr;
  }

  .form-grid{
    grid-template-columns:1fr;
    gap:0;
  }

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

  .quick-actions{
    flex-direction:column;
  }

  .quick-link{
    width:100%;
  }
}