/* EYYA Proje — Static CSS (HTML/CSS/JS port)
   Kurumsal: lacivert + turkuaz/amber sektör vurgusu */

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

:root {
  --background: #fbfcfd;
  --foreground: #0f1c2e;
  --card: #ffffff;
  --muted: #eef2f6;
  --muted-foreground: #5b6b80;
  --border: #e2e8ef;
  --primary: #0f2742;        /* deep navy */
  --primary-glow: #1c3a5c;
  --primary-foreground: #f5fafe;
  --secondary: #f1f5f9;

  --sector: #1bb3c7;         /* turkuaz default */
  --sector-foreground: #ffffff;
  --sector-soft: #e1f6f8;
  --sector-strong: #0e6e85;

  --radius: 12px;
  --shadow-card: 0 1px 0 rgba(15,28,46,0.04), 0 8px 24px -12px rgba(15,28,46,0.10);
  --shadow-elevated: 0 8px 24px -8px rgba(15,28,46,0.18), 0 4px 8px -4px rgba(15,28,46,0.08);
  --shadow-premium: 0 20px 60px -20px rgba(27,179,199,0.40);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --transition: 240ms var(--ease);
}

[data-sector="construction"] {
  --sector: #ec7a1c;         /* amber */
  --sector-foreground: #ffffff;
  --sector-soft: #fdeedd;
  --sector-strong: #b85a10;
}
[data-sector="maritime"] {
  --sector: #1bb3c7;
  --sector-foreground: #ffffff;
  --sector-soft: #e1f6f8;
  --sector-strong: #0e6e85;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--background);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
h1, h2, h3, h4 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--foreground);
}

.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
@media (min-width: 1024px) { .container { padding: 0 40px; } }

/* ========== HEADER ========== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}
.utility-bar {
  background: rgba(241,245,249,0.6);
  border-bottom: 1px solid var(--border);
  font-size: 12px;
}
.utility-bar .container {
  height: 36px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.utility-info { color: var(--muted-foreground); display: none; gap: 16px; align-items: center; }
.utility-info .sep { width: 1px; height: 12px; background: var(--border); }
@media (min-width: 768px) { .utility-info { display: flex; } }

.utility-controls { display: flex; gap: 12px; align-items: center; margin-left: auto; }

.sector-switch {
  display: inline-flex; padding: 3px;
  background: var(--muted);
  border-radius: 999px;
  border: 1px solid var(--border);
}
.sector-switch button {
  padding: 5px 14px;
  font-size: 12px; font-weight: 600;
  border-radius: 999px;
  color: var(--muted-foreground);
  transition: var(--transition);
}
.sector-switch button.active {
  background: var(--sector);
  color: var(--sector-foreground);
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

.lang-switch {
  display: inline-flex; gap: 2px;
  font-size: 12px; font-weight: 600;
}
.lang-switch button {
  padding: 4px 8px; border-radius: 6px; color: var(--muted-foreground);
}
.lang-switch button.active { color: var(--foreground); background: var(--muted); }

.main-nav-row {
  height: 68px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: 22px;
  letter-spacing: 0.02em;
  display: flex; align-items: center; gap: 8px;
}
.logo .dot { width: 10px; height: 10px; border-radius: 3px; background: var(--sector); }
.logo small { font-size: 10px; color: var(--muted-foreground); font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; }

.main-nav { display: none; gap: 4px; align-items: center; }
@media (min-width: 1024px) { .main-nav { display: flex; } }
.main-nav a {
  padding: 8px 16px; border-radius: 999px;
  font-size: 14px; font-weight: 500;
  color: var(--muted-foreground);
  transition: var(--transition);
}
.main-nav a:hover { background: var(--secondary); color: var(--foreground); }
.main-nav a.active { background: var(--secondary); color: var(--foreground); }

.btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 18px;
  font-size: 14px; font-weight: 600;
  border-radius: 8px;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary { background: var(--primary); color: var(--primary-foreground); }
.btn-primary:hover { background: var(--primary-glow); }
.btn-sector { background: var(--sector); color: var(--sector-foreground); }
.btn-sector:hover { background: var(--sector-strong); }
.btn-outline { background: transparent; color: var(--foreground); border: 1px solid var(--border); }
.btn-outline:hover { background: var(--secondary); }
.btn-ghost { background: transparent; color: var(--foreground); }
.btn-ghost:hover { background: var(--secondary); }
.btn-lg { padding: 14px 24px; font-size: 15px; }

.menu-toggle {
  display: inline-flex; width: 40px; height: 40px;
  align-items: center; justify-content: center;
  border: 1px solid var(--border); border-radius: 999px;
}
@media (min-width: 1024px) { .menu-toggle { display: none; } }

.mobile-nav { display: none; border-top: 1px solid var(--border); padding: 8px 0 16px; }
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block; padding: 12px 0; border-bottom: 1px solid var(--border);
  font-size: 14px; font-weight: 500; color: var(--muted-foreground);
}
.mobile-nav a.active { color: var(--sector); }
.mobile-nav .btn { margin-top: 16px; width: 100%; justify-content: center; }

.header-cta { display: none; }
@media (min-width: 768px) { .header-cta { display: inline-flex; } }

/* ========== HERO ========== */
.hero {
  position: relative; isolation: isolate;
  overflow: hidden;
  min-height: 640px;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 80px 0 32px;
}
@media (min-width: 1024px) { .hero { min-height: 720px; padding: 120px 0 32px; } }
.hero-bg { position: absolute; inset: 0; z-index: -1; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(15,39,66,0.92), rgba(28,58,92,0.78) 50%, rgba(27,179,199,0.55));
}
[data-sector="construction"] .hero-bg::after {
  background: linear-gradient(135deg, rgba(15,39,66,0.92), rgba(28,58,92,0.78) 50%, rgba(236,122,28,0.55));
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.18em;
  color: rgba(255,255,255,0.85);
  width: fit-content;
}
.hero-eyebrow .dot { width: 6px; height: 6px; border-radius: 999px; background: var(--sector); }

.hero h1 {
  margin-top: 24px;
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 600; color: #fff;
  max-width: 900px; text-wrap: balance;
}
.hero p.lead {
  margin-top: 20px;
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  max-width: 640px;
}
.hero-actions {
  margin-top: 32px;
  display: flex; flex-wrap: wrap; gap: 12px;
}
.hero-actions .btn-outline {
  background: rgba(255,255,255,0.05); color: #fff;
  border-color: rgba(255,255,255,0.3); backdrop-filter: blur(8px);
}
.hero-actions .btn-outline:hover { background: rgba(255,255,255,0.15); }
.hero-actions .btn-ghost { color: #fff; }
.hero-actions .btn-ghost:hover { background: rgba(255,255,255,0.1); }

.hero-dock {
  margin-top: 64px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  border-radius: 18px;
  padding: 12px;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px;
}
.hero-dock .label { padding-left: 12px; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.18em; color: rgba(255,255,255,0.6); }
.hero-dock .toggles { display: flex; gap: 8px; flex: 1 0 100%; }
@media (min-width: 640px) { .hero-dock .toggles { flex: 0 0 auto; } }
.hero-dock button {
  flex: 1; padding: 10px 18px;
  border-radius: 12px;
  font-size: 14px; font-weight: 500;
  color: rgba(255,255,255,0.8);
  transition: var(--transition);
}
.hero-dock button.active { background: var(--sector); color: var(--sector-foreground); }
.hero-dock button:not(.active):hover { background: rgba(255,255,255,0.1); }

/* ========== STATS ========== */
.stats {
  background: var(--card);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1px; background: var(--border);
  overflow: hidden;
}
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-item { background: var(--card); padding: 36px 24px; text-align: center; }
.stat-value { font-family: 'Space Grotesk', sans-serif; font-size: 36px; font-weight: 600; }
.stat-label {
  margin-top: 6px; font-size: 11px; font-weight: 500;
  color: var(--muted-foreground);
  text-transform: uppercase; letter-spacing: 0.18em;
}

/* ========== SECTION ========== */
section.section { padding: 80px 0; }
@media (min-width: 768px) { section.section { padding: 112px 0; } }
.section-head { display: grid; gap: 16px; margin-bottom: 56px; }
@media (min-width: 768px) { .section-head { grid-template-columns: 1fr 1fr; align-items: end; gap: 32px; } }
.eyebrow { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.18em; color: var(--sector); }
.section-head h2 { margin-top: 12px; font-size: clamp(26px, 3.5vw, 36px); font-weight: 600; }
.section-head p { color: var(--muted-foreground); }
@media (min-width: 768px) { .section-head p { text-align: right; } }

/* ========== SERVICES ========== */
.services-grid {
  display: grid; gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }

.service-card {
  border: 1px solid var(--border);
  background: var(--card);
  padding: 24px;
  border-radius: 18px;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--sector);
  box-shadow: var(--shadow-elevated);
}
.service-icon {
  display: inline-flex; width: 44px; height: 44px;
  align-items: center; justify-content: center;
  border-radius: 12px;
  background: var(--sector-soft); color: var(--sector-strong);
  margin-bottom: 16px;
}
.service-card h3 { font-size: 16px; font-weight: 600; }
.service-card p { margin-top: 8px; font-size: 14px; color: var(--muted-foreground); line-height: 1.6; }

/* ========== PROJECTS / CARDS ========== */
.tinted-band { background: rgba(241,245,249,0.5); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.cards-grid {
  display: grid; gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .cards-grid { grid-template-columns: repeat(3, 1fr); } }

.project-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  display: flex; flex-direction: column;
}
.project-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-elevated); }
.project-card .image { aspect-ratio: 4/3; overflow: hidden; background: var(--muted); }
.project-card .image img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms var(--ease); }
.project-card:hover .image img { transform: scale(1.05); }
.project-card .body { padding: 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.project-card .meta { display: flex; gap: 12px; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted-foreground); }
.project-card .meta .tag { color: var(--sector-strong); }
.project-card h3 { font-size: 18px; font-weight: 600; }
.project-card .summary { font-size: 14px; color: var(--muted-foreground); flex: 1; }
.project-card .footer { display: flex; justify-content: space-between; align-items: center; margin-top: 12px; font-size: 13px; color: var(--muted-foreground); }
.project-card .footer .arrow { color: var(--sector-strong); font-weight: 600; }

/* ========== LISTINGS ========== */
.listing-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 16px; padding: 24px;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  display: flex; flex-direction: column; gap: 12px;
}
.listing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-elevated); border-color: var(--sector); }
.listing-card .badges { display: flex; gap: 8px; flex-wrap: wrap; }
.badge {
  display: inline-flex; padding: 4px 10px;
  font-size: 11px; font-weight: 600;
  border-radius: 999px;
  background: var(--sector-soft); color: var(--sector-strong);
  text-transform: uppercase; letter-spacing: 0.08em;
}
.badge.outline { background: transparent; border: 1px solid var(--border); color: var(--muted-foreground); }
.listing-card h3 { font-size: 18px; font-weight: 600; }
.listing-card .summary { font-size: 14px; color: var(--muted-foreground); flex: 1; }
.listing-card .meta { display: flex; gap: 16px; font-size: 12px; color: var(--muted-foreground); flex-wrap: wrap; }

/* ========== CTA BAND ========== */
.cta-band {
  position: relative;
  background: var(--primary);
  color: var(--primary-foreground);
  border-radius: 24px;
  padding: 48px 32px;
  margin: 0 0 96px;
  box-shadow: var(--shadow-premium);
  overflow: hidden;
}
@media (min-width: 768px) { .cta-band { padding: 64px; } }
.cta-band::before {
  content: ""; position: absolute; inset: 0; opacity: 0.5;
  background:
    radial-gradient(at 20% 0%, rgba(27,179,199,0.18) 0, transparent 50%),
    radial-gradient(at 80% 100%, rgba(15,39,66,0.4) 0, transparent 50%);
}
[data-sector="construction"] .cta-band::before {
  background:
    radial-gradient(at 20% 0%, rgba(236,122,28,0.18) 0, transparent 50%),
    radial-gradient(at 80% 100%, rgba(15,39,66,0.4) 0, transparent 50%);
}
.cta-band-inner {
  position: relative; display: grid; gap: 24px;
}
@media (min-width: 768px) { .cta-band-inner { grid-template-columns: 1fr 1fr; align-items: center; } }
.cta-band h3 { font-size: clamp(26px, 3.5vw, 36px); color: #fff; }
.cta-band p { margin-top: 12px; color: rgba(255,255,255,0.7); max-width: 420px; }
.cta-band .actions { display: flex; flex-wrap: wrap; gap: 12px; }
@media (min-width: 768px) { .cta-band .actions { justify-content: flex-end; } }
.cta-band .btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,0.2); }
.cta-band .btn-outline:hover { background: rgba(255,255,255,0.1); }

/* ========== PAGE HERO (sub pages) ========== */
.page-hero {
  position: relative; overflow: hidden;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, #fbfcfd, #f1f5f9);
}
.page-hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(at 20% 0%, rgba(27,179,199,0.12) 0, transparent 50%),
    radial-gradient(at 80% 100%, rgba(15,39,66,0.08) 0, transparent 50%);
}
[data-sector="construction"] .page-hero::before {
  background:
    radial-gradient(at 20% 0%, rgba(236,122,28,0.12) 0, transparent 50%),
    radial-gradient(at 80% 100%, rgba(15,39,66,0.08) 0, transparent 50%);
}
.page-hero .container { position: relative; padding-top: 80px; padding-bottom: 80px; }
@media (min-width: 1024px) { .page-hero .container { padding-top: 112px; padding-bottom: 112px; } }
.page-hero h1 { font-size: clamp(34px, 5vw, 56px); font-weight: 600; max-width: 800px; text-wrap: balance; }
.page-hero p.subtitle { margin-top: 20px; font-size: 17px; color: var(--muted-foreground); max-width: 640px; }
.page-hero .eyebrow-pill {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(27,179,199,0.3);
  background: var(--sector-soft);
  padding: 6px 14px; border-radius: 999px;
  font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--sector-strong);
  width: fit-content; margin-bottom: 24px;
}
.page-hero .eyebrow-pill .dot { width: 6px; height: 6px; border-radius: 999px; background: var(--sector); }

/* ========== FILTERS ========== */
.filters {
  display: flex; flex-wrap: wrap; gap: 12px; align-items: center;
  margin-bottom: 32px;
}
.filters input[type="search"] {
  flex: 1; min-width: 220px;
  padding: 12px 16px;
  border: 1px solid var(--border); border-radius: 10px;
  background: var(--card); font: inherit;
}
.filters input[type="search"]:focus { outline: 2px solid var(--sector); outline-offset: 1px; }
.chip {
  padding: 8px 16px;
  border: 1px solid var(--border); border-radius: 999px;
  font-size: 13px; font-weight: 500;
  background: var(--card); color: var(--muted-foreground);
  transition: var(--transition);
}
.chip.active, .chip:hover { background: var(--sector); color: var(--sector-foreground); border-color: var(--sector); }

/* ========== DETAIL PAGE ========== */
.detail-grid {
  display: grid; gap: 40px;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) { .detail-grid { grid-template-columns: 2fr 1fr; gap: 56px; } }
.detail-image { border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-card); aspect-ratio: 16/9; background: var(--muted); }
.detail-image img { width: 100%; height: 100%; object-fit: cover; }
.detail-body h2 { margin-top: 32px; font-size: 24px; font-weight: 600; }
.detail-body p { margin-top: 12px; color: var(--muted-foreground); line-height: 1.75; }
.detail-side {
  border: 1px solid var(--border); background: var(--card);
  border-radius: 18px; padding: 28px;
  box-shadow: var(--shadow-card);
  position: sticky; top: 120px; align-self: start;
}
.detail-side h3 { font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted-foreground); margin-bottom: 16px; }
.detail-side dl { display: grid; gap: 14px; }
.detail-side dt { font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted-foreground); margin-bottom: 4px; }
.detail-side dd { font-size: 14px; font-weight: 500; }
.scope-list { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 20px; }

/* ========== ABOUT ========== */
.manifesto {
  display: grid; gap: 32px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .manifesto { grid-template-columns: repeat(3, 1fr); } }
.manifesto-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 18px; padding: 28px;
  box-shadow: var(--shadow-card);
}
.manifesto-card .num {
  font-family: 'Space Grotesk', sans-serif; font-size: 14px;
  color: var(--sector); font-weight: 600; margin-bottom: 12px;
}
.manifesto-card h3 { font-size: 20px; font-weight: 600; margin-bottom: 8px; }
.manifesto-card p { font-size: 14px; color: var(--muted-foreground); line-height: 1.6; }

.timeline { display: grid; gap: 0; margin-top: 40px; }
.timeline-item {
  display: grid; grid-template-columns: 100px 1fr; gap: 24px;
  padding: 24px 0;
  border-top: 1px solid var(--border);
}
.timeline-item .year { font-family: 'Space Grotesk', sans-serif; font-size: 22px; font-weight: 600; color: var(--sector-strong); }
.timeline-item .desc h4 { font-size: 16px; font-weight: 600; margin-bottom: 4px; }
.timeline-item .desc p { font-size: 14px; color: var(--muted-foreground); }

/* ========== CONTACT ========== */
.contact-grid { display: grid; gap: 40px; grid-template-columns: 1fr; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-info { display: grid; gap: 24px; }
.info-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 16px; padding: 24px;
  box-shadow: var(--shadow-card);
}
.info-card h4 { font-size: 14px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted-foreground); margin-bottom: 8px; }
.info-card p { font-size: 16px; font-weight: 500; }

.form-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 18px; padding: 32px;
  box-shadow: var(--shadow-card);
}
.form-row { display: grid; gap: 6px; margin-bottom: 16px; }
.form-row label { font-size: 13px; font-weight: 500; color: var(--foreground); }
.form-row input, .form-row textarea, .form-row select {
  padding: 12px 14px;
  border: 1px solid var(--border); border-radius: 10px;
  background: var(--card); font: inherit; color: var(--foreground);
}
.form-row input:focus, .form-row textarea:focus, .form-row select:focus {
  outline: 2px solid var(--sector); outline-offset: 1px;
}
.form-row textarea { resize: vertical; min-height: 120px; }

/* ========== FOOTER ========== */
.site-footer {
  background: var(--primary);
  color: rgba(255,255,255,0.75);
  padding: 64px 0 32px;
  margin-top: 0;
}
.footer-grid {
  display: grid; gap: 40px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-grid h5 { color: #fff; font-family: 'Space Grotesk', sans-serif; font-size: 14px; font-weight: 600; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.12em; }
.footer-grid ul { display: grid; gap: 8px; font-size: 14px; }
.footer-grid a:hover { color: var(--sector); }
.site-footer .brand { color: #fff; font-family: 'Space Grotesk', sans-serif; font-size: 24px; font-weight: 700; margin-bottom: 12px; }
.site-footer .brand-desc { font-size: 14px; max-width: 320px; line-height: 1.6; }
.footer-bottom {
  margin-top: 48px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px;
  font-size: 13px;
}

/* ========== TOAST ========== */
.toast {
  position: fixed; bottom: 24px; right: 24px;
  background: var(--primary); color: #fff;
  padding: 14px 20px;
  border-radius: 12px;
  box-shadow: var(--shadow-elevated);
  font-size: 14px;
  z-index: 100;
  transform: translateY(20px); opacity: 0;
  transition: var(--transition);
}
.toast.show { transform: translateY(0); opacity: 1; }

/* Animations */
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
.fade-up { animation: fadeUp 0.7s var(--ease) both; }
.delay-1 { animation-delay: 80ms; }
.delay-2 { animation-delay: 160ms; }
.delay-3 { animation-delay: 240ms; }
