/* ============================================================
   PŪKEKO SIGNALS - Design System
   Clean, trustworthy blue/white palette for NZ farmers
   ============================================================ */

/* Inter Font */
@font-face {
  font-family: 'Inter';
  src: url('/fonts/Inter-Regular.woff2') format('woff2'),
       url('/fonts/Inter-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('/fonts/Inter-Bold.woff2') format('woff2'),
       url('/fonts/Inter-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ── Design Tokens ─────────────────────────────────────────── */
:root {
  --blue-dark:    #1B4F72;
  --blue:         #2980B9;
  --blue-light:   #EBF5FB;
  --green:        #1E8449;
  --orange:       #D35400;
  --orange-hover: #B94700;
  --navy:         #0D2137;
  --text:         #1A252F;
  --text-secondary: #4A5568;
  --text-muted:   #718096;
  --bg:           #FFFFFF;
  --bg-alt:       #F4F6F7;
  --border:       #D5D8DC;
  --shadow:       0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg:    0 10px 40px rgba(0,0,0,0.12);
  --radius:       12px;
  --radius-lg:    20px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

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

/* ── Typography ────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  color: var(--text);
  line-height: 1.25;
  font-weight: 700;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); }
h3 { font-size: 1.25rem; }

p { color: var(--text-secondary); }

/* ── Header / Nav ──────────────────────────────────────────── */
header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 200;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-header-img {
  height: 46px;
  width: auto;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--blue-dark);
}

nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
}

nav a {
  color: var(--text-secondary);
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

nav a:hover {
  color: var(--blue-dark);
  background: var(--blue-light);
}

nav a.active {
  color: var(--blue-dark);
  font-weight: 700;
  border-bottom: 2px solid var(--blue-dark);
}

nav a.nav-dashboard {
  background: var(--blue-dark);
  color: #fff;
  border-radius: 6px;
  padding: 6px 14px;
}

nav a.nav-dashboard:hover {
  background: var(--blue);
  color: #fff;
}

nav a.nav-featured {
  background: var(--blue-dark);
  color: #fff;
  border-radius: 6px;
  padding: 6px 14px;
  font-weight: 600;
}

nav a.nav-featured:hover {
  background: var(--blue);
  color: #fff;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 6px 10px;
  cursor: pointer;
  font-size: 1.25rem;
  color: var(--blue-dark);
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .nav-toggle { display: block; }

  nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0,0,0,0.10);
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 20px 20px;
    gap: 2px;
    z-index: 199;
  }

  nav.open {
    display: flex;
  }

  nav a {
    width: 100%;
    padding: 10px 12px;
    font-size: 1rem;
  }

  header {
    position: sticky;
    top: 0;
  }
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  background: var(--orange);
  border: none;
  border-radius: 50px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(211,84,0,0.35);
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(211,84,0,0.45);
  color: #fff;
}

.btn-ghost {
  display: inline-block;
  padding: 13px 32px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: transparent;
  border: 2px solid rgba(255,255,255,0.75);
  border-radius: 50px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
  color: #fff;
}

.btn-blue {
  display: inline-block;
  padding: 13px 32px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: var(--blue-dark);
  border-radius: 50px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}

.btn-blue:hover {
  background: var(--blue);
  transform: translateY(-2px);
  color: #fff;
}

/* Legacy .cta compatibility */
.cta {
  display: inline-block;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  background: var(--orange);
  border: none;
  border-radius: 50px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(211,84,0,0.35);
}

.cta:hover {
  background: var(--orange-hover);
  transform: translateY(-2px);
  color: #fff;
}

.cta.secondary,
.cta-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.75);
  box-shadow: none;
}

.cta.secondary:hover,
.cta-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
  color: #fff;
}

/* ── Hero (full-bleed) ─────────────────────────────────────── */
.section-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
}

.section-hero .hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}

.section-hero .hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
  max-width: 860px;
  margin: 0 auto;
}

.section-hero h1 {
  color: #fff;
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 800;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}

.section-hero .hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: rgba(255,255,255,0.88);
  margin-bottom: 38px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.section-hero .hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Image Placeholder ─────────────────────────────────────── */
.img-placeholder {
  background: #D5D8DC;
  border: 2px dashed #95A5A6;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #555;
  font-size: 0.85rem;
  text-align: center;
  padding: 20px;
  gap: 8px;
}

.img-placeholder .ph-icon {
  font-size: 2.5rem;
  opacity: 0.5;
}

.img-placeholder .ph-label {
  font-weight: 600;
  color: #444;
}

.img-placeholder .ph-size {
  opacity: 0.7;
  font-size: 0.8rem;
}

/* ── Trust Bar ─────────────────────────────────────────────── */
.trust-bar {
  background: var(--blue-dark);
  color: #fff;
  padding: 14px 20px;
  text-align: center;
}

.trust-bar-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 28px;
  font-size: 0.95rem;
  font-weight: 500;
}

.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

/* ── Partners Section ──────────────────────────────────────── */
.partners-section {
  background: var(--bg-alt);
  padding: 36px 20px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.partners-label {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.partners-logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.partner-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 24px;
  box-shadow: var(--shadow);
}

.partner-badge .ph-logo {
  width: 80px;
  height: 40px;
  background: #D5D8DC;
  border: 1px dashed #95A5A6;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: #666;
  flex-shrink: 0;
}

.partner-badge .partner-text {
  text-align: left;
}

.partner-badge .partner-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.3;
}

.partner-badge .partner-sub {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ── Section Scaffolding ───────────────────────────────────── */
.section {
  padding: 72px 20px;
}

.section-alt {
  background: var(--bg-alt);
}

.section-blue {
  background: var(--blue-light);
}

.section-dark {
  background: var(--navy);
  color: #fff;
}

.section-dark h2,
.section-dark h3,
.section-dark p {
  color: #fff;
}

.section-title {
  text-align: center;
  margin-bottom: 14px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 640px;
  margin: 0 auto 48px;
}

/* ── Feature Cards ─────────────────────────────────────────── */
.feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-left: 4px solid var(--blue-dark);
  border-radius: var(--radius);
  padding: 28px;
  height: 100%;
  transition: transform 0.2s, box-shadow 0.2s;
}

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

.feature-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
  display: block;
}

.feature-card h3 {
  color: var(--text);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.97rem;
  color: var(--text-secondary);
  margin-bottom: 0;
}

/* ── Scenario Block ────────────────────────────────────────── */
.scenario-section {
  background: var(--navy);
  padding: 72px 20px;
}

.scenario-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 960px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
}

.scenario-without {
  background: #1c1c1e;
  padding: 44px 36px;
  color: #fff;
}

.scenario-with {
  background: var(--blue-dark);
  padding: 44px 36px;
  color: #fff;
}

.scenario-label {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
  opacity: 0.7;
}

.scenario-without .scenario-label { color: #ff6b6b; }
.scenario-with .scenario-label    { color: #a8ff78; }

.scenario-block h3 {
  color: #fff;
  margin-bottom: 16px;
  font-size: 1.35rem;
}

.scenario-block p {
  color: rgba(255,255,255,0.82);
  font-size: 1rem;
  line-height: 1.8;
}

.scenario-setup {
  color: rgba(255,255,255,0.70);
  text-align: center;
  font-size: 2rem;
  max-width: 640px;
  margin: 0 auto 36px;
  font-style: italic;
}

@media (max-width: 680px) {
  .scenario-block {
    grid-template-columns: 1fr;
  }
}

/* ── Testimonials ──────────────────────────────────────────── */
.testimonials-section {
  background: var(--blue-light);
  padding: 72px 20px;
}

.testimonial-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px;
  border-top: 4px solid var(--blue-dark);
  box-shadow: var(--shadow);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.testimonial-quote {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 24px;
}

.testimonial-quote::before {
  content: '\201C';
  font-size: 3rem;
  color: var(--blue-dark);
  line-height: 0;
  vertical-align: -0.6em;
  margin-right: 4px;
  font-style: normal;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--border);
  border: 2px dashed #95A5A6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.97rem;
  color: var(--text);
}

.testimonial-role {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ── App Download ──────────────────────────────────────────── */
.app-section {
  background: var(--blue-dark);
  padding: 60px 20px;
  text-align: center;
}

.app-section h2 {
  color: #fff;
  margin-bottom: 12px;
}

.app-section .app-sub {
  color: rgba(255,255,255,0.80);
  margin-bottom: 32px;
  font-size: 1.05rem;
}

.app-badges {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.app-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--text);
  text-decoration: none;
  border-radius: var(--radius);
  padding: 12px 22px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(0,0,0,0.2);
}

.app-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  color: var(--text);
}

.app-badge .badge-icon {
  font-size: 1.6rem;
}

.app-badge .badge-text {
  text-align: left;
  line-height: 1.25;
}

.app-badge .badge-store {
  font-size: 0.72rem;
  font-weight: 400;
  opacity: 0.7;
  display: block;
}

/* ── Pricing Card ──────────────────────────────────────────── */
.pricing-card-new {
  background: #fff;
  border: 2px solid var(--blue-dark);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 40px;
  box-shadow: var(--shadow-lg);
}

.pricing-card-new .pricing-img-col {
  flex-shrink: 0;
}

.pricing-card-new .pricing-img {
  width: 240px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  cursor: pointer;
}

.pricing-card-new .pricing-info {
  flex: 1;
}

.pricing-card-new h3 {
  font-size: 1.5rem;
  color: var(--blue-dark);
  margin-bottom: 20px;
}

.price-row {
  margin-bottom: 8px;
}

.price-amount {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}

.price-note {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.price-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 18px 0;
}

.pricing-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}

.pricing-features-list li {
  padding: 7px 0;
  font-size: 0.98rem;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-secondary);
}

.pricing-features-list li::before {
  content: '✓';
  font-weight: 700;
  color: var(--green);
  flex-shrink: 0;
}

.pricing-comparison {
  background: var(--blue-light);
  border: 1px solid #ADD4EF;
  border-radius: var(--radius);
  padding: 20px 24px;
  max-width: 800px;
  margin: 32px auto 0;
}

.pricing-comparison h4 {
  color: var(--blue-dark);
  margin-bottom: 12px;
  font-size: 1rem;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.93rem;
}

.comparison-table th {
  text-align: left;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 6px 8px;
  border-bottom: 1px solid var(--border);
}

.comparison-table td {
  padding: 8px 8px;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
}

.comparison-table .cost-bad  { color: #C0392B; font-weight: 600; }
.comparison-table .cost-good { color: var(--green); font-weight: 600; }

@media (max-width: 680px) {
  .pricing-card-new {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 28px 20px;
  }

  .pricing-card-new .pricing-img {
    width: 200px;
  }

  .pricing-features-list {
    text-align: left;
  }
}

/* ── FAQ Accordion ─────────────────────────────────────────── */
.faq-section {
  background: var(--bg);
  padding: 72px 20px;
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: #fff;
  border: none;
  text-align: left;
  padding: 18px 20px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-family: inherit;
  transition: background 0.2s;
}

.faq-question:hover {
  background: var(--blue-light);
}

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

.faq-chevron {
  flex-shrink: 0;
  font-size: 0.85rem;
  transition: transform 0.25s;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-inner {
  padding: 4px 20px 20px;
  font-size: 0.98rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ── Lightbox ──────────────────────────────────────────────── */
.lightbox-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(5px);
}

.lightbox-modal.show {
  display: flex;
  justify-content: center;
  align-items: center;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90%;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  animation: zoomIn 0.25s ease;
}

@keyframes zoomIn {
  from { transform: scale(0.85); opacity: 0; }
  to   { transform: scale(1);    opacity: 1; }
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 30px;
  color: #fff;
  font-size: 42px;
  font-weight: 300;
  cursor: pointer;
  line-height: 1;
  transition: opacity 0.2s;
  z-index: 10000;
}

.lightbox-close:hover { opacity: 0.7; }

.clickable-image {
  cursor: zoom-in;
  transition: transform 0.2s, box-shadow 0.2s;
}

.clickable-image:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}

/* ── Page Hero (inner pages) ───────────────────────────────── */
.page-hero {
  background: var(--navy);
  padding: 52px 20px;
  text-align: center;
  border-bottom: 4px solid var(--blue-dark);
}

.page-hero h1 {
  color: #fff;
  margin-bottom: 12px;
}

.page-hero p {
  color: rgba(255,255,255,0.80);
  font-size: 1.1rem;
  max-width: 640px;
  margin: 0 auto;
}

/* ── Content Sections (inner pages) ───────────────────────── */
.content-section {
  padding: 60px 20px;
  flex: 1;
}

.content-container {
  max-width: 900px;
  margin: 0 auto;
}

/* ── Card (generic) ────────────────────────────────────────── */
.card-white {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 36px;
}

/* ── Callout / Warning ─────────────────────────────────────── */
.callout-warning {
  background: #FEF9E7;
  border-left: 4px solid #F39C12;
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 0.97rem;
  color: #7D6608;
  margin: 20px 0;
}

.callout-info {
  background: var(--blue-light);
  border-left: 4px solid var(--blue-dark);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 0.97rem;
  color: var(--blue-dark);
  margin: 20px 0;
}

/* ── Footer ────────────────────────────────────────────────── */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  margin-top: auto;
}

.footer-main {
  padding: 52px 20px 36px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand .logo-text-footer {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  display: block;
}

.footer-brand p {
  color: rgba(255,255,255,0.60);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 16px;
}

.footer-brand .footer-contact a {
  display: block;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.92rem;
  margin-bottom: 6px;
  transition: color 0.2s;
}

.footer-brand .footer-contact a:hover { color: #fff; }

.footer-col h4 {
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.footer-col a {
  display: block;
  color: rgba(255,255,255,0.60);
  text-decoration: none;
  font-size: 0.92rem;
  margin-bottom: 8px;
  transition: color 0.2s;
}

.footer-col a:hover { color: #fff; }

.footer-app-badges {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}

.footer-app-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: 8px;
  padding: 8px 14px;
  text-decoration: none;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 500;
  transition: background 0.2s;
}

.footer-app-badge:hover {
  background: rgba(255,255,255,0.18);
  color: #fff;
}

.footer-app-badge .badge-icon { font-size: 1.3rem; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 18px 20px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
}

.footer-bottom a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom a:hover { color: #fff; }

.footer-partner {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  margin-top: 6px;
}

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

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

/* ── Contact Page ──────────────────────────────────────────── */
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px;
  background: var(--bg-alt);
  border-radius: var(--radius);
  margin-bottom: 16px;
}

.contact-icon {
  font-size: 2rem;
  flex-shrink: 0;
  line-height: 1;
}

.contact-details h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.contact-details a {
  color: var(--blue-dark);
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 600;
}

.contact-details a:hover { text-decoration: underline; }

.contact-link-large {
  display: block;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--blue-dark);
  text-decoration: none;
  line-height: 1.2;
  margin-bottom: 6px;
}

.contact-link-large:hover { text-decoration: underline; }

.contact-subtext {
  color: var(--text-secondary);
  font-size: 0.92rem;
  margin: 0;
}

.contact-details p {
  color: var(--text-secondary);
  font-size: 0.97rem;
}

/* ── Utility ───────────────────────────────────────────────── */
.text-center { text-align: center; }
.mt-auto { margin-top: auto; }
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* ── Step Cards (installation) ─────────────────────────────── */
.step-card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 28px;
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s;
}

.step-card:hover {
  box-shadow: var(--shadow-lg);
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--blue-dark);
  color: #fff;
  font-size: 1.3rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-content h3 {
  margin-bottom: 8px;
}

.step-content p {
  font-size: 0.97rem;
  margin-bottom: 0;
}

/* ── Table styles ──────────────────────────────────────────── */
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.data-table th {
  background: var(--blue-dark);
  color: #fff;
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
}

.data-table td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
}

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

.data-table tr:nth-child(even) td {
  background: var(--bg-alt);
}
