/* ===================== CSS Variables ===================== */
:root {
  --navy: #0D1B35;
  --navy-mid: #162C52;
  --navy-light: #1E3D6E;
  --gold: #D4A017;
  --gold-dark: #B8860B;
  --white: #FFFFFF;
  --text-mid: #8A9BB5;
  --border: rgba(212, 160, 23, 0.2);
  --border-light: rgba(255, 255, 255, 0.08);
}

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

html {
  scroll-behavior: smooth;
  width: 100%;
  overflow-x: clip;
}

body {
  background: var(--navy);
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: clip;
  width: 100%;
}

/* ===================== Typography ===================== */
h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

h1 em {
  font-style: italic;
  color: var(--gold);
}

h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}

h2 em {
  font-style: italic;
  color: var(--gold);
}

/* ===================== Navigation ===================== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100vw;
  z-index: 1000;
  padding: 1.25rem 5vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(13, 27, 53, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.logo {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--white);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  min-width: 0;
  white-space: nowrap;
}

.logo span {
  color: var(--gold);
  margin-left: 0.2em;
}

.logo-image-wrap .custom-logo-link {
  display: inline-flex;
  align-items: center;
}

.logo-image-wrap .custom-logo {
  max-height: 48px;
  max-width: min(260px, 62vw);
  width: auto;
}

.logo-footer.logo-image-wrap .custom-logo {
  max-height: 38px;
}

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

.nav-link {
  font-size: 0.875rem;
  color: var(--text-mid);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: color 0.2s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
}

.nav-cta {
  font-size: 0.875rem;
  font-weight: 500;
  background: var(--gold);
  color: var(--navy);
  text-decoration: none;
  padding: 0.6rem 1.4rem;
  border-radius: 4px;
  transition: background 0.2s;
}

.nav-cta:hover {
  background: #E8B420;
}

/* ===================== Buttons ===================== */
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.9rem 2rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
  display: inline-block;
}

.btn-gold:hover {
  background: #E8B420;
}

.btn-outline {
  background: transparent;
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.9rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
  display: inline-block;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ===================== Homepage Hero ===================== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 5vw 5rem;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 60% 50% at 70% 50%, rgba(212, 160, 23, 0.07) 0%, transparent 70%),
              radial-gradient(ellipse 40% 60% at 20% 80%, rgba(30, 61, 110, 0.5) 0%, transparent 60%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  background-image: linear-gradient(var(--gold) 1px, transparent 1px),
                    linear-gradient(90deg, var(--gold) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative;
  max-width: 780px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 2rem;
}

.hero-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.hero-content h1 {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
}

.hero .hero-sub {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 560px;
  margin-bottom: 3rem;
}

.hero-sub strong {
  color: var(--white);
  font-weight: 500;
}

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

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 5vw;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.78rem;
  color: var(--text-mid);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-scroll::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--text-mid);
}

/* ===================== Strapline ===================== */
.strapline {
  background: var(--gold);
  padding: 1.25rem 5vw;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.strapline p {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  text-align: center;
  letter-spacing: 0.02em;
}

.strapline-divider {
  width: 4px;
  height: 4px;
  background: rgba(13, 27, 53, 0.3);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ===================== Inner Page Hero ===================== */
.page-hero {
  padding: 9rem 5vw 5rem;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.page-hero .hero-bg {
  background: radial-gradient(ellipse 60% 60% at 75% 50%, rgba(212, 160, 23, 0.08) 0%, transparent 65%);
}

.page-hero .hero-grid {
  opacity: 0.03;
}

.page-hero-inner {
  position: relative;
  max-width: 680px;
}

.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold-dark);
}

.hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.page-hero-inner p {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.65);
  max-width: 520px;
  line-height: 1.75;
}

/* ===================== Section Styles ===================== */
section {
  padding: 5rem 5vw;
}

.section-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section-label::after {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold-dark);
}

/* ===================== Homepage: What We Do ===================== */
.what-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.what-text p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.what-text p strong {
  color: var(--white);
  font-weight: 500;
}

.pillars {
  display: flex;
  flex-direction: column;
  gap: 1px;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}

.pillar {
  padding: 1.5rem 1.75rem;
  background: rgba(22, 44, 82, 0.4);
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: background 0.2s;
  text-decoration: none;
  color: inherit;
}

.pillar:last-child {
  border-bottom: none;
}

.pillar:hover {
  background: rgba(22, 44, 82, 0.7);
}

.pillar-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border: 1px solid var(--border);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.pillar h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: var(--white);
}

.pillar p {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ===================== Homepage: Solutions Grid ===================== */
.solutions-section {
  background: rgba(22, 44, 82, 0.2);
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.solution-card {
  background: rgba(13, 27, 53, 0.8);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem 1.75rem;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.25s, transform 0.25s;
  display: block;
  position: relative;
  overflow: hidden;
}

.solution-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}

.solution-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.solution-card:hover::before {
  transform: scaleX(1);
}

.card-icon {
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1.25rem;
  background: rgba(212, 160, 23, 0.08);
}

.card-status {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 3px;
  margin-bottom: 0.75rem;
  background: rgba(212, 160, 23, 0.15);
  color: var(--gold);
}

.solution-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--white);
}

.solution-card p {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.card-link {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.card-link::after {
  content: '→';
  transition: transform 0.2s;
}

.solution-card:hover .card-link::after {
  transform: translateX(4px);
}

/* ===================== Homepage: Why Us ===================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  margin-top: 3rem;
}

.why-card {
  background: var(--navy);
  padding: 2rem 1.75rem;
}

.why-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.why-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.why-card p {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ===================== Solutions: Products ===================== */
.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1rem;
}

.product-card {
  background: rgba(22, 44, 82, 0.3);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s, transform 0.25s;
}

.product-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}

.product-card-top {
  padding: 2.5rem 2.5rem 2rem;
  flex: 1;
}

.product-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.product-icon {
  width: 52px;
  height: 52px;
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  background: rgba(212, 160, 23, 0.08);
}

.product-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(212, 160, 23, 0.12);
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 3px;
}

.product-badge::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
}

.product-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--white);
}

.product-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.pill {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-mid);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
}

.product-card-footer {
  padding: 1.25rem 2.5rem;
  border-top: 1px solid var(--border);
  background: rgba(13, 27, 53, 0.4);
}

.product-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.2s;
}

.product-link:hover {
  gap: 0.8rem;
}

.product-link::after {
  content: '→';
}

/* ===================== Common: Does Grid ===================== */
.does-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  margin-top: 2.5rem;
}

.does-card {
  background: var(--navy);
  padding: 2rem 1.75rem;
}

.does-icon {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  display: block;
}

.does-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.does-card p {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ===================== Chatbot: Demo Widget ===================== */
.demo-widget {
  background: rgba(22, 44, 82, 0.5);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}

.demo-header {
  background: var(--navy-mid);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.demo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.demo-title {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--white);
}

.demo-status {
  font-size: 0.72rem;
  color: var(--gold);
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.demo-status::before {
  content: '';
  width: 5px;
  height: 5px;
  background: #22c55e;
  border-radius: 50%;
}

.demo-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.msg {
  max-width: 80%;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 0.875rem;
  line-height: 1.55;
}

.msg-bot {
  background: rgba(22, 44, 82, 0.8);
  color: rgba(255, 255, 255, 0.85);
  align-self: flex-start;
  border: 1px solid var(--border-light);
}

.msg-user {
  background: var(--gold);
  color: var(--navy);
  align-self: flex-end;
  font-weight: 500;
}

.demo-input {
  padding: 1rem 1.25rem;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 0.5rem;
}

.demo-input-field {
  flex: 1;
  background: rgba(13, 27, 53, 0.7);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.6rem 0.9rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  color: var(--text-mid);
  outline: none;
}

.demo-send {
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 4px;
  padding: 0.6rem 0.9rem;
  font-weight: 600;
  font-size: 0.8rem;
  cursor: pointer;
}

/* ===================== Chatbot: Why Section ===================== */
.why-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-top: 1rem;
}

.why-text p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.why-text p strong {
  color: var(--white);
  font-weight: 500;
}

.problems {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.problem {
  background: rgba(22, 44, 82, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  padding: 1.25rem 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.problem-x {
  color: #ef4444;
  font-weight: 600;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.problem h4 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: rgba(255, 255, 255, 0.7);
}

.problem p {
  font-size: 0.82rem;
  color: var(--text-mid);
  line-height: 1.55;
}

/* ===================== Chatbot: How It Works ===================== */
.hiw-hero {
  padding: 5rem 5vw 0;
  position: relative;
  border-top: 1px solid var(--border);
}

.process-section {
  background: rgba(22, 44, 82, 0.15);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
}

.hero-right p {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
  margin-bottom: 1rem;
}

/* ===================== Chatbot: Timeline ===================== */
.timeline-strip {
  background: var(--gold);
  padding: 1rem 5vw;
  display: flex;
  gap: 0;
  overflow-x: auto;
}

.tl-item {
  flex: 1;
  min-width: 120px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tl-item:not(:last-child)::after {
  content: '›';
  color: rgba(13, 27, 53, 0.4);
  font-size: 1.2rem;
  margin-left: auto;
  padding-right: 0.5rem;
}

.tl-num {
  font-family: 'Playfair Display', serif;
  font-size: 0.8rem;
  font-weight: 900;
  color: rgba(13, 27, 53, 0.45);
}

.tl-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
}

/* ===================== Chatbot: Steps ===================== */
.steps-wrapper {
  padding: 0 5vw;
}

.step-row {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 0;
  border-bottom: 1px solid var(--border);
}

.step-row:last-child {
  border-bottom: none;
}

.step-left {
  padding: 4rem 3rem 4rem 0;
  border-right: 1px solid var(--border);
}

.step-right {
  padding: 4rem 0 4rem 3.5rem;
}

.step-num-big {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  color: var(--gold);
  opacity: 0.2;
  margin-bottom: 1rem;
  display: block;
}

.step-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 3px;
  margin-bottom: 0.75rem;
}

.tag-navy {
  background: rgba(212, 160, 23, 0.12);
  color: var(--gold);
}

.step-left h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--white);
}

.step-intro {
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

.detail-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.detail-list li {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
}

.detail-list li::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.5rem;
}

/* ===================== Chatbot: Support Cards ===================== */
.support-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  margin-top: 2rem;
}

.support-card {
  background: var(--navy-mid);
  padding: 1.5rem;
}

.support-icon {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  display: block;
}

.support-card h4 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--white);
}

.support-card p {
  font-size: 0.82rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ===================== Review Manager: Stats ===================== */
.stat-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.stat {
  background: rgba(22, 44, 82, 0.5);
  padding: 2rem 1.75rem;
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat p {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.55;
}

/* ===================== Review Manager: Features ===================== */
.features-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.feature-list-full {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.feature-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: rgba(22, 44, 82, 0.3);
  border: 1px solid var(--border);
  border-radius: 6px;
}

.feature-item-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}

.feature-item h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: var(--white);
}

.feature-item p {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ===================== Review Manager: Platforms ===================== */
.platforms {
  background: rgba(22, 44, 82, 0.3);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2rem;
}

.platforms h3 {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 1.25rem;
}

.platform-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.platform-pill {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
}

/* ===================== Website Audit: Preview ===================== */
.audit-preview {
  background: rgba(22, 44, 82, 0.5);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}

.audit-header {
  background: var(--navy-mid);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.audit-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.audit-title {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--white);
}

.audit-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.audit-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.audit-label {
  font-size: 0.82rem;
  color: var(--text-mid);
  flex: 1;
}

.audit-bar-wrap {
  flex: 2;
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 3px;
  overflow: hidden;
}

.audit-bar {
  height: 100%;
  border-radius: 3px;
}

.bar-low {
  background: #ef4444;
  width: 25%;
}

.bar-mid {
  background: var(--gold);
  width: 55%;
}

.bar-good {
  background: #22c55e;
  width: 80%;
}

.audit-score {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--white);
  min-width: 32px;
  text-align: right;
}

.audit-finding {
  background: rgba(212, 160, 23, 0.08);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.75rem 1rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}

.audit-finding::before {
  content: '→';
  color: var(--gold);
  flex-shrink: 0;
}

/* ===================== Website Audit: Check Cards ===================== */
.what-we-check {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.check-card {
  background: rgba(22, 44, 82, 0.3);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.75rem;
}

.check-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.check-card h3 span {
  font-size: 1.2rem;
}

.check-card-description {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin-bottom: 0.85rem;
}

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.check-list li {
  font-size: 0.85rem;
  color: var(--text-mid);
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}

.check-list li::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.45rem;
}

/* ===================== Visibility Audit: Panel ===================== */
.visibility-panel {
  background: rgba(22, 44, 82, 0.5);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}

.vp-header {
  background: var(--navy-mid);
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.vp-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.vp-title {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--white);
}

.vp-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.vp-channel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1rem;
  background: rgba(13, 27, 53, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 6px;
}

.vp-channel-name {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--white);
}

.vp-badge {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 3px;
}

.badge-poor {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
}

.badge-fair {
  background: rgba(212, 160, 23, 0.15);
  color: var(--gold);
}

.badge-good {
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
}

.vp-note {
  font-size: 0.78rem;
  color: var(--text-mid);
  padding: 0.75rem 1rem;
  background: rgba(212, 160, 23, 0.06);
  border: 1px solid var(--border);
  border-radius: 6px;
  line-height: 1.55;
}

/* ===================== Visibility Audit: SEO/AEO ===================== */
.seo-aeo-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
}

.pillar-block {
  background: rgba(22, 44, 82, 0.3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
}

.pillar-block h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.pillar-block .sub {
  font-size: 0.85rem;
  color: var(--text-mid);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.explainer {
  background: rgba(22, 44, 82, 0.3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2.5rem 3rem;
  margin-top: 1rem;
}

.explainer h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--white);
}

.explainer p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
}

/* ===================== Common: Benefits ===================== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  margin-top: 2.5rem;
}

.benefit {
  background: var(--navy);
  padding: 2rem 1.75rem;
  display: flex;
  gap: 1.25rem;
}

.benefit-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold);
  opacity: 0.35;
  line-height: 1;
  flex-shrink: 0;
}

.benefit h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.benefit p {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ===================== CTA Band ===================== */
.cta-band {
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  padding: 5rem 5vw;
  text-align: center;
}

.cta-band p.sub {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  max-width: 460px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}

/* ===================== Contact Page ===================== */
.contact-section {
  background: rgba(22, 44, 82, 0.18);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
}

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

.contact-meta {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(13, 27, 53, 0.45);
}

.contact-meta p {
  margin: 0;
  font-size: 0.92rem;
}

.contact-meta p + p {
  margin-top: 0.55rem;
  padding-top: 0.55rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-meta strong {
  color: var(--white);
  margin-right: 0.2rem;
}

.contact-meta a {
  color: #c8d7ef;
  text-decoration: none;
}

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

.contact-form-wrap {
  background: rgba(13, 27, 53, 0.75);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-form .form-field {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.45rem;
}

.contact-form .form-field label {
  display: block;
  width: 100%;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--white);
}

.contact-form .form-field input,
.contact-form .form-field textarea {
  display: block;
  width: 100%;
  min-height: 46px;
  background: rgba(22, 44, 82, 0.5);
  border: 1px solid var(--border-light);
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  border-radius: 6px;
  padding: 0.78rem 0.9rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.contact-form .form-field textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form .form-field input:focus,
.contact-form .form-field textarea:focus {
  border-color: var(--gold);
  background: rgba(22, 44, 82, 0.75);
  box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.18);
}

.contact-form .btn-gold {
  align-self: flex-start;
  margin-top: 0.25rem;
  min-width: 180px;
}

.contact-notice {
  margin-bottom: 1rem;
  border-radius: 6px;
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
}

.contact-notice-success {
  border: 1px solid rgba(34, 197, 94, 0.35);
  background: rgba(34, 197, 94, 0.12);
  color: #86efac;
}

.contact-notice-error {
  border: 1px solid rgba(239, 68, 68, 0.35);
  background: rgba(239, 68, 68, 0.12);
  color: #fda4af;
}

/* ===================== Blog Listing ===================== */
.blog-listing-section {
  max-width: 1180px;
  margin: 0 auto;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.blog-card {
  background: rgba(13, 27, 53, 0.75);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, border-color 0.2s;
}

.blog-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
}

.blog-card-thumb {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.blog-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-card-body {
  padding: 1.1rem 1.15rem 1.25rem;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.7rem;
  font-size: 0.75rem;
  color: var(--text-mid);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.blog-meta-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
}

.blog-card-title {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  line-height: 1.25;
}

.blog-card-title a {
  color: var(--white);
  text-decoration: none;
}

.blog-card-title a:hover {
  color: var(--gold);
}

.blog-card-excerpt {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.8rem;
}

.blog-read-more {
  color: var(--gold);
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 600;
}

.blog-pagination {
  margin-top: 2rem;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.blog-pagination .page-numbers {
  border: 1px solid var(--border);
  color: var(--white);
  text-decoration: none;
  border-radius: 6px;
  padding: 0.45rem 0.7rem;
  font-size: 0.85rem;
}

.blog-pagination .page-numbers.current {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  font-weight: 600;
}

.blog-empty {
  border: 1px dashed var(--border);
  border-radius: 10px;
  padding: 2rem;
  background: rgba(13, 27, 53, 0.5);
}

.blog-empty h2 {
  margin-bottom: 0.4rem;
}

.blog-empty p {
  color: var(--text-mid);
}

/* ===================== Blog Single ===================== */
.blog-single-section {
  max-width: 940px;
  margin: 0 auto;
}

.blog-single-article {
  background: rgba(13, 27, 53, 0.75);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.blog-single-thumb {
  border-bottom: 1px solid var(--border);
}

.blog-single-thumb img {
  width: 100%;
  height: auto;
  display: block;
}

.blog-single-content {
  padding: 2rem;
  color: rgba(255, 255, 255, 0.85);
}

.blog-single-content p,
.blog-single-content li {
  line-height: 1.8;
}

.blog-single-content h2,
.blog-single-content h3,
.blog-single-content h4 {
  margin-top: 1.5rem;
}

.blog-single-footer {
  padding: 0 2rem 2rem;
}

/* ===================== Footer ===================== */
footer {
  padding: 2.5rem 5vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  border-top: 1px solid var(--border-light);
}

footer p {
  font-size: 0.82rem;
  color: var(--text-mid);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  font-size: 0.82rem;
  color: var(--text-mid);
  text-decoration: none;
  transition: color 0.2s;
}

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

/* ===================== Animations ===================== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-eyebrow {
  animation: fadeUp 0.7s ease both 0.1s;
}

.hero-content h1 {
  animation: fadeUp 0.7s ease both 0.2s;
}

.hero .hero-sub {
  animation: fadeUp 0.7s ease both 0.3s;
}

.hero-actions {
  animation: fadeUp 0.7s ease both 0.4s;
}

.page-hero-inner > * {
  animation: fadeUp 0.6s ease both;
}

.page-hero-inner > *:nth-child(2) {
  animation-delay: 0.1s;
}

.page-hero-inner > *:nth-child(3) {
  animation-delay: 0.2s;
}

.hero-layout > * {
  animation: fadeUp 0.6s ease both;
}

.hero-layout > *:nth-child(2) {
  animation-delay: 0.2s;
}

/* ===================== Mobile Nav Toggle ===================== */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1002;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: 0.3s;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===================== Responsive ===================== */
@media (max-width: 860px) {
  nav {
    padding: 0.9rem 4vw;
    min-height: 68px;
  }

  body.nav-open {
    overflow: hidden;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    height: 500px;
    max-height: calc(100vh - 68px);
    background: rgba(13, 27, 53, 0.995);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0.5rem;
    padding: 1rem 1rem 1.5rem;
    overflow-y: auto;
    z-index: 1001;
    border-top: 1px solid var(--border);
  }

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

  .nav-links .nav-link {
    display: block;
    font-size: 1rem;
    width: 100%;
    text-align: left;
    padding: 0.85rem 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
  }

  .nav-links .nav-cta {
    font-size: 1rem;
    width: 100%;
    text-align: center;
    margin-top: 0.35rem;
    padding: 0.85rem 0.8rem;
  }

  .logo {
    font-size: 1.05rem;
    max-width: calc(100% - 58px);
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .logo-image-wrap .custom-logo {
    max-height: 40px;
    max-width: calc(100vw - 88px);
  }

  .hero-layout {
    grid-template-columns: 1fr;
  }

  .what-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

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

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

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

  .stat-block {
    grid-template-columns: 1fr;
  }

  .features-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .what-we-check {
    grid-template-columns: 1fr;
  }

  .seo-aeo-layout {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

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

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

  .contact-form-wrap {
    padding: 1.25rem;
  }

  .contact-form .btn-gold {
    width: 100%;
    min-width: 0;
  }

  footer {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1rem;
    padding: 1.5rem 4vw 2rem;
  }

  .footer-links {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.4rem 0.8rem;
  }

  .footer-links a {
    font-size: 0.9rem;
    line-height: 1.4;
    padding: 0.15rem 0;
  }

  footer p {
    font-size: 0.8rem;
    line-height: 1.45;
  }

  .support-cards {
    grid-template-columns: 1fr;
  }

  .why-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .step-row {
    grid-template-columns: 1fr;
  }

  .step-left {
    padding: 3rem 0 1.5rem;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .step-right {
    padding: 2rem 0 3rem;
  }
}

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