:root {
  --orange: #ff9933;
  --blue: #1b75bb;
  --text: #1c1f26;
  --muted: #4a5563;
  --bg: #f7f9fc;
  --card: #ffffff;
  --border: #e5e7eb;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background-color: rgba(122, 124, 127, 1);
  background: radial-gradient(circle at 50% 50%, rgba(177, 126, 37, 1) 0%, rgba(255, 255, 255, 1) 100%);
  line-height: 1.6;
}

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

img {
  max-width: 100%;
  display: block;
}

h1, h2, h3 {
  margin: 0 0 0.4em;
  line-height: 1.2;
  color: #0f172a;
}

p {
  margin: 0 0 1em;
  color: var(--muted);
}

ul {
  padding-left: 1.2em;
  margin: 0;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 5vw;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  height: 56px;
  width: auto;
  max-width: 220px;
  border-radius: 8px;
  object-fit: contain;
  border: 2px solid rgba(0,0,0,0.05);
}

.logo.small {
  height: 46px;
  width: auto;
}

.company {
  font-weight: 700;
  letter-spacing: -0.02em;
}

.footer .company {
  color: #000;
}

.slogan {
  font-size: 12px;
  color: var(--muted);
}

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

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0;
  margin: 0;
}

.nav-links a {
  padding: 10px 12px;
  border-radius: 10px;
  font-weight: 500;
  color: var(--text);
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-links a:hover {
  background: rgba(27, 117, 187, 0.08);
  color: var(--blue);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text);
  display: block;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.btn.primary {
  background: linear-gradient(135deg, var(--orange), var(--blue));
  color: #fff;
  box-shadow: 0 12px 30px rgba(27, 117, 187, 0.25);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 36px rgba(27, 117, 187, 0.32);
}

.btn.ghost {
  border-color: var(--border);
  background: #fff;
  color: var(--text);
}

.btn.ghost:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.btn.block {
  width: 100%;
}

.hero {
  padding: 80px 5vw 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  align-items: center;
  background: linear-gradient(145deg, rgba(27, 117, 187, 0.08), rgba(255, 153, 51, 0.08));
}

.hero-content h1 {
  font-size: clamp(2.4rem, 5vw, 3.4rem);
}

.hero .lede {
  font-size: 1.05rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  color: var(--blue);
  font-weight: 700;
  margin-bottom: 10px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 16px 0;
}

.hero-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-badges span {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 13px;
}

.hero-panel {
  display: flex;
  justify-content: flex-end;
}

.panel-card {
  background: linear-gradient(145deg, #ffffff, #f3f7ff);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow);
  max-width: 520px;
}

.panel-label {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 12px;
}

.panel-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
}

.panel-card li {
  padding: 10px 12px;
  background: rgba(27, 117, 187, 0.04);
  border-radius: 12px;
  margin-bottom: 8px;
  color: var(--text);
}

.panel-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--blue);
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 6px rgba(255, 153, 51, 0.25);
  display: inline-block;
}

.section {
  padding: 60px 5vw;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 32px;
}

.grid {
  display: grid;
  gap: 18px;
}

.services-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.06);
}

.card h3 {
  color: #0f172a;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  align-items: start;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}

.feature-list li {
  margin-bottom: 10px;
  padding-left: 26px;
  position: relative;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
}

.highlight {
  background: linear-gradient(145deg, rgba(27, 117, 187, 0.08), rgba(255, 153, 51, 0.08));
}

.bundle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 14px 0;
  padding: 12px 14px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--border);
}

.pill {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(27, 117, 187, 0.12);
  color: var(--blue);
  font-weight: 600;
  font-size: 12px;
}

.metrics {
  background: radial-gradient(circle at 20% 20%, rgba(27, 117, 187, 0.12), transparent 30%),
              radial-gradient(circle at 80% 40%, rgba(255, 153, 51, 0.16), transparent 32%),
              #f8fbff;
}

.metrics-grid {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.metric {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.metric-value {
  font-size: 2rem;
  color: var(--blue);
  font-weight: 800;
}

.metric-label {
  color: var(--muted);
  font-weight: 500;
}

.contact-split {
  align-items: stretch;
}

.contact .section-heading {
  max-width: 100%;
}

.form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
}

.form input,
.form select,
.form textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  font-family: inherit;
  font-size: 1rem;
  background: #fff;
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: 2px solid rgba(27, 117, 187, 0.3);
}

.form-hint {
  font-size: 13px;
  color: var(--muted);
  text-align: center;
}

.hidden {
  display: none !important;
}

.domain-search {
  background: radial-gradient(circle at 20% 20%, rgba(27, 117, 187, 0.08), transparent 32%),
              radial-gradient(circle at 80% 60%, rgba(255, 153, 51, 0.12), transparent 34%),
              #f9fbff;
}

#hosting {
  background: var(--bg);
}

#contact {
  background: var(--bg);
}

.domain-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  display: grid;
  gap: 14px;
  max-width: 840px;
}

.domain-form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.domain-form input[type="text"] {
  flex: 1;
  min-width: 240px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-size: 1rem;
  font-family: inherit;
  background: #fff;
}

.domain-form input[type="text"]:focus {
  outline: 2px solid rgba(27, 117, 187, 0.3);
}

.domain-result {
  color: var(--muted);
  font-size: 0.95rem;
}

#domain-search-result {
  text-align: center;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 10, 30, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  padding: 18px;
}

.modal {
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.15);
  max-width: 720px;
  width: 100%;
  display: grid;
  gap: 14px;
  padding: 18px 18px 16px;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.modal-body {
  max-height: 380px;
  overflow: auto;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
  background: #f9fafb;
}

.tld-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.tld-list li {
  padding: 8px 10px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--border);
  font-weight: 600;
  color: #0f172a;
}

.modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.tld-search {
  margin-bottom: 10px;
}

.tld-search input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  font-size: 1rem;
  font-family: inherit;
}

.tld-search input:focus {
  outline: 2px solid rgba(27, 117, 187, 0.3);
}

.contact-info .social {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.contact-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 12px 0;
}

.contact-image {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  margin-bottom: 12px;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.08);
}

.ssl-options {
  background: #f8fbff;
}

.ssl-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.ssl-card .pill {
  background: rgba(27, 117, 187, 0.12);
  color: var(--blue);
}

.ssl-card.highlight {
  background: linear-gradient(145deg, rgba(27, 117, 187, 0.1), rgba(255, 153, 51, 0.1));
}

.footer {
  padding: 26px 5vw 36px;
  background-color: rgba(15, 23, 42, 1);
  background: radial-gradient(circle at 50% 50%, rgba(200, 201, 203, 1) 4%, rgba(255, 255, 255, 1) 60%);
  color: #e2e8f0;
  text-align: center;
  display: grid;
  place-items: center;
  gap: 12px;
}

.footer .slogan {
  color: #94a3b8;
}

.footer a {
  color: #e2e8f0;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  font-weight: 600;
}

@media (max-width: 900px) {
  .topbar {
    flex-wrap: wrap;
    gap: 12px;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    right: 5vw;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: var(--shadow);
    padding: 12px;
    flex-direction: column;
    min-width: 200px;
    display: none;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .topbar .btn.primary {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 48px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-panel {
    justify-content: center;
  }
}

