/* ============================================================
   Remortgage Arena - Main Stylesheet
   Last updated: 2026
   ============================================================ */

/* ---- Variables ---- */
:root {
  --navy:        #071422;
  --navy-2:      #0c1e35;
  --navy-3:      #112748;
  --orange:      #e8610a;
  --orange-lt:   #ff7c2a;
  --orange-dim:  rgba(232, 97, 10, 0.14);
  --white:       #ffffff;
  --muted:       rgba(255, 255, 255, 0.55);
  --border:      rgba(232, 97, 10, 0.22);
  --border-soft: rgba(255, 255, 255, 0.08);
  --card:        rgba(255, 255, 255, 0.03);
  --card-hover:  rgba(255, 255, 255, 0.06);
  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   22px;
  --shadow:      0 24px 64px rgba(0, 0, 0, 0.5);
  --font-main:   'Outfit', sans-serif;
  --font-serif:  'Cormorant Garamond', serif;
}

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

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

body {
  font-family: var(--font-main);
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

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

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

a:hover {
  color: var(--orange-lt);
}

ul, ol {
  list-style: none;
}

/* ---- Layout ---- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 5rem 0;
}

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

.section--dark {
  background: var(--navy-3);
}

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.12;
}

h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  margin-bottom: 1.2rem;
}

h2 {
  font-size: clamp(1.9rem, 3.8vw, 2.9rem);
  margin-bottom: 0.9rem;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 0.7rem;
}

h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

.lead {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 640px;
}

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

strong {
  color: var(--white);
  font-weight: 600;
}

.section-tag {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.6rem;
}

.orange-line {
  width: 48px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
  margin: 1.2rem 0 2rem;
}

/* ---- Navigation ---- */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: 68px;
  padding: 0 2.5rem;
  padding-left: max(2.5rem, env(safe-area-inset-left));
  padding-right: max(2.5rem, env(safe-area-inset-right));
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(7, 20, 34, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}

.site-nav__logo {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.site-nav__logo svg {
  display: block;
}

.site-nav__right {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.site-nav__link {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}

.site-nav__link:hover {
  color: var(--white);
}

.site-nav__phone {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--orange);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: color 0.2s;
}

.site-nav__phone:hover {
  color: var(--orange-lt);
}

.site-nav__cta {
  background: var(--orange);
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.6rem 1.4rem;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}

.site-nav__cta:hover {
  background: var(--orange-lt);
  transform: translateY(-1px);
  color: var(--white);
}

/* Mobile nav toggle */
.site-nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.site-nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.site-nav__mobile {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: var(--navy-2);
  border-bottom: 1px solid var(--border-soft);
  padding: 1.5rem 2rem;
  z-index: 199;
  flex-direction: column;
  gap: 1rem;
}

.site-nav__mobile.is-open {
  display: flex;
}

.site-nav__mobile a {
  color: var(--white);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-soft);
}

.site-nav__mobile a:last-child {
  border-bottom: none;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}

.btn--primary {
  background: var(--orange);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--orange-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232, 97, 10, 0.4);
  color: var(--white);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn--ghost:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}

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

/* ---- Cards ---- */
.card {
  background: var(--card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s, border-color 0.25s;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 97, 10, 0.35);
}

.card--highlight {
  border-color: var(--border);
}

/* ---- Forms ---- */
.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0.45rem;
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: var(--font-main);
  font-size: 0.9rem;
  padding: 0.75rem 1rem;
  transition: border-color 0.2s, background 0.2s;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: rgba(255, 255, 255, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.form-group select option {
  background: var(--navy-2);
  color: var(--white);
}

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

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

.form-submit {
  width: 100%;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 700;
  padding: 0.9rem 1.5rem;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  margin-top: 0.5rem;
}

.form-submit:hover {
  background: var(--orange-lt);
  transform: translateY(-1px);
}

.checkbox-wrap {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.8rem;
}

.checkbox-wrap input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--orange);
  cursor: pointer;
}

.checkbox-wrap label {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
  cursor: pointer;
}

.radio-group {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.radio-btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  color: var(--muted);
}

.radio-btn input {
  display: none;
}

.radio-btn.active {
  border-color: var(--orange);
  background: rgba(232, 97, 10, 0.1);
  color: var(--white);
}

.consent-text {
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 0.9rem;
  line-height: 1.6;
}

.consent-text a {
  color: var(--orange);
  text-decoration: none;
}

.slider-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 0.45rem;
}

.slider-row input[type="range"] {
  flex: 1;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  border: none;
  padding: 0;
  accent-color: var(--orange);
  cursor: pointer;
}

.slider-input {
  width: 90px;
  text-align: right;
  flex-shrink: 0;
}

/* ---- Trust bar ---- */
.trust-bar {
  background: var(--navy-2);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  padding: 1.2rem 0;
}

.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: var(--muted);
}

.trust-bar__item strong {
  color: var(--white);
}

/* ---- Hero ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 7rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.hero--page {
  min-height: 50vh;
  padding: 7rem 0 3.5rem;
  border-bottom: 1px solid var(--border-soft);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(232, 97, 10, 0.1) 0%, transparent 65%);
  pointer-events: none;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--orange-dim);
  border: 1px solid rgba(232, 97, 10, 0.3);
  border-radius: 50px;
  padding: 0.4rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.5rem;
}

.hero__badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  display: inline-block;
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.3); }
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.hero__stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
}

.stat-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
}

.stat-lbl {
  font-size: 0.7rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ---- Location cards ---- */
.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.location-card {
  background: var(--card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s, border-color 0.25s;
  text-decoration: none;
  display: block;
  color: inherit;
}

.location-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}

.location-card:hover {
  transform: translateY(-5px);
  border-color: rgba(232, 97, 10, 0.35);
  color: inherit;
}

.location-card:hover::after {
  transform: scaleX(1);
}

.location-card--disabled {
  opacity: 0.45;
  pointer-events: none;
}

.location-card__num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(232, 97, 10, 0.2);
  line-height: 1;
  margin-bottom: 0.8rem;
}

.location-card__tag {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0.8rem 0 1.2rem;
}

.area-tag {
  font-size: 0.68rem;
  font-weight: 600;
  background: rgba(232, 97, 10, 0.1);
  border: 1px solid rgba(232, 97, 10, 0.2);
  color: var(--orange);
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.04em;
}

/* ---- Reason cards ---- */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.reason-card {
  background: var(--card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 1.8rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s, border-color 0.25s;
}

.reason-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}

.reason-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 97, 10, 0.3);
}

.reason-card:hover::after {
  transform: scaleX(1);
}

.reason-card__num {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(232, 97, 10, 0.65);
  line-height: 1;
  margin-bottom: 0.6rem;
}

.kw-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1rem;
}

.kw-tag {
  font-size: 0.68rem;
  font-weight: 600;
  background: rgba(232, 97, 10, 0.08);
  border: 1px solid rgba(232, 97, 10, 0.15);
  color: rgba(232, 97, 10, 0.7);
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.03em;
}

/* ---- Calculator ---- */
.calc-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.calc-card {
  background: rgba(12, 30, 53, 0.8);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.4rem;
  box-shadow: var(--shadow);
}

.calc-card h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.calc-result {
  margin-top: 1.5rem;
  border-radius: var(--radius-sm);
  overflow: hidden;
  display: none;
}

.calc-result.is-visible {
  display: block;
}

.calc-result__main {
  background: rgba(232, 97, 10, 0.08);
  border: 1px solid rgba(232, 97, 10, 0.2);
  border-radius: var(--radius-sm);
  padding: 1.4rem;
  margin-bottom: 1rem;
}

.calc-result__label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.calc-result__amount {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.calc-result__note {
  font-size: 0.78rem;
  color: rgba(232, 97, 10, 0.7);
}

.calc-debt-note {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  background: rgba(232, 97, 10, 0.06);
  border: 1px solid rgba(232, 97, 10, 0.2);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1rem;
  margin-top: 1rem;
}

.calc-debt-note p {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.calc-disclaimer {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1.6;
  margin-top: 1.2rem;
}

/* ---- Steps ---- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.step {
  padding: 1.5rem;
  border-left: 2px solid var(--border);
  padding-left: 1.5rem;
}

.step__num {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(232, 97, 10, 0.15);
  line-height: 1;
  margin-bottom: 0.6rem;
}

.step h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.step p {
  font-size: 0.85rem;
}

/* ---- Quote form section ---- */
.quote-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.trust-items {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  margin-top: 2rem;
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.trust-dot {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(232, 97, 10, 0.12);
  border: 1px solid rgba(232, 97, 10, 0.25);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-item h4 {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.trust-item p {
  font-size: 0.8rem;
  margin: 0;
}

.full-form {
  background: rgba(12, 30, 53, 0.8);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.4rem;
}

.full-form h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-bottom: 0.3rem;
}

.full-form > p {
  font-size: 0.82rem;
  margin-bottom: 1.5rem;
}

.form-section-divider {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(232, 97, 10, 0.15);
  margin: 1.4rem 0 1rem;
}

/* ---- SEO content ---- */
.seo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.seo-card {
  background: var(--card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 1.8rem;
}

.seo-card h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--orange-lt);
  margin-bottom: 0.8rem;
}

/* ---- FAQ ---- */
.faq-list {
  margin-top: 2.5rem;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  overflow: hidden;
}

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

.faq-item:last-child {
  border-bottom: none;
}

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

.faq-question:hover {
  background: rgba(255, 255, 255, 0.02);
}

.faq-question svg {
  flex-shrink: 0;
  color: var(--orange);
  transition: transform 0.3s;
}

.faq-item.is-open .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s;
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.75;
  padding: 0 1.5rem;
}

.faq-item.is-open .faq-answer {
  max-height: 500px;
  padding: 0 1.5rem 1.4rem;
}

/* ---- Google reviews strip ---- */
.reviews-strip {
  background: var(--navy-2);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  padding: 2rem 0;
}

.reviews-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.reviews-strip__left {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex: 1;
  min-width: 260px;
}

.reviews-strip__title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
  color: var(--white);
}

.reviews-strip__sub {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
}

.reviews-strip__right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.stars {
  display: flex;
  gap: 3px;
}

.reviews-score {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
}

.reviews-score span {
  font-family: var(--font-main);
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 400;
}

/* ---- Breadcrumb ---- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--muted);
  flex-wrap: wrap;
  margin-bottom: 1.2rem;
}

.breadcrumb a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: var(--orange);
}

.breadcrumb__sep {
  opacity: 0.4;
}

/* ---- Blog ---- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.blog-card {
  background: var(--card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.25s, border-color 0.25s;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 97, 10, 0.3);
}

.blog-card__thumb {
  height: 160px;
  background: linear-gradient(135deg, var(--navy-2), #1a3a5c);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.blog-card__cat {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--orange);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
}

.blog-card__body {
  padding: 1.4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card__meta {
  font-size: 0.72rem;
  color: var(--muted);
  margin-bottom: 0.6rem;
}

.blog-card h2 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
  color: var(--white);
}

.blog-card p {
  font-size: 0.83rem;
  flex: 1;
}

.blog-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--orange);
  text-decoration: none;
}

.blog-card__link:hover {
  color: var(--orange-lt);
}

/* ---- Article ---- */
.article-wrap {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  padding: 4rem 0;
  align-items: start;
}

.article-body h2 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  margin: 2.2rem 0 0.8rem;
}

.article-body h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  margin: 1.8rem 0 0.6rem;
  color: var(--orange-lt);
}

.article-body p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.85;
  margin-bottom: 1.2rem;
}

.article-body ul,
.article-body ol {
  margin: 0.8rem 0 1.2rem 1.5rem;
  list-style: disc;
}

.article-body ol {
  list-style: decimal;
}

.article-body li {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 0.4rem;
}

.highlight-box {
  background: rgba(232, 97, 10, 0.06);
  border: 1px solid rgba(232, 97, 10, 0.2);
  border-radius: var(--radius-sm);
  padding: 1.2rem 1.4rem;
  margin: 1.5rem 0;
}

.highlight-box p {
  margin: 0;
  font-size: 0.88rem;
}

.warning-box {
  background: rgba(255, 160, 0, 0.06);
  border: 1px solid rgba(255, 160, 0, 0.2);
  border-radius: var(--radius-sm);
  padding: 1.2rem 1.4rem;
  margin: 1.5rem 0;
}

.warning-box p {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.8);
}

.warning-box strong {
  color: #ffa500;
}

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin: 1.5rem 0;
}

.pros-box,
.cons-box {
  border-radius: var(--radius-sm);
  padding: 1.2rem;
}

.pros-box {
  background: rgba(34, 197, 94, 0.06);
  border: 1px solid rgba(34, 197, 94, 0.18);
}

.cons-box {
  background: rgba(239, 68, 68, 0.06);
  border: 1px solid rgba(239, 68, 68, 0.18);
}

.pros-box h4 {
  color: #22c55e;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.cons-box h4 {
  color: #ef4444;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.pros-box li,
.cons-box li {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.75);
  list-style: none;
  margin-bottom: 0.5rem;
  padding-left: 1.2rem;
  position: relative;
}

.pros-box li::before {
  content: "v";
  font-family: serif;
  position: absolute;
  left: 0;
  color: #22c55e;
}

.cons-box li::before {
  content: "x";
  font-family: serif;
  position: absolute;
  left: 0;
  color: #ef4444;
}

/* Sidebar */
.article-sidebar {
  position: sticky;
  top: 88px;
}

.sidebar-card {
  background: var(--card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 1.6rem;
  margin-bottom: 1.5rem;
}

.sidebar-card h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--border-soft);
}

.sidebar-card p {
  font-size: 0.82rem;
  margin-bottom: 1rem;
}

.related-link {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--border-soft);
  text-decoration: none;
}

.related-link:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.related-link__text {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.4;
}

.related-link:hover .related-link__text {
  color: var(--orange);
}

/* ---- Modals ---- */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal-overlay.is-open {
  display: flex;
}

.modal-box {
  background: var(--navy-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  max-width: 640px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
}

.modal-box h2 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.modal-box p,
.modal-box li {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 0.7rem;
}

.modal-box h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  margin: 1.2rem 0 0.5rem;
  color: var(--orange-lt);
}

.modal-box ul {
  margin-left: 1.2rem;
  list-style: disc;
}

/* ---- Cookie banner ---- */
.cookie-banner {
  position: fixed;
  bottom: 1.2rem;
  left: 1.2rem;
  right: 1.2rem;
  max-width: 520px;
  z-index: 300;
  background: var(--navy-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.3rem 1.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  display: none;
  animation: slideUp 0.5s 1.5s ease both;
}

.cookie-banner.is-visible {
  display: block;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.cookie-banner p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.cookie-btns {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

/* ---- Success message ---- */
.success-msg {
  display: none;
  text-align: center;
  padding: 2rem;
}

.success-msg.is-visible {
  display: block;
}

.success-msg__check {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.success-msg h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

/* ---- Scroll reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- WhatsApp button ---- */
.whatsapp-btn {
  position: fixed;
  bottom: 90px;
  right: 20px;
  z-index: 499;
  height: 50px;
  border-radius: 25px;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 16px 0 18px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}

.whatsapp-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}

.whatsapp-btn__label {
  color: #ffffff;
  font-family: var(--font-main);
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
}

/* ---- Sticky mobile bar ---- */
.sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 500;
  background: #081525;
  border-top: 1px solid rgba(232, 97, 10, 0.4);
  padding: 10px 16px;
  padding-bottom: max(10px, env(safe-area-inset-bottom));
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.4);
  gap: 10px;
  align-items: center;
}

.sticky-bar__text {
  flex: 1;
}

.sticky-bar__text span {
  display: block;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.sticky-bar__text strong {
  display: block;
  font-size: 0.95rem;
  color: #ffffff;
  font-weight: 700;
  margin-top: 1px;
}

.sticky-bar__quote {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-weight: 600;
  font-size: 0.88rem;
  padding: 0.65rem 1rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
}

.sticky-bar__call {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--orange);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.65rem 1.1rem;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
}

.sticky-bar__call:active {
  background: var(--orange-lt);
}

/* ---- Footer ---- */
.site-footer {
  background: #040e1a;
  padding: 3.5rem 0 0;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
}

.site-footer__brand p {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 280px;
  margin-top: 1rem;
}

.site-footer__col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
}

.site-footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.site-footer__col ul li {
  font-size: 0.83rem;
  color: var(--muted);
}

.site-footer__col ul li a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.site-footer__col ul li a:hover {
  color: var(--white);
}

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.8rem 0;
  text-align: center;
}

.site-footer__legal {
  font-size: 0.73rem;
  color: rgba(255, 255, 255, 0.25);
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto 1rem;
}

.site-footer__copyright {
  font-size: 0.73rem;
  color: rgba(255, 255, 255, 0.2);
  line-height: 1.6;
}

/* ---- Responsive ---- */
@media (max-width: 960px) {
  .calc-wrap { grid-template-columns: 1fr; }
  .quote-wrap { grid-template-columns: 1fr; }
  .article-wrap { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .site-nav__right { gap: 1rem; }
  .site-nav__link { display: none; }
  .site-nav__toggle { display: flex; }
  .sticky-bar { display: flex; }
  body { padding-bottom: 72px; }
  .whatsapp-btn { bottom: 88px; right: 16px; }
  .pros-cons { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .container { padding: 0 1rem; }
  .site-nav { padding: 0 1.2rem; }
  .hero__stats { gap: 1.5rem; }
  .reasons-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .site-footer__inner { grid-template-columns: 1fr; gap: 2rem; }
}
