/* =====================================================
   PHP ŞİFRELEME — ioncode-style landing
   ===================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text, #0F172A);
  background: #fff;
  line-height: 1.55;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { margin: 0; padding: 0; list-style: none; }
pre { margin: 0; }
code, pre { font-family: 'JetBrains Mono', ui-monospace, monospace; }

.container { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 20px; }
.container-narrow { max-width: 860px; }
.site-main { flex: 1; }

/* ===== Nav ===== */
.site-nav {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(11, 17, 32, .85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.site-nav-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; gap: 16px; }
.site-logo { display: flex; align-items: center; gap: 10px; }
.site-logo-mark {
  width: 38px; height: 38px; border-radius: 11px;
  background: linear-gradient(135deg, var(--primary, #7C3AED), var(--primary-2, #4F46E5));
  color: #fff; display: flex; align-items: center; justify-content: center; font-size: 17px;
  box-shadow: 0 4px 14px rgba(124,58,237,.35);
}
.site-logo-text { color: #fff; font-weight: 800; font-size: 15px; letter-spacing: .02em; }
.site-nav-links { display: flex; align-items: center; gap: 2px; }
.site-nav-links a {
  padding: 8px 14px; font-size: 13px; font-weight: 600; color: rgba(255,255,255,.72);
  border-radius: 8px; transition: background .2s, color .2s;
}
.site-nav-links a:hover { background: rgba(255,255,255,.08); color: #fff; }
.site-nav-links .nav-btn {
  background: linear-gradient(135deg, var(--primary, #7C3AED), var(--primary-2, #4F46E5));
  color: #fff; font-weight: 700; box-shadow: 0 4px 14px rgba(124,58,237,.35);
}
.site-nav-links .nav-btn:hover { opacity: .92; }
.site-nav-right { display: flex; align-items: center; gap: 6px; }
.lang-link {
  color: rgba(255,255,255,.75); font-size: 12px; font-weight: 700; letter-spacing: .05em;
  padding: 7px 11px; border: 1px solid rgba(255,255,255,.16); border-radius: 8px;
  display: inline-flex; align-items: center; gap: 4px; transition: border-color .2s, color .2s;
}
.lang-link:hover { border-color: var(--primary); color: #fff; }
.nav-toggle { display: none; background: none; border: 0; color: #fff; font-size: 22px; cursor: pointer; padding: 4px; }
@media (max-width: 860px) {
  .site-nav-links {
    position: fixed; top: 70px; left: 0; right: 0;
    background: rgba(11,17,32,.98); flex-direction: column; align-items: stretch;
    padding: 10px 16px 16px; border-bottom: 1px solid rgba(255,255,255,.08);
    transform: translateY(-120%); opacity: 0; pointer-events: none;
    transition: transform .3s, opacity .3s;
  }
  .site-nav-links.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .site-nav-links a { padding: 12px 14px; font-size: 14px; }
  .nav-toggle { display: block; }
}

/* ===== Buttons ===== */
[hidden] { display: none !important; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: 0; cursor: pointer; font-family: inherit; font-weight: 700;
  border-radius: var(--radius, 12px); padding: 11px 18px; font-size: 14px;
  transition: transform .15s, box-shadow .2s, background .2s, opacity .2s;
}
.btn:active { transform: scale(.97); }
.btn-primary {
  background: linear-gradient(135deg, var(--primary, #7C3AED), var(--primary-2, #4F46E5));
  color: #fff; box-shadow: 0 6px 20px rgba(124,58,237,.35);
}
.btn-primary:hover { opacity: .93; box-shadow: 0 8px 26px rgba(124,58,237,.45); }
.btn-ghost {
  background: rgba(255,255,255,.06); color: #fff;
  border: 1px solid rgba(255,255,255,.16);
}
.btn-ghost:hover { background: rgba(255,255,255,.12); }
.btn-lg { padding: 14px 26px; font-size: 15px; }
.btn-block { width: 100%; }
.btn-link { background: none; color: var(--primary); padding: 8px; font-size: 13px; }
.btn-link:hover { text-decoration: underline; }
.btn-light { background: #fff; color: var(--dark, #0B1120); }
.btn-light:hover { opacity: .9; }

/* ===== Hero ===== */
.hero {
  position: relative; overflow: hidden; color: #fff;
  background:
    radial-gradient(1100px 500px at 15% -10%, rgba(124,58,237,.35), transparent 60%),
    radial-gradient(900px 500px at 90% 10%, rgba(79,70,229,.30), transparent 60%),
    linear-gradient(180deg, #0b1120 0%, #111a33 100%);
  padding: 92px 0 60px;
}
.hero-glow { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .35; pointer-events: none; }
.hero-glow-1 { width: 420px; height: 420px; background: #7c3aed; top: -120px; left: 8%; }
.hero-glow-2 { width: 380px; height: 380px; background: #2563eb; bottom: -140px; right: 5%; }
.hero-inner { position: relative; z-index: 2; text-align: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14);
  padding: 7px 16px; border-radius: 40px; font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,.9); margin-bottom: 22px;
}
.hero-badge i { color: #22c55e; }
.hero h1 {
  font-size: clamp(2.2rem, 5.2vw, 3.6rem);
  font-weight: 800; line-height: 1.12; letter-spacing: -.02em;
  margin: 0 auto 18px; max-width: 760px; color: #fff;
}
.hero-sub {
  margin: 0 auto 30px; max-width: 660px; font-size: 16.5px; line-height: 1.6;
  color: rgba(255,255,255,.75);
}
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 54px; }

.hero-code {
  max-width: 620px; margin: 0 auto; text-align: left;
  background: rgba(2, 8, 20, .6); border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px; overflow: hidden; box-shadow: 0 24px 70px rgba(0,0,0,.45);
}
.hero-code-bar {
  display: flex; align-items: center; gap: 8px; padding: 12px 16px;
  border-bottom: 1px solid rgba(255,255,255,.07); background: rgba(255,255,255,.03);
}
.hero-code-title { margin-left: 8px; font-size: 11px; color: rgba(255,255,255,.5); letter-spacing: .04em; }
.dot { width: 11px; height: 11px; border-radius: 50%; }
.dot.r { background: #ff5f57; } .dot.y { background: #febc2e; } .dot.g { background: #28c840; }
.hero-code pre { padding: 20px 22px; font-size: 12.6px; line-height: 1.7; color: #d7ffe0; overflow-x: auto; }
.c-kw { color: #c792ea; } .c-fn { color: #7dc8ff; } .c-var { color: #ffcb6b; } .c-str { color: #c3e88d; } .c-com { color: #5d6b86; font-style: italic; }

/* ===== Stats ===== */
.stat-strip { background: #0b1120; border-top: 1px solid rgba(255,255,255,.06); color: #fff; }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 22px 16px; text-align: center; border-left: 1px solid rgba(255,255,255,.06); }
.stat:last-child { border-right: 1px solid rgba(255,255,255,.06); }
.stat strong { display: block; font-size: 19px; font-weight: 800; }
.stat span { font-size: 12px; color: rgba(255,255,255,.55); }
@media (max-width: 700px) { .stat-grid { grid-template-columns: repeat(2, 1fr); } .stat:nth-child(2n) { border-right: 1px solid rgba(255,255,255,.06); } }

/* ===== Sections ===== */
.section { padding: 76px 0; }
.section-alt { background: #f8fafc; border-top: 1px solid #eef1f6; border-bottom: 1px solid #eef1f6; }
.section-head { text-align: center; max-width: 700px; margin: 0 auto 46px; }
.section-head h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; margin: 0 0 10px; letter-spacing: -.01em; }
.section-head p { margin: 0; color: #64748b; font-size: 15px; }
.pill {
  display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  background: linear-gradient(135deg, var(--primary), var(--primary-2)); color: #fff;
  padding: 5px 12px; border-radius: 30px; margin-bottom: 14px;
}

/* ===== Tool / encoder card ===== */
.tool-section { padding: 84px 0; background: #0b1120; }
.tool-section .section-head h2 { color: #fff; }
.tool-section .section-head p { color: rgba(255,255,255,.6); }
.tool-card {
  max-width: 860px; margin: 0 auto;
  background: #fff; border-radius: 18px; padding: 30px;
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
}
@media (max-width: 640px) { .tool-card { padding: 18px; } }

.mode-switch {
  display: flex; gap: 8px; background: #f1f5f9; border: 1px solid #e2e8f0;
  border-radius: 12px; padding: 5px; margin-bottom: 18px;
}
.mode-btn {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
  border: 0; background: transparent; padding: 10px 12px; border-radius: 9px;
  font-size: 13.5px; font-weight: 600; color: #64748b; cursor: pointer;
  transition: all .15s; font-family: inherit;
}
.mode-btn:hover { color: #334155; }
.mode-btn.is-active { background: #fff; color: var(--primary); box-shadow: 0 2px 8px rgba(15,23,42,.08); }

.batch-list { list-style: none; margin: 14px 0 0; padding: 0; display: flex; flex-direction: column; gap: 8px; max-height: 240px; overflow-y: auto; }
.batch-list li {
  display: flex; align-items: center; gap: 10px;
  background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 10px; padding: 9px 12px; font-size: 13px;
}
.batch-list li i.bi-file-earmark-code { color: var(--primary); font-size: 16px; }
.batch-name { flex: 1; color: #1e293b; font-weight: 500; word-break: break-all; }
.batch-size { color: #64748b; font-size: 12px; white-space: nowrap; }
.batch-remove { background: none; border: 0; color: #64748b; cursor: pointer; font-size: 14px; padding: 2px 4px; }
.batch-remove:hover { color: #dc2626; }
.batch-meta { margin: 10px 0 0; display: flex; align-items: center; justify-content: space-between; gap: 10px; font-size: 13px; font-weight: 600; color: #334155; }
.batch-meta .btn-link { font-size: 12.5px; }

.batch-results { list-style: none; margin: 0 0 18px; padding: 0; text-align: left; display: flex; flex-direction: column; gap: 6px; }
.batch-results li { display: flex; align-items: center; gap: 10px; padding: 8px 12px; border-radius: 9px; font-size: 13px; background: #f8fafc; border: 1px solid #e2e8f0; }
.batch-results li.is-ok { background: #f0fdf4; border-color: #bbf7d0; }
.batch-results li.is-fail { background: #fef2f2; border-color: #fecaca; }
.batch-results li.is-ok i { color: #16a34a; }
.batch-results li.is-fail i { color: #dc2626; }
.batch-results a.btn-link { color: var(--primary); padding: 2px; }
.batch-fail-text { color: #b42318; font-size: 13px; margin: 0 0 18px; }

.batch-list[hidden], .batch-meta[hidden] { display: none; }
.batch-results[hidden] { display: none; }
.batch-tools { margin-top: 12px; display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.batch-tools-hint { font-size: 12px; color: #64748b; margin: 0; flex: 1; min-width: 220px; }
.batch-tools .btn { font-size: 13px; font-family: inherit; }
.batch-tools[hidden] { display: none; }

.dropzone {
  border: 2px dashed #cbd5e1; border-radius: 14px; padding: 40px 20px; text-align: center;
  transition: border-color .2s, background .2s; background: #fafbff;
}
.dropzone.is-dragover { border-color: var(--primary); background: #f5f3ff; }
.dropzone-icon { font-size: 40px; color: var(--primary); margin-bottom: 10px; }
.dz-title { margin: 0 0 4px; font-weight: 700; font-size: 15px; color: #334155; }
.dz-or { margin: 0 0 14px; font-size: 13px; color: #94a3b8; }
.dz-note { margin: 14px 0 0; font-size: 12px; color: #94a3b8; }
.dz-file {
  margin-top: 18px; display: flex; align-items: center; gap: 12px;
  background: #f0f4ff; border: 1px solid #dbe4ff; border-radius: 10px; padding: 12px 16px;
}
.dz-file i { font-size: 22px; color: var(--primary); }
.dz-name { flex: 1; font-size: 13px; font-weight: 600; color: #1e293b; word-break: break-all; }
.dz-remove { background: none; border: 0; color: #64748b; cursor: pointer; font-size: 15px; padding: 4px; }
.dz-remove:hover { color: #dc2626; }

.options-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 24px; }
.field-check { display: flex; align-items: flex-end; }
@media (max-width: 720px) { .options-grid { grid-template-columns: 1fr; } }

.field { position: relative; }
.field label { display: block; font-size: 13px; font-weight: 600; color: #334155; margin-bottom: 7px; }
.field input[type="text"], .field input[type="number"], .field input[type="date"], .field select, .field textarea {
  width: 100%; border: 1px solid #d5dae3; border-radius: 10px; padding: 11px 14px;
  font-size: 14px; font-family: inherit; color: #0f172a; background: #fff; outline: none;
  transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--primary); box-shadow: 0 0 0 3px rgba(124,58,237,.12);
}
.field-hint { display: block; font-size: 11px; color: #94a3b8; margin-top: 5px; }

.check-label { display: flex; align-items: center; gap: 12px; cursor: pointer; padding: 12px; border: 1px solid #e2e8f0; border-radius: 12px; background: #fafbff; width: 100%; }
.check-label input { position: absolute; opacity: 0; }
.check-box {
  width: 22px; height: 22px; border-radius: 7px; border: 2px solid #cbd5e1; background: #fff;
  display: flex; align-items: center; justify-content: center; color: transparent; flex-shrink: 0; transition: all .15s;
}
.check-label input:checked + .check-box { background: var(--primary); border-color: var(--primary); color: #fff; }
.check-label strong { display: block; font-size: 13px; color: #1e293b; }
.check-label small { font-size: 11px; color: #94a3b8; }

.license-block { margin-top: 24px; border: 1px solid #e5e9f0; border-radius: 14px; padding: 18px; background: #fcfdff; }
.license-title { font-weight: 700; font-size: 14px; color: #1e293b; margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.license-title i { color: var(--primary); }
.license-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 720px) { .license-grid { grid-template-columns: 1fr; } }

.tool-footer { margin-top: 26px; }
.tool-note { text-align: center; font-size: 12.5px; color: #64748b; margin: 14px 0 0; display: flex; align-items: center; justify-content: center; gap: 6px; }

/* result */
.result-ok { text-align: center; padding: 30px 10px 10px; }
.result-icon {
  width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2)); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 28px;
  box-shadow: 0 10px 30px rgba(124,58,237,.35);
}
.result-ok h3 { margin: 0 0 20px; font-size: 20px; font-weight: 800; }
.result-stats { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 24px; }
.result-stats span { background: #f1f5f9; border: 1px solid #e2e8f0; border-radius: 30px; padding: 6px 14px; font-size: 12.5px; font-weight: 600; color: #334155; }
.result-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.tool-error { display: none; margin-top: 20px; background: #fdecec; border: 1px solid #f5c2c2; color: #b42318; border-radius: 12px; padding: 14px 16px; font-size: 14px; }
.tool-error:not([hidden]) { display: block; }

/* ===== Features ===== */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 900px) { .feat-grid, .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .feat-grid, .steps-grid { grid-template-columns: 1fr; } }
.feat, .step, .sec {
  background: #fff; border: 1px solid #e6eaf1; border-radius: 16px; padding: 28px 24px;
  transition: transform .2s, box-shadow .2s;
}
.feat:hover, .sec:hover { box-shadow: 0 16px 40px rgba(15,23,42,.07); transform: translateY(-3px); }
.feat > i { font-size: 26px; color: var(--primary); }
.feat h3, .step h3, .sec h3 { margin: 14px 0 8px; font-size: 16px; font-weight: 800; }
.feat p, .step p, .sec p { margin: 0; font-size: 13.5px; color: #64748b; line-height: 1.6; }

.step { position: relative; background: #fff; }
.step-num {
  position: absolute; top: -14px; left: 24px; width: 28px; height: 28px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-2)); color: #fff;
  font-size: 13px; font-weight: 800; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(124,58,237,.3);
}
.step > i { font-size: 26px; color: var(--primary); margin-top: 6px; }

/* ===== API ===== */
.api-card {
  display: grid; grid-template-columns: 1fr 1fr; gap: 34px; align-items: center;
  background: linear-gradient(135deg, #111a33, #0b1120); border-radius: 20px; padding: 44px;
  color: #fff;
}
@media (max-width: 900px) { .api-card { grid-template-columns: 1fr; padding: 30px; } }
.api-copy h2 { margin: 0 0 12px; font-size: 24px; font-weight: 800; }
.api-copy p { color: rgba(255,255,255,.7); font-size: 14.5px; margin: 0 0 18px; }
.api-list li { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: rgba(255,255,255,.85); padding: 4px 0; }
.api-list i { color: #22c55e; }
.api-code {
  background: rgba(2,8,20,.7); border: 1px solid rgba(255,255,255,.1); border-radius: 14px;
  overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,.4);
}
.api-code pre { padding: 18px 20px; font-size: 12px; line-height: 1.7; color: #d7ffe0; overflow-x: auto; }

/* ===== Security ===== */
.sec-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 900px) { .sec-grid { grid-template-columns: 1fr; } }
.sec > i { font-size: 26px; color: var(--primary); }

/* ===== FAQ ===== */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid #e6eaf1; border-radius: 12px; background: #fff; overflow: hidden; }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 16px 18px; font-weight: 700; font-size: 14.5px; color: #1e293b;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary i { transition: transform .2s; color: var(--primary); }
.faq-item[open] summary i { transform: rotate(180deg); }
.faq-item p { margin: 0; padding: 0 18px 16px; font-size: 13.5px; color: #64748b; line-height: 1.65; }

/* ===== CTA ===== */
.cta {
  background:
    radial-gradient(900px 400px at 50% 0%, rgba(124,58,237,.3), transparent 60%),
    linear-gradient(180deg, #0b1120, #111a33);
  color: #fff; text-align: center; padding: 80px 0;
}
.cta-inner h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); font-weight: 800; margin: 0 0 12px; }
.cta-inner p { color: rgba(255,255,255,.7); margin: 0 0 28px; }

/* ===== Page hero / inner pages ===== */
.page-hero {
  background: linear-gradient(135deg, #111a33, #0b1120); color: #fff; text-align: center; padding: 56px 0;
}
.page-hero h1 { margin: 0 0 8px; font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; }
.page-hero p { color: rgba(255,255,255,.7); margin: 0 0 18px; }

.download-card, .contact-card {
  background: #fff; border: 1px solid #e6eaf1; border-radius: 16px; padding: 40px; text-align: center;
}
.contact-card { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; text-align: left; }
@media (max-width: 800px) { .contact-card { grid-template-columns: 1fr; } }
.contact-form .field { margin-bottom: 14px; }
.contact-form .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 600px) { .contact-form .field-row { grid-template-columns: 1fr; } }
.contact-side p { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: #475569; margin: 0 0 14px; }
.contact-side i { color: var(--primary); font-size: 16px; margin-top: 2px; }
.muted { color: #64748b; max-width: 460px; margin: 0 auto 22px; font-size: 14px; }
.alert { padding: 12px 16px; border-radius: 10px; font-size: 14px; margin-bottom: 18px; }
.alert-success { background: #e8f7ee; border: 1px solid #b7e4c7; color: #1b7a3d; }
.alert-error { background: #fdecec; border: 1px solid #f5c2c2; color: #b42318; }
.di-pagination { display: flex; justify-content: center; margin-top: 32px; }

/* ===== Modal ===== */
.modal-backdrop {
  position: fixed; inset: 0; z-index: 2000; background: rgba(2,8,20,.7);
  backdrop-filter: blur(4px); display: flex; align-items: center; justify-content: center; padding: 20px;
}
.modal-backdrop[hidden] { display: none; }
.modal-card {
  background: #0b1120; color: #e2e8f0; border-radius: 14px; width: 100%; max-width: 780px; max-height: 82vh;
  display: flex; flex-direction: column; overflow: hidden; box-shadow: 0 30px 80px rgba(0,0,0,.5);
}
.modal-head { display: flex; align-items: center; justify-content: space-between; padding: 14px 18px; border-bottom: 1px solid rgba(255,255,255,.08); }
.modal-close { background: none; border: 0; color: #94a3b8; font-size: 17px; cursor: pointer; padding: 4px; }
.modal-close:hover { color: #fff; }
.modal-code { flex: 1; overflow: auto; padding: 18px; font-size: 12px; line-height: 1.6; white-space: pre-wrap; word-break: break-all; }
.modal-foot { display: flex; justify-content: space-between; gap: 10px; padding: 14px 18px; border-top: 1px solid rgba(255,255,255,.08); }

/* ===== Footer ===== */
.site-footer { background: #070b14; color: rgba(255,255,255,.7); margin-top: auto; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px; padding: 56px 0 40px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand p { font-size: 13px; line-height: 1.6; color: rgba(255,255,255,.55); margin: 14px 0 0; max-width: 300px; }
.footer-col h4 { font-size: 12px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; color: #fff; margin: 0 0 14px; }
.footer-col nav { display: flex; flex-direction: column; gap: 8px; }
.footer-col nav a { font-size: 13px; color: rgba(255,255,255,.6); transition: color .2s; }
.footer-col nav a:hover { color: var(--primary); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.06); padding: 20px 0; text-align: center; }
.footer-bottom p { margin: 0; font-size: 12px; color: rgba(255,255,255,.4); }

/* ===== Form (quick) ===== */
input[disabled], button[disabled] { opacity: .55; cursor: not-allowed; }