/* =========================================================================
   JomeTech Hosting - Six Custom Stylesheet
   Overlays the stock WHMCS Six theme with JomeTech branding
   ========================================================================= */

:root {
  --jtc-blue:        #0000CC;
  --jtc-blue-deep:   #1A1FBF;
  --jtc-blue-ink:    #0A0F4D;
  --jtc-red:         #FE2D2B;
  --jtc-red-deep:    #C91E1C;
  --jtc-surface:     #FFFFFF;
  --jtc-canvas:      #F6F7FD;
  --jtc-soft:        #EDEFFB;
  --jtc-line:        #E4E6F3;
  --jtc-text:        #0F1633;
  --jtc-muted:       #5C6382;
  --jtc-success:     #15A34A;
  --jtc-warn:        #F59E0B;

  --jtc-radius-sm:   8px;
  --jtc-radius:      14px;
  --jtc-radius-lg:   22px;
  --jtc-radius-pill: 999px;

  --jtc-shadow-sm:   0 2px 6px rgba(10, 15, 77, 0.06);
  --jtc-shadow:      0 12px 32px rgba(10, 15, 77, 0.10);
  --jtc-shadow-lg:   0 28px 60px rgba(10, 15, 77, 0.14);

  --jtc-ease:        cubic-bezier(.22, 1, .36, 1);

  --jtc-topbar-h:    44px;
  --jtc-nav-h:       76px;

  --jtc-display:     "Syne", "Segoe UI", system-ui, -apple-system, sans-serif;
  --jtc-body:        "DM Sans", "Segoe UI", system-ui, -apple-system, sans-serif;
}

/* Fonts ------------------------------------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,600;9..40,700&family=Syne:wght@500;600;700;800&display=swap");

/* Global resets & base --------------------------------------------------- */
html, body {
  font-family: var(--jtc-body);
  color: var(--jtc-text);
  background: var(--jtc-canvas);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6,
.display-1, .display-2, .display-3, .display-4,
.jtc-display {
  font-family: var(--jtc-display);
  font-weight: 700;
  color: var(--jtc-blue-ink);
  letter-spacing: -0.01em;
}

.jtc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--jtc-body);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--jtc-blue);
  background: var(--jtc-soft);
  padding: 6px 14px;
  border-radius: var(--jtc-radius-pill);
  margin-bottom: 16px;
}
.jtc-eyebrow::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--jtc-red);
  box-shadow: 0 0 0 4px rgba(254, 45, 43, 0.18);
}

a { color: var(--jtc-blue); }
a:hover { color: var(--jtc-blue-deep); text-decoration: none; }

.container-fluid.jtc-wide {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* Buttons ---------------------------------------------------------------- */
.btn.jtc-btn,
.jtc-btn {
  font-family: var(--jtc-body);
  font-weight: 600;
  font-size: 15px;
  padding: 12px 22px;
  border-radius: var(--jtc-radius-pill);
  border: 1.5px solid transparent;
  transition: transform .2s var(--jtc-ease), box-shadow .25s var(--jtc-ease), background .2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.jtc-btn-primary {
  background: var(--jtc-blue);
  color: #fff;
  box-shadow: 0 10px 22px rgba(0, 0, 204, 0.28);
}
.jtc-btn-primary:hover {
  background: var(--jtc-blue-deep);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(0, 0, 204, 0.34);
}
.jtc-btn-accent {
  background: var(--jtc-red);
  color: #fff;
  box-shadow: 0 10px 22px rgba(254, 45, 43, 0.28);
}
.jtc-btn-accent:hover {
  background: var(--jtc-red-deep);
  color: #fff;
  transform: translateY(-2px);
}
.jtc-btn-ghost {
  background: transparent;
  color: var(--jtc-blue-ink);
  border-color: var(--jtc-line);
}
.jtc-btn-ghost:hover {
  border-color: var(--jtc-blue);
  color: var(--jtc-blue);
}
.jtc-btn-light {
  background: #fff;
  color: var(--jtc-blue);
  border-color: rgba(255,255,255,0.4);
}

/* Announcement top bar --------------------------------------------------- */
.jtc-topbar {
  height: var(--jtc-topbar-h);
  background: var(--jtc-blue-ink);
  color: rgba(255,255,255,0.92);
  font-size: 13px;
  display: flex;
  align-items: center;
}
.jtc-topbar a { color: inherit; }
.jtc-topbar .jtc-topbar-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  width: 100%;
}
.jtc-topbar .jtc-topbar-left {
  display: flex; align-items: center; gap: 14px;
}
.jtc-topbar .jtc-topbar-right {
  display: flex; align-items: center; gap: 16px;
}
.jtc-topbar .jtc-topbar-right a:hover { color: #fff; }
.jtc-topbar .jtc-pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: #4ADE80;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6);
  animation: jtcPulse 1.8s infinite;
  display: inline-block;
}
@keyframes jtcPulse {
  0%   { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6); }
  70%  { box-shadow: 0 0 0 10px rgba(74, 222, 128, 0); }
  100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}
@media (max-width: 768px) {
  .jtc-topbar .jtc-hide-sm { display: none; }
}

/* Navbar override ------------------------------------------------------- */
.jtc-nav {
  height: var(--jtc-nav-h);
  background: #fff;
  border-bottom: 1px solid var(--jtc-line);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow .25s var(--jtc-ease), backdrop-filter .25s var(--jtc-ease);
}
.jtc-nav.is-scrolled {
  box-shadow: var(--jtc-shadow-sm);
  background: rgba(255,255,255,0.88);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
}
.jtc-nav-row {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 32px;
}
.jtc-nav-logo img { height: 38px; width: auto; }
.jtc-nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
}
.jtc-nav-menu > li { position: relative; }
.jtc-nav-menu > li > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  font-weight: 500;
  font-size: 15px;
  color: var(--jtc-text);
  border-radius: var(--jtc-radius-sm);
  transition: background .2s, color .2s;
}
.jtc-nav-menu > li > a:hover,
.jtc-nav-menu > li.is-active > a {
  color: var(--jtc-blue);
  background: var(--jtc-soft);
}
.jtc-nav-menu .caret {
  width: 10px; height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  display: inline-block;
  margin-top: -4px;
  opacity: .7;
}
.jtc-nav-cta {
  display: flex; align-items: center; gap: 10px;
}

/* Mega panel */
.jtc-mega {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translate(-50%, 10px);
  background: #fff;
  border: 1px solid var(--jtc-line);
  box-shadow: var(--jtc-shadow-lg);
  border-radius: var(--jtc-radius-lg);
  padding: 24px;
  min-width: 620px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s var(--jtc-ease), transform .2s var(--jtc-ease), visibility .2s;
}
.jtc-nav-menu > li:hover > .jtc-mega,
.jtc-nav-menu > li:focus-within > .jtc-mega {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
.jtc-mega-item {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--jtc-radius-sm);
  transition: background .15s;
}
.jtc-mega-item:hover { background: var(--jtc-soft); }
.jtc-mega-item .icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--jtc-soft);
  color: var(--jtc-blue);
  display: grid; place-items: center;
  font-size: 18px;
}
.jtc-mega-item strong {
  display: block;
  font-family: var(--jtc-display);
  color: var(--jtc-blue-ink);
  font-size: 15px;
  margin-bottom: 2px;
}
.jtc-mega-item small {
  color: var(--jtc-muted);
  font-size: 12.5px;
  line-height: 1.4;
  display: block;
}

/* Mobile nav */
.jtc-nav-toggle {
  display: none;
  background: none;
  border: 0;
  font-size: 24px;
  color: var(--jtc-blue-ink);
  padding: 8px;
}
@media (max-width: 991px) {
  .jtc-nav-menu, .jtc-nav-cta .jtc-nav-cta-desktop { display: none; }
  .jtc-nav-toggle { display: inline-flex; }
}

/* HERO ------------------------------------------------------------------- */
.jtc-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(1200px 600px at 85% -10%, rgba(254, 45, 43, 0.12), transparent 60%),
    radial-gradient(900px 500px at -10% 110%, rgba(0, 0, 204, 0.18), transparent 60%),
    linear-gradient(180deg, #050A3C 0%, #0A1166 50%, #0000CC 100%);
  color: #fff;
  padding: 110px 0 140px;
}
.jtc-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  pointer-events: none;
}
.jtc-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  align-items: center;
}
.jtc-hero h1 {
  font-size: clamp(2.4rem, 4.6vw, 4.2rem);
  line-height: 1.02;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.jtc-hero h1 .accent {
  background: linear-gradient(120deg, #FE2D2B 0%, #FFA07E 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}
.jtc-hero .lead {
  font-size: 18px;
  color: rgba(255,255,255,0.82);
  max-width: 560px;
  margin-bottom: 28px;
  line-height: 1.6;
}
.jtc-hero .jtc-eyebrow {
  background: rgba(255,255,255,0.12);
  color: #fff;
  backdrop-filter: blur(6px);
}
.jtc-hero-ctas {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-bottom: 32px;
}
.jtc-hero-proof {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.14);
}
.jtc-hero-proof .item {
  display: flex; flex-direction: column;
}
.jtc-hero-proof .num {
  font-family: var(--jtc-display);
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.jtc-hero-proof .lbl {
  font-size: 12.5px;
  color: rgba(255,255,255,0.72);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 6px;
}

/* Domain search card */
.jtc-domain-card {
  background: #fff;
  border-radius: var(--jtc-radius-lg);
  padding: 28px;
  box-shadow: var(--jtc-shadow-lg);
  color: var(--jtc-text);
  position: relative;
  transform: rotate(-0.8deg);
}
.jtc-domain-card::before {
  content: "";
  position: absolute;
  inset: -14px;
  border: 1px dashed rgba(255,255,255,0.28);
  border-radius: calc(var(--jtc-radius-lg) + 14px);
  pointer-events: none;
}
.jtc-domain-card h3 {
  font-size: 20px;
  margin-bottom: 4px;
}
.jtc-domain-card p.sub {
  color: var(--jtc-muted);
  font-size: 14px;
  margin-bottom: 20px;
}
.jtc-domain-form {
  display: flex;
  background: var(--jtc-canvas);
  border: 1.5px solid var(--jtc-line);
  border-radius: var(--jtc-radius-pill);
  padding: 4px;
  transition: border-color .2s, box-shadow .2s;
}
.jtc-domain-form:focus-within {
  border-color: var(--jtc-blue);
  box-shadow: 0 0 0 4px rgba(0, 0, 204, 0.14);
}
.jtc-domain-form input[type="text"] {
  flex: 1;
  border: 0;
  background: transparent;
  padding: 12px 16px;
  font-size: 16px;
  font-family: var(--jtc-body);
  color: var(--jtc-text);
  outline: none;
}
.jtc-domain-form input[type="text"]::placeholder { color: var(--jtc-muted); }
.jtc-domain-form button {
  flex-shrink: 0;
  padding: 12px 22px;
}
.jtc-domain-tlds {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.jtc-tld-chip {
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--jtc-radius-pill);
  background: var(--jtc-soft);
  color: var(--jtc-blue-ink);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.jtc-tld-chip .price { color: var(--jtc-blue); }

/* Trust strip ------------------------------------------------------------ */
.jtc-trust {
  background: #fff;
  border-top: 1px solid var(--jtc-line);
  border-bottom: 1px solid var(--jtc-line);
  padding: 26px 0;
}
.jtc-trust-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.jtc-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--jtc-muted);
  font-size: 14px;
}
.jtc-trust-item strong {
  color: var(--jtc-blue-ink);
  font-family: var(--jtc-display);
  font-size: 22px;
  line-height: 1;
  display: block;
}
.jtc-trust-item .icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--jtc-soft);
  color: var(--jtc-blue);
  display: grid; place-items: center;
  font-size: 18px;
}

/* Sections --------------------------------------------------------------- */
.jtc-section {
  padding: 100px 0;
}
.jtc-section.alt { background: #fff; }
.jtc-section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.jtc-section-head h2 {
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  margin-bottom: 14px;
}
.jtc-section-head p {
  color: var(--jtc-muted);
  font-size: 17px;
  line-height: 1.6;
}

/* Product cards --------------------------------------------------------- */
.jtc-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.jtc-product-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--jtc-line);
  border-radius: var(--jtc-radius-lg);
  padding: 32px;
  transition: transform .35s var(--jtc-ease), box-shadow .35s var(--jtc-ease), border-color .2s;
  overflow: hidden;
}
.jtc-product-card::after {
  content: "";
  position: absolute;
  inset: auto -40% -40% auto;
  width: 280px; height: 280px;
  background: radial-gradient(closest-side, rgba(0,0,204,0.12), transparent 70%);
  transition: transform .5s var(--jtc-ease);
  transform: scale(0.4);
}
.jtc-product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--jtc-shadow);
  border-color: transparent;
}
.jtc-product-card:hover::after { transform: scale(1); }
.jtc-product-card .icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--jtc-blue) 0%, var(--jtc-blue-deep) 100%);
  color: #fff;
  display: grid; place-items: center;
  font-size: 22px;
  margin-bottom: 20px;
  box-shadow: 0 10px 22px rgba(0,0,204,0.22);
}
.jtc-product-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}
.jtc-product-card p {
  color: var(--jtc-muted);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}
.jtc-product-card .feat-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.jtc-product-card .feat-list li {
  font-size: 14px;
  color: var(--jtc-text);
  padding: 6px 0 6px 26px;
  position: relative;
}
.jtc-product-card .feat-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 10px;
  width: 16px; height: 16px;
  background: var(--jtc-soft);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%230000CC' d='M6.5 10.5L4 8l-1 1 3.5 3.5L13 6l-1-1z'/%3E%3C/svg%3E");
  background-size: 16px 16px;
}
.jtc-product-card .price-line {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 18px;
}
.jtc-product-card .price-line .currency {
  color: var(--jtc-muted);
  font-weight: 600;
}
.jtc-product-card .price-line .num {
  font-family: var(--jtc-display);
  font-size: 40px;
  font-weight: 700;
  color: var(--jtc-blue-ink);
  line-height: 1;
}
.jtc-product-card .price-line .per {
  color: var(--jtc-muted);
  font-size: 14px;
}

/* Feature grid ---------------------------------------------------------- */
.jtc-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.jtc-feature {
  padding: 24px;
  background: var(--jtc-canvas);
  border: 1px solid var(--jtc-line);
  border-radius: var(--jtc-radius);
  transition: background .2s, border-color .2s;
}
.jtc-feature:hover {
  background: #fff;
  border-color: var(--jtc-blue);
}
.jtc-feature .icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--jtc-line);
  display: grid; place-items: center;
  color: var(--jtc-blue);
  font-size: 18px;
  margin-bottom: 14px;
}
.jtc-feature h4 {
  font-size: 16px;
  margin-bottom: 6px;
}
.jtc-feature p {
  font-size: 14px;
  color: var(--jtc-muted);
  line-height: 1.55;
  margin: 0;
}

/* Billing toggle + pricing ---------------------------------------------- */
.jtc-billing-toggle {
  display: inline-flex;
  background: var(--jtc-soft);
  padding: 6px;
  border-radius: var(--jtc-radius-pill);
  margin: 0 auto 48px;
  align-self: center;
}
.jtc-billing-toggle button {
  border: 0;
  background: transparent;
  font-family: var(--jtc-body);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: var(--jtc-radius-pill);
  color: var(--jtc-muted);
  cursor: pointer;
  transition: all .25s var(--jtc-ease);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.jtc-billing-toggle button.is-active {
  background: #fff;
  color: var(--jtc-blue);
  box-shadow: var(--jtc-shadow-sm);
}
.jtc-billing-toggle .save-badge {
  font-size: 10px;
  padding: 2px 8px;
  background: var(--jtc-red);
  color: #fff;
  border-radius: var(--jtc-radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.jtc-pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.jtc-plan {
  position: relative;
  background: #fff;
  border: 1px solid var(--jtc-line);
  border-radius: var(--jtc-radius-lg);
  padding: 32px;
  transition: transform .3s var(--jtc-ease), box-shadow .3s var(--jtc-ease);
}
.jtc-plan:hover { transform: translateY(-6px); box-shadow: var(--jtc-shadow); }
.jtc-plan.is-featured {
  background: linear-gradient(180deg, #0A1166 0%, #0000CC 100%);
  color: #fff;
  border-color: transparent;
  transform: translateY(-10px);
  box-shadow: var(--jtc-shadow-lg);
}
.jtc-plan.is-featured h3,
.jtc-plan.is-featured .price-line .num { color: #fff; }
.jtc-plan.is-featured .price-line .currency,
.jtc-plan.is-featured .price-line .per { color: rgba(255,255,255,0.72); }
.jtc-plan.is-featured .feat-list li { color: rgba(255,255,255,0.92); }
.jtc-plan.is-featured .feat-list li::before {
  background: rgba(255,255,255,0.18);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23ffffff' d='M6.5 10.5L4 8l-1 1 3.5 3.5L13 6l-1-1z'/%3E%3C/svg%3E");
}
.jtc-plan .popular-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--jtc-red);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--jtc-radius-pill);
  box-shadow: 0 10px 22px rgba(254,45,43,0.3);
}

/* CTA band -------------------------------------------------------------- */
.jtc-cta-band {
  background:
    radial-gradient(600px 240px at 15% 100%, rgba(254, 45, 43, 0.22), transparent 60%),
    linear-gradient(135deg, #0A1166 0%, #0000CC 100%);
  border-radius: var(--jtc-radius-lg);
  padding: 60px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.jtc-cta-band::after {
  content: "";
  position: absolute;
  right: -100px; top: -100px;
  width: 360px; height: 360px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  pointer-events: none;
}
.jtc-cta-band::before {
  content: "";
  position: absolute;
  right: -40px; top: -40px;
  width: 240px; height: 240px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  pointer-events: none;
}
.jtc-cta-band-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}
.jtc-cta-band h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 8px;
}
.jtc-cta-band p {
  color: rgba(255,255,255,0.82);
  font-size: 16px;
  margin: 0;
}

/* Payment methods strip ------------------------------------------------- */
.jtc-payments {
  padding: 40px 0;
  background: var(--jtc-canvas);
  border-top: 1px solid var(--jtc-line);
  border-bottom: 1px solid var(--jtc-line);
}
.jtc-payments-title {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--jtc-muted);
  margin-bottom: 22px;
}
.jtc-pay-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.jtc-pay-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: #fff;
  border: 1px solid var(--jtc-line);
  border-radius: var(--jtc-radius-pill);
  font-weight: 600;
  font-size: 13px;
  color: var(--jtc-blue-ink);
  transition: transform .2s, border-color .2s;
}
.jtc-pay-chip:hover {
  transform: translateY(-2px);
  border-color: var(--jtc-blue);
}
.jtc-pay-chip .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
}
.jtc-pay-chip.ecocash .dot { background: #E72429; }
.jtc-pay-chip.paynow .dot  { background: #00A651; }
.jtc-pay-chip.innbucks .dot { background: #FFB800; }
.jtc-pay-chip.bitcoin .dot { background: #F7931A; }
.jtc-pay-chip.visa .dot    { background: #1A1F71; }
.jtc-pay-chip.mc .dot      { background: #FF5F00; }
.jtc-pay-chip.paypal .dot  { background: #003087; }
.jtc-pay-chip.bank .dot    { background: var(--jtc-blue); }

/* Testimonials ---------------------------------------------------------- */
.jtc-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.jtc-testimonial {
  background: #fff;
  border: 1px solid var(--jtc-line);
  border-radius: var(--jtc-radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow .3s;
}
.jtc-testimonial:hover { box-shadow: var(--jtc-shadow); }
.jtc-testimonial .stars {
  color: #F59E0B;
  font-size: 14px;
  letter-spacing: 2px;
}
.jtc-testimonial blockquote {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--jtc-text);
  font-style: normal;
}
.jtc-testimonial .author {
  display: flex; align-items: center; gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--jtc-line);
}
.jtc-testimonial .avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--jtc-soft);
  color: var(--jtc-blue);
  display: grid; place-items: center;
  font-weight: 700;
  font-family: var(--jtc-display);
}
.jtc-testimonial .author-info strong {
  display: block;
  font-size: 14px;
  color: var(--jtc-blue-ink);
}
.jtc-testimonial .author-info small {
  color: var(--jtc-muted);
  font-size: 12.5px;
}

/* Footer ---------------------------------------------------------------- */
.jtc-footer {
  background: #050A3C;
  color: rgba(255,255,255,0.76);
  padding: 80px 0 0;
  margin-top: 80px;
}
.jtc-footer a { color: rgba(255,255,255,0.76); }
.jtc-footer a:hover { color: #fff; }
.jtc-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.jtc-footer-brand img {
  height: 38px; margin-bottom: 20px;
  filter: brightness(0) invert(1);
}
.jtc-footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}
.jtc-footer h5 {
  font-family: var(--jtc-display);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.jtc-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.jtc-footer ul li {
  padding: 5px 0;
  font-size: 14px;
}
.jtc-footer-contact {
  display: flex; flex-direction: column; gap: 10px;
  font-size: 14px;
}
.jtc-footer-contact .line {
  display: flex; gap: 10px; align-items: flex-start;
}
.jtc-footer-contact .line .icon {
  width: 18px; flex-shrink: 0; color: var(--jtc-red);
  margin-top: 2px;
}
.jtc-footer-social {
  display: flex; gap: 10px; margin-top: 14px;
}
.jtc-footer-social a {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  display: grid; place-items: center;
  color: #fff;
  transition: background .2s, transform .2s;
}
.jtc-footer-social a:hover {
  background: var(--jtc-blue);
  transform: translateY(-2px);
}
.jtc-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 13px;
  flex-wrap: wrap; gap: 12px;
}
.jtc-footer-bottom a { margin-left: 18px; }

/* Floating WhatsApp ----------------------------------------------------- */
.jtc-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff !important;
  display: grid; place-items: center;
  font-size: 26px;
  box-shadow: 0 16px 32px rgba(37, 211, 102, 0.35);
  z-index: 999;
  transition: transform .25s var(--jtc-ease);
}
.jtc-whatsapp:hover {
  transform: translateY(-3px) scale(1.04);
  color: #fff;
}
.jtc-whatsapp::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.4);
  animation: jtcRing 2.2s infinite;
}
@keyframes jtcRing {
  0%   { transform: scale(1);   opacity: 0.7; }
  100% { transform: scale(1.45); opacity: 0; }
}

/* Reveal on scroll ------------------------------------------------------ */
.jtc-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--jtc-ease), transform .7s var(--jtc-ease);
}
.jtc-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive ------------------------------------------------------------ */
@media (max-width: 991px) {
  .jtc-hero { padding: 70px 0 90px; }
  .jtc-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .jtc-domain-card { transform: none; }
  .jtc-products,
  .jtc-features,
  .jtc-pricing,
  .jtc-testimonials { grid-template-columns: 1fr 1fr; }
  .jtc-features { grid-template-columns: repeat(2, 1fr); }
  .jtc-footer-grid { grid-template-columns: 1fr 1fr; }
  .jtc-cta-band { padding: 40px 28px; }
  .jtc-cta-band-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 640px) {
  .jtc-section { padding: 70px 0; }
  .jtc-products,
  .jtc-pricing,
  .jtc-testimonials,
  .jtc-features { grid-template-columns: 1fr; }
  .jtc-footer-grid { grid-template-columns: 1fr; }
  .jtc-plan.is-featured { transform: none; }
  .jtc-trust-row { justify-content: center; text-align: center; }
  .jtc-footer-bottom { flex-direction: column; }
}

/* WHMCS page polish ----------------------------------------------------- */
.jtc-page-hero {
  padding: 70px 0 50px;
  background:
    radial-gradient(600px 300px at 80% 0%, rgba(254, 45, 43, 0.08), transparent 70%),
    linear-gradient(180deg, var(--jtc-soft) 0%, var(--jtc-canvas) 100%);
  border-bottom: 1px solid var(--jtc-line);
  margin-bottom: 50px;
}
.jtc-page-hero h1 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 10px;
}
.jtc-page-hero .breadcrumb {
  background: transparent;
  padding: 0;
  font-size: 14px;
  color: var(--jtc-muted);
}
.jtc-page-hero .breadcrumb a { color: var(--jtc-blue); }
.jtc-page-hero .breadcrumb .active { color: var(--jtc-blue-ink); font-weight: 500; }

/* Force border-radius on Six native elements that bleed through */
.main-body .panel,
.main-body .btn,
.main-content .panel {
  border-radius: var(--jtc-radius) !important;
}
.main-body .btn-primary,
.main-content .btn-primary {
  background: var(--jtc-blue) !important;
  border-color: var(--jtc-blue) !important;
}
.main-body .btn-primary:hover,
.main-content .btn-primary:hover {
  background: var(--jtc-blue-deep) !important;
  border-color: var(--jtc-blue-deep) !important;
}

/* Print ------------------------------------------------------------------ */
@media print {
  .jtc-topbar, .jtc-nav, .jtc-whatsapp, .jtc-footer { display: none; }
}
