/* --- CSS RESET & BASE --------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background: #181d35;
  color: #F5F7FA;
  min-height: 100vh;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: #FFB300; text-decoration: none; transition: color 0.2s; }
a:hover, a:focus { color: #FFD54F; }
ul, ol { margin-left: 20px; }
strong { font-weight: 700; }
hr { border: none; border-top: 1px solid #384378; margin: 32px 0; }

/* --- BRAND COLORS --------------------------------------------------------- */
:root {
  --primary: #283593;
  --primary-dark: #181d35;
  --secondary: #FFB300;
  --secondary-dark: #FFD54F;
  --accent: #F5F7FA;
  --neon1: #2e6cff;
  --neon2: #39ffe6;
  --surface: #22284d;
  --surface-light: #303871;
  --shadow: rgba(40,53,147,0.27);
  --radius: 18px;
}

/* --- TYPOGRAPHY ----------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Arial Black', Arial, sans-serif;
  color: #fff;
  letter-spacing: 0.01em;
  font-weight: 800;
}
h1 { font-size: 2.5rem; margin-bottom: 18px; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.35rem; margin-bottom: 8px; }
h4 { font-size: 1.12rem; }
p, li { font-size: 1rem; color: #e3e7f7; }
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.12rem; }
}

/* --- LAYOUT CONTAINER ----------------------------------------------------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (max-width: 768px) {
  .content-wrapper { gap: 24px; }
}

/* --- SECTIONS ------------------------------------------------------------- */
.section, section {
  margin-bottom: 60px;
  padding: 40px 0;
  position: relative;
  width: 100%;
}
.section:last-child, section:last-child { margin-bottom: 0; }

/* --- HERO SECTION --------------------------------------------------------- */
.hero {
  background: linear-gradient(150deg, #22284d 0%, #283593 70%, #1A223F 100%);
  padding: 56px 0 48px 0;
  position: relative;
  overflow: hidden;
}
.hero .cta-primary { margin-top: 18px; }
.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -120px;
  width: 340px; height: 340px;
  background: radial-gradient(circle, var(--neon1) 0%, transparent 80%);
  filter: blur(36px);
  z-index: 0;
  opacity: 0.3;
}
.hero .container, .hero .content-wrapper {
  position: relative;
  z-index: 1;
}

/* --- MAIN NAVIGATION (DESKTOP) -------------------------------------------- */
header {
  background: #181d35;
  border-bottom: 1px solid #2e3872;
  position: sticky;
  top: 0;
  z-index: 1001;
  width: 100%;
}
header .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 20px;
}
.main-nav {
  display: flex;
  gap: 26px;
  align-items: center;
  flex-wrap: wrap;
}
.main-nav a {
  font-family: 'Montserrat', sans-serif;
  color: #e3e7f7;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 7px;
  transition: color 0.2s, background 0.22s, box-shadow 0.22s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  color: #FFB300;
  background: #23295A;
  box-shadow: 0 0 12px 0 var(--neon2, #39ffe6);
}
.main-nav .cta-primary {
  background: var(--secondary, #FFB300);
  color: #22284d !important;
  box-shadow: 0 0 0 2px var(--secondary, #FFB300), 0 4px 16px 0 var(--shadow);
  margin-left: 10px;
  font-weight: 700;
  border: none;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
}
.main-nav .cta-primary:hover, .main-nav .cta-primary:focus {
  background: #FFD54F;
  color: #22284d;
  box-shadow: 0 0 0 3px #FFF6D1, 0 8px 24px 0 var(--shadow);
}

/* --- MOBILE MENU ---------------------------------------------------------- */
.mobile-menu-toggle {
  background: none;
  border: none;
  font-size: 2rem;
  color: #FFB300;
  cursor: pointer;
  display: none;
  padding: 6px 10px;
  line-height: 1;
  z-index: 1002;
}
@media (max-width: 991px) {
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; }
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(100deg, #181d35 60%, #283593 100%);
  z-index: 2000;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.72,.15,.36,.98);
  display: flex;
  flex-direction: column;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  right: 20px; top: 20px;
  background: none;
  border: none;
  color: #FFB300;
  font-size: 2.1rem;
  cursor: pointer;
  z-index: 2100;
  padding: 6px 12px;
}
.mobile-nav {
  margin: 68px 0 0 0;
  padding: 0 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.mobile-nav a {
  color: #F5F7FA;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  padding: 12px 0;
  border-bottom: 1px solid #303871;
  transition: color 0.2s;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #39ffe6;
}
@media (min-width: 992px) {
  .mobile-menu { display: none !important; }
}

/* --- CTA BUTTONS ---------------------------------------------------------- */
.cta-primary, .cta-primary:visited {
  display: inline-block;
  background: linear-gradient(90deg, #FFB300 0%, #FFD54F 100%);
  color: #181d35;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  padding: 13px 34px;
  border-radius: var(--radius, 18px);
  border: none;
  cursor: pointer;
  box-shadow: 0 3px 14px 0 var(--shadow);
  letter-spacing: 0.02em;
  transition: background 0.18s, box-shadow 0.2s, color 0.2s, border 0.18s, transform 0.19s;
  outline: none;
}
.cta-primary:hover, .cta-primary:focus {
  background: #FFF7E1;
  color: #22284d;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 7px 26px 0 var(--shadow), 0 0 0 2px #FFB300;
}

/* --- FLEXBOX LAYOUT PATTERNS ---------------------------------------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--surface-light, #303871);
  border-radius: var(--radius, 18px);
  box-shadow: 0 2px 8px var(--shadow);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.18s, transform 0.19s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 7px 24px 0 #2e6cff33, 0 0 0 2px #39ffe6;
  transform: translateY(-3px) scale(1.02);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  color: #202940;
  border-radius: var(--radius, 18px);
  margin-bottom: 20px;
  box-shadow: 0 2px 10px 0 #10131f2c;
  flex-direction: column;
}
.testimonial-card p {
  color: #212542;
  font-size: 1.08rem;
  margin-bottom: 4px;
  font-style: italic;
}
.testimonial-meta {
  color: #283593;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.99rem;
  font-weight: 600;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
@media (max-width: 900px) {
  .card-container, .content-grid, .feature-grid, .inspiration-grid, .service-list {
    flex-direction: column;
    gap: 20px;
  }
  .testimonial-card { flex-direction: column; align-items: flex-start; }
  .text-image-section { flex-direction: column; align-items: flex-start; gap: 20px; }
}

/* --- FEATURE GRIDS & SERVICE LISTS ---------------------------------------- */
.feature-grid, .inspiration-grid, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin: 32px 0 0 0;
  justify-content: flex-start;
}
.feature-grid > div, .service-list > div, .inspiration-grid > div {
  background: linear-gradient(120deg, #23295A 80%, #2e6cff10 100%);
  border-radius: var(--radius, 18px);
  padding: 24px 24px 18px 24px;
  min-width: 260px;
  flex: 1 1 260px;
  box-shadow: 0 3px 20px 0 #22284d25;
  transition: box-shadow 0.18s, transform 0.16s;
  border: 1px solid #23295A;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.feature-grid > div:hover, .service-list > div:hover, .inspiration-grid > div:hover {
  border-color: #39ffe6;
  box-shadow: 0 7px 32px 0 #39ffe615, 0 0 0 2px #39ffe6;
  transform: scale(1.02) translateY(-3px);
}
.feature-grid img, .service-list img, .inspiration-grid img {
  margin-bottom: 8px;
  height: 48px; width: 48px;
}
.service-price {
  display: inline-block;
  margin-top: 10px;
  background: #11143A;
  color: #FFB300;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 11px;
  font-size: 1.05rem;
}

@media (max-width: 768px) {
  .feature-grid > div, .service-list > div, .inspiration-grid > div {
    min-width: unset;
    width: 100%;
    max-width: 100%;
    padding: 20px 14px 15px 14px;
  }
}

/* --- DATA TABLES ---------------------------------------------------------- */
table {
  width: 100%;
  border-collapse: collapse;
  background: linear-gradient(100deg, #20284A 75%, #2e6cff13 100%);
  border-radius: var(--radius, 18px);
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px #383c7b22;
}
thead tr {
  background-color: #293280;
  color: #fff;
}
thead th, tbody td {
  padding: 14px 10px;
  text-align: left;
}
thead th {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  border-bottom: 2px solid #283593;
}
tbody tr {
  border-top: 1px solid #27306a66;
  transition: background 0.15s;
}
tbody tr:hover {
  background: #2e387619;
}
tbody td {
  font-size: 0.98rem;
  color: #e3e7f7;
}
tfoot td {
  font-weight: 700;
}
@media (max-width: 768px) {
  table, thead, tbody, tr, th, td { display: block; width: 100%; }
  thead { display: none; }
  tr { margin-bottom: 24px; }
  td { padding: 11px 7px; }
}

/* --- MINI FACTS, QUICK TIPS & GUIDES -------------------------------------- */
.mini-facts ul, .quick-tips ul, .guides-list ul {
  margin: 0;
  padding: 0 0 0 20px;
  list-style: disc inside;
}
.mini-facts ul li, .quick-tips ul li, .guides-list ul li {
  margin-bottom: 8px;
  font-size: 1rem;
  color: #b6c1e2;
}
.guides-list h3 {
  margin-bottom: 10px;
}

/* --- FAQ ACCORDION -------------------------------------------------------- */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.faq-accordion h3 {
  color: #FFB300;
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.faq-accordion p {
  font-size: 1rem;
  color: #e3e7f7;
}

/* --- CTA SECTION ---------------------------------------------------------- */
.cta {
  background: linear-gradient(100deg, #23295A 60%, #2e6cff10 100%);
  border-radius: var(--radius, 18px);
  margin: 48px 0 0 0;
  box-shadow: 0 2px 18px #28359321;
  padding: 44px 0;
  position: relative;
  overflow: hidden;
}
.cta::after {
  content: '';
  position: absolute;
  left: -100px; bottom: -120px;
  width: 290px; height: 290px;
  background: radial-gradient(circle, #39ffe6cc 0%, transparent 80%);
  filter: blur(44px);
  z-index: 0;
  opacity: 0.2;
}
.cta .container, .cta .content-wrapper { z-index: 1; position: relative; }

/* --- FOOTER --------------------------------------------------------------- */
footer {
  background: #191e36;
  color: #bfc8ec;
  margin-top: 64px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 0.98rem;
  border-top: 2px solid #25306D;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  padding: 40px 0 22px 0;
}
.footer-top img {
  height: 54px;
  margin-right: 28px;
}
.footer-nav, .footer-legal {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a, .footer-legal a {
  color: #bfc8ec;
  font-family: 'Montserrat', sans-serif;
  text-decoration: none;
  padding: 3px 0;
  transition: color 0.18s;
}
.footer-nav a:hover, .footer-legal a:hover {
  color: #39ffe6;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
  margin: 20px 0 10px 0;
}
.footer-contact img {
  height: 19px; width: 19px; vertical-align: middle; margin-right: 6px;
}
.footer-bottom {
  text-align: center;
  padding: 16px 0 8px 0;
  border-top: 1px solid #23295A;
  color: #8490b6;
}
@media (max-width: 900px) {
  .footer-top { flex-direction: column; align-items: flex-start; gap: 24px; }
  .footer-nav, .footer-legal { flex-direction: row; flex-wrap: wrap; gap: 12px 18px; }
  .footer-contact { display: block; }
  .footer-contact span { display: block; margin-bottom: 7px; }
}

/* --- CONTACT SECTION ------------------------------------------------------ */
.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
}
.contact-details .text-section, .contact-details .map {
  flex: 1 1 300px;
}
.contact-details ul {
  list-style: none;
  margin: 0; padding: 0;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.contact-details img { height: 23px; width: 23px; }
.map img { margin-bottom: 12px; height: 54px; }
@media (max-width: 768px) {
  .contact-details { flex-direction: column; gap: 24px; }
}

/* --- SUCCESS PAGE --------------------------------------------------------- */
.success-message {
  font-size: 1.18rem;
  color: #FFB300;
  font-weight: 600;
}
.success .cta-primary { margin-top: 30px; }

/* --- LEGAL PAGES ---------------------------------------------------------- */
.legal .text-section ul {
  margin: 18px 0 18px 20px;
}
.legal .text-section li { color: #e3e7f7; margin-bottom: 6px; font-size: 1rem; }
.legal a {
  color: #39ffe6;
  text-decoration: underline;
  font-weight: 500;
}
.legal a:hover { color: #FFB300; }

/* --- QUICK LINKS ---------------------------------------------------------- */
.quick-links {
  margin: 26px 0 0 0;
  color: #bfc8ec;
  font-size: 0.98rem;
}
.quick-links h4 { color: #FFB300; margin-bottom: 8px; }
.quick-links a { color: #39ffe6; text-decoration: underline; margin: 0 6px; }

/* --- MISC STYLES ---------------------------------------------------------- */
.subheadline {
  font-size: 1.23rem;
  margin-bottom: 16px;
  color: #A1ADE4;
  font-family: 'Roboto', Arial, sans-serif;
}
.price-highlights {
  background: #142559;
  color: #FFB300;
  font-weight: 700;
  padding: 11px 22px;
  border-radius: 11px;
  margin-top: 14px;
  font-size: 1.08rem;
}
.plan-comparison {
  margin: 32px 0 0 0;
}
.plan-comparison li { margin-bottom: 7px; }

/* --- COOKIE CONSENT BANNER ------------------------------------------------ */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 3000;
  background: linear-gradient(90deg, #181d35 85%, #283593 100%);
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 23px 15px 23px 15px;
  box-shadow: 0 -3px 16px #10131f38;
  gap: 24px;
  font-size: 1rem;
  transition: transform 0.5s cubic-bezier(.73,.41,.28,.99), opacity 0.2s;
}
.cookie-consent-banner.hide {
  opacity: 0;
  transform: translateY(100%);
  pointer-events: none;
}
.cookie-consent-banner .cookie-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}
.cookie-consent-banner button {
  appearance: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 9px 23px;
  margin: 0 2px;
  border: none;
  border-radius: 11px;
  cursor: pointer;
  transition: background 0.19s, color 0.19s;
  outline: none;
  box-shadow: 0 1px 6px #10131f11;
}
.cookie-consent-banner .cookie-accept {
  background: var(--secondary);
  color: #181d35;
}
.cookie-consent-banner .cookie-accept:hover { background: #FFD54F; }
.cookie-consent-banner .cookie-reject {
  background: #303871;
  color: #fff;
}
.cookie-consent-banner .cookie-reject:hover {
  background: #364299;
  color: #FFB300;
}
.cookie-consent-banner .cookie-settings {
  background: transparent;
  color: #39ffe6;
  text-decoration: underline;
  padding: 9px 12px;
  box-shadow: none;
}
.cookie-consent-banner .cookie-settings:hover { color: #FFB300; }
@media (max-width: 768px) {
  .cookie-consent-banner { flex-direction: column; gap: 16px; text-align: center; }
  .cookie-consent-banner .cookie-actions { gap: 10px; }
}

/* --- COOKIE MODAL --------------------------------------------------------- */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4000;
  background: rgba(22,25,45,0.85);
  opacity: 1;
  visibility: visible;
  transition: opacity 0.33s, visibility 0.33s;
}
.cookie-modal.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.cookie-modal .cookie-modal-content {
  background: linear-gradient(100deg, #23295A 80%, #2e6cff19 100%);
  border-radius: 22px;
  padding: 38px 30px 30px 30px;
  max-width: 420px;
  width: 90vw;
  color: #fff;
  box-shadow: 0 7px 36px #1c225b62, 0 0 0 2px #39ffe6;
  display: flex;
  flex-direction: column;
  gap: 25px;
  position: relative;
}
.cookie-modal .close-modal-btn {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 2rem;
  color: #FFB300;
  background: none; border: none;
  cursor: pointer;
  padding: 2px 8px;
  line-height: 1;
}
.cookie-modal h2 { color: #FFB300; font-size: 1.2rem; margin-bottom: 9px; }
.cookie-modal ul {
  margin: 0; padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-modal li {
  display: flex; align-items: center; gap: 12px;
  font-size: 1rem;
}
.toggle-switch {
  position: relative;
  width: 40px;
  height: 22px;
  display: inline-block;
}
.toggle-switch input[type="checkbox"] {
  opacity: 0;
  width: 0; height: 0;
}
.toggle-slider {
  position: absolute; cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #22284d;
  border-radius: 22px;
  transition: background 0.18s;
  box-shadow: 0 1px 5px #10131f13;
}
.toggle-switch input:checked + .toggle-slider { background: #FFB300; }
.toggle-slider:before {
  content: '';
  position: absolute;
  left: 3px; top: 3px;
  height: 16px; width: 16px;
  border-radius: 50%; background: #fff;
  transition: transform 0.18s;
}
.toggle-switch input:checked + .toggle-slider:before { transform: translateX(18px); }
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.cookie-modal .cookie-modal-actions button{
  padding: 10px 22px;
  background: #FFB300;
  color: #181d35;
  border-radius: 12px;
  border: none;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  box-shadow: 0 2px 8px #202a6b21;
  transition: background 0.17s;
}
.cookie-modal .cookie-modal-actions button:hover{ background: #FFD54F; }
@media (max-width: 700px) {
  .cookie-modal .cookie-modal-content { padding: 24px 8px 18px 12px; }
}

/* --- ANIMATIONS & MICRO-INTERACTIONS -------------------------------------- */
.card, .feature-grid > div, .service-list > div, .inspiration-grid > div {
  transition: box-shadow 0.16s, transform 0.13s, border-color 0.19s;
}
.cta-primary, .cookie-consent-banner button, .cookie-modal button {
  transition: background 0.17s, color 0.17s, box-shadow 0.16s, transform 0.14s;
}
@media (hover: hover) {
  .feature-grid > div:hover, .service-list > div:hover, .inspiration-grid > div:hover {
    box-shadow: 0 5px 26px #3cf0eb41, 0 0 0 2px #2e6cff80;
    border-color: #2e6cff;
  }
  .cta-primary:hover, .cta-primary:focus {
    background: #ffaa00;
    color: #181d35;
  }
}

/* --- ACCESSIBILITY & FOCUS ------------------------------------------------ */
a:focus, .cta-primary:focus, button:focus {
  outline: 3px solid #2e6cff;
  outline-offset: 1px;
}

/* --- SCROLLBAR ------------------------------------------------------------ */
::-webkit-scrollbar { width: 9px; background: #23295A; }
::-webkit-scrollbar-thumb { background: #283593; border-radius: 5px; }

/* --- RESPONSIVE UTILITIES ------------------------------------------------- */
@media (max-width: 550px) {
  body { font-size: 15px; }
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.14rem; }
  h3 { font-size: 1rem; }
  .toast, .cta-primary, button { font-size: 0.98rem; }
  .cookie-modal .cookie-modal-content { max-width: 99vw; }
}

/* --- SPACING & GAPS ------------------------------------------------------- */
.section, section { margin-bottom: 60px; padding: 40px 20px; }
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; }
.content-grid { display: flex; flex-wrap: wrap; gap: 20px; justify-content: space-between; }
.text-image-section { display: flex; align-items: center; gap: 30px; flex-wrap: wrap; }
.testimonial-card { display: flex; align-items: center; gap: 20px; padding: 20px; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* --- NO GRID! ONLY FLEX LAYOUTS ------------------------------------------- */
/* (Enforced everywhere above) */
