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

:root {
  --primary-deep: #2a0000;
  --primary-dark: #3b0202;
  --primary-red: #680502;
  --accent-red: #8f0d06;
  --accent-gold: #f3c05b;
  --accent-gold-dark: #cda043;
  --accent-gold-light: #fae0a0;
  --cream-bg: #fff7eb;
  --card-bg: rgba(65, 3, 2, 0.75);
  --border-subtle: rgba(220, 160, 60, 0.35);
  --text-white: #ffffff;
  --text-muted: #edd6bd;
  --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  background-color: var(--primary-deep);
  color: var(--text-white);
  line-height: 1.5;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
}

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

button, input {
  font: inherit;
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
  min-width: 0;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: linear-gradient(to bottom, rgba(20, 0, 0, 0.85) 0%, rgba(20, 0, 0, 0) 100%);
  animation: headerFadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

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

.nav-wrap {
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 max(20px, env(safe-area-inset-right)) 0 max(20px, env(safe-area-inset-left));
}

.logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  transition: transform 0.25s ease, filter 0.25s ease;
}

.logo:hover {
  filter: brightness(1.1);
  transform: scale(1.02);
}

.logo img {
  height: auto;
  width: auto;
  max-width: 280px;
  max-height: 75px;
  object-fit: contain;
  display: block;
}

nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14px;
  font-weight: 500;
  animation: navFadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}

@keyframes navFadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

nav a {
  padding: 8px 0;
  color: #f7e6d2;
  transition: color 0.2s ease, transform 0.2s ease;
  position: relative;
}

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

nav a::after {
  content: '';
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: 0;
  height: 2px;
  background: var(--accent-gold);
  transition: left 0.25s cubic-bezier(0.16, 1, 0.3, 1), right 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

nav a:hover::after, nav a.active::after {
  left: 0;
  right: 0;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 36px;
  height: 36px;
  padding: 4px;
  position: relative;
  z-index: 60;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2.5px;
  background-color: var(--accent-gold);
  margin: 5.5px 0;
  border-radius: 3px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s ease, background-color 0.2s ease;
  transform-origin: center;
}

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

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

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

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  min-height: 740px;
  padding: 120px 0 50px;
  background: radial-gradient(circle at 65% 35%, #8f0e07 0%, #580301 45%, #340000 85%, #220000 100%);
  position: relative;
  overflow: hidden;
}

/* Subtle background decorative swirls from the poster */
.hero::before {
  content: '';
  position: absolute;
  right: -180px;
  top: 15%;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  border: 1px solid rgba(243, 192, 91, 0.15);
  box-shadow: 0 0 100px rgba(243, 192, 91, 0.05);
  pointer-events: none;
  animation: heroAuraPulse 12s ease-in-out infinite alternate;
}

@keyframes heroAuraPulse {
  0% {
    transform: scale(1) rotate(0deg);
    opacity: 0.65;
  }
  100% {
    transform: scale(1.06) rotate(12deg);
    opacity: 0.95;
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 46% 54%;
  align-items: center;
  gap: 20px;
}

.eyebrow {
  color: var(--accent-gold);
  font-weight: 700;
  letter-spacing: 2.5px;
  font-size: 11px;
  text-transform: uppercase;
  margin-bottom: 12px;
  animation: heroTextSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5.2vw, 68px);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 16px;
  color: var(--text-white);
  animation: heroTextSlideUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.22s both;
}

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

.hero-lead {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
  animation: heroTextSlideUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.34s both;
}

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

/* Registration Form Card */
.registration-form-card {
  background: rgba(55, 3, 2, 0.82);
  border: 1px solid rgba(243, 192, 91, 0.35);
  border-radius: 16px;
  padding: 22px 24px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(8px);
  width: 100%;
  max-width: 440px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.hero-content .registration-form-card {
  animation: heroCardSlideUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.45s both;
}

.registration-form-card:hover {
  border-color: rgba(243, 192, 91, 0.55);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.6), 0 0 20px rgba(243, 192, 91, 0.15);
}

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

.register-card h3 {
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  color: var(--text-white);
}

.register-card p {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.line-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

/* Phone Control & Country Selector */
.phone-control {
  display: flex;
  align-items: center;
  height: 48px;
  background: rgba(30, 0, 0, 0.7);
  border: 1px solid rgba(243, 192, 91, 0.4);
  border-radius: 8px;
  position: relative;
  margin-bottom: 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.phone-control:focus-within {
  border-color: var(--accent-gold);
  box-shadow: 0 0 10px rgba(243, 192, 91, 0.25);
}

.country-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: none;
  border-right: 1px solid rgba(243, 192, 91, 0.35);
  padding: 0 10px;
  height: 100%;
  color: var(--text-white);
  cursor: pointer;
  flex: 0 0 auto;
  transition: background-color 0.2s ease;
}

.country-trigger:hover {
  background: rgba(243, 192, 91, 0.1);
}

.flag-img {
  width: 24px;
  height: 16px;
  object-fit: cover;
  border-radius: 2px;
  display: block;
}

.selected-code {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-white);
}

.chevron {
  font-size: 9px;
  color: var(--accent-gold);
  margin-left: 2px;
  transition: transform 0.25s ease;
}

.country-trigger[aria-expanded="true"] .chevron {
  transform: rotate(180deg);
}

.phone-input {
  flex: 1;
  min-width: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  border: none;
  outline: none;
  padding: 0 12px;
  color: var(--text-white);
  font-size: 14px;
}

.phone-input::placeholder {
  color: rgba(237, 214, 189, 0.65);
  font-size: 13px;
}

/* Country Dropdown Menu */
.country-menu {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  width: 300px;
  max-width: calc(100vw - 36px);
  max-height: 240px;
  overflow-y: auto;
  background: #fffcf5;
  border: 1.5px solid #d4af37;
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.65);
  z-index: 1000;
  padding: 6px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(0.97);
  pointer-events: none;
  transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1), transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.25s ease;
}

.country-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.country-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  cursor: pointer;
  color: #331109;
  font-size: 13px;
  transition: background 0.18s ease, padding-left 0.18s ease;
}

.country-option:hover {
  background: #f7e6cb;
  padding-left: 18px;
}

.option-flag {
  width: 22px;
  height: 15px;
  object-fit: cover;
  border-radius: 2px;
  flex: 0 0 22px;
}

.option-name {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.option-dial {
  font-weight: 600;
  color: #741e0d;
}

/* Gold Action Button with Shimmer */
.gold-button {
  width: 100%;
  height: 46px;
  background: linear-gradient(135deg, #f7d58a 0%, #e2ab44 50%, #cca03c 100%);
  border: none;
  border-radius: 8px;
  color: #3a0e00;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(243, 192, 91, 0.35);
  position: relative;
  overflow: hidden;
  transition: filter 0.25s ease, transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease;
}

.gold-button::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-25deg);
  transition: left 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.gold-button:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(243, 192, 91, 0.45);
}

.gold-button:hover::after {
  left: 150%;
}

.gold-button:active {
  transform: translateY(1px);
  box-shadow: 0 2px 8px rgba(243, 192, 91, 0.3);
}

.gold-button span {
  font-size: 18px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.gold-button:hover span {
  transform: translateX(4px);
}

.register-card small, .cta-form small {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 10px;
  font-size: 11px;
  color: var(--text-muted);
}

/* In-Card Registration Success Box */
.form-success-box {
  text-align: center;
  padding: 24px 12px;
}

.success-checkmark {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #17814b;
  color: #ffffff;
  display: grid;
  place-items: center;
  font-size: 28px;
  font-weight: bold;
  margin: 0 auto 12px;
  box-shadow: 0 0 20px rgba(23, 129, 75, 0.4);
}

.form-success-box h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--accent-gold);
  margin-bottom: 6px;
}

.form-success-box p {
  font-size: 13px;
  color: var(--text-muted);
}

/* Trust Row with Real Avatars */
.trust-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
}

.trusted-avatars-img {
  height: 44px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
  flex: 0 0 auto;
}

.trust-row strong {
  font-size: 13px;
  color: var(--text-white);
  line-height: 1.35;
  font-weight: 500;
}

/* ==========================================================================
   HERO APP 
   ========================================================================== */
.app-preview {
  height: 590px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.app-phone {
  position: absolute;
  background: #f7f1e9;
  border: 6px solid #111111;
  box-shadow: 0 25px 60px rgba(10, 0, 0, 0.7);
  overflow: hidden;
}

.notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 16px;
  width: 72px;
  background: #111111;
  border-radius: 0 0 10px 10px;
  z-index: 10;
}

.screen {
  height: 100%;
  background: #fffcf8;
  color: #35130d;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Product Narrative Tags inside screens */
.phone-narrative-tag {
  display: inline-block;
  align-self: center;
  margin: 0 auto 6px;
  background: rgba(104, 5, 2, 0.08);
  border: 1px solid rgba(104, 5, 2, 0.2);
  color: #680502;
  font-size: 7.5px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 2px 7px;
  border-radius: 10px;
  text-transform: uppercase;
}

.phone-narrative-tag.center-tag {
  background: rgba(243, 192, 91, 0.2);
  border-color: rgba(243, 192, 91, 0.55);
  color: #551206;
  margin-bottom: 8px;
}

/* Left Phone - Book Consultation */
.left-phone {
  width: 220px;
  height: 465px;
  border-radius: 30px;
  left: 4%;
  top: 65px;
  transform: rotate(-3deg);
  z-index: 2;
  animation: phoneEntranceLeft 1s cubic-bezier(0.16, 1, 0.3, 1) 0.35s both, phoneFloatLeft 6s ease-in-out 1.4s infinite alternate;
}

@keyframes phoneEntranceLeft {
  from {
    opacity: 0;
    transform: translateY(45px) scale(0.92) rotate(0deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(-3deg);
  }
}

@keyframes phoneFloatLeft {
  0% {
    transform: translateY(0) rotate(-3deg);
  }
  100% {
    transform: translateY(-8px) rotate(-3.5deg);
  }
}

.left-phone .screen {
  padding: 26px 12px 10px;
  font-size: 10px;
}

.screen-title {
  font-weight: 700;
  font-size: 11px;
  margin-bottom: 12px;
  color: #220803;
}

.doctor {
  display: flex;
  gap: 9px;
  align-items: center;
  background: #ffffff;
  border-radius: 8px;
  padding: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.doctor-photo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex: 0 0 40px;
  border: 1px solid #ebd9c5;
}

.doctor b {
  display: block;
  font-size: 11px;
  color: #220803;
}

.doctor small {
  display: block;
  color: #777;
  font-size: 9px;
}

.doctor span {
  display: block;
  color: #666;
  font-size: 8px;
  margin-top: 2px;
}

.available {
  color: #17814b;
  font-size: 9px;
  font-weight: 600;
  margin: 8px 0 6px;
}

.slot-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  margin-bottom: 8px;
}

.slot-grid i {
  font-style: normal;
  border: 1px solid #ebd9c5;
  background: #fffdfa;
  padding: 4px;
  border-radius: 4px;
  text-align: center;
  font-size: 8px;
  color: #444;
}

.mini-red {
  background: #8b0c06;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  padding: 7px;
  font-weight: 700;
  font-size: 10px;
  cursor: pointer;
  width: 100%;
}

.divider {
  height: 1px;
  background: #ede1d3;
  margin: 10px 0;
}

.consult-heading {
  font-size: 9px;
  font-weight: 600;
  color: #666;
  margin-bottom: 4px;
}

.screen-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px solid #f2e9de;
  font-size: 9px;
  color: #331109;
}

/* Center Phone - Welcome Screen */
.center-phone {
  width: 236px;
  height: 535px;
  border-radius: 34px;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.8);
  animation: phoneEntranceCenter 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both, phoneFloatCenter 5.5s ease-in-out 1.35s infinite alternate;
}

@keyframes phoneEntranceCenter {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(50px) scale(0.88);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
  }
}

@keyframes phoneFloatCenter {
  0% {
    transform: translateX(-50%) translateY(0);
  }
  100% {
    transform: translateX(-50%) translateY(-10px);
  }
}

.center-screen {
  padding: 30px 14px 14px;
  text-align: center;
}

.center-screen .app-logo-image {
  max-width: 155px;
  max-height: 48px;
  height: auto;
  object-fit: contain;
  margin: 0 auto 6px;
  display: block;
}

.center-screen .app-lotus-image {
  width: 130px;
  height: auto;
  max-height: 110px;
  object-fit: contain;
  margin: 10px auto 14px;
  display: block;
  filter: drop-shadow(0 4px 10px rgba(243, 192, 91, 0.35));
}

.center-screen h3 {
  font-family: var(--font-serif);
  font-size: 17px;
  line-height: 1.25;
  color: #35130d;
  font-weight: 700;
  margin-bottom: 6px;
}

.center-screen p {
  font-size: 10px;
  color: #66433b;
  line-height: 1.5;
  margin-bottom: 16px;
}

.center-screen .mini-red {
  padding: 8px 14px;
  font-size: 11px;
}

.slider-dots {
  margin-top: 14px;
  display: flex;
  justify-content: center;
  gap: 6px;
}

.slider-dots b, .slider-dots i {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #dbcbba;
}

.slider-dots b {
  background: #8b0c06;
}

/* Right Phone - My Progress */
.right-phone {
  width: 220px;
  height: 465px;
  border-radius: 30px;
  right: 4%;
  top: 65px;
  transform: rotate(3deg);
  z-index: 2;
  animation: phoneEntranceRight 1s cubic-bezier(0.16, 1, 0.3, 1) 0.45s both, phoneFloatRight 6.5s ease-in-out 1.5s infinite alternate;
}

@keyframes phoneEntranceRight {
  from {
    opacity: 0;
    transform: translateY(45px) scale(0.92) rotate(0deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(3deg);
  }
}

@keyframes phoneFloatRight {
  0% {
    transform: translateY(0) rotate(3deg);
  }
  100% {
    transform: translateY(-8px) rotate(3.5deg);
  }
}

.right-screen {
  padding: 26px 12px 8px;
  font-size: 10px;
}

.right-screen .screen-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.score-card {
  background: #ffffff;
  border-radius: 9px;
  padding: 10px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  margin-bottom: 10px;
}

.score-card small {
  color: #777;
  font-size: 9px;
}

.score-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 4px solid #c9a65d;
  border-top-color: #7a1414;
  margin: 6px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.score-circle strong {
  font-size: 14px;
  line-height: 1;
  color: #220803;
}

.score-circle span {
  font-size: 8px;
  color: #17814b;
}

.view-history-btn {
  background: #fbf1e4;
  border: 1px solid #ebd9c5;
  border-radius: 4px;
  padding: 3px 8px;
  font-size: 8px;
  color: #552211;
  cursor: pointer;
}

.right-screen h4 {
  font-size: 10px;
  margin: 6px 0;
  color: #331109;
}

.session {
  background: #ffffff;
  padding: 7px 8px;
  border-radius: 7px;
  margin-bottom: 6px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
  font-size: 9px;
}

.session small {
  display: block;
  color: #777;
  margin-left: 18px;
  font-size: 8px;
}

.phone-bottom-nav {
  margin-top: auto;
  display: flex;
  justify-content: space-around;
  border-top: 1px solid #ebd9c5;
  padding-top: 4px;
}

.nav-item {
  text-align: center;
  font-size: 11px;
  color: #886655;
}

.nav-item.active {
  color: #8b0c06;
}

.nav-item small {
  font-size: 7px;
  display: block;
}

/* ==========================================================================
   FEATURE STRIP 
   ========================================================================== */
.feature-strip {
  position: relative;
  z-index: 15;
  background: var(--cream-bg);
  color: #35130d;
  width: min(1120px, 92%);
  margin: -35px auto 0;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.45);
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.strip-grid article {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 24px 28px;
  border-right: 1px solid #ecdac2;
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.25s ease;
}

.strip-grid article.anim-ready {
  opacity: 0;
  transform: translateY(28px);
}

.strip-grid article.in-view {
  opacity: 1;
  transform: translateY(0);
}

.strip-grid article:nth-child(1) { transition-delay: 0.1s; }
.strip-grid article:nth-child(2) { transition-delay: 0.25s; }
.strip-grid article:nth-child(3) { transition-delay: 0.4s; }

.strip-grid article:hover {
  background-color: rgba(243, 192, 91, 0.08);
}

.strip-grid article:last-child {
  border-right: none;
}

.round {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1.5px solid #d0ab73;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 60px;
  background: #fffdf9;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.strip-grid article:hover .round {
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(122, 20, 20, 0.2);
}

.round svg {
  display: block;
  transition: transform 0.3s ease;
}

.strip-grid article:hover .round svg {
  transform: scale(1.05);
}

.strip-grid h3 {
  font-size: 16px;
  font-weight: 700;
  color: #3a1107;
  margin-bottom: 4px;
}

.strip-grid p {
  font-size: 12px;
  color: #6a4034;
  line-height: 1.4;
}

/* ==========================================================================
   HOW IT WORKS SECTION
   ========================================================================== */
.dark-section {
  padding: 90px 0 65px;
  background: radial-gradient(circle at 50% 0%, #680502 0%, #3e0000 65%, #2a0000 100%);
  position: relative;
  overflow: hidden;
}

.section-heading {
  text-align: center;
  margin-bottom: 45px;
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.section-heading.anim-ready {
  opacity: 0;
  transform: translateY(24px);
}

.section-heading.in-view {
  opacity: 1;
  transform: translateY(0);
}

.section-heading span {
  color: var(--accent-gold);
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 11px;
}

.section-heading h2 {
  font-family: var(--font-serif);
  font-size: clamp(30px, 4vw, 42px);
  color: var(--accent-gold-light);
  margin: 6px 0 10px;
  font-weight: 600;
}

.ornament {
  color: var(--accent-gold);
  font-size: 12px;
  letter-spacing: 4px;
}

.steps {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  text-align: center;
  position: relative;
}

.steps article {
  flex: 1;
  max-width: 220px;
  margin: 0 auto;
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.steps article.anim-ready {
  opacity: 0;
  transform: translateY(30px);
}

.steps article.in-view {
  opacity: 1;
  transform: translateY(0);
}

.steps article:nth-child(1) { transition-delay: 0.1s; }
.steps article:nth-child(3) { transition-delay: 0.25s; }
.steps article:nth-child(5) { transition-delay: 0.4s; }
.steps article:nth-child(7) { transition-delay: 0.55s; }

.step-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1.5px solid var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  background: radial-gradient(circle, #660604 0%, #400100 100%);
  box-shadow: 0 0 18px rgba(243, 192, 91, 0.2);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}

.steps article:hover .step-icon {
  transform: scale(1.1);
  box-shadow: 0 0 25px rgba(243, 192, 91, 0.45);
}

.step-icon svg {
  display: block;
}

.steps h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 6px;
}

.steps p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.45;
}

.step-arrow {
  color: var(--accent-gold);
  font-size: 24px;
  margin-top: 24px;
  opacity: 0.6;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.step-arrow.anim-ready {
  opacity: 0;
  transform: scale(0.8);
}

.step-arrow.in-view {
  opacity: 0.75;
  transform: scale(1);
}

/* ==========================================================================
   BENEFITS - WHY CHOOSE SHREE SKANDA SOLUTIONS
   ========================================================================== */
.benefits {
  background: radial-gradient(circle at 50% 35%, #440200 0%, #2b0000 70%, #1f0000 100%);
  padding: 60px 0 75px;
  position: relative;
  overflow: hidden;
}

.benefit-box {
  border: none;
  border-radius: 0;
  padding: 0;
  background: transparent;
}

.benefit-box .compact {
  margin-bottom: 36px;
  text-align: center;
}

.benefit-box .compact h2 {
  font-size: clamp(26px, 3.4vw, 38px);
  margin: 6px 0 8px;
}

.principles-statement {
  font-family: var(--font-serif);
  font-size: clamp(19px, 2.2vw, 26px);
  color: var(--accent-gold-light);
  font-style: italic;
  font-weight: 500;
  opacity: 0.95;
}

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

.benefit-grid article {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 16px;
  background: rgba(45, 2, 2, 0.45);
  border-left: 2.5px solid rgba(243, 192, 91, 0.3);
  border-right: none;
  border-radius: 8px;
  backdrop-filter: blur(6px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.benefit-grid article.anim-ready {
  opacity: 0;
  transform: translateY(28px);
}

.benefit-grid article.in-view {
  opacity: 1;
  transform: translateY(0);
}

.benefit-grid article:nth-child(1) { transition-delay: 0.1s; }
.benefit-grid article:nth-child(2) { transition-delay: 0.2s; }
.benefit-grid article:nth-child(3) { transition-delay: 0.3s; }
.benefit-grid article:nth-child(4) { transition-delay: 0.4s; }

.benefit-grid article:hover {
  background: rgba(68, 5, 3, 0.65);
  border-left-color: var(--accent-gold);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
}

.benefit-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1.5px solid var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 50px;
  background: radial-gradient(circle, #550201 0%, #300000 100%);
  box-shadow: 0 0 12px rgba(243, 192, 91, 0.15);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.benefit-grid article:hover .benefit-icon {
  transform: scale(1.08);
  box-shadow: 0 0 18px rgba(243, 192, 91, 0.35);
}

.benefit-icon svg {
  display: block;
}

.benefit-grid h3 {
  font-family: var(--font-serif);
  font-size: 16.5px;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 4px;
  letter-spacing: 0.3px;
}

.benefit-grid p {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.45;
}

/* ==========================================================================
   REGISTRATION SECTION 
   ========================================================================== */
.registration-main-section {
  padding: 70px 0 85px;
  background: radial-gradient(circle at 50% 25%, #460402 0%, #260000 65%, #160000 100%);
  position: relative;
  overflow: hidden;
}

.registration-panel-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 45px;
  align-items: start;
}

/* LEFT: Poster Registration Card */
.poster-reg-card-wrap {
  width: 100%;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.poster-reg-card-wrap.anim-ready {
  opacity: 0;
  transform: translateY(28px);
}

.poster-reg-card-wrap.in-view {
  opacity: 1;
  transform: translateY(0);
}

.poster-reg-card {
  background: #fffdfa;
  border: 1.5px solid #ebd9c5;
  border-radius: 20px;
  padding: 36px 34px 30px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 20px rgba(243, 192, 91, 0.12);
  position: relative;
}

.poster-reg-header {
  text-align: center;
  margin-bottom: 22px;
}

.poster-reg-header h2 {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 700;
  color: #680502;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.poster-reg-header h3 {
  font-size: 15px;
  font-weight: 600;
  color: #2b0d06;
  line-height: 1.35;
  margin-bottom: 6px;
}

.poster-reg-header h3 span {
  color: #94130e;
  font-weight: 700;
}

.poster-reg-header p {
  font-size: 13px;
  color: #6a4f41;
  line-height: 1.4;
}

/* Form Groups & Inputs */
.poster-registration-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.poster-registration-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.poster-registration-form label {
  font-size: 12px;
  font-weight: 700;
  color: #2a0b05;
  letter-spacing: 0.3px;
  display: flex;
  align-items: center;
  gap: 3px;
}

.required-star {
  color: #c91811;
  font-weight: 800;
}

.input-with-icon {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.field-icon-badge {
  position: absolute;
  left: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  pointer-events: none;
  z-index: 2;
}

.poster-input {
  width: 100%;
  height: 46px;
  background: #ffffff;
  border: 1.5px solid #e3d2c1;
  border-radius: 9px;
  padding: 0 14px 0 42px;
  font-size: 13.5px;
  color: #240803;
  font-family: inherit;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
  box-sizing: border-box;
}

.poster-input::placeholder {
  color: #9e8979;
  font-size: 12.5px;
}

.poster-input:focus {
  border-color: #8b0c06;
  box-shadow: 0 0 0 3px rgba(139, 12, 6, 0.12);
  outline: none;
}

.poster-input.has-error {
  border-color: #c91811 !important;
  background: #fff8f8;
}

.field-error {
  font-size: 11px;
  color: #c91811;
  font-weight: 500;
  display: none;
  margin-top: 2px;
  padding-left: 2px;
}

.field-error.visible {
  display: block;
  animation: errorFadeIn 0.2s ease;
}

@keyframes errorFadeIn {
  from { opacity: 0; transform: translateY(-2px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Phone Field Specific */
.phone-field-wrap .poster-phone-control {
  display: flex;
  width: 100%;
  height: 46px;
  background: #ffffff;
  border: 1.5px solid #e3d2c1;
  border-radius: 9px;
  position: relative;
  box-sizing: border-box;
  padding-left: 38px;
  transition: border-color 0.22s ease, box-shadow 0.22s ease;
}

.poster-phone-control:focus-within {
  border-color: #8b0c06;
  box-shadow: 0 0 0 3px rgba(139, 12, 6, 0.12);
}

.poster-phone-control.has-error {
  border-color: #c91811 !important;
  background: #fff8f8;
}

.poster-phone-control .country-trigger {
  border-right: 1px solid #ebd9c5;
  height: 100%;
  background: transparent;
  padding: 0 8px;
  flex: 0 0 auto;
}

.poster-phone-control .phone-input {
  border: none;
  height: 100%;
  flex: 1 1 auto;
  padding: 0 10px;
  background: transparent;
  font-size: 13.5px;
  color: #240803;
}

.poster-phone-control .phone-input:focus {
  box-shadow: none;
  border: none;
  outline: none;
}

/* Area of Interest Pills */
.interest-pills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 8px;
  margin-top: 4px;
}

.interest-pill {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 6px;
  min-height: 60px;
  border-radius: 9px;
  border: 1.5px solid #e6d6c6;
  background: #faf5ee;
  color: #4a1c12;
  cursor: pointer;
  font-size: 11.5px;
  font-weight: 600;
  line-height: 1.25;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
}

.interest-pill:hover {
  background: #f4eae0;
  border-color: #8b0c06;
  transform: translateY(-1.5px);
}

.interest-pill.active {
  background: linear-gradient(135deg, #680502 0%, #8c0d07 100%);
  border-color: #f3c05b;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(104, 5, 2, 0.28);
  transform: translateY(-1.5px);
}

.pill-icon {
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pill-icon svg {
  stroke: #7a1d17;
  transition: stroke 0.2s ease;
}

.interest-pill.active .pill-icon svg {
  stroke: #f3c05b;
}

.pill-label {
  display: block;
}

.pill-check {
  position: absolute;
  top: 4px;
  right: 6px;
  font-size: 10px;
  font-weight: 800;
  color: #f3c05b;
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.interest-pill.active .pill-check {
  opacity: 1;
  transform: scale(1);
}

/* Select Dropdown */
.poster-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23680502' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px;
  cursor: pointer;
  padding-right: 36px;
}

/* Textarea Wrap */
.textarea-wrap {
  align-items: flex-start;
}

.textarea-icon {
  top: 13px;
}

.poster-textarea {
  min-height: 72px;
  padding-top: 11px;
  resize: vertical;
  line-height: 1.4;
}

/* Register Button */
.poster-register-btn {
  width: 100%;
  height: 52px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(135deg, #d39934 0%, #f6d488 50%, #cca03c 100%);
  color: #310400;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(211, 153, 52, 0.35);
  margin-top: 8px;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease, filter 0.2s ease;
}

.poster-register-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(211, 153, 52, 0.5);
  filter: brightness(1.05);
}

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

.btn-lotus-icon img {
  width: 24px;
  height: 24px;
  display: block;
}

.btn-arrow {
  font-size: 17px;
  font-weight: 800;
  transition: transform 0.2s ease;
}

.poster-register-btn:hover .btn-arrow {
  transform: translateX(3px);
}

.poster-register-btn:disabled,
.poster-register-btn.loading {
  opacity: 0.85;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: 0 4px 12px rgba(211, 153, 52, 0.25) !important;
  filter: grayscale(0.1);
}

.btn-spinner {
  width: 18px;
  height: 18px;
  border: 2.5px solid rgba(49, 4, 0, 0.3);
  border-top-color: #310400;
  border-radius: 50%;
  display: inline-block;
  animation: btnSpinnerRotate 0.65s linear infinite;
}

@keyframes btnSpinnerRotate {
  to { transform: rotate(360deg); }
}

/* Form-Level Error Alert Banner */
.form-alert-error {
  display: none;
  background: #fff2f2;
  border: 1.5px solid #d32f2f;
  color: #b71c1c;
  padding: 11px 14px;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  margin-top: 4px;
  text-align: center;
}

.form-alert-error.visible {
  display: block;
  animation: errorFadeIn 0.25s ease;
}

/* Security Note */
.poster-security-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 11.5px;
  color: #6a4f41;
  margin-top: 6px;
  text-align: center;
}

/* Trust Strip below card */
.poster-trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 18px;
  color: #ebd9c5;
  font-size: 12.5px;
  font-weight: 600;
  flex-wrap: wrap;
}

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

.trust-divider {
  color: rgba(243, 192, 91, 0.45);
  font-size: 13px;
}

/* RIGHT: Why Register Early + WhatsApp + App Badges */
.poster-benefits-col {
  width: 100%;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s;
}

.poster-benefits-col.anim-ready {
  opacity: 0;
  transform: translateY(28px);
}

.poster-benefits-col.in-view {
  opacity: 1;
  transform: translateY(0);
}

.why-register-block {
  display: flex;
  flex-direction: column;
}

.why-eyebrow {
  margin-bottom: 4px;
}

.why-register-title {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3vw, 36px);
  color: var(--accent-gold-light);
  line-height: 1.2;
  margin-bottom: 4px;
}

.editorial-lead-statement {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.2;
  color: #ffffff;
  font-weight: 600;
  margin: 4px 0 14px;
}

.editorial-lead-statement span {
  color: var(--accent-gold);
}

.gold-flourish {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}

.flourish-line {
  flex: 0 0 45px;
  height: 1.5px;
  background: linear-gradient(90deg, #f3c05b, transparent);
}

.flourish-diamond {
  color: #f3c05b;
  font-size: 13px;
}

.poster-benefits-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 22px;
}

.poster-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(45, 2, 2, 0.5);
  border: 1px solid rgba(243, 192, 91, 0.2);
  border-left: 3px solid rgba(243, 192, 91, 0.4);
  border-radius: 10px;
  padding: 12px 16px;
  backdrop-filter: blur(8px);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.poster-benefit-item:hover {
  transform: translateX(4px);
  border-color: rgba(243, 192, 91, 0.6);
  border-left-color: var(--accent-gold);
  background: rgba(65, 4, 3, 0.7);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.benefit-badge-icon {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: radial-gradient(circle, #680502 0%, #3a0000 100%);
  border: 1.5px solid var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(243, 192, 91, 0.18);
}

.benefit-badge-icon svg {
  width: 20px;
  height: 20px;
}

.benefit-badge-content h4 {
  font-family: var(--font-serif);
  font-size: 15.5px;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 2px;
  letter-spacing: 0.2px;
}

.benefit-badge-content p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* WhatsApp Instant Connect Callout */
.whatsapp-callout-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, rgba(20, 85, 50, 0.32) 0%, rgba(10, 48, 28, 0.45) 100%);
  border: 1.5px solid rgba(37, 211, 102, 0.55);
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 22px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(37, 211, 102, 0.2);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.whatsapp-callout-card:hover {
  transform: translateY(-2px);
  border-color: #25D366;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45), 0 0 18px rgba(37, 211, 102, 0.22);
}

.wa-icon-wrap {
  flex: 0 0 46px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wa-text-wrap h5 {
  font-size: 14.5px;
  font-weight: 700;
  color: #25D366;
  margin-bottom: 2px;
}

.wa-text-wrap p {
  font-size: 12px;
  color: #ffffff;
  line-height: 1.4;
  opacity: 0.92;
}

/* App Store Badges */
.stores {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.2s, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

.stores.anim-ready {
  opacity: 0;
  transform: translateY(20px);
}

.stores.in-view {
  opacity: 1;
  transform: translateY(0);
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #000000;
  border: 1px solid rgba(243, 192, 91, 0.3);
  border-radius: 8px;
  padding: 8px 16px;
  color: #ffffff;
  min-width: 175px;
  height: 54px;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.25s ease, box-shadow 0.25s ease, filter 0.2s ease;
}

.store-badge:hover {
  transform: translateY(-3px);
  border-color: var(--accent-gold);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5), 0 0 12px rgba(243, 192, 91, 0.25);
  filter: brightness(1.08);
}

.store-badge:active {
  transform: translateY(0);
}

.store-badge-icon {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  display: block;
}

.store-badge span {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.store-badge small {
  font-size: 8px;
  color: #cccccc;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.store-badge b {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
footer {
  background: #1f0000;
  border-top: 1px solid rgba(243, 192, 91, 0.2);
  padding: 45px 0 35px;
  position: relative;
  overflow: hidden;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 1.1fr 1.2fr 0.8fr;
  gap: 24px;
}

.footer-brand.anim-ready, .footer-grid > div.anim-ready {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-brand.in-view, .footer-grid > div.in-view {
  opacity: 1;
  transform: translateY(0);
}

.footer-grid > div:nth-child(2) { transition-delay: 0.08s; }
.footer-grid > div:nth-child(3) { transition-delay: 0.16s; }
.footer-grid > div:nth-child(4) { transition-delay: 0.24s; }
.footer-grid > div:nth-child(5) { transition-delay: 0.32s; }

.footer-brand .logo img {
  max-width: 250px;
  max-height: 68px;
  height: auto;
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 12px;
  color: rgba(237, 214, 189, 0.7);
}

.footer-grid h3 {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--accent-gold);
  margin-bottom: 14px;
  font-weight: 600;
}

.footer-grid a {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 8px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-grid a:hover {
  color: var(--accent-gold);
  transform: translateX(3px);
}

.contact-line {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 12px;
  transition: color 0.2s ease;
}

.contact-line:hover {
  color: var(--text-white);
}

.contact-line svg {
  flex: 0 0 18px;
  display: block;
  transition: transform 0.2s ease;
}

.contact-line:hover svg {
  transform: scale(1.1);
}

/* Social Media Icons */
.social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-btn {
  display: block;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border-radius: 50%;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), filter 0.25s ease, box-shadow 0.25s ease;
}

.social-btn:hover {
  transform: translateY(-4px) scale(1.1);
  filter: brightness(1.18);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.45);
}

.social-btn svg {
  width: 40px;
  height: 40px;
  display: block;
}

/* ==========================================================================
   REGISTRATION SUCCESS POPUP 
   ========================================================================== */
.success-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(15, 0, 0, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s ease;
}

.success-modal.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.success-card {
  width: min(390px, 92%);
  background: linear-gradient(135deg, #480402 0%, #2b0000 100%);
  border: 1.5px solid var(--accent-gold);
  border-radius: 18px;
  padding: 36px 26px 30px;
  text-align: center;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.85), 0 0 30px rgba(243, 192, 91, 0.25);
  color: #ffffff;
  transform: scale(0.85) translateY(20px);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
}

.success-modal.show .success-card {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.success-check {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #17814b;
  color: #ffffff;
  display: grid;
  place-items: center;
  font-size: 30px;
  font-weight: bold;
  margin: 0 auto 16px;
  box-shadow: 0 0 25px rgba(23, 129, 75, 0.5);
  transform: scale(0.3);
  transition: transform 0.5s cubic-bezier(0.16, 1.4, 0.3, 1) 0.12s;
}

.success-modal.show .success-check {
  transform: scale(1);
}

.success-card h2 {
  font-family: var(--font-serif);
  font-size: 26px;
  color: var(--accent-gold);
  margin-bottom: 10px;
  font-weight: 700;
}

.success-card p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.45;
}

.close-modal {
  position: absolute;
  top: 12px;
  right: 16px;
  border: none;
  background: transparent;
  font-size: 26px;
  color: var(--accent-gold);
  cursor: pointer;
  line-height: 1;
  transition: transform 0.2s ease, color 0.2s ease;
}

.close-modal:hover {
  transform: scale(1.2);
  color: #ffffff;
}

.success-card .gold-button {
  width: 140px;
  height: 42px;
  margin: 0 auto;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */

@media (max-width: 1050px) {
  .hamburger {
    display: block;
  }
  
  nav {
    display: flex;
    position: absolute;
    top: 86px;
    left: 4%;
    right: 4%;
    flex-direction: column;
    align-items: stretch;
    background: #400100;
    border: 1px solid var(--accent-gold);
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.8);
    gap: 8px;
    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;
    visibility: hidden;
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s ease;
  }

  nav.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    visibility: visible;
  }

  nav a {
    padding: 10px 14px;
    border-bottom: 1px solid rgba(243, 192, 91, 0.15);
  }

  nav a:last-child {
    border-bottom: none;
  }
}

@media (max-width: 950px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .registration-form-card {
    margin: 0 auto;
    text-align: left;
  }

  .trust-row {
    justify-content: center;
  }

  .app-preview {
    margin-top: 30px;
    height: 520px;
    overflow: hidden;
    max-width: 100%;
  }

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

  .benefit-grid article:nth-child(2) {
    border-right: none;
  }

  .benefit-grid article:nth-child(-n+2) {
    border-bottom: 1px solid rgba(243, 192, 91, 0.2);
  }

  .registration-panel-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .poster-reg-card-wrap {
    max-width: 600px;
    margin: 0 auto;
  }

  .why-register-block {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
  }

  .stores {
    width: 100%;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .hero {
    padding-top: 115px;
    min-height: auto;
  }

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

  .strip-grid article {
    border-right: none;
    border-bottom: 1px solid #ecdac2;
    padding: 20px;
  }

  .strip-grid article:last-child {
    border-bottom: none;
  }

  .steps {
    flex-wrap: wrap;
    gap: 20px;
  }

  .steps article {
    flex: 0 0 calc(50% - 15px);
    max-width: none;
  }

  .step-arrow {
    display: none;
  }

  /* Scale phones to prevent horizontal overflow */
  .app-preview {
    height: 440px;
    overflow: hidden;
  }

  .center-phone {
    width: 195px;
    height: 430px;
  }

  .center-screen {
    padding-top: 24px;
  }

  .center-screen .app-logo-image {
    max-width: 115px;
  }

  .center-screen .app-lotus-image {
    width: 95px;
    margin: 6px auto 10px;
  }

  .center-screen h3 {
    font-size: 14px;
  }

  .center-screen p {
    font-size: 8.5px;
    margin-bottom: 10px;
  }

  .center-screen .mini-red {
    padding: 6px 10px;
    font-size: 9px;
  }

  .left-phone {
    width: 170px;
    height: 370px;
    left: 4%;
    top: 45px;
  }

  .right-phone {
    width: 170px;
    height: 370px;
    right: 4%;
    top: 45px;
  }

  .registration-main-section {
    padding: 50px 0 65px;
  }

  .poster-reg-card {
    padding: 28px 22px 24px;
  }

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

@media (max-width: 480px) {
  .nav-wrap {
    height: 72px;
    gap: 10px;
    padding: 0 max(16px, env(safe-area-inset-right)) 0 max(16px, env(safe-area-inset-left));
  }

  .logo img {
    max-width: clamp(145px, 46vw, 195px);
    max-height: 48px;
    width: auto;
    height: auto;
    display: block;
  }

  .hero {
    padding-top: 88px;
    padding-bottom: 28px;
  }

  .hero h1 {
    font-size: clamp(30px, 8.5vw, 36px);
    word-break: break-word;
  }

  .hero-lead {
    font-size: 14px;
  }

  .registration-form-card {
    padding: 16px;
    border-radius: 12px;
  }

  .registration-main-section {
    padding: 38px 0 50px;
  }

  .poster-reg-card {
    padding: 20px 14px 18px;
    border-radius: 14px;
  }

  .poster-reg-header h2 {
    font-size: 22px;
  }

  .poster-reg-header h3 {
    font-size: 13.5px;
  }

  .poster-reg-header p {
    font-size: 12px;
  }

  .interest-pills-grid {
    grid-template-columns: 1fr 1fr;
    gap: 6px;
  }

  .interest-pill:nth-child(5) {
    grid-column: span 2;
  }

  .interest-pill {
    padding: 7px 4px;
    font-size: 11px;
    min-height: 54px;
  }

  .poster-phone-control {
    padding-left: 32px !important;
  }

  .poster-input {
    padding-left: 36px !important;
    font-size: 13px;
    height: 44px;
  }

  .field-icon-badge {
    left: 8px;
    width: 20px;
    height: 20px;
  }

  .field-icon-badge svg {
    width: 16px;
    height: 16px;
  }

  .poster-register-btn {
    height: 48px;
    font-size: 13.5px;
  }

  .poster-trust-strip {
    flex-direction: column;
    gap: 8px;
    font-size: 11.5px;
  }

  .trust-divider {
    display: none;
  }

  .why-register-title {
    font-size: 24px;
  }

  .poster-benefit-item {
    padding: 12px 14px;
    gap: 12px;
  }

  .benefit-badge-icon {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
  }

  .benefit-badge-icon svg {
    width: 20px;
    height: 20px;
  }

  .benefit-badge-content h4 {
    font-size: 13.5px;
  }

  .benefit-badge-content p {
    font-size: 12px;
  }

  .whatsapp-callout-card {
    padding: 14px 16px;
    gap: 12px;
  }

  .wa-icon-wrap svg {
    width: 38px;
    height: 38px;
  }

  .wa-text-wrap h5 {
    font-size: 13.5px;
  }

  .wa-text-wrap p {
    font-size: 11.5px;
  }

  .phone-control {
    height: 44px;
  }

  .country-trigger {
    padding: 0 8px;
  }

  .flag-img {
    width: 20px;
    height: 14px;
  }

  .selected-code {
    font-size: 12px;
  }

  .phone-input {
    font-size: 13px;
    padding: 0 8px;
  }

  .phone-input::placeholder {
    font-size: 12px;
  }

  .benefit-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .benefit-grid article {
    border-right: none !important;
    border-bottom: 1px solid rgba(243, 192, 91, 0.16);
    padding: 12px 6px;
  }

  .benefit-grid article:last-child {
    border-bottom: none;
  }

  .stores {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-start;
  }

  .store-badge {
    width: auto;
    max-width: 165px;
    flex: 1 1 140px;
    min-width: 135px;
    height: 48px;
    padding: 6px 12px;
  }

  .store-badge b {
    font-size: 13px;
  }

  .store-badge small {
    font-size: 7.5px;
  }

  .store-badge-icon {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
  }

  /* Mobile Footer — Deliberate Vertical Hierarchy & Safe-Area Margins */
  footer {
    padding: 44px 0 max(28px, env(safe-area-inset-bottom));
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 0 max(16px, env(safe-area-inset-right)) 0 max(16px, env(safe-area-inset-left));
    text-align: left;
  }

  .footer-brand .logo img {
    max-width: min(205px, 68vw);
    max-height: 52px;
    height: auto;
    margin-bottom: 8px;
    display: block;
  }

  .footer-tagline {
    font-family: var(--font-serif);
    font-size: 13.5px;
    color: var(--accent-gold);
    font-style: italic;
    margin-bottom: 6px;
    opacity: 0.95;
  }

  .footer-copy {
    font-size: 11.5px;
    color: rgba(237, 214, 189, 0.65);
    line-height: 1.4;
  }

  .footer-grid h3 {
    font-size: 16px;
    margin-bottom: 10px;
    padding-bottom: 4px;
    border-bottom: 1px solid rgba(243, 192, 91, 0.18);
  }

  .footer-grid a {
    font-size: 12.5px;
    padding: 2px 0;
    margin-bottom: 6px;
  }

  .contact-line {
    font-size: 12px;
    gap: 8px;
    margin-bottom: 10px;
  }

  .social {
    gap: 10px;
  }

  .social-btn {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
  }

  .social-btn svg {
    width: 36px;
    height: 36px;
  }

  /* Keep decorative lotus from extending on mobile */
  .decorative-lotus {
    display: none;
  }

  /* Mobile Hero: Center phone only, side phones hidden, zero overflow */
  .left-phone,
  .right-phone {
    display: none !important;
  }

  .app-preview {
    height: auto;
    min-height: 0;
    overflow: visible;
    max-width: 100%;
    margin: 12px auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .center-phone {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    margin: 0 auto;
    width: min(205px, 64vw);
    height: auto;
    aspect-ratio: 236 / 525;
    max-height: 430px;
    border-radius: 28px;
    border-width: 5px;
  }
}

@media (max-width: 360px) {
  .logo img {
    max-width: clamp(138px, 44vw, 170px);
    max-height: 44px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .registration-form-card {
    padding: 14px 10px;
  }

  .poster-reg-card {
    padding: 16px 10px 14px;
  }

  .interest-pills-grid {
    grid-template-columns: 1fr 1fr;
    gap: 5px;
  }

  .interest-pill:nth-child(5) {
    grid-column: span 2;
  }

  .poster-register-btn {
    font-size: 12px;
    gap: 6px;
  }

  .poster-phone-control .selected-code {
    font-size: 11px;
  }

  .country-trigger {
    padding: 0 6px;
  }

  .flag-img {
    width: 18px;
    height: 12px;
  }

  .selected-code {
    font-size: 11px;
  }

  .phone-input {
    padding: 0 6px;
    font-size: 11.5px;
  }

  .phone-input::placeholder {
    font-size: 11px;
  }

  .gold-button {
    font-size: 12px;
    height: 42px;
  }

  .center-phone {
    width: 150px;
    height: 335px;
  }

  .left-phone, .right-phone {
    display: none; 
  }

  .steps article {
    flex: 0 0 100%;
  }
}


@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

