/* Efisi — base design system */
:root {
  /* Navy brand palette (logo: #22375a) on a navy-tinted dark theme */
  --bg: #0a1120;
  --surface: #111c33;
  --surface-2: #1a2842;
  --text: #e9edf6;
  --muted: #94a2be;
  --brand: #3a5c9e;      /* interactive navy — buttons */
  --brand-2: #6f9bea;    /* lighter accent — links, highlights */
  --brand-deep: #223658; /* true brand navy (matches logo) — deep gradients */
  --border: #223350;
  --radius: 14px;
  --container: 1120px;
  --font: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.muted { color: var(--muted); }
.section { padding: 56px 20px; }
.section-title { font-size: 1.6rem; margin: 0 0 24px; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 20;
  background: rgba(10, 17, 32, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: center; gap: 24px; height: 64px; }
.brand { font-weight: 800; font-size: 1.25rem; letter-spacing: -0.02em; display: inline-flex; align-items: center; }
.brand-dot { color: var(--brand-2); }
.brand-logo { height: 30px; width: auto; display: block; }
.footer-logo { height: 34px; margin-bottom: 8px; }
.main-nav { display: flex; gap: 22px; margin-left: 12px; }
.main-nav a { color: var(--muted); font-size: 0.95rem; }
.main-nav a:hover { color: var(--text); }
.header-actions { margin-left: auto; display: flex; gap: 10px; align-items: center; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 9px 16px; border-radius: 10px; font-weight: 600; font-size: 0.95rem;
  border: 1px solid transparent; cursor: pointer; transition: transform .05s ease, background .2s ease;
}
.btn:active { transform: translateY(1px); }
.btn-lg { padding: 13px 22px; font-size: 1.05rem; }
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: #45699f; }
.btn-ghost { background: transparent; border-color: var(--border); color: var(--text); }
.btn-ghost:hover { background: var(--surface-2); }

/* Hero */
.hero {
  padding: 84px 20px 64px;
  background:
    radial-gradient(1000px 400px at 80% -10%, rgba(58,92,158,0.25), transparent),
    radial-gradient(700px 300px at 0% 0%, rgba(111,155,234,0.14), transparent);
}
.hero h1 { font-size: clamp(2rem, 5vw, 3.4rem); line-height: 1.1; margin: 0 0 16px; letter-spacing: -0.03em; }
.hero h1 em { color: var(--brand-2); font-style: normal; }
.hero-sub { font-size: 1.15rem; color: var(--muted); max-width: 620px; margin: 0 0 28px; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* Cards */
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 18px; }
.card {
  display: block; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 22px; transition: border-color .2s ease, transform .1s ease;
}
.card:hover { border-color: var(--brand); transform: translateY(-2px); }
.card h3 { margin: 8px 0 6px; font-size: 1.15rem; }
.card-badge {
  display: inline-block; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.04em;
  color: var(--brand-2); background: rgba(111,155,234,0.1); padding: 3px 8px; border-radius: 999px;
}
.card-price { display: inline-block; margin-top: 12px; font-weight: 700; color: var(--text); }

/* Footer */
.site-footer { border-top: 1px solid var(--border); margin-top: 40px; }
.footer-inner { display: flex; flex-wrap: wrap; gap: 24px; justify-content: space-between; align-items: flex-start; padding: 36px 20px; }
.footer-nav { display: flex; flex-direction: column; gap: 8px; }
.footer-nav a { color: var(--muted); }
.footer-nav a:hover { color: var(--text); }

@media (max-width: 720px) {
  .main-nav { display: none; }
}

/* ---- Phase 2: inner pages ---- */
.small { font-size: 0.85rem; }

.page-header { padding: 48px 20px 8px; border-bottom: 1px solid var(--border); }
.page-header h1 { margin: 0 0 6px; font-size: clamp(1.8rem, 4vw, 2.6rem); letter-spacing: -0.02em; }

/* Card refinements */
.card { overflow: hidden; padding: 0; }
.card-media { height: 120px; background: linear-gradient(135deg, rgba(58,92,158,0.35), rgba(111,155,234,0.25)); }
.card-body { padding: 20px; }
.card-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 14px; }
.course-card h3, .post-card h3 { min-height: 2.6em; }
.read-more { color: var(--brand-2); font-weight: 600; font-size: 0.9rem; }

/* Bundle banner */
.bundle-banner {
  margin-top: 28px; display: flex; flex-wrap: wrap; gap: 18px; align-items: center; justify-content: space-between;
  background: var(--surface); border: 1px solid var(--brand); border-radius: var(--radius); padding: 24px;
}
.bundle-banner h3 { margin: 0 0 4px; }
.bundle-cta { display: flex; align-items: center; gap: 16px; }
.btn-block { display: block; width: 100%; }

/* Course detail */
.course-hero {
  padding: 56px 20px;
  background: radial-gradient(800px 300px at 85% -20%, rgba(58,92,158,0.25), transparent);
  border-bottom: 1px solid var(--border);
}
.course-hero-inner { display: grid; grid-template-columns: 1fr 320px; gap: 32px; align-items: start; }
.course-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin: 12px 0; letter-spacing: -0.02em; }
.course-buy { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; position: sticky; top: 84px; }
.course-buy-price { font-size: 2rem; font-weight: 800; display: block; margin-bottom: 6px; }
.course-buy .btn { margin: 14px 0 8px; }
.course-body { max-width: 760px; }
.sessions { margin-top: 32px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; }
.sessions ul { margin: 8px 0 0; padding-left: 18px; }

/* Blog layout */
.blog-layout { display: grid; grid-template-columns: 1fr 240px; gap: 32px; align-items: start; }
.blog-side h4 { margin: 0 0 12px; }
.cat-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 6px; }
.cat-list a { color: var(--muted); }
.cat-list a.active, .cat-list a:hover { color: var(--text); }
.pager { display: flex; align-items: center; gap: 16px; justify-content: center; margin-top: 32px; }

/* Article */
.article { max-width: 760px; padding-top: 40px; padding-bottom: 40px; }
.article-head { margin-bottom: 28px; }
.article-head h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin: 10px 0; letter-spacing: -0.02em; }
.tag-row { display: flex; gap: 8px; flex-wrap: wrap; }
.chip { font-size: 0.8rem; color: var(--brand-2); background: rgba(111,155,234,0.1); padding: 4px 10px; border-radius: 999px; }
.back { margin-top: 32px; }
.back a { color: var(--brand-2); }

/* Prose (rendered WP/course HTML) */
.prose { line-height: 1.75; color: #d6dcea; }
.prose h2, .prose h3 { color: var(--text); margin-top: 1.6em; letter-spacing: -0.01em; }
.prose img { border-radius: 10px; margin: 1em 0; }
.prose a { color: var(--brand-2); text-decoration: underline; }
.prose ul, .prose ol { padding-left: 22px; }
.prose li { margin: 6px 0; }
.prose blockquote { border-left: 3px solid var(--brand); margin: 1em 0; padding: 4px 16px; color: var(--muted); }

/* Timeline (takvim) */
.timeline { list-style: none; margin: 0; padding: 0; }
.timeline li { display: flex; gap: 18px; padding: 16px 0; border-bottom: 1px solid var(--border); }
.timeline-date { min-width: 140px; font-weight: 700; color: var(--brand-2); }

@media (max-width: 860px) {
  .course-hero-inner, .blog-layout { grid-template-columns: 1fr; }
  .course-buy { position: static; }
}

/* ---- Phase 3: auth & account ---- */
.auth-wrap { min-height: 60vh; display: flex; align-items: center; justify-content: center; padding: 48px 20px; }
.auth-card {
  width: 100%; max-width: 420px; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px;
}
.auth-card h1 { margin: 0 0 6px; font-size: 1.6rem; }
.form { display: flex; flex-direction: column; gap: 14px; margin-top: 18px; }
.form label { display: flex; flex-direction: column; gap: 6px; font-size: 0.9rem; color: var(--muted); }
.form input {
  background: var(--bg); border: 1px solid var(--border); border-radius: 10px; padding: 11px 13px;
  color: var(--text); font-size: 1rem; font-family: inherit;
}
.form input:focus { outline: none; border-color: var(--brand); }
.form input:disabled { opacity: 0.6; }
.form button { margin-top: 6px; }
.auth-alt { margin-top: 18px; text-align: center; font-size: 0.9rem; }
.auth-alt a { color: var(--brand-2); }

.alert { padding: 11px 14px; border-radius: 10px; font-size: 0.9rem; margin-top: 16px; }
.alert-error { background: rgba(248,113,113,0.12); color: #fca5a5; border: 1px solid rgba(248,113,113,0.3); }
.alert-ok { background: rgba(34,197,94,0.12); color: #86efac; border: 1px solid rgba(34,197,94,0.3); }
.alert-warn { background: rgba(234,179,8,0.12); color: #fde047; border: 1px solid rgba(234,179,8,0.3); }

/* Dashboard */
.dash-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; margin-bottom: 8px; }
.dash-head h1 { margin: 0; }
.empty { background: var(--surface); border: 1px dashed var(--border); border-radius: var(--radius); padding: 32px; text-align: center; }
.empty .btn { margin-top: 12px; }
.dash-links { margin-top: 28px; }
.dash-links a { color: var(--brand-2); }

/* ---- Phase 4: LMS learn ---- */
.learn { display: grid; grid-template-columns: 300px 1fr; min-height: calc(100vh - 64px); }
.learn-side { border-right: 1px solid var(--border); padding: 24px 18px; background: var(--surface); overflow-y: auto; }
.learn-side-title { display: block; font-weight: 700; margin-bottom: 14px; }
.progress { height: 8px; background: var(--surface-2); border-radius: 999px; overflow: hidden; }
.progress-bar { height: 100%; background: linear-gradient(90deg, var(--brand), var(--brand-2)); transition: width .3s ease; }
.side-module { margin-top: 20px; }
.side-module h4 { margin: 0 0 8px; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--muted); }
.side-module ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 2px; }
.side-lesson {
  display: flex; align-items: flex-start; gap: 8px; padding: 8px 10px; border-radius: 8px;
  color: var(--muted); font-size: 0.92rem; line-height: 1.35;
}
a.side-lesson:hover { background: var(--surface-2); color: var(--text); }
.side-lesson.current { background: rgba(58,92,158,0.15); color: var(--text); }
.side-lesson.locked { opacity: 0.55; }
.side-ic { flex: 0 0 auto; width: 16px; text-align: center; color: var(--brand-2); }

.learn-main { padding: 32px 40px; max-width: 860px; }
.learn-crumb { font-size: 0.85rem; color: var(--muted); margin-bottom: 8px; }
.learn-crumb a { color: var(--brand-2); }
.learn-main h1 { margin: 0 0 20px; font-size: 1.8rem; letter-spacing: -0.02em; }
.video-wrap { position: relative; padding-top: 56.25%; border-radius: 12px; overflow: hidden; background: #000; margin-bottom: 24px; }
.video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.learn-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--border); gap: 12px; }
.learn-nav-right { display: flex; gap: 10px; }

@media (max-width: 860px) {
  .learn { grid-template-columns: 1fr; }
  .learn-side { border-right: none; border-bottom: 1px solid var(--border); }
  .learn-main { padding: 24px 20px; }
}

/* ---- Phase 5: orders / EFT ---- */
.order-page h1 { margin-bottom: 12px; }
.order-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 20px; }
.order-box { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; }
.order-box h3 { margin: 0 0 14px; }
.order-items { list-style: none; margin: 0 0 12px; padding: 0; }
.order-items li { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--border); }
.order-total { display: flex; justify-content: space-between; font-weight: 700; font-size: 1.1rem; padding: 12px 0; }
.eft-box { border-color: var(--brand); }
.eft-dl { display: grid; grid-template-columns: 90px 1fr; gap: 8px 14px; margin: 0; }
.eft-dl dt { color: var(--muted); }
.eft-dl dd { margin: 0; }
.eft-dl .iban { font-family: ui-monospace, monospace; letter-spacing: 0.02em; }

.table { width: 100%; border-collapse: collapse; margin-top: 18px; }
.table th, .table td { text-align: left; padding: 12px 10px; border-bottom: 1px solid var(--border); vertical-align: top; }
.table th { color: var(--muted); font-weight: 600; font-size: 0.85rem; }
.btn-sm { padding: 6px 12px; font-size: 0.85rem; }
.badge { display: inline-block; padding: 3px 10px; border-radius: 999px; font-size: 0.78rem; }
.badge-pending { background: rgba(234,179,8,0.15); color: #fde047; }
.badge-paid { background: rgba(34,197,94,0.15); color: #86efac; }
.badge-failed, .badge-refunded { background: rgba(248,113,113,0.15); color: #fca5a5; }

@media (max-width: 720px) { .order-grid { grid-template-columns: 1fr; } }

/* ---- Phase 6: quiz & certificate ---- */
.quiz-page { max-width: 760px; }
.quiz-form { display: flex; flex-direction: column; gap: 20px; margin-top: 24px; }
.quiz-q { border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; margin: 0; background: var(--surface); }
.quiz-q legend { font-weight: 600; padding: 0 8px; }
.quiz-opt { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 8px; cursor: pointer; }
.quiz-opt:hover { background: var(--surface-2); }
.quiz-opt input { width: 18px; height: 18px; accent-color: var(--brand); }

.quiz-result { max-width: 600px; text-align: center; }
.score-ring {
  width: 140px; height: 140px; border-radius: 50%; margin: 24px auto; display: flex; align-items: center; justify-content: center;
  font-size: 2rem; font-weight: 800; border: 8px solid var(--border);
}
.score-ring.pass { border-color: #22c55e; color: #86efac; }
.score-ring.fail { border-color: #f87171; color: #fca5a5; }
.cert-cta { margin: 24px 0; padding: 20px; background: rgba(58,92,158,0.1); border: 1px solid var(--brand); border-radius: var(--radius); }
.quiz-result .learn-nav { justify-content: center; gap: 12px; border: 0; }

/* Certificate */
.cert-view { max-width: 860px; }
.certificate { background: #fff; color: #1a2234; border-radius: 14px; padding: 12px; box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
.cert-inner { border: 3px solid var(--brand); border-radius: 10px; padding: 48px 40px; text-align: center; }
.cert-brand { font-weight: 800; font-size: 1.6rem; color: var(--brand); letter-spacing: -0.02em; }
.cert-kicker { text-transform: uppercase; letter-spacing: 0.2em; color: #6b7280; font-size: 0.85rem; margin-top: 8px; }
.cert-lead { color: #6b7280; margin: 18px 0 6px; }
.cert-name { font-size: 2.2rem; margin: 6px 0; color: #111827; }
.cert-course { font-size: 1.4rem; color: var(--brand); margin: 6px 0 24px; }
.cert-foot { display: flex; justify-content: space-between; margin-top: 32px; padding-top: 20px; border-top: 1px solid #e5e7eb; text-align: left; }
.cert-serial { font-family: ui-monospace, monospace; font-weight: 700; }
.cert-actions { display: flex; align-items: center; justify-content: space-between; margin-top: 20px; gap: 12px; flex-wrap: wrap; }

@media print {
  .site-header, .site-footer, .cert-actions { display: none !important; }
  body { background: #fff; }
  .certificate { box-shadow: none; }
}

/* ---- Phase 7: admin panel ---- */
.admin-body { background: var(--bg); }
.admin { display: grid; grid-template-columns: 240px 1fr; min-height: 100vh; }
.admin-side { background: var(--surface); border-right: 1px solid var(--border); display: flex; flex-direction: column; padding: 20px 14px; }
.admin-brand { font-weight: 800; font-size: 1.2rem; padding: 6px 10px 18px; display: flex; align-items: center; gap: 8px; }
.admin-brand .brand-logo { height: 26px; }
.admin-nav { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.admin-nav-item { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 8px; color: var(--muted); font-size: 0.95rem; }
.admin-nav-item:hover { background: var(--surface-2); color: var(--text); }
.admin-nav-item.active { background: rgba(58,92,158,0.15); color: var(--text); }
.admin-ic { width: 20px; text-align: center; }
.admin-side-foot { display: flex; align-items: center; justify-content: space-between; gap: 8px; padding-top: 16px; border-top: 1px solid var(--border); margin-top: 12px; }
.admin-main { display: flex; flex-direction: column; min-width: 0; }
.admin-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; padding: 22px 32px; border-bottom: 1px solid var(--border); }
.admin-head h1 { margin: 0; font-size: 1.5rem; }
.admin-content { padding: 28px 32px; overflow-x: auto; }
.admin-actions { margin-bottom: 16px; }

.stat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 14px; }
.stat-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px 20px; display: flex; flex-direction: column; gap: 4px; }
.stat-value { font-size: 1.7rem; font-weight: 800; }
.stat-label { color: var(--muted); font-size: 0.85rem; }

.admin-form { max-width: 720px; }
.admin-form textarea, .admin-form input, .admin-form select {
  background: var(--bg); border: 1px solid var(--border); border-radius: 8px; padding: 10px 12px; color: var(--text); font-family: inherit; font-size: 0.95rem; width: 100%;
}
.admin-form textarea { font-family: ui-monospace, monospace; font-size: 0.85rem; }
.form-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 14px; }
.admin-module { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px; margin-bottom: 14px; }
.admin-module-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.admin-lessons { list-style: none; margin: 0 0 12px; padding: 0; }
.admin-lessons li { display: flex; justify-content: space-between; align-items: center; padding: 7px 10px; border-radius: 6px; }
.admin-lessons li:hover { background: var(--surface-2); }
.inline-form { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.inline-form input, .inline-form select { width: auto; flex: 1; min-width: 120px; background: var(--bg); border: 1px solid var(--border); border-radius: 8px; padding: 8px 10px; color: var(--text); }
.link-del { background: none; border: none; color: #fca5a5; cursor: pointer; font-size: 0.85rem; }

@media (max-width: 800px) { .admin { grid-template-columns: 1fr; } .admin-side { flex-direction: row; flex-wrap: wrap; } .admin-nav { flex-direction: row; flex-wrap: wrap; } }

/* ---- Homepage sections ---- */
.hero-eyebrow { display: inline-block; font-size: 0.85rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--brand-2); background: rgba(111,155,234,0.1); padding: 5px 12px; border-radius: 999px; margin-bottom: 18px; }
.trust-row { list-style: none; display: flex; flex-wrap: wrap; gap: 10px 24px; margin: 28px 0 0; padding: 0; }
.trust-row li { color: var(--muted); font-size: 0.95rem; display: flex; align-items: center; gap: 8px; }
.trust-row li::before { content: "✓"; color: var(--brand-2); font-weight: 700; }

.section-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 24px; }
.section-head .section-title { margin: 0; }
.section-link { color: var(--brand-2); font-weight: 600; font-size: 0.95rem; white-space: nowrap; }
.section-link:hover { text-decoration: underline; }

.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 16px; }
.feature-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }
.feature-ic { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 12px; background: rgba(58,92,158,0.18); color: var(--brand-2); font-size: 1.2rem; margin-bottom: 14px; }
.feature-card h3 { margin: 0 0 8px; font-size: 1.1rem; }
.feature-card p { margin: 0; font-size: 0.95rem; }

.free-highlight { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px; background: linear-gradient(135deg, rgba(58,92,158,0.25), rgba(111,155,234,0.12)); border: 1px solid var(--brand); border-radius: var(--radius); padding: 28px; }
.free-highlight h3 { margin: 10px 0 4px; font-size: 1.4rem; }
.free-badge { display: inline-block; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; font-weight: 700; color: #86efac; background: rgba(34,197,94,0.15); padding: 4px 10px; border-radius: 999px; }

.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; counter-reset: step; }
.step { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; position: relative; }
.step-n { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; background: var(--brand); color: #fff; font-weight: 800; margin-bottom: 14px; }
.step h3 { margin: 0 0 6px; font-size: 1.1rem; }
.step p { margin: 0; }

.faq { display: flex; flex-direction: column; gap: 10px; max-width: 800px; }
.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: 10px; padding: 4px 18px; }
.faq-item summary { cursor: pointer; padding: 14px 0; font-weight: 600; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--brand-2); font-size: 1.3rem; }
.faq-item[open] summary::after { content: "−"; }
.faq-item p { margin: 0 0 16px; }

.cta-band { margin-top: 40px; padding: 64px 20px; text-align: center; background: radial-gradient(700px 260px at 50% 0%, rgba(58,92,158,0.3), transparent), var(--surface); border-top: 1px solid var(--border); }
.cta-band h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); margin: 0 0 10px; letter-spacing: -0.02em; }
.cta-band p { color: var(--muted); margin: 0 0 24px; }

/* ---- Info pages (about / corporate / contact) ---- */
.info-intro { max-width: 820px; }
.lead { font-size: 1.2rem; line-height: 1.7; }
.mission { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; max-width: 820px; }
.mission h2 { margin-top: 0; }
.mission .btn { margin-top: 12px; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
.info-block .section-title { font-size: 1.3rem; }
.check-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.check-list li { position: relative; padding-left: 30px; color: var(--text); line-height: 1.5; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 20px; height: 20px; display: inline-flex; align-items: center; justify-content: center; color: var(--brand-2); font-weight: 700; }

.contact-grid { display: grid; grid-template-columns: 340px 1fr; gap: 40px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 14px; }
.contact-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; }
.contact-label { display: block; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--brand-2); margin-bottom: 8px; }
.contact-card p { margin: 0; line-height: 1.6; }
.contact-card a { color: var(--text); }
.contact-card a:hover { color: var(--brand-2); }
.contact-form textarea { background: var(--bg); border: 1px solid var(--border); border-radius: 10px; padding: 11px 13px; color: var(--text); font-family: inherit; font-size: 1rem; width: 100%; }
.contact-form textarea:focus { outline: none; border-color: var(--brand); }

@media (max-width: 800px) {
  .two-col, .contact-grid { grid-template-columns: 1fr; }
}
