/* ===== ASSISTIFYPH — MAIN STYLESHEET ===== */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&display=swap');

/* ── CSS Variables ── */
:root {
  --brand-start: #3b5bdb;
  --brand-mid: #7048e8;
  --brand-end: #9c36b5;
  --grad: linear-gradient(135deg, var(--brand-start), var(--brand-mid), var(--brand-end));
  --grad-subtle: linear-gradient(135deg, rgba(59,91,219,.12), rgba(156,54,181,.08));

  /* Light theme */
  --bg: #f8f7ff;
  --bg-card: #ffffff;
  --bg-nav: rgba(248,247,255,0.88);
  --text: #1a1535;
  --text-muted: #5a5578;
  --border: rgba(112,72,232,.15);
  --shadow: 0 4px 30px rgba(59,91,219,.10);
  --shadow-strong: 0 8px 48px rgba(59,91,219,.18);
  --nav-blur: blur(18px);

  --radius: 16px;
  --radius-sm: 8px;
  --radius-lg: 24px;
  --transition: 0.26s cubic-bezier(.4,0,.2,1);

  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

[data-theme="dark"] {
  --bg: #0d0b1a;
  --bg-card: #16122b;
  --bg-nav: rgba(13,11,26,0.88);
  --text: #ede9ff;
  --text-muted: #9d95c0;
  --border: rgba(112,72,232,.22);
  --shadow: 0 4px 30px rgba(0,0,0,.35);
  --shadow-strong: 0 8px 48px rgba(0,0,0,.5);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  transition: background var(--transition), color var(--transition);
  overflow-x: hidden;
}

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

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--brand-mid); border-radius: 999px; }

/* ── Typography ── */
h1,h2,h3,h4,h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.02em;
}
h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Layout ── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 96px 0; }

/* ── Navbar ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--bg-nav);
  backdrop-filter: var(--nav-blur);
  -webkit-backdrop-filter: var(--nav-blur);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -.02em;
}

.nav-logo img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  object-fit: cover;
}

.nav-logo-placeholder {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: .85rem;
  font-family: var(--font-display);
  font-weight: 800;
  flex-shrink: 0;
}

.nav-logo span { background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  padding: 7px 15px;
  border-radius: 8px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition), background var(--transition);
}

.nav-links a:hover, .nav-links a.active {
  color: var(--text);
  background: var(--grad-subtle);
}

.nav-links a.active {
  color: var(--brand-mid);
  font-weight: 600;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Theme Toggle */
.theme-toggle {
  width: 40px; height: 40px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all var(--transition);
  color: var(--text-muted);
}
.theme-toggle:hover { border-color: var(--brand-mid); color: var(--brand-mid); }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .25s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .92rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 4px 16px rgba(112,72,232,.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(112,72,232,.45); }

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-outline:hover { border-color: var(--brand-mid); color: var(--brand-mid); }

.btn-lg { padding: 14px 32px; font-size: 1rem; border-radius: 12px; }
.btn-sm { padding: 8px 16px; font-size: .82rem; }

/* ── Hero ── */
.hero {
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .35;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--brand-start), transparent);
  top: -200px; right: -100px;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--brand-end), transparent);
  bottom: -100px; left: -80px;
}

.hero-content { position: relative; z-index: 1; text-align: center; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--brand-mid);
  margin-bottom: 28px;
  box-shadow: var(--shadow);
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brand-mid);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1}50%{opacity:.4} }

.hero-title { margin-bottom: 20px; }

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 40px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.stat-item { text-align: center; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.stat-label {
  font-size: .8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: 4px;
}

/* ── Section Headers ── */
.section-header { text-align: center; margin-bottom: 60px; }
.section-eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--brand-mid);
  margin-bottom: 12px;
}
.section-header p {
  color: var(--text-muted);
  max-width: 520px;
  margin: 12px auto 0;
}

/* ── Cards ── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: all var(--transition);
  box-shadow: var(--shadow);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-strong);
  border-color: rgba(112,72,232,.3);
}

.card-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--grad-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 18px;
  border: 1px solid var(--border);
  color: var(--brand-mid);
}

/* ── Services Grid ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.service-card .service-list {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-card .service-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  color: var(--text-muted);
}
.service-card .service-list li::before {
  content: '▸';
  color: var(--brand-mid);
  font-size: .75rem;
  flex-shrink: 0;
}

/* ── Why Choose ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: all var(--transition);
}
.why-card:hover { transform: translateY(-3px); border-color: var(--brand-mid); }

.why-icon {
  font-size: 1.5rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--grad-subtle);
  border: 1px solid var(--border);
  color: var(--brand-mid);
  margin: 0 auto 14px;
}
.why-card h4 {
  font-size: 1rem;
  margin-bottom: 6px;
}
.why-card p {
  font-size: .85rem;
  color: var(--text-muted);
}

/* ── CTA Banner ── */
.cta-banner {
  background: var(--grad);
  border-radius: var(--radius-lg);
  padding: 64px 48px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-banner h2 { color: #fff; margin-bottom: 12px; }
.cta-banner p { opacity: .85; max-width: 500px; margin: 0 auto 32px; }
.btn-white {
  background: #fff;
  color: var(--brand-mid);
  font-weight: 700;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.2); }

/* ── Footer ── */
footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 60px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .nav-logo { margin-bottom: 14px; }
.footer-brand p {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 300px;
}

.footer-col h5 {
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--brand-mid);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: .88rem;
  color: var(--text-muted);
  padding: 4px 0;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--brand-mid); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: .82rem; color: var(--text-muted); }

/* ── About Page ── */
.about-hero {
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-visual-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-strong);
  text-align: center;
}

.about-visual-card .big-icon {
  font-size: 4rem;
  margin-bottom: 16px;
}

.about-visual-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--grad);
  color: #fff;
  border-radius: 12px;
  padding: 14px 20px;
  font-size: .82rem;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(112,72,232,.4);
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 16px;
}

.milestone-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}
.milestone-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.milestone-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--grad);
  margin-top: 6px;
  flex-shrink: 0;
}
.milestone-item h4 { font-size: .95rem; margin-bottom: 2px; }
.milestone-item p { font-size: .85rem; color: var(--text-muted); margin: 0; }

/* Mission Vision */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.mv-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.mv-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--grad);
}
.mv-label {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--brand-mid);
  margin-bottom: 10px;
}
.mv-card p { color: var(--text-muted); }

/* Org Chart */
.org-chart-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  overflow: auto;
}

.org-chart-controls {
  display: flex;
  gap: 10px;
  margin-bottom: 28px;
  flex-wrap: wrap;
  align-items: center;
}

.org-chart-controls p {
  font-size: .82rem;
  color: var(--text-muted);
  margin-left: auto;
}

.org-tree {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  min-width: 700px;
}

.org-level {
  display: flex;
  justify-content: center;
  gap: 16px;
  position: relative;
  padding: 0 16px;
}

.org-level + .org-level { margin-top: 0; }

/* Connector lines */
.org-connector {
  width: 2px;
  height: 32px;
  background: var(--border);
  margin: 0 auto;
}
.org-connector-h {
  display: flex;
  justify-content: center;
  position: relative;
  width: 100%;
}
.org-connector-h::before {
  content: '';
  position: absolute;
  top: 0;
  height: 1px;
  background: var(--border);
  width: 60%;
}

.org-node {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 14px 20px;
  text-align: center;
  min-width: 140px;
  max-width: 170px;
  position: relative;
  cursor: pointer;
  transition: all var(--transition);
}
.org-node { cursor: default; }

/* photo avatar */
.org-node-avatar--photo {
  background: none;
  border: 2px solid var(--border);
  overflow: hidden;
  padding: 0;
}
.org-node-avatar--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}

.org-node.ceo { border-color: var(--brand-mid); background: var(--grad-subtle); }
.org-node.board { border-color: rgba(59,91,219,.4); }

.org-node-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  color: #fff;
  font-size: .9rem;
  margin: 0 auto 8px;
}

.org-node-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .85rem;
  margin-bottom: 2px;
}
.org-node-role {
  font-size: .72rem;
  color: var(--text-muted);
}

/* Edit modal */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
}
.modal-overlay.open { display: flex; }

.modal {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  width: 100%;
  max-width: 440px;
  box-shadow: var(--shadow-strong);
  animation: modal-in .2s ease;
}
@keyframes modal-in { from{opacity:0;transform:scale(.95)} to{opacity:1;transform:scale(1)} }

.modal h3 { margin-bottom: 20px; }
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--text-muted);
  width: 32px; height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-close:hover { background: var(--border); color: var(--text); }
.modal { position: relative; }

/* ── Forms ── */
.form-group {
  margin-bottom: 20px;
}
.form-label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}
.form-label span { color: #f87171; }

.form-input {
  width: 100%;
  padding: 11px 14px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: var(--font-body);
  font-size: .92rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-input:focus {
  border-color: var(--brand-mid);
  box-shadow: 0 0 0 3px rgba(112,72,232,.15);
}
.form-input::placeholder { color: var(--text-muted); opacity: .7; }

select.form-input { cursor: pointer; }
textarea.form-input { resize: vertical; min-height: 100px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-error {
  display: none;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  color: #f87171;
  margin-top: 5px;
}

.form-section-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin: 28px 0 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
  color: var(--brand-mid);
}

.checkbox-group {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 8px;
  margin-top: 8px;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: .88rem;
}
.checkbox-item input[type="checkbox"] {
  width: 16px; height: 16px;
  accent-color: var(--brand-mid);
  cursor: pointer;
}

.requirements-box {
  background: var(--grad-subtle);
  border: 1px solid var(--border);
  border-left: 3px solid var(--brand-mid);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin: 24px 0;
  font-size: .88rem;
}
.requirements-box strong { color: var(--brand-mid); display: block; margin-bottom: 6px; }
.requirements-box ul { padding-left: 16px; list-style: disc; }
.requirements-box ul li { color: var(--text-muted); margin-bottom: 3px; }

/* ── Contact Page ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 48px;
  align-items: start;
}

.contact-info h2 { margin-bottom: 12px; }
.contact-info > p { color: var(--text-muted); margin-bottom: 32px; }

.contact-item {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  align-items: flex-start;
}
.contact-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--grad-subtle);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  color: var(--brand-mid);
}
.contact-item h5 { font-size: .82rem; color: var(--text-muted); margin-bottom: 2px; text-transform: uppercase; letter-spacing: .06em; font-weight: 600; }
.contact-item p { font-size: .92rem; }

/* Large icon blocks used in visual cards */
.big-icon, .big-emoji {
  font-size: 2.8rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px; height: 72px;
  border-radius: 18px;
  background: var(--grad-subtle);
  border: 1px solid var(--border);
  color: var(--brand-mid);
  margin: 0 auto 16px;
}

/* Inline info row icon (about page visual card) */
.info-icon {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  color: var(--brand-mid);
  flex-shrink: 0;
}

/* ── Apply Page ── */
.apply-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.apply-intro h1 { margin-bottom: 12px; }
.apply-intro p { color: var(--text-muted); }

.apply-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  max-width: 760px;
  margin: 0 auto;
  box-shadow: var(--shadow);
}

.apply-page { padding: 130px 0 80px; }

/* ── Toast ── */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.toast {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-strong);
  font-size: .88rem;
  font-weight: 500;
  opacity: 0;
  transform: translateX(20px);
  transition: all .3s cubic-bezier(.4,0,.2,1);
  pointer-events: auto;
  max-width: 340px;
}
.toast.show { opacity: 1; transform: translateX(0); }
.toast-success { border-color: #4ade80; color: #16a34a; }
.toast-error { border-color: #f87171; color: #dc2626; }
.toast-success i { color: #4ade80; }
.toast-error i { color: #f87171; }

/* ── Services Detail ── */
.services-hero { padding: 140px 0 80px; text-align: center; }
.services-detail-grid {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}
.service-detail:nth-child(even) { direction: rtl; }
.service-detail:nth-child(even) > * { direction: ltr; }

.service-detail-visual {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  box-shadow: var(--shadow);
}
.service-detail-visual .big-emoji { font-size: 4rem; margin-bottom: 12px; }
.service-detail-visual h3 { margin-bottom: 6px; }
.service-detail-visual p { font-size: .88rem; color: var(--text-muted); }

.service-detail-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}
.service-detail-list li {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .9rem;
  transition: all var(--transition);
}
.service-detail-list li:hover { border-color: var(--brand-mid); transform: translateX(4px); }
.service-detail-list li::before {
  content: '✦';
  color: var(--brand-mid);
  font-size: .7rem;
  flex-shrink: 0;
}

/* ── Logo Uploader ── */
.logo-upload-area {
  position: relative;
  cursor: pointer;
}
.logo-upload-area input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 10;
  width: 100%;
}
.logo-upload-hint {
  font-size: .7rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 4px;
  opacity: .7;
}

/* ── Animations ── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .5s ease, transform .5s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: var(--bg-nav);
    backdrop-filter: var(--nav-blur);
    -webkit-backdrop-filter: var(--nav-blur);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px;
    gap: 4px;
  }
  .nav-links { display: none; }
  .nav-right .btn {display: none;}
  .nav-hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .mv-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .service-detail { grid-template-columns: 1fr; }
  .service-detail:nth-child(even) { direction: ltr; }
  .form-row { grid-template-columns: 1fr; }
  .apply-form-card { padding: 28px 20px; }
}

@media (max-width: 600px) {
  section { padding: 64px 0; }
  .hero { padding: 120px 0 64px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-stats { gap: 28px; }
  .cta-banner { padding: 40px 24px; }
}
