/* ================================================================
   UVISION TV LLC — Remote Tech Support Website
   Design: Corporate Dark Tech — Premium SaaS Style
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&family=Figtree:wght@400;500;600;700;900&display=swap');

/* ================================================================
   CSS CUSTOM PROPERTIES
   ================================================================ */
:root {
  /* Colors */
  --ink:          #04040b;
  --ink-2:        #09091a;
  --ink-3:        #0f0f24;
  --ink-4:        #161630;

  --red:          #dc2626;
  --red-2:        #ef4444;
  --red-3:        #fca5a5;
  --red-glow:     rgba(220,38,38,0.30);
  --red-dim:      rgba(220,38,38,0.12);
  --red-dim-2:    rgba(220,38,38,0.06);

  --white:        #ffffff;
  --w-80:         rgba(255,255,255,0.80);
  --w-55:         rgba(255,255,255,0.55);
  --w-30:         rgba(255,255,255,0.30);
  --w-12:         rgba(255,255,255,0.12);
  --w-07:         rgba(255,255,255,0.07);
  --w-04:         rgba(255,255,255,0.04);

  /* Glass */
  --glass:        rgba(255,255,255,0.048);
  --glass-border: rgba(255,255,255,0.10);
  --glass-blur:   saturate(180%) blur(20px);

  /* Radius */
  --r-xs: 6px;
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 36px;

  /* Fonts */
  --f-display: 'Figtree', sans-serif;
  --f-body:    'Plus Jakarta Sans', sans-serif;

  /* Transitions */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --t:    0.30s;
  --t-s:  0.18s;

  /* Shadows */
  --shadow-sm:  0 2px 12px rgba(0,0,0,0.35);
  --shadow-md:  0 8px 32px rgba(0,0,0,0.45);
  --shadow-lg:  0 24px 64px rgba(0,0,0,0.55);
  --shadow-red: 0 8px 40px rgba(220,38,38,0.35);
}

/* ================================================================
   RESET + BASE
   ================================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html   { scroll-behavior: smooth; font-size: 16px; }
body   {
  background: var(--ink);
  color: var(--white);
  font-family: var(--f-body);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img    { display: block; max-width: 100%; height: auto; }
a      { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--ink-2); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 5px; }

/* ================================================================
   LAYOUT
   ================================================================ */
.container {
  width: 90%;
  max-width: 1160px;
  margin: 0 auto;
}

.section       { padding: 100px 0; }
.section--sm   { padding: 60px 0;  }
.section--lg   { padding: 130px 0; }

/* Grids */
.g-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.g-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.g-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }

/* Flex helpers */
.f-center   { display: flex; align-items: center; justify-content: center; }
.f-between  { display: flex; align-items: center; justify-content: space-between; }
.gap-s  { gap: 12px; }
.gap-m  { gap: 20px; }
.gap-l  { gap: 32px; }

/* ================================================================
   TYPOGRAPHY
   ================================================================ */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red-2);
  margin-bottom: 16px;
}

.kicker::after {
  content: '';
  display: block;
  width: 28px;
  height: 1.5px;
  background: currentColor;
  border-radius: 2px;
}

.h-display {
  font-family: var(--f-display);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.h-xl  { font-size: clamp(44px, 7.5vw, 88px); }
.h-lg  { font-size: clamp(36px, 5.5vw, 64px); }
.h-md  { font-size: clamp(28px, 4vw, 46px); }
.h-sm  { font-size: clamp(22px, 3vw, 32px); }

.accent-r  { color: var(--red-2); }
.accent-u  {
  text-decoration: underline;
  text-decoration-color: var(--red);
  text-underline-offset: 6px;
  text-decoration-thickness: 3px;
}

.body-lg   { font-size: 18px; line-height: 1.72; color: var(--w-80); }
.body-md   { font-size: 16px; line-height: 1.70; color: var(--w-55); }
.body-sm   { font-size: 14px; line-height: 1.65; color: var(--w-55); }

.text-center { text-align: center; }
.mt-s  { margin-top: 12px; }
.mt-m  { margin-top: 20px; }
.mt-l  { margin-top: 32px; }
.mt-xl { margin-top: 52px; }
.mb-s  { margin-bottom: 12px; }
.mb-m  { margin-bottom: 20px; }
.mb-xl { margin-bottom: 64px; }

/* ================================================================
   BUTTONS
   ================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: var(--r-sm);
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.2px;
  transition: transform var(--t-s) var(--ease),
              box-shadow var(--t-s) var(--ease),
              background var(--t-s), border-color var(--t-s);
  white-space: nowrap;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background var(--t-s);
}

.btn:hover::before { background: rgba(255,255,255,0.07); }
.btn:active { transform: scale(0.97) !important; }

/* Sizes */
.btn--sm  { padding: 9px  20px; font-size: 13.5px; }
.btn--md  { padding: 13px 26px; }
.btn--lg  { padding: 16px 34px; font-size: 16px; border-radius: 12px; }

/* Variants */
.btn--solid {
  background: var(--red);
  color: #fff;
  box-shadow: 0 4px 18px rgba(220,38,38,0.40);
}
.btn--solid:hover {
  background: var(--red-2);
  box-shadow: var(--shadow-red);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--w-12);
}
.btn--ghost:hover {
  border-color: var(--w-30);
  transform: translateY(-2px);
}

.btn--glass {
  background: var(--glass);
  color: var(--white);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
}
.btn--glass:hover {
  border-color: var(--w-30);
  transform: translateY(-2px);
}

.btn--wa {
  background: #22c55e;
  color: #fff;
  box-shadow: 0 4px 18px rgba(34,197,94,0.35);
}
.btn--wa:hover {
  background: #16a34a;
  box-shadow: 0 6px 28px rgba(34,197,94,0.45);
  transform: translateY(-2px);
}

.btn--full { width: 100%; }

/* ================================================================
   NAV
   ================================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 66px;
  background: rgba(4,4,11,0.82);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--w-07);
  transition: border-color var(--t), box-shadow var(--t);
}

.nav.scrolled {
  border-color: var(--w-12);
  box-shadow: 0 1px 40px rgba(0,0,0,0.6);
}

.nav__inner {
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 90%;
  max-width: 1160px;
  margin: 0 auto;
}

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--red);
  border-radius: 8px;
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 17px;
  color: #fff;
  letter-spacing: -1px;
}

.logo-name {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 16px;
  letter-spacing: 0.3px;
  color: var(--white);
  line-height: 1.2;
}

.logo-name small {
  display: block;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--w-30);
  font-family: var(--f-body);
}

/* Desktop links */
.nav__links {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav__links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--w-55);
  transition: color var(--t-s);
  position: relative;
  padding-bottom: 2px;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--red-2);
  border-radius: 2px;
  transition: width var(--t-s) var(--ease);
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--white);
}
.nav__links a:hover::after,
.nav__links a.active::after { width: 100%; }

/* Nav actions */
.nav__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Hamburger */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 5px;
}

.nav__burger span {
  display: block;
  width: 21px;
  height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--t) var(--ease), opacity var(--t-s);
}

.nav__burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile drawer */
.nav__drawer {
  display: none;
  position: fixed;
  inset: 66px 0 0;
  background: rgba(4,4,11,0.97);
  backdrop-filter: blur(28px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s var(--ease);
}

.nav__drawer.open {
  opacity: 1;
  pointer-events: all;
}

.nav__drawer a {
  font-family: var(--f-display);
  font-size: 26px;
  font-weight: 900;
  color: var(--w-55);
  letter-spacing: -0.5px;
  transition: color 0.2s;
}

.nav__drawer a:hover { color: var(--red-2); }

/* ================================================================
   PAGE HEADER (inner pages)
   ================================================================ */
.page-header {
  padding: 80px 0 60px;
  background: var(--ink-2);
  border-bottom: 1px solid var(--w-07);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--red-dim) 40%, var(--red-dim) 60%, transparent 100%);
}

.page-header__noise {
  position: absolute;
  inset: 0;
  opacity: 0.015;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}

.page-header__content { position: relative; z-index: 1; }

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--w-30);
  margin-bottom: 20px;
}

.breadcrumb a { color: var(--w-55); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb .sep { color: var(--w-30); }
.breadcrumb .cur { color: var(--red-3); }

/* ================================================================
   HERO (home)
   ================================================================ */
.hero {
  position: relative;
  min-height: calc(100vh - 66px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 0 100px;
}

/* Background layers */
.hero__bg-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* Animated gradient mesh */
.hero__mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 800px 500px at 100% 40%, rgba(220,38,38,0.09) 0%, transparent 65%),
    radial-gradient(ellipse 500px 600px at -5% 70%, rgba(220,38,38,0.05) 0%, transparent 60%),
    linear-gradient(160deg, var(--ink) 40%, var(--ink-2) 100%);
}

/* Dot grid */
.hero__dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

/* Glowing horizontal lines */
.hero__lines {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__lines::before,
.hero__lines::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(220,38,38,0.3) 50%, transparent 100%);
}

.hero__lines::before { top: 35%; }
.hero__lines::after  { top: 65%; opacity: 0.5; }

/* Corner decoration */
.hero__corner {
  position: absolute;
  top: 0;
  right: 0;
  width: 600px;
  height: 600px;
  overflow: hidden;
  pointer-events: none;
}

.hero__corner svg {
  position: absolute;
  top: -150px;
  right: -150px;
  width: 700px;
  height: 700px;
  opacity: 0.04;
}

/* Content */
.hero__wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero__left {}

.hero__right {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

/* Dashboard card mock */
.dash-card {
  width: 100%;
  max-width: 460px;
  background: var(--ink-3);
  border: 1px solid var(--w-07);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(220,38,38,0.07);
  animation: float 7s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-16px); }
}

.dash-card__topbar {
  height: 44px;
  background: var(--ink-2);
  border-bottom: 1px solid var(--w-07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
}

.dots-row { display: flex; gap: 7px; }
.dot-c {
  width: 11px; height: 11px;
  border-radius: 50%;
}
.dot-c.r { background: #ff5f57; }
.dot-c.y { background: #febc2e; }
.dot-c.g { background: #28c840; }

.dash-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #22c55e;
}

.dash-status::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  animation: blink 1.6s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

.dash-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.dash-row {
  background: var(--ink-2);
  border: 1px solid var(--w-07);
  border-radius: 12px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: border-color 0.3s;
}

.dash-row:hover { border-color: var(--red-dim); }

.dash-row__icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  flex-shrink: 0;
}

.dash-row__text { flex: 1; }
.dash-row__text h4 { font-size: 13.5px; font-weight: 700; margin-bottom: 3px; }
.dash-row__text p  { font-size: 12px; color: var(--w-55); }

.dash-row__badge {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
}

.badge-green { background: rgba(34,197,94,0.15); color: #4ade80; }
.badge-red   { background: var(--red-dim); color: var(--red-3); }
.badge-blue  { background: rgba(59,130,246,0.15); color: #93c5fd; }

.dash-card__footer {
  margin: 0 24px 24px;
  background: linear-gradient(135deg, rgba(220,38,38,0.12), rgba(220,38,38,0.04));
  border: 1px solid var(--red-dim);
  border-radius: 14px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dash-card__footer span { font-size: 13px; font-weight: 600; color: var(--w-80); }
.dash-card__footer strong { font-family: var(--f-display); font-size: 20px; font-weight: 900; color: var(--white); }

/* Hero badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px 7px 8px;
  border: 1px solid var(--red-dim);
  border-radius: 30px;
  background: rgba(220,38,38,0.07);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--red-3);
  margin-bottom: 28px;
}

.hero-badge__dot {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--red-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

/* CTA row */
.hero__cta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* Stats strip */
.hero__strip {
  display: flex;
  gap: 36px;
  margin-top: 52px;
  padding-top: 36px;
  border-top: 1px solid var(--w-07);
  flex-wrap: wrap;
}

.strip-stat {}
.strip-stat .n {
  font-family: var(--f-display);
  font-size: 30px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -1px;
  line-height: 1;
}
.strip-stat .l {
  font-size: 12px;
  color: var(--w-30);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-top: 5px;
}

/* ================================================================
   SECTION HEADER
   ================================================================ */
.sec-head { margin-bottom: 64px; }
.sec-head--center { text-align: center; }
.sec-head--center .body-md { margin: 12px auto 0; max-width: 540px; }

/* ================================================================
   FEATURE CARDS
   ================================================================ */
.feat-card {
  padding: 32px 28px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  transition:
    transform var(--t) var(--ease),
    border-color var(--t),
    box-shadow var(--t);
  position: relative;
  overflow: hidden;
}

.feat-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(220,38,38,0.5), transparent);
  opacity: 0;
  transition: opacity var(--t);
}

.feat-card:hover {
  transform: translateY(-6px);
  border-color: rgba(220,38,38,0.22);
  box-shadow: 0 20px 48px rgba(0,0,0,0.4), 0 0 0 1px rgba(220,38,38,0.08);
}

.feat-card:hover::after { opacity: 1; }

.feat-card__num {
  font-family: var(--f-display);
  font-size: 52px;
  font-weight: 900;
  color: rgba(220,38,38,0.08);
  line-height: 1;
  margin-bottom: -8px;
  letter-spacing: -2px;
  transition: color var(--t);
}

.feat-card:hover .feat-card__num { color: rgba(220,38,38,0.14); }

.feat-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  background: var(--red-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
  transition: background var(--t);
}

.feat-card:hover .feat-card__icon { background: rgba(220,38,38,0.22); }

.feat-card h3 {
  font-family: var(--f-display);
  font-size: 18.5px;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.feat-card p { color: var(--w-55); font-size: 15px; line-height: 1.7; }

/* ================================================================
   SERVICE CARDS (services.html)
   ================================================================ */
.srv-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  padding: 40px 34px;
  transition: transform var(--t) var(--ease), border-color var(--t), box-shadow var(--t);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.srv-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--red-2));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s var(--ease);
}

.srv-card:hover {
  transform: translateY(-7px);
  border-color: rgba(220,38,38,0.2);
  box-shadow: var(--shadow-lg);
}

.srv-card:hover::before { transform: scaleX(1); }

.srv-card__icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 24px;
}

.srv-card h3 {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.4px;
}

.srv-card p { color: var(--w-55); font-size: 15.5px; line-height: 1.72; flex: 1; margin-bottom: 24px; }

.srv-list { margin-bottom: 28px; }
.srv-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 14px;
  color: var(--w-80);
  padding: 7px 0;
  border-bottom: 1px solid var(--w-04);
}
.srv-list li:last-child { border-bottom: none; }

.srv-list li .ic {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--red-dim);
  color: var(--red-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ================================================================
   HOW IT WORKS (timeline)
   ================================================================ */
.hiw-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  max-width: 760px;
}

.hiw-timeline::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 54px;
  bottom: 54px;
  width: 1px;
  background: linear-gradient(180deg, var(--red) 0%, rgba(220,38,38,0.2) 100%);
}

.hiw-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 28px;
  padding: 0 0 56px;
  position: relative;
}

.hiw-step:last-child { padding-bottom: 0; }

.hiw-step__num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--ink-3);
  border: 2px solid var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 900;
  color: var(--white);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: background var(--t), box-shadow var(--t);
}

.hiw-step:hover .hiw-step__num {
  background: var(--red-dim);
  box-shadow: 0 0 0 6px rgba(220,38,38,0.08), var(--shadow-red);
}

.hiw-step__body {
  padding-top: 12px;
}

.hiw-step__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red-3);
  margin-bottom: 10px;
}

.hiw-step__body h3 {
  font-family: var(--f-display);
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.hiw-step__body p {
  font-size: 16px;
  color: var(--w-55);
  line-height: 1.72;
  max-width: 500px;
}

/* ================================================================
   TESTIMONIALS
   ================================================================ */
.testi-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  padding: 32px;
  transition: transform var(--t) var(--ease), border-color var(--t);
}

.testi-card:hover {
  transform: translateY(-4px);
  border-color: var(--w-12);
}

.stars-row {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.stars-row span { color: #fbbf24; font-size: 15px; }

.testi-card blockquote {
  font-size: 15.5px;
  color: var(--w-80);
  line-height: 1.75;
  font-style: normal;
  margin-bottom: 24px;
  padding-left: 16px;
  border-left: 2px solid var(--red);
  font-weight: 500;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 13px;
}

.testi-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-display);
  font-size: 17px;
  font-weight: 900;
  color: #fff;
  flex-shrink: 0;
}

.testi-name   { font-size: 14.5px; font-weight: 700; }
.testi-detail { font-size: 12.5px; color: var(--w-30); margin-top: 2px; }

/* ================================================================
   ABOUT PAGE
   ================================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-card {
  background: var(--ink-3);
  border: 1px solid var(--w-07);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-card__header {
  background: var(--ink-2);
  padding: 20px 24px;
  border-bottom: 1px solid var(--w-07);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.about-card__header h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--w-80);
}

.about-card__body { padding: 28px 24px; }

.info-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--w-04);
}

.info-row:last-child { border-bottom: none; padding-bottom: 0; }

.info-row__icon {
  width: 34px; height: 34px;
  background: var(--red-dim);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.info-row h5 { font-size: 12px; color: var(--w-30); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 3px; }
.info-row p  { font-size: 14px; color: var(--w-80); font-weight: 600; }

.about-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--red-dim), rgba(220,38,38,0.03));
  border: 1px solid var(--red-dim);
  border-radius: var(--r-md);
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
}

.about-float .num {
  font-family: var(--f-display);
  font-size: 28px;
  font-weight: 900;
  color: var(--white);
}

.about-float .txt {
  font-size: 12px;
  color: var(--w-55);
  font-weight: 600;
  max-width: 80px;
  line-height: 1.4;
}

.values-list { display: flex; flex-direction: column; gap: 0; }
.value-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--w-07);
}
.value-item:last-child { border-bottom: none; }

.value-item__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--red-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.value-item h4 {
  font-family: var(--f-display);
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 6px;
}

.value-item p { font-size: 14.5px; color: var(--w-55); line-height: 1.65; }

/* Team cards */
.team-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  padding: 28px;
  text-align: center;
  transition: transform var(--t) var(--ease), border-color var(--t);
}

.team-card:hover {
  transform: translateY(-5px);
  border-color: var(--red-dim);
}

.team-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-display);
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  border: 2px solid var(--red-dim);
}

.team-card h3 { font-size: 17px; font-weight: 800; margin-bottom: 4px; }
.team-card .role { font-size: 13px; color: var(--red-3); font-weight: 600; margin-bottom: 12px; }
.team-card p { font-size: 13.5px; color: var(--w-55); line-height: 1.65; }

/* ================================================================
   CONTACT PAGE
   ================================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: start;
}

.contact-side h3 {
  font-family: var(--f-display);
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.contact-side p {
  font-size: 15.5px;
  color: var(--w-55);
  line-height: 1.72;
  margin-bottom: 36px;
}

.c-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 17px 20px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-md);
  margin-bottom: 14px;
  text-decoration: none;
  color: inherit;
  transition: border-color var(--t), transform var(--t-s);
}

.c-method:hover {
  border-color: var(--red-dim);
  transform: translateX(4px);
}

.c-method__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  flex-shrink: 0;
}

.c-method__icon--wa   { background: rgba(34,197,94,0.14); }
.c-method__icon--mail { background: var(--red-dim); }
.c-method__icon--tel  { background: rgba(59,130,246,0.12); }

.c-method__label { font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--w-30); margin-bottom: 2px; }
.c-method__val   { font-size: 15px; font-weight: 700; }

/* Availability block */
.avail-block {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-md);
  padding: 22px;
  margin-top: 16px;
}

.avail-block h5 {
  font-family: var(--f-display);
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.avail-row {
  display: flex;
  justify-content: space-between;
  font-size: 13.5px;
  padding: 7px 0;
  border-bottom: 1px solid var(--w-04);
  color: var(--w-55);
}

.avail-row:last-child { border-bottom: none; }
.avail-row strong { color: var(--white); font-weight: 700; }

/* Contact Form */
.c-form-wrap {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-xl);
  padding: 44px 40px;
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
}

.c-form-wrap h3 {
  font-family: var(--f-display);
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 28px;
  letter-spacing: -0.4px;
}

.f-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.f-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 18px;
}

.f-group label {
  font-size: 13px;
  font-weight: 700;
  color: var(--w-55);
  letter-spacing: 0.2px;
}

.f-group input,
.f-group select,
.f-group textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--w-12);
  border-radius: var(--r-sm);
  padding: 13px 16px;
  color: var(--white);
  font-size: 15px;
  font-weight: 500;
  outline: none;
  transition: border-color var(--t-s), box-shadow var(--t-s);
  width: 100%;
}

.f-group input::placeholder,
.f-group textarea::placeholder {
  color: var(--w-30);
}

.f-group input:focus,
.f-group select:focus,
.f-group textarea:focus {
  border-color: var(--red-2);
  box-shadow: 0 0 0 3px rgba(220,38,38,0.10);
}

.f-group select option { background: var(--ink-3); }
.f-group textarea { resize: vertical; min-height: 126px; line-height: 1.6; }

/* ================================================================
   CTA BAND
   ================================================================ */
.cta-band {
  position: relative;
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 50% 50%, rgba(220,38,38,0.09), transparent 70%),
    var(--ink-2);
}

.cta-band::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: 0; right: 0;
  border-top: 1px solid rgba(220,38,38,0.14);
  border-bottom: 1px solid rgba(220,38,38,0.14);
}

.cta-band__inner {
  position: relative;
  z-index: 1;
}

.cta-band h2 {
  font-family: var(--f-display);
  font-size: clamp(34px, 5.5vw, 60px);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.cta-band p {
  font-size: 18px;
  color: var(--w-55);
  max-width: 460px;
  margin: 0 auto 40px;
  line-height: 1.68;
}

.cta-band .btn-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ================================================================
   TRUST STRIP
   ================================================================ */
.trust-strip {
  background: var(--ink-2);
  border-top: 1px solid var(--w-07);
  border-bottom: 1px solid var(--w-07);
  padding: 20px 0;
}

.trust-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.t-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 600;
  color: var(--w-55);
}

.t-item .i { font-size: 18px; }

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  background: var(--ink-2);
  border-top: 1px solid var(--w-07);
}

.footer__main {
  padding: 72px 0 56px;
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 48px;
  border-bottom: 1px solid var(--w-07);
}

.footer-brand p {
  font-size: 14px;
  color: var(--w-30);
  line-height: 1.72;
  margin: 16px 0 24px;
  max-width: 310px;
}

.footer__logo { display: flex; align-items: center; gap: 10px; }

.f-socials { display: flex; gap: 9px; }
.f-soc-btn {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--w-04);
  border: 1px solid var(--w-07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  color: var(--w-55);
  transition: background var(--t-s), border-color var(--t-s), color var(--t-s);
  text-decoration: none;
}

.f-soc-btn:hover {
  background: var(--red-dim);
  border-color: rgba(220,38,38,0.3);
  color: var(--red-3);
}

.footer-col h5 {
  font-family: var(--f-display);
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 0.3px;
  margin-bottom: 18px;
  color: var(--white);
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-col ul a {
  font-size: 14px;
  color: var(--w-30);
  transition: color 0.2s;
  font-weight: 500;
}

.footer-col ul a:hover { color: var(--white); }

.footer__bar {
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__bar p { font-size: 13px; color: var(--w-30); }
.footer__bar span { color: var(--red-2); font-weight: 700; }

.legal-links {
  display: flex;
  gap: 24px;
}

.legal-links a {
  font-size: 13px;
  color: var(--w-30);
  transition: color 0.2s;
}
.legal-links a:hover { color: var(--white); }

/* ================================================================
   SCROLL ANIMATIONS
   ================================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.70s var(--ease), transform 0.70s var(--ease);
}

[data-reveal].in {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal-delay="1"] { transition-delay: 0.10s; }
[data-reveal-delay="2"] { transition-delay: 0.20s; }
[data-reveal-delay="3"] { transition-delay: 0.30s; }
[data-reveal-delay="4"] { transition-delay: 0.40s; }

/* ================================================================
   MISC HELPERS
   ================================================================ */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.pill--red  { background: var(--red-dim);           color: var(--red-3);   border: 1px solid rgba(220,38,38,0.22); }
.pill--live { background: rgba(34,197,94,0.12);     color: #4ade80;        border: 1px solid rgba(34,197,94,0.25); }
.pill--blue { background: rgba(59,130,246,0.12);    color: #93c5fd;        border: 1px solid rgba(59,130,246,0.22); }

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--w-07) 30%, var(--w-07) 70%, transparent);
  margin: 0;
}

/* USA badge */
.usa-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 18px;
  background: rgba(59,130,246,0.08);
  border: 1px solid rgba(59,130,246,0.20);
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 700;
  color: #93c5fd;
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  .hero__wrap { grid-template-columns: 1fr; gap: 52px; }
  .hero__right { justify-content: flex-start; }
  .dash-card { max-width: 100%; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-float { display: none; }
  .footer__main { grid-template-columns: 1fr 1fr; gap: 36px; }
  .g-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav__links  { display: none; }
  .nav__actions > a:not(.nav__burger-wrap) { display: none; }
  .nav__burger { display: flex; }
  .nav__drawer { display: flex; }

  .g-2, .g-3  { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .c-form-wrap { padding: 30px 24px; }
  .f-2col { grid-template-columns: 1fr; }
  .hero__strip { gap: 20px; flex-wrap: wrap; }
  .trust-strip__inner { gap: 20px; }
  .section { padding: 72px 0; }
  .footer__main { grid-template-columns: 1fr 1fr; gap: 28px; }
  .hiw-timeline { padding: 0 0 0 8px; }
}

@media (max-width: 540px) {
  .hero { padding: 52px 0 70px; min-height: auto; }
  .hero__cta { flex-direction: column; align-items: flex-start; }
  .btn--lg { width: 100%; justify-content: center; }
  .footer__main { grid-template-columns: 1fr; }
  .footer__bar { flex-direction: column; text-align: center; }
  .legal-links { justify-content: center; }
  .g-4 { grid-template-columns: 1fr; }
  .cta-band .btn-row { flex-direction: column; align-items: center; }
}

/* ================================================================
   PAYMENT PAGE — payment.html
   ================================================================ */

/* ---- Page layout ---- */
.pay-page {
  min-height: calc(100vh - 66px);
  background: var(--ink);
  padding: 70px 0 100px;
  position: relative;
  overflow: hidden;
}

.pay-page::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 700px 500px at 80% 20%, rgba(220,38,38,0.08) 0%, transparent 65%),
    radial-gradient(ellipse 500px 400px at 10% 80%, rgba(220,38,38,0.05) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.pay-page::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 30%, black 20%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.pay-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: start;
  max-width: 1080px;
  margin: 0 auto;
  width: 90%;
}

/* ---- Left side: Product card ---- */
.pay-product {
  position: sticky;
  top: 90px;
}

.pay-product__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(220,38,38,0.10);
  border: 1px solid rgba(220,38,38,0.25);
  border-radius: 30px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fca5a5;
  margin-bottom: 24px;
}

.pay-product__badge::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--red-2);
  animation: blink 1.4s infinite;
}

@keyframes blink {
  0%,100% { opacity: 1; }
  50%      { opacity: 0.2; }
}

.pay-product h1 {
  font-family: var(--f-display);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.04;
  color: var(--white);
  margin-bottom: 16px;
}

.pay-product h1 span { color: var(--red-2); }

.pay-product__sub {
  font-size: 16px;
  color: var(--w-55);
  line-height: 1.70;
  margin-bottom: 36px;
}

/* Price display */
.pay-price-block {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--w-07);
}

.pay-price {
  font-family: var(--f-display);
  font-size: 80px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: -4px;
}

.pay-price sup {
  font-size: 30px;
  vertical-align: top;
  margin-top: 14px;
  letter-spacing: 0;
}

.pay-price-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 8px;
}

.pay-price-meta .once {
  font-size: 13px;
  font-weight: 700;
  color: var(--w-30);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pay-price-meta .guarantee {
  font-size: 13px;
  font-weight: 700;
  color: #4ade80;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Includes list */
.pay-includes {
  margin-bottom: 32px;
}

.pay-includes h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--w-30);
  margin-bottom: 16px;
}

.pay-includes ul {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.pay-includes ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--w-80);
  line-height: 1.5;
}

.pay-includes ul li .inc-ic {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(34,197,94,0.12);
  color: #4ade80;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Trust row */
.pay-trust {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.pay-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--w-40);
  font-weight: 600;
}

.pay-trust-item .ti { font-size: 16px; }

/* ---- Right side: Checkout form ---- */
.pay-form-wrap {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-xl);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.pay-form-header {
  padding: 28px 36px 24px;
  border-bottom: 1px solid var(--w-07);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pay-form-header h3 {
  font-family: var(--f-display);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.3px;
}

.secure-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: #4ade80;
  background: rgba(34,197,94,0.10);
  border: 1px solid rgba(34,197,94,0.20);
  padding: 5px 11px;
  border-radius: 20px;
}

.pay-form-body { padding: 32px 36px; }

/* Order summary inside form */
.order-summary {
  background: rgba(220,38,38,0.06);
  border: 1px solid rgba(220,38,38,0.16);
  border-radius: var(--r-md);
  padding: 18px 20px;
  margin-bottom: 28px;
}

.order-summary__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 0;
}

.order-summary__row:not(:last-child) {
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.order-summary__row .ol { font-size: 14px; color: var(--w-55); }
.order-summary__row .ov { font-size: 14px; color: var(--white); font-weight: 700; }
.order-summary__row.total .ol { font-size: 16px; font-weight: 700; color: var(--w-80); }
.order-summary__row.total .ov {
  font-family: var(--f-display);
  font-size: 24px;
  font-weight: 900;
  color: var(--white);
}

/* Customer info form */
.pay-fields { display: flex; flex-direction: column; gap: 16px; margin-bottom: 24px; }

.pay-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.pf-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.pf-group label {
  font-size: 13px;
  font-weight: 700;
  color: var(--w-55);
  letter-spacing: 0.2px;
}

.pf-group input,
.pf-group select,
.pf-group textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--w-12);
  border-radius: var(--r-sm);
  padding: 12px 15px;
  color: var(--white);
  font-size: 15px;
  font-weight: 500;
  outline: none;
  transition: border-color var(--t-s), box-shadow var(--t-s);
  width: 100%;
}

.pf-group input::placeholder,
.pf-group textarea::placeholder { color: var(--w-30); }

.pf-group input:focus,
.pf-group select:focus,
.pf-group textarea:focus {
  border-color: var(--red-2);
  box-shadow: 0 0 0 3px rgba(220,38,38,0.10);
}

.pf-group select option { background: var(--ink-3); }
.pf-group textarea { resize: vertical; min-height: 100px; line-height: 1.55; }

/* PayPal section */
.paypal-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.paypal-divider::before,
.paypal-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--w-07);
}

.paypal-divider span {
  font-size: 12px;
  font-weight: 700;
  color: var(--w-30);
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}

/* PayPal button wrapper */
.paypal-btn-wrap {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--w-07);
  border-radius: var(--r-md);
  padding: 20px;
  margin-bottom: 16px;
  text-align: center;
}

.paypal-btn-wrap .pp-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 14px;
  font-size: 13px;
  color: var(--w-30);
  font-weight: 600;
}

.pp-logo-img {
  background: #003087;
  color: #fff;
  font-weight: 900;
  font-size: 13px;
  padding: 4px 10px;
  border-radius: 5px;
  letter-spacing: 0.5px;
  font-family: var(--f-display);
}

/* The actual PayPal submit button */
.btn--paypal {
  width: 100%;
  background: #FFC439;
  color: #003087;
  border: none;
  border-radius: 10px;
  padding: 16px 28px;
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 17px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 20px rgba(255,196,57,0.35);
  transition: all 0.22s;
  letter-spacing: 0.2px;
}

.btn--paypal:hover {
  background: #f5b800;
  box-shadow: 0 6px 28px rgba(255,196,57,0.50);
  transform: translateY(-2px);
}

.btn--paypal:active { transform: translateY(0); }

/* Fine print */
.pay-fine {
  text-align: center;
  font-size: 12px;
  color: var(--w-30);
  line-height: 1.65;
  margin-top: 16px;
}

.pay-fine a { color: var(--w-55); text-decoration: underline; }
.pay-fine a:hover { color: var(--white); }

/* ---- Steps preview below ---- */
.pay-steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
  margin-top: 60px;
}

.pay-steps-row::before {
  content: '';
  position: absolute;
  top: 22px;
  left: 16%;
  right: 16%;
  height: 1px;
  background: linear-gradient(90deg, var(--red), rgba(220,38,38,0.2));
  z-index: 0;
}

.ps-item {
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

.ps-item .ps-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--ink-3);
  border: 1.5px solid rgba(220,38,38,0.40);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 900;
  color: var(--white);
  margin: 0 auto 14px;
}

.ps-item h4 {
  font-family: var(--f-display);
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 6px;
}

.ps-item p { font-size: 12.5px; color: var(--w-30); line-height: 1.55; }

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .pay-inner { grid-template-columns: 1fr; gap: 36px; }
  .pay-product { position: static; }
  .pay-price { font-size: 64px; }
  .pay-steps-row { grid-template-columns: 1fr; gap: 24px; }
  .pay-steps-row::before { display: none; }
}

@media (max-width: 600px) {
  .pay-form-header { padding: 22px 22px 18px; flex-wrap: wrap; gap: 10px; }
  .pay-form-body { padding: 22px; }
  .pay-field-row { grid-template-columns: 1fr; }
  .pay-price { font-size: 52px; }
}

/* ---- Improved Thank You & Failed pages ---- */
.sp-page {
  min-height: calc(100vh - 66px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
}

.sp-page--success::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 700px 500px at 50% 40%, rgba(34,197,94,0.10), transparent 65%),
    var(--ink);
}

.sp-page--fail::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 700px 500px at 50% 40%, rgba(220,38,38,0.10), transparent 65%),
    var(--ink);
}

.sp-page::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 20%, transparent 100%);
  pointer-events: none;
}

.sp-card {
  position: relative;
  z-index: 1;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-radius: var(--r-xl);
  padding: 56px 48px 48px;
  max-width: 560px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lg);
  animation: spSlide 0.65s var(--ease) both;
}

@keyframes spSlide {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.sp-icon {
  width: 100px; height: 100px;
  border-radius: 50%;
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  position: relative;
  animation: spPop 0.55s 0.25s var(--ease) both;
}

@keyframes spPop {
  from { transform: scale(0.4); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}

.sp-icon--success {
  background: rgba(34,197,94,0.12);
  border: 2px solid rgba(34,197,94,0.30);
  box-shadow: 0 0 0 14px rgba(34,197,94,0.05), 0 0 50px rgba(34,197,94,0.18);
}

.sp-icon--fail {
  background: rgba(220,38,38,0.12);
  border: 2px solid rgba(220,38,38,0.30);
  box-shadow: 0 0 0 14px rgba(220,38,38,0.05), 0 0 50px rgba(220,38,38,0.18);
}

.sp-pulse {
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  animation: spPulse 2.5s ease-in-out infinite;
}

.sp-icon--success .sp-pulse { color: rgba(34,197,94,0.3); }
.sp-icon--fail    .sp-pulse { color: rgba(220,38,38,0.25); }

@keyframes spPulse {
  0%,100% { transform: scale(1);   opacity: 0.6; }
  50%      { transform: scale(1.12); opacity: 0.15; }
}

.sp-card h1 {
  font-family: var(--f-display);
  font-size: clamp(26px, 5vw, 36px);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 12px;
}

.sp-card .sp-sub {
  font-size: 15.5px;
  color: var(--w-55);
  line-height: 1.72;
  margin-bottom: 32px;
}

.sp-info-box {
  border-radius: var(--r-md);
  padding: 18px 20px;
  margin-bottom: 28px;
  text-align: left;
}

.sp-info-box--success {
  background: rgba(34,197,94,0.07);
  border: 1px solid rgba(34,197,94,0.18);
}

.sp-info-box--fail {
  background: rgba(220,38,38,0.07);
  border: 1px solid rgba(220,38,38,0.18);
}

.sp-info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 0;
  font-size: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.sp-info-row:last-child { border-bottom: none; }
.sp-info-row .sl { color: var(--w-30); font-weight: 600; }
.sp-info-row .sv { color: var(--white); font-weight: 700; }
.sp-info-row .sv.green { color: #4ade80; }
.sp-info-row .sv.red   { color: #f87171; }

.sp-steps {
  list-style: none;
  text-align: left;
  margin-bottom: 28px;
  background: var(--w-04);
  border: 1px solid var(--w-07);
  border-radius: var(--r-md);
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sp-steps li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--w-80);
  line-height: 1.55;
}

.sp-steps li .sn {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(34,197,94,0.14);
  color: #4ade80;
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.sp-btn-col { display: flex; flex-direction: column; gap: 11px; }

.sp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 24px;
  border-radius: 10px;
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.22s;
  border: none;
  cursor: pointer;
}

.sp-btn--wa    { background: #22c55e; color: #fff; box-shadow: 0 4px 18px rgba(34,197,94,0.30); }
.sp-btn--wa:hover { background: #16a34a; transform: translateY(-2px); }

.sp-btn--red   { background: var(--red); color: #fff; box-shadow: 0 4px 18px rgba(220,38,38,0.35); }
.sp-btn--red:hover { background: var(--red-2); transform: translateY(-2px); }

.sp-btn--ghost { background: transparent; color: var(--w-55); border: 1px solid var(--w-12); }
.sp-btn--ghost:hover { border-color: var(--w-30); color: var(--white); }

/* Confetti */
.confetti-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.confetti-layer span {
  position: absolute;
  top: -16px;
  border-radius: 2px;
  opacity: 0;
  animation: cFall linear infinite;
}

@keyframes cFall {
  0%   { transform: translateY(-20px) rotate(0deg);   opacity: 0.9; }
  100% { transform: translateY(110vh) rotate(600deg); opacity: 0; }
}

@media (max-width: 560px) {
  .sp-card { padding: 40px 22px 36px; border-radius: 24px; }
}
