:root {
  --brand: #FF4D1C;
  --brand-dark: #D93A0E;
  --accent: #FFB800;
  --text: #1A1A1A;
  --text-soft: #555;
  --bg: #FAFAF8;
  --bg-alt: #F2F0EB;
  --white: #FFFFFF;
  --border: #E5E1D8;
  --radius: 16px;
  --shadow: 0 4px 32px rgba(0, 0, 0, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Nunito Sans", sans-serif;
  line-height: 1.2;
}

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

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

/* ── NAV ── */
nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 9%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
}

.nav-logo {
  font-family: "Nunito Sans", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--brand);
  letter-spacing: -0.5px;
  flex-shrink: 0;
}

.nav-logo span {
  color: var(--text);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-links li a {
  display: block;
  padding: 8px 13px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-soft);
  border-radius: 8px;
  transition: all 0.18s;
  white-space: nowrap;
}

.nav-links li a:hover {
  color: var(--brand);
  background: #FFF3ED;
}

.nav-links li a.active {
  color: var(--brand);
  font-weight: 600;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-cta {
  background: var(--brand);
  color: #fff !important;
  padding: 9px 22px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 0.875rem;
  transition: background 0.2s, transform 0.15s;
  flex-shrink: 0;
}

.nav-cta:hover {
  background: var(--brand-dark) !important;
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border: none;
  background: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.25s;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 16px 5%;
  z-index: 199;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  flex-direction: column;
  gap: 4px;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  display: block;
  padding: 11px 14px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-soft);
  border-radius: 10px;
  transition: all 0.15s;
}

.mobile-nav a:hover {
  color: var(--brand);
  background: #FFF3ED;
}

.mobile-nav .mob-cta {
  margin-top: 8px;
  background: var(--brand);
  color: #fff;
  text-align: center;
  font-weight: 700;
  border-radius: 40px;
  padding: 12px;
}

/* ── SHARED LAYOUT ── */
.wrap {
  margin: 0 auto;
  padding: 80px 9%;
}

.wrap-sm {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}

.section-label {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.section-sub {
  color: var(--text-soft);
  max-width: 580px;
  margin-bottom: 44px;
  font-size: 1.2rem;
  line-height: 1.7;
}

.btn-primary {
  background: var(--brand);
  color: #fff;
  padding: 15px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.2s;
  box-shadow: 0 4px 20px rgba(255, 77, 28, 0.28);
  display: inline-block;
}

.btn-primary:hover {
  background: var(--brand-dark);
  transform: translateY(-1px);
}

.divider {
  border: none;
  border-top: 1px solid var(--border);
}

/* ── HERO ── */
.hero-outer {
  background: var(--white);
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin: 0 auto;
  padding: 30px 9%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFF3ED;
  color: var(--brand);
  font-weight: 700;
  font-size: 0.78rem;
  padding: 6px 14px;
  border-radius: 40px;
  margin-bottom: 20px;
  border: 1px solid #FFD0C0;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  margin-bottom: 18px;
  letter-spacing: -1px;
}

.hero h1 em {
  font-style: normal;
  color: var(--brand);
  font-size: 4vw;
}

.hero-desc {
  color: var(--text-soft);
  font-size: 1.2rem;
  margin-bottom: 20px;
  line-height: 1.6;
}

.hero-bullets {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.hero-bullet {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  font-weight: 500;
}

.hero-bullet .chk {
  width: 22px;
  height: 22px;
  background: #E8F9EE;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #1C8B42;
  font-size: 0.72rem;
  font-weight: 800;
}

.hero-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.hero-link {
  color: var(--text-soft);
  font-weight: 500;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 5px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.82rem;
  color: var(--text-soft);
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-img-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  min-height: 380px;
}

.hero-img-wrap img {
  width: 550px;
  max-width: 100%;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.14));
  animation: float 4s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 768px) {
  .hero-badge {
    display: none;
  }

  .hero h1 {
    margin-top: -20px;
    margin-bottom: 10px;
  }

  .hero-bullet .chk {
  width: 18px;
  height: 18px;
  background: #E8F9EE;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #1C8B42;
  font-size: 0.52rem;
  font-weight: 800;
}

  .hero-desc {
    font-size: .95rem;
    margin-bottom: 10px;
  }

  .hero-bullet {
    font-size: 0.88rem;
  }

  .hero h1 em {
    font-style: normal;
    color: var(--brand);
    font-size: 30px;
  }
}

/* ── SPLIT SECTIONS ── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin: 0 auto;
  padding: 80px 9%;
}

.split.rev {
  direction: rtl;
}

.split.rev>* {
  direction: ltr;
}

.split-img {
  background: var(--bg-alt);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 340px;
}

.split-img img {
  max-height: 500px;
  object-fit: contain;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.11));
  border-radius: 5px;
}

.split-content p {
  color: var(--text-soft);
  margin-bottom: 18px;
  line-height: 1.72;
  font-size: 1.2rem;
}

.split-content ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 26px;
}

.split-content ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 1.1rem;
  color: var(--text-soft);
}

.split-content ul li::before {
  content: '✦';
  color: var(--brand);
  font-size: 0.72rem;
  margin-top: 4px;
  flex-shrink: 0;
}

.split-note {
  background: #FFF8F6;
  border-left: 3px solid var(--brand);
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.86rem;
  color: var(--text-soft);
  line-height: 1.6;
  margin-bottom: 22px;
}

/* ── SPECS ── */
.specs-section {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.spec-intro,
.spec-footer {
  width: 100%;
  margin: 20px 0;
  color: var(--text-soft);
  line-height: 1.7;
}

.spec-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin: 40px 0;
}

.spec-box {
  background: #f8f9fb;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 35px;
}

.spec-box h3 {
  font-size: 1.5rem;
  margin-bottom: 25px;
  color: #111;
}

/* Feature List */

.spec-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.spec-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 18px;
  color: #333;
  line-height: 1.7;
  font-size: 1.1rem;
}

.spec-list li:last-child {
  margin-bottom: 0;
}

.spec-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--brand);
  font-weight: 700;
}

.spec-list strong {
  color: #111;
  font-weight: 500;
  font-size: 1.2rem;
}

/* Image */

.spec-image {
  text-align: center;
}

.spec-image img {
  width: 630px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 24px;
}

/* Bottom Paragraph */

.spec-footer {
  margin-top: 50px;
  color: #666;
  line-height: 1.8;
  font-size: 1.2rem;
  text-align: left;
}


/* Mobile */
@media (max-width: 768px) {
  .spec-layout {
    grid-template-columns: 1fr;
  }

  .spec-features {
    grid-template-columns: 1fr;
  }

  .spec-image {
    order: -1;
  }
}

/* ── FEATURES ── */
.features-bg {
  background: var(--bg-alt, #f8fafc);
}

.features-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: start;
}

/* Feature Grid */
.features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 35px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.features-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 22px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  transition: all 0.3s ease;
}

.features-list li:hover {
  transform: translateY(-6px);
  border-color: #ff6b35;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.08);
}

.feature-check {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 14px;
  background: rgba(255, 107, 53, 0.1);
  color: #ff6b35;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s ease;
}

.features-list li:hover .feature-check {
  background: #ff6b35;
  color: #fff;
  transform: scale(1.08);
}

.feature-check svg {
  width: 22px;
  height: 22px;
}

.features-list strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}

.features-list p {
  margin: 0;
  color: #64748b;
  line-height: 1.7;
  font-size: 0.95rem;
}

/* CTA Button */
.feature-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 34px;
  background: var(--primary, #ff6b35);
  color: #fff;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 700;
  transition: .3s ease;
}

.feature-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(255, 107, 53, 0.25);
}

/* Sticky Image */
.features-image {
  top: 100px;
}

.features-image img {
  width: 100%;
  max-width: 550px;
  height: auto;
  display: block;
  margin: auto;
  border-radius: 5px;
}

/* Tablet */
@media (max-width: 991px) {

  .features-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .features-image {
    position: static;
    order: -1;
    text-align: center;
  }

  .features-image img {
    width: 100%;
    max-width: 450px;
  }

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

/* Mobile */
@media (max-width: 767px) {

  .features-list {
    grid-template-columns: 1fr;
  }

  .features-list li {
    padding: 18px;
  }

  .features-image {
    position: static;
    order: -1;
    text-align: center;
  }

  .features-image img {
    width: 100%;
    max-width: 100%;
    object-fit: contain;
  }
}

/*--------- Watch-------------*/

.watch-content h4 {
  font-size: 1.4rem;
}

.watch-content p {
  font-size: 1.2rem;
  margin-bottom: 40px;
}

.watch-content .split-note {
  font-size: 1.1rem;
}

/* ── STEPS ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 14%;
  right: 14%;
  height: 2px;
  background: var(--border);
  z-index: 0;
}

.step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 60px;
  height: 60px;
  background: var(--brand);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  margin: 0 auto 14px;
  box-shadow: 0 4px 16px rgba(255, 77, 28, 0.28);
}

.step h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.step p {
  font-size: 0.85rem;
  color: var(--text-soft);
}


.info-section {
  padding: 20px 0;
  background: #fff;
}

.use-label {
  margin-top: 100px;
}

.info-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  margin-top: 40px;
}

.info-content p {
  margin: 0 0 20px;
  color: var(--text-soft);
  line-height: 1.8;
  font-size: 1.2rem;
}

.info-image {
  top: 100px;
  align-self: start;
}

.info-image.steps {
  position: sticky;
  top: 100px;
  align-self: start;
}

.info-image img {
  width: 100%;
  max-width: 550px;
  display: block;
  margin: auto;
  border-radius: 5px;
}

.steps-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.step-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.step-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  background: #fff3ed;
  color: var(--primary);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-item h3 {
  margin: 0 0 6px;
  font-size: 1.3rem;
  font-weight: 700;
}

.step-item p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.7;
  font-size: 1.2rem;
}

@media (max-width: 991px) {
  .info-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .info-image {
    order: -1;
  }

  .use-label {
    margin-top: 70px;
  }
}

.steps-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.step-item {
  position: relative;
  display: flex;
  gap: 18px;
  padding: 24px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  transition: all 0.35s ease;
  overflow: hidden;
}

.step-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(255, 107, 53, 0.08),
      rgba(255, 107, 53, 0));
  opacity: 0;
  transition: 0.35s;
}

.step-item:hover {
  transform: translateY(-8px);
  border-color: #ff6b35;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.step-item:hover::before {
  opacity: 1;
}

.step-icon {
  width: 58px;
  height: 58px;
  min-width: 58px;
  border-radius: 16px;
  background: linear-gradient(135deg,
      #ff6b35,
      #ff8c42);
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 24px rgba(255, 107, 53, 0.25);
}

.step-item h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  font-weight: 700;
  color: #111827;
}

.step-item p {
  margin: 0;
  color: #64748b;
  line-height: 1.7;
  font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 991px) {
  .steps-content {
    grid-template-columns: 1fr;
  }
}

/* ── COMPATIBILITY ── */
.compatibility-section {
  background: var(--bg);
}

.compatibility-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.compatibility-content h4 {
  margin: 24px 0 8px;
  font-size: 1.25rem;
  font-weight: 700;
}

.compatibility-content p {
  margin-bottom: 18px;
  line-height: 1.8;
}

.compatibility-sidebar {
  top: 100px;
}

.compatibility-checklist {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 30px;
  margin: 24px 0;
}

.compatibility-checklist h4 {
  margin: 0 0 20px;
  font-size: 1.5rem;
  font-weight: 700;
}

.compatibility-checklist ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.compatibility-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  line-height: 1.6;
  font-size: 1.2rem;
}

.compatibility-checklist li::before {
  content: "✓";
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(255, 107, 53, 0.12);
  color: #ff6b35;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.split-note.compatibility {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
}

.btn-primary {
  margin-top: 10px;
}

/* Tablet */
@media (max-width: 991px) {
  .compatibility-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .compatibility-sidebar {
    position: static;
  }
}





/* ── TROUBLESHOOT ── */
.trouble-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.trouble-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px;
  border: 1px solid var(--border);
}

.trouble-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.3rem;
}

.trouble-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.trouble-card ul li {
  font-size: 0.9rem;
  color: var(--text-soft);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
  font-size: 1.2rem;
}

.trouble-card ul li::before {
  content: '→';
  color: var(--brand);
  flex-shrink: 0;
  font-weight: 700;
}

/* ── BOX ── */
.box-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.box-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 15px;
}

.box-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 18px;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--border);
  font-weight: 500;
  font-size: 1.1rem;
}

.box-list li .ico {
  font-size: 1.4rem;
}

.prereq {
  margin-top: 25px;
}

.prereq h4 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.prereq ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.prereq ul li {
  font-size: 1.2rem;
  color: var(--text-soft);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.prereq ul li::before {
  content: '✓';
  color: #1C8B42;
  font-weight: 800;
  flex-shrink: 0;
}

.good-to-know {
  background: #F0FAF3;
  border: 1px solid #C3E6CB;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 1.1rem;
  color: #1C8B42;
  margin-top: 24px;
}

/* ------WHO SECTION-------- */
.who-section {
  padding: 100px 0;
  background: var(--bg);
}

.who-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 70px;
  margin-top: 50px;
  align-items: start;
}

/* Cards Grid */
.who-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.who-item {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 20px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
}

.who-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(255, 98, 0, 0.08),
      rgba(255, 98, 0, 0));
  opacity: 0;
  transition: 0.35s ease;
}

.who-item:hover {
  transform: translateY(-10px);
  border-color: #ff6200;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.who-item:hover::before {
  opacity: 1;
}

.who-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(255, 98, 0, 0.1);
  color: #ff6200;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: all 0.35s ease;
}

.who-item:hover .who-icon {
  transform: scale(1.08);
  background: #ff6200;
  color: #fff;
}

.who-icon svg {
  width: 30px;
  height: 30px;
  stroke-width: 2;
}

.who-item h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #111;
}

.who-item p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.7;
  color: #666;
}

/* Sticky Image */
.who-image {
  position: sticky;
  top: 120px;
}

.who-image img {
  width: 100%;
  max-width: 700px;
  display: block;
  margin: auto;
  border-radius: 5px;
}

/* Tablet */
@media (max-width: 991px) {
  .who-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .who-image {
    position: static;
    order: -1;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .who-content {
    grid-template-columns: 1fr;
  }

  .who-item {
    padding: 22px;
  }

  .who-section {
    padding: 70px 0;
  }

  .info-image.steps {
    position: static;
    top: 100px;
    align-self: start;
  }
}

/* ----RIGHT SECTION----- */
.fit-section {
  background: #fff;
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.fit-card {
  padding: 28px;
  border-radius: 16px;
  border: 1px solid var(--border);
}

.fit-card h3 {
  margin-bottom: 18px;
  font-size: 1.5rem;
}

.fit-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fit-card li {
  padding: 10px 0;
  font-size: 1.3rem;
  color: var(--text-soft);
  border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.fit-card li:last-child {
  border-bottom: none;
}

.positive h3 {
  color: #1c8b42;
}

.warning h3 {
  color: #d93a0e;
}

.good-to-know.fit {
  font-weight: 1.1rem;
}

@media(max-width:768px) {

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

/* ── PRICING ── */
.pricing-bg {
  background: var(--white);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.price-card {
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: all 0.2s;
  position: relative;
}

.price-card:hover {
  box-shadow: var(--shadow);
}

.price-card.featured {
  border-color: var(--brand);
  background: #FFF8F6;
  transform: scale(1.02);
  box-shadow: 0 8px 32px rgba(255, 77, 28, 0.14);
}

.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap;
}

.price-badge.gold {
  background: var(--accent);
  color: #1a1a1a;
}

.price-qty {
  font-size: 1rem;
  color: var(--text-soft);
  font-weight: 500;
  margin-bottom: 6px;
}

.price-tag {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 4px;
}

.price-per {
  font-size: 1.1rem;
  color: var(--text-soft);
  margin-bottom: 6px;
}

.price-use {
  font-size: 0.82rem;
  color: var(--text-soft);
  margin-top: 12px;
}

.price-card .btn-primary {
  width: 100%;
  text-align: center;
  padding: 12px 20px;
  font-size: 0.9rem;
}

.pricing-note {
  text-align: center;
  margin-top: 22px;
  font-size: 0.85rem;
  color: var(--text-soft);
}

.price-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 12px;

}


/* ---------Review Section----------- */
.order-review-section {
  background: var(--bg);
}

.order-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  /* margin-top:50px; */
}

.order-heading {
  margin-bottom: 24px;
  font-size: 1.25rem;
}

.review-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}

.review-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
  color: var(--text-soft);
  line-height: 1.6;
  font-size: 1.3rem;
}

.check-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: #FFF3ED;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.check-icon svg {
  width: 14px;
  height: 14px;
}

.bundle-table {
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
}

.bundle-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}

.bundle-row:last-child {
  border-bottom: none;
}

.bundle-head {
  font-weight: 700;
  background: #f8fafc;
}

.helpful-note {
  margin-top: 24px;
  padding: 20px;
  border-radius: 16px;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  display: flex;
  gap: 14px;
}

.note-icon {
  width: 34px;
  height: 34px;
  min-width: 34px;
  color: #ea580c;
}

.note-icon svg {
  width: 100%;
  height: 100%;
}

.helpful-note strong {
  display: block;
  margin-bottom: 6px;
}

.helpful-note p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.6;
}


@media (max-width:991px) {

  .order-layout {
    grid-template-columns: 1fr;
  }

  .bundle-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}


/* ========Order/Size/Color========= */

.size-section {
  background: var(--bg);
}

.size-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  margin-top: 40px;
}

.size-content p {
  margin: 0 0 20px;
  color: var(--text-soft);
  line-height: 1.9;
  font-size: 1.3rem;
}

.size-content p:last-child {
  margin-bottom: 0;
}

.size-image {
  top: 120px;
  align-self: start;
}

.size-image img {
  width: 100%;
  max-width: 600px;
  display: block;
  margin: auto;
  border-radius: 5px;
}

@media (max-width:991px) {

  .size-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .size-image {
    position: static;
    order: -1;
  }

  .size-image img {
    max-width: 420px;
  }
}


/* ── COMPARE ── */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.93rem;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.compare-table th {
  background: var(--text);
  color: #fff;
  padding: 15px 20px;
  text-align: left;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
}

.compare-table th.hl {
  background: var(--brand);
}

.compare-table td {
  padding: 13px 20px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  line-height: 1.5;
}

.compare-table tr:last-child td {
  border-bottom: none;
}

.compare-table tr:nth-child(even) td {
  background: var(--bg-alt);
}

.compare-table td.hl {
  background: #FFF8F6 !important;
  font-weight: 600;
  border-left: 3px solid var(--brand);
}

.compare-table tr:nth-child(even) td.hl {
  background: #FFEDE8 !important;
}

.yes {
  color: #1C8B42;
  font-weight: 700;
}

.no {
  color: #aaa;
}

/* ── AUDIENCE ── */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.aud-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px 22px;
  border: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.aud-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.aud-card h4 {
  font-size: 0.97rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.aud-card p {
  font-size: 0.88rem;
  color: var(--text-soft);
  line-height: 1.55;
}

/* ── REVIEWS ── */
.reviews-bg {
  background: var(--bg-alt);
}

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

.rev-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px;
  border: 1px solid var(--border);
}

.rev-stars {
  color: var(--accent);
  font-size: 1rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.rev-text {
  font-size: 0.91rem;
  color: var(--text-soft);
  line-height: 1.65;
  margin-bottom: 14px;
  font-style: italic;
}

.rev-author {
  font-weight: 700;
  font-size: 0.9rem;
}

.rev-loc {
  font-size: 0.8rem;
  color: var(--text-soft);
}

.rev-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.74rem;
  color: #1C8B42;
  font-weight: 600;
  margin-top: 6px;
}

/* ── FAQ ── */
.faq-section {
  background: var(--white);
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 40px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  border-color: var(--brand);
}

.faq-q {
  padding: 20px 22px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.faq-ico {
  width: 20px;
  height: 20px;
  color: var(--brand);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-ico svg {
  width: 100%;
  height: 100%;
  display: block;
}

.faq-item.open .faq-ico {
  transform: rotate(180deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-a-inner {
  padding: 0 22px 22px;
  color: var(--text-soft);
  line-height: 1.7;
  font-size: 0.95rem;
}

@media (max-width: 991px) {
  .faq-list {
    grid-template-columns: 1fr;
  }
}

/* ── GUARANTEE BANNER ── */
.guarantee-section {
  background: var(--bg-alt);
}

.guarantee-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
}

.guarantee-image,
.guarantee-content {
  width: 100%;
}

.guarantee-image {
  display: flex;
  align-items: center;
}

.guarantee-image img {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
  border-radius: 5px;
}

.guarantee-content p {
  color: var(--text-soft);
  line-height: 1.8;
  margin-bottom: 18px;
  font-size: 1.5rem;
}

@media (max-width:991px) {

  .guarantee-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .guarantee-image {
    order: -1;
  }

  .guarantee-content {
    text-align: center;
  }
}

/* ── SHIPPING ── */
.shipping-section {
  background: var(--bg);
}

.shipping-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  margin-top: 40px;
  align-items: start;
}

.shipping-heading {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.shipping-intro {
  color: var(--text-soft);
  margin-bottom: 24px;
  line-height: 1.7;
  font-size: 1.2rem;
}

.return-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.return-steps li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 1.11rem;
}

.rn {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 50%;
  background: #FFF3ED;
  color: var(--primary);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -1px;
}

.return-steps span {
  color: var(--text-soft);
  line-height: 1.7;
}

.shipping-note {
  margin-top: 24px;
  padding: 15px 20px;
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.6;
}

.shipping-image {
  top: 120px;
  align-self: start;
  justify-content: end;
}

.shipping-image img {
  width: 100%;
  max-width: 700px;
  display: block;
  margin: auto;
  border-radius: 5px;
}

@media (max-width:991px) {

  .shipping-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .shipping-image {
    position: static;
    order: -1;
  }

  .shipping-image img {
    max-width: 420px;
  }
}

/* ── checkout ── */
.checkout-section {
  background: var(--bg-alt);
}

.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.checkout-image,
.checkout-content {
  width: 100%;
}

.checkout-image {
  display: flex;
  align-items: center;
  justify-content: end;
}

.checkout-image img {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
  border-radius: 5px;
}

.checkout-content p {
  color: var(--text-soft);
  line-height: 1.8;
  margin-bottom: 18px;
  font-size: 1.3rem;
}

@media (max-width:991px) {

  .checkout-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .checkout-image {
    order: -1;
  }

  .checkout-content {
    text-align: center;
  }
}


/* ===Contact== */

.contact-section {
  background: var(--bg-alt);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.contact-content p {
  color: var(--text-soft);
  line-height: 1.8;
  margin-bottom: 18px;
  font-size: 1.2rem;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  padding: 15px 32px;
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 700;
  transition: .25s ease;
}

.contact-btn:hover {
  transform: translateY(-2px);
}

.contact-image {
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: end;
}

.contact-image img {
  width: 900px;
  height: auto;
  display: block;
  border-radius: 5px;
}

@media (max-width:991px) {

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-image {
    order: -1;
  }

  .contact-content {
    text-align: center;
  }
}


/* ── DISCLOSURE ── */
.disclosure-section {
  padding: 90px 9%;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.wrap-full {
  width: 100%;
  margin: auto;
}

.disclosure-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.disclosure-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 30px;
  transition: .25s ease;
}

.support-section {
  padding: 90px 0;
  background: var(--bg);
}

.support-layout {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 70px;
  align-items: center;
}

.support-content p {
  color: var(--text-soft);
  line-height: 1.8;
  margin-bottom: 18px;
}

.support-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  padding: 15px 32px;
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 700;
  transition: .25s ease;
}

.support-btn:hover {
  transform: translateY(-2px);
}

.support-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.support-image img {
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;
  border-radius: 5px;
}

@media (max-width:991px) {

  .support-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .support-image {
    order: -1;
  }

  .support-content {
    text-align: center;
  }
}

.disclosure-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .06);
}

.disc-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: #FFF3ED;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.disc-icon svg {
  width: 28px;
  height: 28px;
}

.disclosure-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}

.disclosure-card p {
  color: var(--text-soft);
  line-height: 1.8;
  margin: 0;
  font-size: 1.2rem;
}

@media (max-width:768px) {

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

  .disclosure-card {
    padding: 24px;
  }
}

/* ── DISCLAIMER ── */
.disclaimer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 28px 5%;
  font-size: 0.82rem;
  color: var(--text-soft);
  line-height: 1.65;
  text-align: center;
}

.disclaimer strong {
  color: var(--text);
}

/* ── FOOTER ── */
footer {
  background: var(--text);
  color: rgba(255, 255, 255, 0.65);
  padding: 52px 5% 36px;
  text-align: center;
}

.foot-logo {
  font-family: 'Syne', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--brand);
  margin-bottom: 10px;
}

.foot-tagline {
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.foot-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 20px;
  margin-bottom: 20px;
}

.foot-links a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.15s;
}

.foot-links a:hover {
  color: #fff;
}

.foot-copy {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
}

.foot-updated {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 6px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1050px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

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

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

  .steps-grid::before {
    display: none;
  }

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

  .price-card.featured {
    transform: none;
  }
}

@media (max-width: 768px) {

  .hero,
  .split {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .split.rev {
    direction: ltr;
  }

  .hero-img-wrap img {
    width: 220px;
  }

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

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

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

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

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

  .box-split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 500px) {
  .specs-grid {
    grid-template-columns: 1fr;
  }

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

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

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

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