/* ================================================================
   HOSTECH GLOBAL STYLESHEET — VERSION 2.2
   Header/menu/footer styles are shared by all PHP pages.
   Edit includes/header.php or includes/footer.php for global markup.
   Desktop and mobile sections are clearly marked below.
   ================================================================ */

/* =========================================================
   GLOBAL VARIABLES & RESET: START
   ========================================================= */
:root {
  --navy: #071628;
  --navy2: #0d2038;
  --purple: #34399b;
  --purple2: #5659d8;
  --blue: #1570ef;
  --ink: #101828;
  --muted: #667085;
  --line: #e4e7ec;
  --soft: #f6f8fc;
  --white: #fff;
  --radius: 18px;
  --shadow: 0 18px 50px rgba(7, 22, 40, 0.12);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.65;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
}
.container {
  width: min(1180px, calc(100% - 40px));
  margin: auto;
}
/* GLOBAL VARIABLES & RESET: END */

/* =========================================================
   TOP BAR SECTION: START
   Email, phone number and social media links.
   ========================================================= */
.topbar {
  background: #04101f;
  color: #d9e8ff;
  font-size: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.topbar-inner {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.topbar-contact {
  display: flex;
  align-items: center;
  gap: 22px;
}
.topbar-contact a {
  display: flex;
  align-items: center;
  gap: 7px;
}
.mini-icon {
  color: #aeb2ff;
}
.social-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.social-links a {
  width: 29px;
  height: 29px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: 0.2s;
}
.social-links svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}
.social-links a:hover {
  background: var(--purple2);
  border-color: var(--purple2);
  transform: translateY(-1px);
}
/* TOP BAR SECTION: END */

/* =========================================================
   DESKTOP HEADER & NAVIGATION: START
   Main logo, desktop menu, dropdowns and action buttons.
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 26, 46, 0.98);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}
.nav-wrap {
  height: 82px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand {
  display: flex;
  align-items: center;
  margin-right: auto;
}
.brand img {
  width: 268px;
  max-height: 62px;
  object-fit: contain;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #e8eef8;
  font-size: 14px;
  font-weight: 600;
}
.main-nav > a,
.drop-btn {
  padding: 28px 0;
}
.main-nav .active,
.drop-btn.active {
  color: #aeb2ff;
}
.drop-btn {
  font: inherit;
  color: inherit;
  border: 0;
  background: none;
  display: flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
}
.nav-arrow {
  width: 11px;
  height: 8px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: 0.2s;
}
.dropdown {
  position: relative;
}
.dropdown:hover .nav-arrow,
.dropdown.open .nav-arrow {
  transform: rotate(180deg);
}
.mega {
  position: absolute;
  top: 74px;
  left: 50%;
  transform: translate(-50%, 12px);
  width: 690px;
  padding: 14px;
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transition: 0.2s;
}
.mega-small {
  width: 560px;
}
.dropdown:hover .mega,
.dropdown.open .mega {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
.mega-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}
.mega-grid > a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px;
  border-radius: 12px;
}
.mega-grid > a:hover {
  background: #f5f6ff;
}
.mega-grid b {
  display: block;
  font-size: 14px;
}
.mega-grid small {
  display: block;
  color: var(--muted);
  font-weight: 400;
  margin-top: 2px;
}
.mi {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #eceeff;
  color: var(--purple);
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 800;
  flex: none;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
}
.login {
  font-size: 14px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 9px;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: 0.2s;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-small {
  min-height: 42px;
  padding: 0 18px;
}
.btn-primary {
  background: linear-gradient(135deg, var(--purple), var(--blue));
  color: #fff;
  box-shadow: 0 10px 25px rgba(52, 57, 155, 0.24);
}
.btn-outline {
  border-color: #b8c0cc;
  background: #fff;
  color: var(--ink);
}
.btn-light {
  background: #fff;
  color: var(--purple);
}
.light-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}
.full {
  width: 100%;
}
/* DESKTOP HEADER & NAVIGATION: END */

/* =========================================================
   MOBILE MENU BUTTON: START
   Hamburger control used by the responsive navigation.
   ========================================================= */
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 7px;
}
.nav-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: #fff;
  margin: 5px;
}
/* MOBILE MENU BUTTON: END */

/* =========================================================
   HERO & PAGE BANNER SECTION: START
   ========================================================= */
.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(
    circle at 78% 38%,
    #173d74 0,
    #0b2547 25%,
    #07182d 58%,
    #051121 100%
  );
  color: #fff;
}
.hero {
  padding: 88px 0 80px;
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to right, black, transparent);
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 70px;
}
.pill {
  display: inline-flex;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.hero h1,
.page-hero h1 {
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.05;
  margin: 22px 0 20px;
  letter-spacing: -0.045em;
}
.hero h1 span {
  color: #6f9fff;
}
.hero p,
.page-hero p {
  font-size: 18px;
  color: #c8d5e7;
  max-width: 720px;
}
.checks,
.large-checks {
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px 24px;
  margin: 28px 0;
}
.checks li:before,
.large-checks li:before {
  content: "✓";
  color: #69a0ff;
  font-weight: 800;
  margin-right: 9px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.trust-note {
  font-size: 12px;
  color: #9fb0c5;
  margin-top: 20px;
}
.server-art {
  min-height: 430px;
  position: relative;
}
.orb {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, #246bdc55, transparent 65%);
  right: 20px;
  top: 10px;
}
.tower {
  position: absolute;
  width: 160px;
  height: 320px;
  border-radius: 18px 18px 8px 8px;
  background: linear-gradient(145deg, #22395c, #091426);
  border: 1px solid #426087;
  box-shadow: 0 30px 80px #0008;
  padding: 30px 16px;
}
.tower.one {
  right: 175px;
  top: 70px;
  transform: perspective(700px) rotateY(8deg);
}
.tower.two {
  right: 35px;
  top: 30px;
  transform: perspective(700px) rotateY(-8deg);
}
.slot {
  height: 23px;
  border: 1px solid #28476e;
  background: #081426;
  border-radius: 4px;
  margin: 8px 0;
  position: relative;
}
.slot:after {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #2f8cff;
  right: 10px;
  top: 8px;
  box-shadow: -12px 0 #36d39a;
}
.bubble {
  position: absolute;
  right: 0;
  bottom: 18px;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: linear-gradient(145deg, #255fd2, #302e93);
  border: 1px solid #649cff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 40px #0008;
}
.bubble small,
.bubble span {
  font-size: 11px;
}
.bubble strong {
  font-size: 26px;
}
.page-hero {
  padding: 74px 0;
}
.page-hero.compact {
  padding: 55px 0;
}
/* HERO & PAGE BANNER SECTION: END */

/* =========================================================
   DOMAIN SEARCH SECTION: START
   ========================================================= */
.domain-band {
  background: var(--soft);
  padding: 34px 0;
}
.domain-simple {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 12px 35px rgba(16, 24, 40, 0.05);
}
.domain-title {
  text-align: center;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 800;
  color: var(--purple);
}
.eyebrow.light {
  color: #bec5ff;
}
.domain-title h2,
.section-head h2,
.split h2,
.faq-grid h2 {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.15;
  margin: 8px 0;
}
.domain-title p {
  margin: 0;
  color: var(--muted);
}
.domain-form {
  display: flex;
  max-width: 800px;
  margin: 22px auto 18px;
}
.domain-form input,
.domain-form select,
input,
select,
textarea {
  font: inherit;
  border: 1px solid #d7dce5;
  background: #fff;
  outline: none;
}
.domain-form input {
  flex: 1;
  min-width: 0;
  border-radius: 10px 0 0 10px;
  padding: 0 16px;
}
.domain-form select {
  width: 105px;
  padding: 0 12px;
  border-left: 0;
}
.domain-form .btn {
  border-radius: 0 10px 10px 0;
}
.domain-chips {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}
.domain-chips span {
  padding: 7px 12px;
  border-radius: 999px;
  background: #f3f4ff;
  color: #475467;
  font-size: 13px;
}
.domain-chips b {
  color: var(--purple);
}
.section {
  padding: 80px 0;
}
.soft {
  background: var(--soft);
}
.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 42px;
}
.section-head p,
.split p,
.faq-grid > div > p {
  color: var(--muted);
}
/* DOMAIN SEARCH SECTION: END */

/* =========================================================
   FEATURES SECTION: START
   ========================================================= */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.feature {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}
.feature .icon {
  font-size: 26px;
}
.feature h3 {
  margin: 12px 0 6px;
}
.feature p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
/* FEATURES SECTION: END */

/* =========================================================
   PRICING / PAYMENT PLANS SECTION: START
   Desktop and tablet card grids. Mobile carousel rules are below.
   ========================================================= */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.pricing-grid.three {
  grid-template-columns: repeat(3, 1fr);
}
.plan {
  position: relative;
  padding: 30px;
  border: 1px solid #dce1ea;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 35px rgba(16, 24, 40, 0.05);
}
.plan.popular {
  border: 2px solid var(--purple);
  transform: translateY(-8px);
}
.ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--purple);
  color: #fff;
  border-radius: 999px;
  padding: 5px 14px;
  font-size: 11px;
  font-weight: 800;
}
.plan h3 {
  font-size: 22px;
  margin: 0;
}
.muted {
  color: var(--muted);
}
.price {
  display: flex;
  align-items: baseline;
  gap: 3px;
  margin: 20px 0;
}
.price b {
  font-size: 40px;
  line-height: 1;
}
.price small {
  color: var(--muted);
}
.plan ul {
  list-style: none;
  padding: 0;
  margin: 22px 0;
}
.plan li {
  padding: 7px 0;
  border-bottom: 1px solid #edf0f4;
  font-size: 14px;
}
.plan li:before {
  content: "✓";
  color: var(--blue);
  font-weight: 800;
  margin-right: 8px;
}
.center-link {
  text-align: center;
  margin-top: 28px;
  color: var(--purple);
  font-weight: 700;
}
.dark-section {
  background: var(--navy);
  color: #fff;
}
.section-head.light p {
  color: #aebdd0;
}
/* PRICING / PAYMENT PLANS SECTION: END */

/* =========================================================
   SERVICES SECTION: START
   ========================================================= */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
}
.service > span {
  color: #7fa8ff;
  font-size: 12px;
  font-weight: 800;
}
.service p {
  color: #aebdd0;
}
.service a {
  color: #90b2ff;
  font-weight: 700;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.bullet-grid,
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0;
}
.bullet-grid div,
.values-grid div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
}
.bullet-grid b,
.bullet-grid span {
  display: block;
}
.bullet-grid span {
  color: var(--muted);
  font-size: 13px;
  margin-top: 4px;
}
.stats-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 28px;
  border-radius: 22px;
  background: linear-gradient(145deg, #0b2547, #252d80);
  color: #fff;
  box-shadow: var(--shadow);
}
.stats-card div {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
}
.stats-card strong,
.stats-card span {
  display: block;
}
.stats-card strong {
  font-size: 32px;
}
.stats-card span {
  color: #c3cee0;
}
.faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
}
.accordion details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 10px;
  padding: 0 18px;
}
.accordion summary {
  cursor: pointer;
  font-weight: 700;
  padding: 18px 24px 18px 0;
}
.accordion p {
  color: var(--muted);
  margin-top: 0;
}
.info-card,
.contact-card {
  padding: 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}
.large-checks {
  color: var(--muted);
}
.table-wrap {
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 16px;
}
table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}
th,
td {
  text-align: left;
  padding: 16px;
  border-bottom: 1px solid var(--line);
}
th {
  background: #f7f8fb;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.process-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
}
.process-grid b {
  color: var(--purple);
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
}
.contact-list {
  display: grid;
  gap: 12px;
  margin: 28px 0;
}
.contact-list a,
.contact-list > div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
}
.contact-list b,
.contact-list span {
  display: block;
}
.contact-list span {
  color: var(--muted);
}
.contact-card label {
  display: block;
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 15px;
}
.contact-card input,
.contact-card select,
.contact-card textarea {
  display: block;
  width: 100%;
  padding: 12px 13px;
  border-radius: 9px;
  margin-top: 6px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-note {
  font-size: 12px;
  color: var(--muted);
}
.legal-page {
  max-width: 850px;
}
.legal-page h2 {
  margin-top: 34px;
}
.legal-page p {
  color: #475467;
}
.notice {
  padding: 16px;
  border: 1px solid #f0c36d;
  background: #fff8e7;
  border-radius: 12px;
}
.cta {
  background: linear-gradient(135deg, var(--purple), #225dcc);
  color: #fff;
  padding: 42px 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.cta h2 {
  margin: 4px 0;
  font-size: 30px;
}
.cta p {
  margin: 0;
  color: #dbe4ff;
}
/* SERVICES & CONTENT SECTIONS: END */

/* =========================================================
   FOOTER SECTION: START
   Footer columns, payment methods and legal links.
   ========================================================= */
.site-footer {
  background: #061323;
  color: #b9c6d8;
  padding-top: 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 42px;
}
.footer-brand img {
  width: 250px;
  max-height: 70px;
  object-fit: contain;
}
.footer-brand p {
  max-width: 310px;
}
.footer-grid h4 {
  color: #fff;
  margin: 0 0 16px;
}
.footer-grid > div > a {
  display: block;
  margin: 9px 0;
  font-size: 14px;
}
.footer-social {
  margin-top: 18px;
}
.footer-bottom {
  margin-top: 44px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 13px;
}
.footer-bottom p {
  margin: 0;
}
.legal-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  flex-wrap: wrap;
}
.legal-links a {
  white-space: nowrap;
}
.legal-links a:hover {
  color: #fff;
}
/* FOOTER SECTION: END */

/* =========================================================
   TABLET & MOBILE MENU RESPONSIVE CSS: START
   Controls responsive desktop/mobile navigation and grids.
   ========================================================= */
@media (max-width: 1000px) {
  .nav-wrap {
    height: 72px;
  }
  .brand img {
    width: 220px;
  }
  .nav-toggle {
    display: block;
    order: 3;
  }
  .nav-actions {
    margin-left: auto;
  }
  .main-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 72px;
    background: #0b1c32;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 15px 20px 24px;
    max-height: calc(100vh - 72px);
    overflow: auto;
  }
  .main-nav.open {
    display: flex;
  }
  .main-nav > a,
  .drop-btn {
    padding: 13px 4px;
    width: 100%;
    justify-content: space-between;
  }
  .dropdown {
    width: 100%;
  }
  .mega,
  .mega-small {
    position: static;
    width: 100%;
    transform: none !important;
    opacity: 1;
    visibility: visible;
    display: none;
    box-shadow: none;
    margin: 3px 0 10px;
  }
  .dropdown.open .mega {
    display: block;
  }
  .mega-grid {
    grid-template-columns: 1fr;
  }
  .dropdown:hover .mega {
    display: none;
  }
  .dropdown.open:hover .mega {
    display: block;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .server-art {
    display: none;
  }
  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }
  .pricing-grid,
  .pricing-grid.three {
    grid-template-columns: 1fr 1fr;
  }
  .service-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
  .footer-grid > div:nth-child(4),
  .footer-grid > div:nth-child(5) {
    margin-top: 15px;
  }
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 700px) {
  .container {
    width: min(100% - 28px, 1180px);
  }
  .topbar-inner {
    padding: 8px 0;
  }
  .support-label {
    display: none;
  }
  .topbar-contact {
    gap: 12px;
    flex-wrap: wrap;
  }
  .topbar-contact a {
    font-size: 12px;
  }
  .topbar .social-links {
    display: none;
  }
  .brand img {
    width: 190px;
  }
  .nav-actions .login {
    display: none;
  }
  .btn-small {
    padding: 0 12px;
  }
  .hero {
    padding: 60px 0;
  }
  .hero h1,
  .page-hero h1 {
    font-size: 39px;
  }
  .hero p,
  .page-hero p {
    font-size: 16px;
  }
  .checks,
  .large-checks {
    grid-template-columns: 1fr;
  }
  .domain-simple {
    padding: 20px;
  }
  .domain-form {
    display: grid;
    grid-template-columns: 1fr 90px;
  }
  .domain-form input {
    height: 50px;
    border-radius: 9px 0 0 9px;
  }
  .domain-form select {
    border-radius: 0 9px 9px 0;
  }
  .domain-form .btn {
    grid-column: 1/-1;
    border-radius: 9px;
    margin-top: 9px;
  }
  .section {
    padding: 58px 0;
  }
  .feature-grid,
  .pricing-grid,
  .pricing-grid.three,
  .service-grid,
  .split,
  .faq-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .plan.popular {
    transform: none;
  }
  .bullet-grid,
  .values-grid,
  .stats-card,
  .form-row {
    grid-template-columns: 1fr;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }
  .footer-grid {
    gap: 26px;
  }
  .footer-grid > div:nth-child(4),
  .footer-grid > div:nth-child(5) {
    margin-top: 0;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .legal-links {
    justify-content: center;
    gap: 14px 20px;
  }
  .footer-brand img {
    width: 220px;
  }
}
/* Four-plan layouts and dedicated server table */
.pricing-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}
.plan {
  position: relative;
}
.plan.featured {
  border-color: var(--primary);
  box-shadow: 0 18px 45px rgba(65, 57, 184, 0.16);
  transform: translateY(-8px);
}
.plan-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--primary);
  color: #fff;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}
.server-table-wrap {
  overflow-x: auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow);
  -webkit-overflow-scrolling: touch;
}
.server-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 920px;
}
.server-table th {
  background: #101b3a;
  color: #fff;
  text-align: left;
  padding: 16px 18px;
  font-size: 13px;
  letter-spacing: 0.02em;
}
.server-table td {
  padding: 18px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
  color: var(--text);
}
.server-table tbody tr:last-child td {
  border-bottom: 0;
}
.server-table tbody tr:hover {
  background: #f8f8ff;
}
.server-table td strong {
  display: block;
  color: var(--heading);
  font-size: 15px;
}
.server-table td small {
  display: block;
  color: var(--muted);
  margin-top: 4px;
  line-height: 1.45;
}
.server-table td:nth-child(5) strong {
  font-size: 20px;
  color: var(--primary);
}
.server-note {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 12px;
  background: #f3f2ff;
  color: var(--text);
  line-height: 1.7;
}
@media (max-width: 1180px) {
  .pricing-grid.four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .plan.featured {
    transform: none;
  }
}
@media (max-width: 700px) {
  .pricing-grid.four {
    grid-template-columns: 1fr;
  }
  .server-table-wrap {
    overflow: visible;
    background: transparent;
    border: 0;
    box-shadow: none;
  }
  .server-table {
    min-width: 0;
  }
  .server-table thead {
    display: none;
  }
  .server-table,
  .server-table tbody,
  .server-table tr,
  .server-table td {
    display: block;
    width: 100%;
  }
  .server-table tr {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    margin-bottom: 14px;
    padding: 10px 14px;
    box-shadow: 0 10px 28px rgba(12, 24, 58, 0.07);
  }
  .server-table td {
    display: grid;
    grid-template-columns: 118px 1fr;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
  }
  .server-table td:last-child {
    border-bottom: 0;
  }
  .server-table td::before {
    content: attr(data-label);
    font-size: 12px;
    font-weight: 800;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }
  .server-table td .btn {
    justify-self: start;
  }
}

/* Billing cycles, legal page and payment methods */
.billing-note {
  max-width: 820px;
  margin: -8px auto 28px;
  text-align: center;
  color: var(--muted);
  font-size: 0.92rem;
}
/* =========================================================
   BILLING CYCLE DROPDOWN: START
   Shown below the feature list and directly above Order Now.
   ========================================================= */
.billing-select-wrap {
  margin-top: auto;
  padding-top: 20px;
}

.billing-select-wrap label {
  display: block;
  margin-bottom: 8px;
  color: var(--heading);
  font-size: 0.84rem;
  font-weight: 700;
}

.billing-select {
  width: 100%;
  min-height: 48px;
  padding: 0 42px 0 14px;
  border: 1px solid #cfd4e3;
  border-radius: 8px;
  background-color: #fff;
  color: var(--heading);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  appearance: auto;
}

.billing-select:focus {
  border-color: var(--primary);
  outline: 3px solid rgba(62, 57, 171, 0.12);
}

.billing-select-wrap + .btn.full {
  margin-top: 16px;
}
/* ================= BILLING CYCLE DROPDOWN: END ================= */
.legal-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}
.legal-nav {
  position: sticky;
  top: 112px;
  background: #f7f7fb;
  border: 1px solid #e7e7f0;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.legal-nav strong {
  margin-bottom: 8px;
}
.legal-nav a {
  font-size: 0.85rem;
  color: var(--muted);
}
.legal-card {
  background: #fff;
  border: 1px solid #e7e7f0;
  border-radius: 18px;
  padding: clamp(24px, 4vw, 48px);
  box-shadow: 0 18px 55px rgba(16, 19, 55, 0.07);
}
.legal-card section {
  scroll-margin-top: 120px;
  padding: 22px 0;
  border-bottom: 1px solid #ececf3;
}
.legal-card section:last-child {
  border: 0;
}
.legal-card h2 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.legal-card p {
  color: var(--muted);
  line-height: 1.8;
}
.legal-updated {
  padding: 12px 16px;
  background: #f4f3ff;
  border-radius: 10px;
}
.payment-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.payment-card {
  border: 1px solid #e5e6ee;
  border-radius: 18px;
  padding: 28px;
  background: #fff;
  box-shadow: 0 14px 40px rgba(19, 25, 73, 0.06);
}
.payment-card h2 {
  font-size: 1.3rem;
  margin: 18px 0 8px;
}
.payment-card p,
.payment-card li {
  color: var(--muted);
  line-height: 1.65;
}
.payment-card dl {
  display: grid;
  grid-template-columns: 140px 1fr;
  margin-top: 20px;
}
.payment-card dt,
.payment-card dd {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}
.payment-card dt {
  font-weight: 700;
}
.payment-card dd {
  margin: 0;
  color: var(--muted);
}
.pay-logo {
  height: 58px;
  display: inline-flex;
  align-items: center;
  padding: 0 20px;
  border-radius: 12px;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.bank-logo {
  background: #edf2ff;
  color: #1646a0;
}
.jazz-logo {
  background: #ffe500;
  color: #d71920;
}
.easy-logo {
  background: #ef2328;
  color: #fff;
}
.card-logo {
  background: #17245b;
  color: #fff;
}
.payment-notice {
  margin-top: 28px;
  border-radius: 18px;
  background: #f4f3ff;
  padding: 28px;
}
.footer-payments {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  padding: 18px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.footer-payments > span {
  color: #bfc2d6;
  margin-right: 4px;
}
.pay-mini {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 31px;
  padding: 6px 11px;
  border-radius: 7px;
  font-size: 0.72rem;
  font-weight: 800;
  text-decoration: none;
}
.footer-bottom .legal-links {
  flex-wrap: wrap;
}
@media (max-width: 850px) {
  .legal-layout {
    grid-template-columns: 1fr;
  }
  .legal-nav {
    position: static;
  }
  .payment-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 560px) {
  .cycle-switch {
    grid-template-columns: 1fr;
  }
  .payment-card {
    padding: 20px;
  }
  .payment-card dl {
    grid-template-columns: 1fr;
  }
  .payment-card dt {
    border-bottom: 0;
    padding-bottom: 2px;
  }
  .payment-card dd {
    padding-top: 2px;
  }
  .footer-payments {
    justify-content: center;
  }
  .legal-card {
    padding: 20px;
  }
}

/* TABLET & MOBILE MENU RESPONSIVE CSS: END */

/* =========================================================
   HOMEPAGE HOSTING CATEGORY CARDS: START
   Version: 2.2
   ========================================================= */
.hosting-categories {
  position: relative;
  overflow: hidden;
}
.hosting-categories::before {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  left: -260px;
  top: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(80, 91, 216, 0.12), transparent 68%);
  pointer-events: none;
}
.hosting-plans-heading {
  margin-bottom: 48px;
}
.hosting-category-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}
.hosting-category-card {
  --card-accent: var(--purple);
  --card-accent-soft: #eef0ff;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 26px 24px 24px;
  border: 1px solid #dfe4ec;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(16, 24, 40, 0.07);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.hosting-category-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--card-accent), var(--blue));
}
.hosting-category-card::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  right: -72px;
  top: -72px;
  border-radius: 50%;
  background: var(--card-accent-soft);
  opacity: 0.75;
  pointer-events: none;
}
.hosting-category-card:hover {
  transform: translateY(-8px);
  border-color: color-mix(in srgb, var(--card-accent) 40%, #dfe4ec);
  box-shadow: 0 24px 58px rgba(16, 24, 40, 0.13);
}
.hosting-category-card.featured-card {
  border: 2px solid var(--purple);
  box-shadow: 0 22px 55px rgba(52, 57, 155, 0.17);
}
.category-business {
  --card-accent: #0f8a75;
  --card-accent-soft: #e7f7f3;
}
.category-vps {
  --card-accent: #1570ef;
  --card-accent-soft: #e9f2ff;
}
.category-dedicated {
  --card-accent: #d97706;
  --card-accent-soft: #fff3df;
}
.category-card-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 62px;
  margin-bottom: 18px;
}
.category-label {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--card-accent-soft);
  color: var(--card-accent);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.055em;
  line-height: 1.25;
  text-transform: uppercase;
}
.category-icon {
  position: relative;
  z-index: 1;
  flex: 0 0 54px;
  width: 54px;
  height: 54px;
  margin: 0;
  border: 1px solid color-mix(in srgb, var(--card-accent) 16%, #fff);
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--card-accent-soft);
  color: var(--card-accent);
  box-shadow: none;
}
.category-kicker {
  margin: 0 0 5px;
  color: var(--card-accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}
.hosting-category-card h3 {
  margin: 0 0 9px;
  font-size: 23px;
  line-height: 1.2;
  color: var(--navy);
}
.category-subtitle {
  min-height: 90px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}
.category-price {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 5px;
  margin: 20px 0 15px;
  padding: 16px 0;
  border-top: 1px solid #edf0f4;
  border-bottom: 1px solid #edf0f4;
}
.category-price > span {
  width: 100%;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.category-price strong {
  color: var(--navy);
  font-size: 34px;
  line-height: 0.95;
  letter-spacing: -0.04em;
}
.category-price strong sup {
  position: relative;
  top: -0.42em;
  margin-right: 2px;
  font-size: 15px;
  letter-spacing: 0;
}
.category-price small {
  padding-bottom: 2px;
  color: var(--muted);
  font-size: 12px;
}
.category-price-custom strong {
  font-size: 29px;
  letter-spacing: -0.025em;
}
.category-features {
  flex: 1;
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}
.hosting-category-card .category-features li {
  position: relative;
  padding: 9px 0 9px 28px;
  border-bottom: 1px solid #edf0f4;
  color: #344054;
  font-size: 13px;
  line-height: 1.45;
}
.hosting-category-card .category-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 9px;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  margin: 0;
  border-radius: 50%;
  background: var(--card-accent-soft);
  color: var(--card-accent);
  font-size: 10px;
  font-weight: 900;
}
.category-more {
  gap: 8px;
  margin-top: auto;
  border-color: color-mix(in srgb, var(--card-accent) 42%, #cdd4df);
}
.hosting-category-card:not(.featured-card) .category-more:hover {
  background: var(--card-accent);
  border-color: var(--card-accent);
  color: #fff;
}
.category-more span {
  transition: transform 0.2s ease;
}
.category-more:hover span {
  transform: translateX(4px);
}
.hosting-plans-note {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 26px;
  margin-top: 30px;
  color: #475467;
  font-size: 13px;
  font-weight: 600;
}

/* CSS-only icons used inside hosting category cards. */
.server-icon,
.rack-icon {
  display: grid;
  gap: 3px;
  width: 27px;
}
.server-icon i,
.rack-icon i {
  position: relative;
  display: block;
  height: 7px;
  border: 2px solid currentColor;
  border-radius: 3px;
}
.server-icon i::after,
.rack-icon i::after {
  content: "";
  position: absolute;
  right: 2px;
  top: 50%;
  width: 3px;
  height: 3px;
  margin-top: -1.5px;
  border-radius: 50%;
  background: currentColor;
}
.briefcase-icon {
  position: relative;
  width: 27px;
  height: 20px;
  border: 2px solid currentColor;
  border-radius: 4px;
}
.briefcase-icon::before {
  content: "";
  position: absolute;
  left: 7px;
  top: -7px;
  width: 9px;
  height: 6px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 3px 3px 0 0;
}
.briefcase-icon::after {
  content: "";
  position: absolute;
  left: -2px;
  right: -2px;
  top: 7px;
  border-top: 2px solid currentColor;
}
.cloud-icon {
  position: relative;
  width: 28px;
  height: 15px;
  margin-top: 7px;
  border: 2px solid currentColor;
  border-radius: 12px;
}
.cloud-icon::before,
.cloud-icon::after {
  content: "";
  position: absolute;
  border: 2px solid currentColor;
  background: var(--card-accent-soft);
  border-bottom: 0;
  border-radius: 50% 50% 0 0;
}
.cloud-icon::before {
  width: 12px;
  height: 12px;
  left: 3px;
  top: -9px;
}
.cloud-icon::after {
  width: 9px;
  height: 9px;
  right: 2px;
  top: -6px;
}

@media (max-width: 1100px) {
  .hosting-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .category-subtitle {
    min-height: auto;
  }
}
@media (max-width: 700px) {
  .hosting-plans-heading {
    margin-bottom: 30px;
  }
  .hosting-category-card {
    padding: 24px 21px 22px;
  }
  .hosting-category-card:hover {
    transform: none;
  }
  .category-subtitle {
    min-height: auto;
  }
  .hosting-plans-note {
    display: grid;
    justify-content: start;
    gap: 7px;
    margin-top: 22px;
    padding: 0 4px;
  }
}
/* HOMEPAGE HOSTING CATEGORY CARDS: END */

/* =========================================================
   MOBILE PLAN SLIDER SECTION: START
   Applies to hosting pricing cards and homepage category cards.
   Desktop and tablet retain their normal grid layout.
   ========================================================= */
.mobile-plan-dots {
  display: none;
}

@media (max-width: 700px) {
  .pricing-grid.mobile-card-slider,
  .hosting-category-grid.mobile-card-slider {
    display: flex;
    gap: 16px;
    width: 100%;
    overflow-x: auto;
    overflow-y: visible;
    padding: 6px 2px 18px;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .pricing-grid.mobile-card-slider::-webkit-scrollbar,
  .hosting-category-grid.mobile-card-slider::-webkit-scrollbar {
    display: none;
  }

  .pricing-grid.mobile-card-slider > .plan,
  .hosting-category-grid.mobile-card-slider > .hosting-category-card {
    flex: 0 0 calc(100% - 18px);
    width: calc(100% - 18px);
    min-width: calc(100% - 18px);
    scroll-snap-align: center;
    scroll-snap-stop: always;
    transform: none;
  }

  .mobile-plan-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 28px;
    margin: 2px 0 12px;
  }

  .mobile-plan-dot-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-plan-radio {
    position: absolute;
    inline-size: 1px;
    block-size: 1px;
    opacity: 0;
    pointer-events: none;
  }

  .mobile-plan-dot {
    width: 11px;
    height: 11px;
    border: 2px solid var(--purple);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    transition:
      width 0.2s ease,
      border-radius 0.2s ease,
      background 0.2s ease;
  }

  .mobile-plan-radio:checked + .mobile-plan-dot {
    width: 28px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--purple), var(--blue));
  }

  .mobile-plan-radio:focus-visible + .mobile-plan-dot {
    outline: 3px solid rgba(52, 57, 155, 0.22);
    outline-offset: 3px;
  }
}
/* MOBILE PLAN SLIDER SECTION: END */


/* =========================================================
   HOSTECH PREMIUM V2 HOMEPAGE: START
   ========================================================= */
.premium-hero { padding: 88px 0 104px; overflow: hidden; }
.premium-hero .hero-grid { align-items: center; }
.hero-checks { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.hero-trust-row { display:flex; flex-wrap:wrap; gap:14px 22px; margin-top:22px; color:#cbd7eb; font-size:13px; font-weight:600; }
.hero-dashboard { position:relative; min-height:460px; display:grid; place-items:center; }
.dashboard-window { width:min(540px,100%); border:1px solid rgba(255,255,255,.16); border-radius:24px; background:rgba(255,255,255,.08); box-shadow:0 35px 85px rgba(0,0,0,.3); backdrop-filter:blur(16px); overflow:hidden; transform:perspective(1200px) rotateY(-7deg) rotateX(3deg); }
.dashboard-top { display:flex; gap:8px; padding:15px 18px; border-bottom:1px solid rgba(255,255,255,.1); }
.dashboard-top span { width:9px; height:9px; border-radius:50%; background:rgba(255,255,255,.55); }
.dashboard-body { display:grid; grid-template-columns:82px 1fr; min-height:330px; }
.dashboard-sidebar { padding:22px 17px; border-right:1px solid rgba(255,255,255,.1); }
.dashboard-sidebar i { display:block; height:9px; border-radius:9px; background:rgba(255,255,255,.14); margin-bottom:20px; }
.dashboard-content { padding:28px; }
.dashboard-stat { display:flex; flex-direction:column; margin-bottom:28px; }
.dashboard-stat b { font-size:38px; color:#fff; }
.dashboard-stat span { color:#b8c9e4; }
.dashboard-chart { height:120px; display:flex; align-items:end; gap:12px; padding:16px; border-radius:18px; background:rgba(5,15,34,.35); }
.dashboard-chart i { flex:1; border-radius:8px 8px 2px 2px; background:linear-gradient(180deg,#5f76ff,#27a6ff); }
.dashboard-chart i:nth-child(1){height:35%}.dashboard-chart i:nth-child(2){height:52%}.dashboard-chart i:nth-child(3){height:42%}.dashboard-chart i:nth-child(4){height:78%}.dashboard-chart i:nth-child(5){height:64%}.dashboard-chart i:nth-child(6){height:90%}.dashboard-chart i:nth-child(7){height:82%}
.dashboard-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:12px; margin-top:18px; }
.dashboard-grid div { height:58px; border-radius:14px; background:rgba(255,255,255,.09); }
.floating-badge { position:absolute; z-index:2; padding:13px 18px; border-radius:16px; background:#fff; box-shadow:0 18px 45px rgba(0,0,0,.22); display:flex; flex-direction:column; }
.floating-badge strong { color:#26339c; font-size:20px; }.floating-badge span { color:#64748b; font-size:12px; }
.badge-speed { left:0; top:58px; }.badge-support { right:0; bottom:56px; }
.premium-domain { margin-top:-45px; position:relative; z-index:3; }
.trust-section { padding-top:74px; }
.why-premium { background:#fff; }
.why-premium-grid { display:grid; grid-template-columns:1.15fr .85fr; gap:70px; align-items:center; }
.why-list { margin-top:28px; display:grid; gap:16px; }
.why-list>div { display:flex; gap:16px; align-items:flex-start; padding:17px; border:1px solid #e4e9f2; border-radius:16px; }
.why-list b { display:grid; place-items:center; flex:0 0 42px; height:42px; border-radius:12px; background:#eef1ff; color:#35399b; }
.why-list span { display:flex; flex-direction:column; gap:3px; }.why-list small { color:#667085; }
.metrics-panel { display:grid; grid-template-columns:repeat(2,1fr); gap:16px; padding:24px; border-radius:26px; background:linear-gradient(145deg,#0b1b35,#13284a); box-shadow:0 25px 70px rgba(11,27,53,.22); }
.metrics-panel div { padding:28px 18px; border:1px solid rgba(255,255,255,.1); border-radius:18px; background:rgba(255,255,255,.05); display:flex; flex-direction:column; }
.metrics-panel strong { color:#fff; font-size:32px; }.metrics-panel span { color:#b8c9e4; margin-top:6px; }
.footer-trust { display:grid; grid-template-columns:repeat(4,1fr); gap:1px; margin-top:28px; margin-bottom:24px; border:1px solid rgba(255,255,255,.1); border-radius:18px; overflow:hidden; background:rgba(255,255,255,.08); }
.footer-trust div { padding:18px; display:flex; flex-direction:column; align-items:center; text-align:center; background:#08162a; }
.footer-trust strong { color:#fff; font-size:18px; }.footer-trust span { color:#9fb2ce; font-size:12px; margin-top:4px; }
@media (max-width: 980px) {
  .hero-dashboard { min-height:390px; }
  .why-premium-grid { grid-template-columns:1fr; gap:38px; }
}
@media (max-width: 700px) {
  .premium-hero { padding:56px 0 84px; }
  .hero-checks { grid-template-columns:1fr; }
  .hero-dashboard { min-height:330px; margin-top:20px; }
  .dashboard-window { transform:none; }
  .dashboard-body { grid-template-columns:56px 1fr; min-height:260px; }
  .dashboard-content { padding:18px; }.dashboard-stat b { font-size:30px; }
  .badge-speed { top:18px; left:4px; }.badge-support { right:4px; bottom:10px; }
  .premium-domain { margin-top:-30px; }
  .metrics-panel { grid-template-columns:1fr 1fr; padding:14px; }
  .metrics-panel div { padding:20px 12px; }
  .footer-trust { grid-template-columns:repeat(2,1fr); }
}
@media (max-width: 430px) {
  .dashboard-sidebar { display:none; }.dashboard-body { grid-template-columns:1fr; }
  .floating-badge { padding:10px 13px; }.floating-badge strong { font-size:17px; }
  .metrics-panel { grid-template-columns:1fr; }
}
/* HOSTECH PREMIUM V2 HOMEPAGE: END */

.site-header.is-scrolled{box-shadow:0 12px 32px rgba(5,18,38,.18);}

/* =========================================================
   WHMCS DOMAIN INTEGRATION COMPONENTS: START
   ========================================================= */
.domain-search-status {
    margin: 14px 0 0;
    color: var(--primary, #5d4cff);
    font-size: 14px;
    font-weight: 700;
    text-align: center;
}

.domain-quick-links {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 14px;
}

.domain-quick-links a {
    color: var(--primary, #5d4cff);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.domain-quick-links a:hover {
    text-decoration: underline;
}

.domain-service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.domain-service-card {
    background: #ffffff;
    border: 1px solid #e8ebf3;
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 14px 40px rgba(9, 27, 57, 0.07);
}

.domain-service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin-bottom: 18px;
    border-radius: 14px;
    background: rgba(93, 76, 255, 0.1);
    color: var(--primary, #5d4cff);
    font-size: 13px;
    font-weight: 800;
}

.domain-service-card h3 {
    margin: 0 0 10px;
}

.domain-service-card p {
    margin: 0 0 18px;
}

.domain-transfer-layout {
    align-items: center;
}

.form-note {
    margin: 0 0 18px;
    color: #687386;
    font-size: 13px;
    line-height: 1.65;
}

.table-wrap td a {
    color: var(--primary, #5d4cff);
    font-weight: 700;
    text-decoration: none;
}

@media (max-width: 900px) {
    .domain-service-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .domain-quick-links {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
}
/* WHMCS DOMAIN INTEGRATION COMPONENTS: END */


/* =========================================================
   HOSTECH V2.1 — HOMEPAGE HERO UPDATE: START
   Smaller typography, trust badges and responsive spacing.
   ========================================================= */

.premium-hero {
  padding: 78px 0 92px;
}

.premium-hero .hero-copy {
  max-width: 650px;
}

.premium-hero .hero-copy h1 {
  font-size: clamp(42px, 4.4vw, 54px);
  line-height: 1.12;
  letter-spacing: -0.035em;
  margin: 20px 0 18px;
}

.premium-hero .hero-copy h1 span {
  display: block;
  margin-top: 4px;
}

.hero-subtitle {
  max-width: 620px;
  margin: 0;
  font-size: 17px !important;
  line-height: 1.75;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: #e7eef9;
  font-size: 12px;
  font-weight: 650;
  backdrop-filter: blur(8px);
}

.premium-hero .hero-actions {
  margin-top: 28px;
}

.premium-hero .hero-actions .btn {
  min-width: 158px;
}

@media (max-width: 992px) {
  .premium-hero {
    padding: 64px 0 78px;
  }

  .premium-hero .hero-copy h1 {
    font-size: 42px;
  }
}

@media (max-width: 768px) {
  .premium-hero {
    padding: 48px 0 64px;
  }

  .premium-hero .hero-copy {
    max-width: none;
    text-align: center;
  }

  .premium-hero .hero-copy h1 {
    font-size: 32px;
    line-height: 1.22;
    letter-spacing: -0.025em;
  }

  .hero-subtitle {
    font-size: 15.5px !important;
    line-height: 1.7;
    margin-inline: auto;
  }

  .hero-badges,
  .premium-hero .hero-actions,
  .hero-trust-row {
    justify-content: center;
  }

  .premium-hero .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .premium-hero .hero-actions .btn {
    width: 100%;
  }

  .hero-dashboard {
    min-height: 300px;
  }
}

@media (max-width: 480px) {
  .premium-hero .hero-copy h1 {
    font-size: 29px;
  }

  .hero-badge {
    font-size: 11px;
    padding: 7px 10px;
  }
}

/* =========================================================
   HOSTECH V2.1 — HOMEPAGE HERO UPDATE: END
   ========================================================= */

/* ============================================================
   HOSTECH SPRINT 2.3 — DOMAIN SEARCH SECTION: START
   Version: 2.3.0
   ============================================================ */

.domain-search-v23 {
    position: relative;
    padding: 72px 0 38px;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 15%, rgba(71, 84, 222, 0.12), transparent 29%),
        radial-gradient(circle at 92% 80%, rgba(20, 123, 231, 0.10), transparent 28%),
        #f7f9fd;
}

.domain-search-v23::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(13, 42, 83, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(13, 42, 83, 0.025) 1px, transparent 1px);
    background-size: 38px 38px;
}

.domain-search-card {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(540px, 1.1fr);
    gap: 52px;
    align-items: center;
    padding: 48px;
    border: 1px solid #dbe3f0;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 24px 64px rgba(13, 42, 83, 0.10);
}

.domain-search-copy h2 {
    max-width: 560px;
    margin: 10px 0 14px;
    color: #081a35;
    font-size: clamp(30px, 3vw, 44px);
    line-height: 1.12;
    letter-spacing: -0.035em;
}

.domain-search-copy > p {
    max-width: 570px;
    margin: 0;
    color: #5b6880;
    font-size: 16px;
    line-height: 1.75;
}

.domain-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin-top: 22px;
}

.domain-benefits span {
    color: #243653;
    font-size: 13px;
    font-weight: 700;
}

.domain-search-panel {
    padding: 22px;
    border: 1px solid #e0e7f1;
    border-radius: 20px;
    background: #f8faff;
}

.domain-search-form-v23 {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 118px 170px;
    align-items: stretch;
    overflow: hidden;
    border: 1px solid #cfd9e8;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(18, 49, 94, 0.08);
}

.domain-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
    min-width: 0;
}

.domain-input-icon {
    flex: 0 0 auto;
    padding-left: 20px;
    color: #7e8aa0;
    font-size: 14px;
    font-weight: 800;
}

.domain-search-form-v23 input {
    width: 100%;
    min-width: 0;
    height: 58px;
    padding: 0 18px 0 8px;
    border: 0;
    outline: 0;
    color: #0a1932;
    background: transparent;
    font: inherit;
}

.domain-search-form-v23 input::placeholder {
    color: #8b96aa;
}

.domain-search-form-v23 select {
    height: 58px;
    padding: 0 34px 0 16px;
    border: 0;
    border-left: 1px solid #dfe6f0;
    outline: 0;
    color: #0a1932;
    background-color: #ffffff;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

.domain-search-button {
    min-height: 58px;
    border-radius: 0;
    justify-content: center;
    gap: 10px;
    white-space: nowrap;
}

.domain-search-button span:last-child {
    transition: transform 0.2s ease;
}

.domain-search-button:hover span:last-child {
    transform: translateX(4px);
}

.domain-search-status {
    margin: 13px 0 0;
    color: #3448b4;
    font-size: 13px;
    font-weight: 700;
}

.domain-action-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    color: #8490a4;
    font-size: 13px;
}

.domain-action-links a {
    color: #3448b4;
    font-weight: 700;
    text-decoration: none;
}

.domain-action-links a:hover {
    text-decoration: underline;
}

.domain-price-strip {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
    margin-top: 18px;
}

.domain-price-strip a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-width: 0;
    padding: 15px 17px;
    border: 1px solid #dfe6f0;
    border-radius: 13px;
    color: #5c6880;
    background: rgba(255, 255, 255, 0.90);
    box-shadow: 0 8px 24px rgba(13, 42, 83, 0.05);
    text-decoration: none;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.domain-price-strip a:hover {
    transform: translateY(-3px);
    border-color: #8393eb;
    box-shadow: 0 14px 30px rgba(13, 42, 83, 0.10);
}

.domain-price-strip strong {
    color: #0a1932;
    font-size: 17px;
}

.domain-price-strip span {
    overflow: hidden;
    font-size: 12px;
    font-weight: 600;
    text-align: right;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* Client Area Button Polish: START */
.client-area-button {
    min-width: 118px;
    justify-content: center;
    box-shadow: 0 9px 24px rgba(36, 95, 222, 0.25);
}
/* Client Area Button Polish: END */

/* ============================================================
   TABLET DOMAIN SEARCH: START
   ============================================================ */
@media (max-width: 1100px) {
    .domain-search-card {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .domain-price-strip {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
/* TABLET DOMAIN SEARCH: END */

/* ============================================================
   MOBILE DOMAIN SEARCH: START
   ============================================================ */
@media (max-width: 700px) {
    .domain-search-v23 {
        padding: 46px 0 26px;
    }

    .domain-search-card {
        gap: 24px;
        padding: 25px 18px;
        border-radius: 20px;
    }

    .domain-search-copy {
        text-align: center;
    }

    .domain-search-copy h2 {
        font-size: 30px;
    }

    .domain-benefits {
        justify-content: center;
    }

    .domain-search-panel {
        padding: 12px;
        border-radius: 16px;
    }

    .domain-search-form-v23 {
        grid-template-columns: 1fr 94px;
        overflow: visible;
        border: 0;
        background: transparent;
        box-shadow: none;
    }

    .domain-input-wrap,
    .domain-search-form-v23 select {
        border: 1px solid #cfd9e8;
        background: #ffffff;
    }

    .domain-input-wrap {
        border-radius: 12px 0 0 12px;
    }

    .domain-search-form-v23 select {
        border-left: 0;
        border-radius: 0 12px 12px 0;
    }

    .domain-search-button {
        grid-column: 1 / -1;
        margin-top: 10px;
        border-radius: 12px;
    }

    .domain-action-links {
        line-height: 1.7;
    }

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

    .domain-price-strip a {
        display: block;
        text-align: center;
    }

    .domain-price-strip span {
        display: block;
        margin-top: 5px;
        text-align: center;
    }
}

@media (max-width: 430px) {
    .domain-price-strip {
        grid-template-columns: 1fr;
    }
}
/* MOBILE DOMAIN SEARCH: END */

/* ============================================================
   HOSTECH SPRINT 2.3 — DOMAIN SEARCH SECTION: END
   ============================================================ */


/* ============================================================
   HOSTECH SPRINT 2.4 — TRUSTED TECHNOLOGIES: START
   ============================================================ */

.technology-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 10%, rgba(61, 58, 167, 0.10), transparent 28%),
        radial-gradient(circle at 92% 90%, rgba(22, 119, 255, 0.09), transparent 30%),
        #ffffff;
}

.technology-heading,
.why-hostech-heading {
    max-width: 780px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.technology-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 38px;
}

.technology-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    min-height: 155px;
    padding: 24px;
    border: 1px solid #dfe6f1;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 12px 32px rgba(15, 35, 65, 0.06);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.technology-card:hover {
    transform: translateY(-7px);
    border-color: rgba(61, 58, 167, 0.28);
    box-shadow: 0 20px 44px rgba(15, 35, 65, 0.12);
}

.technology-mark {
    display: inline-flex;
    flex: 0 0 52px;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 15px;
    color: #ffffff;
    background: linear-gradient(135deg, #34329a, #1677ff);
    box-shadow: 0 10px 22px rgba(61, 58, 167, 0.20);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: -0.02em;
    transition: transform 0.28s ease;
}

.technology-card:hover .technology-mark {
    transform: rotate(-4deg) scale(1.05);
}

.technology-card h3 {
    margin: 2px 0 8px;
    color: #071a33;
    font-size: 18px;
}

.technology-card p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.65;
}

.technology-cpanel .technology-mark { background: linear-gradient(135deg, #f36c21, #ff9f43); }
.technology-litespeed .technology-mark { background: linear-gradient(135deg, #e11d48, #fb7185); }
.technology-cloudlinux .technology-mark { background: linear-gradient(135deg, #2563eb, #38bdf8); }
.technology-softaculous .technology-mark { background: linear-gradient(135deg, #0891b2, #22d3ee); }
.technology-jetbackup .technology-mark { background: linear-gradient(135deg, #7c3aed, #a78bfa); }
.technology-letsencrypt .technology-mark { background: linear-gradient(135deg, #d97706, #fbbf24); }
.technology-cloudflare .technology-mark { background: linear-gradient(135deg, #ea580c, #fb923c); }
.technology-whmcs .technology-mark { background: linear-gradient(135deg, #1d4ed8, #60a5fa); }

/* ============================================================
   HOSTECH SPRINT 2.4 — TRUSTED TECHNOLOGIES: END
   ============================================================ */

/* ============================================================
   HOSTECH SPRINT 2.4 — WHY CHOOSE HOSTECH: START
   ============================================================ */

.why-hostech-v24 {
    position: relative;
    overflow: hidden;
    background: #f5f8fc;
}

.why-hostech-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.why-hostech-card {
    position: relative;
    overflow: hidden;
    min-height: 220px;
    padding: 28px;
    border: 1px solid #dce5f1;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 12px 34px rgba(11, 31, 56, 0.06);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.why-hostech-card::after {
    position: absolute;
    right: -30px;
    bottom: -40px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(61, 58, 167, 0.12), transparent 70%);
    content: "";
}

.why-hostech-card:hover {
    transform: translateY(-8px);
    border-color: rgba(61, 58, 167, 0.30);
    box-shadow: 0 22px 48px rgba(11, 31, 56, 0.12);
}

.why-hostech-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 55px;
    height: 55px;
    padding: 0 12px;
    border-radius: 16px;
    color: #ffffff;
    background: linear-gradient(135deg, #34329a, #1677ff);
    box-shadow: 0 10px 22px rgba(61, 58, 167, 0.20);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.why-hostech-card h3 {
    margin: 22px 0 10px;
    color: #071a33;
    font-size: 20px;
}

.why-hostech-card p {
    margin: 0;
    color: #64748b;
    line-height: 1.72;
}

.service-highlight-bar {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-top: 28px;
    padding: 18px;
    border: 1px solid #dce5f1;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 10px 28px rgba(11, 31, 56, 0.05);
}

.service-highlight-bar span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #334155;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
}

.service-highlight-bar b {
    color: #1677ff;
}

/* ============================================================
   TABLET TECHNOLOGIES & WHY HOSTECH: START
   ============================================================ */
@media (max-width: 1024px) {
    .technology-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .service-highlight-bar {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
/* TABLET TECHNOLOGIES & WHY HOSTECH: END */

/* ============================================================
   MOBILE TECHNOLOGIES & WHY HOSTECH: START
   ============================================================ */
@media (max-width: 680px) {
    .technology-grid,
    .why-hostech-grid,
    .service-highlight-bar {
        grid-template-columns: 1fr;
    }

    .technology-grid,
    .why-hostech-grid {
        gap: 14px;
        margin-top: 28px;
    }

    .technology-card {
        min-height: auto;
        padding: 20px;
    }

    .why-hostech-card {
        min-height: auto;
        padding: 24px;
    }

    .service-highlight-bar {
        gap: 0;
        padding: 6px 18px;
    }

    .service-highlight-bar span {
        justify-content: flex-start;
        padding: 12px 0;
        border-bottom: 1px solid #e7edf5;
    }

    .service-highlight-bar span:last-child {
        border-bottom: 0;
    }
}
/* MOBILE TECHNOLOGIES & WHY HOSTECH: END */

/* ============================================================
   HOSTECH SPRINT 2.4 — WHY CHOOSE HOSTECH: END
   ============================================================ */
