/* =========================
   RESET / BASE
   ========================= */
* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial,
    Helvetica, sans-serif;
  background: var(--bg);
  color: var(--ink);
  transition: background 0.25s, color 0.25s;
}

/* Scrollbar */
body::-webkit-scrollbar {
  width: 8px;
}
body::-webkit-scrollbar-track {
  background: transparent;
}
body::-webkit-scrollbar-thumb {
  background: var(--scroll-thumb, #1b6ef3);
  border-radius: 999px;
}

/* =========================
   SIDEBAR WIDTH MODES
   ========================= */
:root {
  --sidebar-width: 220px; /* full mode default */
}

/* collapsed = icons only */
html[data-sidebar="mini"] {
  --sidebar-width: 80px;
}

/* header layout: no left margin for main content blocks */
html[data-layout="header"] .master-breadcrumb,
html[data-layout="header"] section {
  margin-left: 0;
}

/* =========================
   REMOVE GAP BETWEEN SIDEBAR & BODY
   ONLY IN SIDEBAR LAYOUT
   ========================= */

/* main content wrapper */
html[data-layout="sidebar"] section > .container,
html[data-layout="sidebar"] section > .container-fluid {
  max-width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* first row inside that container */
html[data-layout="sidebar"] section > .container > .row,
html[data-layout="sidebar"] section > .container-fluid > .row {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* kill any extra padding on primary-content column */
html[data-layout="sidebar"] .primary-content {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* =========================
   FIXED SIDEBAR (LEFT RAIL)
   ========================= */
#header > .sidebar {
  position: fixed;
  top: 56px; /* below topbar */
  bottom: 0;
  left: 0;
  width: var(--sidebar-width);
  background: var(--rail, #e9f1ff);
  border-right: 1px solid var(--rail-border, #e9edf3);
  padding: 18px 0;
  z-index: 30;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Brand */
#header > .sidebar .brand {
  margin: 6px 0 18px;
  text-decoration: none;
  padding-left: 14px;
}

#header > .sidebar .brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(
    135deg,
    var(--logo-grad-start, #1b6ef3),
    var(--logo-grad-end, #0ea5e9)
  );
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.25);
}

/* Navigation container */
#header > .sidebar .side-nav {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  width: 100%;
  padding-top: 4px;
}

/* wrapper = item + flyout */
#header > .sidebar .side-group {
  width: 100%;
  position: relative;
}

/* Sidebar nav item */
#header > .sidebar .side-item {
  width: 100%;
  text-decoration: none;
  color: var(--ink, #111827);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  opacity: 0.9;
  transition: opacity 0.2s, background 0.2s, transform 0.2s;
  padding: 10px 14px;
  border-radius: 12px;
  background: transparent;
  border: 0;
  cursor: pointer;
}

#header > .sidebar .side-item:hover,
#header > .sidebar .side-item.is-active {
  opacity: 1;
  background: rgba(37, 99, 235, 0.06);
  transform: translateY(-1px);
}

/* Text label next to icon */
#header > .sidebar .side-label {
  font-size: 13px;
  text-align: left;
  padding: 0;
  flex: 1;
}

/* caret (if ever needed) */
.side-caret {
  display: none;
  font-size: 10px;
}

/* Sidebar icons base */
#header > .sidebar .ico {
  display: inline-block;
  position: relative;
  flex-shrink: 0;
}

/* Cube icon */
#header > .sidebar .cube {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: #eef7ff;
  box-shadow: inset 0 -6px 0 rgba(0, 0, 0, 0.06);
}
#header > .sidebar .cube::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 4px;
  background: var(--ui-accent, #1b6ef3);
}

/* Globe icon */
#header > .sidebar .globe {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 3px solid var(--ui-accent, #1b6ef3);
}
#header > .sidebar .globe::before {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  border: 2px solid var(--ui-accent, #1b6ef3);
  border-top-color: transparent;
  border-bottom-color: transparent;
}

/* Shield icon */
#header > .sidebar .shield {
  width: 26px;
  height: 30px;
  background: conic-gradient(
    from 0deg,
    var(--ui-accent, #1b6ef3) 0 25%,
    rgba(255, 255, 255, 0.9) 25% 100%
  );
  clip-path: polygon(50% 0, 100% 20%, 100% 60%, 50% 100%, 0 60%, 0 20%);
}

/* Chat icon */
#header > .sidebar .chat {
  width: 28px;
  height: 22px;
  border-radius: 6px;
  background: #ffffff;
  border: 2px solid var(--ui-accent, #1b6ef3);
}
#header > .sidebar .chat::after {
  content: "";
  position: absolute;
  left: 6px;
  bottom: -6px;
  width: 10px;
  height: 10px;
  background: #ffffff;
  border-left: 2px solid var(--ui-accent, #1b6ef3);
  border-bottom: 2px solid var(--ui-accent, #1b6ef3);
  transform: rotate(45deg);
}

/* Sidebar dropdown (flyout) */
#header > .sidebar .side-menu {
  position: absolute;
  left: calc(var(--sidebar-width) + 8px); /* sidebar width + gap */
  top: 0;
  min-width: 260px;
  max-width: 360px;
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.22);
  padding: 8px 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 40;
}

#header > .sidebar .side-menu-wide {
  max-width: 420px;
}

/* Show flyout on hover */
#header > .sidebar .side-group:hover .side-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* Items inside flyout */
#header > .sidebar .side-menu-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 16px;
  text-decoration: none;
  color: #111827;
  font-size: 14px;
}
#header > .sidebar .side-menu-item:hover {
  background: #f3f4ff;
}

#header > .sidebar .side-menu-icon {
  width: 22px;
  text-align: center;
  font-size: 16px;
  margin-top: 2px;
}

#header > .sidebar .side-menu-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

#header > .sidebar .side-menu-title {
  font-weight: 600;
}

#header > .sidebar .side-menu-desc {
  font-size: 13px;
  color: #6b7280;
}

/* =========================
   SIDEBAR FOOTER (TOGGLE + OPTIONS)
   ========================= */
#header > .sidebar .side-footer {
  margin-top: auto;
  width: 100%;
  border-top: 1px solid var(--rail-border, #e9edf3);
  padding: 10px 18px 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#header > .sidebar .side-footer-btn {
  border: 0;
  background: transparent;
  padding: 6px;
  border-radius: 999px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

#header > .sidebar .side-footer-btn:hover {
  background: #eef2ff;
}

#header > .sidebar .footer-ico {
  font-size: 18px;
  line-height: 1;
  color: #6b7280;
}

/* =========================
   MINI SIDEBAR (ICONS ONLY)
   ========================= */
html[data-sidebar="mini"] #header > .sidebar {
  align-items: center;
}

/* center brand logo when mini */
html[data-sidebar="mini"] #header > .sidebar .brand {
  padding-left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
}

/* items centered, no side padding */
html[data-sidebar="mini"] #header > .sidebar .side-item {
  justify-content: center;
  padding-inline: 0;
}

/* hide labels in mini mode */
html[data-sidebar="mini"] #header > .sidebar .side-label {
  display: none;
}

/* =========================
   TOP BAR
   ========================= */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 56px;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--surface, #ffffff);
  border-bottom: 1px solid var(--border, #e5e7eb);
  z-index: 999;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 24px;
  min-width: 0;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* logo */
.topbar-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.topbar-logo-mark {
  width: 22px;
  height: 32px;
  border-radius: 6px;
  background: linear-gradient(
    180deg,
    var(--logo-grad-start, #1b6ef3),
    var(--logo-grad-end, #0ea5e9)
  );
  transform: skewX(-8deg);
}
.topbar-logo-text {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #111827;
}

/* simple link / pill */
.tb-link {
  font-size: 14px;
  color: var(--muted, #6b7280);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.tb-link .cart-icon {
  font-size: 15px;
}

.tb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--border, #e5e7eb);
  background: var(--surface, #ffffff);
  color: var(--ink, #111827);
  font-size: 14px;
  cursor: pointer;
}

/* layout toggle – hide if you don't want user control */
.layout-toggle {
  display: none !important;
}
.layout-btn {
  border: 0;
  background: transparent;
  padding: 5px 10px;
  font-size: 10px;
  text-transform: uppercase;
  border-radius: 999px;
  cursor: pointer;
  color: var(--muted, #6b7280);
  transition: background 0.2s, color 0.2s;
}
.layout-btn.is-active {
  background: var(--accent, #1b6ef3);
  color: #ffffff;
}

/* =========================
   THEME TOGGLE
   ========================= */
#themeToggle {
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 600;
  padding: 6px 12px 6px 8px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f3f4f6;
}
#themeToggle .toggle-icon {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 2px solid #d1d5db;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}
#themeToggle .toggle-label {
  color: #6b7280;
}
html[data-theme="on"] #themeToggle {
  background: #e0ecff;
  border-color: #bfdbfe;
}
html[data-theme="on"] #themeToggle .toggle-label {
  color: #2563eb;
}

/* =========================
   ACCOUNT DROPDOWN (TOPBAR)
   ========================= */
.account-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
.account-btn {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 2px solid #e5e7eb;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}
.account-btn-ico {
  font-size: 18px;
  color: #6d28d9;
}
.account-menu {
  position: absolute;
  top: 115%;
  right: 0;
  min-width: 210px;
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 22px 40px rgba(15, 23, 42, 0.18);
  padding: 6px 0;
  display: none;
  z-index: 1000;
}
.account-wrapper.is-open .account-menu {
  display: block;
}
.account-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  text-decoration: none;
  font-size: 14px;
  color: #111827;
}
.account-item:hover {
  background: #f3f4ff;
}
.account-item-ico {
  width: 18px;
  text-align: center;
  color: #6d28d9;
  font-size: 16px;
}

/* =========================
   MAIN HEADER (NAV ROW)
   ========================= */
.main-header {
  position: sticky;
  top: 56px;
  z-index: 998;
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: var(--surface, #ffffff);
  border-bottom: 1px solid var(--border, #e5e7eb);
  margin-top: 56px;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.04);
}

/* show/hide based on layout */
html[data-layout="header"] #header .main-header {
  display: flex !important;
}
html[data-layout="sidebar"] #header .main-header {
  display: none !important;
}

/* nav container */
.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1 1 auto;
}

/* top-level item with dropdown */
.nav-item {
  position: relative;
}
.nav-link {
  border: 0;
  padding: 0;
  background: none;
  font-size: 15px;
  font-weight: 500;
  color: #111827;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}
.nav-link .caret {
  font-size: 12px;
  color: #9ca3af;
}

/* dropdown panel */
.nav-menu {
  position: absolute;
  left: 0;
  top: 100%;
  margin-top: 12px;
  min-width: 260px;
  max-width: 380px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 24px 55px rgba(15, 23, 42, 0.22);
  padding: 10px 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 900;
}
.nav-item-wide .nav-menu {
  max-width: 480px;
}

/* show on hover */
.nav-item:hover > .nav-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* dropdown items */
.nav-menu-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 18px;
  text-decoration: none;
  color: #111827;
  font-size: 14px;
}
.nav-menu-item:hover {
  background: #f3f4ff;
}
.nav-menu-icon {
  width: 22px;
  text-align: center;
  font-size: 16px;
  margin-top: 2px;
}
.nav-menu-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.nav-menu-title {
  font-weight: 600;
}
.nav-menu-desc {
  font-size: 13px;
  color: #6b7280;
}

/* header auth buttons */
.auth-links {
  display: flex;
  align-items: center;
  gap: 12px;
}
.auth-link {
  font-size: 14px;
  text-decoration: none;
  border-radius: 999px;
  padding: 8px 14px;
  border: 1px solid #0000001a;
  color: #111827;
}
.auth-link.primary {
  border-color: var(--accent, #1b6ef3);
  color: #ffffff;
  background: var(--accent, #1b6ef3);
}

/* =========================
   LAYOUT HANDLING
   ========================= */

/* HEADER layout: hide left rail */
html[data-layout="header"] #header > .sidebar {
  display: none !important;
}

/* SIDEBAR layout: show left rail */
html[data-layout="sidebar"] #header > .sidebar {
  display: flex !important;
}

/* helper if you wrap content */
.main-wrap {
  padding: 24px 32px;
  margin-left: 220px;
  margin-top: 56px;
}
html[data-layout="header"] .main-wrap {
  margin-left: 0;
  margin-top: 0;
}

/* when header layout active, remove left margin from big sections */
html[data-layout="header"] .hero,
html[data-layout="header"] .addons-strip,
html[data-layout="header"] .pricing-section,
html[data-layout="header"] .domain-search-section,
html[data-layout="header"] .products-section,
html[data-layout="header"] .guarantees-section,
html[data-layout="header"] .testimonials-section,
html[data-layout="header"] .news-section,
html[data-layout="header"] .cta-start-section,
html[data-layout="header"] .site-footer {
  margin-left: 0;
}

/* SIDEBAR layout: main marketing sections sit to the right of sidebar */
html[data-layout="sidebar"] .hero,
html[data-layout="sidebar"] .addons-strip,
html[data-layout="sidebar"] .pricing-section,
html[data-layout="sidebar"] .domain-search-section,
html[data-layout="sidebar"] .domain-section,
html[data-layout="sidebar"] .products-section,
html[data-layout="sidebar"] .guarantees-section,
html[data-layout="sidebar"] .testimonials-section,
html[data-layout="sidebar"] .news-section,
html[data-layout="sidebar"] .cta-start-section,
html[data-layout="sidebar"] .site-footer {
  margin-left: var(--sidebar-width);
}

/* =========================
   HERO WRAPPER
   ========================= */
.hero {
  position: relative;
  min-height: calc(100vh - 64px);
  padding: 80px 0 60px;
  background: #f3f4f6;
  overflow: hidden;
}

/* default hero-inner */
.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 420px;
  padding: 0 32px;
}

/* THEME VARIANTS */
html[data-theme="on"] .hero {
  background: #e9f1ff;
}

html[data-theme="off"] .hero {
  background: #020617;
}

/* =========================
   RIGHT SIDE DIVIDER / BANNER
   ========================= */
.hero-panel {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 80% 0%, rgba(255, 255, 255, 0.18), transparent 55%),
    radial-gradient(circle at 110% 70%, rgba(15, 23, 42, 0.45), transparent 60%),
    linear-gradient(135deg, #7c3aed, #2563eb);
  clip-path: polygon(
    -191% -476%,
    96% 0,
    169% 0%,
    -219% 570%,
    56% 54%
  );
}

/* NIGHT gradient override */
html[data-theme="off"] .hero-panel {
  background:
    radial-gradient(circle at 80% 0%, rgba(15, 23, 42, 0.7), transparent 60%),
    radial-gradient(circle at 110% 70%, rgba(15, 23, 42, 0.9), transparent 65%),
    linear-gradient(135deg, #0f172a, #1d4ed8);
}

.hero-panel::before,
.hero-panel::after {
  content: "";
  position: absolute;
  right: -8%;
  border-radius: 999px;
  pointer-events: none;
}
.hero-panel::before {
  top: -12%;
  width: 50%;
  height: 64%;
  background: radial-gradient(circle at 20% 40%, rgba(255, 255, 255, 0.28), transparent 65%);
  opacity: 0.7;
}
.hero-panel::after {
  bottom: -16%;
  width: 46%;
  height: 62%;
  background: radial-gradient(circle at 10% 60%, rgba(15, 23, 42, 0.7), transparent 65%);
  opacity: 0.85;
}

/* =========================
   SLIDES
   ========================= */
.hero-slide {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 48px;
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateX(24px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

/* =========================
   LEFT TEXT SIDE
   ========================= */
.copy {
  position: relative;
  max-width: 540px;
  padding-left: 22px;
}

/* sidebar layout: pull text a bit closer if needed */
html[data-layout="sidebar"] .copy {
  padding-left: 22px;
}

.copy::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 3px;
  height: 58px;
  border-radius: 999px;
  background: linear-gradient(180deg, #1b6ef3, #22c55e);
}

.copy::after {
  content: "Hosting • Addons • Security";
  position: absolute;
  left: 22px;
  top: -18px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9ca3af;
}

.copy h1 {
  font-size: clamp(40px, 5.4vw, 62px);
  line-height: 1.04;
  margin: 0 0 0.4em;
  font-weight: 800;
  letter-spacing: -0.035em;
  color: #020617;
}
.copy p {
  margin: 0 0 26px;
  color: #6b7280;
  font-size: 18px;
  max-width: 32rem;
}

/* NIGHT MODE text colors */
html[data-theme="off"] .copy h1 {
  color: #f9fafb;
}
html[data-theme="off"] .copy p {
  color: #9ca3af;
}

/* CTAs */
.cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
}
.btn.primary {
  background: #f97316;
  color: #ffffff;
  box-shadow: 0 12px 32px rgba(249, 115, 22, 0.35);
}
.btn.ghost {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  color: #111827;
}

/* =========================
   RIGHT MOCK IMAGE
   ========================= */
.mock {
  position: relative;
  width: min(560px, 42vw);
  margin-left: auto;
}
.mock-frame {
  width: 100%;
  aspect-ratio: 4 / 3;
  position: relative;
  display: block;
}
.mock-base {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
.wordpress-anime {
  position: absolute;
  left: 50%;
  top: 16%;
  transform: translate(-50%, -50%);
  width: 120px;
  max-width: 22%;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.35));
  animation: wpFloat 1.5s ease-in-out infinite;
}
@keyframes wpFloat {
  0% {
    transform: translate(-50%, -50%) translateY(0) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) translateY(-30px) scale(1.06);
  }
  100% {
    transform: translate(-50%, -50%) translateY(0) scale(1);
  }
}

/* =========================
   DOTS
   ========================= */
.hero-dots {
  position: relative;
  z-index: 1;
  margin: 26px auto 0;
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding-left: 32px;
}

/* sidebar layout: keep aligned with hero text, just shifted right by sidebar */
html[data-layout="sidebar"] .hero-dots {
  margin-left: 0;
  margin-right: 0;
  max-width: 1200px;
  padding-left: 32px;
}

.hero-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.7);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.hero-dot.is-active {
  width: 26px;
  background: #1b6ef3;
  transform: translateY(-1px);
}

/* =========================
   RESPONSIVE HERO (LARGE MOBILE / SMALL TABLET)
   ========================= */
@media (max-width: 960px) {
  .hero {
    margin-left: 0;
    padding: 80px 16px 40px;
  }
  .hero-inner {
    max-width: 100%;
    margin: 0;
    padding: 0;
  }
  .hero-slide {
    position: static;
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .mock {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
  }
  .copy::after {
    top: -14px;
  }
}

/* =========================
   ADDONS STRIP
   ========================= */
.addons-strip {
  padding: 40px 48px 80px;
  background:
    radial-gradient(circle at 0% 0%, rgba(34, 197, 94, 0.10), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(34, 197, 94, 0.08), transparent 55%),
    var(--section-soft);
}

.addons-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
}

.addon-card {
  position: relative;
  border-radius: 18px;
  padding: 26px 20px 22px;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(34, 197, 94, 0.10), rgba(34, 197, 94, 0.02))
    border-box;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--card-border);
  overflow: hidden;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease;
}

.addon-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.65), transparent 60%);
  opacity: 0.85;
  pointer-events: none;
  z-index: 0;
}

.addon-icon,
.addon-title,
.addon-ribbon {
  position: relative;
  z-index: 1;
}

.addon-card.is-active {
  transform: translateY(-4px);
  border-color: #22c55e;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.16);
}

.addon-card.is-active::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 38px;
  height: 38px;
  background: #22c55e;
  clip-path: octagon(68% 0, 100% 0, 100% 100%, 45% 100%, 56% 50%);
  z-index: 1;
}

.addon-card.is-active .addon-ribbon {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #22c55e;
  font-weight: 700;
}

.addon-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.18);
  border-color: #22c55e;
}

.addon-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 16px;
  border-radius: 20px;
  background: rgba(34, 197, 94, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
}
.addon-icon img {
  max-width: 70%;
  max-height: 70%;
  display: block;
}

.addon-title {
  margin: 2px 0 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
}

/* =========================
   HOSTING PRICING SECTION (SCOPED)
   ========================= */
.pricing-section {
  padding: 60px 48px 90px;
  background: var(--section-soft-2);
}

.pricing-section .pricing-wrap {
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-section .pricing-heading {
  margin: 0;
  text-align: center;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.pricing-section .pricing-inner {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.pricing-section .pricing-card {
  position: relative;
  background: #ffffff;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 18px 60px rgba(15, 23, 42, 0.15);
  display: flex;
  flex-direction: column;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease;
}

.pricing-section .pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 80px rgba(15, 23, 42, 0.25);
}

.pricing-section .pricing-card.is-popular {
  border: 1px solid #2563eb;
}

.pricing-section .pricing-card.is-popular::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(37, 99, 235, 0.12), transparent 55%);
  z-index: 0;
}

.pricing-section .pricing-card.is-popular .pricing-body,
.pricing-section .pricing-card.is-popular .pricing-media {
  position: relative;
  z-index: 1;
}

.pricing-section .pricing-ribbon {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 3px 20px;
  background: #ff4b4b;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  z-index: 2;
}

.pricing-section .pricing-media {
  width: 100%;
  height: 260px;
  overflow: hidden;
  background: radial-gradient(circle at top, #0f5adf, #072763);
  border-radius: 32px 32px 50% 50% / 0 0 14% 14%;
}

.pricing-section .pricing-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pricing-section .pricing-body {
  padding: 26px 34px 30px;
  text-align: center;
}

.pricing-section .pricing-title {
  margin: 0 0 6px;
  font-size: 22px;
  font-weight: 700;
  color: #0f172a;
}

.pricing-section .pricing-subtitle {
  margin: 0 0 16px;
  font-size: 14px;
  color: #6b7280;
}

.pricing-section .pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: inline-block;
  text-align: left;
}

.pricing-section .pricing-features li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 6px;
  font-size: 14px;
  color: #374151;
}

.pricing-section .pricing-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #f97316;
}

.pricing-section .pricing-price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-top: 10px;
  padding-top: 18px;
  margin-bottom: 22px;
  border-top: 1px solid #e5e7eb;
}

.pricing-section .pricing-price-prefix {
  font-size: 15px;
  color: #6b7280;
}

.pricing-section .pricing-price-main {
  font-size: 32px;
  font-weight: 800;
  color: #f97316;
}

.pricing-section .pricing-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  border-radius: 999px;
  border: none;
  background: #2563eb;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.35);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.pricing-section .pricing-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.35), transparent 55%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.pricing-section .pricing-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 2px solid rgba(255, 255, 255, 0.35);
  transform: scale(0.9);
  opacity: 0;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.pricing-section .pricing-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 18px 40px rgba(37, 99, 235, 0.5);
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

.pricing-section .pricing-btn:hover::before {
  opacity: 1;
}

.pricing-section .pricing-btn:hover::after {
  opacity: 1;
  transform: scale(1);
}

@media (max-width: 992px) {
  .pricing-section {
    padding-inline: 20px;
  }

  .pricing-section .pricing-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .pricing-section .pricing-inner {
    grid-template-columns: 1fr;
  }
}

#awc-mode-pricing .awc-pricing-item.is-open .awc-pricing-item-body {
  display: block;
}

/* =========================
   DOMAIN SEARCH SECTION
   ========================= */
.domain-search-section {
  padding: 60px 48px 80px;
  background: var(--section-soft);
}
.domain-search-wrap {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.domain-search-heading {
  margin: 0;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.domain-search-form {
  margin-top: 32px;
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
}
.domain-search-input-wrap {
  position: relative;
  flex: 1;
}
.domain-search-input-wrap input {
  width: 100%;
  padding: 16px 18px 16px 48px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 16px;
  outline: none;
  background: var(--surface);
  color: var(--ink);
}
.domain-search-input-wrap input::placeholder {
  color: #9ca3af;
}
.domain-search-input-wrap input:focus {
  border-color: #16a34a;
  box-shadow: 0 0 0 1px rgba(22, 163, 74, 0.35);
}
.domain-search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  opacity: 0.6;
}
.domain-search-btn {
  padding: 14px 32px;
  border-radius: 12px;
  border: none;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  background: #15803d;
  color: #ffffff;
}
.domain-search-btn:hover {
  background: #166534;
}
.domain-tld-row {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px 40px;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}
.domain-tld {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 16px;
}
.domain-tld .tld {
  font-weight: 700;
  color: var(--ink);
}
.domain-tld .tld::before {
  content: "•";
  color: #16a34a;
  margin-right: 4px;
}
.domain-tld .tld-price {
  color: var(--muted);
  font-size: 15px;
}

/* =========================
   DOMAIN CTA SECTION
   ========================= */
.domain-section {
  padding: 60px 48px 90px;
  background: var(--section-soft-2);
}

.domain-wrap {
  max-width: 1200px;
  margin: 0 auto;
}

.domain-heading {
  margin: 0;
  text-align: center;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.domain-cta-inner {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.domain-card {
  background: var(--card-bg);
  border-radius: 24px;
  padding: 24px 28px;
  border: 1px solid var(--card-border);
  box-shadow: var(--card-shadow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.domain-copy {
  max-width: 70%;
}

.domain-eyebrow {
  margin: 0 0 4px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
}

.domain-title {
  margin: 0 0 6px;
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
}

.domain-desc {
  margin: 0 0 14px;
  font-size: 14px;
  color: var(--muted);
}

.domain-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
}

.domain-link .arrow {
  font-size: 18px;
  line-height: 1;
}

.domain-link:hover {
  text-decoration: underline;
}

.domain-icon-wrap {
  width: 96px;
  height: 96px;
  border-radius: 24px;
  background: #eef2ff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.domain-icon-wrap img {
  max-width: 75%;
  max-height: 75%;
  display: block;
}

@media (max-width: 992px) {
  .domain-cta-inner {
    grid-template-columns: 1fr;
  }
}

/* =========================
   GUARANTEES SECTION
   ========================= */
.guarantees-section {
  padding: 70px 48px 90px;
  background: var(--guarantees-bg);
  color: var(--guarantees-heading);
}
.guarantees-wrap {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.guarantees-heading {
  margin: 0 0 10px;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--guarantees-heading);
}
.guarantees-subheading {
  margin: 0 0 40px;
  font-size: 16px;
  color: var(--guarantees-sub);
}
.guarantees-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 40px 32px;
}
.guarantee-card {
  padding: 10px 18px;
  background: var(--guarantees-card-bg);
  border-radius: 18px;
  border: 1px solid var(--guarantees-card-border);
}
.guarantee-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  border-radius: 50%;
  border: 2px solid var(--guarantees-icon-border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.guarantee-icon img {
  max-width: 60%;
  max-height: 60%;
  filter: invert(1);
}
.guarantee-title {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  color: var(--guarantees-heading);
}
.guarantee-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--guarantees-card-text);
}

/* =========================
   TESTIMONIALS
   ========================= */
.testimonials-section {
  padding: 80px 48px 110px;
  background: var(--surface);
}
.testimonials-wrap {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.testimonials-heading {
  margin: 0 0 8px;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.testimonials-subheading {
  margin: 0 0 40px;
  font-size: 16px;
  color: var(--muted);
}
.testimonials-viewport {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  max-width: 1200px;
}
.testimonials-track {
  display: flex;
  transition: transform 0.5s ease;
}
.testimonial-card {
  flex: 0 0 auto;
  width: auto;
  max-width: none;
  margin: 15px;
  display: flex;
  flex-direction: column;
  text-align: left;
  background: var(--card-bg);
  border-radius: 18px;
  padding: 32px 34px 26px;
  border: 1px solid var(--card-border);
  box-shadow: var(--card-shadow);
}
.testimonial-text {
  margin: 0 0 26px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
}
.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-avatar {
  position: relative;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.testimonial-quote-badge {
  position: absolute;
  right: -4px;
  bottom: -4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #16a34a;
  color: #ffffff;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonial-meta {
  display: flex;
  flex-direction: column;
}
.testimonial-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
}
.testimonial-site {
  font-size: 14px;
  color: #16a34a;
  text-decoration: none;
}
.testimonial-site:hover {
  text-decoration: underline;
}
.testimonials-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
}
.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.7);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.testimonial-dot.is-active {
  width: 24px;
  background: var(--accent);
  transform: translateY(-1px);
}

/* =========================
   NEWS SECTION
   ========================= */
.news-section {
  padding: 80px 48px 100px;
  background: var(--surface);
}
.news-wrap {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.news-heading {
  margin: 0 0 8px;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.news-subheading {
  margin: 0 0 40px;
  font-size: 16px;
  color: var(--muted);
}
.news-viewport {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  max-width: 1200px;
}
.news-track {
  display: flex;
  transition: transform 0.5s ease;
}
.news-card {
  flex: 0 0 auto;
  width: auto;
  max-width: none;
  margin: 15px;
  text-align: left;
  background: var(--card-bg);
  border-radius: 18px;
  padding: 26px 30px 22px;
  border: 1px solid var(--card-border);
  box-shadow: var(--card-shadow);
}
.news-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 14px;
}
.news-meta-icon {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 2px solid #94a3b8;
  display: inline-block;
}
.news-title {
  margin: 0 0 22px;
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
}
.news-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
}
.news-link:hover {
  text-decoration: underline;
}
.news-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
}
.news-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.7);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.news-dot.is-active {
  width: 24px;
  background: var(--accent);
  transform: translateY(-1px);
}

/* =========================
   CTA START SECTION
   ========================= */
.cta-start-section {
  padding: 80px 48px 80px;
  background: linear-gradient(180deg, var(--cta-bg-from), var(--cta-bg-to));
}
.cta-start-wrap {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
  color: var(--cta-text);
}
.cta-start-heading {
  margin: 0 0 16px;
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--cta-text);
}
.cta-start-text {
  margin: 0 0 32px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--cta-sub);
}
.cta-start-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 999px;
  border: none;
  background: #ffffff;
  color: #0f172a;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.45);
}
.cta-start-btn:hover {
  transform: translateY(-1px);
}

/* =========================
   FOOTER
   ========================= */
.site-footer {
  padding: 56px 48px 28px;
  background: var(--footer-bg);
  border-top: 1px solid var(--footer-border);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 2.4fr) repeat(3, minmax(0, 1fr));
  gap: 48px;
  align-items: flex-start;
}
.footer-col {
  font-size: 14px;
  color: var(--footer-text);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, #1b6ef3, #7bb0ff);
}
.footer-logo-text {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--footer-text);
}
.footer-desc {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--footer-muted);
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.footer-social-btn {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid var(--footer-pill-border);
  background: var(--footer-pill-bg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  color: var(--footer-text);
}
.footer-social-btn:hover {
  border-color: var(--footer-link);
  color: var(--footer-link);
}

.footer-gateways-title {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--footer-muted);
}
.footer-payments {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
}
.payment-logo {
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--footer-pill-bg);
  border: 1px solid var(--footer-pill-border);
  min-width: 68px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.payment-logo img {
  max-height: 16px;
}

.footer-heading {
  margin: 0 0 14px;
  font-size: 15px;
  font-weight: 700;
  color: var(--footer-text);
}
.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links a {
  text-decoration: none;
  color: var(--footer-muted);
}
.footer-links a:hover {
  color: var(--footer-link);
}

.footer-bottom {
  border-top: 1px solid var(--footer-border);
  padding-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy {
  margin: 0;
  font-size: 13px;
  color: var(--footer-muted);
}
.footer-bottom-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}
.footer-bottom-links a {
  text-decoration: none;
  color: var(--footer-muted);
}
.footer-bottom-links a:hover {
  color: var(--footer-link);
}
.footer-dot {
  color: var(--footer-muted);
}

.footer-bottom-actions {
  display: flex;
  gap: 10px;
}
.footer-lang {
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--footer-pill-bg);
  border: 1px solid var(--footer-pill-border);
  color: var(--footer-text);
  cursor: pointer;
}
.footer-top {
  position: relative;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid var(--footer-pill-border);
  background: var(--footer-pill-bg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-top-track {
  position: absolute;
  left: 50%;
  top: 7px;
  bottom: 7px;
  width: 2px;
  background: var(--footer-pill-border);
  border-radius: 999px;
  transform: translateX(-50%);
}
.footer-top-arrow {
  position: relative;
  color: var(--footer-text);
}

/* =========================
   RESPONSIVE (GLOBAL)
   ========================= */
@media (max-width: 1200px) {
  .nav-menu {
    max-width: 360px;
  }
}

/* main tablet/mobile responsive fix */
@media (max-width: 1024px) {
  /* kill hero wedge stripe on tablet & below */
  .hero-panel {
    display: none !important;
  }

  .hero {
    margin-left: 0 !important;
    min-height: auto !important;
    padding: 80px 16px 40px !important;
  }

  .hero-inner {
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    min-height: auto !important;
  }

  .hero-slide {
    position: relative !important;
    inset: auto !important;
    grid-template-columns: 1fr !important;
    gap: 30px !important;
    transform: none !important;
    text-align: left !important;
  }

  .hero-slide.is-active {
    opacity: 1 !important;
    pointer-events: auto !important;
  }

  .mock {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  #header > .sidebar {
    display: none !important;
  }
  .topbar {
    left: 0;
  }
  .main-header {
    padding-inline: 20px;
  }

  /* all sections full width on mobile */
  .hero,
  .addons-strip,
  .pricing-section,
  .domain-search-section,
  .products-section,
  .guarantees-section,
  .testimonials-section,
  .news-section,
  .cta-start-section,
  .site-footer {
    margin-left: 0 !important;
    padding-inline: 20px !important;
  }

  .addons-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .pricing-section .pricing-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .products-grid {
    grid-template-columns: 1fr;
  }
  .guarantees-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .site-footer {
    padding-inline: 20px;
  }
  .footer-main {
    grid-template-columns: 1fr;
  }
  .nav-menu {
    left: 0;
    right: auto;
  }

  .domain-search-form {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-dots {
    justify-content: center;
    padding-left: 20px;
    padding-right: 20px;
  }
}
