/* ============================================================
   Planet — Sermaye Yönetimi Bilgi Portalı
   Main Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@600;700&display=swap');

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy-900:  #0A1628;
  --navy-800:  #0D1F3C;
  --navy-700:  #1A2E4A;
  --navy-600:  #1E3A5F;
  --navy-400:  #2C5282;
  --gold-500:  #C9A84C;
  --gold-400:  #D4B56A;
  --gold-300:  #E8D48E;
  --gray-900:  #1A202C;
  --gray-700:  #2D3748;
  --gray-600:  #4A5568;
  --gray-400:  #718096;
  --gray-200:  #E2E8F0;
  --gray-100:  #F7F9FC;
  --white:     #FFFFFF;
  --accent-line: rgba(201,168,76,.18);
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow-md: 0 4px 16px rgba(10,22,40,.12);
  --shadow-lg: 0 8px 32px rgba(10,22,40,.16);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --transition: .25s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: var(--navy-900);
  line-height: 1.25;
  font-weight: 700;
}

.section-title {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--navy-900);
  margin-bottom: .5rem;
}

.section-sub {
  font-size: 1rem;
  color: var(--gray-400);
  margin-bottom: 2.5rem;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}

.gold-line {
  display: block;
  width: 52px;
  height: 3px;
  background: var(--gold-500);
  margin-bottom: 1.2rem;
  border-radius: 2px;
}

/* ── Layout Helpers ───────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.section { padding: 5rem 0; }
.section-alt { background: var(--gray-100); }
.section-dark { background: var(--navy-900); color: var(--gray-200); }
.section-dark h1,
.section-dark h2,
.section-dark h3 { color: var(--white); }
.section-dark .section-sub { color: var(--gray-400); }

/* ── Header / Nav ─────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 1.5rem;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: .5rem;
  text-decoration: none;
}

.logo-mark {
  width: 36px;
  height: 36px;
  background: var(--navy-900);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}

.logo-mark::after {
  content: 'P';
  color: var(--gold-500);
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy-900);
}

.logo-text span { color: var(--gold-500); }

.main-nav { display: flex; align-items: center; gap: .15rem; }

.main-nav a {
  display: block;
  padding: .45rem .85rem;
  font-size: .88rem;
  font-weight: 500;
  color: var(--gray-700);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active { color: var(--navy-600); background: var(--gray-100); }

.dropdown { position: relative; }

.dropdown-toggle::after {
  content: '›';
  display: inline-block;
  transform: rotate(90deg);
  margin-left: .3rem;
  font-size: .9rem;
  transition: transform var(--transition);
}

.dropdown:hover .dropdown-toggle::after { transform: rotate(-90deg); }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: .5rem 0;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all var(--transition);
  z-index: 100;
}

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

.dropdown-menu a {
  display: block;
  padding: .55rem 1.1rem;
  font-size: .87rem;
  color: var(--gray-700);
  transition: background var(--transition), color var(--transition);
  border-radius: 0;
}

.dropdown-menu a:hover { background: var(--gray-100); color: var(--navy-600); }

.nav-cta {
  background: var(--navy-900);
  color: var(--white) !important;
  border-radius: var(--radius-sm);
  padding: .5rem 1.1rem !important;
  font-weight: 600 !important;
  transition: background var(--transition) !important;
}

.nav-cta:hover { background: var(--navy-600) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: .4rem;
  border: none;
  background: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy-900);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ── Hero (strictly no badges/promos) ────────────────────── */
.hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: var(--navy-900);
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(10,22,40,.96) 55%, rgba(30,58,95,.85) 100%);
  z-index: 1;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 1.4rem;
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  color: var(--white);
  margin-bottom: 1.4rem;
  line-height: 1.15;
}

.hero-title em {
  font-style: normal;
  color: var(--gold-400);
}

.hero-desc {
  font-size: 1.08rem;
  color: rgba(255,255,255,.72);
  max-width: 580px;
  margin-bottom: 2.4rem;
  line-height: 1.7;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.6rem;
  font-size: .93rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
  font-family: 'Inter', sans-serif;
}

.btn-primary {
  background: var(--gold-500);
  color: var(--navy-900);
}

.btn-primary:hover {
  background: var(--gold-400);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(201,168,76,.35);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.45);
}

.btn-outline-white:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.8);
}

.btn-navy {
  background: var(--navy-900);
  color: var(--white);
}

.btn-navy:hover {
  background: var(--navy-600);
  transform: translateY(-1px);
}

.btn-outline-navy {
  background: transparent;
  color: var(--navy-900);
  border: 1.5px solid var(--navy-900);
}

.btn-outline-navy:hover {
  background: var(--navy-900);
  color: var(--white);
}

.btn-gold-outline {
  background: transparent;
  color: var(--gold-500);
  border: 1.5px solid var(--gold-500);
}

.btn-gold-outline:hover { background: var(--gold-500); color: var(--navy-900); }

.btn-sm { padding: .5rem 1rem; font-size: .82rem; }
.btn-lg { padding: .9rem 2rem; font-size: 1rem; }

/* ── Stat Row (hero / sections) ───────────────────────────── */
.stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 2rem;
}

.stat-item .stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-400);
}

.stat-item .stat-label {
  font-size: .8rem;
  color: rgba(255,255,255,.55);
  margin-top: .1rem;
}

/* ── Cards ────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}

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

.card-body { padding: 1.6rem; }
.card-img { width: 100%; height: 200px; object-fit: cover; }
.card-meta {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: .6rem;
}

.card-title {
  font-size: 1.15rem;
  margin-bottom: .7rem;
  color: var(--navy-900);
}

.card-text { font-size: .9rem; color: var(--gray-600); line-height: 1.65; }
.card-footer { padding: 1rem 1.6rem; border-top: 1px solid var(--gray-200); }

/* ── Info Cards (icon + text) ─────────────────────────────── */
.info-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: box-shadow var(--transition);
}

.info-card:hover { box-shadow: var(--shadow-md); }

.info-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--navy-900);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  flex-shrink: 0;
}

.info-icon svg { color: var(--gold-400); }

.info-card h3 { font-size: 1.1rem; margin-bottom: .6rem; }
.info-card p  { font-size: .9rem; color: var(--gray-600); }

/* ── Grid Systems ─────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ── Feature Split (image + text) ────────────────────────── */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.feature-split.reverse .feature-img-wrap { order: 2; }
.feature-split.reverse .feature-content  { order: 1; }

.feature-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.feature-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }

.feature-content h2 { margin-bottom: 1rem; }
.feature-content p  { color: var(--gray-600); margin-bottom: 1.2rem; }

.check-list { display: flex; flex-direction: column; gap: .7rem; margin: 1.4rem 0; }

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  font-size: .93rem;
  color: var(--gray-700);
}

.check-list li::before {
  content: '';
  width: 18px;
  height: 18px;
  background: var(--gold-500);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: .15rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230A1628' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 11px;
  background-repeat: no-repeat;
  background-position: center;
}

/* ── Breadcrumb ───────────────────────────────────────────── */
.breadcrumb {
  background: var(--navy-900);
  padding: 1.1rem 0;
}

.breadcrumb-inner {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .83rem;
  color: rgba(255,255,255,.55);
}

.breadcrumb-inner a { color: rgba(255,255,255,.55); transition: color var(--transition); }
.breadcrumb-inner a:hover { color: var(--gold-400); }
.breadcrumb-inner .sep { color: rgba(255,255,255,.3); }
.breadcrumb-inner .current { color: var(--gold-400); font-weight: 500; }

/* ── Page Hero (inner pages) ──────────────────────────────── */
.page-hero {
  background: var(--navy-900);
  padding: 4rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 40%;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,.06));
  pointer-events: none;
}

.page-hero-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--white);
  margin-bottom: .8rem;
}

.page-hero-desc {
  color: rgba(255,255,255,.65);
  max-width: 600px;
  font-size: 1.02rem;
}

/* ── Topic Nav (horizontal pills) ────────────────────────── */
.topic-nav {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 70px;
  z-index: 100;
}

.topic-nav-inner {
  display: flex;
  gap: .3rem;
  overflow-x: auto;
  scrollbar-width: none;
  padding: .6rem 0;
}

.topic-nav-inner::-webkit-scrollbar { display: none; }

.topic-nav-inner a {
  display: block;
  padding: .4rem .95rem;
  font-size: .84rem;
  font-weight: 500;
  color: var(--gray-600);
  border-radius: 50px;
  white-space: nowrap;
  transition: all var(--transition);
}

.topic-nav-inner a:hover,
.topic-nav-inner a.active {
  background: var(--navy-900);
  color: var(--white);
}

/* ── Quote / Callout ──────────────────────────────────────── */
.callout {
  border-left: 4px solid var(--gold-500);
  background: rgba(201,168,76,.07);
  padding: 1.3rem 1.6rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 2rem 0;
}

.callout p {
  font-style: italic;
  color: var(--navy-700);
  font-size: .97rem;
}

/* ── Table ────────────────────────────────────────────────── */
.data-table { width: 100%; border-collapse: collapse; font-size: .91rem; }
.data-table th {
  background: var(--navy-900);
  color: var(--white);
  padding: .9rem 1.1rem;
  text-align: left;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  font-size: .85rem;
  letter-spacing: .03em;
}
.data-table td { padding: .8rem 1.1rem; border-bottom: 1px solid var(--gray-200); color: var(--gray-700); }
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:nth-child(even) td { background: var(--gray-100); }
.data-table tr:hover td { background: rgba(201,168,76,.06); }

.table-wrap { overflow-x: auto; border-radius: var(--radius-md); border: 1px solid var(--gray-200); }

/* ── Progress / Bar Chart ─────────────────────────────────── */
.bar-chart { display: flex; flex-direction: column; gap: 1.1rem; }

.bar-item label {
  display: flex;
  justify-content: space-between;
  font-size: .85rem;
  font-weight: 500;
  color: var(--gray-700);
  margin-bottom: .35rem;
}

.bar-track {
  height: 8px;
  background: var(--gray-200);
  border-radius: 50px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--navy-700), var(--gold-500));
  border-radius: 50px;
  transition: width 1s ease;
}

/* ── Info Box ─────────────────────────────────────────────── */
.info-box {
  background: var(--navy-900);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.info-box h3 { color: var(--gold-400); margin-bottom: .9rem; }
.info-box p  { color: rgba(255,255,255,.72); font-size: .93rem; }
.info-box ul li { color: rgba(255,255,255,.72); font-size: .9rem; padding: .35rem 0; border-bottom: 1px solid rgba(255,255,255,.08); }

/* ── Accordion ────────────────────────────────────────────── */
.accordion { display: flex; flex-direction: column; gap: .6rem; }

.accordion-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.accordion-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.1rem 1.4rem;
  background: var(--white);
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  color: var(--navy-900);
  text-align: left;
  transition: background var(--transition);
}

.accordion-btn:hover { background: var(--gray-100); }

.accordion-btn .icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  flex-shrink: 0;
  transition: transform var(--transition), background var(--transition);
}

.accordion-item.open .accordion-btn .icon {
  transform: rotate(45deg);
  background: var(--gold-500);
  color: var(--navy-900);
}

.accordion-body {
  display: none;
  padding: 1rem 1.4rem 1.3rem;
  font-size: .92rem;
  color: var(--gray-600);
  border-top: 1px solid var(--gray-200);
  line-height: 1.7;
}

.accordion-item.open .accordion-body { display: block; }

/* ── Contact Form ─────────────────────────────────────────── */
.form-group { margin-bottom: 1.3rem; }

.form-label {
  display: block;
  font-size: .87rem;
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: .45rem;
}

.form-control {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-size: .93rem;
  color: var(--gray-700);
  font-family: 'Inter', sans-serif;
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--navy-600);
  box-shadow: 0 0 0 3px rgba(30,58,95,.12);
}

textarea.form-control { resize: vertical; min-height: 120px; }

.form-success {
  display: none;
  background: #f0fdf4;
  border: 1.5px solid #86efac;
  border-radius: var(--radius-md);
  padding: 1.2rem 1.5rem;
  color: #166534;
  font-size: .95rem;
  font-weight: 500;
  margin-top: 1rem;
  align-items: center;
  gap: .7rem;
}

.form-success.show { display: flex; }

/* ── Testimonial ──────────────────────────────────────────── */
.testimonial {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 5rem;
  color: var(--accent-line);
  font-family: 'Playfair Display', serif;
  line-height: 1;
}

.testimonial-text {
  font-style: italic;
  color: var(--gray-600);
  font-size: .95rem;
  margin-bottom: 1.2rem;
  line-height: 1.7;
}

.testimonial-author strong { display: block; font-size: .9rem; color: var(--navy-900); }
.testimonial-author span  { font-size: .8rem; color: var(--gray-400); }

/* ── Blog ─────────────────────────────────────────────────── */
.article-header { margin-bottom: 2rem; }
.article-meta    { font-size: .82rem; color: var(--gray-400); margin-bottom: 1rem; display: flex; gap: 1.2rem; flex-wrap: wrap; }
.article-meta span { display: flex; align-items: center; gap: .35rem; }
.article-content h2 { font-size: 1.45rem; margin: 2rem 0 .8rem; }
.article-content h3 { font-size: 1.15rem; margin: 1.6rem 0 .6rem; }
.article-content p  { margin-bottom: 1.1rem; color: var(--gray-700); }
.article-content ul { padding-left: 1.3rem; margin-bottom: 1.1rem; }
.article-content ul li { list-style: disc; color: var(--gray-700); padding: .25rem 0; }
.article-img { border-radius: var(--radius-lg); margin: 2rem 0; overflow: hidden; }
.article-img img { width: 100%; max-height: 480px; object-fit: cover; }

.sidebar { position: sticky; top: 90px; }
.sidebar-widget { margin-bottom: 2rem; }
.sidebar-widget-title { font-size: 1rem; font-weight: 700; color: var(--navy-900); margin-bottom: 1rem; padding-bottom: .5rem; border-bottom: 2px solid var(--gold-500); }
.sidebar-link-list a { display: flex; align-items: center; gap: .5rem; padding: .5rem 0; font-size: .87rem; color: var(--gray-700); border-bottom: 1px solid var(--gray-200); transition: color var(--transition); }
.sidebar-link-list a:hover { color: var(--navy-600); }
.sidebar-link-list a:last-child { border-bottom: none; }

/* ── Newsletter ───────────────────────────────────────────── */
.newsletter-strip {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  padding: 3.5rem 0;
  color: var(--white);
  text-align: center;
}

.newsletter-strip h2 { color: var(--white); margin-bottom: .6rem; }
.newsletter-strip p  { color: rgba(255,255,255,.6); margin-bottom: 1.8rem; }

.nl-form {
  display: flex;
  max-width: 480px;
  margin: 0 auto;
  gap: .6rem;
  flex-wrap: wrap;
  justify-content: center;
}

.nl-form input {
  flex: 1;
  min-width: 240px;
  padding: .75rem 1.1rem;
  border: none;
  border-radius: var(--radius-sm);
  font-size: .93rem;
  font-family: 'Inter', sans-serif;
  outline: none;
}

/* ── Footer ───────────────────────────────────────────────── */
.site-footer {
  background: var(--navy-900);
  color: rgba(255,255,255,.6);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-brand p {
  font-size: .88rem;
  line-height: 1.7;
  margin: 1rem 0 1.4rem;
  color: rgba(255,255,255,.55);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .85rem;
  margin-bottom: .7rem;
  color: rgba(255,255,255,.55);
}

.footer-col-title {
  font-family: 'Playfair Display', serif;
  font-size: .95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.1rem;
}

.footer-links { display: flex; flex-direction: column; gap: .5rem; }
.footer-links a {
  font-size: .87rem;
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
}

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

.footer-bottom {
  padding: 1.4rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .82rem;
  color: rgba(255,255,255,.35);
}

.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { color: rgba(255,255,255,.35); transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--gold-400); }

/* ── Cookie Banner ────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--navy-800);
  color: var(--white);
  padding: 1.2rem 2rem;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  box-shadow: 0 -4px 20px rgba(0,0,0,.3);
  transform: translateY(100%);
  transition: transform .4s ease;
}

.cookie-banner.show { transform: translateY(0); }
.cookie-banner p { font-size: .87rem; color: rgba(255,255,255,.72); flex: 1; min-width: 220px; }
.cookie-banner a { color: var(--gold-400); }
.cookie-actions { display: flex; gap: .7rem; flex-shrink: 0; }

/* ── Utility ──────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-gold   { color: var(--gold-500); }
.text-navy   { color: var(--navy-900); }
.text-muted  { color: var(--gray-400); }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.fw-600 { font-weight: 600; }
.divider { height: 1px; background: var(--gray-200); margin: 2.5rem 0; }

.tag {
  display: inline-block;
  padding: .25rem .75rem;
  background: var(--gray-100);
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--navy-600);
  letter-spacing: .04em;
  text-transform: uppercase;
}

.tag-gold {
  background: rgba(201,168,76,.12);
  color: var(--gold-500);
}

.notice-bar {
  background: var(--navy-800);
  color: rgba(255,255,255,.6);
  font-size: .82rem;
  padding: .6rem 0;
  text-align: center;
}

.notice-bar a { color: var(--gold-400); }

/* ── Policy Pages ─────────────────────────────────────────── */
.policy-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 3rem;
  align-items: start;
}

.policy-toc {
  position: sticky;
  top: 90px;
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.policy-toc-title { font-size: .9rem; font-weight: 700; color: var(--navy-900); margin-bottom: 1rem; }
.policy-toc a { display: block; font-size: .85rem; color: var(--gray-600); padding: .4rem 0; border-bottom: 1px solid var(--gray-200); transition: color var(--transition); }
.policy-toc a:hover { color: var(--navy-600); }
.policy-toc a:last-child { border-bottom: none; }

.policy-content h2 { font-size: 1.4rem; margin: 2.5rem 0 .9rem; color: var(--navy-900); padding-bottom: .5rem; border-bottom: 2px solid var(--gold-500); }
.policy-content h3 { font-size: 1.1rem; margin: 1.8rem 0 .6rem; color: var(--navy-800); }
.policy-content p  { font-size: .94rem; color: var(--gray-700); margin-bottom: 1rem; line-height: 1.75; }
.policy-content ul { padding-left: 1.3rem; margin-bottom: 1rem; }
.policy-content ul li { font-size: .93rem; color: var(--gray-700); list-style: disc; padding: .3rem 0; }
.policy-content .highlight-box { background: rgba(201,168,76,.08); border-left: 3px solid var(--gold-500); padding: 1rem 1.3rem; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; margin: 1.5rem 0; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4     { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .policy-layout { grid-template-columns: 1fr; }
  .policy-toc  { position: relative; top: 0; }
}

@media (max-width: 768px) {
  .hamburger     { display: flex; }
  .main-nav      {
    display: none;
    position: fixed;
    top: 70px; left: 0; right: 0; bottom: 0;
    background: var(--white);
    flex-direction: column;
    padding: 2rem 1.5rem;
    overflow-y: auto;
    gap: .2rem;
    box-shadow: var(--shadow-lg);
  }
  .main-nav.open { display: flex; }
  .main-nav a    { padding: .75rem .8rem; font-size: 1rem; border-radius: var(--radius-md); }
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0 0 0 1rem;
    display: none;
  }
  .dropdown.open .dropdown-menu { display: block; }
  .dropdown-toggle::after { display: inline-block; }

  .grid-2     { grid-template-columns: 1fr; }
  .grid-3     { grid-template-columns: 1fr; }
  .feature-split { grid-template-columns: 1fr; gap: 2.5rem; }
  .feature-split.reverse .feature-img-wrap { order: 0; }
  .feature-split.reverse .feature-content  { order: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .stat-row    { gap: 1.5rem; }
  .hero { min-height: 75vh; }
  .hero-title  { font-size: clamp(1.8rem, 7vw, 2.5rem); }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .nl-form { flex-direction: column; }
  .nl-form input { min-width: unset; width: 100%; }
}
