/* ============== TEMEL ============== */
* { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --brand: #DC0000;
  --brand-dark: #A50000;
  --brand-light: #FF1A1A;
  --ink: #0f172a;
  --text: #1f2937;
  --muted: #64748b;
  --bg: #ffffff;
  --bg-soft: #f8fafc;
  --border: #e2e8f0;
  --radius: 12px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow: 0 8px 24px rgba(15,23,42,0.08);
  --shadow-lg: 0 20px 50px rgba(15,23,42,0.15);
}
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
img { max-width: 100%; display: block; }
.accent { color: var(--brand); }
.kicker {
  display: inline-block; font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--brand); margin-bottom: 12px;
}

/* ============== BUTONLAR ============== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 24px; border-radius: 999px;
  font-size: 14px; font-weight: 700; text-decoration: none;
  border: 2px solid transparent; cursor: pointer;
  transition: all 0.2s;
}
.btn-primary { background: var(--brand); color: white; }
.btn-primary:hover { background: var(--brand-dark); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline { background: transparent; color: white; border-color: white; }
.btn-outline:hover { background: white; color: var(--brand); }
.btn-block { width: 100%; }

/* ============== NAVBAR (siyah) ============== */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: #0a0a0a;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.logo { display: flex; align-items: center; text-decoration: none; }
.menu { display: flex; gap: 28px; }
.menu a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-weight: 600; font-size: 14px;
  transition: color 0.2s;
}
.menu a:hover { color: var(--brand-light); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.menu-toggle {
  display: none; background: none; border: none;
  font-size: 24px; cursor: pointer; color: white;
}
@media (max-width: 900px) {
  .menu {
    display: none; position: absolute; top: 72px; left: 0; right: 0;
    background: #0a0a0a; flex-direction: column; padding: 16px 24px;
    box-shadow: var(--shadow);
  }
  .menu.open { display: flex; }
  .menu-toggle { display: block; }
}

/* ============== HERO (tek görsel) ============== */
.hero {
  position: relative;
  width: 100%;
  /* Resmin tam sığması için 12:5 (1920×800) oranı sabitlendi */
  aspect-ratio: 12 / 5;
  min-height: 420px;
  max-height: 80vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #0f172a;
  display: flex; align-items: center;
  overflow: hidden;
}

/* Soldan koyu, sağa şeffaf gradient — yazı okunabilir, resim görünür */
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    100deg,
    rgba(15,23,42,0.92) 0%,
    rgba(15,23,42,0.75) 35%,
    rgba(15,23,42,0.35) 65%,
    rgba(220,0,0,0.15) 100%
  );
  z-index: 1;
}

.hero-inner {
  position: relative; z-index: 2;
  width: 100%; color: white;
  padding: 60px 24px;
}
.hero-text {
  max-width: 600px;  /* sol yarıda dursun */
  text-align: left;
}
.hero-text h1 {
  font-size: clamp(34px, 5.5vw, 62px);
  line-height: 1.1; font-weight: 800;
  margin-bottom: 18px;
  text-shadow: 0 4px 24px rgba(0,0,0,0.5);
}
.hero-text .slogan {
  display: inline-block;
  font-size: clamp(15px, 1.6vw, 19px);
  font-weight: 700;
  color: var(--brand-light);
  background: rgba(0,0,0,0.4);
  padding: 8px 18px; border-radius: 999px;
  margin-bottom: 0;
  letter-spacing: 0.5px;
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
}
.hero-text .hero-desc {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255,255,255,0.9);
  margin-bottom: 30px;
  max-width: 520px;
}
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; }

@media (max-width: 768px) {
  .hero { min-height: 520px; }
  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(15,23,42,0.85) 0%,
      rgba(15,23,42,0.6) 100%
    );
  }
  .hero-text { max-width: 100%; }
  .hero-text h1 { font-size: 30px; }
}

/* ============== MÜŞTERİLER ============== */
.clients {
  padding: 40px 0;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
}
.clients-label {
  text-align: center; color: var(--muted);
  font-size: 13px; text-transform: uppercase;
  letter-spacing: 1.5px; margin-bottom: 24px;
}
.client-row {
  display: flex; justify-content: space-around;
  align-items: center; flex-wrap: wrap; gap: 24px;
}
.client-logo {
  font-weight: 700; color: var(--muted);
  padding: 10px 24px; border: 1px dashed var(--border);
  border-radius: 8px; opacity: 0.7;
}

/* ============== KAYAN YAZI ŞERIDI ============== */
.marquee {
  background: var(--brand);
  padding: 22px 0;
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.marquee::before,
.marquee::after {
  content: "";
  position: absolute; top: 0; bottom: 0;
  width: 80px; z-index: 2;
  pointer-events: none;
}
.marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--brand), transparent);
}
.marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--brand), transparent);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 36px;
  width: max-content;
  animation: marquee 40s linear infinite;
}
.marquee:hover .marquee-track {
  animation-play-state: paused;
}
.marquee-item {
  color: white;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}
.marquee-sep {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============== EĞİTİM BÖLÜMÜ ============== */
.education {
  padding: 90px 0;
  background: linear-gradient(180deg, #ffffff 0%, #fef2f2 100%);
}
.edu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.edu-text h2 {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 22px;
}
.edu-desc {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 32px;
  min-height: 100px;
  transition: opacity 0.25s;
}
.edu-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.edu-card {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 22px 28px;
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  transition: all 0.2s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.edu-card:hover {
  border-color: var(--brand);
  transform: translateX(4px);
}
.edu-card.active {
  background: var(--brand);
  border-color: var(--brand);
  box-shadow: 0 8px 24px rgba(220,0,0,0.25);
}
.edu-card.active .edu-num,
.edu-card.active .edu-label {
  color: white;
}
.edu-num {
  font-size: 18px;
  font-weight: 800;
  color: var(--muted);
  letter-spacing: 0.5px;
  flex-shrink: 0;
}
.edu-label {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
}
.edu-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.edu-visual img {
  max-width: 100%;
  height: auto;
  border-radius: 18px;
}

@media (max-width: 900px) {
  .edu-grid { grid-template-columns: 1fr; gap: 40px; }
  .edu-visual { order: -1; }
}

/* ============== SECTION HEAD ============== */
.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-head h2 {
  font-size: clamp(26px, 3.5vw, 38px); font-weight: 800;
  color: var(--ink); margin-bottom: 14px;
}
.section-head p { color: var(--muted); font-size: 16px; }

/* ============== ÇÖZÜMLER (yatay kartlar) ============== */
.solutions {
  padding: 80px 0 0;
  background: white;
}
.solutions-title {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  text-align: center;
  color: var(--ink);
  margin-bottom: 60px;
}

.solution-card {
  position: relative;
  display: block;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  border-top: 1px solid var(--border);
  transition: color 0.4s;
  cursor: pointer;
}
.solution-card:last-child { border-bottom: 1px solid var(--border); }

/* Soldan sağa kayan kırmızı overlay */
.solution-overlay {
  position: absolute;
  inset: 0;
  background: var(--brand);
  transform: translateX(-100%);
  transition: transform 0.55s cubic-bezier(.4,0,.2,1);
  z-index: 1;
}
.solution-card.reverse .solution-overlay {
  transform: translateX(100%);
}
.solution-card:hover .solution-overlay {
  transform: translateX(0);
}

.solution-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 24px;
}
.solution-card.reverse .solution-inner {
  direction: rtl;  /* sol/sağ değişimi */
}
.solution-card.reverse .solution-inner > * { direction: ltr; }

.solution-text h3 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 22px;
  transition: color 0.4s;
}
.solution-text p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 22px;
  max-width: 480px;
  transition: color 0.4s;
}
.solution-arrow {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  font-size: 18px;
  color: var(--ink);
  transition: all 0.3s;
}

/* Hover: yazılar beyaz, ok bembeyaz çerçeveli */
.solution-card:hover .solution-text h3,
.solution-card:hover .solution-text p { color: white; }
.solution-card:hover .solution-arrow {
  background: white;
  border-color: white;
  color: var(--brand);
  transform: translateX(6px);
}

/* Görsel mock alanı */
.solution-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 240px;
}
.visual-mock {
  width: 100%; max-width: 420px;
  aspect-ratio: 16/10;
  background: #0f172a;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(15,23,42,0.25);
  transition: transform 0.4s;
}
.solution-card:hover .visual-mock { transform: scale(1.03); }

/* Web mock */
.mock-screen { width: 100%; height: 100%; background: #1e293b; padding: 28px; position: relative; }
.mock-bar {
  height: 8px; background: rgba(255,255,255,0.15);
  border-radius: 4px; margin-bottom: 16px; width: 60%;
}
.mock-content { display: flex; flex-direction: column; gap: 10px; }
.mock-line {
  height: 10px; background: rgba(255,255,255,0.1);
  border-radius: 4px; width: 100%;
}
.mock-line.w-80 { width: 80%; }
.mock-line.w-60 { width: 60%; }
.mock-badge {
  position: absolute; bottom: 18px; right: 18px;
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--brand); display: flex;
  align-items: center; justify-content: center;
  font-size: 22px;
  box-shadow: 0 4px 16px rgba(220,0,0,0.5);
}

/* Video mock */
.mock-video {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #334155 0%, #1e293b 100%);
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.mock-play {
  width: 70px; height: 70px; border-radius: 50%;
  background: rgba(255,255,255,0.95); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; padding-left: 6px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}
.mock-subtitle {
  position: absolute; bottom: 24px; left: 50%;
  transform: translateX(-50%);
  width: 70%; height: 10px;
  background: rgba(255,255,255,0.5); border-radius: 3px;
}

/* PDF / doc mock */
.mock-doc {
  width: 100%; height: 100%;
  background: white;
  padding: 30px; position: relative;
}
.mock-doc-line { height: 8px; background: #e5e7eb; border-radius: 4px; margin-bottom: 12px; }
.mock-doc-line.w-90 { width: 90%; }
.mock-doc-line.w-70 { width: 70%; }
.mock-doc-line.w-85 { width: 85%; }
.mock-doc-line.w-60 { width: 60%; }
.mock-qr {
  position: absolute; bottom: 20px; right: 20px;
  width: 56px; height: 56px;
  background: repeating-linear-gradient(
    45deg, var(--ink) 0 4px, white 4px 8px
  );
  border-radius: 8px;
}

/* Print mock */
.mock-print {
  width: 100%; height: 100%; background: #0f172a;
  display: flex; align-items: center; justify-content: center;
  position: relative; padding: 30px;
}
.mock-print-doc, .mock-print-doc-2 {
  width: 130px; height: 160px;
  background: white; border-radius: 8px;
  background-image:
    linear-gradient(white, white),
    repeating-linear-gradient(transparent 0 8px, #d1d5db 8px 9px);
  background-size: 100% 30px, 100% calc(100% - 30px);
  background-position: top, bottom;
  background-repeat: no-repeat;
  position: relative;
}
.mock-print-doc { transform: rotate(-5deg) translateX(-20px); }
.mock-print-doc-2 { transform: rotate(5deg) translateX(20px); margin-left: -40px; }
.mock-qr-small {
  position: absolute; bottom: 36px; right: 80px;
  width: 28px; height: 28px;
  background: repeating-linear-gradient(45deg, var(--ink) 0 3px, white 3px 6px);
  border-radius: 4px;
}

/* A11y mock */
.mock-a11y {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%);
  padding: 24px; position: relative;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 16px;
}
.mock-a11y-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: white; color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-size: 32px;
}
.mock-a11y-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.mock-a11y-grid span {
  width: 48px; height: 48px; border-radius: 8px;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}

/* Chat mock */
.mock-chat {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #4b5563 0%, #1f2937 100%);
  padding: 30px; display: flex; flex-direction: column; gap: 12px;
}
.mock-bubble {
  padding: 14px 18px; border-radius: 16px;
  font-size: 22px; max-width: 70%;
}
.mock-bubble.left { background: white; align-self: flex-start; }
.mock-bubble.right { background: var(--brand); color: white; align-self: flex-end; }
.mock-bubble.short {
  width: 100px; height: 16px; padding: 0;
  background: rgba(255,255,255,0.6);
}

@media (max-width: 900px) {
  .solution-inner { grid-template-columns: 1fr; gap: 30px; padding: 40px 24px; }
  .solution-card.reverse .solution-inner { direction: ltr; }
  .solution-text h3 { font-size: 28px; }
  .visual-mock { max-width: 360px; }
}

/* ============== HİZMET DETAY SAYFALARI ============== */
.service-hero {
  background: linear-gradient(135deg, var(--ink) 0%, #1e293b 100%);
  color: white;
  padding: 70px 0 60px;
}
.service-hero .back-link {
  display: inline-block;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 13px; font-weight: 600;
  margin-bottom: 20px;
  transition: color 0.2s;
}
.service-hero .back-link:hover { color: white; }
.service-badge {
  display: inline-block;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px; font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}
.service-hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800; line-height: 1.1;
  margin-bottom: 14px;
  max-width: 880px;
}
.service-tagline {
  font-size: 18px; color: rgba(255,255,255,0.85);
  max-width: 720px;
}

.service-body { padding: 70px 0; background: white; }
.service-grid-2 {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
}
.service-body h2 {
  font-size: 26px; color: var(--ink);
  font-weight: 800; margin-bottom: 16px;
}
.service-body h3 {
  font-size: 18px; color: var(--ink);
  font-weight: 700;
  margin: 32px 0 14px;
}
.service-body p {
  color: var(--muted);
  font-size: 16px; line-height: 1.75;
  margin-bottom: 16px;
}
.feature-list { list-style: none; padding: 0; }
.feature-list li {
  position: relative;
  padding: 10px 0 10px 30px;
  font-size: 15px;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li::before {
  content: "✓";
  position: absolute; left: 0; top: 11px;
  width: 22px; height: 22px;
  background: var(--brand); color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800;
}
.code-block {
  background: var(--ink); color: #e2e8f0;
  padding: 18px 22px;
  border-radius: 10px;
  overflow-x: auto;
  font-family: "SF Mono", "Menlo", monospace;
  font-size: 13px; line-height: 1.6;
  white-space: pre;
}

.service-aside {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  position: sticky; top: 100px;
}
.service-aside h3 {
  font-size: 18px; margin-bottom: 8px;
  margin-top: 0;
}
.service-aside p {
  font-size: 14px; margin-bottom: 18px;
}
.aside-info { margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--border); }
.aside-info p {
  font-size: 13px; color: var(--muted);
  padding: 4px 0; margin: 0;
}

@media (max-width: 900px) {
  .service-grid-2 { grid-template-columns: 1fr; }
  .service-aside { position: static; }
}

/* ============== NEDEN BİZ ============== */
.why { padding: 80px 0; background: var(--bg-soft); }
.why-grid {
  display: grid; gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.why-card {
  background: white; padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  text-align: center;
  transition: all 0.2s;
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.why-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: white; font-size: 28px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.why-card h3 { font-size: 17px; margin-bottom: 8px; color: var(--ink); }
.why-card p { color: var(--muted); font-size: 14px; }

/* ============== NASIL ÇALIŞIR ============== */
.how { padding: 80px 0; background: white; }
.how-grid {
  display: grid; gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin-bottom: 48px;
}
.how-step { text-align: center; padding: 24px; }
.step-num {
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: white; font-size: 26px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 8px 20px rgba(220,0,0,0.3);
}
.how-step h3 { font-size: 18px; margin-bottom: 10px; color: var(--ink); }
.how-step p { color: var(--muted); font-size: 14px; }

.code-snippet {
  max-width: 760px; margin: 0 auto;
  background: var(--ink); border-radius: var(--radius);
  padding: 24px; overflow-x: auto;
  box-shadow: var(--shadow);
}
.code-snippet pre { margin: 0; }
.code-snippet code {
  color: #e2e8f0; font-family: "SF Mono", "Menlo", monospace;
  font-size: 13px; line-height: 1.6;
}

/* ============== İLETİŞİM ============== */
.contact {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--ink) 0%, #1e293b 100%);
  color: white;
}
.contact-grid {
  display: grid; gap: 48px;
  grid-template-columns: 1fr 1.2fr;
  align-items: start;
}
.contact-info .kicker { color: rgba(255,255,255,0.8); }
.contact-info h2 { color: white; margin-bottom: 14px; }
.contact-info h2 .accent { color: var(--brand-light); }
.contact-info p { color: rgba(255,255,255,0.7); margin-bottom: 24px; }
.contact-list { list-style: none; }
.contact-list li {
  padding: 10px 0; color: rgba(255,255,255,0.9);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 15px;
}

.contact-form {
  background: white; padding: 32px;
  border-radius: var(--radius);
  display: flex; flex-direction: column; gap: 14px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form input,
.contact-form textarea {
  padding: 12px 14px; border: 1.5px solid var(--border);
  border-radius: 10px; font-size: 14px;
  font-family: inherit; color: var(--text);
  transition: border 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none; border-color: var(--brand);
}
.form-checkbox {
  display: flex; align-items: flex-start; gap: 8px;
  color: var(--muted); font-size: 13px;
}
.form-checkbox input { width: auto; }
.form-result {
  text-align: center; font-size: 14px; margin: 0;
  min-height: 20px;
}
.form-result.success { color: #16a34a; }
.form-result.error { color: var(--brand); }

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ============== FOOTER ============== */
.footer { background: #0a0a0a; color: rgba(255,255,255,0.8); padding: 60px 0 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 40px;
}
.footer-brand p { color: rgba(255,255,255,0.6); margin-top: 16px; font-size: 14px; max-width: 320px; }
.footer-logo { margin-bottom: 4px; }
.footer-col h4 { color: white; font-size: 15px; margin-bottom: 16px; }
.footer-col a {
  display: block; color: rgba(255,255,255,0.6);
  text-decoration: none; padding: 5px 0; font-size: 14px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--brand-light); }
.footer-col p { color: rgba(255,255,255,0.6); font-size: 14px; padding: 5px 0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; }
.footer-bottom-inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  font-size: 13px; color: rgba(255,255,255,0.5);
}
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: rgba(255,255,255,0.6); text-decoration: none; }
.footer-links a:hover { color: var(--brand-light); }

@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
