/* ========================================
   SSP Garment Cloud — Pillar Pages CSS
   Shared styles for all 10 pillar pages
   ======================================== */
:root {
  --primary: #2a5a8c;
  --primary-dark: #071525;
  --accent: #e8a020;
  --text: #dce8f5;
  --gray: #8eabc8;
  --border: rgba(255,255,255,0.10);
  --shadow: 0 4px 28px rgba(0,0,0,0.45);
  --radius: 14px;
  --card-bg: rgba(255,255,255,0.05);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', Tahoma, 'TH Sarabun New', sans-serif;
  color: var(--text);
  overflow-x: hidden;
  background: #071525;
  background-image:
    repeating-linear-gradient(45deg, transparent, transparent 38px, rgba(255,255,255,0.018) 38px, rgba(255,255,255,0.018) 39px),
    repeating-linear-gradient(-45deg, transparent, transparent 38px, rgba(255,255,255,0.018) 38px, rgba(255,255,255,0.018) 39px);
  top: 0 !important;
}
.goog-te-banner-frame { display: none !important; }
.VIpgJd-ZVi9od-aZ2wEe-wOHMyf { display: none !important; }

/* ── NAVBAR ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(26,58,92,0.97); backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 32px; height: 72px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.22);
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo img { height: 52px; width: auto; border-radius: 8px; object-fit: contain; }
.nav-logo-text { color: #fff; font-size: 1.1rem; font-weight: 700; line-height: 1.2; }
.nav-logo-text span { display: block; font-size: 0.7rem; font-weight: 400; opacity: 0.82; letter-spacing: 1.5px; color: #c8dff5; }
.nav-menu { display: flex; gap: 4px; align-items: center; list-style: none; }
.nav-menu a {
  color: rgba(255,255,255,0.92); text-decoration: none;
  padding: 8px 14px; border-radius: 8px;
  font-size: 0.92rem; font-weight: 500; transition: background 0.2s, color 0.2s;
}
.nav-menu a:hover { background: rgba(255,255,255,0.14); color: var(--accent); }
.nav-menu .btn-cta {
  background: var(--accent); color: var(--primary-dark) !important;
  font-weight: 700; padding: 9px 18px; border-radius: 9px;
  border: none; cursor: pointer; transition: background 0.2s, transform 0.15s;
}
.nav-menu .btn-cta:hover { background: #f5b840; transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
.hamburger span { width: 26px; height: 2.5px; background: #fff; border-radius: 2px; transition: all 0.3s; }

/* ── NAV DROPDOWN ── */
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' ▾'; font-size: 0.65rem; opacity: 0.75; }
.nav-dropdown-menu {
  display: none; position: absolute; top: calc(100% + 10px); left: 50%;
  transform: translateX(-50%);
  background: #0b1d35; border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px; box-shadow: 0 16px 48px rgba(0,0,0,0.55);
  padding: 18px 20px; min-width: 480px;
  flex-direction: row; gap: 28px; z-index: 500; white-space: nowrap;
}
.nav-dropdown:hover .nav-dropdown-menu { display: flex; }
.nav-dropdown-col { min-width: 200px; }
.nav-dropdown-col h6 {
  color: var(--accent); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 0 8px 8px; margin-bottom: 4px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.nav-dropdown-col a {
  display: flex; align-items: center; gap: 8px;
  padding: 7px 8px; border-radius: 8px;
  color: rgba(255,255,255,0.87) !important; font-size: 0.875rem;
  text-decoration: none; transition: background 0.15s, color 0.15s;
}
.nav-dropdown-col a:hover { background: rgba(255,255,255,0.1) !important; color: var(--accent) !important; }
.nav-dropdown-col .dd-icon { font-size: 1rem; min-width: 22px; text-align: center; }

/* Lang switcher */
.lang-switcher { position: relative; margin-right: 8px; }
.lang-btn {
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  color: #fff; padding: 7px 12px; border-radius: 8px; cursor: pointer;
  font-size: 0.85rem; font-family: inherit; display: flex; align-items: center; gap: 6px;
}
.lang-btn:hover { background: rgba(255,255,255,0.18); }
.lang-dropdown {
  display: none; position: absolute; top: calc(100% + 8px); right: 0;
  background: #0d1f35; border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px; min-width: 160px; overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5); z-index: 1001;
}
.lang-dropdown.open { display: block; }
.lang-dropdown button {
  width: 100%; background: none; border: none; color: rgba(255,255,255,0.82);
  padding: 10px 16px; text-align: left; cursor: pointer;
  font-size: 0.9rem; font-family: inherit; transition: background 0.2s;
}
.lang-dropdown button:hover { background: rgba(255,255,255,0.1); color: var(--accent); }
.lang-dropdown button.active { color: var(--accent); font-weight: 700; background: rgba(232,160,32,0.1); }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--accent); color: #1a2a00; font-weight: 700;
  padding: 14px 32px; border-radius: 10px; border: none; cursor: pointer;
  font-size: 1rem; text-decoration: none; display: inline-block; transition: all 0.2s;
}
.btn-primary:hover { background: #f5b840; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(232,160,32,0.4); }
.btn-outline {
  border: 2px solid rgba(232,160,32,0.7); color: var(--accent);
  background: transparent; font-weight: 600; padding: 12px 28px;
  border-radius: 10px; cursor: pointer; font-size: 1rem;
  text-decoration: none; display: inline-block; transition: all 0.2s;
}
.btn-outline:hover { background: rgba(232,160,32,0.1); transform: translateY(-2px); }

/* ── LAYOUT ── */
section { padding: 80px 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-badge {
  display: inline-block; background: rgba(232,160,32,0.15); color: var(--accent);
  font-size: 0.78rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  padding: 6px 16px; border-radius: 20px; margin-bottom: 14px;
  border: 1px solid rgba(232,160,32,0.3);
}
.section-header h2 { font-size: 2.2rem; font-weight: 800; color: #e8f4ff; margin-bottom: 12px; line-height: 1.25; }
.section-header p { color: var(--gray); font-size: 1.05rem; max-width: 600px; margin: 0 auto; line-height: 1.7; }
.accent-line { width: 56px; height: 4px; background: var(--accent); border-radius: 2px; margin: 14px auto 0; }

/* ── PILLAR HERO ── */
.pillar-hero {
  background: linear-gradient(135deg, #0a1f38 0%, #071525 55%, #0c1f35 100%);
  padding: 72px 0 60px; margin-top: 72px;
  border-bottom: 2px solid rgba(232,160,32,0.25);
  text-align: center; position: relative; overflow: hidden;
}
.pillar-hero::before {
  content: '';
  position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
  background: radial-gradient(ellipse at center, rgba(42,90,140,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.breadcrumb { font-size: 0.85rem; color: var(--gray); margin-bottom: 22px; position: relative; }
.breadcrumb a { color: var(--accent); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 8px; opacity: 0.5; }
.pillar-hero h1 { font-size: 2.8rem; font-weight: 900; color: #fff; margin-bottom: 18px; line-height: 1.2; position: relative; }
.pillar-hero h1 em { color: var(--accent); font-style: normal; }
.pillar-hero .hero-desc {
  font-size: 1.15rem; color: rgba(200,223,245,0.85);
  max-width: 720px; margin: 0 auto 30px; line-height: 1.75; position: relative;
}
.pillar-hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ── PROSE CONTENT ── */
.prose-section { background: #0c1f35; }
.prose-section.alt { background: #071525; }
.prose-section.light { background: #091a2d; }
.prose h3 {
  font-size: 1.55rem; font-weight: 800; color: #e8f4ff;
  margin-bottom: 18px; padding-bottom: 12px;
  border-bottom: 2px solid rgba(232,160,32,0.22);
}
.prose p { color: var(--gray); line-height: 1.9; font-size: 1.01rem; margin-bottom: 16px; }
.prose p strong { color: #e0efff; font-weight: 700; }
.prose ul, .prose ol { margin-bottom: 16px; padding-left: 0; list-style: none; }
.prose ul li, .prose ol li {
  color: var(--gray); line-height: 1.8; font-size: 1rem;
  padding: 6px 0 6px 30px; position: relative;
}
.prose ul li::before { content: '▸'; position: absolute; left: 0; color: var(--accent); font-weight: 700; }
.prose ol { counter-reset: prose-ol; }
.prose ol li { counter-increment: prose-ol; }
.prose ol li::before {
  content: counter(prose-ol); position: absolute; left: 0;
  color: var(--accent); font-weight: 800; font-size: 0.9rem;
}
.prose-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.prose-highlight {
  background: rgba(232,160,32,0.08); border: 1px solid rgba(232,160,32,0.25);
  border-radius: 12px; padding: 22px 24px; margin: 20px 0;
}
.prose-highlight p { margin-bottom: 0; color: #d4e8f0; }

/* ── WHO GRID ── */
.who-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 36px; }
.who-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 26px 20px; text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}
.who-card:hover { border-color: rgba(232,160,32,0.4); transform: translateY(-5px); }
.who-icon { font-size: 2.2rem; margin-bottom: 14px; }
.who-card h4 { font-size: 1rem; font-weight: 800; color: #e8f4ff; margin-bottom: 10px; }
.who-card p { font-size: 0.88rem; color: var(--gray); line-height: 1.65; }

/* ── PROS CONS ── */
.pros-cons-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 36px; }
.pros-card { background: rgba(34,197,94,0.07); border: 1px solid rgba(34,197,94,0.28); border-radius: var(--radius); padding: 28px; }
.cons-card { background: rgba(239,68,68,0.07); border: 1px solid rgba(239,68,68,0.28); border-radius: var(--radius); padding: 28px; }
.pros-card h3 { color: #4ade80; font-size: 1.15rem; font-weight: 800; margin-bottom: 20px; display: flex; align-items: center; gap: 8px; }
.cons-card h3 { color: #f87171; font-size: 1.15rem; font-weight: 800; margin-bottom: 20px; display: flex; align-items: center; gap: 8px; }
.check-list, .cross-list { list-style: none; padding: 0; }
.check-list li, .cross-list li { font-size: 0.95rem; color: var(--gray); padding: 9px 0 9px 32px; position: relative; line-height: 1.65; border-bottom: 1px solid rgba(255,255,255,0.05); }
.check-list li:last-child, .cross-list li:last-child { border-bottom: none; }
.check-list li::before { content: '✓'; position: absolute; left: 0; color: #4ade80; font-weight: 800; font-size: 1rem; }
.cross-list li::before { content: '✗'; position: absolute; left: 0; color: #f87171; font-weight: 800; font-size: 1rem; }

/* ── PRICING ── */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-top: 36px; }
.pricing-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 26px 20px; text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}
.pricing-card:hover { border-color: rgba(232,160,32,0.45); transform: translateY(-5px); }
.pricing-card h4 { font-size: 0.82rem; font-weight: 700; color: var(--gray); margin-bottom: 14px; text-transform: uppercase; letter-spacing: 1.5px; }
.pricing-range { font-size: 1.9rem; font-weight: 900; color: var(--accent); margin-bottom: 4px; line-height: 1; }
.pricing-unit { font-size: 0.8rem; color: var(--gray); margin-bottom: 10px; }
.pricing-note { font-size: 0.82rem; color: var(--gray); margin-top: 10px; padding-top: 10px; border-top: 1px solid var(--border); line-height: 1.5; }
.pricing-disclaimer {
  text-align: center; color: var(--gray); font-size: 0.9rem;
  margin-top: 28px; line-height: 1.75;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  border-radius: 10px; padding: 16px 20px;
}

/* ── PROCESS STEPS ── */
.process-steps { margin-top: 36px; }
.step { display: flex; gap: 24px; margin-bottom: 30px; align-items: flex-start; }
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff; font-size: 1.25rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; box-shadow: 0 4px 16px rgba(232,160,32,0.3);
}
.step-body h4 { font-size: 1.05rem; font-weight: 800; color: #e8f4ff; margin-bottom: 7px; }
.step-body p { font-size: 0.93rem; color: var(--gray); line-height: 1.75; }
.step-badge {
  display: inline-block; background: rgba(232,160,32,0.15); color: var(--accent);
  font-size: 0.72rem; font-weight: 700; padding: 3px 10px; border-radius: 12px;
  margin-top: 6px; border: 1px solid rgba(232,160,32,0.3);
}

/* ── FAQ ACCORDION ── */
.faq-section { background: #091a2d; }
.faq-list { max-width: 880px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); border-radius: 12px; overflow: hidden; margin-bottom: 12px; }
.faq-q {
  width: 100%; background: var(--card-bg); border: none; color: var(--text);
  padding: 18px 22px; text-align: left; font-size: 1rem; font-weight: 600;
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  gap: 12px; font-family: inherit; transition: background 0.2s;
}
.faq-q:hover { background: rgba(255,255,255,0.08); }
.faq-arrow { font-size: 1.4rem; color: var(--accent); transition: transform 0.35s; flex-shrink: 0; line-height: 1; }
.faq-q.open .faq-arrow { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; background: rgba(255,255,255,0.025); }
.faq-a.open { max-height: 700px; }
.faq-a p { padding: 18px 22px; color: var(--gray); line-height: 1.85; font-size: 0.96rem; }
.faq-a p strong { color: var(--text); }

/* ── CTA STRIP ── */
.cta-strip {
  background: linear-gradient(135deg, #0f2a45 0%, #071525 50%, #112208 100%);
  border-top: 1px solid rgba(232,160,32,0.22); border-bottom: 1px solid rgba(232,160,32,0.22);
  padding: 70px 0; text-align: center;
}
.cta-strip h2 { color: #e8f4ff; font-size: 2rem; font-weight: 800; margin-bottom: 14px; }
.cta-strip p { color: rgba(200,223,245,0.82); font-size: 1.1rem; margin-bottom: 34px; line-height: 1.7; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── RELATED PAGES ── */
.related-section { background: #071525; }
.related-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 14px; margin-top: 32px; }
.related-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: 12px; padding: 18px 16px;
  text-decoration: none; color: var(--text);
  transition: border-color 0.2s, transform 0.2s, background 0.2s;
  display: block;
}
.related-card:hover { border-color: rgba(232,160,32,0.45); transform: translateY(-4px); background: rgba(232,160,32,0.06); }
.related-card-icon { font-size: 1.6rem; margin-bottom: 10px; }
.related-card h4 { font-size: 0.9rem; font-weight: 700; color: #e8f4ff; margin-bottom: 5px; line-height: 1.4; }
.related-card p { font-size: 0.78rem; color: var(--gray); line-height: 1.5; }

/* ── FOOTER ── */
footer { background: #040e1a; color: rgba(255,255,255,0.85); padding: 60px 0 0; border-top: 1px solid rgba(232,160,32,0.2); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
.footer-brand img { height: 60px; margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.8; opacity: 0.75; max-width: 340px; }
.footer-col h5 { color: var(--accent); font-size: 0.85rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--accent); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 0.9rem; }
.footer-contact-item svg { flex-shrink: 0; opacity: 0.7; margin-top: 2px; }
.footer-contact-item a { color: rgba(255,255,255,0.75); text-decoration: none; transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--accent); }
.footer-dbd { border-top: 1px solid rgba(255,255,255,0.08); padding: 24px 0 8px; display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; }
.footer-dbd img { height: 90px; width: auto; opacity: 0.9; transition: opacity 0.2s, transform 0.2s; }
.footer-dbd img:hover { opacity: 1; transform: scale(1.05); }
.footer-dbd-text { font-size: 0.78rem; color: rgba(255,255,255,0.45); text-align: center; line-height: 1.6; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 16px 0; text-align: center; font-size: 0.82rem; opacity: 0.45; }
.seo-keywords { display: none; }

/* ── MODAL ── */
.modal-overlay { display: none; position: fixed; inset: 0; z-index: 2000; background: rgba(0,0,0,0.78); backdrop-filter: blur(6px); align-items: center; justify-content: center; padding: 20px; }
.modal-overlay.open { display: flex; }
.modal { background: #0d1f35; border-radius: 20px; max-width: 600px; width: 100%; max-height: 90vh; overflow-y: auto; box-shadow: 0 24px 80px rgba(0,0,0,0.7); border: 1px solid rgba(255,255,255,0.1); animation: modalIn 0.3s cubic-bezier(.4,0,.2,1); }
@keyframes modalIn { from { opacity:0; transform: scale(0.92) translateY(20px); } to { opacity:1; transform: scale(1) translateY(0); } }
.modal-header { background: linear-gradient(135deg, #1a3a5c, #071525); padding: 28px 32px 22px; border-radius: 20px 20px 0 0; position: sticky; top: 0; z-index: 1; border-bottom: 1px solid rgba(232,160,32,0.25); }
.modal-header h3 { font-size: 1.35rem; font-weight: 800; margin-bottom: 4px; color: #e8f4ff; }
.modal-header p { opacity: 0.75; font-size: 0.9rem; color: #c8dff5; }
.modal-close { position: absolute; top: 16px; right: 20px; background: rgba(255,255,255,0.15); border: none; color: #fff; width: 32px; height: 32px; border-radius: 50%; cursor: pointer; font-size: 1.1rem; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.modal-close:hover { background: rgba(255,255,255,0.3); }
.modal-body { padding: 28px 32px 32px; }
.type-selector { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 22px; }
.type-btn { padding: 12px; border-radius: 10px; border: 1.5px solid rgba(255,255,255,0.12); background: rgba(255,255,255,0.05); cursor: pointer; font-size: 0.95rem; font-weight: 600; color: var(--gray); transition: all 0.2s; text-align: center; font-family: inherit; }
.type-btn.active { border-color: var(--accent); background: rgba(232,160,32,0.15); color: var(--accent); }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.88rem; font-weight: 600; color: #8eabc8; margin-bottom: 7px; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 11px 14px; border: 1.5px solid rgba(255,255,255,0.12); border-radius: 9px; font-size: 0.95rem; font-family: inherit; transition: border-color 0.2s; background: rgba(255,255,255,0.06); color: #dce8f5; }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(232,160,32,0.15); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.btn-submit { width: 100%; background: var(--accent); color: #071525; font-weight: 800; padding: 14px; border-radius: 10px; border: none; cursor: pointer; font-size: 1rem; font-family: inherit; transition: all 0.2s; margin-top: 8px; }
.btn-submit:hover { background: #f5b840; }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.form-note { text-align: center; color: var(--gray); font-size: 0.8rem; margin-top: 12px; line-height: 1.6; }
.success-msg { text-align: center; padding: 24px; }
.success-icon { font-size: 2.8rem; margin-bottom: 14px; }
.success-msg h4 { font-size: 1.2rem; color: #e8f4ff; margin-bottom: 10px; }
.success-msg p { color: var(--gray); line-height: 1.75; }
.cu-check { display: flex; align-items: center; gap: 8px; padding: 8px 12px; border: 1px solid var(--border); border-radius: 8px; cursor: pointer; color: var(--gray); font-size: 0.9rem; transition: border-color 0.2s; }
.cu-check:hover { border-color: rgba(232,160,32,0.4); color: var(--text); }
.cu-check input { accent-color: var(--accent); }

/* ── FLOATING BUTTONS ── */
.float-btns { position: fixed; bottom: 32px; right: 28px; display: flex; flex-direction: column; align-items: flex-end; gap: 10px; z-index: 999; }
.float-btn { width: 60px; border-radius: 16px; border: none; cursor: pointer; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; padding: 10px 6px 8px; box-shadow: 0 4px 20px rgba(0,0,0,0.5); transition: transform 0.2s, box-shadow 0.2s; text-decoration: none; }
.float-btn:hover { transform: translateY(-3px) scale(1.06); box-shadow: 0 8px 28px rgba(0,0,0,0.6); }
.float-btn-label { font-size: 10px; font-weight: 700; letter-spacing: 0.5px; color: #fff; }
.float-line { background: #06c755; }
.float-phone { background: #1a3a5c; border: 1px solid rgba(255,255,255,0.25); }
.float-callus { background: #1e3a6e; border: 1px solid rgba(255,255,255,0.25); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .prose-two-col { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 900px) {
  nav { padding: 0 20px; }
  .nav-menu {
    display: none; position: fixed; top: 72px; left: 0; right: 0;
    flex-direction: column; background: rgba(7,21,37,0.98);
    padding: 20px; gap: 8px; border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .nav-menu.open { display: flex; }
  .hamburger { display: flex; }
  .nav-dropdown > a::after { display: none; }
  .nav-dropdown-menu { position: static; transform: none; min-width: 0; width: 100%; flex-direction: column; gap: 0; padding: 4px 0 4px 12px; border: none; box-shadow: none; border-radius: 0; background: transparent; }
  .nav-dropdown.open > .nav-dropdown-menu { display: flex; }
  .nav-dropdown-col h6 { padding: 8px 8px 4px; font-size: 0.65rem; }
  .nav-dropdown-col a { font-size: 0.85rem; padding: 6px 8px; }
  .pillar-hero h1 { font-size: 2rem; }
  .who-grid { grid-template-columns: repeat(2, 1fr); }
  .pros-cons-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .step { gap: 16px; }
}
@media (max-width: 600px) {
  .pillar-hero { padding: 60px 0 48px; }
  .pillar-hero h1 { font-size: 1.7rem; }
  .pillar-hero .hero-desc { font-size: 1rem; }
  .section-header h2 { font-size: 1.7rem; }
  .who-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .step { flex-direction: column; gap: 12px; }
  .step-num { width: 46px; height: 46px; font-size: 1.1rem; }
  .modal-body { padding: 20px; }
  .modal-header { padding: 22px 20px 18px; }
  .faq-q { font-size: 0.92rem; padding: 15px 16px; }
}
