/* Kapital Menkul - Luxury Premium Design */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --primary: #c41e3a;
  --primary-dark: #8b1428;
  --primary-light: #a81830;
  --text-dark: #0a0a0b;
  --text-muted: #6b7280;
  --white: #ffffff;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

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

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100vw;
  background: var(--white);
}

main {
  overflow-x: hidden;
}

/* Noise texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
  z-index: 9999;
}

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

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile menu - body lock */
body.menu-open {
  overflow: hidden;
  touch-action: none;
}

/* Top Bar */
.top-bar {
  background: var(--primary-dark);
  color: var(--white);
  padding: 0.65rem 1rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.top-bar-text {
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.top-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
}

.top-bar span {
  color: var(--white);
  font-weight: 700;
  margin: 0 0.25rem;
}

/* Header - Glass morphism */
.site-header {
  position: relative;
}

header {
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.04);
}

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

/* Hamburger - hidden by default */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 48px;
  height: 48px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1002;
  transition: transform 0.3s var(--ease);
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}

.hamburger:hover span {
  background: var(--primary);
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Nav overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.nav-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* Mobile nav - slide from right */
.nav-mobile {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 320px;
  background: var(--white);
  z-index: 1001;
  padding: 5rem 1.5rem 2rem;
  flex-direction: column;
  gap: 1.5rem;
  box-shadow: -10px 0 40px rgba(0,0,0,0.15);
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
  overflow-y: auto;
}

.nav-mobile.open {
  transform: translateX(0);
}

.nav-mobile ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.nav-mobile a {
  display: block;
  padding: 0.9rem 1rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  text-decoration: none;
  border-radius: 12px;
  transition: background 0.2s, color 0.2s;
}

.nav-mobile a:hover,
.nav-mobile a.active {
  background: rgba(196, 30, 58, 0.08);
  color: var(--primary);
}

.nav-mobile-auth {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.nav-mobile-auth .btn {
  width: 100%;
  justify-content: center;
  padding: 1rem;
}

.logo-link:hover {
  opacity: 0.9;
}

.logo {
  height: 48px;
  width: auto;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-desktop ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-desktop ul li {
  position: relative;
}

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

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

.nav-desktop a:hover::before,
.nav-desktop a.active::before {
  width: 100%;
}

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

.header-auth {
  display: flex;
  gap: 0.75rem;
}

.btn-header {
  padding: 0.6rem 1.4rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.3s var(--ease);
  text-decoration: none;
}

.btn-outline-header {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline-header:hover {
  background: rgba(196, 30, 58, 0.08);
  color: var(--primary);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(196, 30, 58, 0.2);
}

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

.btn-primary-header:hover {
  background: var(--primary-dark);
  color: var(--white);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196, 30, 58, 0.35);
}

/* Hero - Premium */
.hero-banner {
  min-height: 85vh;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, rgba(196, 30, 58, 0.9) 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 4rem 2rem 6rem;
}

.hero-banner-pattern {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 4v16M4 12h16' stroke='rgba(255,255,255,0.08)' stroke-width='1'/%3E%3C/svg%3E");
  opacity: 1;
}

.hero-banner-inner {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero-content h1 span {
  color: rgba(255,255,255,0.95);
}

.hero-content p {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.9);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s var(--ease);
  background: var(--white);
  color: var(--primary);
  border: 2px solid var(--white);
}

.btn-hero:hover {
  background: transparent;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.hero-banner-logo-overlay {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.75rem 1.25rem;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  border: 1px solid rgba(0,0,0,0.06);
}

.hero-banner-logo-overlay img {
  height: 32px;
}

.hero-banner-logo-overlay span {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary);
}

.hero-logo-box {
  background: var(--white);
  padding: 3rem;
  border-radius: 24px;
  box-shadow: 0 25px 80px rgba(0,0,0,0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  border: 1px solid rgba(0,0,0,0.06);
  position: relative;
  overflow: hidden;
}

.hero-logo-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary);
}

.hero-logo-box img {
  height: 120px;
}

.hero-logo-box .logo-tagline {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-logo-box .logo-badge {
  background: var(--primary);
  color: var(--white);
  padding: 0.4rem 1.25rem;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 700;
}

/* Ticker Section - Premium (Akan/Kayan Chart) */
.ticker-section {
  margin: -2rem auto 0;
  position: relative;
  z-index: 10;
  max-width: 1400px;
  padding: 0 1rem;
}

.ticker-premium {
  margin-top: -2.5rem;
}

.ticker-box-premium {
  background: var(--white);
  padding: 0;
  border-radius: 24px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.1), 0 0 0 1px rgba(0,0,0,0.04);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.05);
  transition: box-shadow 0.4s var(--ease);
}

.ticker-box-premium:hover {
  box-shadow: 0 32px 80px rgba(0,0,0,0.12), 0 0 0 1px rgba(196, 30, 58, 0.06);
}

.ticker-chart-wrap {
  overflow: hidden;
}

.ticker-chart-wrap .tradingview-widget-container [style*="animation"] {
  animation-duration: 60s !important;
  animation-timing-function: linear !important;
}

.ticker-premium-inner {
  padding: 0.75rem 1.5rem 0;
}

.ticker-white-box {
  background: var(--white);
  padding: 0;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
}

.tradingview-widget-container {
  height: 64px;
  overflow: hidden;
  min-height: 56px;
}

.tradingview-widget-container__widget {
  height: 64px !important;
  min-height: 56px !important;
}

/* Trust Pills - Premium */
.trust-pills-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.trust-pills-premium {
  border-top: 1px solid rgba(0,0,0,0.05);
}

.trust-pill-item {
  padding: 1.25rem 1.5rem;
  text-align: center;
  border-right: 1px solid rgba(0,0,0,0.06);
}

.trust-pill-premium {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.5rem 1.75rem;
  text-align: left;
  border-right: 1px solid rgba(0,0,0,0.05);
  transition: background 0.3s var(--ease);
}

.trust-pill-premium:hover {
  background: linear-gradient(135deg, rgba(196, 30, 58, 0.04) 0%, rgba(196, 30, 58, 0.01) 100%);
}

.trust-pill-premium:last-child {
  border-right: none;
}

.trust-pill-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: linear-gradient(135deg, rgba(196, 30, 58, 0.1) 0%, rgba(196, 30, 58, 0.05) 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-pill-icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

.trust-pill-text strong {
  display: block;
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 0.2rem;
  font-weight: 700;
}

.trust-pill-text span {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

.trust-pill-item:last-child {
  border-right: none;
}

.trust-pill-item strong {
  display: block;
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.trust-pill-item span {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.pill {
  padding: 0.5rem 1.25rem;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  background: rgba(196, 30, 58, 0.08);
  border: 1px solid rgba(196, 30, 58, 0.15);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.4s var(--ease);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  box-shadow: 0 10px 35px rgba(196, 30, 58, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 45px rgba(196, 30, 58, 0.45);
}

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

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(196, 30, 58, 0.3);
}

.hero-banner .btn-outline {
  border-color: var(--primary);
  color: var(--primary);
}

.hero-banner .btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

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

.btn-dark:hover {
  background: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(196, 30, 58, 0.3);
}

/* Home Blog Preview */
.home-blog-preview {
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.home-blog-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 1.5rem;
  text-align: center;
}

.home-blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.home-blog-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(0,0,0,0.06);
  transition: all 0.3s var(--ease);
  display: block;
}

.home-blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  border-color: rgba(196, 30, 58, 0.2);
}

.home-blog-img {
  position: relative;
  height: 160px;
  overflow: hidden;
}

.home-blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}

.home-blog-card:hover .home-blog-img img {
  transform: scale(1.05);
}

.home-blog-cat {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--primary);
  color: var(--white);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
}

.home-blog-content {
  padding: 1.25rem;
}

.home-blog-content h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
  line-height: 1.3;
}

.home-blog-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-blog-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
}

.home-blog-preview .section-cta {
  margin-top: 0;
}

/* Sections */
section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 2.5rem;
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-badge {
  display: inline-block;
  background: rgba(196, 30, 58, 0.1);
  color: var(--primary);
  padding: 0.4rem 1.25rem;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-cta {
  text-align: center;
  margin-top: 2rem;
}

.bg-light {
  background: var(--white);
}

/* Bento Services Grid - 3x2 dengeli layout */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 2rem auto 0;
}

.bento-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 2rem;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  opacity: 0;
  transform: translateY(30px);
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}

.bento-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

.bento-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 45px rgba(0,0,0,0.1);
}

.bento-card::before {
  display: none;
}

.bento-card h3 {
  color: var(--primary);
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}

.bento-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.bento-card .card-icon {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  background: rgba(196, 30, 58, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  z-index: 1;
}

.bento-cta-card {
  background: var(--primary) !important;
  text-decoration: none;
  color: inherit;
}

.bento-cta-card h3,
.bento-cta-card p {
  color: var(--white) !important;
}

.bento-cta-card .card-icon {
  background: rgba(255,255,255,0.25);
}

.bento-cta-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 45px rgba(196, 30, 58, 0.3);
}

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

/* Steps Premium - with connectors */
.section-steps-premium {
  position: relative;
  padding: 5rem 2rem;
  background: linear-gradient(180deg, #fafbfc 0%, var(--white) 100%);
  overflow: hidden;
}

.steps-premium-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 40% at 50% 0%, rgba(196, 30, 58, 0.03) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.section-steps-premium .section-header {
  position: relative;
  z-index: 1;
}

.section-steps-premium .section-cta {
  position: relative;
  z-index: 1;
  margin-top: 2.5rem;
}

.steps-premium {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: center;
  max-width: 1100px;
  margin: 3rem auto 0;
  position: relative;
  z-index: 1;
}

.step-connector {
  width: 60px;
  flex-shrink: 0;
  color: rgba(196, 30, 58, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-connector svg {
  width: 36px;
  height: 24px;
}

.step {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0,0,0,0.06), 0 0 0 1px rgba(0,0,0,0.03);
  border: 1px solid rgba(0,0,0,0.05);
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(25px);
}

.step.revealed {
  opacity: 1;
  transform: translateY(0);
}

.step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.step:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.1);
}

.step:hover::before {
  transform: scaleX(1);
}

/* Premium step cards */
.step-premium {
  padding: 2.75rem 2rem;
  box-shadow: 0 12px 48px rgba(0,0,0,0.07), 0 0 0 1px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.06);
}

.step-premium:hover {
  box-shadow: 0 28px 64px rgba(0,0,0,0.12), 0 0 0 1px rgba(196, 30, 58, 0.08);
}

.step-num-wrap {
  margin-bottom: 1.5rem;
}

.step-num {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.6rem;
  box-shadow: 0 12px 36px rgba(196, 30, 58, 0.35);
  letter-spacing: -0.02em;
}

.step h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
  font-weight: 700;
}

.step p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.btn-premium {
  padding: 1rem 2.25rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 10px 36px rgba(196, 30, 58, 0.35);
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}

.btn-premium:hover {
  box-shadow: 0 14px 44px rgba(196, 30, 58, 0.4);
  transform: translateY(-2px);
}

/* Dark Section - Kapital Menkul Farkı (Premium) */
.section-dark {
  background: linear-gradient(160deg, #6b0f1a 0%, var(--primary-dark) 35%, #72121e 70%, #5a0e18 100%);
  color: var(--white);
  padding: 5rem 2rem;
  margin: 2rem 0;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: none;
}

.section-dark-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(196, 30, 58, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 100% 100%, rgba(255,255,255,0.03) 0%, transparent 40%);
  pointer-events: none;
  z-index: 0;
}

.section-dark::before {
  display: none;
}

.section-dark .section-header {
  max-width: 720px;
  margin: 0 auto 3rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.section-dark .section-title {
  color: var(--white);
  letter-spacing: -0.02em;
  font-weight: 800;
}

.section-dark .section-subtitle {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  line-height: 1.7;
}

.section-dark .section-badge {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  letter-spacing: 0.08em;
  font-weight: 600;
  font-size: 0.75rem;
  padding: 0.5rem 1rem;
}

.section-dark .features-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  width: 100%;
  position: relative;
  z-index: 1;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
  position: relative;
}

.feature-item {
  background: rgba(255,255,255,0.05);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.4s var(--ease);
  opacity: 0;
  transform: translateY(25px);
}

.feature-item.revealed {
  opacity: 1;
  transform: translateY(0);
}

.feature-item:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-8px);
}

/* Premium feature cards - glassmorphism */
.feature-premium {
  background: linear-gradient(145deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.03) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 2.25rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.feature-premium:hover {
  background: linear-gradient(145deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.06) 100%);
  border-color: rgba(255,255,255,0.18);
  box-shadow: 0 16px 48px rgba(0,0,0,0.25);
}

.feature-icon-wrap {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary) 0%, #a01830 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 24px rgba(196, 30, 58, 0.4);
}

.feature-icon-svg {
  width: 26px;
  height: 26px;
  color: var(--white);
}

.feature-item h3 {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.feature-item p {
  color: rgba(255,255,255,0.78);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* Legacy emoji icon fallback - hidden when SVG present */
.feature-icon {
  display: none;
}

/* Testimonials - Premium */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.testimonial-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 50px rgba(0,0,0,0.08), 0 0 0 1px rgba(0,0,0,0.03);
  border: 1px solid rgba(0,0,0,0.05);
  transition: all 0.4s var(--ease);
  position: relative;
  opacity: 0;
  transform: translateY(25px);
}

.testimonial-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 70px rgba(0,0,0,0.12);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  font-size: 4rem;
  font-weight: 900;
  color: var(--primary);
  opacity: 0.15;
  line-height: 1;
}

.testimonial-stars {
  color: #f5a623;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.testimonial-card p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.testimonial-author strong {
  color: var(--primary);
}

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

/* Promo - Full width dark */
.promo-banner {
  background: var(--primary-dark);
  color: var(--white);
  padding: 5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}

.promo-banner::before {
  display: none;
}

.promo-banner-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
}

.promo-banner-content h3 {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.promo-banner-content p {
  opacity: 0.9;
  font-size: 1.1rem;
  line-height: 1.7;
}

.promo-banner .btn {
  position: relative;
  z-index: 1;
}

/* Trust Section */
.trust-section {
  text-align: center;
  padding: 4rem 2rem;
  background: var(--white);
  border-radius: 24px;
  box-shadow: 0 10px 60px rgba(0,0,0,0.06);
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--white);
  padding: 1.25rem 2.5rem;
  border-radius: 60px;
  box-shadow: 0 15px 50px rgba(0,0,0,0.08);
  margin-bottom: 1.5rem;
  border: 2px solid rgba(196, 30, 58, 0.2);
}

.trust-badge strong {
  color: var(--primary);
}

.trust-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.trust-logos span {
  padding: 0.6rem 1.5rem;
  background: rgba(196, 30, 58, 0.08);
  color: var(--primary);
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.9rem;
}

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.faq-item {
  background: var(--white);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 8px 35px rgba(0,0,0,0.06);
  border-left: 4px solid var(--primary);
  transition: all 0.3s var(--ease);
  opacity: 0;
  transform: translateY(20px);
}

.faq-item.revealed {
  opacity: 1;
  transform: translateY(0);
}

.faq-item:hover {
  box-shadow: 0 15px 50px rgba(0,0,0,0.1);
}

.faq-item h4 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.faq-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: var(--white);
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  display: none;
}

.cta-section h2,
.cta-section p,
.cta-section .cta-buttons {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 0.75rem;
}

.cta-section p {
  margin-bottom: 2rem;
  font-size: 1.2rem;
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-section .btn-outline {
  border-color: var(--white);
  color: var(--white);
}

.cta-section .btn-outline:hover {
  background: var(--white);
  color: var(--primary);
}

/* Footer - Premium */
footer {
  background: var(--primary-dark);
  color: var(--white);
  padding: 4rem 2.5rem 2rem;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
  margin-top: 1rem;
  max-width: 280px;
}

.footer-license {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}

.footer-info {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}

.footer-brand img {
  height: 50px;
  margin-bottom: 1rem;
}

.footer-brand .logo-text span {
  color: var(--white);
}

.footer-brand .logo-text small {
  color: rgba(255,255,255,0.6);
}

.footer-col h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1.25rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.95rem;
  display: block;
  padding: 0.35rem 0;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: rgba(255,255,255,0.95);
}

.footer-bottom {
  text-align: center;
}

.footer-bottom .license {
  color: rgba(255,255,255,0.9);
  font-weight: 700;
  font-size: 0.95rem;
  margin-top: 0.5rem;
}

/* Contact form */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 1.1rem 1.5rem;
  margin-bottom: 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s var(--ease);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(196, 30, 58, 0.1);
}

.alert {
  max-width: 600px;
  margin: 0 auto 1.5rem;
  padding: 1.25rem 1.5rem;
  border-radius: 12px;
  font-weight: 500;
}

.alert-success {
  background: #d1fae5;
  color: #065f46;
}

.alert-error {
  background: #fee2e2;
  color: #991b1b;
}

/* Page banner */
.page-banner {
  min-height: 350px;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.page-banner-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 3rem 2rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.page-banner-logo-overlay {
  position: absolute;
  bottom: 1rem;
  right: 2rem;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.page-banner-logo-overlay img {
  height: 24px;
}

.page-banner-logo-overlay span {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--white);
}

.page-banner-logo {
  background: rgba(255,255,255,0.95);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.3);
}

.page-banner-content h1 {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.page-banner-content p {
  color: rgba(255,255,255,0.9);
}

/* Card fallback (old cards) */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 45px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.05);
  transition: all 0.4s var(--ease);
  opacity: 0;
  transform: translateY(25px);
}

.card.revealed {
  opacity: 1;
  transform: translateY(0);
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 70px rgba(0,0,0,0.12);
}

.card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.card h3 span {
  color: var(--primary);
}

.advantages-banner { display: none; }

/* Blog Section */
.blog-section {
  padding: 5rem 2.5rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(340px, 100%), 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 2rem auto 0;
}

.blog-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 45px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.05);
  transition: all 0.4s var(--ease);
  opacity: 0;
  transform: translateY(25px);
}

.blog-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 70px rgba(0,0,0,0.12);
}

.blog-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.blog-card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-card-image .blog-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--primary);
  color: var(--white);
  padding: 0.35rem 0.9rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
}

.blog-card-content {
  padding: 1.75rem;
}

.blog-card-content time {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: block;
  margin-bottom: 0.75rem;
}

.blog-card-content h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
  line-height: 1.3;
}

.blog-card-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.blog-read-more {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.9rem;
}

.blog-card:hover .blog-read-more {
  text-decoration: underline;
}

/* Blog Post Page */
.blog-post-page {
  min-height: 100vh;
}

.blog-post-hero {
  min-height: 400px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 4rem 2rem;
}

.blog-post-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.85) 100%);
}

.blog-post-hero-content {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.blog-post-hero-content .blog-category {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.blog-post-hero-content h1 {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.blog-post-hero-content time {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
}

.blog-post-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.blog-post-content {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-dark);
}

.blog-post-content p {
  margin-bottom: 1.5rem;
}

.blog-post-content a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

.blog-post-content a:hover {
  text-decoration: underline;
}

.blog-post-cta {
  display: flex;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0,0,0,0.08);
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 1200px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bento-cta-card {
    grid-column: span 2;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .hamburger {
    display: flex;
  }
  .nav-desktop {
    display: none;
  }
  .nav-mobile,
  .nav-overlay {
    display: block;
  }
  .nav-mobile {
    display: flex;
  }
  .hero-banner-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-logo-box {
    margin: 0 auto;
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .steps-premium {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .step-connector {
    display: none;
  }
  .section-steps-premium {
    padding: 4rem 1.5rem;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .header-inner {
    padding: 0.75rem 1rem;
    padding-left: max(1rem, env(safe-area-inset-left));
    padding-right: max(1rem, env(safe-area-inset-right));
  }
  .logo {
    height: 40px;
  }
  .top-bar {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
  }
  .top-bar-text {
    white-space: normal;
    line-height: 1.4;
  }
  section {
    padding: 3rem 1rem 4rem;
    padding-left: max(1rem, env(safe-area-inset-left));
    padding-right: max(1rem, env(safe-area-inset-right));
  }
  .section-dark {
    padding: 4rem 1rem;
    padding-left: max(1rem, env(safe-area-inset-left));
    padding-right: max(1rem, env(safe-area-inset-right));
  }
  .promo-banner {
    padding: 3rem 1.5rem;
    text-align: center;
  }
  .promo-banner-content h3 {
    font-size: 1.5rem;
  }
  .cta-section {
    padding: 4rem 1.5rem;
  }
  .cta-section h2 {
    font-size: 1.75rem;
  }
  .cta-section p {
    font-size: 1rem;
  }
  .hero-banner {
    min-height: auto;
    padding: 3rem 1rem 4rem;
    padding-left: max(1rem, env(safe-area-inset-left));
    padding-right: max(1rem, env(safe-area-inset-right));
  }
  .hero-content h1 {
    font-size: 2rem;
  }
  .section-title {
    font-size: 1.75rem;
  }
  .trust-pills-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-pill-item {
    border-right: none;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    padding: 1rem;
  }
  .trust-pill-item:nth-child(odd) {
    border-right: 1px solid rgba(0,0,0,0.06);
  }
  .trust-pill-item:nth-child(n+3) {
    border-bottom: none;
  }
  .trust-pill-premium {
    flex-direction: column;
    text-align: center;
    padding: 1.25rem 1rem;
    gap: 0.75rem;
  }
  .trust-pill-premium .trust-pill-icon {
    margin: 0 auto;
  }
  .ticker-box-premium {
    border-radius: 20px;
  }
  .ticker-premium-inner {
    padding: 0.5rem 1rem 0;
  }
  .ticker-white-box {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    border-radius: 0 0 16px 16px;
  }
  .bento-grid {
    grid-template-columns: 1fr;
  }
  .bento-cta-card {
    grid-column: span 1;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-desc {
    margin-left: auto;
    margin-right: auto;
  }
  .promo-banner {
    flex-direction: column;
    text-align: center;
  }
  .blog-section {
    padding: 3rem 1rem;
  }
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .blog-card-image {
    height: 200px;
  }
  .home-blog-grid {
    grid-template-columns: 1fr;
  }
  .tradingview-widget-container {
    overflow: hidden;
  }
  .hero-banner-logo-overlay {
    bottom: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
  }
  .hero-banner-logo-overlay img {
    height: 28px;
  }
  .page-banner-logo-overlay {
    bottom: 0.75rem;
    right: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.75rem;
  }
  .section-title {
    font-size: 1.5rem;
  }
  .btn {
    padding: 0.9rem 1.5rem;
    font-size: 0.95rem;
  }
  .trust-section {
    padding: 3rem 1.5rem;
  }
  .page-banner {
    min-height: 280px;
  }
  .page-banner-content h1 {
    font-size: 1.75rem;
  }
  .page-banner-inner {
    padding: 2rem 1rem;
  }
  .footer-inner {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  footer {
    padding: 3rem 1rem 2rem;
  }
  .blog-post-hero {
    min-height: 300px;
    padding: 3rem 1rem;
  }
  .blog-post-hero-content h1 {
    font-size: 1.5rem;
  }
  .blog-post-body {
    padding: 2.5rem 1rem;
  }
  .nav-mobile {
    max-width: 100%;
  }
  .hero-banner-logo-overlay {
    display: none;
  }
}

/* Premium: focus visible for accessibility */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}
