/* =========================================================
   SKILLED HOST MAIN WEBSITE
   CLEAN FULL VERSION
   English / Arabic + Light / Dark
   Simple global hosting website style
   ========================================================= */


/* =========================================================
   01) BRAND TOKENS
   ========================================================= */

:root {
  --sh-navy: #071a3d;
  --sh-navy-2: #0b2f57;
  --sh-orange: #ff6b00;
  --sh-orange-dark: #e85f00;
  --sh-teal: #12a39a;

  --sh-page: #f4f7fb;
  --sh-surface: #ffffff;
  --sh-surface-2: #eef3f8;
  --sh-heading: #071a3d;
  --sh-text: #172033;
  --sh-muted: #647084;
  --sh-border: #dce3ee;

  --sh-header-bg: rgba(255, 255, 255, 0.96);
  --sh-footer-bg: #071a3d;

  --sh-radius-sm: 10px;
  --sh-radius-md: 16px;
  --sh-radius-lg: 24px;

  --sh-shadow-sm: 0 8px 22px rgba(7, 26, 61, 0.07);
  --sh-shadow-md: 0 16px 36px rgba(7, 26, 61, 0.10);

  --sh-container: 1420px;
  --sh-container-padding: 16px;

  --sh-font-en: "Inter", Arial, Helvetica, sans-serif;
  --sh-font-ar: "Cairo", Arial, Helvetica, sans-serif;
}

html[data-theme="dark"] {
  --sh-page: #0b1220;
  --sh-surface: #111827;
  --sh-surface-2: #172033;
  --sh-heading: #f8fafc;
  --sh-text: #e5edf7;
  --sh-muted: #a7b3c5;
  --sh-border: rgba(255, 255, 255, 0.12);

  --sh-header-bg: rgba(11, 18, 32, 0.96);
  --sh-footer-bg: #07111f;

  --sh-shadow-sm: 0 8px 22px rgba(0, 0, 0, 0.20);
  --sh-shadow-md: 0 16px 36px rgba(0, 0, 0, 0.28);
}


/* =========================================================
   02) RESET + BASE
   ========================================================= */

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  padding-top: 76px;
  overflow-x: hidden;
  color: var(--sh-text);
  background: var(--sh-page);
  font-family: var(--sh-font-en);
  line-height: 1.6;
}

html[lang="ar"] body {
  font-family: var(--sh-font-ar);
}

html[dir="rtl"] body {
  direction: rtl;
  text-align: right;
}

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

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

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

.container {
  width: min(100% - 32px, var(--sh-container));
  margin-inline: auto;
}

.section {
  padding: 82px 0;
}

section,
[id] {
  scroll-margin-top: 96px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--sh-orange);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

html[dir="rtl"] .eyebrow {
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--sh-heading);
  line-height: 1.15;
}

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(42px, 6vw, 68px);
  letter-spacing: -0.04em;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 44px);
  letter-spacing: -0.03em;
}

h3 {
  margin-bottom: 12px;
  font-size: 21px;
}

html[dir="rtl"] h1,
html[dir="rtl"] h2 {
  letter-spacing: 0;
}

html[lang="ar"] h1,
html[lang="ar"] h2,
html[lang="ar"] h3,
html[lang="ar"] .nav-trigger,
html[lang="ar"] .nav-link,
html[lang="ar"] .btn {
  font-family: var(--sh-font-ar);
}

html[lang="en"] h1,
html[lang="en"] h2,
html[lang="en"] h3,
html[lang="en"] .nav-trigger,
html[lang="en"] .nav-link,
html[lang="en"] .btn {
  font-family: var(--sh-font-en);
}
p {
  color: var(--sh-muted);
}


/* =========================================================
   03) BUTTONS + UTILITIES
   ========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  color: var(--sh-heading);
  background: var(--sh-surface);
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: 0.18s ease;
}

.btn-primary {
  color: #ffffff;
  background: var(--sh-orange);
  border-color: var(--sh-orange);
}

.btn-primary:hover {
  background: var(--sh-orange-dark);
  border-color: var(--sh-orange-dark);
}

.btn-secondary,
.btn-ghost {
  color: var(--sh-heading);
  background: var(--sh-surface);
  border-color: var(--sh-border);
}

.btn-secondary:hover,
.btn-ghost:hover {
  border-color: var(--sh-orange);
}

.btn-large {
  min-height: 52px;
  padding-inline: 24px;
  font-size: 15px;
}

.utility-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  min-width: 42px;
  height: 42px;
  padding: 0;
  color: var(--sh-heading);
  background: var(--sh-surface);
  border: 1px solid var(--sh-border);
  border-radius: 999px;
  cursor: pointer;
  transition: 0.18s ease;
}

.utility-icon-btn:hover {
  color: var(--sh-orange);
  border-color: var(--sh-orange);
}

.utility-icon-btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.theme-icon-sun {
  display: none;
}

html[data-theme="dark"] .theme-icon-moon {
  display: none;
}

html[data-theme="dark"] .theme-icon-sun {
  display: block;
}

.lang-icon-btn {
  gap: 5px;
  width: auto;
  min-width: 56px;
  padding-inline: 10px;
}

.lang-code {
  color: var(--sh-heading);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.utility-icon-btn:hover .lang-code {
  color: var(--sh-orange);
}

/* =========================================================
   04) HEADER + GLOBAL NAVIGATION
   Desktop header + mega menu polish
   ========================================================= */

.site-header {
  position: fixed;
  top: 0;
  inset-inline-start: 0;
  inset-inline-end: 0;
  z-index: 1000;
  width: 100%;
  background: var(--sh-header-bg);
  border-bottom: 1px solid var(--sh-border);
  box-shadow: 0 6px 18px rgba(7, 26, 61, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

html[data-theme="dark"] .site-header {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.26);
}

.site-header .container {
  width: min(100% - 32px, var(--sh-container));
}

.header-inner {
  display: flex;
  align-items: center;
  min-height: 76px;
  gap: 18px;
}

/* Brand / Logo */
.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo {
  display: block;
  width: auto;
  height: 42px;
  max-width: 180px;
  object-fit: contain;
}

.brand-logo-en,
.brand-logo-ar,
.brand-logo-light,
.brand-logo-dark {
  display: none;
}

html[lang="en"][data-theme="light"] .brand-logo-en.brand-logo-light {
  display: block;
}

html[lang="en"][data-theme="dark"] .brand-logo-en.brand-logo-dark {
  display: block;
}

html[lang="ar"][data-theme="light"] .brand-logo-ar.brand-logo-light {
  display: block;
}

html[lang="ar"][data-theme="dark"] .brand-logo-ar.brand-logo-dark {
  display: block;
}

html[lang="ar"] .brand {
  min-width: 220px;
}

html[lang="ar"] .brand-logo {
  height: 42px;
  max-width: 240px;
  object-fit: contain;
}

/* Main navigation */
.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex: 1;
  min-width: 0;
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-item.has-mega::after {
  content: "";
  position: absolute;
  top: 100%;
  inset-inline-start: -14px;
  inset-inline-end: -14px;
  height: 16px;
}

.nav-trigger,
.nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 10px;
  color: var(--sh-text);
  background: transparent;
  border: 0;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: color 0.18s ease, background 0.18s ease;
}

/* Dropdown icon */
.nav-trigger::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-inline-start: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  opacity: 0.72;
  flex-shrink: 0;
  transform: rotate(45deg) translateY(-2px);
}

.nav-trigger:hover,
.nav-link:hover,
.nav-item:hover .nav-trigger,
.nav-item.is-active .nav-trigger {
  color: var(--sh-orange);
  background: rgba(255, 107, 0, 0.08);
}

/* Mega menu */
.mega-panel {
  position: absolute;
  top: calc(100% + 8px);
  inset-inline-start: 50%;
  z-index: 120;
  display: grid;
  gap: 12px;
  padding: 16px;
  background: var(--sh-surface);
  border: 1px solid var(--sh-border);
  border-radius: 16px;
  box-shadow: 0 14px 30px rgba(7, 26, 61, 0.10);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(6px);
  pointer-events: none;
  transition: opacity 0.16s ease, visibility 0.16s ease, transform 0.16s ease;
}

html[data-theme="dark"] .mega-panel {
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24);
}

.nav-item.is-active .mega-panel {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.mega-panel-wide {
  grid-template-columns: repeat(2, minmax(230px, 1fr));
  width: min(620px, calc(100vw - 40px));
}

.mega-panel-small {
  grid-template-columns: 1fr;
  width: min(330px, calc(100vw - 40px));
}

.mega-column {
  display: grid;
  gap: 4px;
}

.mega-label {
  display: block;
  margin: 0 0 7px;
  color: var(--sh-orange);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mega-link {
  display: grid;
  gap: 2px;
  padding: 9px 10px;
  border-radius: 11px;
  transition: background 0.18s ease;
}

.mega-link:hover {
  background: var(--sh-surface-2);
}

.mega-link strong {
  color: var(--sh-heading);
  font-size: 13.5px;
  line-height: 1.25;
}

.mega-link small {
  color: var(--sh-muted);
  font-size: 12px;
  line-height: 1.35;
}

/* Header actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.header-actions .btn {
  min-height: 40px;
  padding-inline: 14px;
  font-size: 13px;
}

.header-actions .utility-icon-btn {
  width: 40px;
  min-width: 40px;
  height: 40px;
}

.header-actions .lang-icon-btn {
  width: auto;
  min-width: 54px;
  padding-inline: 10px;
}

/* Mobile menu button */
.mobile-menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  margin-inline-start: auto;
  padding: 0;
  background: var(--sh-surface);
  border: 1px solid var(--sh-border);
  border-radius: 12px;
  cursor: pointer;
}

.mobile-menu-btn span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--sh-heading);
  border-radius: 999px;
}

/* =========================================================
   04.1) RTL HEADER CONTROL
   Arabic mirror of English header
   Actions left / Menu center / Logo right
   ========================================================= */

html[dir="rtl"] .header-inner {
  direction: rtl;
}

html[dir="rtl"] .brand {
  order: 0;
}

html[dir="rtl"] .main-nav {
  order: 0;
  direction: rtl;
}

html[dir="rtl"] .header-actions {
  order: 0;
  direction: rtl;
}

html[dir="rtl"] .nav-trigger,
html[dir="rtl"] .nav-link {
  direction: rtl;
  font-weight: 800;
}

html[dir="rtl"] .nav-trigger::after {
  margin-inline-start: 8px;
  margin-inline-end: 0;
}

html[dir="rtl"] .mega-panel {
  direction: rtl;
  text-align: right;
  transform: translateX(50%) translateY(6px);
}

html[dir="rtl"] .nav-item.is-active .mega-panel {
  transform: translateX(50%) translateY(0);
}

html[dir="rtl"] .mega-label {
  letter-spacing: 0;
}

html[dir="rtl"] .mega-label,
html[dir="rtl"] .mega-link,
html[dir="rtl"] .mega-link strong,
html[dir="rtl"] .mega-link small {
  text-align: right;
}

html[dir="rtl"] .header-actions .btn {
  direction: rtl;
}

/* =========================================================
  05) HERO
  Modern global hero with theme/store/dashboard visual
   ========================================================= */

.hero-section {
  position: relative;
  overflow: hidden;
  padding: 76px 0 72px;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: var(--sh-border);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(460px, 1.08fr);
  gap: 46px;
  align-items: center;
}

.hero-content {
  max-width: 720px;
}

.hero-content h1 {
  max-width: 760px;
  margin-bottom: 22px;
  color: var(--sh-heading);
  font-size: clamp(42px, 4.45vw, 60px);
  line-height: 1.09;
  letter-spacing: -0.045em;
}

.hero-text {
  max-width: 690px;
  margin-bottom: 28px;
  color: var(--sh-muted);
  font-size: 16px;
  line-height: 1.72; 
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

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

.hero-points span {
  display: inline-flex;
  align-items: center;
  min-height: 55px;
  padding: 5px 5px;
  color: var(--sh-heading);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--sh-border);
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(7, 26, 61, 0.045);
  font-size: 13px;
  font-weight: 850;
  line-height: 1;
}

/* =========================================================
   05.1) HERO VISUAL
   Fake product/theme/store dashboard preview
   ========================================================= */

.hero-visual {
  position: relative;
  min-height: 560px;
  justify-self: end;
  width: min(100%, 700px);
}

.hero-browser-card {
  position: absolute;
  top: -113px;
  right: 0;
  z-index: 1;
  width: min(100%, 620px);
  overflow: hidden;
  background: var(--sh-surface);
  border: 1px solid var(--sh-border);
  border-radius: 26px;
  box-shadow: 0 24px 60px rgba(7, 26, 61, 0.16);
}

.hero-browser-top {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 18px;
  background: #071326;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.hero-browser-top span {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.28);
  border-radius: 999px;
}

.hero-browser-top span:first-child {
  background: var(--sh-orange);
}

.hero-browser-top strong {
  margin-inline-start: 8px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
}

.hero-browser-body {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  min-height: 360px;
  background:
    linear-gradient(135deg, rgba(255, 107, 0, 0.06), transparent 40%),
    var(--sh-surface);
}

.hero-browser-sidebar {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 22px 18px;
  background: var(--sh-surface-2);
  border-inline-end: 1px solid var(--sh-border);
}

.hero-browser-sidebar span {
  margin-bottom: 6px;
  color: var(--sh-orange);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.hero-browser-sidebar strong {
  display: block;
  padding: 9px 10px;
  color: var(--sh-heading);
  background: var(--sh-surface);
  border: 1px solid var(--sh-border);
  border-radius: 12px;
  font-size: 12px;
  font-weight: 900;
}

.hero-theme-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 18px;
}

.hero-theme-card {
  position: relative;
  min-height: 148px;
  padding: 18px;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid var(--sh-border);
}

.hero-theme-card::before {
  content: "";
  position: absolute;
  inset: auto 18px 18px;
  height: 38px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.24);
}

.hero-theme-card::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 68px;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.22);
}

.hero-theme-card span,
.hero-theme-card h3 {
  position: relative;
  z-index: 1;
}

.hero-theme-card span {
  display: inline-flex;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-theme-card h3 {
  max-width: 150px;
  margin: 0;
  color: #ffffff;
  font-size: 20px;
  line-height: 1.15;
}

.hero-theme-card-dark {
  background: linear-gradient(135deg, #071a3d, #16284a);
}

.hero-theme-card-orange {
  background: linear-gradient(135deg, #ff6b00, #ff9a4d);
}

.hero-theme-card-teal {
  background: linear-gradient(135deg, #087f78, #12a39a);
}

.hero-theme-card-light {
  background: linear-gradient(135deg, #25314a, #647084);
}

.hero-dashboard-card {
  position: absolute;
  top: 305px;
  left: -40px;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  width: min(100%, 440px);
  padding: 14px;
  background: rgba(7, 19, 38, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  box-shadow: 0 22px 50px rgba(7, 26, 61, 0.20);
}

.hero-dashboard-card div {
  padding: 14px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 16px;
}

.hero-dashboard-card span {
  display: block;
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 11px;
  font-weight: 800;
}

.hero-dashboard-card strong {
  display: block;
  color: #ffffff;
  font-size: 24px;
  font-weight: 950;
  line-height: 1;
}

.hero-store-card {
  position: absolute;
  top: 420px;
  right: 308px;
  z-index: 4;
  display: grid;
  gap: 12px;
  width: min(100%, 300px);
  padding: 16px;
  background: var(--sh-surface);
  border: 1px solid var(--sh-border);
  border-radius: 22px;
  box-shadow: 0 20px 44px rgba(7, 26, 61, 0.14);
}

.hero-product-row {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.hero-product-row > span {
  width: 46px;
  height: 46px;
  background:
    linear-gradient(135deg, rgba(255, 107, 0, 0.18), rgba(18, 163, 154, 0.16)),
    var(--sh-surface-2);
  border: 1px solid var(--sh-border);
  border-radius: 15px;
}

.hero-product-row strong {
  display: block;
  color: var(--sh-heading);
  font-size: 13px;
  font-weight: 950;
  line-height: 1.25;
}

.hero-product-row small {
  display: block;
  margin-top: 3px;
  color: var(--sh-muted);
  font-size: 12px;
  line-height: 1.35;
}

.domain-card {
  padding: 30px;
  background: var(--sh-surface);
  border: 1px solid var(--sh-border);
  border-radius: var(--sh-radius-lg);
  box-shadow: var(--sh-shadow-md);
}

.hero-domain-card {
  position: absolute;
  right: -103px;
  bottom: -65px;
  z-index: 5;
  width: min(100%, 400px);
}

.domain-card h2 {
  margin-bottom: 10px;
  color: var(--sh-heading);
  font-size: 30px;
}

.domain-card p {
  margin-bottom: 22px;
  color: var(--sh-muted);
  font-size: 15px;
  line-height: 1.65;
}

.domain-search {
  display: flex;
  gap: 10px;
  padding: 8px;
  background: var(--sh-surface-2);
  border: 1px solid var(--sh-border);
  border-radius: 999px;
}

.domain-search input {
  width: 100%;
  min-width: 0;
  padding: 0 12px;
  color: var(--sh-text);
  background: transparent;
  border: 0;
  outline: 0;
}

.domain-search button {
  min-height: 46px;
  padding: 0 22px;
  color: #ffffff;
  background: var(--sh-navy);
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
}

.domain-search button:hover {
  background: var(--sh-navy-2);
}

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

.domain-tags span {
  padding: 6px 11px;
  color: var(--sh-heading);
  background: var(--sh-surface);
  border: 1px solid var(--sh-border);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

/* =========================================================
   05.2) HERO RTL
   Arabic desktop: text right / visual left
   ========================================================= */

html[dir="rtl"] .hero-grid {
  direction: ltr;
  grid-template-columns: minmax(460px, 1.08fr) minmax(0, 0.92fr);
}

html[dir="rtl"] .hero-content {
  grid-column: 2;
  grid-row: 1;
  direction: rtl;
  justify-self: end;
  max-width: 760px;
  text-align: right;
}

html[dir="rtl"] .hero-visual {
  grid-column: 1;
  grid-row: 1;
  direction: rtl;
  justify-self: start;
}

html[dir="rtl"] .hero-content h1 {
  max-width: 760px;
  letter-spacing: 0;
  font-size: clamp(42px, 4.25vw, 58px);
  line-height: 1.2;
}

html[dir="rtl"] .hero-text {
  max-width: 700px;
  line-height: 1.9;
}

html[dir="rtl"] .hero-actions,
html[dir="rtl"] .hero-points {
  justify-content: flex-start;
}

html[dir="rtl"] .hero-browser-card {
  right: auto;
  left: 0;
}

html[dir="rtl"] .hero-browser-sidebar {
  border-inline-end: 0;
  border-inline-start: 1px solid var(--sh-border);
}

html[dir="rtl"] .hero-theme-card::after {
  right: auto;
  left: 18px;
}

html[dir="rtl"] .hero-dashboard-card {
  left: auto;
  right: 4px;
}

html[dir="rtl"] .hero-store-card {
  right: auto;
  left: 18px;
}

html[dir="rtl"] .hero-domain-card {
  right: -18px;
  left: auto;
}

html[dir="rtl"] .domain-card {
  direction: rtl;
  text-align: right;
}

/* =========================================================
   05.3) HERO DARK MODE
   ========================================================= */

html[data-theme="dark"] .hero-section {
  background:
    radial-gradient(circle at 72% 22%, rgba(18, 163, 154, 0.10), transparent 34%),
    radial-gradient(circle at 18% 18%, rgba(255, 107, 0, 0.08), transparent 32%),
    var(--sh-page);
}

html[data-theme="dark"] .hero-points span,
html[data-theme="dark"] .domain-tags span {
  background: rgba(255, 255, 255, 0.035);
  box-shadow: none;
}

html[data-theme="dark"] .hero-browser-card,
html[data-theme="dark"] .hero-store-card,
html[data-theme="dark"] .domain-card {
  box-shadow: none;
}

html[data-theme="dark"] .hero-browser-top {
  background: #050b16;
}

html[data-theme="dark"] .hero-dashboard-card {
  background: #050b16;
  box-shadow: none;
}

html[data-theme="dark"] .domain-search button {
  background: var(--sh-orange);
}

html[data-theme="dark"] .domain-search button:hover {
  background: var(--sh-orange-dark);
}

/* =========================================================
   05.4) HERO RESPONSIVE
   ========================================================= */

@media (max-width: 1180px) {
  .hero-grid,
  html[dir="rtl"] .hero-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .hero-content,
  html[dir="rtl"] .hero-content {
    grid-column: auto;
    max-width: 820px;
  }

  .hero-visual,
  html[dir="rtl"] .hero-visual {
    grid-column: auto;
    grid-row: auto;
    justify-self: stretch;
    width: 100%;
    max-width: 760px;
    min-height: 620px;
    margin-inline: auto;
  }
}

@media (max-width: 760px) {
  .hero-section {
    padding: 62px 0 64px;
  }

  .hero-grid,
  html[dir="rtl"] .hero-grid {
    gap: 34px;
  }

  .hero-content h1 {
    margin-bottom: 20px;
    font-size: clamp(38px, 10vw, 48px);
    line-height: 1.12;
  }

  .hero-text {
    margin-bottom: 26px;
    font-size: 15.5px;
    line-height: 1.78;
  }

  .hero-actions {
    flex-direction: column;
    gap: 10px;
  }

  .hero-actions .btn {
    width: 100%;
    min-height: 52px;
  }

  .hero-points {
    gap: 8px;
  }

  .hero-points span {
    min-height: 34px;
    font-size: 12.5px;
  }

  .hero-visual,
  html[dir="rtl"] .hero-visual {
    min-height: auto;
  }

  .hero-browser-card,
  .hero-dashboard-card,
  .hero-store-card,
  .hero-domain-card,
  html[dir="rtl"] .hero-browser-card,
  html[dir="rtl"] .hero-dashboard-card,
  html[dir="rtl"] .hero-store-card,
  html[dir="rtl"] .hero-domain-card {
    position: static;
    width: 100%;
  }

  .hero-visual {
    display: grid;
    gap: 14px;
  }

  .hero-browser-body {
    grid-template-columns: 1fr;
  }

  .hero-browser-sidebar {
    display: none;
  }

  .hero-theme-grid {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .hero-theme-card {
    min-height: 132px;
  }

  .hero-dashboard-card {
    grid-template-columns: 1fr;
  }

  .hero-store-card {
    padding: 18px;
  }

  .domain-card {
    padding: 24px 20px;
    border-radius: 22px;
  }

  .domain-card h2 {
    font-size: 28px;
  }

  .domain-search {
    flex-direction: column;
    border-radius: var(--sh-radius-md);
  }

  .domain-search input {
    min-height: 46px;
  }

  .domain-search button {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .hero-section {
    padding-top: 54px;
  }

  .hero-content h1 {
    font-size: clamp(34px, 10.4vw, 42px);
  }

  html[dir="rtl"] .hero-content h1 {
    font-size: clamp(32px, 9.8vw, 40px);
  }

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

  .hero-browser-top {
    min-height: 48px;
    padding-inline: 14px;
  }

  .hero-dashboard-card,
  .hero-store-card,
  .domain-card {
    border-radius: 20px;
  }
}

/* =========================================================
   05.5) HERO DESKTOP FINAL POLISH
   Better desktop balance after wider container
   ========================================================= */

@media (min-width: 1181px) {
  .hero-section {
    padding-top: 68px;
    padding-bottom: 78px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.94fr) minmax(540px, 1.06fr);
    gap: 54px;
  }

  .hero-content {
    max-width: 780px;
  }

  .hero-content h1 {
    max-width: 800px;
    font-size: clamp(48px, 4.7vw, 66px);
    line-height: 1.08;
  }

  .hero-text {
    max-width: 660px;
  }

  .hero-visual {
    width: min(100%, 730px);
    min-height: 590px;
  }

  .hero-browser-card {
    top: -76px;
    width: min(100%, 630px);
  }

  .hero-dashboard-card {
    top: 318px;
    left: 12px;
  }

  .hero-store-card {
    top: 438px;
    right: 326px;
  }

  .hero-domain-card {
    right: -42px;
    bottom: -34px;
    width: min(100%, 390px);
  }

  html[dir="rtl"] .hero-grid {
    grid-template-columns: minmax(540px, 1.06fr) minmax(0, 0.94fr);
  }

  html[dir="rtl"] .hero-browser-card {
    left: 0;
    right: auto;
  }

  html[dir="rtl"] .hero-dashboard-card {
    right: 12px;
    left: auto;
  }

  html[dir="rtl"] .hero-store-card {
    left: 326px;
    right: auto;
  }

  html[dir="rtl"] .hero-domain-card {
    right: -42px;
    left: auto;
  }
}

@media (min-width: 1181px) and (max-width: 1360px) {
  .hero-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(500px, 1.05fr);
    gap: 38px;
  }

  .hero-content h1 {
    font-size: clamp(44px, 4.3vw, 58px);
  }

  .hero-visual {
    width: min(100%, 660px);
  }

  .hero-browser-card {
    width: min(100%, 590px);
  }

  .hero-domain-card {
    right: 0;
    width: min(100%, 370px);
  }

  html[dir="rtl"] .hero-domain-card {
    right: 0;
    left: auto;
  }
}

/* =========================================================
   05.6) HERO FINAL ARABIC + DESKTOP BALANCE FIX
   Keep English good, Arabic text right / visual left, responsive-safe
   ========================================================= */

@media (min-width: 1181px) {
  .container {
    width: min(100% - 28px, 1500px);
  }

  .hero-section {
    padding-top: 72px;
    padding-bottom: 92px;
  }

  .hero-grid {
    gap: 58px;
  }

  .hero-domain-card {
    right: -22px;
    bottom: -22px;
  }

  html[dir="rtl"] .hero-content,
  html[dir="rtl"] .hero-content h1,
  html[dir="rtl"] .hero-text {
    text-align: right;
  }

  html[dir="rtl"] .hero-actions,
  html[dir="rtl"] .hero-points {
    justify-content: flex-start;
  }

  html[dir="rtl"] .hero-visual {
    transform: translateY(34px);
  }

  html[dir="rtl"] .hero-browser-card {
    left: 0;
    right: auto;
  }

  html[dir="rtl"] .hero-dashboard-card {
    right: 18px;
    left: auto;
  }

  html[dir="rtl"] .hero-store-card {
    left: 330px;
    right: auto;
  }

  html[dir="rtl"] .hero-domain-card {
    right: clamp(220px, 18vw, 360px);
    left: auto;
    bottom: -12px;
  }
}

@media (min-width: 1181px) and (max-width: 1360px) {
  .container {
    width: min(100% - 24px, 1320px);
  }

  .hero-grid {
    gap: 34px;
  }

  .hero-domain-card {
    right: 0;
    width: min(100%, 370px);
  }

  html[dir="rtl"] .hero-domain-card {
    right: clamp(90px, 10vw, 140px);
    left: auto;
    width: min(100%, 370px);
  }

  html[dir="rtl"] .hero-visual {
    transform: translateY(26px);
  }
}

/* =========================================================
   06) SECTION HEADING
   ========================================================= */

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-heading p:last-child {
  max-width: 620px;
  font-size: 17px;
}

/* =========================================================
   07) SERVICE CARDS
   Popular services section - modern production version
   ========================================================= */

.services-section {
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 1px;
  background: var(--sh-border);
}

.services-section .container {
  position: relative;
  z-index: 1;
}

.services-heading {
  max-width: 880px;
  margin-bottom: 40px;
}

.services-heading h2 {
  max-width: 820px;
  margin-bottom: 16px;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.12;
}

.services-heading p:last-child {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--sh-muted);
  font-size: 17px;
  line-height: 1.78;
}

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

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 292px;
  padding: 26px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 1)),
    var(--sh-surface);
  border: 1px solid var(--sh-border);
  border-radius: 22px;
  box-shadow: 0 12px 30px rgba(7, 26, 61, 0.055);
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    background-color 0.18s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 4px;
  background: transparent;
  transition: background 0.18s ease;
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 107, 0, 0.34);
  box-shadow: 0 18px 38px rgba(7, 26, 61, 0.085);
}

.service-card:hover::before {
  background: var(--sh-orange);
}

.service-card:nth-child(1),
.service-card:nth-child(2) {
  border-color: rgba(255, 107, 0, 0.22);
}

.service-card:nth-child(1)::before,
.service-card:nth-child(2)::before {
  background: var(--sh-orange);
}

.service-card-top {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 24px;
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  min-width: 48px;
  height: 48px;
  color: var(--sh-navy);
  background: #fff5ee;
  border: 1px solid rgba(255, 107, 0, 0.22);
  border-radius: 16px;
  box-shadow: 0 10px 18px rgba(255, 107, 0, 0.075);
}

.service-svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  margin-bottom: 12px;
  color: var(--sh-heading);
  font-size: 21px;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: -0.015em;
}

.service-card p {
  flex: 1;
  margin-bottom: 26px;
  color: var(--sh-muted);
  font-size: 15px;
  line-height: 1.74;
}

.service-card a {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: auto;
  color: var(--sh-orange);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
}

.service-card a::after {
  content: "→";
  margin-inline-start: 7px;
  font-size: 15px;
  line-height: 1;
  transition: transform 0.16s ease;
}

.service-card a:hover {
  color: var(--sh-orange-dark);
}

.service-card a:hover::after {
  transform: translateX(3px);
}

html[dir="rtl"] .services-heading,
html[dir="rtl"] .service-card {
  text-align: right;
}

html[dir="rtl"] .service-card h3 {
  letter-spacing: 0;
}

html[dir="rtl"] .service-card a::after {
  content: "←";
  margin-inline-start: 7px;
}

html[dir="rtl"] .service-card a:hover::after {
  transform: translateX(-3px);
}

html[data-theme="dark"] .services-section {
  background:
    radial-gradient(circle at 8% 18%, rgba(255, 107, 0, 0.065), transparent 30%),
    radial-gradient(circle at 92% 12%, rgba(18, 163, 154, 0.055), transparent 34%),
    var(--sh-page);
}

html[data-theme="dark"] .service-card,
html[data-theme="dark"] .service-card:nth-child(1),
html[data-theme="dark"] .service-card:nth-child(2) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.018)),
    var(--sh-surface);
  border-color: var(--sh-border);
  box-shadow: none;
}

html[data-theme="dark"] .service-card:hover {
  border-color: rgba(255, 107, 0, 0.42);
  box-shadow: none;
}

html[data-theme="dark"] .service-icon {
  color: #ffffff;
  background: rgba(255, 107, 0, 0.12);
  border-color: rgba(255, 107, 0, 0.28);
  box-shadow: none;
}

@media (max-width: 1180px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-card {
    min-height: 278px;
  }
}

@media (max-width: 760px) {
  .services-heading {
    margin-bottom: 30px;
  }

  .services-heading h2 {
    font-size: clamp(30px, 8vw, 40px);
  }

  .services-heading p:last-child {
    font-size: 15.5px;
    line-height: 1.76;
  }

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

  .service-card {
    min-height: auto;
    padding: 24px;
    border-radius: 20px;
  }

  .service-card-top {
    margin-bottom: 20px;
  }

  .service-card h3 {
    font-size: 20px;
  }

  .service-card p {
    margin-bottom: 22px;
    font-size: 14.7px;
  }
}

@media (max-width: 420px) {
  .service-card {
    padding: 22px 20px;
  }

  .service-icon {
    width: 46px;
    min-width: 46px;
    height: 46px;
    border-radius: 15px;
  }
}

/* =========================================================
   07.3) THEME CATEGORIES
   Marketplace tabs + modern theme cards
   ========================================================= */

.theme-categories-section {
  position: relative;
  overflow: hidden;
  background: var(--sh-page);
}

.theme-categories-section::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 1px;
  background: var(--sh-border);
}

.theme-categories-section .container {
  position: relative;
  z-index: 1;
}

.theme-categories-heading {
  max-width: 860px;
  margin-bottom: 30px;
}

.theme-categories-heading h2 {
  max-width: 860px;
  margin-bottom: 16px;
  color: var(--sh-heading);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.1;
}

.theme-categories-heading p:last-child {
  max-width: 780px;
  margin-bottom: 0;
  color: var(--sh-muted);
  font-size: 16.5px;
  line-height: 1.78;
}

.theme-marketplace-panel {
  position: relative;
}

.theme-filter-input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.theme-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.theme-tabs label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  color: var(--sh-heading);
  background: var(--sh-surface);
  border: 1px solid var(--sh-border);
  border-radius: 999px;
  box-shadow: var(--sh-shadow-sm);
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  transition:
    color 0.18s ease,
    background-color 0.18s ease,
    border-color 0.18s ease,
    transform 0.18s ease;
}

.theme-tabs label:hover {
  transform: translateY(-1px);
  border-color: rgba(7, 26, 61, 0.22);
}

#theme-filter-all:checked ~ .theme-tabs label[for="theme-filter-all"],
#theme-filter-websites:checked ~ .theme-tabs label[for="theme-filter-websites"],
#theme-filter-stores:checked ~ .theme-tabs label[for="theme-filter-stores"],
#theme-filter-services:checked ~ .theme-tabs label[for="theme-filter-services"],
#theme-filter-local:checked ~ .theme-tabs label[for="theme-filter-local"] {
  color: #ffffff;
  background: var(--sh-navy);
  border-color: var(--sh-navy);
}

.theme-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

#theme-filter-websites:checked ~ .theme-showcase-grid .theme-card:not(.theme-type-website),
#theme-filter-stores:checked ~ .theme-showcase-grid .theme-card:not(.theme-type-store),
#theme-filter-services:checked ~ .theme-showcase-grid .theme-card:not(.theme-cat-services),
#theme-filter-local:checked ~ .theme-showcase-grid .theme-card:not(.theme-cat-local) {
  display: none;
}

.theme-card {
  overflow: hidden;
  background: var(--sh-surface);
  border: 1px solid var(--sh-border);
  border-radius: 22px;
  box-shadow: var(--sh-shadow-sm);
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.theme-card:hover {
  transform: translateY(-3px);
  border-color: rgba(7, 26, 61, 0.22);
  box-shadow: var(--sh-shadow-md);
}

.theme-card-preview {
  padding: 14px;
  background: var(--sh-surface-2);
  border-bottom: 1px solid var(--sh-border);
}

.theme-browser-top {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 28px;
  padding: 0 10px;
  background: var(--sh-navy);
  border-radius: 14px 14px 0 0;
}

.theme-browser-top span {
  width: 7px;
  height: 7px;
  background: rgba(255, 255, 255, 0.28);
  border-radius: 999px;
}

.theme-browser-top span:first-child {
  background: var(--sh-orange);
}

.theme-browser-body {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 12px;
  min-height: 178px;
  padding: 12px;
  background: #ffffff;
  border: 1px solid var(--sh-border);
  border-top: 0;
  border-radius: 0 0 16px 16px;
}

.theme-preview-sidebar {
  position: relative;
  min-height: 150px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
}

.theme-preview-sidebar::before,
.theme-preview-sidebar::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  height: 9px;
  background: #dbe3ee;
  border-radius: 999px;
}

.theme-preview-sidebar::before {
  top: 16px;
}

.theme-preview-sidebar::after {
  top: 36px;
  right: 24px;
}

.theme-preview-content {
  position: relative;
  display: grid;
  align-content: start;
  gap: 10px;
  overflow: hidden;
}

.theme-preview-title {
  width: 64%;
  height: 18px;
  background: var(--sh-navy);
  border-radius: 999px;
}

.theme-preview-line {
  width: 100%;
  height: 11px;
  background: #dbe3ee;
  border-radius: 999px;
}

.theme-preview-line.short {
  width: 72%;
}

.theme-preview-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 8px;
}

.theme-preview-row i {
  min-height: 58px;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
}

/* Website preview style */
.theme-preview-contracting .theme-browser-body,
.theme-preview-engineering .theme-browser-body,
.theme-preview-law .theme-browser-body {
  background:
    linear-gradient(180deg, #ffffff 0%, #ffffff 52%, #f8fafc 52%, #f8fafc 100%);
}

.theme-preview-contracting .theme-preview-content::before,
.theme-preview-engineering .theme-preview-content::before,
.theme-preview-law .theme-preview-content::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 78px;
  height: 1px;
  background: #e2e8f0;
}

/* Store preview style */
.theme-preview-furniture .theme-browser-body,
.theme-preview-electronics .theme-browser-body {
  background:
    linear-gradient(180deg, #ffffff 0%, #ffffff 48%, #f8fafc 48%, #f8fafc 100%);
}

.theme-preview-furniture .theme-preview-row i,
.theme-preview-electronics .theme-preview-row i {
  min-height: 64px;
}

.theme-preview-furniture .theme-preview-row i::before,
.theme-preview-electronics .theme-preview-row i::before {
  content: "";
  display: block;
  width: 46%;
  height: 22px;
  margin: 10px auto 8px;
  background: #cbd5e1;
  border-radius: 8px;
}

.theme-preview-furniture .theme-preview-row i::after,
.theme-preview-electronics .theme-preview-row i::after {
  content: "";
  display: block;
  width: 64%;
  height: 7px;
  margin: 0 auto;
  background: #e2e8f0;
  border-radius: 999px;
}

/* Restaurant / local business preview style */
.theme-preview-restaurant .theme-browser-body {
  background:
    linear-gradient(180deg, #ffffff 0%, #ffffff 50%, #f8fafc 50%, #f8fafc 100%);
}

.theme-preview-restaurant .theme-preview-row {
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
}

.theme-preview-restaurant .theme-preview-row i:first-child {
  background: #eefbf8;
  border-color: rgba(18, 163, 154, 0.22);
}

/* Individual theme accents */
.theme-preview-contracting .theme-preview-title {
  background: var(--sh-navy);
}

.theme-preview-contracting .theme-preview-row i:first-child {
  background: #eef2f7;
}

.theme-preview-engineering .theme-preview-title {
  background: #0b2f57;
}

.theme-preview-engineering .theme-preview-row i:nth-child(2) {
  background: #eef6ff;
}

.theme-preview-law .theme-preview-title {
  background: #1e293b;
}

.theme-preview-law .theme-preview-row i:first-child {
  background: #f8fafc;
}

.theme-preview-furniture .theme-preview-title {
  background: #8b5e3c;
}

.theme-preview-furniture .theme-preview-row i:first-child {
  background: #f6eee8;
}

.theme-preview-electronics .theme-preview-title {
  background: #475569;
}

.theme-preview-electronics .theme-preview-row i:nth-child(2) {
  background: #edf2ff;
}

.theme-preview-restaurant .theme-preview-title {
  background: var(--sh-teal);
}

.theme-card-content {
  padding: 22px;
}

.theme-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.theme-card-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 6px 10px;
  color: var(--sh-heading);
  background: var(--sh-surface);
  border: 1px solid var(--sh-border);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.theme-card-meta span:first-child {
  color: var(--sh-orange);
}

.theme-card h3 {
  margin: 0 0 10px;
  color: var(--sh-heading);
  font-size: 22px;
  line-height: 1.25;
}

.theme-card p {
  min-height: 78px;
  margin: 0 0 20px;
  color: var(--sh-muted);
  font-size: 14.5px;
  line-height: 1.68;
}

.theme-card a {
  display: inline-flex;
  align-items: center;
  color: var(--sh-orange);
  font-size: 14px;
  font-weight: 950;
}

.theme-card a::after {
  content: "→";
  margin-inline-start: 7px;
  font-size: 15px;
  transition: transform 0.16s ease;
}

.theme-card a:hover::after {
  transform: translateX(3px);
}

html[dir="rtl"] .theme-categories-section {
  direction: rtl;
}

html[dir="rtl"] .theme-categories-heading,
html[dir="rtl"] .theme-card {
  text-align: right;
}

html[dir="rtl"] .theme-card a::after {
  content: "←";
}

html[dir="rtl"] .theme-card a:hover::after {
  transform: translateX(-3px);
}

html[data-theme="dark"] .theme-categories-section {
  background: var(--sh-page);
}

html[data-theme="dark"] .theme-tabs label,
html[data-theme="dark"] .theme-card,
html[data-theme="dark"] .theme-card-meta span {
  background: var(--sh-surface);
  border-color: var(--sh-border);
  box-shadow: none;
}

html[data-theme="dark"] .theme-card-preview,
html[data-theme="dark"] .theme-browser-body,
html[data-theme="dark"] .theme-preview-sidebar,
html[data-theme="dark"] .theme-preview-row i {
  background: var(--sh-surface-2);
  border-color: var(--sh-border);
}

html[data-theme="dark"] .theme-preview-title {
  background: rgba(255, 255, 255, 0.78);
}

html[data-theme="dark"] .theme-preview-line {
  background: rgba(255, 255, 255, 0.16);
}

html[data-theme="dark"] .theme-card:hover,
html[data-theme="dark"] .theme-tabs label:hover {
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: none;
}

@media (max-width: 1180px) {
  .theme-showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .theme-categories-heading {
    margin-bottom: 24px;
    text-align: center;
  }

  .theme-categories-heading h2 {
    font-size: clamp(30px, 8vw, 40px);
  }

  .theme-categories-heading p:last-child {
    font-size: 15.5px;
    line-height: 1.76;
  }

.theme-tabs {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  margin-inline: calc(var(--sh-container-padding) * -1);
  padding-inline: var(--sh-container-padding);
  padding-bottom: 10px;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  scroll-padding-inline: var(--sh-container-padding);
}

html[dir="rtl"] .theme-tabs {
  justify-content: flex-start;
  direction: rtl;
}

html[dir="ltr"] .theme-tabs {
  justify-content: flex-start;
  direction: ltr;
}

  .theme-tabs::-webkit-scrollbar {
    display: none;
  }

  .theme-tabs label {
    flex: 0 0 auto;
    min-height: 40px;
    padding: 10px 16px;
    font-size: 13px;
    white-space: nowrap;
  }

  .theme-showcase-grid {
    grid-template-columns: 1fr;
  }

  .theme-card {
    border-radius: 20px;
  }

  .theme-card-preview {
    padding: 12px;
  }

  .theme-browser-body {
    min-height: 150px;
  }

  .theme-preview-sidebar {
    min-height: 122px;
  }

  .theme-preview-row i {
    min-height: 46px;
  }

  .theme-card-content {
    padding: 20px;
  }

  .theme-card p {
    min-height: auto;
  }
}

@media (max-width: 520px) {
  .theme-browser-body {
    grid-template-columns: 1fr;
    min-height: 142px;
  }

  .theme-preview-sidebar {
    display: none;
  }

  .theme-preview-title {
    height: 16px;
  }

  .theme-preview-line {
    height: 10px;
  }

  .theme-preview-row i {
    min-height: 52px;
  }

  .theme-card h3 {
    font-size: 21px;
  }
}

/* =========================================================
   07.5) PRICING PLANS PREVIEW
   Homepage dynamic pricing section
   ========================================================= */

.pricing-section {
  position: relative;
  overflow: hidden;
  background: var(--sh-page);
  border-top: 1px solid var(--sh-border);
}

.pricing-section .container {
  position: relative;
  z-index: 1;
}

.pricing-heading {
  max-width: 900px;
  margin-bottom: 34px;
}

.pricing-heading h2 {
  max-width: 880px;
  margin-bottom: 16px;
  color: var(--sh-heading);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.12;
}

.pricing-heading p:last-child {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--sh-muted);
  font-size: 16.5px;
  line-height: 1.78;
}

.pricing-shell {
  margin-top: 0;
}

.pricing-loading {
  padding: 22px 24px;
  color: var(--sh-muted);
  background: var(--sh-surface);
  border: 1px solid var(--sh-border);
  border-radius: 20px;
  box-shadow: var(--sh-shadow-sm);
  font-size: 15px;
  font-weight: 800;
  text-align: center;
}

/* Tabs */
.pricing-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: fit-content;
  max-width: 100%;
  margin-bottom: 30px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.pricing-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  color: var(--sh-heading);
  background: var(--sh-surface);
  border: 1px solid var(--sh-border);
  border-radius: 999px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(7, 26, 61, 0.045);
  transition:
    color 0.18s ease,
    background-color 0.18s ease,
    border-color 0.18s ease,
    transform 0.18s ease;
}

.pricing-tab:hover {
  color: var(--sh-heading);
  background: var(--sh-surface);
  border-color: rgba(7, 26, 61, 0.22);
  transform: translateY(-1px);
}

.pricing-tab.is-active {
  color: #ffffff;
  background: var(--sh-navy);
  border-color: var(--sh-navy);
  box-shadow: none;
}

/* Category intro */
.pricing-category-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: end;
  margin-bottom: 20px;
}

.pricing-category-intro h3 {
  margin: 0 0 8px;
  color: var(--sh-heading);
  font-size: 26px;
  font-weight: 950;
  line-height: 1.22;
}

.pricing-category-intro p {
  max-width: 740px;
  margin: 0;
  color: var(--sh-muted);
  font-size: 15.5px;
  line-height: 1.72;
}

.pricing-category-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  color: var(--sh-orange);
  background: var(--sh-surface);
  border: 1px solid rgba(255, 107, 0, 0.24);
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(7, 26, 61, 0.045);
  font-size: 14px;
  font-weight: 950;
  line-height: 1;
  white-space: nowrap;
  transition:
    color 0.18s ease,
    border-color 0.18s ease,
    transform 0.18s ease;
}

.pricing-category-link:hover {
  color: var(--sh-orange-dark);
  border-color: rgba(255, 107, 0, 0.5);
  transform: translateY(-1px);
}

/* Pricing cards */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 26px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 1)),
    var(--sh-surface);
  border: 1px solid var(--sh-border);
  border-radius: 22px;
  box-shadow: 0 12px 30px rgba(7, 26, 61, 0.055);
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.pricing-card::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 4px;
  background: transparent;
}

.pricing-card:hover {
  transform: translateY(-3px);
  border-color: rgba(7, 26, 61, 0.22);
  box-shadow: 0 18px 38px rgba(7, 26, 61, 0.085);
}

.pricing-card.is-popular {
  border-color: rgba(255, 107, 0, 0.28);
}

.pricing-card.is-popular::before {
  background: var(--sh-orange);
}

.pricing-card-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  margin-bottom: 20px;
  padding: 6px 10px;
  color: var(--sh-orange);
  background: rgba(255, 107, 0, 0.065);
  border: 1px solid rgba(255, 107, 0, 0.22);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 950;
  line-height: 1;
}

.pricing-card h4 {
  margin: 0 0 14px;
  color: var(--sh-heading);
  font-size: 22px;
  font-weight: 950;
  line-height: 1.25;
  letter-spacing: -0.015em;
}

.pricing-price {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  margin-bottom: 8px;
  color: var(--sh-heading);
}

.pricing-price-free {
  margin-bottom: 18px;
}

.pricing-free-text {
  display: block;
  line-height: 1;
}

html[dir="rtl"] .pricing-free-text {
  font-size: clamp(42px, 3vw, 54px);
  letter-spacing: -0.02em;
}

.pricing-currency {
  padding-bottom: 6px;
  color: var(--sh-heading);
  font-size: 13px;
  font-weight: 950;
  line-height: 1;
}

.pricing-amount {
  color: var(--sh-heading);
  font-size: clamp(38px, 3.2vw, 46px);
  line-height: 0.95;
  font-weight: 650;
  letter-spacing: -0.045em;
}

.pricing-period {
  padding-bottom: 6px;
  color: var(--sh-muted);
  font-size: 13px;
  font-weight: 850;
  line-height: 1;
}

.pricing-term {
  margin-bottom: 20px;
  color: var(--sh-muted);
  font-size: 13px;
  line-height: 1.55;
}

.pricing-features {
  display: grid;
  gap: 9px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.pricing-features li {
  position: relative;
  padding-inline-start: 22px;
  color: var(--sh-muted);
  font-size: 13.5px;
  line-height: 1.55;
}

.pricing-features li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0.58em;
  width: 8px;
  height: 8px;
  background: var(--sh-teal);
  border-radius: 999px;
  box-shadow: 0 0 0 3px rgba(18, 163, 154, 0.10);
}

.pricing-card .btn {
  width: 100%;
  min-height: 46px;
  margin-top: auto;
  font-size: 14px;
  font-weight: 950;
}

.pricing-card:not(.is-popular):not(.is-free) .btn {
  color: var(--sh-heading);
  background: var(--sh-surface);
  border-color: var(--sh-border);
}

.pricing-card:not(.is-popular):not(.is-free) .btn:hover {
  color: var(--sh-orange);
  border-color: rgba(255, 107, 0, 0.45);
}

.pricing-card.is-free .btn,
.pricing-card.is-popular .btn {
  color: #ffffff;
  background: var(--sh-orange);
  border-color: var(--sh-orange);
}

.pricing-card.is-free .btn:hover,
.pricing-card.is-popular .btn:hover {
  background: var(--sh-orange-dark);
  border-color: var(--sh-orange-dark);
}

/* Bottom note */
.pricing-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 18px;
  padding: 16px 18px;
  color: var(--sh-muted);
  background: var(--sh-surface);
  border: 1px solid var(--sh-border);
  border-radius: 18px;
  box-shadow: 0 8px 20px rgba(7, 26, 61, 0.04);
  font-size: 13px;
  line-height: 1.65;
}

.pricing-note strong {
  color: var(--sh-heading);
  font-weight: 950;
}

/* RTL */
html[dir="rtl"] .pricing-heading,
html[dir="rtl"] .pricing-category-intro,
html[dir="rtl"] .pricing-card,
html[dir="rtl"] .pricing-note {
  text-align: right;
}

html[dir="rtl"] .pricing-tabs {
  direction: rtl;
}

html[dir="rtl"] .pricing-price {
  direction: rtl;
  justify-content: flex-start;
}

html[dir="rtl"] .pricing-card h4 {
  letter-spacing: 0;
}

/* Dark mode */
html[data-theme="dark"] .pricing-section {
  background:
    radial-gradient(circle at 8% 16%, rgba(255, 107, 0, 0.06), transparent 32%),
    radial-gradient(circle at 92% 10%, rgba(18, 163, 154, 0.05), transparent 34%),
    var(--sh-page);
}

html[data-theme="dark"] .pricing-tab,
html[data-theme="dark"] .pricing-category-link,
html[data-theme="dark"] .pricing-card,
html[data-theme="dark"] .pricing-note,
html[data-theme="dark"] .pricing-loading {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.018)),
    var(--sh-surface);
  border-color: var(--sh-border);
  box-shadow: none;
}

html[data-theme="dark"] .pricing-tab:hover,
html[data-theme="dark"] .pricing-card:hover,
html[data-theme="dark"] .pricing-category-link:hover {
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: none;
}

html[data-theme="dark"] .pricing-tab.is-active {
  color: #ffffff;
  background: var(--sh-navy);
  border-color: rgba(255, 255, 255, 0.14);
}

html[data-theme="dark"] .pricing-card.is-popular {
  border-color: rgba(255, 107, 0, 0.42);
}

html[data-theme="dark"] .pricing-card-badge {
  color: var(--sh-orange);
  background: rgba(255, 107, 0, 0.11);
  border-color: rgba(255, 107, 0, 0.28);
}

html[data-theme="dark"] .pricing-card:not(.is-popular):not(.is-free) .btn {
  color: var(--sh-heading);
  background: rgba(255, 255, 255, 0.035);
  border-color: var(--sh-border);
}

html[data-theme="dark"] .pricing-card:not(.is-popular):not(.is-free) .btn:hover {
  color: var(--sh-orange);
  border-color: rgba(255, 107, 0, 0.48);
}

html[data-theme="dark"] .pricing-card.is-free .btn,
html[data-theme="dark"] .pricing-card.is-popular .btn {
  color: #ffffff;
  background: var(--sh-orange);
  border-color: var(--sh-orange);
}

html[data-theme="dark"] .pricing-card.is-free .btn:hover,
html[data-theme="dark"] .pricing-card.is-popular .btn:hover {
  background: var(--sh-orange-dark);
  border-color: var(--sh-orange-dark);
}

/* Responsive */
@media (max-width: 1180px) {
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .pricing-category-intro {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 14px;
  }

  .pricing-category-link {
    width: fit-content;
  }
}

@media (max-width: 760px) {
  .pricing-heading {
    max-width: 100%;
    margin-bottom: 28px;
    text-align: center;
  }

  .pricing-heading h2 {
    font-size: clamp(30px, 8vw, 40px);
  }

  .pricing-heading p:last-child {
    font-size: 15.5px;
    line-height: 1.76;
  }

  .pricing-tabs {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    width: auto;
    margin-inline: -14px;
    padding-inline: 14px;
    padding-bottom: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .pricing-tabs::-webkit-scrollbar {
    display: none;
  }

  .pricing-tab {
    flex: 0 0 auto;
    min-height: 42px;
    padding: 10px 16px;
    font-size: 13px;
    white-space: nowrap;
  }

  .pricing-category-intro {
    margin-bottom: 18px;
    text-align: start;
  }

  .pricing-category-intro h3 {
    font-size: 24px;
  }

  .pricing-category-intro p {
    font-size: 14.8px;
  }

  .pricing-category-link {
    width: 100%;
    min-height: 46px;
  }

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

  .pricing-card {
    padding: 24px;
    border-radius: 20px;
  }

  .pricing-card h4 {
    font-size: 21px;
  }

  .pricing-price-free {
    margin-bottom: 20px;
  }

  .pricing-amount {
    font-size: 40px;
  }

  html[dir="rtl"] .pricing-free-text {
    font-size: clamp(46px, 12vw, 64px);
  }

  .pricing-features {
    gap: 8px;
  }

  .pricing-note {
    padding: 16px;
    border-radius: 16px;
    font-size: 12.8px;
  }

  html[dir="rtl"] .pricing-heading {
    text-align: center;
  }

  html[dir="rtl"] .pricing-tabs {
    direction: rtl;
  }
}

@media (max-width: 420px) {
  .pricing-tab {
    font-size: 12.5px;
  }

  .pricing-card {
    padding: 22px 20px;
  }

  .pricing-amount {
    font-size: 38px;
  }
}

/* =========================================================
   7.6) INCLUDED WITH SKILLED HOST
   Free vs upgrade comparison section
   ========================================================= */

.included-section {
  position: relative;
  overflow: hidden;
  padding-top: 92px;
  padding-bottom: 92px;
  background: var(--sh-page);
  border-top: 1px solid var(--sh-border);
}

.included-section .container {
  position: relative;
  z-index: 1;
}

.included-compare-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1fr);
  align-items: center;
  gap: 54px;
}

.included-copy {
  min-width: 0;
}

.included-heading {
  max-width: 720px;
  margin-bottom: 28px;
}

.included-heading h2 {
  max-width: 700px;
  margin-bottom: 16px;
  color: var(--sh-heading);
  font-size: clamp(36px, 4.3vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.included-heading p:last-child {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--sh-muted);
  font-size: 16.5px;
  line-height: 1.78;
}

.included-proof-list {
  display: grid;
  gap: 12px;
  max-width: 670px;
}

.included-proof-item {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 16px 18px;
  background: var(--sh-surface);
  border: 1px solid var(--sh-border);
  border-radius: 18px;
  box-shadow: 0 8px 22px rgba(7, 26, 61, 0.045);
}

.included-proof-item span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--sh-orange);
  background: rgba(255, 107, 0, 0.07);
  border: 1px solid rgba(255, 107, 0, 0.22);
  border-radius: 14px;
  font-size: 12px;
  font-weight: 950;
}

.included-proof-item strong {
  display: block;
  margin-bottom: 4px;
  color: var(--sh-heading);
  font-size: 15.5px;
  font-weight: 950;
  line-height: 1.35;
}

.included-proof-item p {
  margin: 0;
  color: var(--sh-muted);
  font-size: 13.8px;
  line-height: 1.6;
}

.included-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 670px;
  margin-top: 24px;
}

.included-actions .btn {
  min-width: 150px;
}

.included-compare-panel {
  position: relative;
  overflow: hidden;
  padding: 24px;
  background: var(--sh-surface);
  border: 1px solid var(--sh-border);
  border-radius: 30px;
  box-shadow: 0 28px 70px rgba(7, 26, 61, 0.10);
}

.included-compare-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--sh-orange), var(--sh-teal));
}

.included-panel-header {
  display: grid;
  gap: 6px;
  margin-bottom: 22px;
}

.included-panel-header span {
  color: var(--sh-orange);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.included-panel-header strong {
  color: var(--sh-heading);
  font-size: clamp(22px, 2.3vw, 30px);
  font-weight: 950;
  line-height: 1.18;
  letter-spacing: -0.025em;
}

.included-path {
  display: grid;
  grid-template-columns: max-content 1fr max-content 1fr max-content;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  padding: 14px;
  background: rgba(7, 26, 61, 0.035);
  border: 1px solid var(--sh-border);
  border-radius: 22px;
}

.included-path-step {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 11px;
  background: var(--sh-surface);
  border: 1px solid var(--sh-border);
  border-radius: 999px;
}

.included-path-step span {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: var(--sh-orange);
  background: rgba(255, 107, 0, 0.08);
  border-radius: 999px;
  font-size: 10.5px;
  font-weight: 950;
}

.included-path-step strong {
  color: var(--sh-heading);
  font-size: 12.5px;
  font-weight: 950;
  white-space: nowrap;
}

.included-path-step.is-current {
  color: #ffffff;
  background: var(--sh-navy);
  border-color: var(--sh-navy);
}

.included-path-step.is-current span {
  color: #ffffff;
  background: var(--sh-orange);
}

.included-path-step.is-current strong {
  color: #ffffff;
}

.included-path-line {
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 107, 0, 0.45), rgba(18, 163, 154, 0.45));
  border-radius: 999px;
}

.included-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--sh-border);
  border-radius: 24px;
  overflow: hidden;
}

.included-column {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 24px;
}

.included-column + .included-column {
  border-inline-start: 1px solid var(--sh-border);
}

.included-column-free {
  background: rgba(18, 163, 154, 0.045);
}

.included-column-upgrade {
  background: rgba(255, 107, 0, 0.045);
}

.included-column-head {
  margin-bottom: 18px;
}

.included-column-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  margin-bottom: 14px;
  padding: 6px 10px;
  color: var(--sh-orange);
  background: rgba(255, 107, 0, 0.065);
  border: 1px solid rgba(255, 107, 0, 0.22);
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 950;
  line-height: 1;
}

.included-column h3 {
  margin: 0 0 8px;
  color: var(--sh-heading);
  font-size: 22px;
  font-weight: 950;
  line-height: 1.22;
  letter-spacing: -0.02em;
}

.included-column p {
  margin: 0;
  color: var(--sh-muted);
  font-size: 14.5px;
  line-height: 1.68;
}

.included-check-list {
  display: grid;
  gap: 12px;
  margin: auto 0 0;
  padding: 0;
  list-style: none;
}

.included-check-list li {
  position: relative;
  padding-inline-start: 26px;
  color: var(--sh-text);
  font-size: 14px;
  line-height: 1.5;
}

.included-check-list li::before {
  content: "✓";
  position: absolute;
  inset-inline-start: 0;
  top: 0.05em;
  display: inline-grid;
  place-items: center;
  width: 17px;
  height: 17px;
  color: #ffffff;
  background: var(--sh-teal);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 950;
}

.included-note {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  margin-top: 18px;
  padding: 16px 18px;
  background: var(--sh-navy);
  border-radius: 20px;
}

.included-note span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #ffffff;
  background: var(--sh-teal);
  border-radius: 999px;
  font-weight: 950;
}

.included-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13.5px;
  line-height: 1.62;
}

/* RTL */
html[dir="rtl"] .included-section {
  direction: rtl;
}

html[dir="rtl"] .included-heading,
html[dir="rtl"] .included-proof-item,
html[dir="rtl"] .included-compare-panel,
html[dir="rtl"] .included-column {
  text-align: right;
}

html[dir="rtl"] .included-heading h2,
html[dir="rtl"] .included-panel-header strong,
html[dir="rtl"] .included-column h3 {
  letter-spacing: 0;
}

html[dir="rtl"] .included-compare-panel::before {
  background: linear-gradient(270deg, var(--sh-orange), var(--sh-teal));
}

html[dir="rtl"] .included-path {
  direction: rtl;
}

html[dir="rtl"] .included-path-line {
  background: linear-gradient(270deg, rgba(255, 107, 0, 0.45), rgba(18, 163, 154, 0.45));
}

html[dir="rtl"] .included-column + .included-column {
  border-inline-start: 1px solid var(--sh-border);
}

html[dir="rtl"] .included-check-list li {
  padding-inline-start: 0;
  padding-inline-end: 26px;
}

html[dir="rtl"] .included-check-list li::before {
  inset-inline-start: auto;
  inset-inline-end: 0;
}

/* Dark mode */
html[data-theme="dark"] .included-section {
  background: var(--sh-page);
}

html[data-theme="dark"] .included-proof-item,
html[data-theme="dark"] .included-compare-panel {
  background: var(--sh-surface);
  border-color: var(--sh-border);
  box-shadow: none;
}

html[data-theme="dark"] .included-proof-item span {
  background: rgba(255, 107, 0, 0.12);
  border-color: rgba(255, 107, 0, 0.30);
}

html[data-theme="dark"] .included-path {
  background: rgba(255, 255, 255, 0.035);
  border-color: var(--sh-border);
}

html[data-theme="dark"] .included-path-step {
  background: rgba(255, 255, 255, 0.035);
  border-color: var(--sh-border);
}

html[data-theme="dark"] .included-path-step.is-current {
  background: var(--sh-orange);
  border-color: var(--sh-orange);
}

html[data-theme="dark"] .included-path-step.is-current span {
  color: var(--sh-orange);
  background: #ffffff;
}

html[data-theme="dark"] .included-columns {
  border-color: var(--sh-border);
}

html[data-theme="dark"] .included-column + .included-column {
  border-color: var(--sh-border);
}

html[data-theme="dark"] .included-column-free {
  background: rgba(18, 163, 154, 0.045);
}

html[data-theme="dark"] .included-column-upgrade {
  background: rgba(255, 107, 0, 0.055);
}

html[data-theme="dark"] .included-column-badge {
  background: rgba(255, 107, 0, 0.11);
  border-color: rgba(255, 107, 0, 0.30);
}

html[data-theme="dark"] .included-note {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--sh-border);
}

/* Responsive */
@media (max-width: 1180px) {
  .included-compare-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .included-heading,
  .included-heading h2,
  .included-heading p:last-child,
  .included-proof-list {
    max-width: 100%;
  }

  .included-compare-panel {
    max-width: 920px;
  }
}

@media (max-width: 820px) {
  .included-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .included-heading {
    text-align: center;
  }

  .included-heading h2 {
    font-size: clamp(32px, 8vw, 44px);
    line-height: 1.12;
  }

  .included-heading p:last-child {
    font-size: 15.8px;
    line-height: 1.76;
  }

  .included-proof-item {
    grid-template-columns: 42px minmax(0, 1fr);
    padding: 15px 16px;
  }

  .included-proof-item span {
    width: 36px;
    height: 36px;
  }

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

  .included-actions .btn {
    width: 100%;
    min-height: 48px;
  }

  .included-compare-panel {
    padding: 18px;
    border-radius: 24px;
  }

  .included-path {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .included-path-line {
    width: 2px;
    height: 18px;
    justify-self: center;
    background: linear-gradient(180deg, rgba(255, 107, 0, 0.45), rgba(18, 163, 154, 0.45));
  }

  .included-path-step {
    justify-content: center;
  }

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

  .included-column + .included-column {
    border-inline-start: 0;
    border-top: 1px solid var(--sh-border);
  }

  .included-column {
    padding: 22px;
  }

  .included-note {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .included-note span {
    margin-inline: auto;
  }

  html[dir="rtl"] .included-heading {
    text-align: center;
  }

  html[dir="rtl"] .included-path-line {
    background: linear-gradient(180deg, rgba(255, 107, 0, 0.45), rgba(18, 163, 154, 0.45));
  }

  html[dir="rtl"] .included-column + .included-column {
    border-inline-start: 0;
  }
}

@media (max-width: 420px) {
  .included-section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .included-heading h2 {
    font-size: clamp(30px, 8vw, 38px);
  }

  .included-proof-item {
    grid-template-columns: 1fr;
  }

  .included-compare-panel {
    padding: 16px;
  }

  .included-column {
    padding: 20px;
  }

  .included-column h3 {
    font-size: 20px;
  }
}

/* =========================================================
   7.7) HOW IT WORKS
   Professional launch workflow - no checklist/card-grid style
   ========================================================= */

.how-section {
  position: relative;
  overflow: hidden;
  padding-top: 92px;
  padding-bottom: 92px;
  background: var(--sh-page);
  border-top: 1px solid var(--sh-border);
}

.how-section .container {
  position: relative;
  z-index: 1;
}

.how-launch-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(560px, 1.18fr);
  gap: 58px;
  align-items: center;
}

.how-launch-copy {
  max-width: 690px;
}

.how-launch-copy h2 {
  max-width: 680px;
  margin-bottom: 18px;
  color: var(--sh-heading);
  font-size: clamp(36px, 4.3vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.how-launch-copy p:not(.eyebrow) {
  max-width: 640px;
  margin-bottom: 0;
  color: var(--sh-muted);
  font-size: 16.5px;
  line-height: 1.78;
}

.how-launch-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.how-launch-actions .btn {
  min-width: 140px;
}

.how-launch-panel {
  position: relative;
  overflow: hidden;
  background: var(--sh-surface);
  border: 1px solid var(--sh-border);
  border-radius: 30px;
  box-shadow: 0 24px 64px rgba(7, 26, 61, 0.09);
}

.how-launch-panel::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: var(--sh-navy);
}

.how-launch-panel-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
  padding: 30px 32px 26px 38px;
  background:
    linear-gradient(180deg, rgba(7, 26, 61, 0.035), rgba(7, 26, 61, 0)),
    var(--sh-surface);
  border-bottom: 1px solid var(--sh-border);
}

.how-launch-panel-top span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--sh-teal);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.how-launch-panel-top strong {
  display: block;
  max-width: 620px;
  color: var(--sh-heading);
  font-size: clamp(24px, 2.6vw, 36px);
  font-weight: 950;
  line-height: 1.14;
  letter-spacing: -0.032em;
}

.how-launch-client-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 9px 13px;
  color: var(--sh-heading);
  background: var(--sh-surface);
  border: 1px solid var(--sh-border);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 950;
  line-height: 1;
  white-space: nowrap;
  transition:
    color 0.18s ease,
    border-color 0.18s ease,
    transform 0.18s ease;
}

.how-launch-client-link:hover {
  color: var(--sh-orange);
  border-color: rgba(255, 107, 0, 0.45);
  transform: translateY(-1px);
}

.how-launch-track {
  position: relative;
  display: grid;
  gap: 0;
  padding: 12px 32px 12px 38px;
}

.how-launch-track::before {
  content: "";
  position: absolute;
  inset-block: 34px;
  inset-inline-start: 58px;
  width: 2px;
  background: linear-gradient(
    180deg,
    rgba(18, 163, 154, 0.75),
    rgba(7, 26, 61, 0.20)
  );
  border-radius: 999px;
}

.how-launch-step {
  position: relative;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 18px;
  padding: 22px 0;
}

.how-launch-step + .how-launch-step {
  border-top: 1px solid var(--sh-border);
}

.how-launch-step > span {
  position: relative;
  z-index: 1;
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--sh-teal);
  background: var(--sh-surface);
  border: 1px solid rgba(18, 163, 154, 0.30);
  border-radius: 16px;
  font-size: 12px;
  font-weight: 950;
  box-shadow: 0 0 0 6px var(--sh-surface);
}

.how-launch-step.is-active > span {
  color: #ffffff;
  background: var(--sh-navy);
  border-color: var(--sh-navy);
}

.how-launch-step h3 {
  margin: 0 0 7px;
  color: var(--sh-heading);
  font-size: 20px;
  font-weight: 950;
  line-height: 1.26;
  letter-spacing: -0.014em;
}

.how-launch-step p {
  max-width: 720px;
  margin: 0;
  color: var(--sh-muted);
  font-size: 14.5px;
  line-height: 1.68;
}

.how-launch-note {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  margin: 0 32px 32px 38px;
  padding: 16px 18px;
  background: rgba(18, 163, 154, 0.055);
  border: 1px solid rgba(18, 163, 154, 0.18);
  border-radius: 20px;
}

.how-launch-note span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--sh-teal);
  background: var(--sh-surface);
  border: 1px solid rgba(18, 163, 154, 0.24);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 950;
}

.how-launch-note p {
  margin: 0;
  color: var(--sh-muted);
  font-size: 13.5px;
  line-height: 1.65;
}

/* RTL */
html[dir="rtl"] .how-section {
  direction: rtl;
}

html[dir="rtl"] .how-launch-copy,
html[dir="rtl"] .how-launch-panel,
html[dir="rtl"] .how-launch-step,
html[dir="rtl"] .how-launch-note {
  text-align: right;
}

html[dir="rtl"] .how-launch-copy h2,
html[dir="rtl"] .how-launch-panel-top strong,
html[dir="rtl"] .how-launch-step h3 {
  letter-spacing: 0;
}

html[dir="rtl"] .how-launch-panel::before {
  inset-inline-start: auto;
  inset-inline-end: 0;
}

html[dir="rtl"] .how-launch-panel-top {
  padding: 30px 38px 26px 32px;
}

html[dir="rtl"] .how-launch-track {
  padding: 12px 38px 12px 32px;
}

html[dir="rtl"] .how-launch-track::before {
  inset-inline-start: auto;
  inset-inline-end: 58px;
}

html[dir="rtl"] .how-launch-note {
  margin: 0 38px 32px 32px;
}

/* Dark mode */
html[data-theme="dark"] .how-section {
  background: var(--sh-page);
}

html[data-theme="dark"] .how-launch-panel {
  background: var(--sh-surface);
  border-color: var(--sh-border);
  box-shadow: none;
}

html[data-theme="dark"] .how-launch-panel::before {
  background: var(--sh-orange);
}

html[data-theme="dark"] .how-launch-panel-top {
  background: rgba(255, 255, 255, 0.025);
  border-color: var(--sh-border);
}

html[data-theme="dark"] .how-launch-client-link {
  background: rgba(255, 255, 255, 0.035);
  border-color: var(--sh-border);
}

html[data-theme="dark"] .how-launch-step + .how-launch-step {
  border-color: var(--sh-border);
}

html[data-theme="dark"] .how-launch-step > span {
  color: #ffffff;
  background: var(--sh-surface);
  border-color: rgba(18, 163, 154, 0.34);
  box-shadow: 0 0 0 6px var(--sh-surface);
}

html[data-theme="dark"] .how-launch-step.is-active > span {
  color: #ffffff;
  background: var(--sh-orange);
  border-color: var(--sh-orange);
}

html[data-theme="dark"] .how-launch-note {
  background: rgba(18, 163, 154, 0.06);
  border-color: rgba(18, 163, 154, 0.22);
}

html[data-theme="dark"] .how-launch-note span {
  color: #ffffff;
  background: rgba(18, 163, 154, 0.12);
  border-color: rgba(18, 163, 154, 0.30);
}

/* Responsive */
@media (max-width: 1180px) {
  .how-launch-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .how-launch-copy,
  .how-launch-copy h2,
  .how-launch-copy p:not(.eyebrow) {
    max-width: 860px;
  }

  .how-launch-panel {
    max-width: 980px;
  }
}

@media (max-width: 760px) {
  .how-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .how-launch-layout {
    gap: 28px;
  }

  .how-launch-copy {
    text-align: center;
  }

  .how-launch-copy h2 {
    font-size: clamp(31px, 8vw, 43px);
    line-height: 1.13;
  }

  .how-launch-copy p:not(.eyebrow) {
    font-size: 15.5px;
    line-height: 1.76;
  }

  .how-launch-actions {
    flex-direction: column;
    margin-top: 24px;
  }

  .how-launch-actions .btn {
    width: 100%;
    min-height: 48px;
  }

  .how-launch-panel {
    border-radius: 24px;
  }

  .how-launch-panel::before {
    width: 4px;
  }

  .how-launch-panel-top {
    display: grid;
    gap: 18px;
    padding: 24px 22px 22px 26px;
  }

  .how-launch-panel-top strong {
    font-size: clamp(23px, 6vw, 31px);
  }

  .how-launch-client-link {
    width: fit-content;
  }

  .how-launch-track {
    padding: 8px 22px 8px 26px;
  }

  .how-launch-track::before {
    inset-block: 30px;
    inset-inline-start: 48px;
  }

  .how-launch-step {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 14px;
    padding: 20px 0;
  }

  .how-launch-step > span {
    width: 40px;
    height: 40px;
    border-radius: 14px;
  }

  .how-launch-step h3 {
    font-size: 19px;
  }

  .how-launch-step p {
    font-size: 14px;
  }

  .how-launch-note {
    grid-template-columns: 1fr;
    margin: 0 22px 22px 26px;
    padding: 16px;
    text-align: center;
  }

  .how-launch-note span {
    margin-inline: auto;
  }

  html[dir="rtl"] .how-launch-copy {
    text-align: center;
  }

  html[dir="rtl"] .how-launch-panel-top {
    padding: 24px 26px 22px 22px;
  }

  html[dir="rtl"] .how-launch-track {
    padding: 8px 26px 8px 22px;
  }

  html[dir="rtl"] .how-launch-track::before {
    inset-inline-start: auto;
    inset-inline-end: 48px;
  }

  html[dir="rtl"] .how-launch-note {
    margin: 0 26px 22px 22px;
    text-align: center;
  }
}

@media (max-width: 420px) {
  .how-section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .how-launch-panel-top {
    padding-inline: 20px;
  }

  .how-launch-track {
    padding-inline: 20px;
  }

  .how-launch-track::before {
    inset-inline-start: 40px;
  }

  .how-launch-step {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px;
  }

  .how-launch-step > span {
    width: 38px;
    height: 38px;
  }

  .how-launch-note {
    margin-inline: 20px;
  }

  html[dir="rtl"] .how-launch-track::before {
    inset-inline-start: auto;
    inset-inline-end: 40px;
  }
}

/* =========================================================
   08) HELP ME CHOOSE
   Smart advisor cards - compact and different from workflow sections
   ========================================================= */

.choose-section {
  position: relative;
  overflow: hidden;
  background: var(--sh-surface);
  border-top: 1px solid var(--sh-border);
  border-bottom: 1px solid var(--sh-border);
}

.choose-section .container {
  position: relative;
  z-index: 1;
}

.choose-smart-head {
  max-width: 900px;
  margin-bottom: 34px;
}

.choose-smart-head h2 {
  max-width: 850px;
  margin-bottom: 16px;
  color: var(--sh-heading);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.choose-smart-head p:last-child {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--sh-muted);
  font-size: 16.4px;
  line-height: 1.76;
}

.choose-smart-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.96fr 0.96fr;
  gap: 18px;
}

.choose-smart-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 360px;
  padding: 28px;
  overflow: hidden;
  background: var(--sh-page);
  border: 1px solid var(--sh-border);
  border-radius: 26px;
  box-shadow: 0 14px 34px rgba(7, 26, 61, 0.055);
}

.choose-smart-card::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 4px;
  background: transparent;
}

.choose-smart-card-featured {
  background:
    linear-gradient(180deg, rgba(255, 107, 0, 0.055), rgba(255, 107, 0, 0)),
    var(--sh-page);
  border-color: rgba(255, 107, 0, 0.28);
}

.choose-smart-card-featured::before {
  background: var(--sh-orange);
}

.choose-smart-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 28px;
}

.choose-smart-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  min-width: 50px;
  height: 50px;
  color: var(--sh-navy);
  background: #fff5ee;
  border: 1px solid rgba(255, 107, 0, 0.24);
  border-radius: 16px;
}

.choose-smart-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.choose-smart-label {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 7px 10px;
  color: var(--sh-orange);
  background: rgba(255, 107, 0, 0.065);
  border: 1px solid rgba(255, 107, 0, 0.18);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.choose-smart-card h3 {
  max-width: 420px;
  margin: 0 0 12px;
  color: var(--sh-heading);
  font-size: clamp(24px, 2.25vw, 32px);
  font-weight: 950;
  line-height: 1.14;
  letter-spacing: -0.024em;
}

.choose-smart-card p {
  margin: 0 0 24px;
  color: var(--sh-muted);
  font-size: 14.5px;
  line-height: 1.68;
}

.choose-smart-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: auto;
}

.choose-smart-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 14px;
  color: var(--sh-heading);
  background: var(--sh-surface);
  border: 1px solid var(--sh-border);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 950;
  line-height: 1;
  white-space: nowrap;
  transition:
    color 0.18s ease,
    border-color 0.18s ease,
    transform 0.18s ease;
}

.choose-smart-actions a:hover,
.choose-smart-actions a:focus-visible {
  color: var(--sh-orange);
  border-color: rgba(255, 107, 0, 0.5);
  transform: translateY(-1px);
}

.choose-smart-help {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 18px;
  padding: 18px 20px;
  background: var(--sh-navy);
  border-radius: 22px;
}

.choose-smart-help p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.6;
}

.choose-smart-help .btn {
  flex-shrink: 0;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.075);
  border-color: rgba(255, 255, 255, 0.18);
}

.choose-smart-help .btn:hover {
  color: #ffffff;
  border-color: rgba(255, 107, 0, 0.72);
}

/* RTL */
html[dir="rtl"] .choose-section {
  direction: rtl;
}

html[dir="rtl"] .choose-smart-head,
html[dir="rtl"] .choose-smart-card,
html[dir="rtl"] .choose-smart-help {
  text-align: right;
}

html[dir="rtl"] .choose-smart-head h2,
html[dir="rtl"] .choose-smart-card h3 {
  letter-spacing: 0;
}

html[dir="rtl"] .choose-smart-label {
  letter-spacing: 0;
}

/* Dark mode */
html[data-theme="dark"] .choose-section {
  background: var(--sh-page);
}

html[data-theme="dark"] .choose-smart-card,
html[data-theme="dark"] .choose-smart-card-featured {
  background: var(--sh-surface);
  border-color: var(--sh-border);
  box-shadow: none;
}

html[data-theme="dark"] .choose-smart-card-featured::before {
  background: var(--sh-orange);
}

html[data-theme="dark"] .choose-smart-icon {
  color: #ffffff;
  background: rgba(255, 107, 0, 0.12);
  border-color: rgba(255, 107, 0, 0.28);
}

html[data-theme="dark"] .choose-smart-label {
  background: rgba(255, 107, 0, 0.10);
  border-color: rgba(255, 107, 0, 0.24);
}

html[data-theme="dark"] .choose-smart-actions a {
  background: rgba(255, 255, 255, 0.035);
  border-color: var(--sh-border);
}

html[data-theme="dark"] .choose-smart-actions a:hover,
html[data-theme="dark"] .choose-smart-actions a:focus-visible {
  border-color: rgba(255, 107, 0, 0.58);
}

html[data-theme="dark"] .choose-smart-help {
  background: #071326;
  border: 1px solid var(--sh-border);
}

/* Responsive */
@media (max-width: 1180px) {
  .choose-smart-grid {
    grid-template-columns: 1fr;
  }

  .choose-smart-card {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  .choose-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .choose-smart-head {
    margin-bottom: 28px;
    text-align: center;
  }

  .choose-smart-head h2 {
    font-size: clamp(31px, 8vw, 43px);
    line-height: 1.13;
  }

  .choose-smart-head p:last-child {
    font-size: 15.5px;
    line-height: 1.76;
  }

  .choose-smart-card {
    padding: 24px 22px;
    border-radius: 22px;
  }

  .choose-smart-top {
    margin-bottom: 22px;
  }

  .choose-smart-card h3 {
    font-size: clamp(22px, 6vw, 30px);
  }

  .choose-smart-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .choose-smart-actions a {
    width: 100%;
    min-height: 46px;
  }

  .choose-smart-help {
    display: grid;
    gap: 16px;
    text-align: center;
    padding: 20px;
  }

  .choose-smart-help .btn {
    width: 100%;
    min-height: 48px;
  }

  html[dir="rtl"] .choose-smart-head,
  html[dir="rtl"] .choose-smart-help {
    text-align: center;
  }
}

@media (max-width: 420px) {
  .choose-section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .choose-smart-card {
    padding: 22px 20px;
  }

  .choose-smart-card h3 {
    font-size: 24px;
  }
}

/* =========================================================
   09) WHY SKILLED HOST
   Why section only - CTA will be separate
   ========================================================= */

.why-section {
  background: var(--sh-page);
  border-top: 1px solid var(--sh-border);
  border-bottom: 1px solid var(--sh-border);
}

.why-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 42px;
  align-items: center;
  padding: 42px;
  color: #ffffff;
  background: var(--sh-navy);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 24px;
}

.why-content {
  max-width: 620px;
}

.why-content .eyebrow {
  color: var(--sh-orange);
}

.why-content h2 {
  max-width: 650px;
  margin-bottom: 18px;
  color: #ffffff;
}

.why-content p {
  max-width: 620px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.75;
}

.why-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.why-card {
  min-height: 178px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
}

.why-number {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--sh-orange);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.why-card h3 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.35;
}

.why-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  line-height: 1.65;
}

html[data-theme="dark"] .why-section {
  background: var(--sh-page);
}

html[data-theme="dark"] .why-panel {
  background: #071326;
  border-color: var(--sh-border);
}

html[data-theme="dark"] .why-card {
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(255, 255, 255, 0.12);
}

html[dir="rtl"] .why-panel {
  direction: rtl;
}

html[dir="rtl"] .why-content,
html[dir="rtl"] .why-card {
  text-align: right;
}

html[dir="rtl"] .why-number {
  letter-spacing: 0;
}

@media (max-width: 980px) {
  .why-panel {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .why-content,
  .why-content h2,
  .why-content p {
    max-width: 760px;
  }
}

@media (max-width: 760px) {
  .why-panel {
    padding: 30px 22px;
    border-radius: 22px;
  }

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

  .why-card {
    min-height: auto;
  }
}

@media (max-width: 560px) {
  .why-panel {
    padding: 26px 18px;
  }

  .why-content p {
    font-size: 15px;
    line-height: 1.75;
  }

  .why-card {
    padding: 18px;
    border-radius: 16px;
  }

  .why-card h3 {
    font-size: 16px;
  }

  .why-card p {
    font-size: 13.5px;
  }
}

/* =========================================================
   10) FINAL CTA
   Separate closing action section
   ========================================================= */

.final-cta-section {
  background: var(--sh-page);
  padding-top: 72px;
  padding-bottom: 72px;
}

.final-cta-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 42px;
  background: var(--sh-surface);
  border: 1px solid var(--sh-border);
  border-radius: 24px;
  box-shadow: var(--sh-shadow-sm);
}

.final-cta-content {
  max-width: 820px;
}

.final-cta-card .eyebrow {
  margin-bottom: 12px;
}

.final-cta-card h2 {
  max-width: 820px;
  margin-bottom: 14px;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.16;
}

.final-cta-card p {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--sh-muted);
  font-size: 16px;
  line-height: 1.75;
}

.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.final-cta-actions .btn {
  min-width: 132px;
}

html[data-theme="dark"] .final-cta-section {
  background: var(--sh-page);
}

html[data-theme="dark"] .final-cta-card {
  background: var(--sh-surface);
  border-color: var(--sh-border);
  box-shadow: none;
}

html[dir="rtl"] .final-cta-card {
  direction: rtl;
}

html[dir="rtl"] .final-cta-content {
  text-align: right;
}

html[dir="rtl"] .final-cta-actions {
  justify-content: flex-start;
}

@media (max-width: 760px) {
  .final-cta-section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .final-cta-card {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 30px 22px;
    border-radius: 22px;
    text-align: center;
  }

  .final-cta-content,
  .final-cta-card h2,
  .final-cta-card p {
    max-width: 100%;
  }

  .final-cta-card p {
    font-size: 15px;
    line-height: 1.7;
  }

  .final-cta-actions {
    justify-content: center;
    width: 100%;
  }

  .final-cta-actions .btn {
    width: 100%;
    min-height: 48px;
  }

  html[dir="rtl"] .final-cta-content,
  html[dir="rtl"] .final-cta-card {
    text-align: center;
  }

  html[dir="rtl"] .final-cta-actions {
    justify-content: center;
  }
}

/* =========================================================
   11) FOOTER
   ========================================================= */

.site-footer {
  padding: 64px 0 26px;
  color: rgba(255, 255, 255, 0.76);
  background: var(--sh-footer-bg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 34px;
}

.footer-logo {
  width: auto;
  height: 58px;
  object-fit: contain;
}

.footer-about {
  max-width: 360px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.68);
}

.site-footer h3 {
  margin-bottom: 16px;
  color: #ffffff;
  font-size: 16px;
}

.site-footer a {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.site-footer a:hover {
  color: #ffffff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.footer-bottom a {
  margin: 0;
}


/* =========================================================
   12) RESPONSIVE
   Mobile header/menu polish
   ========================================================= */

@media (max-width: 1080px) {
  .site-header .container {
    width: min(100% - 28px, 1280px);
  }

  .header-inner {
    gap: 12px;
  }

  .nav-trigger,
  .nav-link {
    padding-inline: 8px;
    font-size: 12.8px;
  }

  .header-actions .btn {
    padding-inline: 12px;
  }
}

@media (max-width: 980px) {
  body {
    padding-top: 72px;
  }

  .site-header {
    position: fixed;
    top: 0;
    inset-inline-start: 0;
    inset-inline-end: 0;
    width: 100%;
    max-height: 100dvh;
  }

  .site-header.is-open {
    overflow-y: auto;
  }
  .site-header .container {
    width: min(100% - 28px, 1280px);
  }

  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
    gap: 12px;
  }

  .brand {
    order: 1;
    min-width: 0;
  }

  .brand-logo {
    height: 40px;
    max-width: 170px;
  }

  html[lang="ar"] .brand {
    min-width: 0;
  }

  html[lang="ar"] .brand-logo {
    height: 40px;
    max-width: 210px;
  }

  .mobile-menu-btn {
    display: inline-flex;
    order: 2;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 46px;
    min-width: 46px;
    height: 46px;
    margin: 0;
  }

  html[dir="rtl"] .mobile-menu-btn {
    margin: 0;
  }

  .main-nav,
  .header-actions {
    display: none;
  }

  .site-header.is-open .header-inner {
    align-items: center;
    flex-wrap: wrap;
    padding: 12px 0 14px;
  }

  .site-header.is-open .brand {
    order: 1;
  }

  .site-header.is-open .mobile-menu-btn {
    order: 2;
  }

  .site-header.is-open .main-nav {
    display: grid;
    order: 3;
    width: 100%;
    flex: 0 0 100%;
    grid-template-columns: 1fr;
    gap: 8px;
    padding-top: 12px;
  }

  .site-header.is-open .nav-item {
    display: grid;
    width: 100%;
  }

  .site-header.is-open .nav-item.has-mega::after {
    display: none;
  }

  .site-header.is-open .nav-trigger,
  .site-header.is-open .nav-link {
    width: 100%;
    min-height: 48px;
    padding: 0 16px;
    justify-content: space-between;
    color: var(--sh-heading);
    background: var(--sh-surface);
    border: 1px solid var(--sh-border);
    border-radius: 14px;
    font-size: 14px;
    text-align: start;
  }

  html[dir="rtl"] .site-header.is-open .nav-trigger,
  html[dir="rtl"] .site-header.is-open .nav-link {
    direction: rtl;
    text-align: right;
  }

  .site-header.is-open .nav-trigger:hover,
  .site-header.is-open .nav-link:hover,
  .site-header.is-open .nav-item.is-active .nav-trigger {
    color: var(--sh-orange);
    background: rgba(255, 107, 0, 0.08);
    border-color: rgba(255, 107, 0, 0.24);
  }

  .site-header.is-open .mega-panel,
  .site-header.is-open .mega-panel-wide,
  .site-header.is-open .mega-panel-small {
    position: static;
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    margin-top: 8px;
    padding: 14px;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    box-shadow: none;
    border-radius: 14px;
  }

  .site-header.is-open .nav-item:not(.is-active) .mega-panel {
    display: none;
  }

  html[dir="rtl"] .site-header.is-open .mega-panel,
  html[dir="rtl"] .site-header.is-open .mega-panel-wide,
  html[dir="rtl"] .site-header.is-open .mega-panel-small {
    transform: none;
    direction: rtl;
    text-align: right;
  }

  .site-header.is-open .mega-column {
    display: grid;
    gap: 4px;
  }

  .site-header.is-open .mega-label {
    margin: 0 0 6px;
    font-size: 11px;
    line-height: 1.3;
  }

  .site-header.is-open .mega-link {
    display: grid;
    gap: 2px;
    padding: 9px 10px;
    border-radius: 10px;
  }

  .site-header.is-open .mega-link strong {
    font-size: 13.5px;
    line-height: 1.35;
  }

  .site-header.is-open .mega-link small {
    font-size: 12px;
    line-height: 1.35;
  }

  html[dir="rtl"] .site-header.is-open .mega-label,
  html[dir="rtl"] .site-header.is-open .mega-link,
  html[dir="rtl"] .site-header.is-open .mega-link strong,
  html[dir="rtl"] .site-header.is-open .mega-link small {
    text-align: right;
  }

  html[dir="ltr"] .site-header.is-open .mega-label,
  html[dir="ltr"] .site-header.is-open .mega-link,
  html[dir="ltr"] .site-header.is-open .mega-link strong,
  html[dir="ltr"] .site-header.is-open .mega-link small {
    text-align: left;
  }

  .site-header.is-open .header-actions {
    display: grid;
    order: 4;
    width: 100%;
    flex: 0 0 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding-top: 12px;
  }

  .site-header.is-open .header-actions .utility-icon-btn,
  .site-header.is-open .header-actions .lang-icon-btn {
    width: 100%;
    min-width: 0;
    height: 46px;
  }

  .site-header.is-open .header-actions .btn {
    width: 100%;
    min-height: 46px;
  }

  .site-header.is-open .header-actions .btn-primary {
    grid-column: 1 / -1;
  }

  .hero-grid,
  html[dir="rtl"] .hero-grid,
  .choose-grid {
    grid-template-columns: 1fr;
  }

  html[dir="rtl"] .hero-content,
  html[dir="rtl"] .domain-card {
    grid-column: auto;
    grid-row: auto;
  }

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

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

@media (max-width: 680px) {
  body {
    padding-top: 70px;
  }

  .container {
    width: min(100% - 28px, var(--sh-container));
  }

  .section {
    padding: 58px 0;
  }

  .header-inner {
    min-height: 70px;
  }

  .brand-logo {
    height: 38px;
    max-width: 160px;
  }

  html[lang="ar"] .brand-logo {
    height: 38px;
    max-width: 198px;
  }

  .mobile-menu-btn {
    width: 44px;
    min-width: 44px;
    height: 44px;
  }

  .site-header.is-open .header-inner {
    padding-bottom: 14px;
  }

  .site-header.is-open .main-nav {
    gap: 8px;
  }

  .site-header.is-open .nav-trigger,
  .site-header.is-open .nav-link {
    min-height: 46px;
    font-size: 13.5px;
  }

  .site-header.is-open .mega-panel,
  .site-header.is-open .mega-panel-wide,
  .site-header.is-open .mega-panel-small {
    padding: 12px;
  }

  .site-header.is-open .mega-link {
    padding: 8px 9px;
  }

  .site-header.is-open .mega-link strong {
    font-size: 13px;
  }

  .site-header.is-open .mega-link small {
    font-size: 11.8px;
  }

  .site-header.is-open .header-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-header.is-open .header-actions .btn-ghost {
    grid-column: 1 / -1;
  }

  .site-header.is-open .header-actions .btn-primary {
    grid-column: 1 / -1;
  }

  h1 {
    font-size: clamp(38px, 11vw, 54px);
  }

  .hero-section {
    padding: 58px 0 58px;
  }

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

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

  .domain-card {
    padding: 22px;
  }

  .domain-search {
    flex-direction: column;
    border-radius: var(--sh-radius-md);
  }

  .domain-search input {
    min-height: 44px;
  }

  .domain-search button {
    width: 100%;
  }

  .service-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .choose-section .choice-item {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 18px 54px 18px 18px;
  }

  html[dir="rtl"] .choose-section .choice-item {
    padding: 18px 18px 18px 54px;
  }

  .choose-section .choice-item strong {
    white-space: normal;
  }

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

/* =========================================================
   12.1) MOBILE MEGA MENU CLEANUP
   Hide descriptions on mobile only
   Desktop mega menu keeps descriptions
   ========================================================= */

@media (max-width: 980px) {
  .site-header.is-open .mega-link small {
    display: none;
  }

  .site-header.is-open .mega-link {
    padding: 11px 10px;
  }

  .site-header.is-open .mega-link strong {
    font-size: 14px;
    line-height: 1.35;
  }
}
/* =========================================================
   12.2) MOBILE MEGA MENU COMPACT SPACING
   Final mobile spacing polish after hiding descriptions
   ========================================================= */

@media (max-width: 980px) {
  .site-header.is-open .mega-panel,
  .site-header.is-open .mega-panel-wide,
  .site-header.is-open .mega-panel-small {
    gap: 10px;
    padding: 12px 14px;
  }

  .site-header.is-open .mega-column {
    gap: 2px;
  }

  .site-header.is-open .mega-label {
    margin: 0 0 6px;
    font-size: 11px;
    line-height: 1.25;
  }

  .site-header.is-open .mega-link {
    min-height: 38px;
    padding: 7px 10px;
    align-content: center;
  }

  .site-header.is-open .mega-link strong {
    font-size: 13.5px;
    line-height: 1.25;
  }

  html[dir="rtl"] .site-header.is-open .mega-link {
    justify-items: end;
  }

  html[dir="ltr"] .site-header.is-open .mega-link {
    justify-items: start;
  }
}

@media (max-width: 680px) {
  .site-header.is-open .mega-panel,
  .site-header.is-open .mega-panel-wide,
  .site-header.is-open .mega-panel-small {
    padding: 11px 12px;
  }

  .site-header.is-open .mega-link {
    min-height: 36px;
    padding: 6px 9px;
  }

  .site-header.is-open .mega-link strong {
    font-size: 13px;
  }
}

/* =========================================================
   12.3) ARABIC MOBILE SUBMENU RIGHT ALIGNMENT
   Keep RTL mobile submenu content aligned correctly
   ========================================================= */

@media (max-width: 980px) {
  html[dir="rtl"] .site-header.is-open .mega-panel {
    direction: rtl;
    text-align: right;
  }

  html[dir="rtl"] .site-header.is-open .mega-column {
    width: 100%;
    justify-items: stretch;
    text-align: right;
  }

  html[dir="rtl"] .site-header.is-open .mega-label {
    width: 100%;
    display: block;
    text-align: right;
  }

  html[dir="rtl"] .site-header.is-open .mega-link {
    width: 100%;
    display: block;
    text-align: right;
  }

  html[dir="rtl"] .site-header.is-open .mega-link strong {
    display: block;
    width: 100%;
    text-align: right;
  }
}