/* Fonts loaded via <link> in HTML for better performance */

:root {
  --primary: #00B67A;
  --primary-dark: #009963;
  --primary-light: #e6f9f2;
  --accent: #E8380D;
  --accent-light: #fef2f0;
  --blue: #0070CC;
  --blue-light: #e6f3ff;
  --bg: #ffffff;
  --bg-alt: #f7f7f7;
  --bg-card: #ffffff;
  --text-primary: #1a1a2e;
  --text-secondary: #58586e;
  --text-muted: #8f8fa1;
  --border: #e8e8ed;
  --border-hover: #d0d0d8;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, .06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, .08);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, .1);
  --shadow-xl: 0 16px 50px rgba(0, 0, 0, .12);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-full: 9999px;
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;
  --container-max: 1280px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit
}

ul {
  list-style: none
}

::selection {
  background: var(--primary);
  color: #fff
}

::-webkit-scrollbar {
  width: 6px
}

::-webkit-scrollbar-track {
  background: #f1f1f1
}

::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 99px
}

::-webkit-scrollbar-thumb:hover {
  background: #aaa
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0
}

.bg-mesh {
  display: none
}

.gradient-text {
  color: var(--primary)
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition-base)
}

.navbar.scrolled {
  box-shadow: var(--shadow-md)
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 1.4rem
}

.logo-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #fff
}

.logo-text {
  color: var(--text-primary);
  background: none;
  -webkit-text-fill-color: var(--text-primary)
}

.logo-dot {
  color: var(--primary);
  -webkit-text-fill-color: var(--primary);
  font-weight: 800
}

.account-shell {
  position: relative
}

.account-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 12px 7px 8px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast)
}

.account-toggle:hover,
.account-toggle.open {
  border-color: var(--primary);
  box-shadow: 0 6px 20px rgba(0, 182, 122, .14)
}

.account-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--blue));
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .04em
}

.account-label {
  font-size: .82rem;
  font-weight: 700;
  color: var(--text-primary)
}

.account-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  min-width: 220px;
  padding: 10px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xl);
  display: none;
  z-index: 1050
}

.account-menu.open {
  display: block
}

.account-menu-head {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px 12px 12px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 6px
}

.account-menu-head strong {
  font-size: .9rem;
  color: var(--text-primary)
}

.account-menu-head span {
  font-size: .76rem;
  color: var(--text-muted);
  word-break: break-word
}

.account-menu-link {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 11px 12px;
  border-radius: 12px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
  text-align: left
}

.account-menu-link:hover {
  background: var(--primary-light);
  color: var(--primary-dark)
}

.account-menu-link.danger:hover {
  background: var(--accent-light);
  color: var(--accent)
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px
}

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

.nav-account .account-toggle {
  padding: 6px 10px 6px 6px
}

.nav-account .account-menu {
  left: auto;
  right: 0
}

.nav-links a {
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
  position: relative
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 99px;
  transition: width var(--transition-base)
}

.nav-links a:hover {
  color: var(--text-primary)
}

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

.nav-cta {
  padding: 10px 24px !important;
  background: var(--primary) !important;
  border-radius: var(--radius-full) !important;
  color: #fff !important;
  font-weight: 600 !important;
  font-size: .85rem !important;
  transition: all var(--transition-base) !important;
  box-shadow: 0 2px 8px rgba(0, 182, 122, .25)
}

.nav-cta:hover {
  background: var(--primary-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 182, 122, .3) !important
}

.nav-cta::after {
  display: none !important
}

.mobile-toggle {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px
}

.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 99px;
  transition: var(--transition-fast)
}

/* HERO */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  padding: 100px 0 60px;
  overflow: hidden;
  background: linear-gradient(135deg, #f0fdf7 0%, #e6f9f2 30%, #f0f7ff 70%, #fff 100%)
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2300b67a' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")
}

.hero-particles {
  display: none
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center
}

.hero-content {
  animation: fadeInUp .7s ease
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  background: var(--primary-light);
  border: 1px solid rgba(0, 182, 122, .15);
  font-size: .8rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 24px
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  animation: blink 2s ease-in-out infinite
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .3
  }
}

.hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -.02em;
  color: var(--text-primary)
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 520px
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 40px
}

.hero-stats {
  display: flex;
  gap: 48px
}

.stat {
  text-align: left
}

.stat-value {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-primary)
}

.stat-label {
  font-size: .75rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .06em
}

.hero-visual {
  position: relative;
  animation: fadeInRight .7s ease .15s both
}

.hero-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  aspect-ratio: 4/3;
  cursor: pointer;
  transition: transform var(--transition-slow), box-shadow var(--transition-slow)
}

.hero-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .15)
}

.hero-card img,
.hero-card video {
  width: 100%;
  height: 100%;
  display: block
}

.hero-card img {
  object-fit: cover
}

.hero-card video {
  object-fit: contain;
  background: linear-gradient(180deg, #eef5ff 0%, #e2ecf7 100%)
}

.hero-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .7) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px
}

.hero-card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  background: var(--accent);
  color: #fff;
  font-size: .8rem;
  font-weight: 700
}

.hero-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px
}

.hero-card-price {
  display: flex;
  align-items: center;
  gap: 12px
}

.price-original {
  font-size: 1rem;
  color: rgba(255, 255, 255, .6);
  text-decoration: line-through
}

.price-deal {
  font-size: 1.5rem;
  font-weight: 800;
  color: #4ade80
}

.float-badge {
  position: absolute;
  padding: 10px 16px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  animation: floatBadge 4s ease-in-out infinite;
  z-index: 2;
  color: var(--text-primary)
}

.float-badge:nth-child(2) {
  top: 10%;
  left: -30px;
  animation-delay: 0s
}

.float-badge:nth-child(3) {
  bottom: 20%;
  right: -30px;
  animation-delay: 1.5s
}

.float-badge:nth-child(4) {
  bottom: -15px;
  left: 20%;
  animation-delay: 3s
}

@keyframes floatBadge {

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

  50% {
    transform: translateY(-8px)
  }
}

.float-badge .icon {
  font-size: 1.1rem
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-size: .9rem;
  font-weight: 600;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, .15) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform .6s
}

.btn:hover::before {
  transform: translateX(100%)
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 2px 12px rgba(0, 182, 122, .25)
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 182, 122, .3)
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--border)
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px)
}

.btn-accent {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 2px 12px rgba(232, 56, 13, .2)
}

.btn-accent:hover {
  background: #cf3109;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(232, 56, 13, .3)
}

.btn-sm {
  padding: 8px 20px;
  font-size: .8rem
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1rem
}

/* SECTIONS */
.section {
  padding: 80px 0
}

.section-header {
  text-align: center;
  margin-bottom: 48px
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  background: var(--primary-light);
  border: 1px solid rgba(0, 182, 122, .12);
  font-size: .75rem;
  font-weight: 600;
  color: var(--primary-dark);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 12px
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 12px;
  letter-spacing: -.02em;
  color: var(--text-primary)
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7
}

/* DEAL CARDS */
.deals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 24px
}

.deal-card {
  border-radius: var(--radius-xl);
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all var(--transition-slow);
  position: relative;
  cursor: pointer
}

.deal-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-xl)
}

.deal-card-image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden
}

.deal-card-image img,
.deal-card-image video {
  width: 100%;
  height: 100%;
  display: block;
  transition: transform var(--transition-slow)
}

.deal-card-image img {
  object-fit: cover;
}

.deal-card-image.is-logo {
  background:
    radial-gradient(circle at center, rgba(255,255,255,0.96) 0%, rgba(249, 250, 251, 0.98) 55%, rgba(241, 245, 249, 1) 100%);
}

.deal-card-image.is-logo img {
  object-fit: contain;
  padding: 22px;
  background: transparent;
}

.deal-card-image video {
  object-fit: contain;
  background: linear-gradient(180deg, #f5f8fc 0%, #edf2f7 100%);
}

.deal-card:hover .deal-card-image img,
.deal-card:hover .deal-card-image video {
  transform: scale(1.05)
}

.deal-card-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to top, rgba(0, 0, 0, .15), transparent)
}

.deal-discount-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  background: var(--primary);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  z-index: 2
}

.deal-category-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(8px);
  color: var(--text-secondary);
  font-size: .7rem;
  font-weight: 600;
  z-index: 2;
  border: 1px solid rgba(0, 0, 0, .06)
}

.deal-card-body {
  padding: 20px
}

.deal-merchant-mark {
  width: 54px;
  height: 54px;
  margin-bottom: 12px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center
}

.deal-merchant-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #fff
}

.deal-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 4px;
  line-height: 1.3;
  color: var(--text-primary)
}

.deal-card-subtitle {
  font-size: .82rem;
  color: var(--text-muted);
  margin-bottom: 10px
}

.deal-card-description {
  font-size: .88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden
}

.deal-card-coupons-preview {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.coupon-chip {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #0b3b24; /* Deep rich green text */
  background: linear-gradient(90deg, rgba(0, 182, 122, 0.12) 0%, rgba(0, 182, 122, 0.04) 100%);
  padding: 8px 12px;
  border-radius: 6px;
  border: 1px solid rgba(0, 182, 122, 0.2);
  border-left: 4px solid var(--primary);
  white-space: normal;
  line-height: 1.4;
  transition: all 0.2s ease;
  width: 100%;
}

.deal-card:hover .coupon-chip {
  border-color: rgba(0, 182, 122, 0.4);
}

.coupon-chip:hover {
  transform: translateX(4px);
  background: linear-gradient(90deg, rgba(0, 182, 122, 0.18) 0%, rgba(0, 182, 122, 0.08) 100%);
  box-shadow: 0 4px 12px rgba(0, 182, 122, 0.1);
}

.coupon-chip svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--primary);
  margin-top: 2px;
}

.deal-card-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px
}

.amenity-chip {
  padding: 4px 10px;
  border-radius: var(--radius-full);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  font-size: .7rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 3px
}

.deal-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border)
}

.deal-price-group {
  display: flex;
  flex-direction: column
}

.deal-price-original {
  font-size: .8rem;
  color: var(--text-muted);
  text-decoration: line-through
}

.deal-price-now {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary)
}

.deal-price-now small {
  font-size: .7rem;
  color: var(--text-muted);
  font-weight: 400
}

.deal-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-primary)
}

.deal-sold {
  font-size: .75rem;
  color: var(--text-muted);
  font-weight: 500
}

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

.steps-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 60px;
  right: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--blue));
  opacity: .15
}

.step-card {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius-xl);
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: all var(--transition-slow);
  position: relative
}

.step-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md)
}

.step-number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  margin: 0 auto 16px;
  position: relative;
  z-index: 2
}

.step-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-primary)
}

.step-desc {
  font-size: .85rem;
  color: var(--text-secondary);
  line-height: 1.6
}

/* FEATURES */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px
}

.feature-card {
  padding: 28px;
  border-radius: var(--radius-xl);
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: all var(--transition-slow);
  position: relative;
  overflow: hidden
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-slow)
}

.feature-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md)
}

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

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px
}

.feature-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-primary)
}

.feature-desc {
  font-size: .88rem;
  color: var(--text-secondary);
  line-height: 1.7
}

/* TESTIMONIALS */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px
}

.testimonial-card {
  padding: 28px;
  border-radius: var(--radius-xl);
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: all var(--transition-slow)
}

.testimonial-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md)
}

.testimonial-stars {
  color: #f59e0b;
  font-size: 1rem;
  margin-bottom: 12px;
  letter-spacing: 2px
}

.testimonial-text {
  font-size: .92rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .85rem
}

.testimonial-name {
  font-weight: 600;
  font-size: .88rem;
  color: var(--text-primary)
}

.testimonial-role {
  font-size: .75rem;
  color: var(--text-muted)
}

/* CTA */
.cta-section {
  padding: 80px 0
}

.cta-banner {
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #004d35, #00875a);
  padding: 64px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #fff
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, .06) 0%, transparent 50%);
  animation: rotateBg 20s linear infinite
}

@keyframes rotateBg {
  0% {
    transform: rotate(0)
  }

  100% {
    transform: rotate(360deg)
  }
}

.cta-banner h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 12px;
  position: relative;
  color: #fff
}

.cta-banner .gradient-text {
  color: #4ade80
}

.cta-banner p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, .8);
  margin-bottom: 28px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  position: relative
}

.cta-banner .btn {
  position: relative;
  background: #fff;
  color: var(--primary-dark);
  box-shadow: 0 4px 16px rgba(0, 0, 0, .15)
}

.cta-banner .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .2)
}

/* FOOTER */
.footer {
  padding: 64px 0 24px;
  border-top: 1px solid var(--border);
  background: var(--bg-alt)
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.4fr 0.8fr 0.9fr 1.3fr 0.8fr 1.2fr;
  gap: 24px;
  margin-bottom: 40px
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: .88rem;
  line-height: 1.7;
  margin-top: 12px;
  max-width: 320px
}

.footer h4 {
  font-size: .85rem;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--text-primary)
}

.footer ul li {
  margin-bottom: 8px
}

.footer ul a {
  color: var(--text-secondary);
  font-size: .85rem;
  transition: color var(--transition-fast)
}

.footer ul a:hover {
  color: var(--primary)
}

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .8rem;
  color: var(--text-muted)
}

.footer-social {
  display: flex;
  gap: 10px
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  transition: all var(--transition-base)
}

.footer-social a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-2px)
}

/* DEAL DETAIL PAGE */
.deal-hero {
  padding: 90px 0 60px;
  background: var(--bg)
}

.deal-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  color: var(--text-muted);
  margin-bottom: 20px
}

.deal-breadcrumb a:hover {
  color: var(--primary)
}

.deal-breadcrumb .sep {
  color: var(--border-hover)
}

.deal-detail-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 32px;
  margin-top: 20px;
  align-items: start
}

.deal-detail-grid>* {
  min-width: 0
}

.deal-gallery {
  position: relative;
  overflow: hidden
}

.gallery-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 16/10;
  margin-bottom: 12px;
  border: 1px solid var(--border);
  position: relative
}

.gallery-main img,
.gallery-main video {
  width: 100%;
  height: 100%;
  display: block;
  transition: opacity var(--transition-base)
}

.gallery-main img {
  object-fit: cover;
}

.gallery-main video {
  object-fit: contain;
  background: linear-gradient(180deg, #f4f7fb 0%, #e9eef5 100%);
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  z-index: 5;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-sm)
}

.gallery-nav:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary)
}

.gallery-prev {
  left: 12px
}

.gallery-next {
  right: 12px
}

.gallery-thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory
}

.gallery-thumb {
  width: 80px;
  height: 60px;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition-fast);
  flex-shrink: 0;
  scroll-snap-align: start;
  opacity: .5
}

.gallery-thumb.active,
.gallery-thumb:hover {
  border-color: var(--primary);
  opacity: 1
}

.gallery-thumb img,
.gallery-thumb video {
  width: 100%;
  height: 100%;
  display: block;
}

.gallery-thumb img {
  object-fit: cover
}

.gallery-thumb video {
  object-fit: contain;
  background: #edf2f7
}

.deal-info-panel {
  position: sticky;
  top: 80px;
  display: flex;
  flex-direction: column;
  gap: 16px
}

.deal-info-card {
  border-radius: var(--radius-xl);
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 24px;
  box-shadow: var(--shadow-md)
}

.deal-info-badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  background: var(--accent);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  margin-bottom: 12px
}

.deal-info-title {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 4px;
  line-height: 1.3;
  color: var(--text-primary)
}

.deal-merchant-logo {
  width: 68px;
  height: 68px;
  margin: 10px 0 14px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  align-items: center;
  justify-content: center
}

.deal-merchant-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #fff
}

.deal-info-subtitle {
  font-size: .85rem;
  color: var(--text-muted);
  margin-bottom: 16px
}

.deal-info-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 6px
}

.deal-info-price .original {
  font-size: 1.1rem;
  color: var(--text-muted);
  text-decoration: line-through
}

.deal-info-price .current {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--primary)
}

.deal-info-gst {
  font-size: .8rem;
  color: var(--text-muted);
  margin-bottom: 20px
}

.deal-info-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap
}

.deal-meta-item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: .83rem;
  color: var(--text-secondary)
}

.deal-meta-item .icon {
  font-size: 1rem
}

.deal-cta-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px
}

.deal-cta-stack .btn {
  width: 100%
}

.deal-trust {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  color: var(--text-muted);
  justify-content: center;
  flex-wrap: wrap
}

.deal-left-col {
  min-width: 0;
}

.deal-content-inline {
  padding-top: 32px;
}

.deal-tabs {
  display: flex;
  gap: 4px;
  border-bottom: 2px solid var(--border);
  margin-bottom: 28px;
  overflow-x: auto
}

.deal-tab {
  padding: 12px 24px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
  transition: all var(--transition-fast);
  white-space: nowrap;
  cursor: pointer;
  margin-bottom: -2px
}

.deal-tab.active,
.deal-tab:hover {
  color: var(--primary);
  border-bottom-color: var(--primary)
}

.tab-content {
  display: none
}

.tab-content.active {
  display: block;
  animation: fadeIn .3s ease
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.highlights-list {
  display: flex;
  flex-direction: column;
  gap: 10px
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  border-radius: var(--radius-lg);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  transition: all var(--transition-fast)
}

.highlight-item:hover {
  border-color: var(--primary);
  background: var(--primary-light)
}

.highlight-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  flex-shrink: 0;
  margin-top: 2px;
  font-weight: 700
}

.highlight-text {
  font-size: .92rem;
  color: var(--text-secondary);
  line-height: 1.5
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px
}

.amenity-card {
  padding: 16px;
  border-radius: var(--radius-lg);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all var(--transition-fast)
}

.amenity-card:hover {
  border-color: var(--primary);
  background: var(--primary-light)
}

.amenity-card .icon {
  font-size: 1.6rem
}

.amenity-card .name {
  font-weight: 600;
  font-size: .88rem;
  color: var(--text-primary)
}

.redeem-steps {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.redeem-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  border-radius: var(--radius-lg);
  background: var(--bg-alt);
  border: 1px solid var(--border)
}

.redeem-step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .85rem;
  flex-shrink: 0
}

.redeem-step-text {
  font-size: .92rem;
  color: var(--text-secondary);
  line-height: 1.5
}

.terms-list {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.terms-list li {
  padding-left: 20px;
  position: relative;
  font-size: .88rem;
  color: var(--text-secondary);
  line-height: 1.6
}

.terms-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary)
}

/* ANIMATIONS */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px)
  }

  to {
    opacity: 1;
    transform: translateX(0)
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: all .6s cubic-bezier(.4, 0, .2, 1)
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0)
}

.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-md)
}

@keyframes shimmer {
  0% {
    background-position: 200% 0
  }

  100% {
    background-position: -200% 0
  }
}

/* RESPONSIVE */
@media(max-width:1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .hero-visual {
    max-width: 600px;
    margin: 0 auto
  }

  .deal-detail-grid {
    grid-template-columns: 1fr
  }

  .deal-info-panel {
    position: static
  }

  .deal-content-inline {
    padding-top: 24px;
  }

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

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

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

  .footer-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:768px) {
  .container {
    padding: 0 16px
  }

  .nav-actions {
    flex-direction: column;
    gap: 16px;
    width: 100%;
    max-width: 280px
  }

  .account-label {
    display: none
  }

  .account-toggle {
    padding: 6px
  }

  .account-avatar {
    width: 34px;
    height: 34px
  }

  .nav-account .account-toggle {
    padding: 6px
  }

  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, .98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    z-index: 999
  }

  .nav-links.open {
    display: flex
  }

  .nav-links a {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary)
  }

  .mobile-toggle {
    display: flex;
    z-index: 1001
  }

  .hero {
    min-height: auto;
    padding: 90px 0 50px
  }

  .hero-stats {
    gap: 24px
  }

  .stat-value {
    font-size: 1.5rem
  }

  .deals-grid {
    grid-template-columns: 1fr
  }

  .steps-grid,
  .features-grid,
  .testimonials-grid {
    grid-template-columns: 1fr
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center
  }

  .cta-banner {
    padding: 40px 24px
  }

  .hero-actions {
    flex-direction: column
  }

  .hero-actions .btn {
    width: 100%
  }

  .float-badge {
    display: none
  }

  .gallery-thumbs {
    gap: 4px
  }

  .gallery-thumb {
    width: 60px;
    height: 45px
  }

  .deal-tabs {
    gap: 0
  }

  .deal-tab {
    padding: 10px 14px;
    font-size: .82rem
  }
}

@media(max-width:480px) {
  .hero h1 {
    font-size: 1.9rem
  }

  .section-title {
    font-size: 1.5rem
  }

  .deal-info-price .current {
    font-size: 1.8rem
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 16px
  }
}

/* ═══ DEAL COUPON CARDS ═══ */
.deal-coupons-grid {
  display: grid;
  gap: 14px;
}

.dc-card {
  display: flex;
  border: 2px dashed #d1fae5;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
}

.dc-card:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 16px rgba(0, 182, 122, .12);
}

.dc-card.expired {
  opacity: .55;
  border-color: #fecaca;
}

.dc-card.unlocked {
  border-color: var(--primary);
}

.dc-card.locked {
  border-color: #e5e7eb;
}

.dc-left {
  flex: 0 0 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 18px 12px;
  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
  border-right: 2px dashed #a7f3d0;
  position: relative;
}

.dc-left::before,
.dc-left::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  background: var(--bg-alt);
  border-radius: 50%;
  right: -10px;
}

.dc-left::before {
  top: -9px;
}

.dc-left::after {
  bottom: -9px;
}

.dc-discount {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1;
}

.dc-sub {
  font-size: .68rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-top: 2px;
}

.dc-right {
  flex: 1;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.dc-code-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.dc-code {
  font-family: 'Courier New', monospace;
  font-size: 1rem;
  font-weight: 700;
  padding: 6px 12px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  letter-spacing: .08em;
  color: var(--text-primary);
}

.dc-code.blurred {
  filter: blur(6px);
  user-select: none;
  pointer-events: none;
}

.dc-copy {
  padding: 5px 12px;
  border-radius: 6px;
  border: 1px solid #e5e7eb;
  background: #fff;
  font-size: .72rem;
  font-weight: 700;
  color: var(--text-secondary);
  cursor: pointer;
  transition: .18s;
}

.dc-copy:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.dc-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .74rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}

.dc-tier {
  padding: 2px 8px;
  border-radius: 99px;
  font-size: .6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.dc-tier.premium {
  background: #fef3c7;
  color: #92400e;
}

.dc-tier.elite {
  background: #ede9fe;
  color: #5b21b6;
}

.dc-status.expired {
  color: var(--accent);
  font-weight: 600;
}

.dc-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 8px;
  border: none;
  background: #25d366;
  color: #fff;
  font-size: .76rem;
  font-weight: 700;
  cursor: pointer;
  transition: .18s;
  width: fit-content;
}

.dc-wa-btn:hover {
  background: #1da851;
}

.dc-unlock-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 8px;
  border: none;
  background: var(--primary);
  color: #fff;
  font-size: .76rem;
  font-weight: 700;
  cursor: pointer;
  transition: .18s;
  box-shadow: 0 2px 8px rgba(0, 182, 122, .3);
  width: fit-content;
}

.dc-unlock-btn:hover {
  background: var(--primary-dark);
}

.dc-upgrade-hint {
  font-size: .76rem;
  color: var(--text-muted);
  font-style: italic;
}

@media(max-width:640px) {
  .dc-card {
    flex-direction: column;
  }

  .dc-left {
    flex: none;
    flex-direction: row;
    gap: 10px;
    border-right: none;
    border-bottom: 2px dashed #a7f3d0;
    padding: 12px 16px;
  }

  .dc-left::before,
  .dc-left::after {
    display: none;
  }
}

/* ═══ PRICING SECTION ═══ */
.pricing-toggle {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  background: #fff;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.pt-btn {
  padding: 11px 28px;
  border-radius: var(--radius-full);
  font-size: .85rem;
  font-weight: 700;
  color: var(--text-muted);
  background: transparent;
  transition: all .25s;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}

.pt-btn.active {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 14px rgba(0, 182, 122, .3);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1040px;
  margin: 0 auto;
  align-items: stretch;
}

.pricing-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  text-align: center;
  transition: all .35s cubic-bezier(.4, 0, .2, 1);
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

/* Tier Header */
.pricing-card-header {
  padding: 28px 24px 20px;
  position: relative;
}

.pricing-card.tier-free .pricing-card-header {
  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
}

.pricing-card.tier-premium .pricing-card-header {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
}

.pricing-card.tier-elite .pricing-card-header {
  background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%);
}

.pricing-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 14px;
  border: 2px solid rgba(255, 255, 255, .6);
  box-shadow: 0 4px 12px rgba(0, 0, 0, .08);
}

.tier-free .pricing-card-icon {
  background: linear-gradient(135deg, #6ee7b7, #34d399);
}

.tier-premium .pricing-card-icon {
  background: linear-gradient(135deg, #60a5fa, #3b82f6);
}

.tier-elite .pricing-card-icon {
  background: linear-gradient(135deg, #a78bfa, #7c3aed);
}

.pricing-card-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.pricing-card-tagline {
  font-size: .78rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Badge */
.pricing-card-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: #fff;
  padding: 5px 18px;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .08em;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(37, 99, 235, .3);
  text-transform: uppercase;
}

.pricing-card.tier-elite .pricing-card-badge {
  background: linear-gradient(135deg, #8b5cf6, #6d28d9);
  box-shadow: 0 2px 8px rgba(109, 40, 217, .3);
}

.pricing-card.current-plan {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px var(--primary), var(--shadow-lg);
}

.pricing-card.current-plan .pricing-card-badge {
  background: var(--primary) !important;
  box-shadow: 0 2px 8px rgba(0, 182, 122, .3);
}

/* Card Body */
.pricing-card-body {
  padding: 24px 28px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pricing-card-price {
  margin-bottom: 20px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}

.pricing-currency {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-muted);
}

.pricing-amount {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
  letter-spacing: -.02em;
}

.pricing-period {
  font-size: .85rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-left: 2px;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  text-align: left;
  flex: 1;
}

.pricing-features li {
  padding: 9px 0;
  font-size: .88rem;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(0, 0, 0, .04);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features li:last-child {
  border: none;
}

.pricing-features li .pf-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .6rem;
  font-weight: 800;
  flex-shrink: 0;
}

.pricing-features li .pf-icon.check {
  background: #dcfce7;
  color: #16a34a;
}

.pricing-features li .pf-icon.cross {
  background: #fee2e2;
  color: #dc2626;
}

.pricing-features li.muted {
  color: var(--text-muted);
  opacity: .7;
}

/* CTA Buttons */
.pricing-card .pricing-cta {
  display: block;
  width: 100%;
  padding: 14px 24px;
  border-radius: var(--radius-full);
  font-size: .9rem;
  font-weight: 700;
  text-align: center;
  transition: all .25s;
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.tier-free .pricing-cta {
  background: var(--bg-alt);
  color: var(--text-primary);
  border: 1.5px solid var(--border);
}

.tier-free .pricing-cta:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-light);
}

.tier-premium .pricing-cta {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: #fff;
  box-shadow: 0 4px 14px rgba(37, 99, 235, .3);
}

.tier-premium .pricing-cta:hover {
  box-shadow: 0 6px 20px rgba(37, 99, 235, .4);
  transform: translateY(-1px);
}

.tier-elite .pricing-cta {
  background: linear-gradient(135deg, #8b5cf6, #6d28d9);
  color: #fff;
  box-shadow: 0 4px 14px rgba(109, 40, 217, .3);
}

.tier-elite .pricing-cta:hover {
  box-shadow: 0 6px 20px rgba(109, 40, 217, .4);
  transform: translateY(-1px);
}

/* Featured card effects */
.pricing-card.tier-premium {
  border-color: rgba(59, 130, 246, .35);
  box-shadow: 0 4px 24px rgba(59, 130, 246, .12);
}

.pricing-card.tier-elite {
  border-color: rgba(139, 92, 246, .3);
  box-shadow: 0 4px 24px rgba(139, 92, 246, .1);
}

@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}

/* ═══ FREE TIER BADGE ═══ */
.dc-tier.free {
  background: #dcfce7;
  color: #166534;
}

.sc-tier.free {
  background: #dcfce7;
  color: #166534;
}

/* ═══ SIDEBAR COUPONS (Deal Page) ═══ */
.sidebar-coupons {
  border-radius: var(--radius-xl);
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 18px;
  box-shadow: var(--shadow-md);
  margin-bottom: 0;
}

.sc-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.sc-icon {
  font-size: 1.2rem;
}

.sc-title {
  font-size: .95rem;
  font-weight: 700;
  color: var(--text-primary);
}

.sc-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sc-category-header {
  font-size: .82rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: 10px 0 4px;
  border-bottom: 1px solid #d1fae5;
  margin-bottom: 2px;
}

.sc-min-bill {
  font-size: .75rem;
  font-weight: 500;
  color: #b45309;
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 6px;
  padding: 3px 8px;
  margin-top: 6px;
  display: inline-block;
}

.sc-card {
  border: 1.5px dashed #d1fae5;
  border-radius: var(--radius-lg);
  padding: 14px 16px;
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
}

.sc-card:hover {
  border-color: var(--primary);
  box-shadow: 0 2px 10px rgba(0, 182, 122, .1);
}

.sc-card.sc-expired {
  opacity: .5;
  border-color: #fecaca;
}

.sc-card.sc-unlocked {
  border-color: var(--primary);
  background: linear-gradient(135deg, #f0fdf4, #fff);
}

.sc-card.sc-locked {
  border-color: #e5e7eb;
}

.sc-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.sc-discount {
  font-size: .95rem;
  font-weight: 800;
  color: var(--primary-dark);
}

.sc-tier {
  padding: 2px 8px;
  border-radius: 99px;
  font-size: .58rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.sc-tier.premium {
  background: #fef3c7;
  color: #92400e;
}

.sc-tier.elite {
  background: #ede9fe;
  color: #5b21b6;
}

.sc-tier.free {
  background: #dcfce7;
  color: #166534;
}

.sc-code-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
}

.sc-code {
  font-family: 'Courier New', monospace;
  font-size: .85rem;
  font-weight: 700;
  padding: 5px 10px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  letter-spacing: .08em;
  color: var(--text-primary);
  flex: 1;
}

.sc-code.sc-blurred {
  filter: blur(5px);
  user-select: none;
  pointer-events: none;
}

.sc-copy {
  padding: 4px 10px;
  border-radius: 5px;
  border: 1px solid #e5e7eb;
  background: #fff;
  font-size: .68rem;
  font-weight: 700;
  color: var(--text-secondary);
  cursor: pointer;
  transition: .18s;
  flex-shrink: 0;
}

.sc-copy:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.sc-meta {
  font-size: .72rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.sc-status-text {
  font-size: .78rem;
  color: var(--accent);
  font-weight: 600;
}

.sc-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 6px 12px;
  border-radius: 6px;
  border: none;
  background: #25d366;
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  cursor: pointer;
  transition: .18s;
  width: 100%;
  margin-top: 4px;
}

.sc-wa:hover {
  background: #1da851;
}

.sc-unlock {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 6px 12px;
  border-radius: 6px;
  border: none;
  background: var(--primary);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  cursor: pointer;
  transition: .18s;
  box-shadow: 0 2px 8px rgba(0, 182, 122, .25);
  width: 100%;
  margin-top: 4px;
}

.sc-unlock:hover {
  background: var(--primary-dark);
}

.sc-upgrade {
  display: block;
  font-size: .72rem;
  color: var(--text-muted);
  font-style: italic;
  text-align: center;
  margin-top: 4px;
}

.sc-bottom {
  text-align: center;
}

/* ═══ COUPON DESCRIPTION & GENERATED BADGE ═══ */
.sc-desc {
  font-size: .78rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 8px;
  padding: 6px 10px;
  background: #f8fafc;
  border-radius: 6px;
  border-left: 3px solid var(--primary);
}

.sc-generated-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 6px 12px;
  border-radius: 6px;
  background: linear-gradient(135deg, #ecfdf5, #d1fae5);
  color: #047857;
  font-size: .78rem;
  font-weight: 700;
  margin-bottom: 6px;
  border: 1px solid #a7f3d0;
  animation: scBadgePulse .6s ease;
}

@keyframes scBadgePulse {
  0% {
    transform: scale(0.95);
    opacity: 0;
  }

  60% {
    transform: scale(1.03);
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* ═══ NEW COUPON ROW LAYOUT (Premium App Style) ═══ */
.sc-card-new {
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(to right, #f0f9ff, #f8fafc);
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 16px;
  transition: all 0.2s;
  margin-bottom: 12px;
}

.sc-card-new:hover {
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.1);
  border-color: #bae6fd;
}

.sc-card-new.sc-unlocked {
  background: linear-gradient(to right, #f0fdf4, #f8fafc);
  border-color: #bbf7d0;
}

.sc-card-new.sc-expired {
  opacity: 0.6;
  filter: grayscale(1);
}

.sc-new-left {
  flex-shrink: 0;
}

.sc-new-icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.sc-new-mid {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sc-new-badge-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #475569;
}

.sc-new-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.3;
}

.sc-new-expiry {
  font-size: 0.75rem;
  color: #64748b;
  margin-top: 2px;
}

.sc-new-code {
  font-family: monospace;
  font-size: 0.85rem;
  font-weight: 700;
  color: #047857;
  background: #d1fae5;
  padding: 4px 8px;
  border-radius: 4px;
  width: fit-content;
  margin-top: 4px;
}

.sc-new-right {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sc-unlock-sm,
.sc-copy-sm {
  background: #0ea5e9;
  color: #fff;
  border: none;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s;
}

.sc-copy-sm {
  background: #10b981;
}

.sc-unlock-sm:hover {
  background: #0284c7;
}

/* ═══════ Floating WhatsApp Button ═══════ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
  animation: whatsapp-pulse 2s ease-in-out 1s 3;
}

.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.55);
}

@keyframes whatsapp-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 16px;
    right: 16px;
    width: 50px;
    height: 50px;
  }
  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }
}
