/* PalateVault Landing Page Styles */

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

html, body {
  margin: 0;
  padding: 0;
  background: #0F0A0A;
}

.landing-page {
  --color-cream: #F5F0E8;
  --color-champagne: #EDE5D8;
  --color-gold: #C9A962;
  --color-gold-light: #D4BA7A;
  --color-burgundy: #722F37;
  --color-wine: #4A0E0E;
  --color-wine-dark: #2D0808;
  --color-black: #0F0A0A;
  --color-charcoal: #1A1512;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Cormorant Garamond', Georgia, serif;

  font-family: var(--font-body);
  background: var(--color-black);
  color: var(--color-cream);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.5rem 3rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav--scrolled {
  background: rgba(15, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 3rem;
  border-bottom: 1px solid rgba(201, 169, 98, 0.1);
}

.nav__container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--color-cream);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: 0.02em;
}

.nav__logo-icon {
  color: var(--color-gold);
  font-size: 0.8rem;
}

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

.nav__links a {
  color: var(--color-cream);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.8;
  transition: opacity 0.3s;
  letter-spacing: 0.02em;
}

.nav__links a:hover {
  opacity: 1;
}

.nav__cta {
  background: transparent;
  border: 1px solid var(--color-gold);
  color: var(--color-gold) !important;
  padding: 0.6rem 1.5rem;
  opacity: 1 !important;
  transition: all 0.3s !important;
}

.nav__cta:hover {
  background: var(--color-gold);
  color: var(--color-black) !important;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  padding: 1rem 2rem;
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 0.02em;
}

.btn--primary {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
  color: var(--color-black);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(201, 169, 98, 0.3);
}

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

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

.btn--ghost {
  background: transparent;
  color: var(--color-cream);
  border: 1px solid rgba(245, 240, 232, 0.3);
}

.btn--ghost:hover {
  border-color: var(--color-cream);
  background: rgba(245, 240, 232, 0.05);
}

.btn--large {
  padding: 1.25rem 2.5rem;
  font-size: 1.2rem;
}

.btn__arrow {
  transition: transform 0.3s;
}

.btn:hover .btn__arrow {
  transform: translateX(4px);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 8rem 3rem 4rem;
  overflow: hidden;
}

.hero__grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
}

.hero__gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(114, 47, 55, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 60%, rgba(74, 14, 14, 0.2) 0%, transparent 50%);
  pointer-events: none;
}

.hero__content {
  max-width: 700px;
  position: relative;
  z-index: 2;
  animation: fadeInUp 1s ease-out;
}

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

.hero__eyebrow {
  font-family: var(--font-body);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--color-gold);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 400;
  line-height: 1.1;
  margin: 0 0 1.5rem;
  letter-spacing: -0.02em;
}

.hero__title--accent {
  font-style: italic;
  color: var(--color-gold);
}

.hero__subtitle {
  font-size: 1.25rem;
  line-height: 1.7;
  opacity: 0.8;
  margin-bottom: 2.5rem;
  max-width: 540px;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__visual {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 400px;
  height: 600px;
  opacity: 0.6;
  z-index: 1;
}

.hero__bottle {
  position: absolute;
  width: 100px;
  height: 400px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(180deg,
    var(--color-wine-dark) 0%,
    var(--color-wine) 20%,
    var(--color-burgundy) 100%
  );
  border-radius: 8px 8px 4px 4px;
  box-shadow: 0 0 60px rgba(114, 47, 55, 0.4);
}

.hero__bottle::before {
  content: '';
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 50px;
  background: var(--color-wine-dark);
  border-radius: 4px 4px 0 0;
}

.hero__rings {
  position: absolute;
  inset: 0;
}

.hero__ring {
  position: absolute;
  border: 1px solid rgba(201, 169, 98, 0.2);
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 4s ease-in-out infinite;
}

.hero__ring--1 {
  width: 200px;
  height: 200px;
  animation-delay: 0s;
}

.hero__ring--2 {
  width: 350px;
  height: 350px;
  animation-delay: 0.5s;
}

.hero__ring--3 {
  width: 500px;
  height: 500px;
  animation-delay: 1s;
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.3;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1.05);
  }
}

.hero__scroll {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  opacity: 0.5;
}

.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, var(--color-gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% {
    opacity: 0.3;
    transform: scaleY(0.5);
    transform-origin: top;
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

/* Section Styles */
.section-eyebrow {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--color-gold);
  margin-bottom: 1rem;
  font-weight: 500;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.2;
  margin: 0;
  letter-spacing: -0.01em;
}

/* Features Section */
.features {
  padding: 8rem 3rem;
  max-width: 1400px;
  margin: 0 auto;
}

.features__header {
  text-align: center;
  margin-bottom: 5rem;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-card {
  background: rgba(26, 21, 18, 0.6);
  border: 1px solid rgba(201, 169, 98, 0.1);
  padding: 2.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201, 169, 98, 0.05) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s;
}

.feature-card:hover {
  border-color: rgba(201, 169, 98, 0.3);
  transform: translateY(-4px);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card--large {
  grid-column: span 2;
}

.feature-card--wide {
  grid-column: span 3;
}

.feature-card__icon {
  width: 48px;
  height: 48px;
  color: var(--color-gold);
  margin-bottom: 1.5rem;
}

.feature-card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  margin: 0 0 1rem;
}

.feature-card__text {
  font-size: 1.1rem;
  line-height: 1.7;
  opacity: 0.8;
  margin: 0;
}

/* Showcase Section */
.showcase {
  padding: 8rem 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.showcase__text {
  font-size: 1.2rem;
  line-height: 1.8;
  opacity: 0.8;
  margin: 2rem 0;
}

.showcase__list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
}

.showcase__list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.showcase__check {
  color: var(--color-gold);
  font-size: 1.2rem;
}

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

.showcase__device {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 4/3;
  background: var(--color-charcoal);
  border-radius: 12px;
  border: 1px solid rgba(201, 169, 98, 0.2);
  padding: 1rem;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
}

.showcase__screen {
  width: 100%;
  height: 100%;
  background: var(--color-black);
  border-radius: 8px;
  overflow: hidden;
}

.showcase__ui {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.showcase__ui-header {
  display: flex;
  gap: 6px;
  padding: 12px;
  background: rgba(26, 21, 18, 0.8);
}

.showcase__ui-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(201, 169, 98, 0.4);
}

.showcase__ui-content {
  flex: 1;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.showcase__ui-card {
  background: linear-gradient(135deg, rgba(114, 47, 55, 0.3) 0%, rgba(74, 14, 14, 0.3) 100%);
  border: 1px solid rgba(201, 169, 98, 0.1);
  border-radius: 8px;
  height: 80px;
  animation: shimmer 3s ease-in-out infinite;
}

.showcase__ui-card--small {
  height: 50px;
}

@keyframes shimmer {
  0%, 100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}

/* Stories Section */
.stories {
  padding: 8rem 3rem;
  max-width: 1400px;
  margin: 0 auto;
}

.stories__header {
  text-align: center;
  margin-bottom: 3rem;
}

.stories__tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 4rem;
}

.stories__tab {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: transparent;
  border: 1px solid rgba(201, 169, 98, 0.2);
  color: var(--color-cream);
  font-family: var(--font-body);
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.stories__tab:hover {
  border-color: rgba(201, 169, 98, 0.5);
  background: rgba(201, 169, 98, 0.05);
}

.stories__tab--active {
  background: rgba(201, 169, 98, 0.15);
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.stories__tab-icon {
  font-size: 1.25rem;
}

.stories__content {
  min-height: 400px;
}

.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  animation: fadeIn 0.4s ease;
}

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

.story__narrative {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.story__step {
  display: flex;
  gap: 1.5rem;
  opacity: 0.5;
  transition: opacity 0.3s;
}

.story__step:hover,
.story__step--active {
  opacity: 1;
}

.story__step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--color-gold);
  flex-shrink: 0;
}

.story__step-content h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  margin: 0 0 0.5rem;
  color: var(--color-cream);
}

.story__step-content p {
  font-size: 1rem;
  line-height: 1.7;
  opacity: 0.8;
  margin: 0;
}

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

.story__phone {
  width: 280px;
  height: 500px;
  background: var(--color-charcoal);
  border-radius: 36px;
  padding: 12px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(201, 169, 98, 0.2);
}

.story__phone-screen {
  width: 100%;
  height: 100%;
  background: var(--color-black);
  border-radius: 28px;
  overflow: hidden;
  padding: 2rem 1.5rem;
}

.story__tablet {
  width: 400px;
  height: 300px;
  background: var(--color-charcoal);
  border-radius: 16px;
  padding: 12px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(201, 169, 98, 0.2);
}

.story__tablet-screen {
  width: 100%;
  height: 100%;
  background: var(--color-black);
  border-radius: 8px;
  overflow: hidden;
  padding: 1.5rem;
}

.story__dashboard {
  width: 450px;
  height: 280px;
  background: var(--color-charcoal);
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(201, 169, 98, 0.2);
}

.story__dashboard-screen {
  width: 100%;
  height: 100%;
  background: var(--color-black);
  border-radius: 6px;
  overflow: hidden;
  padding: 1.5rem;
}

.story__mock-journal {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.story__mock-entry {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background: rgba(26, 21, 18, 0.8);
  border-radius: 12px;
  border: 1px solid rgba(201, 169, 98, 0.1);
}

.story__mock-wine-color {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  flex-shrink: 0;
}

.story__mock-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.25rem;
}

.story__mock-name {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-cream);
}

.story__mock-rating {
  font-size: 0.85rem;
  color: var(--color-gold);
}

.story__mock-staff {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.story__mock-customer {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.story__mock-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-burgundy), var(--color-wine));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-cream);
}

.story__mock-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.story__mock-meta {
  font-size: 0.85rem;
  opacity: 0.6;
}

.story__mock-prefs {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.story__mock-pref-tag {
  padding: 0.5rem 1rem;
  background: rgba(201, 169, 98, 0.1);
  border: 1px solid rgba(201, 169, 98, 0.3);
  border-radius: 20px;
  font-size: 0.85rem;
  color: var(--color-gold);
}

.story__mock-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  height: 100%;
  align-content: center;
}

.story__mock-metric {
  text-align: center;
  padding: 1rem;
  background: rgba(26, 21, 18, 0.6);
  border-radius: 12px;
  border: 1px solid rgba(201, 169, 98, 0.1);
}

.story__mock-metric--highlight {
  background: rgba(201, 169, 98, 0.1);
  border-color: var(--color-gold);
}

.story__mock-metric-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--color-gold);
  margin-bottom: 0.25rem;
}

.story__mock-metric-label {
  font-size: 0.8rem;
  opacity: 0.7;
}

/* Pricing Section */
.pricing {
  padding: 8rem 3rem;
  background: linear-gradient(180deg, transparent 0%, rgba(26, 21, 18, 0.5) 50%, transparent 100%);
}

.pricing__header {
  text-align: center;
  margin-bottom: 5rem;
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-card {
  background: rgba(26, 21, 18, 0.6);
  border: 1px solid rgba(201, 169, 98, 0.1);
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.4s;
}

.pricing-card:hover {
  border-color: rgba(201, 169, 98, 0.3);
}

.pricing-card--featured {
  background: linear-gradient(180deg, rgba(114, 47, 55, 0.2) 0%, rgba(26, 21, 18, 0.8) 100%);
  border-color: var(--color-gold);
  transform: scale(1.05);
}

.pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-gold);
  color: var(--color-black);
  padding: 0.4rem 1.25rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.pricing-card__header {
  margin-bottom: 2rem;
}

.pricing-card__name {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 500;
  margin: 0 0 0.5rem;
}

.pricing-card__desc {
  opacity: 0.7;
  margin: 0;
  font-size: 1rem;
}

.pricing-card__price {
  margin-bottom: 2rem;
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.pricing-card__currency {
  font-size: 1.5rem;
  color: var(--color-gold);
}

.pricing-card__amount {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 500;
  line-height: 1;
}

.pricing-card__period {
  opacity: 0.6;
  font-size: 1rem;
}

.pricing-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  flex: 1;
}

.pricing-card__features li {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(201, 169, 98, 0.1);
  font-size: 1rem;
}

.pricing-card__features li::before {
  content: '\2713';
  color: var(--color-gold);
  margin-right: 0.75rem;
}

.pricing-card .btn {
  width: 100%;
  justify-content: center;
}

/* Simplified Pricing Layout */
.pricing__simple {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.pricing-card--centered {
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}

.pricing-card__icon-large {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  color: var(--color-gold);
}

.pricing-card__icon-large svg {
  width: 100%;
  height: 100%;
}

.pricing-card--centered .pricing-card__price {
  justify-content: center;
}

.pricing-card--centered .pricing-card__amount {
  color: var(--color-gold);
}

.pricing-card__features--centered {
  text-align: left;
  max-width: 280px;
  margin: 0 auto 2rem;
}

.pricing__venue-cta {
  background: rgba(26, 21, 18, 0.4);
  border: 1px solid rgba(201, 169, 98, 0.15);
  padding: 3rem;
  text-align: center;
}

.pricing__venue-content h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  margin: 0 0 1rem;
  color: var(--color-cream);
}

.pricing__venue-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  opacity: 0.8;
  margin: 0 0 1.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.pricing__venue-content .btn {
  display: inline-flex;
}

/* CTA Section */
.cta {
  padding: 10rem 3rem;
  text-align: center;
  position: relative;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(114, 47, 55, 0.15) 50%,
    transparent 100%
  );
}

.cta__grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.02;
  pointer-events: none;
}

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

.cta__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  margin: 0 0 1.5rem;
  line-height: 1.2;
}

.cta__text {
  font-size: 1.25rem;
  opacity: 0.8;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

/* Footer */
.footer {
  padding: 5rem 3rem 2rem;
  border-top: 1px solid rgba(201, 169, 98, 0.1);
}

.footer__container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--color-cream);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer__logo-icon {
  color: var(--color-gold);
  font-size: 0.8rem;
}

.footer__tagline {
  opacity: 0.6;
  font-size: 1rem;
  line-height: 1.6;
}

.footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer__column h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  margin: 0 0 1.5rem;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer__column a {
  display: block;
  color: var(--color-cream);
  text-decoration: none;
  opacity: 0.7;
  padding: 0.4rem 0;
  transition: opacity 0.3s;
  font-size: 1rem;
}

.footer__column a:hover {
  opacity: 1;
}

.footer__bottom {
  max-width: 1400px;
  margin: 4rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(201, 169, 98, 0.1);
  text-align: center;
  opacity: 0.5;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-card--large,
  .feature-card--wide {
    grid-column: span 2;
  }

  .showcase {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .pricing__grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

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

  .pricing__simple {
    max-width: 100%;
  }

  .pricing__venue-cta {
    padding: 2rem;
  }

  .hero__visual {
    display: none;
  }

  .story {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .story__visual {
    order: -1;
  }

  .story__phone {
    width: 240px;
    height: 420px;
  }

  .story__tablet {
    width: 350px;
    height: 260px;
  }

  .story__dashboard {
    width: 380px;
    height: 240px;
  }
}

@media (max-width: 768px) {
  .nav {
    padding: 1rem 1.5rem;
  }

  .nav__links a:not(.nav__cta) {
    display: none;
  }

  .hero {
    padding: 6rem 1.5rem 3rem;
  }

  .hero__actions {
    flex-direction: column;
  }

  .features,
  .showcase,
  .pricing,
  .cta {
    padding: 4rem 1.5rem;
  }

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

  .feature-card--large,
  .feature-card--wide {
    grid-column: span 1;
  }

  .stories {
    padding: 4rem 1.5rem;
  }

  .stories__tabs {
    flex-direction: column;
    gap: 0.75rem;
  }

  .stories__tab {
    width: 100%;
    justify-content: center;
  }

  .story__phone {
    width: 220px;
    height: 380px;
  }

  .story__tablet {
    width: 300px;
    height: 220px;
  }

  .story__dashboard {
    width: 100%;
    max-width: 320px;
    height: 200px;
  }

  .story__mock-metrics {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .story__step-number {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }

  .story__step-content h4 {
    font-size: 1.1rem;
  }

  .footer__container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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