/* ==========================================================================
   Meilleure-Tireuse-Biere.fr - Style CSS Moderne & Affiliate High Conversion
   ========================================================================== */

:root {
  --primary: #0077B6;
  --primary-hover: #005F92;
  --primary-light: #E0F2FE;
  --secondary: #F57C00;
  --secondary-hover: #E65100;
  --accent-gold: #FFB703;
  --accent-gold-light: #FFFBEB;
  --bg-light: #F8FAFC;
  --bg-card: #FFFFFF;
  --text-dark: #0F172A;
  --text-body: #334155;
  --text-muted: #64748B;
  --border-color: #E2E8F0;
  --border-gold: #FCD34D;
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 14px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.12);
  --radius: 12px;
  --radius-lg: 16px;
  --font-main: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a:hover {
  color: var(--primary-hover);
}

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

/* Layout & Grid Helpers */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 50px 0;
}

.grid {
  display: grid;
  gap: 24px;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-3-1 {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
  align-items: start;
}

/* Header & Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-dark);
}

.brand-logo i {
  color: var(--secondary);
  font-size: 1.6rem;
}

.brand-logo span {
  color: var(--primary);
}

.main-nav ul {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 16px;
}

.main-nav a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
  padding: 8px 12px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--primary);
  background-color: var(--primary-light);
}

/* Dropdown Menu */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  cursor: pointer;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.2s ease;
  z-index: 100;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0 !important;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu li {
  width: 100%;
}

.nav-dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  font-size: 0.9rem;
  border-radius: 0;
  color: var(--text-dark);
  width: 100%;
}

.nav-dropdown-menu li a:hover {
  background: var(--primary-light);
  color: var(--primary);
}

.cta-header-btn {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-hover));
  color: white !important;
  font-weight: 700;
  padding: 10px 18px !important;
  border-radius: 30px;
  box-shadow: 0 4px 10px rgba(245, 124, 0, 0.25);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.cta-header-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(245, 124, 0, 0.35);
}

/* Mobile nav toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-dark);
}

/* Hero Section */
.hero {
  position: relative;
  background: linear-gradient(135deg, #0F172A, #1E293B, #0F2027);
  color: white;
  padding: 60px 0 70px;
  overflow: hidden;
}

.hero-sub {
  padding: 50px 0 60px;
  text-align: center;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: radial-gradient(circle at 80% 20%, rgba(245, 124, 0, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--accent-gold);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.hero h1 span {
  background: linear-gradient(90deg, #FFB703, #F57C00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 1.1rem;
  color: #CBD5E1;
  line-height: 1.6;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: #CBD5E1;
  max-width: 800px;
  margin: 0 auto 20px;
}

.hero-stats {
  display: flex;
  gap: 30px;
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-val {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent-gold);
}

.stat-lbl {
  font-size: 0.85rem;
  color: #94A3B8;
}

.hero-image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  border: 2px solid rgba(255,255,255,0.12);
}

.hero-image-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

/* Cards & Content Blocks */
.card {
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  padding: 24px;
  margin-bottom: 24px;
}

.card-highlight {
  border: 2px solid var(--accent-gold);
  background: linear-gradient(180deg, #FFFFFF, #FFFDF5);
  box-shadow: var(--shadow-md);
}

.border-gold {
  border-color: var(--accent-gold) !important;
}

/* SEO Content Block Styling */
.seo-content-block {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.seo-content-block h2 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 18px;
  letter-spacing: -0.3px;
  position: relative;
  padding-bottom: 10px;
}

.seo-content-block h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary), var(--accent-gold));
  border-radius: 2px;
}

.seo-content-block h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 30px 0 14px;
}

.seo-content-block h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 20px 0 10px;
}

.seo-content-block p {
  font-size: 1.02rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 18px;
}

.seo-content-block ul, 
.seo-content-block ol {
  padding-left: 24px;
  margin-bottom: 24px;
}

.seo-content-block li {
  font-size: 1rem;
  color: var(--text-body);
  margin-bottom: 10px;
  line-height: 1.6;
}

/* Highlight & Alert Boxes */
.highlight-box {
  background: var(--accent-gold-light);
  border-left: 4px solid var(--secondary);
  border-radius: var(--radius);
  padding: 24px;
  margin: 28px 0;
  border-top: 1px solid rgba(245, 124, 0, 0.2);
  border-right: 1px solid rgba(245, 124, 0, 0.2);
  border-bottom: 1px solid rgba(245, 124, 0, 0.2);
}

.highlight-box h4 {
  color: #B45309;
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.highlight-box p {
  color: #78350F;
  margin-bottom: 0;
  font-size: 0.98rem;
}

.alert-box {
  background: #FEF2F2;
  border-left: 4px solid #EF4444;
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 24px 0;
  color: #991B1B;
}

.alert-box h4 {
  color: #991B1B;
  font-weight: 800;
  margin-bottom: 8px;
}

/* Pros & Cons Card */
.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 28px 0;
}

.pro-box {
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
  border-radius: var(--radius);
  padding: 20px;
}

.pro-box h4 {
  color: #166534;
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pro-box ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.pro-box li {
  position: relative;
  padding-left: 24px;
  color: #14532D;
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.pro-box li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #22C55E;
  font-weight: 900;
}

.con-box {
  background: #FEF2F2;
  border: 1px solid #FECACA;
  border-radius: var(--radius);
  padding: 20px;
}

.con-box h4 {
  color: #991B1B;
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.con-box ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.con-box li {
  position: relative;
  padding-left: 24px;
  color: #7F1D1D;
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.con-box li::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: #EF4444;
  font-weight: 900;
}

/* Sidebar Affiliate Sticky Card */
.sidebar {
  position: relative;
}

.sticky-top {
  position: sticky;
  top: 90px;
}

.sidebar-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  padding: 24px;
  overflow: hidden;
}

.sidebar-card-badge {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-hover));
  color: white;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 12px;
}

.sidebar-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 16px;
  border: 1px solid var(--border-color);
}

.sidebar-card-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.sidebar-card-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
  font-size: 0.9rem;
}

.stars {
  color: var(--accent-gold);
}

.sidebar-price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 16px;
  padding: 12px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.sidebar-price-val {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary);
}

/* Simulator Widget Styling */
.widget-simulator {
  background: #0F172A;
  color: white;
  border-radius: 20px;
  padding: 36px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 183, 3, 0.3);
}

.sim-input-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sim-input-group label {
  font-size: 0.95rem;
  font-weight: 700;
  color: #E2E8F0;
}

.sim-val-display {
  color: var(--accent-gold);
  font-weight: 800;
}

.sim-range {
  width: 100%;
  accent-color: var(--secondary);
  height: 8px;
  border-radius: 4px;
  cursor: pointer;
}

/* Interactive Pressure Calculator & Diagnostic Widgets */
.widget-box {
  background: #0F172A;
  color: white;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 183, 3, 0.3);
  position: relative;
  overflow: hidden;
  margin: 32px 0;
}

.widget-box::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(245, 124, 0, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.widget-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.widget-icon {
  background: linear-gradient(135deg, var(--secondary), var(--accent-gold));
  color: #0F172A;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.widget-title h3 {
  color: white;
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.widget-title p {
  color: #94A3B8;
  font-size: 0.9rem;
  margin: 0;
}

.widget-controls {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 28px;
}

.control-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.control-group label {
  font-size: 0.88rem;
  font-weight: 700;
  color: #E2E8F0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.form-select, .form-control {
  width: 100%;
  padding: 12px 14px;
  font-size: 0.95rem;
  font-family: inherit;
  font-weight: 600;
  color: #0F172A;
  background-color: #FFFFFF;
  border: 2px solid #CBD5E1;
  border-radius: 8px;
  outline: none;
  transition: all 0.2s ease;
  cursor: pointer;
}

.form-select:focus, .form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 119, 182, 0.2);
}

.widget-display {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.widget-result-label {
  font-size: 0.85rem;
  color: #94A3B8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 700;
  display: block;
}

.widget-result-value {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent-gold);
  line-height: 1.1;
}

.widget-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 700;
}

.badge-optimal {
  background: rgba(34, 197, 94, 0.2);
  color: #4ADE80;
  border: 1px solid rgba(74, 222, 128, 0.4);
}

.badge-warning {
  background: rgba(234, 179, 8, 0.2);
  color: #FACC15;
  border: 1px solid rgba(250, 204, 21, 0.4);
}

.badge-danger {
  background: rgba(239, 68, 68, 0.2);
  color: #F87171;
  border: 1px solid rgba(248, 113, 113, 0.4);
}

/* Badges & Labels */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 700;
}

.badge-gold {
  background: rgba(255, 183, 3, 0.15);
  color: #B45309;
  border: 1px solid rgba(245, 124, 0, 0.3);
}

/* Tables */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  margin: 24px 0;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.95rem;
  background: white;
}

.table th, .table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border-color);
}

.table th {
  background: #F1F5F9;
  font-weight: 800;
  color: var(--text-dark);
}

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

/* Typography & Lists */
.lead {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #334155;
  font-weight: 500;
}

.custom-list, .check-list {
  padding-left: 20px;
  margin: 16px 0 24px;
}

.custom-list li, .check-list li {
  margin-bottom: 10px;
  font-size: 1rem;
  color: #334155;
}

.check-list {
  list-style: none;
  padding-left: 0;
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: #16A34A;
  font-weight: 900;
  font-size: 1.1rem;
}

.blockquote-gold {
  background: #FFFDF5;
  border-left: 4px solid var(--accent-gold);
  padding: 18px 22px;
  margin: 24px 0;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  font-weight: 600;
  color: #78350F;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 30px;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  text-align: center;
}

.btn-warning {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-hover));
  color: white !important;
  box-shadow: 0 4px 12px rgba(245, 124, 0, 0.25);
}

.btn-warning:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(245, 124, 0, 0.35);
}

.btn-outline-primary {
  background: white;
  border: 2px solid var(--primary);
  color: var(--primary) !important;
}

.btn-outline-primary:hover {
  background: rgba(0, 119, 182, 0.08);
}

.w-100 {
  width: 100%;
}

/* Category Quick Filters */
.category-pills {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.pill-btn {
  padding: 10px 22px;
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 30px;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 8px;
}

.pill-btn:hover,
.pill-btn.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(0, 119, 182, 0.25);
}

/* Machine Grid & Affiliate Cards */
.machines-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.card-machine {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

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

.card-badge-top {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 10;
  background: linear-gradient(135deg, var(--secondary), var(--secondary-hover));
  color: white;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.card-img-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
  background-color: #f1f5f9;
}

.card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card-machine:hover .card-img-wrapper img {
  transform: scale(1.05);
}

.card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}

.stars {
  color: var(--accent-gold);
  font-size: 0.9rem;
}

.rating-score {
  font-weight: 800;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.rating-count {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.card-title {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.card-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.spec-chip {
  background: #F1F5F9;
  color: #334155;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
}

.card-summary {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  flex-grow: 1;
}

.card-pros-cons {
  margin-bottom: 20px;
  font-size: 0.85rem;
}

.pro-item {
  color: #15803D;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid var(--border-color);
  margin-top: auto;
}

.card-price-box {
  display: flex;
  flex-direction: column;
}

.price-lbl {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.price-val {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
}

.btn-affiliate {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-hover));
  color: white !important;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 12px 20px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(245, 124, 0, 0.25);
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  justify-content: center;
}

.btn-affiliate:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(245, 124, 0, 0.4);
}

.btn-secondary-link {
  background: white;
  color: var(--primary) !important;
  border: 1px solid var(--primary);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 10px 16px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-secondary-link:hover {
  background: rgba(0, 119, 182, 0.05);
}

/* Modern FAQ Accordion Component */
.faq-section {
  padding: 60px 0;
}

.section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 40px;
}

.section-subtitle {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--secondary);
  background: rgba(245, 124, 0, 0.1);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.5px;
  line-height: 1.25;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-top: 10px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 920px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(245, 124, 0, 0.4);
  box-shadow: var(--shadow-md);
}

.faq-item.active {
  border-color: var(--secondary);
  box-shadow: 0 8px 25px rgba(245, 124, 0, 0.12);
  background: #FFFDF9;
}

.faq-question {
  width: 100%;
  padding: 22px 28px;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  gap: 16px;
}

.faq-question-title {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
}

.faq-icon-box {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.faq-item.active .faq-icon-box {
  background: linear-gradient(135deg, var(--secondary), var(--accent-gold));
  color: white;
}

.faq-chevron {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #F1F5F9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
  background: var(--secondary);
  color: white;
}

.faq-answer {
  display: none;
  padding: 0 28px 24px 84px;
  color: var(--text-body);
  font-size: 1rem;
  line-height: 1.7;
  border-top: 1px dashed rgba(0,0,0,0.06);
  margin-top: 4px;
  padding-top: 18px;
}

.faq-answer p {
  white-space: pre-line;
  margin: 0;
}

/* Footer */
.site-footer {
  background: #0F172A;
  color: #94A3B8;
  padding: 60px 0 30px;
  font-size: 0.9rem;
  margin-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  color: white;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  color: #94A3B8;
}

.footer-col a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.disclaimer-text {
  font-size: 0.8rem;
  color: #64748B;
  margin-top: 15px;
  line-height: 1.5;
}

/* Utility Helpers */
.mb-2 { margin-bottom: 8px; }
.mb-3 { margin-bottom: 16px; }
.mb-4 { margin-bottom: 24px; }
.mb-5 { margin-bottom: 40px; }
.mt-3 { margin-top: 16px; }
.mt-4 { margin-top: 24px; }
.p-3 { padding: 16px; }
.p-4 { padding: 24px; }
.align-center { text-align: center; }
.d-flex { display: flex; }
.align-items-center { align-items: center; }
.justify-content-between { justify-content: space-between; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 16px; }
.font-weight-bold { font-weight: 700; }
.text-muted { color: var(--text-muted); }
.text-primary { color: var(--primary); }
.text-warning { color: var(--secondary); }
.text-gold { color: var(--accent-gold); }

/* Responsive Media Queries */
@media (max-width: 992px) {
  .grid-3-1 {
    grid-template-columns: 1fr;
  }

  .pros-cons-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

@media (max-width: 768px) {
  .header-inner {
    height: 60px;
  }

  .seo-content-block, .widget-simulator {
    padding: 20px;
  }

  .mobile-toggle {
    display: block;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: white;
    padding: 20px;
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid var(--border-color);
  }

  .main-nav.active {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .widget-display {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .faq-question {
    padding: 16px 20px;
  }

  .faq-answer {
    padding: 0 20px 20px 20px;
  }
}