/* marketing.css - Premium Marketing Landing Page for GuestDrop */

:root {
  --color-gold: #ecd3b9;
  --color-rose: #b76e79;
  --color-rose-glow: rgba(183, 110, 121, 0.15);
  --color-rose-border: rgba(183, 110, 121, 0.25);
  --bg-dark: #120d0e;
  --bg-dark-accent: #1e1819;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Outfit', sans-serif;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Custom Scrollbars */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: var(--color-rose-border);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-rose);
}

.marketing-page {
  background-color: var(--bg-dark);
  color: #fcfafb;
  font-family: var(--font-sans);
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  background-image: radial-gradient(circle at 50% 0%, #231719 0%, #120d0e 80%);
}

html.marketing-page,
body.marketing-page {
  overflow: auto !important;
  overflow-x: hidden !important;
  height: auto !important;
}

/* Background Ambient Orbs */
.ambient-glow-1 {
  position: absolute;
  top: -100px;
  left: 5%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(183, 110, 121, 0.15) 0%, transparent 70%);
  filter: blur(120px);
  z-index: 0;
  pointer-events: none;
  animation: floatGlow 15s ease-in-out infinite alternate;
}

.ambient-glow-2 {
  position: absolute;
  top: 15%;
  right: -5%;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(236, 211, 185, 0.1) 0%, transparent 70%);
  filter: blur(140px);
  z-index: 0;
  pointer-events: none;
  animation: floatGlow 20s ease-in-out infinite alternate-reverse;
}

@keyframes floatGlow {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(60px, 40px) scale(1.08); }
}

/* Trust & Context Badges */
.promo-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(183, 110, 121, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(183, 110, 121, 0.35);
  border-radius: 30px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-gold);
  margin-bottom: 24px;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #eae5eb;
  margin-bottom: 24px;
  margin-left: 12px;
  vertical-align: middle;
}

.rating-stars {
  color: #ffd700;
  letter-spacing: 1px;
}

.text-highlight-gradient {
  background: linear-gradient(135deg, var(--color-gold) 20%, #ffffff 50%, var(--color-rose) 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
  font-family: var(--font-serif);
  font-weight: 600;
  display: inline-block;
}

/* Header & Navbar */
.marketing-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(18, 13, 14, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-menu a:hover {
  color: var(--color-rose) !important;
}

@media (max-width: 768px) {
  .nav-menu {
    display: none !important;
  }
}

.logo-link {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 32px;
  background: linear-gradient(135deg, #ffffff 0%, var(--color-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 1.5px;
  font-weight: 600;
}

.nav-cta {
  background: linear-gradient(135deg, var(--color-rose) 0%, var(--color-gold) 100%);
  color: #120d0e;
  border: none;
  padding: 10px 22px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 4px 15px var(--color-rose-glow);
  transition: var(--transition-smooth);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(183, 110, 121, 0.3);
}

/* Hero Section */
.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px 100px 24px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 968px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 40px;
    padding-bottom: 60px;
  }
}

.hero-text h1 {
  font-family: var(--font-serif);
  font-size: 56px;
  line-height: 1.15;
  margin-bottom: 20px;
  font-weight: 500;
  background: linear-gradient(135deg, #ffffff 30%, var(--color-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 42px;
  }
}

.hero-text p {
  font-size: 19px;
  color: #ecd5d8;
  margin-bottom: 36px;
  max-width: 600px;
  line-height: 1.6;
}

@media (max-width: 968px) {
  .hero-text p {
    margin-left: auto;
    margin-right: auto;
  }
}

.hero-actions {
  display: flex;
  gap: 16px;
}

@media (max-width: 968px) {
  .hero-actions {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-rose) 0%, var(--color-gold) 100%);
  color: #120d0e;
  border: none;
  padding: 16px 36px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  box-shadow: 0 4px 20px var(--color-rose-glow);
  text-align: center;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-primary.shimmer-btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 30%;
  height: 200%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(30deg);
  animation: shimmerSweep 4s infinite ease-in-out;
  pointer-events: none;
}

@keyframes shimmerSweep {
  0% { left: -60%; }
  22% { left: 140%; }
  100% { left: 140%; }
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 25px rgba(183, 110, 121, 0.45);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 16px 36px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  text-align: center;
  transition: var(--transition-smooth);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

/* Simulated Mobile App Container Mockup */
.mockup-container {
  display: flex;
  justify-content: center;
}

.phone-mockup {
  width: 330px;
  height: 660px;
  border: 12px solid #4a3a3d; /* Brighter, warm rose-grey metal frame */
  border-radius: 44px;
  background: #120d0e;
  box-shadow: 0 35px 70px -15px rgba(0, 0, 0, 0.95),
              0 0 60px rgba(183, 110, 121, 0.35),
              inset 0 0 15px rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.5s ease;
}

.phone-mockup:hover {
  transform: translateY(-8px) scale(1.02) rotate(-0.5deg);
  border-color: #5d484b; /* Even brighter border highlight on hover */
  box-shadow: 0 45px 90px -20px rgba(0, 0, 0, 0.98),
              0 0 75px rgba(183, 110, 121, 0.45);
}

/* Dynamic Island */
.phone-island {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 95px;
  height: 25px;
  background: #000;
  border-radius: 20px;
  z-index: 10;
  box-shadow: inset 0 1px 3px rgba(255, 255, 255, 0.1);
}

/* Side buttons */
.phone-btn-power {
  position: absolute;
  right: -14px;
  top: 130px;
  width: 4px;
  height: 60px;
  background: #251e20;
  border-radius: 0 4px 4px 0;
  z-index: 9;
}
.phone-btn-vol-up {
  position: absolute;
  left: -14px;
  top: 110px;
  width: 4px;
  height: 40px;
  background: #251e20;
  border-radius: 4px 0 0 4px;
  z-index: 9;
}
.phone-btn-vol-down {
  position: absolute;
  left: -14px;
  top: 165px;
  width: 4px;
  height: 40px;
  background: #251e20;
  border-radius: 4px 0 0 4px;
  z-index: 9;
}

/* Screen glare sheen overlay */
.phone-sheen {
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.03) 25%,
    rgba(255, 255, 255, 0) 50%
  );
  transform: translateX(-30%) rotate(-15deg);
  pointer-events: none;
  z-index: 5;
}

/* Screen simulated view in mockup */
.mockup-screen {
  flex: 1;
  padding: 20px 16px 16px 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: radial-gradient(circle at 50% 20%, #3d2b2d 0%, #150f10 85%); /* Brighter active screen look */
  position: relative;
}

.mockup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(183, 110, 121, 0.25);
  padding-bottom: 10px;
  margin-top: 10px;
}

.mockup-logo {
  font-family: var(--font-serif);
  color: #ffffff;
  font-size: 18px;
  text-shadow: 0 0 10px rgba(236, 211, 185, 0.5);
  font-weight: 500;
}

.mockup-badge {
  background: rgba(183, 110, 121, 0.15);
  color: var(--color-rose);
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 12px;
  border: 1px solid var(--color-rose-border);
}

/* Viewfinder styling */
.viewfinder-mock {
  position: relative;
  border-radius: 16px;
  height: 230px;
  width: 100%;
  border: 1px solid var(--color-rose-border);
  background-size: cover;
  background-position: center;
  margin: 15px 0;
  overflow: hidden;
  box-shadow: inset 0 0 25px rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 10px;
  cursor: pointer;
}

.viewfinder-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 33.33% 33.33%;
  pointer-events: none;
}

.viewfinder-hud-top {
  display: flex;
  justify-content: space-between;
  width: 100%;
  z-index: 2;
}

.viewfinder-hud-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  z-index: 2;
}

.hud-badge {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: #fff;
  font-size: 9px;
  padding: 3px 6px;
  border-radius: 4px;
  font-weight: bold;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 4px;
  border: 0.5px solid rgba(255, 255, 255, 0.1);
}

.hud-badge.rec {
  border: 0.5px solid rgba(255, 80, 80, 0.4);
}

.hud-badge.rec::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #ff4d4d;
  border-radius: 50%;
  animation: flashRedDot 1s infinite alternate;
}

@keyframes flashRedDot {
  from { opacity: 0.2; }
  to { opacity: 1; }
}

/* Shutter camera flash effect */
.shutter-flash-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  opacity: 0;
  z-index: 8;
  pointer-events: none;
}

.shutter-flash-active {
  animation: flashEffect 0.35s ease-out;
}

@keyframes flashEffect {
  0% { opacity: 0; }
  15% { opacity: 1; }
  100% { opacity: 0; }
}

/* Interactive Polaroid slide-out demo */
.polaroid-demo {
  position: absolute;
  bottom: -150px;
  left: 50%;
  transform: translateX(-50%) rotate(5deg) scale(0.8);
  width: 180px;
  background: #ffffff;
  padding: 10px 10px 22px 10px;
  border-radius: 6px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.6);
  z-index: 6;
  pointer-events: none;
  opacity: 0;
  transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.6s ease;
}

.polaroid-demo-active {
  opacity: 1;
  transform: translateX(-50%) translateY(-235px) rotate(-6deg) scale(1);
}

.polaroid-demo img {
  width: 100%;
  height: 125px;
  object-fit: cover;
  border-radius: 2px;
  border: 1px solid rgba(0,0,0,0.05);
}

.polaroid-demo-caption {
  font-family: 'Caveat', cursive, sans-serif;
  color: #120d0e;
  font-size: 16px;
  text-align: center;
  margin-top: 8px;
  font-weight: bold;
}

.mockup-shutter-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  position: relative;
}

.mockup-shutter-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #ffffff;
  border: 4px solid var(--color-rose);
  box-shadow: 0 0 15px rgba(183, 110, 121, 0.4);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.mockup-shutter-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 0 20px rgba(183, 110, 121, 0.6);
}

.mockup-shutter-btn:active {
  transform: scale(0.9);
}

.shutter-try-badge {
  position: absolute;
  top: -24px;
  background: linear-gradient(135deg, var(--color-rose) 0%, var(--color-gold) 100%);
  color: #120d0e;
  font-size: 9px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 3px 10px rgba(183, 110, 121, 0.4);
  animation: floatShutterBadge 2s infinite ease-in-out;
  white-space: nowrap;
}

@keyframes floatShutterBadge {
  0% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
  100% { transform: translateY(0); }
}

/* Floating value prop badges around phone mockup */
.float-badge {
  position: absolute;
  background: rgba(30, 24, 25, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(183, 110, 121, 0.3);
  color: #fff;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 10;
  pointer-events: none;
  white-space: nowrap;
}

.float-badge-1 {
  top: 18%;
  left: -80px;
  animation: floatBadgeAnim 5s infinite ease-in-out;
}

.float-badge-2 {
  bottom: 30%;
  right: -90px;
  animation: floatBadgeAnim 6s infinite ease-in-out 1s;
}

.float-badge-3 {
  bottom: 8%;
  left: -90px;
  animation: floatBadgeAnim 5.5s infinite ease-in-out 0.5s;
}

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

@media (max-width: 968px) {
  .float-badge {
    display: none !important;
  }
}

.mockup-instruction {
  font-size: 11px;
  color: #ebd7d9; /* Brighter, high contrast text */
  text-align: center;
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.mockup-nav {
  display: flex;
  justify-content: space-around;
  border-top: 1px solid rgba(255, 255, 255, 0.12); /* Slightly higher visibility separator */
  padding-top: 10px;
  font-size: 11px;
  color: #ebd7d9; /* Brighter high contrast text */
  font-weight: 500;
}

/* Feature Grid Section */
.section-title-wrapper {
  max-width: 800px;
  margin: 0 auto 50px auto;
  text-align: center;
  padding: 0 24px;
}

.section-title-wrapper h2 {
  font-family: var(--font-serif);
  font-size: 42px;
  color: #ffffff;
  margin-bottom: 12px;
}

.section-title-wrapper p {
  color: #ecd5d8;
  font-size: 17px;
  line-height: 1.6;
}

.features-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.feature-card {
  background: rgba(30, 24, 25, 0.45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(183, 110, 121, 0.2);
  border-radius: 24px;
  padding: 36px 30px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 0% 0%, rgba(183, 110, 121, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(183, 110, 121, 0.45);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(183, 110, 121, 0.08);
}

.feature-icon {
  font-size: 32px;
  margin-bottom: 20px;
  background: rgba(183, 110, 121, 0.1);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid var(--color-rose-border);
}

.feature-card h3 {
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 12px;
}

.feature-card p {
  color: #ebd7da;
  font-size: 15px;
  line-height: 1.6;
}

/* How It Works Section */
.how-it-works-section {
  background: radial-gradient(circle at 50% 100%, #1c1416 0%, var(--bg-dark-accent) 80%);
  padding: 100px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
  position: relative;
}

.steps-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.step-card {
  background: rgba(30, 24, 25, 0.45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(183, 110, 121, 0.15);
  border-radius: 24px;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.4s,
              box-shadow 0.4s;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 0%, rgba(236, 211, 185, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.step-card:hover {
  transform: translateY(-8px);
  border-color: rgba(183, 110, 121, 0.45);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(183, 110, 121, 0.1);
}

.step-num {
  font-family: var(--font-serif);
  font-size: 72px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--color-gold) 30%, var(--color-rose) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
  margin-bottom: 5px;
  opacity: 0.85;
  transition: transform 0.4s ease;
}

.step-card:hover .step-num {
  transform: scale(1.06) rotate(-3deg);
}

.step-icon {
  font-size: 32px;
  width: 64px;
  height: 64px;
  background: rgba(183, 110, 121, 0.08);
  border: 1px solid rgba(183, 110, 121, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.4s, color 0.4s, box-shadow 0.4s;
}

.step-card:hover .step-icon {
  transform: scale(1.15) rotate(12deg);
  background: linear-gradient(135deg, var(--color-rose) 0%, var(--color-gold) 100%);
  color: #120d0e;
  box-shadow: 0 8px 20px rgba(183, 110, 121, 0.4);
}

.step-card h3 {
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 12px;
  font-weight: 600;
}

.step-card p {
  color: #bda8aa;
  font-size: 14.5px;
  line-height: 1.6;
  max-width: 320px;
  margin: 0 auto;
}

/* Currency & Pricing Section */
.pricing-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
}

.currency-toggle-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.currency-toggle {
  display: inline-flex;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 25px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.currency-btn {
  background: transparent;
  color: #bda8aa;
  border: none;
  border-radius: 20px;
  padding: 8px 20px;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.currency-btn.active {
  background: var(--color-rose);
  color: #120d0e;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  align-items: stretch;
}

.pricing-card-image-wrapper {
  width: calc(100% + 64px);
  margin-top: -40px;
  margin-left: -32px;
  margin-right: -32px;
  height: 180px;
  overflow: hidden;
  border-radius: 24px 24px 0 0;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--color-rose-border);
}

.pricing-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.pricing-card:hover .pricing-card-img {
  transform: scale(1.05);
}

.pricing-card {
  background: rgba(30, 24, 25, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--color-rose-border);
  border-radius: 24px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: var(--transition-smooth);
}

.pricing-card.premium {
  border-color: var(--color-rose);
  box-shadow: 0 10px 40px rgba(183, 110, 121, 0.1);
  background: radial-gradient(circle at 50% 0%, rgba(183, 110, 121, 0.08) 0%, rgba(30, 24, 25, 0.5) 100%);
}

.popular-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--color-rose) 0%, var(--color-gold) 100%);
  color: #120d0e;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 20px;
  letter-spacing: 1px;
}

.pricing-card h3 {
  font-size: 22px;
  margin-bottom: 8px;
  color: #ffffff;
}

.price-display {
  font-size: 40px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  display: flex;
  align-items: baseline;
}

.price-period {
  font-size: 14px;
  font-weight: 400;
  color: #bda8aa;
  margin-left: 4px;
}

.pricing-features {
  list-style: none;
  margin-bottom: 36px;
  padding: 0;
  text-align: left;
}

.pricing-features li {
  font-size: 14px;
  color: #eae5eb;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features li::before {
  content: '✓';
  color: var(--color-rose);
  font-weight: bold;
}

.pricing-cta {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 14px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  display: block;
  text-align: center;
  transition: var(--transition-smooth);
}

.pricing-card.premium .pricing-cta {
  background: linear-gradient(135deg, var(--color-rose) 0%, var(--color-gold) 100%);
  color: #120d0e;
  border: none;
  box-shadow: 0 4px 15px var(--color-rose-glow);
}

.pricing-card.premium .pricing-cta:hover {
  box-shadow: 0 6px 20px rgba(183, 110, 121, 0.35);
  transform: translateY(-2px);
}

.pricing-cta:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* FAQ Marketing Accordion */
.faq-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 24px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: rgba(30, 24, 25, 0.5);
  border: 1px solid var(--color-rose-border);
  border-radius: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: inherit;
}

.faq-answer {
  padding: 0 20px;
  color: #bda8aa;
  font-size: 14px;
  line-height: 1.6;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              padding 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.3s ease;
}

.faq-answer:not(.hide) {
  padding: 0 20px 20px 20px;
  max-height: 250px;
  opacity: 1;
}

.faq-question-btn span:last-child {
  transition: transform 0.3s ease;
  display: inline-block;
}

.faq-question-btn.active span:last-child {
  transform: rotate(90deg);
}

/* Footer */
.marketing-footer {
  background-color: #0b0708;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 40px 24px;
  text-align: center;
}

.marketing-footer p {
  font-size: 12px;
  color: #887879;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 16px;
}

.footer-links a {
  color: #bda8aa;
  font-size: 13px;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.footer-links a:hover {
  color: #ffffff;
}

/* Pricing Comparison Table styling */
.pricing-comparison-table th {
  padding: 18px 16px;
  font-family: var(--font-serif);
  letter-spacing: 0.5px;
}

.pricing-comparison-table td {
  padding: 16px;
  font-size: 14px;
  transition: var(--transition-smooth);
}

.pricing-comparison-table tbody tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

@media (max-width: 768px) {
  .pricing-comparison-table th, .pricing-comparison-table td {
    padding: 12px 10px;
    font-size: 13px;
  }
}

/* Genuine Navbar Menu Styling */
.nav-menu {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-menu-link {
  color: #ebd7d9;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: var(--transition-smooth);
}

.nav-menu-link:hover {
  color: var(--color-rose);
}

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

.nav-cta-secondary {
  color: #ebd7d9;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.nav-cta-secondary:hover {
  color: var(--color-rose);
}

@media (max-width: 868px) {
  .nav-menu {
    display: none !important; /* Hide links on tablet/mobile */
  }
  .nav-actions {
    display: none !important; /* Hide actions on mobile */
  }
  .mobile-menu-btn {
    display: flex !important; /* Show hamburger button on mobile */
  }
}

/* Genuine Multi-column Footer Styling */
.marketing-footer {
  background-color: #0b0708;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 60px 24px 40px 24px;
}

.footer-columns {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto 50px auto;
  text-align: left;
}

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

.footer-col h4 {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col a {
  color: #bda8aa;
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition-smooth);
}

.footer-col a:hover {
  color: #ffffff;
}

.brand-col .brand-desc {
  font-size: 13px;
  color: #bda8aa;
  line-height: 1.6;
  max-width: 320px;
  margin: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 24px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer-bottom p {
  font-size: 12px;
  color: #887879;
  margin: 0;
}

@media (max-width: 768px) {
  .footer-columns {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .brand-col {
    align-items: center;
  }
  
  .brand-col .brand-desc {
    text-align: center;
  }
}

/* Mobile Menu Trigger button styling */
.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  color: #ebd7d9;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: all 0.2s;
  align-items: center;
  justify-content: center;
}

.mobile-menu-btn:hover {
  color: var(--color-rose);
  background: rgba(255, 255, 255, 0.05);
}

/* Mobile Drawer Overlay styles */
.mobile-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-drawer-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

/* Mobile Drawer Container styles */
.mobile-drawer-content {
  position: fixed;
  top: 0;
  right: -340px;
  width: 340px;
  max-width: 85%;
  height: 100%;
  background: #ffffff;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  transition: right 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 10000;
  text-align: left;
}

.mobile-drawer-overlay.open .mobile-drawer-content {
  right: 0;
}

/* Drawer Header */
.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid #edf2f7;
}

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

.drawer-logo-text {
  font-family: 'Outfit', 'Georgia', serif;
  font-size: 22px;
  font-weight: 700;
  color: #1a202c;
}

.drawer-close-btn {
  background: #edf2f7;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}

.drawer-close-btn:hover {
  background: #e2e8f0;
}

/* Drawer Body navigation styling */
.drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 32px 24px;
}

.drawer-section-label {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #a0aec0;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

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

.drawer-menu-list li {
  margin-bottom: 8px;
}

.drawer-menu-item {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  border-radius: 12px;
  text-decoration: none;
  color: #2d3748;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.2s;
  background: transparent;
}

.drawer-menu-item:hover {
  background: #f7fafc;
  color: #2b6cb0;
}

.drawer-item-icon-wrapper {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #ebf8ff;
  border: 1px solid #bee3f8;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
  flex-shrink: 0;
}

.drawer-item-title {
  flex: 1;
}

.drawer-chevron {
  opacity: 0.5;
}

/* Contact details section */
.drawer-contact-card {
  background: #f7fafc;
  border-radius: 16px;
  padding: 20px;
  border: 1px solid #edf2f7;
}

.drawer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.drawer-contact-label {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  color: #718096;
}

.drawer-contact-value {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #2b6cb0;
  text-decoration: none;
  margin-top: 2px;
}

/* Drawer Footer styling */
.drawer-footer {
  padding: 24px;
  border-top: 1px solid #edf2f7;
  background: #ffffff;
}

.drawer-primary-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px;
  border-radius: 14px;
  background: #1a365d;
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(26, 54, 93, 0.15);
  transition: background 0.2s, transform 0.2s;
}

.drawer-primary-btn:hover {
  background: #2a4365;
  transform: translateY(-1px);
}

.drawer-socials {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.drawer-social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.drawer-social-icon:hover {
  border-color: #cbd5e0;
  background: #f7fafc;
}


