/* ==========================================================================
   RKGS_TECH — UI v1 (Locked)
   Consolidated + organized stylesheet (deduped, last-intent kept)
   ========================================================================== */

/* ==========================================================================
   1) Design tokens
   ========================================================================== */
:root{
  --primary-blue:#1E3A8A;
  --navy:#0F172A;
  --orange:#F97316;
  --light-blue:#38BDF8;
  --white:#FFFFFF;
  --gray:#F3F4F6;
  --text-dark:#1F2937;

  --radius:16px;

  --shadow:0 10px 30px rgba(15,23,42,.12);
  --shadow-soft: 0 6px 18px rgba(0,0,0,.35);
  --shadow-medium: 0 10px 28px rgba(0,0,0,.45);
  --shadow-strong: 0 18px 48px rgba(0,0,0,.55);

  /* Orange glow */
  --glow-orange-soft: 0 0 12px rgba(255,122,24,.35);
  --glow-orange-medium: 0 0 22px rgba(255,122,24,.45);

  /* White glow (text / logo) */
  --glow-white-soft: 0 0 10px rgba(255,255,255,.25);
}

/* ==========================================================================
   2) Base reset
   ========================================================================== */
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text-dark);
  background:var(--gray);
}
a{color:inherit;text-decoration:none}

/* ==========================================================================
   3) Layout helpers
   ========================================================================== */
.container{
  max-width:1160px;
  margin:0 auto;
  padding:0 16px;
}
.spacer{height:16px}

/* ==========================================================================
   4) Topbar / Header
   ========================================================================== */
.topbar{
  position:sticky;
  top:0;
  z-index:50;
  background:linear-gradient(90deg, var(--primary-blue), #1b2f78);
  box-shadow:
    0 6px 18px rgba(0,0,0,.35),
    0 2px 0 rgba(255,183,3,.15);
}
.topbar > .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  min-height:72px;
}

/* =========================
   RKGS TECH Brand (Locked)
   ========================= */
.brand-logo{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-weight:800;
  font-size:18px;
  letter-spacing:0;

  box-shadow:
    var(--shadow-medium),
    var(--glow-orange-soft);
}

.brand-box{
  display:inline-flex;
  align-items:baseline;
  gap:0;
  padding:6px 12px;
  border:1px solid rgba(255,255,255,.85);
  border-radius:6px;
  color:#fff;

  background:linear-gradient(
    90deg,
    var(--orange) 0%,
    var(--orange) 30%,
    rgba(255,255,255,.18) 45%,
    rgba(255,255,255,.06) 65%,
    transparent 100%
  );
}

.brand-r{
  display:inline-block;
  font-size:1.25em;
  font-weight:900;
  line-height:1;
  color:#fff;
  margin-right:0;
  position:relative;
  top:1px;
}

.brand-box-text{
  font-weight:800;
  letter-spacing:0;
}

.brand-text{
  font-weight:800;
  font-size:18px;
  color:#fff;
}

/* ==========================================================================
   5) Navigation
   ========================================================================== */
.nav{display:flex;align-items:center;gap:14px}
.nav__link{
  min-height:72px;
  display:flex;
  align-items:center;
  padding:0 14px;
  position:relative;
  font-weight:600;
  font-size:14px;
  color:#fff;

  text-shadow:
    0 1px 2px rgba(0,0,0,.35),
    0 0 6px rgba(255,183,3,.18);
}
.nav__link::after{
  content:"";
  position:absolute;
  left:8px;
  right:8px;
  bottom:1px;
  height:4px;
  border-radius:99px;
  opacity:0;
  transition:opacity .18s ease;
  background:linear-gradient(90deg, #ffb703, #ff6a00);
  box-shadow:0 4px 10px rgba(255,106,0,.22);
}
.nav__link:hover::after,
.nav__link.active::after,
.nav__link.is-active::after{opacity:1}

/* Mobile nav toggle */
.nav__toggle{
  display:none;
  width:42px;height:42px;
  border:1px solid rgba(255,255,255,.25);
  border-radius:12px;
  background:rgba(255,255,255,.08);
  cursor:pointer;
}
.nav__toggle span{display:block;height:2px;background:#fff;margin:6px 10px;border-radius:2px}
.nav[data-open="true"]{display:flex}

/* ==========================================================================
   6) Buttons
   ========================================================================== */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:5px 14px;
  border-radius:4px;
  font-weight:600;
  font-size:14px;
  cursor:pointer;

  border:1px solid #c86311;
  box-shadow: var(--shadow-soft);

  transition:
    box-shadow .2s ease,
    transform .2s ease,
    border-color .2s ease,
    filter .2s ease,
    background-color .2s ease;
}
.btn:hover{
  border-color: rgba(0,0,0,.55);
  box-shadow:
    0 4px 14px rgba(0,0,0,.45),
    0 0 16px rgba(255,183,3,.35);
  transform: translateY(-1px);
}
.btn--primary{
  background: linear-gradient(180deg, #ff9a2f, #f97316);
  color:var(--white);
  box-shadow:
    var(--shadow-soft),
    var(--glow-orange-soft);
}
.btn--primary:hover{
  filter:brightness(.95);
  box-shadow:
    var(--shadow-soft),
    var(--glow-orange-medium);
  transform: translateY(-2px);
}
.btn--outline{
  background:transparent;
  color:rgba(255,255,255,.92);
  border:1px solid rgba(255,255,255,.38);
}
.btn--outline:hover{
  background:rgba(255,255,255,.08);
  transform: translateY(-1px);
}
.btn--ghost{
  background:transparent;
  border-color:rgba(30,58,138,.25);
  color:var(--primary-blue);
}
.btn--ghost:hover{background:rgba(30,58,138,.06)}

/* CTA button */
.btn--cta{
  background: linear-gradient(180deg, #ff9a2f, #f97316);
  color: #ffffff;
  font-weight: 800;
  padding: 10px 18px;
  border-radius: 6px;
  border: 1px solid rgba(0,0,0,0.15);

  box-shadow:
    0 6px 0 rgba(201,90,10,0.9),
    0 10px 20px rgba(0,0,0,0.25);

  transition: transform .15s ease, box-shadow .15s ease;
}
.btn--cta:hover{
  transform: translateY(-1px);
  box-shadow:
    0 7px 0 rgba(201,90,10,0.95),
    0 14px 26px rgba(0,0,0,0.30);
}
.btn--cta:active{
  transform: translateY(1px);
  box-shadow:
    0 3px 0 rgba(201,90,10,0.9),
    0 6px 14px rgba(0,0,0,0.25);
}

/* Small button */
.btn--sm{
  padding:6px 10px;
  font-size:13px;
  border-radius:10px;
  align-self:start;
}

/* ==========================================================================
   7) Dropdown
   ========================================================================== */
.dropdown{position:relative}
.dropdown__btn{
  background:rgba(255,255,255,.10);
  color:#fff;
  border:1px solid rgba(255,255,255,.18);
  padding:10px 12px;
  border-radius:12px;
  cursor:pointer;
  font-weight:600;
}
.dropdown__menu{
  position:absolute;
  right:0;
  top:48px;
  min-width:220px;
  background:#fff;
  border-radius:14px;
  box-shadow:var(--shadow);
  border:1px solid rgba(15,23,42,.08);
  padding:8px;
  display:none;
}
.dropdown__item{
  display:block;
  padding:10px 10px;
  border-radius:10px;
  font-weight:500;
  font-size:14px;
  color:var(--text-dark);
  width:100%;
  text-align:left;
  background:transparent;
  border:none;
}
.dropdown__item:hover{background:rgba(30,58,138,.06)}
.dropdown__sep{height:1px;background:rgba(15,23,42,.08);margin:6px 0}
.dropdown__item--danger{color:#b91c1c}
.dropdown[data-open="true"] .dropdown__menu{display:block}

/* ==========================================================================
   8) Announcement + Promo Scroll (conditional)
   ========================================================================== */
.announce{
  background:rgba(0,0,0,.18);
  border-bottom:1px solid rgba(255,255,255,.10);
}
.announce .container{
  padding:8px 16px;
  display:flex;
  justify-content:center;
}
.announce__text,.announce__link{
  color:rgba(255,255,255,.92);
  font-size:13px;
  text-decoration:none;
}
.announce__link:hover{text-decoration:underline}

.promoScroll{
  background:rgba(255,255,255,.06);
  border-bottom:1px solid rgba(255,255,255,.10);
}
.promoScroll .container{padding:8px 16px}
.promoScroll__track{
  display:flex;
  gap:18px;
  overflow:auto;
  scrollbar-width:none;
}
.promoScroll__track::-webkit-scrollbar{display:none}
.promoScroll__item{
  white-space:nowrap;
  color:rgba(255,255,255,.92);
  font-size:13px;
  text-decoration:none;
}
.promoScroll__item:hover{text-decoration:underline}

/* ==========================================================================
   9) Hero (full width, background image, split)
   ========================================================================== */
.hero--full{
  position:relative;
  overflow:hidden;
  padding:0;
}
.hero--full .container{padding-top:26px;padding-bottom:26px}

.hero__bg{
  position:absolute;
  inset:0;
  z-index:-1;
  background-image:url("/assets/img/hero/hero-bg-compressed.jpg");
  background-size:cover;
  background-position:center right;
  background-repeat:no-repeat;
}

/* Grid split */
.heroGrid{
  display:grid;
  grid-template-columns:3fr 1fr;
  gap:0;
  align-items:stretch;
}
.heroGrid__main{padding:10px 10px 10px 0}

/* side divider + spacing */
.heroGrid__side{
  border-left:1px solid rgba(255,255,255,0.18);
  padding:0 0 0 10px;
  align-self:flex-start;
}

/* Hero title (final, 60% version) */
.hero-title{
  margin:0 0 14px;
  font-size: clamp(19.2px, 2.52vw, 27.6px);
  font-weight:800;
  line-height:1.15;
  letter-spacing:-0.4px;
  color:#FFFFFF;
  max-width:720px;

  text-shadow:
    0 2px 8px rgba(0,0,0,.55),
    var(--glow-white-soft);
}
.hero-title .t-orange{
  color:#FF7A18;
  text-shadow:
    0 2px 10px rgba(0,0,0,.55),
    var(--glow-orange-soft);
}

/* Subtitle */
.hero__subtitle{
  margin:10px 0 18px;
  color:rgba(255,255,255,.88);
  font-size:15px;
}
.hero__subtitle .sep{opacity:.55}

/* Domain Search */
.domainSearch{
  display:flex;
  align-items:stretch;
  width:min(780px,100%);
  background:#fff;
  border-radius:12px;
  overflow:hidden;
  border:1px solid rgba(15,23,42,.12);
  box-shadow: var(--shadow-soft);
}
.domainSearch__input{
  flex:1;
  border:0;
  outline:none;
  padding:14px 16px;
  font-size:16px;
  color:#0f172a;
  background:transparent;
}

.domainSearch__tld{
  position:relative;
  display:flex;
  align-items:center;
  gap:6px;
  padding:0 14px;
  font-weight:700;
  cursor:pointer;
  background-color:#ffffff;
  user-select:none;
}
.domainSearch__arrow{font-size:12px;opacity:.7}

.domainSearch__tldMenu{
  position:absolute;
  top:100%;
  right:0;
  min-width:120px;
  background:#fff;
  border-radius:10px;
  box-shadow:0 14px 30px rgba(0,0,0,.22);
  border:1px solid rgba(15,23,42,.12);
  padding:6px;
  display:none;
  z-index:20;
}
.domainSearch__tldItem{
  padding:8px 10px;
  border-radius:8px;
  font-size:14px;
  cursor:pointer;
}
.domainSearch__tldItem:hover{background:rgba(30,58,138,.08)}
.domainSearch__tld.open .domainSearch__tldMenu{display:block}

.domainSearch__btn{
  border:0;
  padding:0 22px;
  font-weight:800;
  font-size:18px;
  color:#fff;
  background:linear-gradient(90deg,#ffb703,#ff6a00);
  cursor:pointer;
  box-shadow:0 10px 20px rgba(255,106,0,.28);
}
.domainSearch__btn:hover{filter:brightness(.96)}

.domainSearch:focus-within{
  border-color:rgba(56,189,248,.8);
  box-shadow:
    0 16px 34px rgba(0,0,0,.24),
    0 0 0 4px rgba(56,189,248,.18);
}

/* Trust ticks */
.trust{display:flex;gap:10px;flex-wrap:wrap;margin-top:14px}
.trust__item{
  font-size:13px;
  background:transparent;
  border:none;
  padding:0;
  border-radius:0;
  color:rgba(255,255,255,.92);
}
.trust--ticks .tick{
  color:var(--orange);
  font-weight:900;
  margin-right:8px;
}

/* Side card base */
.sideCard{
  padding:16px 14px;
  height:100%;
}
.sideCard__title{
  color:rgba(255,255,255,.95);
  font-weight:700;
  margin:0 0 10px;
}
.sideCard__title .accent{color:var(--orange)}

/* OPTIONAL: old list style (keep if used anywhere) */
.sideCard__list{
  list-style:none;
  padding:0;margin:0;
  display:grid;
  gap:8px;
  color:rgba(255,255,255,.90);
  font-size:13px;
}
.sideCard__list .dot{
  display:inline-block;
  width:6px;height:6px;
  border-radius:50%;
  background:var(--orange);
  margin-right:8px;
  transform:translateY(-1px);
}

/* =========================
   Right-side slider (md-3)
   ========================= */
.sideCard--slider{
  height:160px;
  align-self:flex-start;
}
.sideSlider{position:relative;min-height:0}

.sideSlide{display:none;animation:fadeUp .28s ease both}
.sideSlide--active{display:block}

@keyframes fadeUp{
  from{opacity:0;transform:translateY(6px)}
  to{opacity:1;transform:translateY(0)}
}

.sideCard__content{
  display:grid;
  gap:10px;
  color:rgba(255,255,255,.92);
  font-size:13px;
  line-height:1.5;
}

.promoItem,
.scriptItem{
  padding:10px 12px;
  border-radius:12px;
  background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.12);
}
.promoTitle,
.scriptTitle{font-weight:800;color:#fff;margin:0 0 2px}
.promoText,
.scriptText{opacity:.9}

.scriptLink{
  color:var(--orange);
  font-weight:600;
  text-decoration:none;
}
.scriptLink:hover{text-decoration:underline}

/* ==========================================================================
   10) Sections (general)
   ========================================================================== */
.section{padding:34px 0}
.section--tight{padding:18px 0}
.section--soft{background:linear-gradient(180deg, rgba(255,255,255,.55), rgba(255,255,255,.20))}

.section.section--tight{background-color:#fefefe}
.section.section--tight{
  position:relative;
  z-index:1;
  box-shadow:
    0 6px 14px rgba(0,0,0,0.08),
    0 2px 6px rgba(0,0,0,0.06);
}

.sectionHead{text-align:center;margin-bottom:18px}
.sectionHead__title{margin:0;font-size:26px;color:var(--navy)}
.sectionHead__text{margin:10px auto 0;max-width:720px;opacity:.9}

/* Divider line inside section title */
.sectionHead__title{
  display:flex;
  align-items:center;
  gap:16px;
  text-align:center;
}
.sectionHead__title::before,
.sectionHead__title::after{
  content:"";
  flex:1;
  height:1px;
  background:linear-gradient(
    to right,
    transparent,
    rgba(15,48,100,0.35),
    transparent
  );
}

/* ==========================================================================
   11) Services strip (FINAL: 4-column horizontal cards)
   ========================================================================== */
.services{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:14px;
}

.serviceCard{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:14px;

  padding:14px 16px;
  background:rgba(255,255,255,0.90);
  border:1px solid rgba(0,0,0,0.06);
  border-radius:10px;
  box-shadow:0 10px 22px rgba(0,0,0,0.12);
  text-decoration:none;
}

.serviceCard__icon{
  width:54px;height:54px;
  flex:0 0 54px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-left:0;
  margin-right:14px;
}
.serviceCard__icon img{
  width:54px;height:54px;
  display:block;
}

.serviceCard__body{min-width:0;text-align:left}
.serviceCard__title{font-weight:700;line-height:1.1;color:var(--primary-blue)}
.serviceCard__text{margin-top:4px;font-size:13px;line-height:1.25;opacity:.85}

@media (max-width: 980px){
  .services{grid-template-columns:repeat(2, minmax(0,1fr))}
}
@media (max-width: 520px){
  .services{grid-template-columns:1fr}
}

/* ==========================================================================
   12) Plans (pricing cards — FINAL: .plansGrid + .planCard*)
   ========================================================================== */
.plansGrid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:16px;
}

.planCard{
  position:relative;
  background:rgba(255,255,255,0.94);
  border:1px solid rgba(255,255,255,0.18);
  border-radius:10px;
  box-shadow:0 14px 26px rgba(0,0,0,0.18);
  overflow:hidden;
  text-align:center;

  display:flex;
  flex-direction:column;
}

.planCard__head{
  background:linear-gradient(180deg, rgba(18,59,120,0.95), rgba(15,48,100,0.95));
  color:#fff;
  font-weight:700;
  letter-spacing:.3px;
  padding:12px 10px;
  text-shadow:0 2px 10px rgba(0,0,0,0.25);
}

.planCard__body{
  padding:18px 10px 22px;
  background:linear-gradient(180deg, rgba(255,255,255,0.98), rgba(245,248,255,0.92));
  flex:1;
}

.planPrice{
  font-weight:800;
  font-size:56px;
  line-height:1;
  color:rgba(16,54,112,0.95);
}
.planCur{
  font-size:26px;
  vertical-align:top;
  margin-right:4px;
}
.planTerm{
  margin-top:10px;
  font-size:22px;
  color:rgba(16,54,112,0.72);
}
.planPrice--accent{color:#f28a19}
.planTerm--accent{color:rgba(242,138,25,0.85)}

.planCard__foot{
  height:110px;
  padding:12px 14px;
  background:rgba(255,255,255,0.92);
  border-top:1px solid rgba(0,0,0,0.08);
  overflow:visible;
  text-align:center;

  display:flex;
  align-items:center;
  justify-content:center;
}

.planFeatures{
  margin:0;
  padding:0;
  list-style:none;

  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:6px;

  font-size:13px;
  color:rgba(15,48,100,0.85);
}
.planFeatures li{display:block;white-space:nowrap}

/* Ribbon (single final definition) */
.ribbon-vertical{
  position:absolute;
  top:0;
  left:10px;
  background-color:#92cfe7;
  color:var(--primary-blue);
  text-align:center;
  padding:8px 0;
  width:60px;
  font-weight:700;
  z-index:10;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 15px), 50% 100%, 0 calc(100% - 15px));
  height:auto;
  font-size:0.8rem;
  box-shadow: var(--shadow-soft);
  text-shadow: var(--glow-white-soft);
}
.ribbon-vertical div{margin-bottom:20px}

@media (max-width: 980px){
  .plansGrid{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media (max-width: 520px){
  .plansGrid{grid-template-columns:1fr}
}

/* ==========================================================================
   13) Cards / Content blocks (grid2 + info + yt)
   ========================================================================== */
.grid2{display:grid;grid-template-columns:7fr 5fr;gap:14px;position:relative}

/* vertical divider between 7fr/5fr */
.grid2::after{
  content:"";
  position:absolute;
  top:0;
  bottom:0;
  left:58.33%;
  width:1px;
  background:rgba(15,23,42,0.12);
  transform:translateX(-0.5px);
}

/* Base card class (you later switched to "no card look") */
.card,
.card--mini{
  background:transparent;
  border:none;
  box-shadow:none;
  padding:0;
  height:auto;
}

/* Headings line style */
.sectionTitle,
.infoTitle,
.ytHead{
  display:flex;
  align-items:center;
  gap:12px;
  margin-top:0;
  font-weight:800;
  color:var(--primary-blue);
}
.sectionTitle::after,
.infoTitle::after,
.ytHead::after{
  content:"";
  flex:1;
  height:1px;
  background:rgba(15,23,42,0.12);
}

/* Info block */
.infoBlock{padding-bottom:20px;padding-right:20px}

.infoActionRow{
  display:flex;
  align-items:center;
  gap:14px;
  margin-top:12px;
}
.infoDivider{
  flex:1;
  height:1px;
  background:rgba(15,23,42,0.18);
}
.infoActionRow .btn{margin-left:auto}

/* Ticked list */
.infoList li{
  position:relative;
  padding-left:22px;
  list-style:none;
}
.infoList li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  color:var(--orange);
  font-weight:900;
}

/* Test series with description */
.infoList--desc li{
  display:flex;
  flex-direction:column;
  gap:2px;
}
.infoList--desc li strong{
  font-weight:700;
  color:var(--text-dark);
}
.infoList--desc li span{
  font-size:13px;
  opacity:.85;
}

/* Location */
.locationText{
  display:inline-flex;
  align-items:center;
  gap:6px;
  font-weight:100;
  
}
.locationIcon{font-size:14px;line-height:1}

/* YouTube block */
.ytCard{padding:0;margin-left:20px}

.ytBanner{
  border-radius:12px;
  overflow:hidden;
  border:1px solid rgba(15,23,42,0.10);
  box-shadow:0 10px 22px rgba(0,0,0,0.12);
}
.ytBanner img{width:100%;display:block}

.ytVideo{
  width:100%;
  aspect-ratio:16 / 9;
  overflow:hidden;
  border:1px solid rgba(15,23,42,0.10);
  box-shadow:0 10px 22px rgba(0,0,0,0.12);
  position:relative;
}
.ytVideo img{width:100%;height:100%;object-fit:cover;display:block}
.ytPlay{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:44px;
  color:#fff;
  background:rgba(0,0,0,0.18);
  text-shadow:0 10px 22px rgba(0,0,0,0.55);
}

.ytMeta{
  padding:12px;
  box-shadow:
    -10px 0 20px -12px rgba(0,0,0,0.18),
     10px 0 20px -12px rgba(0,0,0,0.18),
     0 12px 24px -14px rgba(0,0,0,0.22);
}

.ytStats{
  display:grid;
  grid-template-columns:repeat(3, 1fr) auto;
  gap:10px;
  align-items:center;
  padding:12px 0;
}
.ytStat{text-align:left}
.ytStat b{
  display:block;
  font-size:18px;
  color:var(--navy);
  line-height:1.1;
}
.ytStat span{font-size:11px;opacity:.75}

.ytStat--div{
  border-left:1px solid rgba(15,23,42,0.10);
  padding-left:12px;
}

.ytSubscribe{
  justify-self:end;
  background:#cc0000;
  color:#fff;
  padding:8px 14px;
  border-radius:6px;
  font-weight:800;
  box-shadow:0 8px 16px rgba(0,0,0,0.18);
}

.ytActions{
  display:flex;
  align-items:center;
  gap:10px;
  padding-top:10px;
  border-top:1px solid rgba(15,23,42,0.08);
}

/* FINAL ytIcon (single) */
.ytIcon{
  width:36px;
  height:36px;
  display:inline-flex;
  align-items:center;
  justify-content:center;

  background:#f5f6f8;
  border:1px solid rgba(0,0,0,0.12);
  border-radius:8px;
  box-shadow:0 1px 2px rgba(0,0,0,0.12);

  transition: background .15s ease, box-shadow .15s ease;
}
.ytIcon img{
  width:36px;
  height:36px;
  display:block;
}
.ytIcon:hover{
  background:#eef0f3;
  box-shadow:0 2px 6px rgba(0,0,0,0.18);
}

.ytVisit{
  margin-left:auto;
  font-size:12px;
  font-weight:700;
  padding:9px 10px;
  border-radius:8px;
  background:rgba(30,58,138,0.05);
  border:1px solid rgba(15,23,42,0.10);
  color:var(--navy);
}

/* ==========================================================================
   14) Footer
   ========================================================================== */
.footer{background:var(--navy);color:rgba(255,255,255,.86);padding:34px 0 18px}
.footer__grid{display:grid;grid-template-columns:2fr 1fr 1fr 1.2fr;gap:18px}
.footer__brand{font-weight:800;color:#fff;font-size:18px}
.footer__title{font-weight:700;color:#fff;margin-bottom:10px}
.footer__text{margin:10px 0 0;opacity:.9;line-height:1.6}
.footer__link{display:block;padding:6px 0;opacity:.88}
.footer__link:hover{opacity:1;text-decoration:underline}
.footer__bottom{border-top:1px solid rgba(255,255,255,.12);margin-top:18px;padding-top:14px;text-align:center;opacity:.9}
.footer__meta{margin:10px 0 12px}
.footer__metaRow{display:flex;gap:10px;align-items:center;margin:8px 0}
.dot{width:8px;height:8px;border-radius:999px;background:var(--orange)}
.social{display:flex;gap:10px;flex-wrap:wrap}
.social__btn{
  width:42px;height:42px;
  border-radius:14px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  display:grid;place-items:center;
}
.social__btn:hover{background:rgba(255,255,255,.12)}
.social__btn img{width:20px;height:20px;filter:invert(1)}

/* ==========================================================================
   15) Responsive
   ========================================================================== */
@media (max-width: 1024px){
  .grid2{grid-template-columns:1fr}
  .grid2::after{display:none}
  .footer__grid{grid-template-columns:1fr 1fr}
}

@media (max-width: 920px){
  .heroGrid{grid-template-columns:1fr}
  .heroGrid__main{padding-right:0}
  .heroGrid__side{
    border-left:none;
    padding-left:0;
    padding-top:12px;
    padding-bottom:0;
  }
}

@media (max-width: 720px){
  .nav__toggle{display:inline-block}
  .nav{
    position:absolute;
    top:72px;
    right:16px;
    left:16px;
    background:#fff;
    border-radius:18px;
    padding:12px;
    box-shadow:var(--shadow);
    border:1px solid rgba(15,23,42,.10);
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:6px;
  }
  .nav__link{
    color:var(--text-dark);
    text-shadow:none;
    min-height:44px;
  }
  .nav__link::after{display:none}

  .dropdown__btn{
    width:100%;
    background:rgba(30,58,138,.08);
    color:var(--primary-blue);
    border-color:rgba(30,58,138,.18);
  }
  .dropdown__menu{position:static;box-shadow:none;border:none;padding:0;margin-top:6px}

  .footer__grid{grid-template-columns:1fr}
}

/* Hero title fine-tuning (kept only where it actually helps) */
@media (max-width: 420px){
  .hero-title{
    font-size:26px;
    line-height:1.2;
  }
}
.no-scroll { overflow: hidden; }

.modal { position: fixed; inset: 0; display: none; z-index: 9999; }
.modal.is-open { display: block; }

.modal__backdrop { position:absolute; inset:0; background: rgba(0,0,0,.55); }

.modal__dialog {
  position: relative;
  width: min(520px, calc(100% - 22px));
  margin: 8vh auto 0;
  background: #fff;
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 18px 60px rgba(0,0,0,.25);
}

.modal__close {
  position:absolute;
  top: 10px; right: 12px;
  border:0; background: transparent;
  font-size: 26px; line-height: 1;
  cursor: pointer;
}

.modal__title { margin: 6px 0 12px; font-weight: 800; }

.modal__sep { display:flex; align-items:center; gap: 10px; margin: 14px 0; opacity:.7; }
.modal__sep::before, .modal__sep::after { content:""; flex:1; height:1px; background: rgba(0,0,0,.12); }
.modal__sep span { font-size: 12px; }

.socialRow { display:grid; gap: 10px; }
.socialBtn { width:100%; text-align:center; }

.field { display:block; margin-bottom: 10px; }
.field span { display:block; font-size: 13px; opacity:.75; margin-bottom: 6px; }
.field input { width:100%; padding: 10px 12px; border-radius: 12px; border: 1px solid rgba(0,0,0,.14); }

.check { display:flex; gap: 8px; align-items:center; margin: 10px 0 14px; }
.err { display:block; margin-top: 6px; color: #b00020; }

.modal__foot { margin-top: 12px; text-align:center; font-size: 13px; opacity:.85; }

.loginPop{position:fixed;inset:0;display:none;z-index:9999}
.loginPop.is-open{display:block}
.loginPop__backdrop{position:absolute;inset:0;background:rgba(0,0,0,.75)}

.loginPop__card{
  width:420px;max-width:calc(100% - 24px);
  margin:6vh auto;background:#fff;
  border-radius:28px;padding:24px;
  box-shadow:0 40px 120px rgba(0,0,0,.35);
  position:relative;
}

.loginPop__close{
  position:absolute;right:14px;top:14px;
  border:0;background:none;font-size:26px;cursor:pointer;
}

.loginPop__title{
  font-size:26px;font-weight:700;margin-bottom:6px;
}

.loginPop__sub{
  font-size:14px;color:#555;margin-bottom:18px;
}

.loginPop__social{display:grid;gap:12px}

.loginPop__sbtn{
  display:flex;align-items:center;gap:10px;
  border:1px solid #ddd;border-radius:999px;
  padding:12px 16px;background:#fff;
  font-weight:500;text-decoration:none;color:#000;
}

.loginPop__sbtn img{width:18px;height:18px}

.loginPop__or{
  display:flex;align-items:center;gap:12px;
  margin:18px 0;font-size:12px;color:#777
}
.loginPop__or:before,
.loginPop__or:after{
  content:"";flex:1;height:1px;background:#ddd
}

.loginPop__input{
  width:100%;height:46px;
  border-radius:999px;border:1px solid #ccc;
  padding:0 16px;font-size:14px;margin-bottom:12px;
}

.loginPop__continue{
  width:100%;height:48px;
  border-radius:999px;border:0;
  background:#000;color:#fff;
  font-weight:600;font-size:15px;
}

.loginPop__remember{
  display:flex;gap:8px;
  font-size:13px;margin-bottom:12px;
}
/* Modal error (shown below title) */
.loginPop__error{
  margin-top: 8px;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 13px;
  line-height: 1.35;

  color: #b42318;
  background: #fef3f2;
  border: 1px solid #fda29b;

  box-shadow: 0 6px 18px rgba(180, 35, 24, .08);
}

.loginPop__error[hidden]{
  display: none !important;
}
html, body { height: 100%; }

body{
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main{
  flex: 1;
}

.top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.title {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
}

.muted {
    font-size: 12px;
    color: #6b7280;
    margin-top: 2px;
}

/* Alerts */
.alert {
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 13px;
    margin-bottom: 14px;
}

.alert.ok {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.alert.err {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* Table */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

th {
    text-align: left;
    font-size: 12px;
    font-weight: 700;
    color: #374151;
    padding: 10px 8px;
    border-bottom: 1px solid #e5e7eb;
    text-transform: uppercase;
    letter-spacing: .4px;
}

td {
    padding: 10px 8px;
    border-bottom: 1px solid #e5e7eb;
    vertical-align: top;
    font-size: 13px;
    color: #111827;
}

/* Setting key (monospace) */
.k {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
                 "Liberation Mono", "Courier New", monospace;
    font-size: 12px;
    color: #1f2937;
}

/* Inputs */
input[type="text"],
input[type="number"],
select,
textarea {
    width: 100%;
    padding: 9px 10px;
    font-size: 13px;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    outline: none;
    background: #ffffff;
}

input:focus,
select:focus,
textarea:focus {
    border-color: #f97316;
    box-shadow: 0 0 0 2px rgba(249,115,22,.15);
}

/* Textarea */
textarea {
    min-height: 90px;
    resize: vertical;
}

/* Type column */
.type {
    font-size: 12px;
    color: #6b7280;
    white-space: nowrap;
}

/* Hint text */
.hint {
    font-size: 12px;
    color: #6b7280;
    margin-top: 4px;
}

/* Actions */
.actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 16px;
}

/* Save button */

/* Responsive */
@media (max-width: 900px) {
    th:nth-child(3),
    td:nth-child(3) {
        display: none; /* hide type column on small screens */
    }
}
/* ===============================
   Admin / Page Heading Hero
   =============================== */

.hero.heading-hero {
    background:
        linear-gradient(
            135deg,
            #0b1220 0%,
            #111827 60%,
            #0b1220 100%
        );
    min-height: 120px;        /* change to 100px or 150px if needed */
    display: flex;
    align-items: center;
    margin-bottom: 22px;
}

/* Inner container content */
.heading-hero__inner {
    padding: 22px 0;          /* vertical breathing space */
}

/* Main title */
.heading-hero__title {
    margin: 0;
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: .2px;
}

/* Accent underline */
.heading-hero__title::after {
    content: "";
    display: block;
    width: 48px;
    height: 3px;
    background: #f97316;
    margin-top: 6px;
    border-radius: 2px;
}

/* Subtitle / muted text */
.heading-hero__muted {
    margin-top: 6px;
    font-size: 13px;
    color: #9ca3af;
    max-width: 720px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero.heading-hero {
        min-height: 100px;
    }

    .heading-hero__title {
        font-size: 22px;
    }
}
/* =========================
   RKGS Common Table (UI v1)
   ========================= */

.rkgsTableWrap{
  background:#fff;
  border:1px solid rgba(20,35,60,.12);
  border-radius:10px;
  overflow:hidden;
  box-shadow:0 6px 18px rgba(16,24,40,.06);
}

.rkgsTable{
  width:100%;
  border-collapse:separate;
  border-spacing:0;
  margin:0;
  border-radius:0;
}

.rkgsTable thead th{
  background:rgba(65, 95, 198,1);
  color:rgba(255, 255, 255,1);
  font-weight:700;
  text-align:left;
  padding:14px 18px;
  border-bottom:1px solid rgba(20,35,60,.10);
  letter-spacing:.2px;
}

.rkgsTable tbody td{
  padding:14px 18px;
  border-bottom:1px solid rgba(20,35,60,.08);
  color:rgba(20,35,60,1);
  vertical-align:middle;
}

.rkgsTable tbody tr:nth-child(odd){
  background:#fff;
}
.rkgsTable tbody tr:nth-child(even){
  background:rgba(240,246,255,.65);
}

.rkgsTable tbody tr:hover{
  background:rgba(230,240,255,.95);
}


table.rkgsTable tbody tr.parent{
  background:rgba(84, 109, 197, 1) !important;
}
.rkgsTable tbody  tr.parent td{
 
  color:#fff !important;
 
}
.rkgsTable a{
  color:rgba(46,92,190,1);
  text-decoration:none;
  font-weight:600;
}
.rkgsTable a.btn--primary{
  color:#fff;

}
.rkgsTable a:hover{
  text-decoration:underline;
}

/* column alignment helpers */
.rkgsTable--center td,
.rkgsTable--center th{ text-align:center; }
.rkgsTable .col-actions{ width:140px; text-align:center; }
.rkgsTable .col-credits{ width:140px; }

/* Action Button */
.rkgsBtn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:84px;
  height:38px;
  padding:0 16px;
  border-radius:10px;
  border:1px solid rgba(44,88,176,.35);
  background:rgba(44,88,176,1);
  color:#fff !important;
  font-weight:700;
  text-decoration:none !important;
  box-shadow:0 10px 18px rgba(44,88,176,.20);
  transition:transform .12s ease, filter .12s ease;
}
.rkgsBtn:hover{ filter:brightness(1.05); transform:translateY(-1px); }
.rkgsBtn:active{ transform:translateY(0px); }

/* Filter row */
.rkgsFilterRow{
  display:flex;
  align-items:center;
  gap:12px;
  margin:10px 0 16px;
  color:rgba(28,55,110,1);
  font-weight:600;
}
.rkgsSelect{
  height:40px;
  padding:0 14px;
  border-radius:10px;
  border:1px solid rgba(20,35,60,.18);
  background:#fff;
  color:rgba(28,55,110,1);
  outline:none;
}
.rkgsSelect:focus{
  border-color:rgba(46,92,190,.55);
  box-shadow:0 0 0 4px rgba(46,92,190,.15);
}

/* Pagination */
.rkgsPager{
  display:flex;
  justify-content:flex-end;
  gap:10px;
  padding:16px 10px 0;
}

.rkgsPager a,
.rkgsPager span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:42px;
  min-width:46px;
  padding:0 14px;
  border-radius:10px;
  border:1px solid rgba(20,35,60,.18);
  background:#fff;
  color:rgba(28,55,110,1);
  font-weight:700;
  text-decoration:none;
}

.rkgsPager .is-active{
  background:rgba(44,88,176,1);
  color:#fff;
  border-color:rgba(44,88,176,1);
  box-shadow:0 10px 18px rgba(44,88,176,.20);
}

.rkgsPager .is-disabled{
  opacity:.55;
  pointer-events:none;
}
.rkgsTable .col-actions{
  white-space: nowrap;
}

.rkgsTable .col-actions .rkgsBtn{
  display: inline-flex;
  width: auto;
  margin-right: 6px;   /* space between buttons */
}

.rkgsTable .col-actions .rkgsBtn:last-child{
  margin-right: 0;
}
.footer{margin-top:10px;}

/* ===== RKGS Form Layout ===== */

.rkgsFormRow {
    display: flex;
    gap: 20px;
    margin-bottom: 18px;
}

.rkgsFormCol {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.rkgsLabel {
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 14px;
    color: #14233c;
}

.rkgsInput,
.rkgsSelect,
.rkgsTextarea {
    height: 40px;
    padding: 0 14px;
    border-radius: 10px;
    border: 1px solid rgba(20,35,60,.18);
    font-size: 14px;
    width: 100%;
}

.rkgsTextarea {
    height: auto;
    padding: 10px 14px;
    resize: vertical;
}

.rkgsCheckboxRow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 6px;
}

@media (max-width: 768px) {
    .rkgsFormRow {
        flex-direction: column;
    }
}

/* ===== RKGS Toggle Switch ===== */

.rkgsToggleRow {
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 10px;
}

.rkgsToggle {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 26px;
}

.rkgsToggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.rkgsSlider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #d1d5db;
    transition: .3s;
    border-radius: 30px;
}

.rkgsSlider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .3s;
    border-radius: 50%;
}

.rkgsToggle input:checked + .rkgsSlider {
    background-color: #1e66f5;
}

.rkgsToggle input:checked + .rkgsSlider:before {
    transform: translateX(22px);
}

.rkgsToggleLabel {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}
.rkgsFormActions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(20,35,60,.08);
}


/* =========================
   HOME: Membership (7 highlights)
   ========================= */

.homeMembershipCtaRow{
  display:flex;
  gap:12px;
  justify-content:center;
  align-items:center;
  margin-top:22px;
  flex-wrap:wrap;
}

.homePlanFeatures{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap:10px;
}

.homePlanFeatures li{
  display:flex;
  align-items:flex-start;
  gap:10px;
  padding:8px 0;
  border-bottom:1px solid rgba(20,35,60,.06);
}

.homePlanFeatures li:last-child{
  border-bottom:0;
}

.homePlanIcon{
  width:28px;
  height:28px;
  border-radius:12px;
  background-color:rgba(20,35,60,.06);
  background-repeat:no-repeat;
  background-position:center;
  background-size:18px 18px;
  flex:0 0 28px;
}

/* use your saved hero icons */
.homePlanIcon--scripts{ background-image:url('/assets/img/icons/premium-scripts-core80.png'); }
.homePlanIcon--cms{ background-image:url('/assets/img/icons/creative-services-core80.png'); }
.homePlanIcon--test{ background-image:url('/assets/img/icons/membership-core80.png'); }
.homePlanIcon--forum{ background-image:url('/assets/img/icons/membership-core80.png'); }
.homePlanIcon--credits{ background-image:url('/assets/img/icons/domains-core80.png'); }
.homePlanIcon--support{ background-image:url('/assets/img/icons/creative-services-core80.png'); }
.homePlanIcon--other{ background-image:url('/assets/img/icons/membership-core80.png'); }

.homePlanText{
  font-size:13px;
  line-height:1.25;
  color:#14233c;
  font-weight:600;
}

/* prevent overlap inside plan cards (your screenshot issue) */
.planCard__body{ padding-bottom:14px; }
.planTerm{ display:block; margin-top:6px; line-height:1.2; }
.planCard__foot{ padding-top:14px; border-top:1px solid rgba(20,35,60,.08); }

/* ===============================
   FIX: Membership card overlap
   (price/term overlapping features)
   =============================== */

/* Ensure card uses normal flow */
.planCard{
  display: flex;
  flex-direction: column;
  height: auto;            /* important: remove fixed height behavior */
  min-height: 0;
  overflow: hidden;        /* safety for ribbons */
}

/* Body should not be absolute/fixed height */
.planCard__body{
  position: relative;
  height: auto !important; /* override any fixed height */
  min-height: 0 !important;
  padding-bottom: 12px;
}

/* Term must stay in flow, not overlap */
.planTerm{
  position: static !important;
  display: block;
  margin-top: 6px;
  line-height: 1.2;
}

/* Footer must always start below body */
.planCard__foot{
  position: relative;
  margin-top: 10px;
  padding-top: 12px;
  border-top: 1px solid rgba(20,35,60,.08);
  height: auto !important;
}

/* Features list should be normal */
.homePlanFeatures{
  margin: 0;
  padding: 0;
  list-style: none;
}
/* --- HOME: Membership cards overlap fix (no new classes) --- */
.plansGrid{
  align-items: stretch;
}

.planCard{
  display: flex;
  flex-direction: column;
}

.planCard__body{
  flex: 0 0 auto;
}

.planCard__foot{
  flex: 1 1 auto;
  height: auto;
  min-height: 0;
}

.homePlanFeatures{
  margin: 0;
  padding: 0;
  list-style: none;
}

.homePlanFeatures li{
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.planPrice{
  line-height: 1.1;
  white-space: nowrap;
}
/* ===== HOME MEMBERSHIP CLEAN ALIGNMENT ===== */

.homePlanFeatures{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
  text-align: left; /* keep text readable */
}

.homePlanFeatures li{
  display: flex;
  gap: 12px;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid rgba(20,35,60,.06);
}

.homePlanFeatures li:last-child{
  border-bottom: 0;
}

/* ✓ / ✖ circle */
.homeFeatMark{
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  flex: 0 0 22px;
}

/* INCLUDED */
.homeFeatMark--yes{
  background: #e8f5ee;
  color: #1e9b5a;
}

/* NOT INCLUDED */
.homeFeatMark--no{
  background: #fdeaea;
  color: #d64545;
}

/* Text */
.homePlanText{
  font-size: 14px;
  line-height: 1.35;
  font-weight: 500;
}

/* ===== Membership Plan Card: feature list fix ===== */
.mshipList{
  list-style: none !important;     /* remove bullets */
  margin: 0;
  padding: 0 !important;           /* remove left indent */
  text-align: left;
}

.mshipRow{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  justify-content: flex-start;     /* keep left aligned */
  padding: 10px 0;
  border-bottom: 1px solid rgba(20,35,60,.06);
}

.mshipRow:last-child{ border-bottom:0; }

.mshipText{
  display: block;
  line-height: 1.35;
  font-weight: 600;
}

/* Tick/Cross colors */
.mshipMark{
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 14px;
  flex: 0 0 22px;
  line-height: 1;
  margin-top: 1px;
}

.mshipMark--yes{ background:#e8f5ee; color:#1e9b5a; } /* green */
.mshipMark--no { background:#fdeaea; color:#d64545; } /* red */

/* Buy button BELOW features */
.mshipBuyWrap{
  margin-top: auto;
}

.mshipBuyRow{
  display: block;
}

.mshipBuyRow .btn{
  width: 100%;
  justify-content: center;
}

/* ===== Comparison table module header row (full td) ===== */
.mshipModuleRow td{
  background: rgba(20,35,60,.06);
  padding: 0;
}

.mshipModuleBtn{
  width: 100%;
  background: transparent;
  border: 0;
  padding: 12px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  text-align: left;
  font-weight: 800;
}
/* ===== Billing cycle inline (no description) ===== */
.mshipTopRow{
  display:flex;
  justify-content:flex-end;
  margin-bottom:14px; /* space before plan cards */
}

.mshipTopInline{
  display:inline-flex;
  align-items:center;
  gap:10px;
}

.mshipTopLabel{
  font-weight:800;
}

.mshipSelect--auto{
  width:auto;            /* fit inner text */
  min-width:140px;
}

/* ===== Ensure plan footer stacks (prevents side button) ===== */
.planCard__foot{
  display:flex;
  flex-direction:column;
}

/* Feature list - no bullets */
.mshipList{
  list-style:none !important;
  margin:0;
  padding:0 !important;
}

/* Buy button must always be BELOW list */
.mshipBuyWrap{
  display:block;
  width:100%;
  margin-top:14px;
  clear:both;
}

.mshipBuyRow{
  display:block !important;
  width:100%;
  margin:0;
}

.mshipBuyBtn{
  width:100%;
  position:static !important;
  float:none !important;
}

.mshipCell{
  text-align:center;
  font-weight:700;
}

.mshipCell:contains("✓"){
  color:#1e9b5a;
}

.mshipCell:contains("✖"){
  color:#d64545;
}
.mshipYes{ color:#1e9b5a !important;; font-weight:800; }
.mshipNo { color:#d64545 !important; font-weight:800; }
.mshipCompareTable thead th.mshipColHead{
  text-align: center;
}

/* --- Checkout UI --- */
.ckSteps{display:flex;align-items:center;gap:10px;margin:0 0 16px}
.ckStep{display:flex;align-items:center;gap:10px;font-weight:700;opacity:.55}
.ckStep--on{opacity:1}
.ckDot{width:12px;height:12px;border-radius:999px;background:rgba(20,35,60,.22);display:inline-block}
.ckStep--on .ckDot{background:rgba(255,140,0,.95)}
.ckLine{flex:1;height:2px;background:rgba(20,35,60,.10)}
.ckGrid{display:grid;grid-template-columns:1fr 1fr;gap:16px}
@media(max-width:900px){.ckGrid{grid-template-columns:1fr}}

.ckTitle{font-weight:900;margin:0 0 10px}
.ckNote{margin-top:10px;font-size:13px;opacity:.8}
.ckCouponBox{margin-top:14px;padding:12px;border:1px solid rgba(20,35,60,.12);border-radius:12px}
.ckCouponTitle{font-weight:800;margin-bottom:8px}
.ckCouponForm{display:flex;gap:10px;align-items:center;flex-wrap:wrap}
.ckInput{height:40px;padding:0 14px;border-radius:10px;border:1px solid rgba(20,35,60,.18);min-width:220px}
.ckHint{margin-top:8px;font-size:12px;opacity:.75}
.ckActionRow{display:flex;gap:10px;align-items:center;flex-wrap:wrap;margin-top:14px}