/* Deep Blue Marine Theme - bootsbase.de */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

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

:root {
  --bg-dark: #060d1b;
  --card-bg: #0c1829;
  --accent: #0099ff;
  --accent-secondary: #00d4aa;
  --text: #e8edf5;
  --text-muted: #a8b3c5;
  --amazon-orange: #FF9900;
  --border: rgba(0, 153, 255, 0.2);
  --shadow: rgba(0, 0, 0, 0.3);
}

html, body {
  overflow-x: hidden;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* === Header === */
header {
  background-color: rgba(12, 24, 41, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--accent);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px var(--shadow);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 20px;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.5px;
}

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

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

nav a:hover {
  color: var(--accent);
}

nav a:hover::after {
  width: 100%;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: var(--text);
  transition: all 0.3s ease;
  border-radius: 2px;
}

/* === Hero === */
.hero {
  background: linear-gradient(rgba(6, 13, 27, 0.45), rgba(6, 13, 27, 0.7)),
              url('/img/hero-startseite.jpg') center/cover no-repeat;
  padding: 5rem 0 4rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(0, 153, 255, 0.05) 0%, transparent 50%),
                    radial-gradient(circle at 80% 80%, rgba(0, 212, 170, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.1;
  background: linear-gradient(135deg, var(--text) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero .tagline {
  font-size: 1.25rem;
  color: var(--text-muted);
  font-weight: 400;
  margin-bottom: 2rem;
}

/* === Category Grid === */
.categories {
  padding: 4rem 0;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  text-align: center;
  color: var(--text);
}

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

.category-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  color: var(--text);
  display: block;
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-secondary));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

.category-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 8px 30px rgba(0, 153, 255, 0.15);
}

.category-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

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

.category-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* === Article Cards === */
.articles {
  padding: 4rem 0;
  background-color: rgba(12, 24, 41, 0.3);
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.article-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  text-decoration: none;
  color: var(--text);
  display: flex;
  flex-direction: column;
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 153, 255, 0.2);
  border-color: var(--accent);
}

.article-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  background: linear-gradient(135deg, #0c1829 0%, #0a1a2e 50%, #060d1b 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  opacity: 0.6;
}

.article-image:empty::after {
  content: '🚤';
}

.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.article-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.article-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
  line-height: 1.3;
}

.article-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.read-more {
  color: var(--accent);
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.read-more::after {
  content: '→';
  transition: transform 0.3s ease;
}

.article-card:hover .read-more::after {
  transform: translateX(4px);
}

/* === Content Sections === */
.content-section {
  padding: 4rem 0;
}

.content-box {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 3rem;
  margin-bottom: 2rem;
}

.content-box h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.content-box h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  margin-top: 2rem;
  color: var(--accent);
}

.content-box p {
  margin-bottom: 1.25rem;
  color: var(--text);
  line-height: 1.8;
}

/* === Article Styling === */
article {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 3rem;
  margin: 2rem 0;
  line-height: 1.8;
}

article h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

article h2 {
  font-size: 1.75rem;
  margin-top: 45px;
  margin-bottom: 1rem;
  color: var(--accent);
  font-weight: 600;
}

article h3 {
  font-size: 1.35rem;
  margin-top: 35px;
  margin-bottom: 0.75rem;
  color: var(--text);
  font-weight: 600;
}

article h4 {
  font-size: 1.15rem;
  margin-top: 25px;
  margin-bottom: 0.5rem;
  color: var(--text);
  font-weight: 600;
}

article p {
  margin-bottom: 20px;
  color: var(--text);
}

article ul, article ol {
  margin-bottom: 20px;
  padding-left: 2rem;
}

article li {
  margin-bottom: 0.5rem;
  color: var(--text);
}

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

article a {
  color: var(--accent);
  text-decoration: underline;
  transition: color 0.3s ease;
}

article a:hover {
  color: var(--accent-secondary);
}

/* === Info Boxes === */
.info-box {
  background: rgba(0, 153, 255, 0.1);
  border-left: 4px solid var(--accent);
  border-radius: 8px;
  padding: 1.5rem;
  margin: 2rem 0;
}

.info-box::before {
  content: '💡 Gut zu wissen';
  display: block;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.75rem;
  font-size: 1.05rem;
}

.info-box p:last-child {
  margin-bottom: 0;
}

.author-box {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  margin: 3rem 0;
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.author-avatar {
  font-size: 3rem;
  flex-shrink: 0;
}

.author-info h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--accent);
  margin-top: 0;
}

.author-info p {
  color: var(--text-muted);
  margin-bottom: 0;
  line-height: 1.6;
}

.sources-box {
  background: rgba(12, 24, 41, 0.5);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
  margin: 2rem 0;
}

.sources-box h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 0;
}

.sources-box ul {
  list-style: none;
  padding-left: 0;
}

.sources-box li {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.sources-box a {
  color: var(--accent);
  text-decoration: none;
}

.sources-box a:hover {
  text-decoration: underline;
}

/* === Comparison Table === */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background: var(--card-bg);
  border-radius: 12px;
  overflow: hidden;
}

.comparison-table thead {
  background: rgba(0, 153, 255, 0.15);
}

.comparison-table th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  color: var(--accent);
  border-bottom: 2px solid var(--border);
}

.comparison-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}

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

.comparison-table tr:hover {
  background: rgba(0, 153, 255, 0.05);
}

/* === Product Cards === */
.product-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem 0;
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.product-image {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
  background: rgba(0, 153, 255, 0.05);
}

.product-info {
  flex-grow: 1;
}

.product-info h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  margin-top: 0;
}

.product-info p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.product-price {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1rem;
}

/* === Ratings === */
.rating {
  display: inline-flex;
  gap: 0.25rem;
  margin: 0.5rem 0;
  font-size: 1.25rem;
}

.rating .star {
  color: var(--amazon-orange);
}

.rating .star.empty {
  color: rgba(255, 153, 0, 0.3);
}

/* === CTA Button === */
.cta-btn {
  display: inline-block;
  background-color: var(--amazon-orange);
  color: #000;
  padding: 0.875rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(255, 153, 0, 0.3);
}

.cta-btn:hover {
  background-color: #ff8800;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 153, 0, 0.4);
}

.cta-btn:active {
  transform: translateY(0);
}

/* === Seasonal Teaser === */
.seasonal-teaser {
  background: linear-gradient(135deg, rgba(0, 153, 255, 0.15), rgba(0, 212, 170, 0.15));
  border: 1px solid var(--accent);
  border-radius: 12px;
  padding: 3rem;
  text-align: center;
  margin: 4rem 0;
  position: relative;
  overflow: hidden;
}

.seasonal-teaser::before {
  content: '🌊';
  position: absolute;
  font-size: 10rem;
  opacity: 0.05;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.seasonal-teaser h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.seasonal-teaser p {
  font-size: 1.15rem;
  color: var(--text-muted);
  position: relative;
  z-index: 1;
}

/* === Footer === */
footer {
  background-color: var(--card-bg);
  border-top: 3px solid var(--accent);
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

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

.copyright {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* === Cookie Banner === */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--card-bg);
  border-top: 2px solid var(--accent);
  padding: 1.5rem;
  box-shadow: 0 -4px 20px var(--shadow);
  z-index: 9999;
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.cookie-text {
  flex-grow: 1;
  color: var(--text);
  font-size: 0.95rem;
}

.cookie-text a {
  color: var(--accent);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
}

.cookie-btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.cookie-accept {
  background-color: var(--accent);
  color: var(--bg-dark);
}

.cookie-accept:hover {
  background-color: var(--accent-secondary);
}

.cookie-reject {
  background-color: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.cookie-reject:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* === Responsive === */
@media (max-width: 768px) {
  nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--card-bg);
    border-bottom: 2px solid var(--accent);
    padding: 1rem;
    gap: 0;
  }

  nav ul.show {
    display: flex;
  }

  nav li {
    width: 100%;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
  }

  nav li:last-child {
    border-bottom: none;
  }

  .hamburger {
    display: flex;
  }

  .main-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--card-bg);
    border-bottom: 2px solid var(--accent);
    padding: 1rem;
    gap: 0;
    z-index: 999;
  }

  .main-nav.show {
    display: flex;
  }

  .main-nav a {
    display: block;
    width: 100%;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--border);
  }

  .main-nav a:last-child {
    border-bottom: none;
  }

  .header-inner {
    position: relative;
  }

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

  .hero .tagline {
    font-size: 1rem;
  }

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

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

  .product-card {
    flex-direction: column;
  }

  .product-image {
    width: 100%;
    height: auto;
  }

  article {
    padding: 1.5rem;
  }

  article h1 {
    font-size: 1.75rem;
  }

  article h2 {
    font-size: 1.5rem;
    margin-top: 35px;
  }

  article h3 {
    font-size: 1.25rem;
    margin-top: 25px;
  }

  .content-box {
    padding: 1.5rem;
  }

  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-buttons {
    flex-direction: column;
  }

  .author-box {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.5rem;
  }

  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }
}

/* === Pillar Page Additions === */
.breadcrumb {
  color: #8899aa;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.breadcrumb a {
  color: #0099ff;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.toc {
  background: rgba(0, 153, 255, 0.05);
  border-radius: 12px;
  padding: 1.5rem;
  margin: 2rem 0;
}

.toc h2 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  margin-top: 0;
  color: var(--accent);
}

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

.toc li {
  margin-bottom: 0.5rem;
}

.toc a {
  color: #0099ff;
  text-decoration: none;
  display: block;
  padding: 0.3rem 0;
  transition: color 0.3s ease;
}

.toc a:hover {
  color: var(--accent-secondary);
  padding-left: 0.5rem;
}

/* Article Cards für Pillar Pages */
.article-cards {
  margin: 3rem 0;
}

.article-cards .article-card {
  background: rgba(0, 153, 255, 0.05);
  border: 1px solid rgba(0, 153, 255, 0.15);
  border-radius: 12px;
  padding: 1.5rem;
  margin: 1rem 0;
  transition: all 0.3s ease;
  display: block;
  overflow: visible;
}

.article-cards .article-card:hover {
  background: rgba(0, 153, 255, 0.08);
  border-color: var(--accent);
  transform: translateX(4px);
}

.article-cards .article-card h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.article-cards .article-card h3 a {
  color: #0099ff;
  text-decoration: none;
}

.article-cards .article-card h3 a:hover {
  text-decoration: underline;
  color: var(--accent-secondary);
}

.article-cards .article-card p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.article-cards .read-more {
  color: #00d4aa;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.article-cards .read-more::after {
  content: '→';
  transition: transform 0.3s ease;
}

.article-cards .article-card:hover .read-more::after {
  transform: translateX(4px);
}

/* === NEW HOMEPAGE OVERRIDES === */
.hero { background: none !important; padding: 0 !important; border: none !important; position: relative; min-height: 70vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero::before { display: none !important; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(6,13,27,0.4), rgba(6,13,27,0.95)); }
.hero-content { position: relative; z-index: 1; text-align: center; max-width: 800px; padding: 4rem 2rem; }
.hero-badge { display: inline-block; background: rgba(0,153,255,0.15); border: 1px solid rgba(0,153,255,0.3); border-radius: 20px; padding: 0.4rem 1rem; font-size: 0.8rem; color: var(--accent); margin-bottom: 1rem; }
.hero h1 { font-size: 2.5rem !important; font-weight: 800 !important; line-height: 1.2 !important; margin-bottom: 1rem !important; padding: 0 !important; background: none !important; }
.hero h1 .accent { color: var(--accent); }
.hero p { font-size: 1.1rem; color: var(--text-muted); max-width: 600px; margin: 0 auto 1.5rem; }
.hero-cta { display: inline-block; background: var(--accent); color: white !important; padding: 0.8rem 2rem; border-radius: 10px; font-weight: 600; text-decoration: none; transition: transform 0.15s; }
.hero-cta:hover { transform: translateY(-2px); box-shadow: 0 4px 20px rgba(0,153,255,0.3); color: white !important; }
.hero-stats { display: flex; justify-content: center; gap: 2.5rem; margin-top: 2rem; flex-wrap: wrap; }
.hero-stats .stat-num { font-size: 1.6rem; font-weight: 700; color: white; }
.hero-stats .stat-label { font-size: 0.75rem; color: var(--text-muted); }

.section { max-width: 1200px; margin: 0 auto; padding: 3rem 1.5rem; }
.section-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent); font-weight: 600; margin-bottom: 0.5rem; }
.section-title { font-size: 1.8rem; font-weight: 700; color: white; margin-bottom: 0.5rem; border: none !important; padding: 0 !important; }
.section-subtitle { color: var(--text-muted); font-size: 1rem; margin-bottom: 2rem; max-width: 600px; }

.cat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }
.cat-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; transition: border-color 0.2s, transform 0.15s; text-decoration: none !important; color: inherit; display: block; }
.cat-card:hover { border-color: var(--accent); transform: translateY(-3px); }
.cat-card img { width: 100%; height: 180px; object-fit: cover; display: block; }
.cat-card .card-body { padding: 1.2rem 1.5rem; }
.cat-card h3 { color: white; font-size: 1.1rem; margin: 0 0 0.4rem; }
.cat-card p { color: var(--text-muted); font-size: 0.85rem; margin: 0 0 0.8rem; line-height: 1.5; }
.cat-card .card-footer { display: flex; justify-content: space-between; align-items: center; padding: 0 1.5rem 1.2rem; }
.cat-card .tag { font-size: 0.7rem; color: var(--accent); font-weight: 600; text-transform: uppercase; letter-spacing: 0.03em; }
.cat-card .arrow { width: 32px; height: 32px; background: rgba(0,153,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--accent); font-size: 1rem; }

.about-box { background: var(--card-bg); border: 1px solid var(--border); border-radius: 16px; padding: 2rem; display: flex; gap: 1.5rem; align-items: center; flex-wrap: wrap; margin: 2rem 0; }
.about-box img { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; }
.about-box .text { flex: 1; min-width: 250px; }
.about-box h3 { color: white; margin: 0 0 0.4rem; font-size: 1.1rem; }
.about-box p { color: var(--text-muted); font-size: 0.9rem; margin: 0; line-height: 1.6; }

.popular-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 1rem; }
.popular-item { background: var(--card-bg); border: 1px solid var(--border); border-radius: 12px; padding: 1.2rem; text-decoration: none !important; transition: border-color 0.15s; display: block; }
.popular-item:hover { border-color: var(--accent); }
.popular-item h4 { color: white; font-size: 0.95rem; margin: 0 0 0.3rem; }
.popular-item .desc { color: var(--text-muted); font-size: 0.8rem; }
.popular-item .cat { color: var(--accent); font-size: 0.7rem; font-weight: 600; text-transform: uppercase; margin-bottom: 0.4rem; display: block; }

@media (max-width: 600px) { .hero h1 { font-size: 1.8rem !important; } }

/* === FOOTER 2: Compass Card === */
footer { background: var(--card-bg) !important; margin-top: 0 !important; padding: 0 !important; border-top: none !important; }
.f2-accent-bar { height: 3px; background: linear-gradient(90deg, var(--accent), var(--accent-secondary), var(--accent)); }
.f2-inner { max-width: 1200px; margin: 0 auto; padding: 3rem 2rem 1.5rem; }
.f2-grid { margin-bottom: 2.5rem; }
.f2-cols-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 2rem; margin-top: 2rem; }
.f2-brand .logo { font-size: 1.8rem; font-weight: 700; color: white; margin-bottom: 0.8rem; }
.f2-brand .logo span { color: var(--accent); }
.f2-brand p { color: var(--text-muted); font-size: 0.85rem; line-height: 1.7; margin-bottom: 1rem; }
.f2-trust { display: flex; gap: 1rem; align-items: center; margin-top: 1rem; flex-wrap: wrap; }
.trust-badge { display: inline-flex; align-items: center; gap: 0.4rem; background: rgba(0,212,170,0.08); border: 1px solid rgba(0,212,170,0.15); border-radius: 6px; padding: 0.3rem 0.8rem; font-size: 0.75rem; color: var(--accent-secondary); }
.f2-newsletter { display: flex; gap: 0; margin-top: 1rem; }
.f2-newsletter input { flex: 1; padding: 0.6rem 1rem; background: var(--bg-dark); border: 1px solid var(--border); border-right: none; border-radius: 8px 0 0 8px; color: var(--text); font-size: 0.85rem; font-family: inherit; }
.f2-newsletter input::placeholder { color: var(--text-muted); }
.f2-newsletter button { padding: 0.6rem 1.2rem; background: var(--accent); color: white; border: 1px solid var(--accent); border-radius: 0 8px 8px 0; font-weight: 600; font-size: 0.85rem; cursor: pointer; white-space: nowrap; }
.f2-col h4 { color: white; font-size: 0.85rem; font-weight: 600; margin-bottom: 1.2rem; display: flex; align-items: center; gap: 0.5rem; }
.f2-col h4 .icon { font-size: 1rem; }
.f2-col a { color: var(--text-muted); font-size: 0.85rem; display: flex; align-items: center; gap: 0.4rem; padding: 0.25rem 0; transition: color 0.15s; }
.f2-col a:hover { color: white; }
.f2-col a::before { content: '›'; color: var(--accent); font-weight: 700; opacity: 0; transition: opacity 0.15s; }
.f2-col a:hover::before { opacity: 1; }
.f2-bottom { border-top: 1px solid var(--border); padding: 1.5rem 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.f2-copy { color: var(--text-muted); font-size: 0.75rem; }
.f2-bottom-links { display: flex; gap: 1.5rem; }
.f2-bottom-links a { color: var(--text-muted); font-size: 0.75rem; }
.f2-bottom-links a:hover { color: white; }
@media (max-width: 768px) { .f2-cols-row { grid-template-columns: 1fr 1fr 1fr; gap: 1rem; } }
@media (max-width: 400px) { .f2-cols-row { grid-template-columns: 1fr 1fr 1fr; gap: 0.5rem; } .f2-col a { font-size: 0.8rem; } .f2-col h4 { font-size: 0.75rem; } }
