/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #c0a060;
  --gold-light: #d4b87a;
  --dark: #0d0d1a;
  --dark-mid: #1a1a2e;
  --dark-card: #16213e;
  --dark-deep: #0f3460;
  --white: #ffffff;
  --grey: #aaaaaa;
  --grey-light: #f5f5f5;
  --green: #4caf50;
  --red: #e53935;
  --font: 'Inter', sans-serif;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.18);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--white);
  color: #1a1a2e;
  line-height: 1.6;
  font-size: 16px;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4, h5 { line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(2rem, 4vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }

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

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

ul { list-style: none; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); }

.btn-outline {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
}
.btn-outline:hover { background: var(--dark); color: var(--white); }

.btn-lg { padding: 15px 32px; font-size: 1rem; }
.btn-full { width: 100%; }

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
  background: var(--dark-mid);
  color: var(--gold);
  text-align: center;
  padding: 10px 16px;
  font-size: 0.88rem;
  font-weight: 500;
}
.announcement-bar a {
  color: var(--white);
  text-decoration: underline;
  margin-left: 8px;
}

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid #e8e8e8;
  padding: 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  height: 68px;
  gap: 24px;
}
.logo { font-size: 1.5rem; font-weight: 800; }
.logo-silver { color: var(--dark-mid); }
.logo-bytes { color: var(--gold); }

.nav-links {
  display: flex;
  gap: 28px;
  margin-left: 20px;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: #444;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }

.nav-actions { display: flex; gap: 10px; margin-left: auto; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark-mid);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-mid) 60%, #0f3460 100%);
  color: var(--white);
  padding: 80px 0 60px;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-text h1 { color: var(--white); margin-bottom: 20px; }
.hero-text p { font-size: 1.1rem; color: #ccccdd; margin-bottom: 32px; max-width: 480px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-cta .btn-outline { color: var(--white); border-color: var(--white); }
.hero-cta .btn-outline:hover { background: var(--white); color: var(--dark); }

.hero-image { position: relative; }
.hero-img-placeholder svg { border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 100%; }

/* ===== TRUSTED ===== */
.trusted {
  background: var(--grey-light);
  padding: 36px 0;
  border-bottom: 1px solid #e8e8e8;
}
.trusted-label {
  text-align: center;
  font-size: 0.85rem;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-bottom: 20px;
}
.logo-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
}
.logo-badge {
  background: var(--white);
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #555;
  white-space: nowrap;
}

/* ===== FEATURES ===== */
.features {
  padding: 90px 0;
  background: var(--white);
}
.features h2 {
  text-align: center;
  margin-bottom: 48px;
  color: var(--dark-mid);
}
.features-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.feature-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 50px;
  border: 2px solid #e0e0e0;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  color: #555;
  transition: all 0.2s;
  background: var(--white);
}
.feature-tab img { width: 18px; height: 18px; }
.feature-tab:hover { border-color: var(--gold); color: var(--dark-mid); }
.feature-tab.active {
  background: var(--dark-mid);
  border-color: var(--dark-mid);
  color: var(--gold);
}

.features-panel { position: relative; min-height: 320px; }
.feature-content {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.feature-content.active { display: grid; }

.feature-text h3 { color: var(--dark-mid); margin-bottom: 16px; }
.feature-text p { color: #555; margin-bottom: 20px; line-height: 1.8; }
.feature-text ul li {
  padding: 6px 0 6px 24px;
  position: relative;
  color: #444;
  font-size: 0.95rem;
}
.feature-text ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: var(--gold);
  border-radius: 50%;
}

.feature-mockup {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  padding: 8px;
}
.feature-mockup svg { width: 100%; height: auto; display: block; }

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: var(--grey-light);
  padding: 90px 0;
}
.testimonials h2 {
  text-align: center;
  margin-bottom: 48px;
  color: var(--dark-mid);
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-top: 4px solid var(--gold);
}
.t-restaurant-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.t-type {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--grey);
}
.t-location { font-size: 0.85rem; color: #666; }

blockquote {
  font-size: 1rem;
  color: #333;
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}
blockquote::before { content: '\201C'; color: var(--gold); font-size: 2rem; line-height: 0; vertical-align: -0.5rem; margin-right: 4px; }

.t-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid #f0f0f0;
  padding-top: 16px;
}
.t-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--dark-mid);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.t-author strong { display: block; font-size: 0.9rem; color: var(--dark-mid); }
.t-author span { font-size: 0.8rem; color: var(--grey); }

/* ===== STATS ===== */
.stats {
  background: var(--dark-mid);
  color: var(--white);
  padding: 64px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-item h3 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--gold);
  margin-bottom: 8px;
}
.stat-item p { font-size: 0.9rem; color: #ccc; max-width: 160px; margin: 0 auto; }

/* ===== WHY SILVERBYTES ===== */
.why {
  padding: 90px 0;
  background: var(--white);
}
.why h2 {
  text-align: center;
  margin-bottom: 48px;
  color: var(--dark-mid);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.why-card {
  background: var(--grey-light);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.why-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.why-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
}
.why-icon svg { width: 48px; height: 48px; }
.why-card h4 {
  font-size: 1rem;
  color: var(--dark-mid);
  margin-bottom: 10px;
}
.why-card p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.7;
}

/* ===== PRICING ===== */
.pricing {
  background: var(--grey-light);
  padding: 90px 0;
}
.pricing h2 {
  text-align: center;
  color: var(--dark-mid);
  margin-bottom: 12px;
}
.section-sub {
  text-align: center;
  color: var(--grey);
  font-size: 1rem;
  margin-bottom: 48px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.pricing-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 2px solid transparent;
  transition: border-color 0.2s;
}
.pricing-card:hover { border-color: var(--gold); }
.pricing-featured {
  border-color: var(--gold);
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}
.pricing-badge {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--grey);
}
.pricing-best {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 50px;
  white-space: nowrap;
}
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.price-amount {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--dark-mid);
}
.price-period {
  font-size: 0.9rem;
  color: var(--grey);
  font-weight: 500;
}
.pricing-desc {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.6;
}
.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  padding-bottom: 8px;
}
.pricing-features li {
  font-size: 0.9rem;
  color: #444;
  padding-left: 22px;
  position: relative;
}
.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

/* ===== INTEGRATIONS ===== */
.integrations {
  padding: 90px 0;
  background: var(--white);
  text-align: center;
}
.integrations h2 { color: var(--dark-mid); margin-bottom: 12px; }
.integrations-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 36px;
}
.integration-badge {
  background: var(--grey-light);
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 14px 24px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #444;
  transition: all 0.2s;
}
.integration-badge:hover {
  background: var(--dark-mid);
  color: var(--gold);
  border-color: var(--dark-mid);
}

/* ===== CONTACT ===== */
.contact {
  background: var(--dark-mid);
  padding: 90px 0;
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.contact-text h2 {
  color: var(--white);
  margin-bottom: 16px;
}
.contact-text > p {
  color: #bbb;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 24px;
}
.contact-perks {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.contact-perks li {
  color: #ccc;
  font-size: 0.9rem;
  padding-left: 24px;
  position: relative;
}
.contact-perks li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}
.contact-direct p { color: #aaa; font-size: 0.85rem; margin-bottom: 8px; }
.contact-phone {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 6px;
}
.contact-email {
  font-size: 0.9rem;
  color: #bbb;
  text-decoration: underline;
}

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 36px;
  box-shadow: var(--shadow-lg);
}
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark-mid);
}
.form-group label span { color: var(--red); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 14px;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  font-family: var(--font);
  font-size: 0.9rem;
  color: var(--dark-mid);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; }
.form-disclaimer {
  font-size: 0.78rem;
  color: var(--grey);
  text-align: center;
  line-height: 1.5;
}
.form-disclaimer a { color: var(--gold); text-decoration: underline; }

.form-success {
  text-align: center;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.form-success h3 { color: var(--dark-mid); font-size: 1.4rem; }
.form-success p { color: #555; font-size: 0.95rem; }

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  color: #ccc;
  padding: 60px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-brand .logo { margin-bottom: 14px; display: inline-block; }
.footer-brand p {
  font-size: 0.88rem;
  color: #888;
  line-height: 1.7;
  max-width: 260px;
  margin-bottom: 20px;
}
.footer-social {
  display: flex;
  gap: 14px;
}
.footer-social a {
  color: #888;
  transition: color 0.2s;
}
.footer-social a:hover { color: var(--gold); }

.footer-col h5 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: #888;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid #222;
  padding: 20px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: #555;
}
.footer-bottom a { color: #888; }
.footer-bottom a:hover { color: var(--gold); }

/* ===== ONLINE RESERVATIONS ===== */
.reservations {
  padding: 90px 0;
  background: var(--dark-mid);
}
.reservations-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.reservations-text h2 {
  color: var(--white);
  margin-bottom: 16px;
}
.reservations-text > p {
  color: #bbb;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 28px;
}
.res-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.res-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #ccc;
  font-size: 0.92rem;
  line-height: 1.6;
}
.res-features li svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Mockup card */
.reservations-mockup { position: relative; }
.res-card {
  background: var(--white);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  position: relative;
  z-index: 1;
}
.res-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f0f0f0;
}
.res-card-logo {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, #1a1a2e, #0f3460);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.res-card-logo svg { width: 20px; height: 20px; stroke: var(--gold); }
.res-card-title { font-weight: 800; font-size: 0.95rem; color: var(--dark-mid); margin: 0; }
.res-card-sub { font-size: 0.78rem; color: #888; margin: 2px 0 0; }

.res-step-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #aaa;
  margin-bottom: 10px;
}
.res-date-row {
  display: flex;
  gap: 8px;
  margin-bottom: 4px;
  overflow-x: auto;
  padding-bottom: 2px;
}
.res-date-chip {
  flex-shrink: 0;
  background: #f5f5f5;
  border: 1.5px solid #e8e8e8;
  border-radius: 10px;
  padding: 8px 12px;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: #666;
  cursor: pointer;
  transition: all 0.15s;
}
.res-date-chip span { display: block; font-size: 0.85rem; font-weight: 800; color: #333; margin-top: 2px; }
.res-date-chip.active {
  background: var(--dark-mid);
  border-color: var(--dark-mid);
  color: var(--gold);
}
.res-date-chip.active span { color: var(--white); }

.res-time-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-bottom: 16px;
}
.res-time {
  padding: 8px 4px;
  border-radius: 8px;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  border: 1.5px solid #e8e8e8;
  color: #555;
  background: #fafafa;
  cursor: pointer;
  transition: all 0.15s;
}
.res-time.taken {
  background: #f5f5f5;
  color: #ccc;
  text-decoration: line-through;
  cursor: not-allowed;
  border-color: #eee;
}
.res-time.selected {
  background: linear-gradient(135deg, #c0a060, #d4b87a);
  color: var(--dark);
  border-color: var(--gold);
  box-shadow: 0 4px 10px rgba(192,160,96,0.35);
}
.res-party-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #555;
  margin-bottom: 16px;
  padding: 10px 14px;
  background: #f9f9f9;
  border-radius: 10px;
  border: 1px solid #eee;
}
.res-party-row svg { width: 18px; height: 18px; stroke: var(--gold); flex-shrink: 0; }
.res-card-btn {
  background: linear-gradient(135deg, #1a1a2e, #0f3460);
  color: var(--gold);
  text-align: center;
  padding: 13px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 0.9rem;
  cursor: pointer;
}

/* Floating badge */
.res-confirm-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--green);
  color: var(--white);
  border-radius: 999px;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(76,175,80,0.4);
  z-index: 2;
  animation: badge-float 3s ease-in-out infinite;
}
.res-confirm-badge svg { width: 16px; height: 16px; flex-shrink: 0; }
@keyframes badge-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

@media (max-width: 1024px) {
  .reservations-inner { grid-template-columns: 1fr; gap: 48px; }
  .reservations-mockup { max-width: 440px; margin: 0 auto; }
}
@media (max-width: 480px) {
  .res-confirm-badge { bottom: -12px; right: 8px; font-size: 0.75rem; padding: 8px 14px; }
  .res-time-grid { grid-template-columns: repeat(4, 1fr); gap: 4px; }
  .res-time { font-size: 0.72rem; padding: 7px 2px; }
}

/* ===== SCROLL-TO-TOP & MOBILE STICKY CTA ===== */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--dark);
  padding: 12px 16px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.25);
  gap: 10px;
}
.mobile-sticky-cta .btn { flex: 1; font-size: 0.9rem; padding: 13px 12px; border-radius: 10px; }
.mobile-sticky-cta .btn-outline { color: var(--gold); border-color: var(--gold); }
.mobile-sticky-cta .btn-outline:hover { background: var(--gold); color: var(--dark); }

@media (max-width: 768px) {
  .mobile-sticky-cta { display: flex; }
  /* Give footer breathing room above sticky CTA */
  .footer { padding-bottom: 80px; }
  body { padding-bottom: 0; }
}

/* ===== HERO IMPROVEMENTS ===== */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(192,160,96,0.12);
  border: 1px solid rgba(192,160,96,0.3);
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}
.hero-badge span { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); display: inline-block; }

/* ===== SECTION HEADING IMPROVEMENTS ===== */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 12px;
}

/* ===== CARD POLISH ===== */
.why-card {
  border: 1px solid #eaeaea;
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.why-card:hover::before { transform: scaleX(1); }

.integration-badge {
  cursor: default;
  font-size: 0.88rem;
}

/* ===== SCROLL-TRIGGERED VISIBILITY ===== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ===== ANNOUNCEMENT BAR CLOSE ===== */
.announcement-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
}
.announcement-close {
  position: absolute;
  right: 16px;
  background: none;
  border: none;
  color: rgba(192,160,96,0.6);
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
  padding: 0 4px;
  top: 50%;
  transform: translateY(-50%);
}
.announcement-close:hover { color: var(--gold); }

/* ===== BUTTON ENHANCEMENTS ===== */
.btn {
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  box-shadow: 0 4px 14px rgba(192,160,96,0.35);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  box-shadow: 0 6px 20px rgba(192,160,96,0.45);
  transform: translateY(-1px);
}
.btn-primary:active { transform: translateY(0) scale(0.98); }
.btn-outline:hover { transform: translateY(-1px); }

/* ===== SCROLL-TO-TOP BUTTON ===== */
.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 199;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--dark);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s, transform 0.3s;
  font-size: 1.1rem;
  font-weight: 800;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--gold-light); transform: translateY(-2px); }
@media (max-width: 768px) { .scroll-top { bottom: 80px; right: 16px; } }

.nav-links .mobile-ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid #eee;
}
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-text p { max-width: 100%; }
  .hero-cta { justify-content: center; }
  .hero-image { max-width: 560px; margin: 0 auto; }
  .feature-content.active { grid-template-columns: 1fr; gap: 32px; }
  .testimonial-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .pricing-featured { transform: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  /* Nav */
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px 24px 28px;
    border-bottom: 1px solid #e8e8e8;
    gap: 16px;
    z-index: 99;
    box-shadow: 0 8px 24px rgba(0,0,0,0.10);
  }
  /* Show CTA buttons inside mobile menu */
  .nav-links.open .mobile-ctas {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 8px;
    padding-top: 16px;
    border-top: 1px solid #eee;
  }
  .nav-links.open .mobile-ctas .btn {
    width: 100%;
    justify-content: center;
    font-size: 0.95rem;
    padding: 12px 20px;
  }

  /* Hero */
  .hero { padding: 56px 0 44px; }
  .hero-inner { gap: 32px; }
  .hero-text h1 { font-size: clamp(1.7rem, 6vw, 2.4rem); }
  .hero-text p { font-size: 1rem; }

  /* Sections */
  .features, .testimonials, .why, .pricing, .integrations, .contact { padding: 64px 0; }

  .testimonial-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-bottom .container { flex-direction: column; gap: 6px; }

  /* Pricing */
  .pricing-grid { padding: 0 8px; }
  .pricing-card { padding: 28px 22px; }

  /* Features tabs — 2 col on mobile */
  .features-tabs { grid-template-columns: 1fr 1fr; display: grid; gap: 8px; }
  .feature-tab { padding: 10px 14px; font-size: 0.82rem; border-radius: 10px; }
}

@media (max-width: 480px) {
  /* Nav */
  .nav-inner { padding: 0 16px; }

  /* Containers */
  .container { padding: 0 16px; }

  /* Hero */
  .hero { padding: 44px 0 36px; }
  .hero-cta { flex-direction: column; gap: 10px; }
  .hero-cta .btn { width: 100%; text-align: center; justify-content: center; }

  /* Stats */
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .stat-item h3 { font-size: 1.8rem; }

  /* Features tabs — single column */
  .features-tabs { grid-template-columns: 1fr; }
  .feature-tab { justify-content: center; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }

  /* Announcement bar */
  .announcement-bar { font-size: 0.78rem; padding: 8px 12px; }

  /* Contact */
  .contact-phone { font-size: 1.3rem; }

  /* Testimonials */
  .testimonial-card { padding: 24px 20px; }
  blockquote { font-size: 0.95rem; }
}
