/* ==========================================================================
   LYNKS MOBILE GOLF — Design System & Shared Styles
   ========================================================================== */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* --- CSS Variables --- */
:root {
  /* Brand Colors */
  --green: #1e3d32;
  --green-light: #2a5545;
  --green-dark: #152b24;
  --gold: #d6a756;
  --gold-light: #e4c07a;
  --gold-dark: #b8893e;
  --white: #ffffff;
  --black: #000000;
  --off-white: #f5f2ed;
  --warm-gray: #e8e4de;
  --text-dark: #1a1a1a;
  --text-medium: #4a4a4a;
  --text-light: #7a7a7a;
  --overlay-dark: rgba(30, 61, 50, 0.85);
  --overlay-black: rgba(0, 0, 0, 0.5);

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  /* Layout */
  --max-width: 1200px;
  --max-width-narrow: 900px;
  --border-radius: 6px;
  --border-radius-lg: 12px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  --transition-glacial: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--green);
  font-weight: 600;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; font-family: var(--font-body); font-weight: 600; }

p {
  font-size: 1.05rem;
  color: var(--text-medium);
  max-width: 680px;
}

.text-center p { margin-left: auto; margin-right: auto; }

/* --- Utility --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container--narrow {
  max-width: var(--max-width-narrow);
}

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

.section {
  padding: var(--space-2xl) 0;
}

.section--green {
  background: var(--green);
  color: var(--white);
}
.section--green h2,
.section--green h3,
.section--green h4 { color: var(--white); }
.section--green p { color: rgba(255,255,255,0.85); }

.section--offwhite {
  background: var(--off-white);
}

.section--dark {
  background: var(--green-dark);
  color: var(--white);
}
.section--dark h2,
.section--dark h3 { color: var(--white); }
.section--dark p { color: rgba(255,255,255,0.85); }

.section-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-sm);
  display: block;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-top: var(--space-sm);
  max-width: 600px;
}
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border-radius: var(--border-radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: none;
  transition: all var(--transition-base);
  white-space: nowrap;
}

.btn--gold {
  background: var(--gold);
  color: var(--green-dark);
}
.btn--gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(214, 167, 86, 0.3);
}

.btn--outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}
.btn--outline:hover {
  background: var(--gold);
  color: var(--green-dark);
}

.btn--white {
  background: var(--white);
  color: var(--green);
}
.btn--white:hover {
  background: var(--off-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,255,255,0.2);
}

.btn--green {
  background: var(--green);
  color: var(--white);
}
.btn--green:hover {
  background: var(--green-light);
  transform: translateY(-2px);
}

.btn--sm {
  padding: 0.65rem 1.4rem;
  font-size: 0.85rem;
}

.btn--lg {
  padding: 1.1rem 2.6rem;
  font-size: 1.05rem;
}

.link-arrow {
  font-weight: 600;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap var(--transition-base);
}
.link-arrow:hover { gap: 0.7rem; }
.link-arrow svg { width: 18px; height: 18px; }

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: all var(--transition-base);
}

.nav--scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav__logo {
  display: flex;
  align-items: center;
}

.nav__logo-icon {
  height: 60px;
  width: auto;
}

.nav__logo-footer {
  height: 40px;
  width: auto;
}

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

.nav__link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-medium);
  transition: color var(--transition-fast);
  position: relative;
}

.nav__link:hover,
.nav__link--active {
  color: var(--green);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition-base);
}

.nav__link:hover::after,
.nav__link--active::after {
  width: 100%;
}

.nav__cta {
  margin-left: 0.5rem;
}

/* Mobile menu button */
.nav__menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__menu-btn span {
  width: 24px;
  height: 2px;
  background: var(--green);
  transition: all var(--transition-base);
}

/* Mobile nav overlay */
.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 999;
  padding: 100px 2rem 2rem;
  flex-direction: column;
  gap: 0;
}

.nav__mobile.active {
  display: flex;
}

.nav__mobile a {
  display: block;
  padding: 1rem 0;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-dark);
  border-bottom: 1px solid var(--warm-gray);
}

.nav__mobile .btn {
  margin-top: 1.5rem;
  text-align: center;
  justify-content: center;
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(72px + var(--space-2xl)) 1.5rem var(--space-2xl);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: var(--green);
  z-index: 0;
}

.hero__bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(30,61,50,0.3) 0%, rgba(30,61,50,0.7) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.hero__label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-md);
  display: block;
}

.hero h1 {
  color: var(--white);
  margin-bottom: var(--space-md);
}

.hero p {
  color: rgba(255,255,255,0.85);
  font-size: 1.15rem;
  max-width: 580px;
  margin: 0 auto var(--space-lg);
}

.hero__ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Page hero (shorter, for inner pages) */
.hero--page {
  min-height: 50vh;
  padding-top: calc(72px + var(--space-xl));
}

.hero--page h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

/* --- Content Placeholder --- */
.placeholder {
  background: var(--green);
  border: 2px dashed var(--gold);
  border-radius: var(--border-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-lg);
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  min-height: 280px;
}

.placeholder--wide { min-height: 400px; }
.placeholder--sm { min-height: 180px; }

/* --- Cards --- */
.card-grid {
  display: grid;
  gap: 1.5rem;
}

.card-grid--3 { grid-template-columns: repeat(3, 1fr); }
.card-grid--4 { grid-template-columns: repeat(4, 1fr); }
.card-grid--2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
  border: 1px solid rgba(0,0,0,0.06);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
}

.card__image {
  height: 220px;
  overflow: hidden;
}

.card__image .placeholder {
  height: 100%;
  border-radius: 0;
  border: none;
  border-bottom: 2px dashed var(--gold);
}

.card__body {
  padding: var(--space-md);
}

.card__body h3 {
  margin-bottom: 0.6rem;
}

.card__body p {
  font-size: 0.95rem;
  margin-bottom: var(--space-sm);
}

/* Event type cards (large, image-heavy) */
.event-card {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  transition: all var(--transition-base);
}

.event-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.event-card__bg {
  position: absolute;
  inset: 0;
  background: var(--green);
}

.event-card__bg .placeholder {
  height: 100%;
  border-radius: 0;
  border: none;
  min-height: 0;
  font-size: 0.75rem;
}

.event-card__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 50%, transparent 70%);
  z-index: 1;
}

.event-card__content {
  position: relative;
  z-index: 2;
  padding: var(--space-lg) var(--space-md);
  width: 100%;
}

.event-card__content h3 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

.event-card__content p {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  margin-bottom: var(--space-sm);
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

.event-card .link-arrow {
  color: var(--gold-light);
  font-size: 0.9rem;
}

/* --- Steps / How it Works --- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: var(--warm-gray);
  z-index: 0;
}

.step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step__number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  padding-bottom: 9px;
  margin: 0 auto var(--space-sm);
}

.step h4 {
  margin-bottom: 0.4rem;
  color: var(--green);
}

.step p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin: 0 auto;
  max-width: 220px;
}

/* --- Differentiators --- */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.diff-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.diff-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: var(--border-radius);
  background: var(--green);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.diff-icon svg {
  width: 24px;
  height: 24px;
}

.diff-item h4 {
  margin-bottom: 0.3rem;
}

.diff-item p {
  font-size: 0.92rem;
}

/* --- Testimonials --- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--border-radius-lg);
  padding: var(--space-lg);
}

.testimonial__stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: var(--space-sm);
  letter-spacing: 2px;
}

.testimonial__text {
  font-size: 1rem;
  font-style: italic;
  color: rgba(255,255,255,0.9);
  line-height: 1.7;
  margin-bottom: var(--space-md);
  max-width: none;
}

.testimonial__author {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
}

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

/* --- Social Proof Bar --- */
.proof-bar {
  background: var(--green);
  padding: var(--space-md) 0;
  border-bottom: 2px solid rgba(214, 167, 86, 0.2);
}

.proof-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.proof-stat {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
}

.proof-stat svg {
  color: var(--gold);
  width: 20px;
  height: 20px;
}

.proof-stat strong {
  color: var(--gold);
}

/* --- Pricing --- */
.pricing-highlight {
  text-align: center;
  padding: var(--space-lg);
  border: 1px solid var(--warm-gray);
  border-radius: var(--border-radius-lg);
  background: var(--white);
}

.pricing-highlight__amount {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--green);
}

.pricing-highlight__detail {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-top: 0.3rem;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
}

.pricing-table th,
.pricing-table td {
  padding: 1rem 1.2rem;
  text-align: left;
  border-bottom: 1px solid var(--warm-gray);
  font-size: 0.95rem;
}

.pricing-table th {
  background: var(--green);
  color: var(--white);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pricing-table th:first-child { border-radius: var(--border-radius) 0 0 0; }
.pricing-table th:last-child { border-radius: 0 var(--border-radius) 0 0; }

.pricing-table tr:hover td {
  background: var(--off-white);
}

.pricing-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--green-dark);
  padding: 0.15rem 0.6rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-left: 0.5rem;
  vertical-align: middle;
}

/* --- Instagram Grid --- */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}

.insta-item {
  aspect-ratio: 1;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.insta-item .placeholder {
  min-height: 0;
  height: 100%;
  border-radius: 0;
}

/* --- FAQ Accordion --- */
.faq-list {
  max-width: var(--max-width-narrow);
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--warm-gray);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.2rem 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: color var(--transition-fast);
}

.faq-question:hover { color: var(--green); }

.faq-question svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--gold);
  transition: transform var(--transition-base);
}

.faq-item.active .faq-question svg {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}

.faq-answer__inner {
  padding: 0 0 1.2rem;
}

.faq-answer p {
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

/* --- Gallery Grid --- */
.gallery-tabs {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
}

.gallery-tab {
  padding: 0.5rem 1.2rem;
  border-radius: 999px;
  border: 1px solid var(--warm-gray);
  background: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-fast);
  font-family: var(--font-body);
}

.gallery-tab:hover,
.gallery-tab.active {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

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

.gallery-item {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.gallery-item .placeholder {
  min-height: 0;
  height: 100%;
  border-radius: 0;
  font-size: 0.7rem;
}

/* --- Map / Areas --- */
.area-region {
  margin-bottom: var(--space-lg);
}

.area-region h3 {
  margin-bottom: var(--space-sm);
  font-size: 1.2rem;
}

.area-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.area-city {
  background: var(--off-white);
  padding: 0.45rem 1rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
  border: 1px solid var(--warm-gray);
  transition: all var(--transition-fast);
}

.area-city:hover {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

/* --- Contact Form --- */
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group--full {
  grid-column: 1 / -1;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
}

.form-input,
.form-select,
.form-textarea {
  padding: 0.8rem 1rem;
  border: 1px solid var(--warm-gray);
  border-radius: var(--border-radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(214, 167, 86, 0.15);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

/* --- CTA Banner --- */
.cta-banner {
  background: var(--green);
  padding: var(--space-2xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(214, 167, 86, 0.06);
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(214, 167, 86, 0.04);
}

.cta-banner__inner {
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.cta-banner p {
  color: rgba(255,255,255,0.8);
  margin: 0 auto var(--space-lg);
  max-width: 500px;
}

.cta-banner .btn + .btn { margin-left: 0.5rem; }

.cta-banner__phone {
  margin-top: var(--space-sm);
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
}

.cta-banner__phone a {
  color: var(--gold-light);
  font-weight: 600;
}

/* --- Footer --- */
.footer {
  background: var(--off-white);
  padding: var(--space-2xl) 0 var(--space-lg);
  border-top: 1px solid var(--warm-gray);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: var(--space-xl);
}

.footer__brand p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-top: var(--space-sm);
  max-width: 280px;
}

.footer__heading {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green);
  margin-bottom: var(--space-sm);
}

.footer__links li { margin-bottom: 0.5rem; }

.footer__links a {
  font-size: 0.9rem;
  color: var(--text-medium);
  transition: color var(--transition-fast);
}

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

.footer__social {
  display: flex;
  gap: 0.75rem;
  margin-top: var(--space-sm);
}

.footer__social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.footer__social a:hover {
  background: var(--gold);
  color: var(--green-dark);
}

.footer__social svg {
  width: 16px;
  height: 16px;
}

.footer__bottom {
  border-top: 1px solid var(--warm-gray);
  padding-top: var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-light);
}

/* --- Sticky Book Now --- */
.sticky-cta {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 900;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition-base);
  pointer-events: none;
}

.sticky-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.sticky-cta .btn {
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  padding: 0.8rem 1.6rem;
}

/* --- Trust Bar --- */
.trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  padding: var(--space-md) 0;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-medium);
}

.trust-item svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
}

/* --- Animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--transition-glacial), transform var(--transition-glacial);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .card-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .card-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .diff-grid { grid-template-columns: 1fr; }
  .mobile-stack--3 { grid-template-columns: repeat(2, 1fr) !important; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__menu-btn { display: flex; }
  
  .hero { min-height: 80vh; }
  .hero--page { min-height: 40vh; }
  
  .section { padding: var(--space-xl) 0; }
  
  .steps { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .steps::before { display: none; }
  
  .card-grid--3,
  .card-grid--4,
  .card-grid--2 { grid-template-columns: 1fr; }
  .mobile-stack--3, .mobile-stack--2 { grid-template-columns: 1fr !important; }

  .pricing-table thead { display: none; }
  .pricing-table tr {
    display: block;
    background: var(--white);
    border-radius: 12px;
    padding: 1.2rem;
    margin-bottom: 1rem;
    border: 1px solid var(--warm-gray);
  }
  .pricing-table tr:hover td { background: transparent; }
  .pricing-table td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    font-size: 0.92rem;
  }
  .pricing-table td:last-child { border-bottom: none; }
  .pricing-table td::before {
    content: attr(data-label);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-light);
    flex-shrink: 0;
    margin-right: 1rem;
  }
  .pricing-table td:first-child {
    border-bottom: 2px solid var(--green);
    padding-bottom: 0.8rem;
    margin-bottom: 0.3rem;
  }
  .pricing-table td:first-child::before { display: none; }
  
  .testimonial-grid { grid-template-columns: 1fr; }
  
  .event-card { min-height: 300px; }
  
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
  
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  
  .proof-bar__inner { gap: var(--space-md); }
  
  .form-grid { grid-template-columns: 1fr; }
  
  .sticky-cta {
    bottom: 0;
    right: 0;
    left: 0;
    border-radius: 0;
  }
  .sticky-cta .btn {
    width: 100%;
    justify-content: center;
    border-radius: 0;
  }

  .trust-bar { gap: var(--space-sm); }
}

@media (max-width: 480px) {
  .steps { grid-template-columns: 1fr; }
  .hero__ctas { flex-direction: column; align-items: center; }
  .gallery-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   COMPARISON PAGE
   ========================================================================== */

.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.compare-table th,
.compare-table td {
  padding: 1rem 1.2rem;
  text-align: left;
  font-size: 0.92rem;
  vertical-align: top;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

/* Header row */
.compare-table thead th {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 1.1rem 1.2rem;
}

.compare-table thead th:first-child {
  background: var(--text-dark);
  color: var(--white);
  width: 22%;
}

.compare-table thead .col-lynks {
  background: var(--green);
  color: var(--gold);
}

.compare-table thead .col-competitor {
  background: #3a3a3a;
  color: #cccccc;
}

/* Feature label column */
.compare-table td:first-child {
  font-weight: 600;
  color: var(--text-dark);
  background: var(--off-white);
  border-right: 1px solid var(--warm-gray);
}

/* Lynks column — green/gold tint */
.compare-table .cell-lynks {
  background: rgba(30, 61, 50, 0.04);
  color: var(--green);
  font-weight: 500;
}

.compare-table .cell-lynks strong {
  color: var(--green);
}

/* Competitor columns — neutral background */
.compare-table .cell-competitor {
  background: var(--white);
  color: var(--text-dark);
}

.compare-table .cell-competitor strong {
  color: var(--text-dark);
}

/* Disadvantage highlight — red text only, no background */
.compare-table .cell-competitor .disadvantage {
  color: #b83030;
  font-weight: 600;
}

/* Last row no bottom border */
.compare-table tbody tr:last-child td {
  border-bottom: none;
}

/* Hover */
.compare-table tbody tr:hover td {
  background-blend-mode: multiply;
}

.compare-table tbody tr:hover .cell-lynks {
  background: rgba(30, 61, 50, 0.08);
}

.compare-table tbody tr:hover .cell-competitor {
  background: var(--off-white);
}

.compare-table tbody tr:hover td:first-child {
  background: var(--warm-gray);
}

/* Check / X icons in table */
.compare-check {
  color: var(--green);
  font-weight: 700;
  font-size: 1.1rem;
}

.compare-x {
  color: #b83030;
  font-weight: 700;
  font-size: 1.1rem;
}

/* Lynks highlight column header badge */
.col-lynks-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--green-dark);
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  font-size: 0.6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-left: 0.4rem;
  vertical-align: middle;
}

/* Comparison summary cards */
.compare-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.compare-card {
  border-radius: var(--border-radius-lg);
  padding: var(--space-lg);
  text-align: center;
}

.compare-card--lynks {
  background: var(--green);
  color: var(--white);
  border: 2px solid var(--gold);
}

.compare-card--lynks h3 { color: var(--gold); }
.compare-card--lynks p { color: rgba(255,255,255,0.85); max-width: none; }
.compare-card--lynks .compare-card__price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin: 0.5rem 0;
}

.compare-card--other {
  background: var(--white);
  border: 1px solid var(--warm-gray);
}

.compare-card--other h3 { color: var(--text-dark); font-size: 1.2rem; }
.compare-card--other p { color: var(--text-light); max-width: none; }
.compare-card--other .compare-card__price {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0.5rem 0;
}

/* Bottom line / verdict */
.verdict-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.verdict-item {
  padding: 1.5rem;
}

.verdict-item h4 {
  color: var(--green);
  margin-bottom: 0.4rem;
}

.verdict-item p {
  font-size: 0.9rem;
  max-width: none;
}

@media (max-width: 768px) {
  .compare-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .compare-table th,
  .compare-table td {
    min-width: 140px;
    font-size: 0.85rem;
    padding: 0.8rem;
  }
  .compare-cards { grid-template-columns: 1fr; }
  .verdict-grid { grid-template-columns: 1fr; }
}
