/* Check-in.co.il - Premium Landing Page */

:root {
  --gold: #c9a961;
  --gold-light: #e5d4a1;
  --gold-dark: #a88d4a;
  --white: #ffffff;
  --cream: #fdf9f0;
  --charcoal: #2d2d2d;
  --navy: #1a2a3a;
  --gray-100: #f5f5f5;
  --gray-200: #e5e5e5;
  --gray-500: #737373;
  --gray-700: #404040;
  --font-main: "Heebo", sans-serif;
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
  --shadow-gold: 0 4px 20px rgba(201, 169, 97, 0.25);
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.6;
  color: var(--charcoal);
  background: var(--white);
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
a {
  text-decoration: none;
  color: inherit;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--radius-xl);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  transform: translateY(-2px);
}
.btn-secondary {
  background: var(--white);
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-secondary:hover {
  background: var(--gold);
  color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), #d4af37);
  color: var(--white);
}
.btn-large {
  padding: 18px 48px;
  font-size: 18px;
}
.btn-full {
  width: 100%;
}

.gold-text {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  border-bottom: 3px solid var(--gold);
}
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}
.logo-img {
  height: 45px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}
.nav {
  display: flex;
  gap: 40px;
}
.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--charcoal);
  position: relative;
  padding: 8px 0;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}
.nav-link.active {
  color: var(--gold);
}
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.mobile-menu-btn span {
  width: 28px;
  height: 2px;
  background: var(--charcoal);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(253, 249, 240, 0.92),
    rgba(255, 255, 255, 0.88),
    rgba(201, 169, 97, 0.1)
  );
}

/* Clean Video Mode - No Overlay */
.hero-video-clean {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video-clean .hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}

/* Frosted Glass Overlay */
.hero-frost-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
}

/* Quick Menu Bar */
.quick-menu {
  padding: 60px 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
}

.quick-menu-subtitle {
  text-align: center;
  font-size: 18px;
  color: var(--gray-500);
  margin-bottom: 40px;
}

.quick-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.quick-menu-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  text-align: center;
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
  position: relative;
  display: block;
  text-decoration: none;
  color: inherit;
}

.quick-menu-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.quick-menu-item.featured {
  background: linear-gradient(135deg, var(--cream), var(--white));
  border: 2px solid var(--gold);
  box-shadow: var(--shadow-gold);
}

.quick-menu-badge {
  position: absolute;
  top: -12px;
  right: 50%;
  transform: translateX(50%);
  background: var(--gold);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: var(--radius-xl);
}

.quick-menu-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quick-menu-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--gold);
}

.quick-menu-item h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--charcoal);
}

.quick-menu-item p {
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 16px;
  line-height: 1.7;
}

.quick-menu-link {
  color: var(--gold);
  font-weight: 600;
  font-size: 14px;
}

/* Video Slider */
.video-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.video-slider .hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.video-slider .hero-video.active {
  opacity: 1;
  z-index: 1;
}

/* Video Navigation Dots */
.video-nav {
  position: absolute;
  bottom: 120px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.video-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.video-dot:hover {
  background: var(--gold-light);
}

.video-dot.active {
  background: var(--gold);
  transform: scale(1.2);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 140px;
  padding-bottom: 80px;
  text-align: center;
}
.hero-title {
  font-size: clamp(40px, 7vw, 72px);
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--white);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
}
.hero-title-accent {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 400;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.3px;
}
.hero-description {
  font-size: 18px;
  color: var(--gray-500);
  margin-bottom: 40px;
}
.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 60px;
}
.btn-lg {
  padding: 18px 48px;
  font-size: 18px;
}
.hero .btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}
.hero .btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
  color: var(--white);
}
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  max-width: 700px;
  margin: 0 auto;
  padding-top: 0;
  border-top: none;
}
.stat-item {
  text-align: center;
}
.stat-number {
  display: block;
  font-size: 36px;
  font-weight: 800;
  color: var(--gold);
}
.stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}
.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll-indicator span {
  display: block;
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  position: relative;
}
.hero-scroll-indicator span::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  width: 4px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  transform: translateX(-50%);
  animation: scroll 2s infinite;
}
@keyframes scroll {
  0%,
  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  50% {
    opacity: 0.5;
    transform: translateX(-50%) translateY(12px);
  }
}

/* Section Header */
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}
.section-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  margin-bottom: 16px;
}
.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 20px auto 0;
  border-radius: 2px;
}
.section-subtitle {
  font-size: 18px;
  color: var(--gray-500);
}

/* Features */
.features {
  padding: 100px 0;
  background: var(--white);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  text-align: center;
  border: 1px solid var(--gray-200);
  transition: all 0.3s;
  position: relative;
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.feature-card.featured {
  background: linear-gradient(135deg, var(--cream), var(--white));
  border: 2px solid var(--gold);
  box-shadow: var(--shadow-gold);
}
.feature-badge {
  position: absolute;
  top: -12px;
  right: 50%;
  transform: translateX(50%);
  background: var(--gold);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: var(--radius-xl);
}
.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-icon svg {
  width: 36px;
  height: 36px;
  stroke: var(--gold);
}
.feature-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}
.feature-desc {
  font-size: 15px;
  color: var(--gray-500);
  margin-bottom: 20px;
  line-height: 1.7;
}
.feature-link {
  color: var(--gold);
  font-weight: 600;
  font-size: 14px;
}

/* How It Works - Interactive Tabs */
.how-it-works {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
}

/* Tabs */
.hiw-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
}

.hiw-tab {
  padding: 14px 32px;
  border: 2px solid var(--gold);
  background: var(--white);
  color: var(--charcoal);
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--radius-xl);
  cursor: pointer;
  transition: all 0.3s ease;
}

.hiw-tab:hover {
  background: var(--cream);
}

.hiw-tab.active {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  border-color: var(--gold-dark);
  box-shadow: var(--shadow-gold);
}

/* Panels */
.hiw-panel {
  display: none;
  animation: hiwFadeIn 0.4s ease;
}

.hiw-panel.active {
  display: block;
}

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

/* Features Grid (Tab 1) */
.hiw-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.hiw-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 2px solid var(--gray-200);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.hiw-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.hiw-card[data-color="blue"] {
  border-top: 4px solid #4a90d9;
}
.hiw-card[data-color="gold"] {
  border-top: 4px solid var(--gold);
}
.hiw-card[data-color="purple"] {
  border-top: 4px solid #8b5cf6;
}
.hiw-card[data-color="green"] {
  border-top: 4px solid #22c55e;
}

.hiw-card-icon {
  font-size: 40px;
  margin-bottom: 12px;
}

.hiw-card-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 20px;
}

.hiw-card-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hiw-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  background: var(--gray-100);
  border-radius: var(--radius-md);
  transition: all 0.2s ease;
}

.hiw-item:hover {
  background: var(--cream);
  transform: translateX(-4px);
}

.hiw-item-icon {
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.hiw-item strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--charcoal);
}

.hiw-item p {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.6;
  margin: 0;
}

/* Timeline (Tab 2) */
.hiw-timeline {
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
  padding-right: 40px;
}

.hiw-timeline::before {
  content: "";
  position: absolute;
  right: 24px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--gold), var(--gold-light));
  border-radius: 2px;
}

.hiw-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  position: relative;
}

.hiw-step-number {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  font-size: 22px;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold);
  position: relative;
  z-index: 1;
  margin-right: -40px;
}

.hiw-step-content {
  flex: 1;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 2px solid var(--gray-200);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.hiw-step-content:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-light);
}

.hiw-step-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--gold-dark);
  margin-bottom: 20px;
}

.hiw-step-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.hiw-mini-card {
  background: var(--gray-100);
  border-radius: var(--radius-md);
  padding: 16px;
  transition: all 0.2s ease;
}

.hiw-mini-card:hover {
  background: var(--cream);
  transform: translateY(-2px);
}

.hiw-mini-icon {
  font-size: 24px;
  display: block;
  margin-bottom: 8px;
}

.hiw-mini-card strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--charcoal);
}

.hiw-mini-card p {
  font-size: 12px;
  color: var(--gray-500);
  line-height: 1.5;
  margin: 0;
}

/* Mobile: How It Works */
@media (max-width: 768px) {
  .hiw-tabs {
    flex-direction: column;
    align-items: stretch;
  }

  .hiw-features-grid {
    grid-template-columns: 1fr;
  }

  .hiw-step-cards {
    grid-template-columns: 1fr;
  }

  .hiw-timeline {
    padding-right: 30px;
  }

  .hiw-timeline::before {
    right: 18px;
  }

  .hiw-step-number {
    margin-right: -30px;
    width: 40px;
    height: 40px;
    min-width: 40px;
    font-size: 18px;
  }
}

/* Pricing - Premium Glassmorphism */
.pricing {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
  position: relative;
}

.pricing-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  border: 2px solid var(--gold);
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(201, 169, 97, 0.2);
}

.pricing-card.featured {
  background: #ffffff;
  border: 3px solid var(--gold);
  box-shadow: 0 8px 30px rgba(201, 169, 97, 0.15);
}

.pricing-card.featured::before {
  display: none;
}

.pricing-card.featured:hover {
  transform: translateY(-5px);
}

.pricing-card.vip {
  background: #ffffff;
  color: var(--charcoal);
  border: 2px solid var(--gold);
}

.pricing-card.basic {
  background: #ffffff;
  border: 2px solid var(--gold);
}
.pricing-badge {
  position: absolute;
  top: -12px;
  right: 50%;
  transform: translateX(50%);
  background: var(--gold);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: var(--radius-xl);
  white-space: nowrap;
}
.pricing-header {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--gray-200);
}
.pricing-card.vip .pricing-header {
  border-bottom-color: var(--gray-200);
}
.pricing-name {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}
.pricing-price {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
}
.pricing-price .currency {
  font-size: 20px;
  font-weight: 600;
  margin-top: 8px;
}
.pricing-price .amount {
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
  color: var(--gold);
}
.pricing-card.vip .pricing-price .amount {
  color: var(--gold);
}
.pricing-features {
  list-style: none;
  text-align: right;
  margin-bottom: 30px;
}
.pricing-features li {
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.pricing-card.vip .pricing-features li {
  border-bottom-color: var(--gray-100);
  color: var(--charcoal);
}
.pricing-features .check {
  color: var(--gold);
  font-weight: bold;
}
.pricing-features .x {
  color: #ccc;
}
.pricing-features li.disabled {
  color: #aaa;
}

/* Testimonials */
.testimonials {
  padding: 100px 0;
  background: var(--white);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-md);
  transition: all 0.3s;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.stars {
  color: var(--gold);
  font-size: 18px;
  margin-bottom: 16px;
}
.testimonial-text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--gray-700);
  margin-bottom: 20px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.author-info {
  display: flex;
  flex-direction: column;
}
.author-name {
  font-weight: 600;
  font-size: 15px;
}
.author-event {
  font-size: 13px;
  color: var(--gray-500);
}

/* Bots Showcase */
.bots-showcase {
  padding: 100px 0;
  background: var(--white);
  border: 3px solid var(--gold);
  border-radius: 16px;
  margin: 40px auto;
  max-width: 1200px;
}
.bots-showcase .section-header {
  text-align: center;
  margin-bottom: 40px;
}
.bots-tagline {
  font-size: 16px;
  color: var(--gray-600);
  margin-bottom: 24px;
}
.bots-showcase .btn-primary {
  background: var(--gold);
  color: var(--white);
}
.bots-cta {
  text-align: center;
  margin-top: 40px;
  padding-top: 30px;
}
.bots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}
.bot-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.bot-card:hover {
  transform: translateY(-5px);
}
.bot-card.active .bot-description {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-color: var(--gold-dark);
  box-shadow: 0 8px 24px rgba(184, 157, 107, 0.3);
}
.bot-card.active .bot-description h3 {
  color: var(--white);
}
.bot-card.active .bot-description p {
  color: rgba(255, 255, 255, 0.9);
}
.bot-avatar {
  width: 200px;
  height: 200px;
  margin-bottom: 20px;
}
.bot-avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.bot-description {
  background: var(--white);
  border: 2px solid var(--gold);
  border-radius: 16px;
  padding: 24px;
  width: 100%;
  min-height: 120px;
  transition: all 0.3s ease;
}
.bot-description h3 {
  font-size: 20px;
  color: var(--gold);
  margin-bottom: 12px;
  transition: color 0.3s ease;
}
.bot-description p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
  transition: color 0.3s ease;
}

/* CTA - Legacy kept for compatibility */
.cta {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  text-align: center;
}
.cta-title {
  font-size: clamp(32px, 4vw, 48px);
  color: var(--white);
  margin-bottom: 16px;
}
.cta-text {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
}
.cta .btn-primary {
  background: var(--white);
  color: var(--gold);
}

/* Contact */
.contact {
  padding: 100px 0;
  background: var(--white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  background: var(--white);
  border: 3px solid var(--gold);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 8px 30px rgba(201, 169, 97, 0.2);
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--gray-100);
}
.contact-header {
  text-align: right;
  margin-bottom: 20px;
}
.contact-header .section-title {
  margin-bottom: 8px;
}
.contact-header .section-subtitle {
  margin-bottom: 0;
}
.contact-icon {
  font-size: 28px;
}
.contact-details {
  display: flex;
  flex-direction: column;
}
.contact-label {
  font-size: 13px;
  color: var(--gray-500);
  margin-bottom: 4px;
}
.contact-details a {
  font-size: 18px;
  font-weight: 600;
  color: var(--charcoal);
}
.contact-details a:hover {
  color: var(--gold);
}
.social-links {
  display: flex;
  gap: 16px;
  margin-top: 30px;
}
.social-link {
  width: 48px;
  height: 48px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.social-link svg {
  width: 22px;
  height: 22px;
  fill: var(--gold);
}
.social-link:hover {
  background: var(--gold);
}
.social-link:hover svg {
  fill: var(--white);
}
.contact-form {
  background: var(--cream);
  padding: 40px;
  border-radius: var(--radius-lg);
}
.form-group {
  margin-bottom: 20px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 16px 20px;
  font-family: var(--font-main);
  font-size: 15px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  background: var(--white);
  transition: all 0.2s;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.1);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Footer - Premium 5-Column Design */
.footer {
  background: var(--white);
  color: var(--charcoal);
  padding: 60px 0 20px;
  border-top: 4px solid #5a9aa8;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 40px;
  align-items: start;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo {
  height: 60px;
  margin-bottom: 12px;
  filter: none;
}

.footer-tagline {
  font-size: 14px;
  color: var(--gold);
  font-weight: 500;
}

/* Footer Bot Section */
.footer-bot {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-bot-logo {
  height: 80px;
  margin-bottom: 12px;
}

.footer-bot-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
}

.footer-bot-desc {
  font-size: 13px;
  color: var(--charcoal);
  line-height: 1.5;
  max-width: 200px;
}

/* Gold Social Buttons */
.footer-social-gold {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.gold-social-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(145deg, #d4a84b, #b8860b);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow:
    0 4px 12px rgba(201, 169, 97, 0.4),
    inset 0 2px 4px rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

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

.gold-social-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow:
    0 8px 20px rgba(201, 169, 97, 0.5),
    inset 0 2px 4px rgba(255, 255, 255, 0.4);
  background: linear-gradient(145deg, #e6be5a, #c9a961);
}

/* Image Banner Sections */
.image-banner {
  width: 100%;
  padding: 40px 0;
  background: var(--white);
}

.image-banner .banner-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.banner-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  border: 3px solid var(--gold);
  box-shadow: 0 8px 30px rgba(201, 169, 97, 0.2);
}

.banner-overlay {
  display: none;
}

/* Moment Section */
.moment-section {
  padding: 80px 0;
  background: var(--white);
}

.moment-content {
  display: flex;
  gap: 60px;
  align-items: center;
  background: #ffffff;
  border: 2px solid var(--gold);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.moment-gallery {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gallery-main img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.gallery-grid img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
}

.moment-text {
  flex: 1;
  text-align: right;
}

.moment-title {
  font-size: 42px;
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.moment-title .gold-check {
  color: var(--gold);
}

.moment-subtitle {
  font-size: 18px;
  color: var(--gold);
  margin-bottom: 20px;
}

.moment-desc {
  font-size: 16px;
  color: var(--charcoal);
  line-height: 1.7;
  margin-bottom: 24px;
}

.moment-features {
  list-style: none;
}

.moment-features li {
  padding: 8px 0;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.moment-features .check {
  color: var(--gold);
  font-weight: bold;
}

@media (max-width: 768px) {
  /* Moment section */
  .moment-content {
    flex-direction: column;
    padding: 24px;
    gap: 30px;
  }

  .moment-title {
    font-size: 28px;
    text-align: center;
  }

  .moment-text {
    text-align: center;
  }

  .moment-features li {
    justify-content: center;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .gallery-grid img {
    height: 70px;
  }

  /* Footer mobile */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer-column {
    text-align: center;
  }

  .footer-contact-item {
    justify-content: center;
  }

  .footer-social {
    justify-content: center;
  }

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

.footer-column h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--gold);
}

.footer-column a {
  display: block;
  font-size: 14px;
  color: var(--charcoal);
  padding: 6px 0;
  transition: color 0.2s ease;
}

.footer-column a:hover {
  color: var(--gold);
}

.footer-highlight {
  font-weight: 700;
  color: var(--gold) !important;
}

/* Contact Column */
.footer-contact-col .footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  font-size: 14px;
  color: var(--charcoal);
}

.footer-contact-col .footer-contact-item:hover {
  color: var(--gold);
}

.footer-contact-icon {
  font-size: 16px;
}

/* Social Buttons */
.footer-social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-btn svg {
  width: 20px;
  height: 20px;
  fill: white;
}

.social-btn.facebook {
  background: #1877f2;
}

.social-btn.instagram {
  background: linear-gradient(
    45deg,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    #bc1888
  );
}

.social-btn.whatsapp {
  background: #25d366;
}

.social-btn:hover {
  transform: scale(1.15);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.social-cta {
  font-size: 12px;
  color: var(--gold);
  font-weight: 500;
  margin-top: 4px;
  width: 100%;
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  padding-top: 20px;
}

.footer-line {
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    #5a9aa8 20%,
    #5a9aa8 80%,
    transparent
  );
  margin-bottom: 16px;
}

.footer-bottom p {
  font-size: 16px;
  font-weight: 700;
  color: var(--gold);
}

/* Responsive */
@media (max-width: 1024px) {
  .features-grid,
  .pricing-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-card.featured {
    transform: scale(1);
  }
  .footer-content {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
  .footer-brand {
    grid-column: 1 / -1;
    align-items: center;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .nav {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    box-shadow: var(--shadow-md);
  }
  .nav.active {
    display: flex;
  }
  .nav-link {
    padding: 16px 0;
    border-bottom: 1px solid var(--gray-100);
  }
  .mobile-menu-btn {
    display: flex;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  .hero-stats {
    flex-direction: column;
    gap: 30px;
  }
  .features-grid,
  .pricing-grid,
  .testimonials-grid,
  .quick-menu-grid {
    grid-template-columns: 1fr;
  }
  .steps-container {
    flex-direction: column;
  }
  .step-connector {
    width: 2px;
    height: 40px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .footer-brand {
    grid-column: 1 / -1;
    align-items: center;
    text-align: center;
  }
  .footer-social {
    justify-content: center;
  }
}

/* ========== 2026 Design Enhancements ========== */

/* Glassmorphism Cards */
.feature-card,
.pricing-card,
.testimonial-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.feature-card.featured,
.pricing-card.featured {
  background: rgba(253, 249, 240, 0.9);
  border: 2px solid var(--gold);
  box-shadow: 0 8px 32px rgba(201, 169, 97, 0.3);
}

/* Kinetic Typography */
.hero-title .gold-text {
  display: inline-block;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* Enhanced Button Animations */
.btn {
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

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

/* Pricing Highlight for AI Features */
.pricing-features li.highlight {
  background: linear-gradient(
    135deg,
    rgba(201, 169, 97, 0.15),
    rgba(201, 169, 97, 0.05)
  );
  border-radius: 8px;
  padding: 12px 10px;
  margin: 8px -10px;
  font-weight: 600;
  color: var(--gold-dark);
}

.pricing-card.vip .pricing-features li.highlight {
  background: linear-gradient(
    135deg,
    rgba(201, 169, 97, 0.3),
    rgba(201, 169, 97, 0.1)
  );
  color: var(--gold-light);
}

/* Card Hover Effects */
.feature-card,
.pricing-card,
.testimonial-card {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover,
.testimonial-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  z-index: 999;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.15);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
  width: 34px;
  height: 34px;
  fill: white;
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  }
  50% {
    box-shadow: 0 6px 32px rgba(37, 211, 102, 0.7);
  }
}

/* Stats Cards Enhancement */
.hero .stat-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 20px 30px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Section Fade-in Animation */
.section-header,
.feature-card,
.pricing-card,
.testimonial-card,
.step {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s ease forwards;
}

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

.feature-card:nth-child(1) {
  animation-delay: 0.1s;
}
.feature-card:nth-child(2) {
  animation-delay: 0.2s;
}
.feature-card:nth-child(3) {
  animation-delay: 0.3s;
}

.pricing-card:nth-child(1) {
  animation-delay: 0.1s;
}
.pricing-card:nth-child(2) {
  animation-delay: 0.2s;
}
.pricing-card:nth-child(3) {
  animation-delay: 0.3s;
}

/* ── From Chaos to Strategy ── */
.chaos-to-strategy {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
}

.strategy-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: stretch;
}

.strategy-column {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 2px solid var(--gray-200);
  transition: all 0.3s ease;
}

.strategy-before {
  border-color: #e74c3c33;
}

.strategy-after {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.strategy-column-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--gray-200);
}

.strategy-before .strategy-column-header {
  border-bottom-color: #e74c3c33;
}

.strategy-after .strategy-column-header {
  border-bottom-color: var(--gold);
}

.strategy-icon {
  font-size: 28px;
}

.strategy-column-header h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--charcoal);
}

.strategy-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.strategy-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px;
  background: var(--gray-100);
  border-radius: var(--radius-md);
  transition: all 0.2s ease;
}

.strategy-item:hover {
  background: var(--cream);
  transform: translateX(-4px);
}

.strategy-item-icon {
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}

.strategy-item strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--charcoal);
}

.strategy-item p {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.6;
  margin: 0;
}

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

.strategy-tagline {
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  color: var(--gray-700);
  margin-top: 48px;
  font-style: italic;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

/* Strategy Advantages (moved from How It Works features tab) */
.strategy-advantages {
  margin-top: 60px;
  padding-top: 48px;
  border-top: 1px solid var(--gray-200);
}
.strategy-advantages-title {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 40px;
}
.strategy-advantages-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 12px auto 0;
  border-radius: 2px;
}

/* ── Trust Architecture ── */
.trust-architecture {
  padding: 80px 0;
  background: var(--navy);
}

.trust-architecture .section-title {
  color: var(--white);
}

.trust-architecture .section-title::after {
  background: var(--gold);
}

.trust-architecture .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.trust-pipeline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.trust-step {
  text-align: center;
  padding: 24px 20px;
}

.trust-step-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(201, 169, 97, 0.15);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 12px;
  transition: all 0.3s ease;
}

.trust-step:hover .trust-step-icon {
  background: rgba(201, 169, 97, 0.3);
  transform: scale(1.1);
}

.trust-step-label {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  white-space: nowrap;
}

.trust-connector {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  flex-shrink: 0;
}

/* ── Strategy CTA ── */
.strategy-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--navy) 0%, #0d1b2a 100%);
  position: relative;
  overflow: hidden;
}

.strategy-cta::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(201, 169, 97, 0.08),
    transparent 70%
  );
  pointer-events: none;
}

.strategy-cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.strategy-cta-diamond {
  font-size: 48px;
  color: var(--gold);
  margin-bottom: 24px;
  opacity: 0.6;
}

.strategy-cta h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.strategy-cta p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 40px;
}

.strategy-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 48px;
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

.strategy-cta-tagline {
  font-size: 16px !important;
  color: rgba(255, 255, 255, 0.4) !important;
  margin-bottom: 0 !important;
  letter-spacing: 1px;
}

/* ── Mobile: New Sections ── */
@media (max-width: 768px) {
  .hero-content {
    padding-top: 120px;
    padding-bottom: 60px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

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

  .strategy-arrow {
    transform: rotate(90deg);
  }

  .trust-pipeline {
    flex-direction: column;
    gap: 8px;
  }

  .trust-connector {
    width: 2px;
    height: 32px;
    background: linear-gradient(180deg, transparent, var(--gold), transparent);
  }

  .strategy-cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
}

/* ── Accessibility ── */

/* Skip-to-content link */
.skip-to-content {
  position: absolute;
  top: -100%;
  right: 0;
  background: var(--gold);
  color: var(--white);
  padding: 12px 24px;
  font-weight: 600;
  z-index: 9999;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  transition: top 0.2s;
}
.skip-to-content:focus {
  top: 0;
}

/* Keyboard focus ring — visible only via keyboard (not click) */
*:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Remove outline for mouse users */
*:focus:not(:focus-visible) {
  outline: none;
}
