/* ===================================================
   TIDE REFERRAL CODE LANDING PAGE - STYLESHEET
   Target Keywords: "tide referral", "tide referral code"
   =================================================== */

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

:root {
  /* Tide Brand Colors */
  --tide-blue: #1A0DAB;
  --tide-blue-dark: #0d006e;
  --tide-blue-mid: #2318c4;
  --tide-blue-light: #4338f5;
  --tide-blue-pale: #eef0ff;
  --tide-accent: #FF3CAC;
  --tide-green: #00C853;
  --tide-yellow: #FFD600;

  /* Neutrals */
  --white: #ffffff;
  --off-white: #f8f9ff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-400: #9ca3af;
  --gray-600: #4b5563;
  --gray-800: #1f2937;
  --gray-900: #111827;

  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  --font-size-5xl: 3rem;
  --font-size-6xl: 3.75rem;

  /* Spacing */
  --section-padding: 5rem 1.5rem;
  --container-max: 1200px;

  /* Borders */
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 15px rgba(0,0,0,0.1), 0 4px 6px rgba(0,0,0,0.05);
  --shadow-xl: 0 20px 25px rgba(0,0,0,0.1), 0 10px 10px rgba(0,0,0,0.04);
  --shadow-blue: 0 8px 30px rgba(26, 13, 171, 0.3);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-family);
  color: var(--gray-800);
  background-color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--tide-blue);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--tide-blue-light);
}

ul {
  list-style: none;
}

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
  background: linear-gradient(135deg, var(--tide-blue-dark) 0%, var(--tide-blue) 50%, var(--tide-blue-light) 100%);
  color: var(--white);
  text-align: center;
  padding: 0.625rem 1rem;
  font-size: var(--font-size-sm);
  font-weight: 500;
}

.announcement-bar p {
  margin: 0;
}

.announcement-bar a {
  color: var(--tide-yellow);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.announcement-bar a:hover {
  color: #fff;
}

/* ===== NAVIGATION ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0.875rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: var(--gray-900);
  font-weight: 800;
  font-size: var(--font-size-xl);
  text-decoration: none;
}

.nav-logo img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.logo-text {
  color: var(--gray-900);
}

.logo-highlight {
  color: var(--tide-blue);
}

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

.nav-links a {
  color: var(--gray-600);
  font-weight: 500;
  font-size: var(--font-size-sm);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--tide-blue);
}

.nav-cta {
  background: var(--tide-blue) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  font-weight: 700 !important;
  font-size: var(--font-size-sm) !important;
  transition: background 0.2s, transform 0.2s !important;
}

.nav-cta:hover {
  background: var(--tide-blue-dark) !important;
  transform: translateY(-1px);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-800);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--tide-blue) 0%, var(--tide-blue-light) 100%);
  color: var(--white);
  padding: 0.875rem 2rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: var(--font-size-base);
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: var(--shadow-blue);
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--tide-blue-dark) 0%, var(--tide-blue) 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(26, 13, 171, 0.4);
  color: var(--white);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--tide-blue);
  padding: 0.875rem 2rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: var(--font-size-base);
  text-decoration: none;
  transition: all 0.25s ease;
  border: 2px solid var(--tide-blue);
}

.btn-secondary:hover {
  background: var(--tide-blue-pale);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
  margin-top: 1rem;
}

.btn-large {
  padding: 1.125rem 2.5rem;
  font-size: var(--font-size-lg);
}

/* ===== SECTION COMMON ===== */
.section-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--section-padding);
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem;
}

.section-tag {
  display: inline-block;
  background: var(--tide-blue-pale);
  color: var(--tide-blue);
  font-size: var(--font-size-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.375rem 0.875rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.section-header h2 {
  font-size: clamp(var(--font-size-2xl), 4vw, var(--font-size-4xl));
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: var(--font-size-lg);
  color: var(--gray-600);
  line-height: 1.7;
}

/* ===== HERO SECTION ===== */
.hero-section {
  background: linear-gradient(160deg, var(--tide-blue-dark) 0%, var(--tide-blue) 40%, var(--tide-blue-mid) 70%, #3a2de0 100%);
  color: var(--white);
  padding: 4rem 1.5rem 5rem;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 60%;
  height: 100%;
  background: radial-gradient(ellipse, rgba(255,60,172,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-container {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  font-size: var(--font-size-sm);
  font-weight: 600;
  padding: 0.375rem 0.875rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
}

.hero-title {
  font-size: clamp(2rem, 5vw, var(--font-size-5xl));
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  color: var(--white);
}

.highlight-code {
  background: linear-gradient(135deg, var(--tide-yellow), #ffb300);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.highlight-money {
  color: var(--tide-yellow);
}

.hero-subtitle {
  font-size: var(--font-size-lg);
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.hero-offer-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.offer-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  min-width: 80px;
}

.offer-amount {
  font-size: var(--font-size-3xl);
  font-weight: 900;
  color: var(--tide-yellow);
  line-height: 1;
}

.offer-amount.total {
  font-size: var(--font-size-4xl);
  color: #fff;
}

.offer-desc {
  font-size: var(--font-size-xs);
  color: rgba(255,255,255,0.8);
  margin-top: 0.25rem;
  line-height: 1.3;
}

.offer-plus, .offer-equals {
  font-size: var(--font-size-2xl);
  font-weight: 900;
  color: rgba(255,255,255,0.5);
  flex-shrink: 0;
}

.offer-total {
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 0.5rem 1rem;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero-cta-group .btn-primary {
  background: var(--tide-yellow);
  color: var(--gray-900);
  box-shadow: 0 8px 25px rgba(255,214,0,0.4);
}

.hero-cta-group .btn-primary:hover {
  background: #e6c200;
  color: var(--gray-900);
  box-shadow: 0 12px 35px rgba(255,214,0,0.5);
}

.hero-cta-group .btn-secondary {
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}

.hero-cta-group .btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  color: var(--white);
}

.hero-trust-signals {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: var(--font-size-sm);
  color: rgba(255,255,255,0.85);
}

.trust-stars {
  color: var(--tide-yellow);
  font-size: var(--font-size-sm);
}

.trust-divider {
  color: rgba(255,255,255,0.3);
}

/* Hero Image */
.hero-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-card {
  position: relative;
  max-width: 480px;
  width: 100%;
}

.hero-image-card img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

.floating-badge {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 0.75rem 1.25rem;
  box-shadow: var(--shadow-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 130px;
}

.badge-top {
  top: 1.5rem;
  left: -1.5rem;
}

.badge-bottom {
  bottom: 1.5rem;
  right: -1.5rem;
}

.badge-code {
  font-size: var(--font-size-lg);
  font-weight: 900;
  color: var(--tide-blue);
  letter-spacing: 0.05em;
}

.badge-amount {
  font-size: var(--font-size-2xl);
  font-weight: 900;
  color: var(--tide-green);
}

.badge-label {
  font-size: var(--font-size-xs);
  color: var(--gray-600);
  font-weight: 500;
  margin-top: 2px;
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--gray-900);
  padding: 2rem 1.5rem;
}

.stats-container {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stat-number {
  font-size: var(--font-size-2xl);
  font-weight: 900;
  color: var(--tide-yellow);
  line-height: 1;
}

.stat-label {
  font-size: var(--font-size-sm);
  color: rgba(255,255,255,0.7);
  margin-top: 0.25rem;
}

/* ===== HOW IT WORKS ===== */
.how-it-works-section {
  background: var(--off-white);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.step-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border: 1px solid var(--gray-100);
}

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

.step-number {
  font-size: var(--font-size-xs);
  font-weight: 900;
  color: var(--tide-blue);
  letter-spacing: 0.1em;
  background: var(--tide-blue-pale);
  display: inline-block;
  padding: 0.25rem 0.625rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
}

.step-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.step-card h3 {
  font-size: var(--font-size-base);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.625rem;
  line-height: 1.3;
}

.step-card p {
  font-size: var(--font-size-sm);
  color: var(--gray-600);
  line-height: 1.6;
}

.step-card a {
  color: var(--tide-blue);
  font-weight: 600;
}

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

.steps-note {
  margin-top: 1rem;
  font-size: var(--font-size-xs);
  color: var(--gray-400);
}

/* ===== FEATURES SECTION ===== */
.features-section {
  background: var(--white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.feature-card {
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--gray-100);
  transition: all 0.25s ease;
}

.feature-card:hover {
  background: var(--tide-blue-pale);
  border-color: rgba(26,13,171,0.15);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.feature-icon-wrap {
  width: 52px;
  height: 52px;
  background: var(--tide-blue-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tide-blue);
  margin-bottom: 1rem;
  transition: background 0.25s;
}

.feature-card:hover .feature-icon-wrap {
  background: var(--tide-blue);
  color: var(--white);
}

.feature-card h3 {
  font-size: var(--font-size-base);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: var(--font-size-sm);
  color: var(--gray-600);
  line-height: 1.6;
}

.features-image-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  background: linear-gradient(135deg, var(--tide-blue) 0%, var(--tide-blue-mid) 100%);
  border-radius: var(--radius-xl);
  padding: 3.5rem;
  color: var(--white);
}

.features-image-content h3 {
  font-size: var(--font-size-2xl);
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.features-image-content p {
  font-size: var(--font-size-base);
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.features-image-content .btn-primary {
  background: var(--tide-yellow);
  color: var(--gray-900);
  margin-top: 0.5rem;
  box-shadow: 0 8px 25px rgba(255,214,0,0.35);
}

.features-image-content .btn-primary:hover {
  background: #e6c200;
  color: var(--gray-900);
}

.features-image-wrap img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  object-fit: cover;
  height: 400px;
  width: 100%;
}

/* ===== OFFER SECTION ===== */
.offer-section {
  background: var(--off-white);
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.offer-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 2px solid transparent;
  transition: all 0.25s ease;
}

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

.offer-card-primary {
  border-color: var(--tide-blue-pale);
}

.offer-card-secondary {
  border-color: rgba(0,200,83,0.2);
}

.offer-card-total {
  background: linear-gradient(135deg, var(--tide-blue) 0%, var(--tide-blue-mid) 100%);
  color: var(--white);
  border-color: transparent;
}

.offer-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.offer-card-tag {
  font-size: var(--font-size-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--tide-blue-pale);
  color: var(--tide-blue);
  padding: 0.25rem 0.625rem;
  border-radius: var(--radius-full);
}

.offer-card-total .offer-card-tag {
  background: rgba(255,255,255,0.2);
  color: var(--white);
}

.offer-card-amount {
  font-size: var(--font-size-3xl);
  font-weight: 900;
  color: var(--tide-blue);
}

.offer-card-total .offer-card-amount {
  color: var(--tide-yellow);
}

.total-amount {
  font-size: var(--font-size-4xl);
}

.offer-card h3 {
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
}

.offer-card-total h3 {
  color: var(--white);
}

.offer-card p {
  font-size: var(--font-size-sm);
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.offer-card-total p {
  color: rgba(255,255,255,0.85);
}

.offer-checklist {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.offer-checklist li {
  font-size: var(--font-size-sm);
  color: var(--gray-700);
}

.offer-card-total .offer-checklist li {
  color: rgba(255,255,255,0.85);
}

.offer-card-total .btn-primary {
  background: var(--tide-yellow);
  color: var(--gray-900);
  box-shadow: 0 8px 25px rgba(255,214,0,0.35);
}

.offer-card-total .btn-primary:hover {
  background: #e6c200;
  color: var(--gray-900);
}

.offer-disclaimer {
  font-size: var(--font-size-xs);
  color: var(--gray-400);
  text-align: center;
  line-height: 1.6;
}

.offer-disclaimer a {
  color: var(--tide-blue);
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  background: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.testimonial-card {
  background: var(--gray-50);
  border-radius: var(--radius-xl);
  padding: 2rem;
  border: 1px solid var(--gray-100);
  transition: all 0.25s ease;
}

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

.testimonial-stars {
  color: var(--tide-yellow);
  font-size: var(--font-size-lg);
  margin-bottom: 1rem;
}

.testimonial-card blockquote p {
  font-size: var(--font-size-sm);
  color: var(--gray-700);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--tide-blue), var(--tide-blue-light));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-sm);
  font-weight: 700;
  flex-shrink: 0;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-info strong {
  font-size: var(--font-size-sm);
  color: var(--gray-900);
}

.author-info span {
  font-size: var(--font-size-xs);
  color: var(--gray-400);
}

.trustpilot-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.25rem 2rem;
  max-width: 600px;
  margin: 0 auto;
}

.tp-stars {
  font-size: var(--font-size-2xl);
  color: #00b67a;
}

.tp-text {
  font-size: var(--font-size-sm);
  color: var(--gray-700);
}

/* ===== COMPARISON TABLE ===== */
.comparison-section {
  background: var(--off-white);
}

.table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin-bottom: 2.5rem;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  font-size: var(--font-size-sm);
}

.comparison-table th {
  padding: 1rem 1.5rem;
  text-align: left;
  font-weight: 700;
  font-size: var(--font-size-sm);
  border-bottom: 2px solid var(--gray-200);
}

.comparison-table th:first-child {
  background: var(--gray-50);
  color: var(--gray-700);
}

.comparison-table .tide-col {
  background: var(--tide-blue-pale);
  color: var(--tide-blue-dark);
}

.comparison-table th.tide-col {
  background: var(--tide-blue);
  color: var(--white);
  text-align: center;
}

.comparison-table td {
  padding: 0.875rem 1.5rem;
  border-bottom: 1px solid var(--gray-100);
  color: var(--gray-700);
}

.comparison-table td.tide-col {
  text-align: center;
  font-weight: 600;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table tr:hover td {
  background: var(--gray-50);
}

.comparison-table tr:hover td.tide-col {
  background: #dde0ff;
}

.check {
  color: var(--tide-green);
  font-weight: 700;
  margin-right: 0.25rem;
}

.cross {
  color: #ef4444;
  font-weight: 700;
  margin-right: 0.25rem;
}

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

/* ===== FAQ SECTION ===== */
.faq-section {
  background: var(--white);
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: var(--white);
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  font-weight: 600;
  color: var(--gray-900);
  gap: 1rem;
  transition: background 0.2s;
}

.faq-question:hover {
  background: var(--gray-50);
}

.faq-question[aria-expanded="true"] {
  background: var(--tide-blue-pale);
  color: var(--tide-blue);
}

.faq-icon {
  font-size: var(--font-size-xl);
  font-weight: 400;
  color: var(--tide-blue);
  flex-shrink: 0;
  transition: transform 0.3s ease;
  line-height: 1;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 1.5rem 1.25rem;
  background: var(--white);
}

.faq-answer.open {
  display: block;
}

.faq-answer p {
  font-size: var(--font-size-sm);
  color: var(--gray-600);
  line-height: 1.7;
}

.faq-answer a {
  color: var(--tide-blue);
  font-weight: 600;
}

/* ===== FINAL CTA SECTION ===== */
.final-cta-section {
  background: linear-gradient(160deg, var(--tide-blue-dark) 0%, var(--tide-blue) 50%, var(--tide-blue-mid) 100%);
  color: var(--white);
}

.final-cta-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.final-cta-content h2 {
  font-size: clamp(var(--font-size-2xl), 4vw, var(--font-size-4xl));
  font-weight: 900;
  margin-bottom: 1rem;
  color: var(--white);
}

.final-cta-content > p {
  font-size: var(--font-size-lg);
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.final-cta-code-display {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-lg);
  padding: 1rem 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.code-label {
  font-size: var(--font-size-sm);
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

.code-value {
  font-size: var(--font-size-2xl);
  font-weight: 900;
  color: var(--tide-yellow);
  letter-spacing: 0.1em;
}

.copy-btn {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-sm);
  padding: 0.375rem 0.875rem;
  font-size: var(--font-size-sm);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font-family);
}

.copy-btn:hover {
  background: rgba(255,255,255,0.25);
}

.final-cta-buttons {
  margin-bottom: 1.5rem;
}

.final-cta-buttons .btn-primary {
  background: var(--tide-yellow);
  color: var(--gray-900);
  box-shadow: 0 8px 30px rgba(255,214,0,0.4);
}

.final-cta-buttons .btn-primary:hover {
  background: #e6c200;
  color: var(--gray-900);
  box-shadow: 0 12px 40px rgba(255,214,0,0.5);
}

.final-cta-note {
  font-size: var(--font-size-xs);
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--gray-900);
  color: rgba(255,255,255,0.7);
}

.footer-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 3.5rem 1.5rem 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: var(--white);
  font-weight: 800;
  font-size: var(--font-size-lg);
  text-decoration: none;
  margin-bottom: 1rem;
}

.footer-logo img {
  width: 32px;
  height: 32px;
  border-radius: 6px;
}

.footer-brand p {
  font-size: var(--font-size-sm);
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
}

.footer-links h4 {
  color: var(--white);
  font-size: var(--font-size-sm);
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: var(--font-size-sm);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--white);
}

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

.footer-disclaimer {
  font-size: var(--font-size-xs);
  color: rgba(255,255,255,0.35);
  line-height: 1.7;
  margin-bottom: 1rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.footer-copyright {
  font-size: var(--font-size-xs);
  color: rgba(255,255,255,0.35);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-image-wrapper {
    order: -1;
  }

  .hero-image-card {
    max-width: 380px;
    margin: 0 auto;
  }

  .badge-top {
    left: 0;
  }

  .badge-bottom {
    right: 0;
  }

  .hero-cta-group {
    justify-content: center;
  }

  .hero-trust-signals {
    justify-content: center;
  }

  .hero-offer-box {
    justify-content: center;
  }

  .features-image-row {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .features-image-wrap {
    display: none;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 3.5rem 1.25rem;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--gray-200);
    gap: 1rem;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-container {
    position: relative;
  }

  .mobile-menu-btn {
    display: flex;
  }

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

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

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

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

  .stats-container {
    gap: 1rem;
  }

  .stat-item {
    min-width: 80px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-brand {
    grid-column: 1;
  }

  .hero-offer-box {
    gap: 0.75rem;
  }

  .offer-plus, .offer-equals {
    display: none;
  }
}

@media (max-width: 480px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 1.875rem;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-cta-group .btn-primary,
  .hero-cta-group .btn-secondary {
    text-align: center;
  }

  .final-cta-code-display {
    flex-direction: column;
  }
}

/* ===== ACCESSIBILITY ===== */
:focus-visible {
  outline: 3px solid var(--tide-blue);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}

/* ===== PRINT ===== */
@media print {
  .announcement-bar,
  .site-header,
  .hero-cta-group,
  .steps-cta,
  .comparison-cta,
  .final-cta-section,
  .site-footer {
    display: none;
  }
}
