/* ============================================
   SUPER PLANS - Main Stylesheet
   Color Scheme: Black, White, Grey, Red
   ============================================ */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=DM+Sans:wght@300;400;500;600&display=swap');

/* --- CSS Variables --- */
:root {
  --black:       #0a0a0a;
  --dark:        #111111;
  --dark-card:   #181818;
  --border:      #2a2a2a;
  --grey-mid:    #666666;
  --grey-light:  #aaaaaa;
  --white:       #f5f5f5;
  --pure-white:  #ffffff;
  --gold:        #dc2626;
  --gold-light:  #ef4444;
  --gold-dim:    #7f1d1d;
  --out-stock:   #2e2e2e;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;
  --nav-h:       70px;
  --radius:      12px;
  --shadow:      0 8px 40px rgba(0,0,0,0.5);
  --gold-glow:   0 0 30px rgba(220,38,38,0.20);
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: var(--black);
  color: var(--white);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

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

ul { list-style: none; }

/* ============================================
   NAVIGATION
   ============================================ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  transition: background 0.3s;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--pure-white);
}

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

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--grey-light);
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

/* Mobile nav */
@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(17,17,17,0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-direction: column;
    gap: 0;
    border-bottom: 2px solid var(--gold);
    padding: 0.5rem 1.2rem 1.2rem;
    box-shadow: 0 12px 40px rgba(0,0,0,0.6);
  }

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

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0.9rem 0.8rem;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--grey-light);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    border-radius: 6px;
    transition: background 0.2s, color 0.2s, padding-left 0.2s;
  }

  .nav-links li:last-child a {
    border-bottom: none;
    margin-top: 0.5rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--black);
    font-weight: 700;
    justify-content: center;
    border-radius: 6px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 0.85rem;
  }

  .nav-links a:hover {
    background: rgba(220,38,38,0.08);
    color: var(--gold);
    padding-left: 1.2rem;
  }

  .nav-links li:last-child a:hover {
    background: var(--gold-light);
    color: var(--black);
    padding-left: 0;
  }

  .nav-links a.active {
    color: var(--gold);
    background: rgba(220,38,38,0.08);
  }

  .nav-links a::after { display: none; }
}

/* ============================================
   PAGE WRAPPER
   ============================================ */
main {
  padding-top: var(--nav-h);
  min-height: calc(100vh - var(--nav-h));
}

/* ============================================
   SECTION UTILITIES
   ============================================ */
.section {
  padding: 6rem 5%;
}

.section-sm {
  padding: 4rem 5%;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-dim);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 1.2rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--pure-white);
  margin-bottom: 1rem;
}

.section-title span {
  color: var(--gold);
}

.section-sub {
  font-size: 1rem;
  color: var(--grey-light);
  max-width: 560px;
  line-height: 1.8;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 14px 32px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  text-transform: uppercase;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--black);
  box-shadow: 0 4px 20px rgba(220,38,38,0.25);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(220,38,38,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
}

.btn-disabled {
  background: var(--out-stock);
  color: var(--grey-mid);
  cursor: not-allowed;
  border: 1px solid var(--border);
}

.btn-disabled:hover {
  transform: none;
  box-shadow: none;
}

/* ============================================
   CARDS
   ============================================ */
.card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: border-color 0.3s, transform 0.3s;
}

.card:hover {
  border-color: var(--gold-dim);
  transform: translateY(-4px);
}

/* ============================================
   DIVIDER
   ============================================ */
.gold-line {
  width: 48px; height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 2px;
  margin: 1.2rem 0 1.8rem;
}

/* ============================================
   HERO — Home Page
   ============================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0 5%;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 80% 50%, rgba(220,38,38,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(220,38,38,0.04) 0%, transparent 60%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(220,38,38,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(220,38,38,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(220,38,38,0.1);
  border: 1px solid rgba(220,38,38,0.3);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gold-light);
  margin-bottom: 1.8rem;
  animation: fadeSlideDown 0.8s ease forwards;
}

.hero-badge .dot {
  width: 7px; height: 7px;
  background: #4caf50;
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(76,175,80,0.6);
  animation: pulse 2s infinite;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--pure-white);
  margin-bottom: 1.2rem;
  animation: fadeSlideUp 0.8s ease 0.1s forwards;
  opacity: 0;
}

.hero-title span { color: var(--gold); }

.hero-desc {
  font-size: 1.1rem;
  color: var(--grey-light);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 520px;
  animation: fadeSlideUp 0.8s ease 0.2s forwards;
  opacity: 0;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeSlideUp 0.8s ease 0.3s forwards;
  opacity: 0;
}

.hero-trust {
  margin-top: 4rem;
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  animation: fadeSlideUp 0.8s ease 0.4s forwards;
  opacity: 0;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--grey-light);
}

.hero-trust-item .icon {
  color: var(--gold);
  font-size: 1.1rem;
}

/* ============================================
   FEATURES STRIP
   ============================================ */
.features-strip {
  background: var(--dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3rem 5%;
}

.features-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature-icon {
  width: 44px; height: 44px;
  background: rgba(220,38,38,0.1);
  border: 1px solid rgba(220,38,38,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.feature-item h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--pure-white);
  margin-bottom: 4px;
}

.feature-item p {
  font-size: 0.8rem;
  color: var(--grey-mid);
  line-height: 1.5;
}

/* ============================================
   STEPS SECTION (How It Works)
   ============================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.step-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.2rem;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}

.step-card:hover {
  border-color: var(--gold-dim);
  transform: translateY(-4px);
}

.step-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(220,38,38,0.12);
  line-height: 1;
  margin-bottom: 1rem;
  user-select: none;
}

.step-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--pure-white);
  margin-bottom: 0.6rem;
}

.step-card p {
  font-size: 0.88rem;
  color: var(--grey-light);
  line-height: 1.7;
}

/* ============================================
   PLANS PAGE — PRICING TABLE
   ============================================ */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.plan-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.2rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  transition: all 0.3s;
}

.plan-card.out-of-stock {
  opacity: 0.5;
  filter: grayscale(0.6);
}

.plan-card.in-stock {
  border-color: var(--gold-dim);
  box-shadow: var(--gold-glow);
}

.plan-card.in-stock:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 0 50px rgba(220,38,38,0.25);
}

.plan-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--black);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

.plan-service {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-mid);
}

.plan-duration {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--pure-white);
}

.plan-price {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--grey-mid);
  margin-top: -0.4rem;
  letter-spacing: 0.02em;
}

.plan-price span {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: -0.02em;
}

.plan-card.out-of-stock .plan-price span {
  color: var(--grey-mid);
}

.plan-divider {
  height: 1px;
  background: var(--border);
}

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--grey-light);
}

.plan-features li .check {
  color: var(--gold);
  font-size: 0.75rem;
}

.plan-features li .cross {
  color: var(--grey-mid);
}

.stock-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 4px;
}

.stock-label.in {
  background: rgba(76,175,80,0.12);
  color: #66bb6a;
  border: 1px solid rgba(76,175,80,0.25);
}

.stock-label.out {
  background: rgba(100,100,100,0.1);
  color: var(--grey-mid);
  border: 1px solid var(--border);
}

.stock-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
}

.stock-label.in .stock-dot { background: #66bb6a; }
.stock-label.out .stock-dot { background: var(--grey-mid); }

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

@media (max-width: 768px) {
  .about-intro { grid-template-columns: 1fr; gap: 3rem; }
}

.about-visual {
  aspect-ratio: 1;
  max-width: 400px;
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(220,38,38,0.15);
  transition: box-shadow 0.3s, transform 0.3s;
}

.about-visual:hover {
  box-shadow: 0 24px 70px rgba(0,0,0,0.6), 0 0 0 1px rgba(220,38,38,0.3);
  transform: translateY(-4px);
}

.about-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 60%,
    rgba(0,0,0,0.4) 100%
  );
  pointer-events: none;
  border-radius: var(--radius);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.value-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem;
  transition: all 0.3s;
}

.value-card:hover {
  border-color: var(--gold-dim);
  transform: translateY(-3px);
}

.value-card .vi {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
}

.value-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--pure-white);
  margin-bottom: 0.4rem;
}

.value-card p {
  font-size: 0.85rem;
  color: var(--grey-mid);
  line-height: 1.6;
}

/* ============================================
   HOW IT WORKS PAGE
   ============================================ */
.how-hero {
  text-align: center;
  padding: 6rem 5% 4rem;
}

.timeline {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 28px; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

.timeline-item {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
}

.timeline-icon {
  width: 56px; height: 56px;
  background: var(--dark-card);
  border: 1px solid var(--gold-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  z-index: 1;
}

.timeline-content {
  padding-top: 0.5rem;
}

.timeline-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--pure-white);
  margin-bottom: 0.4rem;
}

.timeline-content p {
  font-size: 0.9rem;
  color: var(--grey-light);
  line-height: 1.7;
}

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

@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; }
}

.contact-info h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--pure-white);
  margin-bottom: 1rem;
}

.contact-info p {
  color: var(--grey-light);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 1rem;
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 1rem;
}

.contact-detail .cd-icon {
  font-size: 1.3rem;
}

.contact-detail span {
  font-size: 0.9rem;
  color: var(--grey-light);
}

/* Order Form */
.order-form-wrap {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
}

.form-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--pure-white);
  margin-bottom: 0.4rem;
}

.form-sub {
  font-size: 0.85rem;
  color: var(--grey-mid);
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.4rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--grey-light);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--white);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--gold-dim);
  box-shadow: 0 0 0 3px rgba(220,38,38,0.1);
}

.form-group input::placeholder {
  color: var(--grey-mid);
}

.form-group select option {
  background: var(--dark);
  color: var(--white);
}

.form-note {
  font-size: 0.78rem;
  color: var(--grey-mid);
  margin-top: 0.4rem;
}

.submit-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--black);
  border: none;
  border-radius: 6px;
  padding: 15px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s;
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(220,38,38,0.4);
}

/* ============================================
   MODAL
   ============================================ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal-overlay.open {
  display: flex;
}

.modal {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  max-width: 480px;
  width: 100%;
  position: relative;
  animation: modalIn 0.3s ease;
}

.modal-close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: none;
  border: none;
  color: var(--grey-mid);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}

.modal-close:hover { color: var(--white); }

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 3rem 5% 2rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
}

@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
}

.footer-brand h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--pure-white);
  margin-bottom: 0.6rem;
}

.footer-brand h3 span { color: var(--gold); }

.footer-brand p {
  font-size: 0.85rem;
  color: var(--grey-mid);
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-light);
  margin-bottom: 1.2rem;
}

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col ul li a {
  font-size: 0.85rem;
  color: var(--grey-mid);
  transition: color 0.2s;
}

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

.footer-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--grey-mid);
  margin-top: 0.5rem;
}

.footer-bottom {
  max-width: 1100px;
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--grey-mid);
}
/* Zentrax Credit */
.zentrax-credit {
  display: flex;
  align-items: center;
  gap: 10px;

  /* Make it more visible */
  opacity: 0.9;

  transition: all 0.3s ease;
}

.zentrax-credit:hover {
  opacity: 1;
  transform: scale(1.03);
}

.zentrax-credit span {
  font-size: 0.85rem;
  color: #ccc;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
}

.zentrax-credit img {
  height: 100px; /* Increased from 26px */
  width: auto;

  /* Make logo brighter and clearer */
  filter: brightness(1.2);

  transition: transform 0.3s ease;
}

.zentrax-credit:hover img {
  transform: scale(1.05);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.95) translateY(10px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

/* Scroll-triggered fade in */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  padding: 5rem 5% 4rem;
  text-align: center;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(220,38,38,0.06) 0%, transparent 60%);
  border-bottom: 1px solid var(--border);
}

.page-hero .section-tag { margin: 0 auto 1rem; display: block; text-align: center; }

.page-hero .section-title { text-align: center; }

.page-hero .section-sub { margin: 0 auto; text-align: center; }

/* ============================================
   SUCCESS MESSAGE
   ============================================ */
.success-msg {
  display: none;
  background: rgba(76,175,80,0.1);
  border: 1px solid rgba(76,175,80,0.3);
  border-radius: 8px;
  padding: 1rem 1.5rem;
  color: #66bb6a;
  font-size: 0.9rem;
  margin-top: 1rem;
  text-align: center;
}

/* ============================================
   RESPONSIVE TWEAKS
   ============================================ */
@media (max-width: 600px) {
  .section { padding: 4rem 5%; }
  .hero-trust { gap: 1.5rem; }
  .plans-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .order-form-wrap { padding: 1.5rem; }
}
