/*
Theme Name:   ForexExplainer Child
Theme URI:    https://forexexplainer.com
Description:  Professional Forex Tools & Education - Astra Child Theme
Author:       ForexExplainer Team
Author URI:   https://forexexplainer.com
Template:     astra
Version:      1.0.0
License:      GPL v2 or later
License URI:  http://www.gnu.org/licenses/gpl-2.0.html
Text Domain:  forexexplainer-child
Tags:         forex, finance, tools, child-theme
*/

/* ============================================================
   FOREXEXPLAINER — PROFESSIONAL DESIGN SYSTEM
   Clean Light Theme · Navy + Gold Accents · Barlow + Lora
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400&family=Lora:ital,wght@0,400;0,600;0,700;1,400&family=Barlow+Condensed:wght@600;700;800&display=swap');

/* ── DESIGN TOKENS ── */
:root {
  /* Colors */
  --navy:        #0B1F3A;
  --navy-mid:    #142D52;
  --navy-light:  #1A3A6B;
  --gold:        #C28B2F;
  --gold-light:  #E5A83A;
  --gold-pale:   #FDF3E0;
  --green:       #0D9E6E;
  --green-light: #E6F7F2;
  --red:         #D63B3B;
  --red-light:   #FDF0F0;
  --white:       #FFFFFF;
  --off-white:   #F8F9FC;
  --gray-50:     #F1F4F8;
  --gray-100:    #E4E9F0;
  --gray-200:    #C8D1DD;
  --gray-400:    #8A97A8;
  --gray-600:    #4A5568;
  --gray-800:    #1A202C;

  /* Typography */
  --font-heading: 'Barlow', sans-serif;
  --font-body:    'Lora', serif;
  --font-ui:      'Barlow', sans-serif;
  --font-display: 'Barlow Condensed', sans-serif;

  /* Spacing */
  --space-xs:  4px;
  --space-sm:  8px;
  --space-md:  16px;
  --space-lg:  24px;
  --space-xl:  40px;
  --space-2xl: 64px;
  --space-3xl: 96px;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(11,31,58,0.08), 0 1px 2px rgba(11,31,58,0.04);
  --shadow-md:  0 4px 16px rgba(11,31,58,0.10), 0 2px 6px rgba(11,31,58,0.06);
  --shadow-lg:  0 12px 40px rgba(11,31,58,0.14), 0 4px 12px rgba(11,31,58,0.08);
  --shadow-xl:  0 24px 64px rgba(11,31,58,0.18);

  /* Radius */
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  28px;

  /* Transitions */
  --transition: all 0.22s ease;
}

/* ── BASE RESET ── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.75;
  color: var(--gray-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

/* ── TYPOGRAPHY SCALE ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: var(--space-md);
}
h1 { font-size: clamp(36px, 5vw, 60px); font-weight: 800; letter-spacing: -1.5px; }
h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 700; letter-spacing: -1px; }
h3 { font-size: clamp(20px, 2.5vw, 28px); font-weight: 700; }
h4 { font-size: 20px; font-weight: 600; }
h5 { font-size: 16px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }

p { margin-bottom: var(--space-md); }
a { color: var(--gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--navy); }

/* ── ASTRA OVERRIDES ── */
.ast-container { max-width: 1200px !important; }
#masthead { box-shadow: var(--shadow-sm); }

/* ── HEADER / NAV ── */
.site-header,
#masthead {
  background: var(--white) !important;
  border-bottom: 2px solid var(--gray-100);
}
.ast-site-identity a {
  font-family: var(--font-display) !important;
  font-size: 26px !important;
  font-weight: 800 !important;
  color: var(--navy) !important;
  letter-spacing: -0.5px !important;
}
.ast-site-identity a span { color: var(--gold); }
.main-header-menu .menu-item a {
  font-family: var(--font-ui) !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  color: var(--gray-600) !important;
  padding: 8px 14px !important;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.main-header-menu .menu-item a:hover,
.main-header-menu .menu-item.current-menu-item a {
  color: var(--navy) !important;
  background: var(--gray-50) !important;
}
.menu-item.menu-cta a {
  background: var(--navy) !important;
  color: var(--white) !important;
  border-radius: var(--radius-sm) !important;
  padding: 8px 20px !important;
}
.menu-item.menu-cta a:hover {
  background: var(--gold) !important;
}

/* ── UTILITY CLASSES ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.text-muted { color: var(--gray-400); }
.text-center { text-align: center; }
.section-label {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-pale);
  border: 1px solid rgba(194,139,47,0.25);
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 15px;
  padding: 13px 28px;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-light);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(194,139,47,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--gray-200);
}
.btn-outline:hover {
  border-color: var(--navy);
  color: var(--navy);
  background: var(--gray-50);
}
.btn-sm { font-size: 13px; padding: 9px 20px; }
.btn-lg { font-size: 17px; padding: 16px 36px; border-radius: var(--radius-lg); }

/* ── CARDS ── */
.card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: var(--gray-200);
}
.card-header {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--gray-100);
}
.card-icon {
  width: 52px; height: 52px;
  background: var(--gold-pale);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}
.card-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
}
.card-subtitle { font-size: 13px; color: var(--gray-400); margin: 2px 0 0; }

/* ── SECTIONS ── */
.section { padding: var(--space-3xl) 0; }
.section-sm { padding: var(--space-2xl) 0; }
.section-bg { background: var(--off-white); }
.section-navy {
  background: var(--navy);
  color: var(--white);
}
.section-navy h1, .section-navy h2, .section-navy h3 { color: var(--white); }

/* ── HERO ── */
.fx-hero {
  background: var(--navy);
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}
.fx-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(194,139,47,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(13,158,110,0.06) 0%, transparent 50%);
}
.hero-grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
}
.fx-hero .container {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-bottom: 60px;
}
.hero-left {}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-ui);
  font-size: 12px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(194,139,47,0.15);
  border: 1px solid rgba(194,139,47,0.3);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.hero-eyebrow::before { content: '●'; font-size: 7px; animation: blink 1.5s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.2} }
.fx-hero h1 {
  color: var(--white);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.05;
  margin-bottom: 20px;
}
.fx-hero h1 em {
  font-style: normal;
  color: var(--gold-light);
}
.fx-hero .hero-desc {
  font-family: var(--font-body);
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats {
  display: flex; gap: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1;
}
.hero-stat-label { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 4px; font-family: var(--font-ui); }

/* LIVE RATES PANEL */
.hero-right {}
.rates-panel {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  padding: 28px;
  backdrop-filter: blur(10px);
}
.rates-panel-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 20px;
}
.rates-panel-title {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}
.live-badge {
  display: flex; align-items: center; gap: 5px;
  font-family: var(--font-ui);
  font-size: 11px; font-weight: 700;
  color: var(--green);
  background: rgba(13,158,110,0.15);
  border: 1px solid rgba(13,158,110,0.3);
  padding: 3px 10px; border-radius: 50px;
}
.live-badge::before { content: '●'; font-size: 6px; animation: blink 1.5s infinite; }
.rate-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.rate-row:last-child { border-bottom: none; }
.rate-pair {
  font-family: var(--font-ui);
  font-size: 14px; font-weight: 700;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.5px;
  width: 80px;
}
.rate-price {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 700;
  color: var(--white);
  flex: 1; text-align: center;
}
.rate-change {
  font-family: var(--font-ui);
  font-size: 12px; font-weight: 600;
  padding: 3px 10px;
  border-radius: 50px;
  min-width: 80px; text-align: right;
}
.rate-change.up { color: var(--green); background: rgba(13,158,110,0.12); }
.rate-change.dn { color: var(--red); background: rgba(214,59,59,0.12); }
.rates-disclaimer {
  font-family: var(--font-ui);
  font-size: 11px; color: rgba(255,255,255,0.3);
  margin-top: 16px; text-align: center;
}

/* HERO WAVE BOTTOM */
.hero-wave {
  display: block; width: 100%; height: 60px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
  margin-top: -2px;
}

/* ── TOOLS GRID ── */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .tools-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px) { .tools-grid { grid-template-columns: 1fr; } }

/* ── TOOL CALC INPUTS ── */
.field-group { margin-bottom: 14px; }
.field-label {
  display: block;
  font-family: var(--font-ui);
  font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 6px;
}
.field-input,
.field-select {
  width: 100%; padding: 10px 14px;
  background: var(--gray-50);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-sm);
  font-family: var(--font-ui);
  font-size: 15px; color: var(--gray-800);
  outline: none; transition: var(--transition);
  appearance: none;
}
.field-input:focus, .field-select:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(194,139,47,0.12);
}
.field-row { display: grid; grid-template-columns: 1fr auto 1fr; gap: 8px; align-items: end; }
.swap-btn {
  width: 38px; height: 38px;
  background: var(--gray-50); border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-sm); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; transition: var(--transition);
  color: var(--gold);
}
.swap-btn:hover { background: var(--gold-pale); border-color: var(--gold); }

.calc-btn {
  width: 100%; padding: 11px;
  background: var(--navy);
  color: var(--white);
  border: none; border-radius: var(--radius-sm);
  font-family: var(--font-ui); font-weight: 700; font-size: 14px;
  cursor: pointer; margin-top: 6px; transition: var(--transition);
}
.calc-btn:hover { background: var(--navy-light); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.result-box {
  display: none; margin-top: 14px;
  background: var(--green-light);
  border: 1.5px solid rgba(13,158,110,0.25);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-family: var(--font-display);
  font-size: 20px; font-weight: 700;
  color: var(--green); text-align: center;
}
.result-box.negative {
  background: var(--red-light);
  border-color: rgba(214,59,59,0.25);
  color: var(--red);
}
.result-table { width: 100%; border-collapse: collapse; margin-top: 12px; font-family: var(--font-ui); }
.result-table tr { border-bottom: 1px solid var(--gray-100); }
.result-table td { padding: 7px 4px; font-size: 13px; color: var(--gray-600); }
.result-table td:last-child { text-align: right; font-weight: 700; color: var(--navy); }

/* ── BLOG CARDS ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media(max-width:900px){ .blog-grid { grid-template-columns: repeat(2,1fr); } }
@media(max-width:600px){ .blog-grid { grid-template-columns: 1fr; } }

.blog-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.blog-card-image {
  height: 196px;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 48px;
  position: relative;
}
.blog-category {
  position: absolute; top: 14px; left: 14px;
  font-family: var(--font-ui); font-size: 11px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  background: var(--gold); color: var(--white);
  padding: 3px 12px; border-radius: 50px;
}
.blog-card-body { padding: 24px; }
.blog-meta { font-family: var(--font-ui); font-size: 12px; color: var(--gray-400); margin-bottom: 10px; }
.blog-card-body h3 { font-size: 18px; margin-bottom: 10px; line-height: 1.4; }
.blog-card-body p { font-size: 14px; color: var(--gray-600); margin-bottom: 18px; }
.blog-read-more {
  font-family: var(--font-ui); font-size: 13px; font-weight: 700;
  color: var(--gold); display: inline-flex; align-items: center; gap: 6px;
  transition: var(--transition);
}
.blog-read-more:hover { gap: 10px; color: var(--navy); }

/* ── SINGLE POST ── */
.post-hero {
  background: var(--navy);
  padding: 100px 0 60px;
}
.post-header { max-width: 780px; margin: 0 auto; text-align: center; }
.post-header h1 { color: var(--white); font-size: clamp(28px, 4vw, 46px); }
.post-content { max-width: 780px; margin: 0 auto; padding: 60px 0; }
.post-content p { font-size: 18px; line-height: 1.85; color: var(--gray-800); margin-bottom: 24px; }
.post-content h2 { margin: 40px 0 16px; }
.post-content h3 { margin: 32px 0 12px; }
.post-content blockquote {
  border-left: 4px solid var(--gold);
  background: var(--gold-pale);
  padding: 20px 24px; border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 32px 0; font-style: italic; color: var(--gray-600);
}
.post-author-card {
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 28px; margin-top: 48px;
  display: flex; gap: 20px; align-items: start;
}
.author-avatar {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 20px; font-weight: 800; color: var(--white);
  flex-shrink: 0;
}

/* ── AUTHOR PAGE ── */
.author-hero {
  background: var(--navy);
  padding: 100px 0 60px;
  text-align: center;
}
.author-avatar-lg {
  width: 100px; height: 100px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 36px; font-weight: 800; color: var(--white);
  margin: 0 auto 20px;
  border: 4px solid rgba(255,255,255,0.2);
}
.author-name { color: var(--white); }
.author-bio { color: rgba(255,255,255,0.65); max-width: 560px; margin: 0 auto; }

/* ── BREADCRUMBS ── */
.breadcrumbs {
  font-family: var(--font-ui); font-size: 13px; color: var(--gray-400);
  padding: 14px 0; border-bottom: 1px solid var(--gray-100); margin-bottom: 40px;
}
.breadcrumbs a { color: var(--gray-400); }
.breadcrumbs a:hover { color: var(--gold); }
.breadcrumbs span { margin: 0 8px; }

/* ── ABOUT PAGE ── */
.about-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about-image-placeholder {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: var(--radius-xl);
  height: 420px;
  display: flex; align-items: center; justify-content: center;
  font-size: 80px;
}
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.team-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 28px; text-align: center;
  box-shadow: var(--shadow-sm); transition: var(--transition);
}
.team-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.team-avatar {
  width: 72px; height: 72px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 22px; font-weight: 800; color: var(--white);
  margin: 0 auto 16px;
}
.team-name { font-size: 18px; margin-bottom: 4px; }
.team-role { font-size: 13px; color: var(--gold); font-family: var(--font-ui); font-weight: 600; margin-bottom: 12px; }
.team-bio { font-size: 14px; color: var(--gray-600); }

/* ── CONTACT FORM ── */
.contact-split { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; }
.contact-info-item {
  display: flex; gap: 16px; align-items: start;
  padding: 20px; background: var(--white);
  border: 1px solid var(--gray-100); border-radius: var(--radius-md);
  margin-bottom: 16px; box-shadow: var(--shadow-sm);
}
.contact-icon {
  width: 44px; height: 44px;
  background: var(--gold-pale); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  padding: 40px; box-shadow: var(--shadow-md);
}
.form-group { margin-bottom: 20px; }
.form-label {
  display: block; font-family: var(--font-ui);
  font-size: 12px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: var(--gray-600); margin-bottom: 8px;
}
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 12px 16px;
  background: var(--gray-50); border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-sm); font-family: var(--font-body);
  font-size: 15px; color: var(--gray-800); outline: none; transition: var(--transition);
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold); background: var(--white);
  box-shadow: 0 0 0 3px rgba(194,139,47,0.12);
}
.form-textarea { resize: vertical; min-height: 140px; }

/* ── PRIVACY / TERMS / DISCLAIMER PAGES ── */
.legal-page { max-width: 820px; margin: 0 auto; }
.legal-section { margin-bottom: 40px; }
.legal-section h3 { font-size: 20px; color: var(--navy); margin-bottom: 12px; padding-bottom: 8px; border-bottom: 2px solid var(--gold-pale); }
.legal-section p, .legal-section li { font-size: 16px; color: var(--gray-600); line-height: 1.8; }
.legal-section ul { padding-left: 20px; }
.legal-section li { margin-bottom: 8px; }
.warning-box {
  background: var(--red-light); border: 1.5px solid rgba(214,59,59,0.25);
  border-radius: var(--radius-md); padding: 20px 24px; margin: 24px 0;
}
.warning-box p { color: var(--red); font-weight: 600; margin: 0; }
.info-box {
  background: var(--gold-pale); border: 1.5px solid rgba(194,139,47,0.25);
  border-radius: var(--radius-md); padding: 20px 24px; margin: 24px 0;
}

/* ── NEWSLETTER SECTION ── */
.newsletter-section {
  background: var(--navy);
  padding: var(--space-3xl) 0;
  text-align: center;
}
.newsletter-section h2 { color: var(--white); }
.newsletter-section p { color: rgba(255,255,255,0.6); }
.newsletter-form {
  display: flex; gap: 12px; justify-content: center;
  flex-wrap: wrap; margin-top: 32px;
}
.nl-input {
  padding: 14px 20px; border-radius: var(--radius-md);
  border: 1.5px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08);
  color: var(--white); font-family: var(--font-body); font-size: 15px;
  width: 340px; outline: none; transition: var(--transition);
}
.nl-input::placeholder { color: rgba(255,255,255,0.35); }
.nl-input:focus { border-color: var(--gold); background: rgba(255,255,255,0.12); }

/* ── FEATURES STRIP ── */
.features-strip {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px; background: var(--gray-100);
  border: 1px solid var(--gray-100); border-radius: var(--radius-lg);
  overflow: hidden; margin-top: var(--space-2xl);
}
.feature-strip-item {
  background: var(--white); padding: 28px 24px;
  text-align: center; transition: var(--transition);
}
.feature-strip-item:hover { background: var(--gold-pale); }
.feature-strip-icon { font-size: 28px; margin-bottom: 12px; }
.feature-strip-title { font-family: var(--font-ui); font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.feature-strip-desc { font-size: 13px; color: var(--gray-400); }

/* ── TESTIMONIALS ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testimonial-card {
  background: var(--white); border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg); padding: 28px;
  box-shadow: var(--shadow-sm);
}
.testimonial-stars { color: var(--gold); font-size: 16px; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-text { font-style: italic; color: var(--gray-600); margin-bottom: 20px; font-size: 15px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--navy); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 14px; font-weight: 800; color: var(--white);
}
.testimonial-name { font-family: var(--font-ui); font-size: 14px; font-weight: 700; color: var(--navy); }
.testimonial-location { font-size: 12px; color: var(--gray-400); }

/* ── FAQ ── */
.faq-item {
  border-bottom: 1px solid var(--gray-100);
  padding: 20px 0;
}
.faq-question {
  font-family: var(--font-ui); font-size: 17px; font-weight: 600; color: var(--navy);
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  user-select: none;
}
.faq-question::after { content: '+'; font-size: 22px; color: var(--gold); transition: var(--transition); }
.faq-item.open .faq-question::after { content: '−'; }
.faq-answer { display: none; padding-top: 14px; color: var(--gray-600); font-size: 15px; line-height: 1.75; }
.faq-item.open .faq-answer { display: block; }

/* ── FOOTER ── */
.site-footer, #colophon {
  background: var(--navy) !important;
  color: rgba(255,255,255,0.6) !important;
  padding: 64px 0 32px !important;
}
.footer-main {
  display: grid;
  grid-template-columns: 2.5fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1200px; margin: 0 auto;
  padding: 0 24px 48px;
}
.footer-brand .logo-text {
  font-family: var(--font-display);
  font-size: 24px; font-weight: 800;
  color: var(--white); letter-spacing: -0.5px;
}
.footer-brand .logo-text span { color: var(--gold-light); }
.footer-tagline { color: rgba(255,255,255,0.5); font-size: 14px; margin: 14px 0 24px; line-height: 1.7; }
.footer-col-title {
  font-family: var(--font-ui); font-size: 11px; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 20px;
}
.footer-col a {
  display: block; color: rgba(255,255,255,0.55); font-family: var(--font-ui);
  font-size: 14px; margin-bottom: 10px; transition: var(--transition);
}
.footer-col a:hover { color: var(--white); padding-left: 4px; }
.footer-bottom-bar {
  max-width: 1200px; margin: 0 auto;
  padding: 24px 24px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-ui); font-size: 13px; color: rgba(255,255,255,0.35);
  flex-wrap: wrap; gap: 12px;
}
.footer-legal-links { display: flex; gap: 20px; }
.footer-legal-links a { color: rgba(255,255,255,0.35); font-family: var(--font-ui); font-size: 13px; }
.footer-legal-links a:hover { color: var(--gold-light); }

/* ── SIDEBAR ── */
.sidebar-widget {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 24px; margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}
.sidebar-widget-title {
  font-family: var(--font-ui); font-size: 13px; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--navy); margin-bottom: 18px;
  padding-bottom: 12px; border-bottom: 2px solid var(--gold-pale);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .fx-hero .container { grid-template-columns: 1fr; gap: 48px; }
  .about-split { grid-template-columns: 1fr; }
  .contact-split { grid-template-columns: 1fr; }
  .features-strip { grid-template-columns: repeat(2,1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .hero-stats { gap: 20px; }
  .features-strip { grid-template-columns: 1fr 1fr; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-bottom-bar { flex-direction: column; text-align: center; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
}

/* ── PAGE TRANSITIONS ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-in { animation: fadeInUp 0.6s ease both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
