/* ============================================================
   TRADELYNQ — MAIN STYLESHEET
   Version: 1.0.0

   ── TO CHANGE COLORS: Edit the :root variables below ────────
   ── TO CHANGE FONTS:  Edit --font-head and --font-body ──────
   ── TO CHANGE SPACING: Edit --section-pad ───────────────────
============================================================ */

/* ── DESIGN TOKENS ──────────────────────────────────────────── */
:root {
  /* Brand Colors */
  --navy:         #1D3557;
  --navy-dark:    #142540;
  --navy-mid:     #254676;
  --orange:       #F47C20;
  --orange-dark:  #D96B14;
  --orange-light: rgba(244, 124, 32, 0.12);

  /* Neutral */
  --white:        #FFFFFF;
  --light-bg:     #F8F9FB;
  --light-bg2:    #EFF2F7;
  --text-dark:    #1A1A2E;
  --text-mid:     #3D4A5C;
  --text-light:   #6B7A90;
  --border:       #DDE3EC;

  /* Typography */
  --font-head:    'Montserrat', 'Arial Black', sans-serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --section-pad:  96px;
  --radius:       8px;
  --radius-lg:    16px;

  /* Shadows */
  --shadow:       0 4px 24px rgba(29, 53, 87, 0.10);
  --shadow-lg:    0 8px 40px rgba(29, 53, 87, 0.16);
  --shadow-orange:0 6px 20px rgba(244, 124, 32, 0.35);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--white);
  padding-top: 72px; /* navbar height */
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}

/* ── TYPOGRAPHY ──────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.2;
  color: var(--navy);
}
h1 { font-size: clamp(2rem,   4.5vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3vw,   2.4rem); }
h3 { font-size: clamp(1.1rem, 1.8vw, 1.4rem); }
h4 { font-size: 1.05rem; font-weight: 700; }

p {
  color: var(--text-mid);
  line-height: 1.75;
}

.text-orange    { color: var(--orange); }
.text-white     { color: var(--white) !important; }
.text-white-muted { color: rgba(255,255,255,0.75); }

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

.section        { padding: var(--section-pad) 0; }
.section-sm     { padding: 64px 0; }
.section-dark   { background: var(--navy); }
.section-light  { background: var(--light-bg); }
.section-light2 { background: var(--light-bg2); }

.section-header          { margin-bottom: 56px; }
.section-header.centered { text-align: center; }
.section-header p        { margin-top: 16px; font-size: 1.05rem; max-width: 640px; }
.section-header.centered p { margin: 16px auto 0; }

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  letter-spacing: 0.2px;
  white-space: nowrap;
}
.btn-auto { width: auto; }

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-orange);
  color: var(--white);
}

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

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

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

/* ── LABELS & ACCENTS ───────────────────────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange-light);
  color: var(--orange);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.section-label-light {
  background: rgba(255,255,255,0.15);
  color: var(--white);
}

.divider-orange {
  width: 52px;
  height: 4px;
  background: var(--orange);
  border-radius: 2px;
  margin: 14px 0 22px;
}
.centered .divider-orange,
.section-header.centered .divider-orange {
  margin: 14px auto 22px;
}

/* ── GRIDS ───────────────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }

/* ══════════════════════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  height: 72px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
  display: flex;
  align-items: center;
  transition: box-shadow 0.2s;
}
.navbar.scrolled {
  box-shadow: var(--shadow);
}
.navbar-inner {
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.35rem;
  flex-shrink: 0;
}
.navbar-logo .logo-wordmark { display: inline; }
.navbar-logo .logo-trade { color: var(--navy); }
.navbar-logo .logo-lynq  { color: var(--orange); }
.navbar-logo img { height: 36px; width: auto; }

/* Desktop nav */
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-mid);
  letter-spacing: 0.2px;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--navy);
  border-bottom-color: var(--orange);
}
.nav-cta {
  padding: 10px 20px;
  font-size: 0.82rem;
  flex-shrink: 0;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  width: 32px;
  height: 32px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s;
  transform-origin: center;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 72px;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('../images/featured-image-1.jpg');
  background-size: cover;
  background-position: center 30%;
  filter: brightness(0.45);
  transform: scale(1.02);
  transition: transform 8s ease;
}
.hero-bg:hover { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(20,37,64,0.88) 0%, rgba(20,37,64,0.60) 55%, rgba(20,37,64,0.25) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 80px 0;
}
.hero h1 {
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  max-width: 640px;
  margin-bottom: 40px;
  line-height: 1.75;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 52px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.85);
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.18);
}

/* ══════════════════════════════════════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════════════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-mid) 100%);
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(244,124,32,0.15) 0%, transparent 70%);
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
}
.page-hero h1 {
  color: var(--white);
  margin-bottom: 20px;
}
.page-hero p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
}
.page-hero--centered .page-hero-inner {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

/* ══════════════════════════════════════════════════════════════
   PROBLEM SECTION
══════════════════════════════════════════════════════════════ */
.problem-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 36px 0;
}
.problem-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-mid);
}
.problem-list li::before {
  content: '!';
  display: flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; min-width: 24px;
  background: rgba(244,124,32,0.12);
  color: var(--orange);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
}
.problem-close {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
  padding: 24px 28px;
  background: rgba(244,124,32,0.07);
  border-left: 4px solid var(--orange);
  border-radius: 0 var(--radius) var(--radius) 0;
  max-width: 700px;
  line-height: 1.6;
}

/* ══════════════════════════════════════════════════════════════
   SYSTEM INTRO
══════════════════════════════════════════════════════════════ */
.system-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.system-intro-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
}
.system-intro-benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: var(--text-mid);
  font-weight: 500;
}
.system-intro-benefits li::before {
  content: '';
  width: 22px; height: 22px; min-width: 22px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23F47C20'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") center/contain no-repeat;
}
.system-visual {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.system-visual::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(244,124,32,0.2) 0%, transparent 70%);
}
.system-visual-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
}
.system-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 13px 16px;
  margin-bottom: 8px;
  position: relative;
  transition: background 0.2s;
}
.system-pill:hover { background: rgba(255,255,255,0.12); }
.system-pill-dot {
  width: 9px; height: 9px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}
.system-pill-text {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
}

/* ══════════════════════════════════════════════════════════════
   COMPONENT CARDS (6-grid)
══════════════════════════════════════════════════════════════ */
.component-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}
.component-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.component-card:hover::before { transform: scaleX(1); }
.component-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.component-number {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 2.5rem;
  color: rgba(29,53,87,0.07);
  line-height: 1;
  margin-bottom: 12px;
}
.card-icon {
  width: 52px; height: 52px;
  background: var(--orange-light);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.card-icon svg { width: 26px; height: 26px; }
.component-card h3 { margin-bottom: 10px; }

/* ══════════════════════════════════════════════════════════════
   HOW IT WORKS (Steps)
══════════════════════════════════════════════════════════════ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 0;
  position: relative;
  margin-top: 56px;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 35px; left: 12.5%; right: 12.5%;
  height: 2px;
  background: linear-gradient(to right, var(--orange), var(--navy-mid));
  z-index: 0;
}
.step-item {
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}
.step-number {
  width: 70px; height: 70px;
  background: var(--navy);
  border: 4px solid var(--orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--white);
  margin: 0 auto 22px;
  position: relative;
}
.step-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 10px;
}
.step-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.65;
}

/* ══════════════════════════════════════════════════════════════
   OUTCOMES GRID
══════════════════════════════════════════════════════════════ */
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.outcome-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 17px 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-mid);
  transition: all 0.2s;
}
.outcome-item:hover {
  border-color: var(--orange);
  color: var(--navy);
  box-shadow: 0 3px 14px rgba(244,124,32,0.1);
}
.outcome-icon {
  width: 34px; height: 34px; min-width: 34px;
  background: var(--orange-light);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  line-height: 1;
}
.outcomes-close {
  margin-top: 44px;
  text-align: center;
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  max-width: 660px;
  margin-left: auto; margin-right: auto;
  line-height: 1.65;
}

/* ══════════════════════════════════════════════════════════════
   BEFORE / AFTER
══════════════════════════════════════════════════════════════ */
.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.ba-col {
  border-radius: var(--radius-lg);
  padding: 40px;
}
.ba-col.before {
  background: var(--light-bg2);
  border: 1px solid var(--border);
}
.ba-col.after  { background: var(--navy); }
.ba-tag {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
  display: block;
}
.ba-col.before .ba-tag { color: var(--text-light); }
.ba-col.after  .ba-tag { color: var(--orange); }
.ba-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.ba-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.95rem; font-weight: 500;
}
.ba-col.before .ba-list li { color: var(--text-mid); }
.ba-col.after  .ba-list li { color: rgba(255,255,255,0.85); }
.ba-col.before .ba-list li::before { content: '—'; color: var(--text-light); font-weight: 700; flex-shrink:0; margin-top:2px; }
.ba-col.after  .ba-list li::before { content: '✓'; color: var(--orange); font-weight: 700; flex-shrink:0; margin-top:2px; }

/* ══════════════════════════════════════════════════════════════
   PRICING CARDS (Buildout)
══════════════════════════════════════════════════════════════ */
.pricing-cards,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 26px;
}
.pricing-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 38px 28px;
  display: flex;
  flex-direction: column;
  transition: all 0.25s;
  position: relative;
}
.pricing-card.featured {
  border-color: var(--orange);
  box-shadow: 0 8px 48px rgba(244,124,32,0.18);
  transform: scale(1.03);
}
.pricing-card:not(.featured):hover {
  border-color: var(--navy-mid);
  box-shadow: var(--shadow);
}
.pricing-badge {
  position: absolute;
  top: -15px; left: 50%; transform: translateX(-50%);
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 100px;
  white-space: nowrap;
}
.pricing-tier {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 6px;
}
.pricing-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--navy);
  margin-bottom: 10px;
}
.pricing-price {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1;
}
.pricing-price span {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-light);
}
.pricing-desc {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 22px;
  line-height: 1.65;
}
.pricing-divider { height: 1px; background: var(--border); margin-bottom: 22px; }
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  flex: 1;
}
.pricing-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.88rem; color: var(--text-mid);
}
.pricing-features li::before {
  content: '✓';
  color: var(--orange); font-weight: 700; flex-shrink: 0; margin-top: 2px;
}
.pricing-card .btn { width: 100%; }
.pricing-footnote {
  text-align: center;
  margin-top: 32px;
  font-size: 0.95rem;
  color: var(--text-light);
}
.pricing-footnote a { color: var(--orange); font-weight: 600; }
.pricing-footnote a:hover { text-decoration: underline; }

/* ══════════════════════════════════════════════════════════════
   PARTNERSHIP CARDS (Monthly plans)
══════════════════════════════════════════════════════════════ */
.partnership-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.partnership-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 38px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.2s;
  border: 2px solid transparent;
}
.partnership-card.featured {
  border-color: var(--orange);
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
}
.partnership-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.partnership-tier { font-family: var(--font-head); font-weight: 700; font-size: 0.72rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--orange); margin-bottom: 6px; }
.partnership-name { font-family: var(--font-head); font-weight: 800; font-size: 1.35rem; color: var(--white); margin-bottom: 10px; }
.partnership-price { font-family: var(--font-head); font-weight: 900; font-size: 2rem; color: var(--white); margin-bottom: 8px; line-height: 1; }
.partnership-price span { font-size: 0.85rem; font-weight: 500; color: rgba(255,255,255,0.5); }
.partnership-desc { font-size: 0.88rem; color: rgba(255,255,255,0.6); margin-bottom: 22px; line-height: 1.65; }
.partnership-divider { height: 1px; background: rgba(255,255,255,0.1); margin-bottom: 22px; }
.partnership-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; flex: 1; }
.partnership-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.88rem; color: rgba(255,255,255,0.78); }
.partnership-features li::before { content: '✓'; color: var(--orange); font-weight: 700; flex-shrink: 0; margin-top: 2px; }
.partnership-card .btn { width: 100%; }

/* ══════════════════════════════════════════════════════════════
   WHY SECTION (Homepage)
══════════════════════════════════════════════════════════════ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.why-closing {
  margin-top: 20px;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.6;
}
.why-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.stat-box {
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  text-align: center;
}
.stat-box--white { background: var(--white); border: 1px solid var(--border); }
.stat-box--navy  { background: var(--navy); }
.stat-box--orange { background: var(--orange); }
.stat-num {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 2.2rem;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-box--white  .stat-num  { color: var(--orange); }
.stat-box--navy   .stat-num  { color: var(--orange); }
.stat-box--orange .stat-num  { color: var(--white); }
.stat-label { font-size: 0.82rem; font-weight: 600; }
.stat-box--white  .stat-label { color: var(--text-mid); }
.stat-box--navy   .stat-label { color: rgba(255,255,255,0.7); }
.stat-box--orange .stat-label { color: rgba(255,255,255,0.88); }

/* ══════════════════════════════════════════════════════════════
   FINAL CTA
══════════════════════════════════════════════════════════════ */
.final-cta {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: var(--section-pad) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(244,124,32,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.final-cta h2         { color: var(--white); margin-bottom: 16px; position: relative; }
.final-cta p          { color: rgba(255,255,255,0.75); font-size: 1.05rem; max-width: 540px; margin: 0 auto 36px; position: relative; }
.final-cta-btns       { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }
.final-cta--light     { background: var(--light-bg); }
.final-cta--light h2  { color: var(--navy); }
.final-cta--light p   { color: var(--text-mid); }

/* ══════════════════════════════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════════════════════════════ */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.about-aside { display: flex; flex-direction: column; gap: 18px; }
.about-quote {
  background: var(--light-bg2);
  border-radius: var(--radius-lg);
  padding: 28px;
  border-left: 4px solid var(--orange);
}
.about-quote p {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--navy);
  font-style: italic;
  line-height: 1.65;
}
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.value-grid  { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.value-item  { display: flex; gap: 20px; align-items: flex-start; padding: 26px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); transition: all 0.2s; }
.value-item:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.value-num   { font-family: var(--font-head); font-weight: 900; font-size: 1.8rem; color: var(--orange); line-height: 1; flex-shrink: 0; min-width: 40px; }
.value-item h4 { margin-bottom: 6px; }
.value-item p  { font-size: 0.9rem; }

.approach-grid  { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.approach-card  { background: var(--navy-mid); border-radius: var(--radius-lg); padding: 30px; text-align: center; border: 1px solid rgba(255,255,255,0.08); transition: transform 0.2s; }
.approach-card:hover { transform: translateY(-3px); }
.approach-icon  { width: 56px; height: 56px; background: rgba(244,124,32,0.18); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }
.approach-card h3 { color: var(--white); margin-bottom: 10px; font-size: 1.05rem; }
.approach-card p  { color: rgba(255,255,255,0.68); font-size: 0.88rem; }
.approach-banner { margin-top: 40px; background: rgba(244,124,32,0.1); border: 1px solid rgba(244,124,32,0.22); border-radius: var(--radius-lg); padding: 28px 36px; text-align: center; }
.approach-banner p { font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; color: var(--white); line-height: 1.65; }

/* ══════════════════════════════════════════════════════════════
   SYSTEMS PAGE
══════════════════════════════════════════════════════════════ */
.systems-jump-nav {
  background: var(--light-bg2);
  border-bottom: 1px solid var(--border);
  padding: 0;
  position: sticky;
  top: 72px;
  z-index: 100;
}
.jump-nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 0;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.jump-nav-inner::-webkit-scrollbar { display: none; }
.jump-nav-inner a {
  padding: 16px 22px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--text-mid);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
}
.jump-nav-inner a:hover {
  color: var(--orange);
  border-bottom-color: var(--orange);
}

.system-section { padding: 88px 0; }
.system-section:nth-child(even) { background: var(--light-bg); }
.system-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.system-inner--reverse { direction: rtl; }
.system-inner--reverse > * { direction: ltr; }
.system-includes {
  list-style: none;
  display: flex; flex-direction: column; gap: 12px;
  margin-top: 26px;
}
.system-includes li {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.95rem; font-weight: 500; color: var(--text-mid);
}
.system-includes li::before {
  content: '✓';
  display: flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; min-width: 22px;
  background: var(--orange-light);
  color: var(--orange);
  border-radius: 50%;
  font-size: 12px; font-weight: 700;
}
.system-visual-box {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 44px;
  min-height: 300px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
}
.system-visual-box::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(244,124,32,0.22) 0%, transparent 70%);
}
.system-big-num {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 6rem;
  color: rgba(244,124,32,0.15);
  line-height: 1;
  margin-bottom: 12px;
  position: relative;
}
.system-visual-box h3 { color: var(--white); font-size: 1.4rem; position: relative; margin-bottom: 12px; }
.system-visual-box p  { color: rgba(255,255,255,0.65); font-size: 0.92rem; position: relative; }

/* ══════════════════════════════════════════════════════════════
   PRICING PAGE — CUSTOM BOX
══════════════════════════════════════════════════════════════ */
.custom-box {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  border-radius: var(--radius-lg);
  padding: 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.custom-box::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(244,124,32,0.2) 0%, transparent 70%);
}
.custom-box h2  { color: var(--white); margin-bottom: 14px; position: relative; }
.custom-box p   { color: rgba(255,255,255,0.75); max-width: 540px; margin: 0 auto 28px; position: relative; }
.btn-auto { width: auto !important; display: inline-flex !important; }

/* ══════════════════════════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.65fr;
  gap: 64px;
  align-items: start;
}
.contact-info-item {
  display: flex; gap: 16px; align-items: flex-start;
  margin-bottom: 26px;
}
.contact-icon {
  width: 46px; height: 46px; min-width: 46px;
  background: var(--orange-light);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
}
.contact-icon svg { width: 22px; height: 22px; }
.contact-info-label {
  font-family: var(--font-head);
  font-weight: 700; font-size: 0.72rem;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--text-light); margin-bottom: 4px;
}
.contact-info-value { font-weight: 600; color: var(--navy); font-size: 1rem; }
.trust-col-title { font-family: var(--font-head); font-weight: 700; font-size: 0.85rem; color: var(--navy); margin-bottom: 14px; }
.trust-item {
  display: flex; align-items: center; gap: 10px;
  padding: 13px 16px;
  background: var(--light-bg);
  border-radius: var(--radius);
  margin-bottom: 10px;
  font-weight: 500; font-size: 0.9rem; color: var(--text-mid);
}
.trust-check {
  display: flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; min-width: 22px;
  background: var(--orange);
  color: white;
  border-radius: 50%;
  font-size: 11px; font-weight: 700;
}

/* Form card */
.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow);
}
.form-title {
  font-family: var(--font-head);
  font-weight: 800; font-size: 1.4rem;
  color: var(--navy); margin-bottom: 6px;
}
.form-subtitle { font-size: 0.9rem; color: var(--text-light); margin-bottom: 28px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { margin-bottom: 18px; }
label {
  display: block;
  font-family: var(--font-head);
  font-weight: 600; font-size: 0.8rem;
  color: var(--navy); margin-bottom: 6px; letter-spacing: 0.2px;
}
.required { color: var(--orange); }
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
textarea,
select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: none;
}
input:focus,
textarea:focus,
select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(244,124,32,0.1);
}
textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; padding: 17px; font-size: 1rem; margin-top: 4px; }
.form-note { text-align: center; margin-top: 14px; font-size: 0.8rem; color: var(--text-light); }

/* Form messages */
.form-message {
  padding: 14px 18px;
  border-radius: var(--radius);
  margin-bottom: 24px;
  font-size: 0.92rem;
  font-weight: 500;
}
.form-message--success {
  background: rgba(39,174,96,0.1);
  border: 1px solid rgba(39,174,96,0.3);
  color: #1e8449;
}
.form-message--error {
  background: rgba(192,57,43,0.08);
  border: 1px solid rgba(192,57,43,0.2);
  color: #c0392b;
}

/* ══════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════ */
.footer {
  background: var(--navy-dark);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand p {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  margin-top: 16px;
  max-width: 280px;
  line-height: 1.7;
}
.footer-logo {
  display: flex; align-items: center; gap: 8px;
}
.footer-logo .logo-wordmark { display: inline; font-family: var(--font-head); font-weight: 800; font-size: 1.2rem; }
.footer-logo .logo-trade { color: var(--white); }
.footer-logo .logo-lynq  { color: var(--orange); }
.footer-col h5 {
  font-family: var(--font-head);
  font-weight: 700; font-size: 0.78rem;
  letter-spacing: 1.2px; text-transform: uppercase;
  color: var(--orange); margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.58);
  font-size: 0.88rem; transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 0.82rem; }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
══════════════════════════════════════════════════════════════ */

/* Large tablets (≤1024px) */
@media (max-width: 1024px) {
  .why-grid        { gap: 40px; }
  .system-intro-grid { gap: 40px; }
}

/* Tablets (≤900px) */
@media (max-width: 900px) {
  .pricing-cards,
  .pricing-grid,
  .partnership-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }
  .pricing-card.featured { transform: none; }
  .grid-3  { grid-template-columns: 1fr 1fr; }
  .grid-4  { grid-template-columns: 1fr 1fr; }
  .approach-grid  { grid-template-columns: 1fr 1fr; }
  .steps-grid     { grid-template-columns: 1fr 1fr; }
  .steps-grid::before { display: none; }
  .footer-grid    { grid-template-columns: 1fr 1fr; }
  .value-grid     { grid-template-columns: 1fr 1fr; }
  .nav-links      { display: none; position: absolute; top: 72px; left: 0; right: 0; background: var(--white); flex-direction: column; padding: 20px 24px; gap: 4px; border-bottom: 1px solid var(--border); box-shadow: var(--shadow); z-index: 9998; }
  .nav-links.open { display: flex; }
  .nav-links a    { padding: 12px 8px; font-size: 0.92rem; border-bottom: 1px solid var(--border); }
  .nav-links li:last-child a { border-bottom: none; }
  .nav-toggle     { display: flex; }
  .nav-cta        { display: none; }
}

/* Mobile landscape (≤768px) */
@media (max-width: 768px) {
  :root { --section-pad: 72px; }
  .system-intro-grid { grid-template-columns: 1fr; }
  .about-intro-grid  { grid-template-columns: 1fr; }
  .why-grid          { grid-template-columns: 1fr; }
  .ba-grid           { grid-template-columns: 1fr; }
  .system-inner      { grid-template-columns: 1fr; gap: 36px; }
  .system-inner--reverse { direction: ltr; }
  .contact-grid      { grid-template-columns: 1fr; gap: 40px; }
  .outcomes-grid     { grid-template-columns: 1fr 1fr; }
  .problem-list      { grid-template-columns: 1fr 1fr; }
}

/* Mobile (≤640px) */
@media (max-width: 640px) {
  :root { --section-pad: 60px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .steps-grid    { grid-template-columns: 1fr; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .problem-list  { grid-template-columns: 1fr; }
  .approach-grid { grid-template-columns: 1fr; }
  .value-grid    { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr; }
  .form-row      { grid-template-columns: 1fr; }
  .why-stats     { grid-template-columns: 1fr 1fr; }
  .about-stats   { grid-template-columns: 1fr 1fr; }
  .form-card     { padding: 28px 20px; }
  .custom-box    { padding: 40px 24px; }
  .hero          { min-height: 100svh; }
  .hero-inner    { padding: 60px 0; }
  .page-hero     { padding: 56px 0 52px; }
}

/* Small mobile (≤400px) */
@media (max-width: 400px) {
  .hero-ctas     { flex-direction: column; }
  .final-cta-btns { flex-direction: column; align-items: center; }
  .final-cta-btns .btn { width: 100%; max-width: 300px; }
}

/* ══════════════════════════════════════════════════════════════
   FREE GROWTH REVIEW PAGE
══════════════════════════════════════════════════════════════ */
.review-audit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-bottom: 64px;
}
.audit-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.audit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--orange);
}
.audit-num {
  position: absolute;
  top: 20px; right: 24px;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 2.2rem;
  color: var(--border);
  line-height: 1;
}
.audit-icon { width: 40px; height: 40px; margin-bottom: 16px; }
.audit-icon svg { width: 100%; height: 100%; }
.audit-card h3 { margin-bottom: 10px; font-size: 1.05rem; }
.audit-card p  { font-size: .92rem; line-height: 1.7; }

.review-outcome-band {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 48px 52px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: center;
}
.review-outcome-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--white);
  line-height: 1.3;
}
.review-outcome-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.review-outcome-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255,255,255,.85);
  font-size: .97rem;
  line-height: 1.6;
}
.review-check {
  width: 22px; height: 22px; min-width: 22px;
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.review-no-obligation {
  margin-top: 36px;
  background: rgba(244,124,32,.08);
  border-left: 3px solid var(--orange);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 18px 20px;
  font-size: .92rem;
  color: var(--text-mid);
  line-height: 1.7;
}
.review-no-obligation strong { color: var(--navy); }

@media (max-width: 900px) {
  .review-audit-grid { grid-template-columns: 1fr 1fr; }
  .review-outcome-band { grid-template-columns: 1fr; gap: 28px; padding: 36px 28px; }
}
@media (max-width: 640px) {
  .review-audit-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════════
   PHOTO SPLIT SECTION
══════════════════════════════════════════════════════════════ */
.photo-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  position: relative;
}
.photo-split-pane {
  position: relative;
  overflow: hidden;
  min-height: 560px;
}
.photo-split-pane img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.6s ease;
}
.photo-split-pane:hover img { transform: scale(1.04); }
.photo-split-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 48px 40px;
}
.pane-left .photo-split-overlay {
  background: linear-gradient(0deg, rgba(20,37,64,0.88) 0%, rgba(20,37,64,0.30) 60%, transparent 100%);
}
.pane-right .photo-split-overlay {
  background: linear-gradient(0deg, rgba(20,37,64,0.85) 0%, rgba(20,37,64,0.25) 60%, transparent 100%);
}
.pane-tag {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(4px);
}
.pane-title {
  font-family: var(--font-head);
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 10px;
}
.pane-desc {
  color: rgba(255,255,255,0.78);
  font-size: 0.95rem;
  line-height: 1.65;
  max-width: 380px;
}
@media (max-width: 900px) {
  .photo-split { grid-template-columns: 1fr; }
  .photo-split-pane { min-height: 400px; }
}

/* ══════════════════════════════════════════════════════════════
   PHOTO CTA BANNER
══════════════════════════════════════════════════════════════ */
.photo-cta {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: center;
}
.photo-cta-bg {
  position: absolute; inset: 0;
  background-image: url('../images/featured-image-2.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.35);
}
.photo-cta-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(20,37,64,0.92) 0%, rgba(20,37,64,0.65) 60%, rgba(20,37,64,0.20) 100%);
}
.photo-cta-inner {
  position: relative;
  z-index: 2;
  max-width: 640px;
}
.photo-cta-inner h2 { color: #fff; margin-bottom: 16px; }
.photo-cta-inner p  { color: rgba(255,255,255,0.82); font-size: 1.05rem; margin-bottom: 32px; line-height: 1.75; }
.photo-cta-btns     { display: flex; gap: 16px; flex-wrap: wrap; }
@media (max-width: 600px) {
  .photo-cta { min-height: 420px; }
  .photo-cta-btns { flex-direction: column; }
}
