/* ============================================================
   BRICK ROAD KAPITAL — STYLESHEET
   Inspired by Milk Road's design language
   Palette: #E8400A (orange), #F5F0DC (cream), #3D1A0A (dark brown),
            #FFFFFF (white), #0D0D1A (near-black navy)
   ============================================================ */

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

:root {
  --orange:       #E8400A;
  --orange-dark:  #C43208;
  --orange-light: #FF5C1F;
  --cream:        #F5F0DC;
  --cream-dark:   #EDE5C8;
  --brown-dark:   #3D1A0A;
  --brown-mid:    #6B2A0A;
  --navy:         #0D0D1A;
  --navy-mid:     #1A1A2E;
  --white:        #FFFFFF;
  --gray-100:     #F8F7F4;
  --gray-200:     #EDEBE4;
  --gray-400:     #9B9488;
  --gray-600:     #5A5248;
  --gray-800:     #2E2820;
  --font-sans:    'Inter', system-ui, sans-serif;
  --font-display: 'Barlow Condensed', 'Inter', sans-serif;
  --radius:       8px;
  --radius-lg:    16px;
  --shadow-sm:    0 1px 3px rgba(0,0,0,.08);
  --shadow-md:    0 4px 16px rgba(0,0,0,.12);
  --shadow-lg:    0 12px 40px rgba(0,0,0,.18);
  --transition:   0.2s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--gray-800);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 3px; }

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.announcement-bar {
  background: var(--orange);
  color: var(--white);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 13.5px;
  font-weight: 500;
  position: relative;
  z-index: 1000;
}
.announcement-inner { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; justify-content: center; }
.announcement-cta {
  background: var(--white);
  color: var(--orange);
  padding: 4px 14px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 12.5px;
  white-space: nowrap;
  transition: var(--transition);
}
.announcement-cta:hover { background: var(--cream); }
.announcement-close {
  position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  color: rgba(255,255,255,0.8); font-size: 20px; line-height: 1;
  transition: var(--transition);
}
.announcement-close:hover { color: var(--white); }

/* ============================================================
   TICKER BAR
   ============================================================ */
.ticker-bar {
  background: var(--navy);
  color: var(--cream);
  overflow: hidden;
  height: 36px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ticker-track {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: ticker 40s linear infinite;
}
.ticker-item {
  padding: 0 24px;
  font-size: 12.5px;
  font-weight: 500;
  border-right: 1px solid rgba(255,255,255,0.1);
  letter-spacing: 0.02em;
}
.ticker-item strong { color: var(--white); }
.ticker-item .up { color: #4CAF50; }
.ticker-item .down { color: #F44336; }
.ticker-item .neutral { color: var(--gray-400); }

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow 0.3s ease;
}
.navbar.scrolled { box-shadow: var(--shadow-md); }

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 32px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-icon { display: flex; align-items: center; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: var(--navy);
  letter-spacing: 0.04em;
}
.logo-sub {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 11px;
  color: var(--orange);
  letter-spacing: 0.12em;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.nav-link {
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
}
.nav-link:hover { color: var(--navy); background: var(--gray-100); }
.nav-dropdown { position: relative; }
.nav-dropdown-btn {
  display: flex; align-items: center; gap: 4px;
  padding: 6px 12px; font-size: 14px; font-weight: 500;
  color: var(--gray-600); border-radius: var(--radius);
  transition: var(--transition);
}
.nav-dropdown-btn:hover { color: var(--navy); background: var(--gray-100); }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 8px;
  min-width: 200px; box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: all 0.2s ease; z-index: 100;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown-item {
  display: block; padding: 8px 12px; font-size: 14px;
  color: var(--gray-600); border-radius: var(--radius);
  transition: var(--transition);
}
.dropdown-item:hover { background: var(--gray-100); color: var(--navy); }

/* Nav Actions */
.nav-actions { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.nav-search {
  width: 36px; height: 36px; display: flex; align-items: center;
  justify-content: center; border-radius: var(--radius); color: var(--gray-600);
  transition: var(--transition);
}
.nav-search:hover { background: var(--gray-100); color: var(--navy); }

/* Hamburger */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  width: 36px; height: 36px; align-items: center; justify-content: center;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--navy); border-radius: 2px; transition: var(--transition);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  background: var(--orange);
  color: var(--white);
  padding: 10px 22px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 14px;
  transition: var(--transition);
  display: inline-block;
  white-space: nowrap;
  border: 2px solid var(--orange);
}
.btn-primary:hover { background: var(--orange-dark); border-color: var(--orange-dark); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(232,64,10,0.35); }
.btn-primary.btn-large { padding: 14px 28px; font-size: 15px; border-radius: 10px; }
.btn-primary.btn-full { width: 100%; text-align: center; }

.btn-ghost {
  background: transparent;
  color: var(--gray-600);
  padding: 10px 16px;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 14px;
  transition: var(--transition);
  display: inline-block;
}
.btn-ghost:hover { color: var(--navy); background: var(--gray-100); }

.btn-outline {
  background: transparent;
  color: var(--navy);
  padding: 12px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14px;
  border: 2px solid var(--gray-200);
  transition: var(--transition);
  display: inline-block;
}
.btn-outline:hover { border-color: var(--orange); color: var(--orange); }
.btn-outline-light { color: var(--cream); border-color: rgba(245,240,220,0.3); }
.btn-outline-light:hover { border-color: var(--cream); color: var(--white); background: rgba(245,240,220,0.1); }

/* ============================================================
   SEARCH OVERLAY
   ============================================================ */
.search-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(13,13,26,0.92); backdrop-filter: blur(8px);
  display: flex; align-items: flex-start; justify-content: center;
  padding-top: 120px;
  opacity: 0; visibility: hidden; transition: all 0.25s ease;
}
.search-overlay.active { opacity: 1; visibility: visible; }
.search-container { width: 100%; max-width: 640px; padding: 0 24px; }
.search-close {
  position: fixed; top: 24px; right: 24px;
  color: var(--cream); font-size: 32px; line-height: 1;
}
.search-input {
  width: 100%; padding: 18px 24px; font-size: 22px;
  background: var(--white); border: none; border-radius: var(--radius-lg);
  outline: none; font-family: var(--font-sans);
  box-shadow: var(--shadow-lg);
}
.search-suggestions { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; }
.search-tag {
  background: rgba(245,240,220,0.15); color: var(--cream);
  padding: 6px 14px; border-radius: 20px; font-size: 13px;
  cursor: pointer; transition: var(--transition);
  border: 1px solid rgba(245,240,220,0.2);
}
.search-tag:hover { background: var(--orange); border-color: var(--orange); }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  background: var(--white);
  padding: 80px 0 100px;
  overflow: hidden;
}
.hero-container {
  max-width: 1280px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(232,64,10,0.08); color: var(--orange);
  padding: 6px 14px; border-radius: 20px; font-size: 12.5px;
  font-weight: 700; letter-spacing: 0.04em; margin-bottom: 24px;
  border: 1px solid rgba(232,64,10,0.2);
}
.badge-dot {
  width: 7px; height: 7px; background: var(--orange);
  border-radius: 50%; animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 5.5vw, 72px);
  font-weight: 900;
  line-height: 1.0;
  color: var(--navy);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.hero-highlight { color: var(--orange); }

.hero-subtitle {
  font-size: 17px; color: var(--gray-600); line-height: 1.65;
  max-width: 480px; margin-bottom: 36px;
}

.hero-subscribe-label {
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.08em;
  color: var(--gray-400); text-transform: uppercase; margin-bottom: 12px;
}
.subscribe-form {
  display: flex; gap: 8px; max-width: 480px;
}
.subscribe-input {
  flex: 1; padding: 12px 18px; border: 2px solid var(--gray-200);
  border-radius: var(--radius); font-size: 14.5px; font-family: var(--font-sans);
  outline: none; transition: var(--transition); background: var(--white);
  color: var(--navy);
}
.subscribe-input:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(232,64,10,0.12); }
.hero-disclaimer { font-size: 12px; color: var(--gray-400); margin-top: 10px; }

/* Hero Visual */
.hero-visual { position: relative; }
.hero-card-stack { position: relative; height: 340px; }
.hero-card {
  position: absolute; background: var(--white);
  border-radius: var(--radius-lg); padding: 24px;
  box-shadow: var(--shadow-lg); border: 1px solid var(--gray-200);
}
.hero-card-back {
  width: 280px; bottom: 0; right: 20px;
  background: var(--navy); color: var(--cream);
  border-color: rgba(255,255,255,0.08);
}
.hero-card-front {
  width: 320px; top: 0; left: 0;
  z-index: 2;
}
.card-mini-chart { margin-bottom: 12px; }
.mini-chart-svg { width: 100%; height: 60px; }
.card-label { font-size: 11px; color: rgba(245,240,220,0.6); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
.card-value { font-family: var(--font-display); font-size: 28px; font-weight: 800; color: var(--orange); }

.card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.card-tag { font-size: 10.5px; font-weight: 700; letter-spacing: 0.1em; color: var(--orange); text-transform: uppercase; }
.card-date { font-size: 11px; color: var(--gray-400); }
.card-title { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 8px; line-height: 1.35; }
.card-excerpt { font-size: 13px; color: var(--gray-600); line-height: 1.5; margin-bottom: 16px; }
.card-footer { display: flex; justify-content: space-between; font-size: 12px; color: var(--gray-400); }

/* ============================================================
   SPONSOR BANNER
   ============================================================ */
.sponsor-banner {
  background: var(--navy);
  padding: 18px 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.sponsor-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  font-size: 13.5px; color: var(--cream);
}
.sponsor-label { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(245,240,220,0.5); }
.sponsor-name { font-weight: 800; color: var(--orange); }
.sponsor-sep { color: rgba(245,240,220,0.2); }
.sponsor-text { flex: 1; min-width: 200px; }
.sponsor-cta {
  background: var(--orange); color: var(--white);
  padding: 7px 16px; border-radius: var(--radius);
  font-weight: 700; font-size: 13px;
  transition: var(--transition); white-space: nowrap;
}
.sponsor-cta:hover { background: var(--orange-dark); }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 80px 0; }
.section-dark { background: var(--navy); color: var(--cream); }
.section-alt { background: var(--gray-100); }
.section-pro { background: var(--brown-dark); color: var(--cream); }
.section-subscribe { background: var(--navy); color: var(--cream); }
.section-partners { background: var(--gray-100); }

.section-container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

.section-header {
  margin-bottom: 40px;
}
.section-label {
  font-size: 11.5px; font-weight: 800; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--orange); display: block; margin-bottom: 8px;
}
.section-label-light { color: var(--orange-light); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800; color: var(--navy); line-height: 1.1;
  margin-bottom: 20px;
}
.section-dark .section-title,
.section-pro .section-title,
.section-subscribe .section-title { color: var(--cream); }

.section-footer { text-align: center; margin-top: 48px; }

/* ============================================================
   FILTER TABS
   ============================================================ */
.filter-tabs {
  display: flex; gap: 4px; flex-wrap: wrap; align-items: center;
}
.filter-tab {
  padding: 7px 16px; border-radius: 20px; font-size: 13px; font-weight: 600;
  color: var(--gray-600); transition: var(--transition);
  border: 1.5px solid transparent;
}
.filter-tab:hover { color: var(--orange); border-color: rgba(232,64,10,0.2); }
.filter-tab.active { background: var(--orange); color: var(--white); }
.section-dark .filter-tab { color: rgba(245,240,220,0.6); }
.section-dark .filter-tab:hover { color: var(--cream); border-color: rgba(245,240,220,0.3); }
.section-dark .filter-tab.active { background: var(--orange); color: var(--white); }
.filter-nav-prev, .filter-nav-next {
  width: 32px; height: 32px; display: flex; align-items: center; justify-content: center;
  font-size: 18px; padding: 0; border-radius: 50%;
}

/* ============================================================
   ARTICLES GRID
   ============================================================ */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 24px;
}
.article-card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200); overflow: hidden;
  transition: var(--transition); display: flex; flex-direction: column;
}
.article-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.article-featured {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}
.article-image-wrap { position: relative; }
.article-image { height: 220px; display: flex; align-items: center; justify-content: center; }
.article-image-text {
  font-family: var(--font-display); font-size: 18px; font-weight: 800;
  color: rgba(255,255,255,0.4); letter-spacing: 0.1em;
}
.article-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--orange); color: var(--white);
  font-size: 10.5px; font-weight: 800; letter-spacing: 0.1em;
  padding: 4px 10px; border-radius: 4px;
}

.article-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.article-meta {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  margin-bottom: 10px;
}
.article-category {
  font-size: 10.5px; font-weight: 800; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 3px 8px; border-radius: 4px;
}
.article-category.mercado { background: rgba(232,64,10,0.1); color: var(--orange); }
.article-category.estrategia { background: rgba(61,26,10,0.1); color: var(--brown-dark); }
.article-category.fiis { background: rgba(13,13,26,0.08); color: var(--navy); }
.article-category.pro-badge { background: var(--orange); color: var(--white); }
.article-date, .article-author { font-size: 12px; color: var(--gray-400); }

.article-title {
  font-size: 16px; font-weight: 700; color: var(--navy);
  line-height: 1.35; margin-bottom: 10px;
}
.article-featured .article-title { font-size: 20px; }
.article-excerpt { font-size: 13.5px; color: var(--gray-600); line-height: 1.55; flex: 1; margin-bottom: 16px; }
.article-link {
  font-size: 13px; font-weight: 700; color: var(--orange);
  transition: var(--transition); display: inline-flex; align-items: center; gap: 4px;
}
.article-link:hover { color: var(--orange-dark); }

.article-pro { border-color: rgba(232,64,10,0.2); background: rgba(232,64,10,0.02); }
.pro-lock {
  display: flex; align-items: center; gap: 6px;
  font-size: 12.5px; color: var(--gray-400); margin-top: auto;
  padding-top: 12px; border-top: 1px solid var(--gray-200);
}
.pro-lock a { color: var(--orange); font-weight: 600; }

/* ============================================================
   VIDEOS GRID
   ============================================================ */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.video-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: var(--transition);
}
.video-card:hover { background: rgba(255,255,255,0.08); transform: translateY(-2px); }
.video-featured { grid-column: 1 / 3; }

.video-thumb { position: relative; }
.video-thumb-bg {
  height: 200px; display: flex; align-items: center; justify-content: center;
}
.video-featured .video-thumb-bg { height: 260px; }
.video-thumb-text {
  font-family: var(--font-display); font-size: 22px; font-weight: 800;
  color: rgba(255,255,255,0.25); letter-spacing: 0.1em;
}
.video-play-btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 56px; height: 56px; background: rgba(232,64,10,0.9);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  transition: var(--transition); backdrop-filter: blur(4px);
}
.video-play-btn:hover { background: var(--orange); transform: translate(-50%, -50%) scale(1.08); }
.video-play-sm { width: 44px; height: 44px; }
.video-duration {
  position: absolute; bottom: 10px; right: 10px;
  background: rgba(0,0,0,0.7); color: var(--white);
  font-size: 11.5px; font-weight: 600; padding: 3px 8px; border-radius: 4px;
}
.video-pro-badge {
  position: absolute; top: 10px; left: 10px;
  background: var(--orange); color: var(--white);
  font-size: 10px; font-weight: 800; letter-spacing: 0.1em;
  padding: 3px 8px; border-radius: 4px;
}

.video-body { padding: 16px; }
.video-category {
  font-size: 10.5px; font-weight: 800; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--orange); display: block; margin-bottom: 8px;
}
.video-category.pro-badge { color: var(--orange-light); }
.video-title {
  font-size: 15px; font-weight: 700; color: var(--cream);
  line-height: 1.35; margin-bottom: 8px;
}
.video-featured .video-title { font-size: 18px; }
.video-excerpt { font-size: 13px; color: rgba(245,240,220,0.65); line-height: 1.5; margin-bottom: 12px; }
.video-meta { display: flex; gap: 12px; font-size: 12px; color: rgba(245,240,220,0.45); }

/* ============================================================
   PRO SECTION
   ============================================================ */
.pro-content {
  display: grid; grid-template-columns: 1fr 400px; gap: 80px; align-items: center;
}
.pro-desc { font-size: 16px; color: rgba(245,240,220,0.75); margin-bottom: 16px; line-height: 1.65; }
.pro-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 36px; }
.pro-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; color: rgba(245,240,220,0.85); }
.pro-check {
  width: 24px; height: 24px; background: var(--orange);
  color: var(--white); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800; flex-shrink: 0; margin-top: 1px;
}
.pro-cta-group { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.pro-disclaimer { font-size: 13px; color: rgba(245,240,220,0.5); max-width: 280px; line-height: 1.5; }

.pro-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px; box-shadow: var(--shadow-lg);
}
.pro-card-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid var(--gray-200);
}
.pro-card-badge {
  background: var(--orange); color: var(--white);
  font-size: 11px; font-weight: 800; letter-spacing: 0.1em;
  padding: 5px 12px; border-radius: 20px;
}
.pro-card-price {
  font-family: var(--font-display); font-size: 32px; font-weight: 900;
  color: var(--navy);
}
.pro-card-price small { font-size: 16px; font-weight: 500; color: var(--gray-400); }
.pro-card-features { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.pro-feature { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--gray-600); }
.pro-card-disclaimer { text-align: center; font-size: 12px; color: var(--gray-400); margin-top: 12px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-track-wrap {
  position: relative; overflow: hidden;
}
.testimonials-track {
  display: flex; gap: 20px;
  transition: transform 0.4s ease;
}
.testimonial-card {
  min-width: 300px; background: var(--white);
  border: 1px solid var(--gray-200); border-radius: var(--radius-lg);
  padding: 24px; flex-shrink: 0;
}
.testimonial-text {
  font-size: 14.5px; color: var(--gray-600); line-height: 1.6;
  font-style: italic; margin-bottom: 16px;
}
.testimonial-author { display: flex; align-items: center; gap: 10px; }
.testimonial-avatar {
  width: 40px; height: 40px; background: var(--orange);
  color: var(--white); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800; flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 14px; color: var(--navy); }
.testimonial-author span { font-size: 12px; color: var(--gray-400); }

.testimonial-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; background: var(--white);
  border: 1px solid var(--gray-200); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--navy); box-shadow: var(--shadow-sm);
  transition: var(--transition); z-index: 10;
}
.testimonial-nav:hover { background: var(--orange); color: var(--white); border-color: var(--orange); }
.testimonial-prev { left: -20px; }
.testimonial-next { right: -20px; }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.review-card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200); padding: 24px;
  transition: var(--transition);
}
.review-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.review-header { display: flex; gap: 16px; align-items: center; margin-bottom: 14px; }
.review-score {
  width: 52px; height: 52px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 22px; font-weight: 900; color: var(--white);
}
.review-score-good { background: #2E7D32; }
.review-score-medium { background: #E65100; }
.review-score-bad { background: #C62828; }
.review-info h4 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.review-type { font-size: 12px; color: var(--gray-400); }
.review-text { font-size: 13.5px; color: var(--gray-600); line-height: 1.55; margin-bottom: 14px; }
.review-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 14px; }
.review-tag {
  background: var(--gray-100); color: var(--gray-600);
  font-size: 11.5px; font-weight: 600; padding: 4px 10px; border-radius: 20px;
}
.review-tag-red { background: rgba(198,40,40,0.1); color: #C62828; }
.review-link { font-size: 13px; font-weight: 700; color: var(--orange); transition: var(--transition); }
.review-link:hover { color: var(--orange-dark); }

/* ============================================================
   SUBSCRIBE SECTION
   ============================================================ */
.subscribe-content { max-width: 600px; margin: 0 auto; text-align: center; }
.subscribe-logo { margin: 0 auto 24px; display: flex; justify-content: center; }
.subscribe-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900; color: var(--cream); line-height: 1.1; margin-bottom: 16px;
}
.subscribe-highlight { color: var(--orange); }
.subscribe-subtitle { font-size: 16px; color: rgba(245,240,220,0.7); margin-bottom: 32px; }
.subscribe-form-large { max-width: 500px; margin: 0 auto; }
.subscribe-disclaimer { font-size: 12.5px; color: rgba(245,240,220,0.4); margin-top: 14px; }

/* ============================================================
   PARTNERS SECTION
   ============================================================ */
.partners-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.partner-card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200); padding: 24px;
  transition: var(--transition);
}
.partner-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.partner-logo {
  font-family: var(--font-display); font-size: 13px; font-weight: 800;
  letter-spacing: 0.1em; color: var(--orange); margin-bottom: 10px;
  padding: 4px 10px; background: rgba(232,64,10,0.08);
  border-radius: 4px; display: inline-block;
}
.partner-card h4 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 8px; line-height: 1.35; }
.partner-card p { font-size: 13.5px; color: var(--gray-600); line-height: 1.55; margin-bottom: 14px; }
.partner-link { font-size: 13px; font-weight: 700; color: var(--orange); transition: var(--transition); }
.partner-link:hover { color: var(--orange-dark); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--navy); color: var(--cream); padding: 64px 0 32px; }
.footer-container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.footer-top { display: grid; grid-template-columns: 300px 1fr; gap: 80px; margin-bottom: 48px; }
.footer-logo { margin-bottom: 16px; }
.footer-logo .logo-brand { color: var(--cream); }
.footer-tagline { font-size: 13.5px; color: rgba(245,240,220,0.55); line-height: 1.6; margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; }
.social-link {
  width: 38px; height: 38px; background: rgba(255,255,255,0.07);
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
  color: rgba(245,240,220,0.6); transition: var(--transition);
}
.social-link:hover { background: var(--orange); color: var(--white); }

.footer-links { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.footer-col h5 {
  font-size: 12px; font-weight: 800; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(245,240,220,0.4); margin-bottom: 16px;
}
.footer-col a {
  display: block; font-size: 14px; color: rgba(245,240,220,0.65);
  margin-bottom: 10px; transition: var(--transition);
}
.footer-col a:hover { color: var(--cream); }

.footer-bottom {
  padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-copy { font-size: 13px; color: rgba(245,240,220,0.4); margin-bottom: 8px; }
.footer-disclaimer { font-size: 11.5px; color: rgba(245,240,220,0.25); line-height: 1.6; max-width: 800px; }

/* ============================================================
   TOAST NOTIFICATION
   ============================================================ */
.toast {
  position: fixed; bottom: 32px; right: 32px; z-index: 9999;
  background: var(--navy); color: var(--cream);
  padding: 16px 20px; border-radius: var(--radius-lg);
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,0.1);
  transform: translateY(100px); opacity: 0;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  max-width: 320px;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast-icon {
  width: 32px; height: 32px; background: #2E7D32;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--white); flex-shrink: 0;
}
.toast-text { display: flex; flex-direction: column; gap: 2px; }
.toast-text strong { font-size: 14px; }
.toast-text span { font-size: 12.5px; color: rgba(245,240,220,0.6); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .pro-content { grid-template-columns: 1fr; gap: 48px; }
  .pro-card { max-width: 480px; }
  .articles-grid { grid-template-columns: repeat(2, 1fr); }
  .article-featured { grid-column: 1 / 3; grid-row: auto; }
  .videos-grid { grid-template-columns: repeat(2, 1fr); }
  .video-featured { grid-column: 1 / 3; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; position: fixed;
    top: 0; left: 0; right: 0; bottom: 0; z-index: 800;
    background: var(--white); padding: 80px 24px 24px;
    gap: 8px; overflow-y: auto;
  }
  .nav-hamburger { display: flex; }
  .btn-ghost { display: none; }
  .announcement-text { font-size: 12px; }

  .hero { padding: 48px 0 64px; }
  .hero-title { font-size: 38px; }
  .subscribe-form { flex-direction: column; }

  .articles-grid { grid-template-columns: 1fr; }
  .article-featured { grid-column: 1; }
  .videos-grid { grid-template-columns: 1fr; }
  .video-featured { grid-column: 1; }
  .reviews-grid { grid-template-columns: 1fr; }
  .partners-grid { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }

  .testimonial-prev { left: 0; }
  .testimonial-next { right: 0; }
}

@media (max-width: 480px) {
  .section { padding: 56px 0; }
  .section-container { padding: 0 16px; }
  .nav-container { padding: 0 16px; }
  .footer-links { grid-template-columns: 1fr; }
  .toast { bottom: 16px; right: 16px; left: 16px; max-width: none; }
}

/* ============================================================
   ANIMATIONS & UTILITIES
   ============================================================ */
.fade-in {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

.hidden { display: none !important; }
