/* =======================
   Rheinangler Köln – Tech Futuristic CSS
   ======================= */
/* === CSS RESET & NORMALIZE === */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
ul, ol {
  list-style: none;
}
a {
  background: transparent;
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
  border: 0;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  margin: 0;
  outline: none;
}
body {
  min-height: 100vh;
  background: #192941;
  color: #F3F7FA;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* === BRAND COLORS & TYPOGRAPHY === */
:root {
  --primary: #1D3B5A;
  --secondary: #48A9A6;
  --accent: #F3F7FA;
  --neon-blue: #58c7ff;
  --neon-green: #43ffd1;
  --dark: #162337;
  --light: #F3F7FA;
  --shadow: rgba(36, 64, 91, 0.16);
}

body {
  background: linear-gradient(135deg, #162337 0%, #1D3B5A 100%);
  color: var(--accent);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.02em;
}
h1 {
  font-size: 2.6rem;
  margin-bottom: 16px;
  line-height: 1.17;
  text-shadow: 0 2px 24px var(--neon-blue);
}
h2 {
  font-size: 2rem;
  margin-bottom: 12px;
  color: var(--secondary);
  line-height: 1.23;
  text-shadow: 0 1px 8px var(--neon-green);
}
h3 {
  font-size: 1.3rem;
  color: var(--accent);
  line-height: 1.27;
  margin-bottom: 8px;
  text-shadow: 0 1px 6px var(--neon-blue);
}

p, li, blockquote, cite {
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--accent);
  font-size: 1rem;
}
.legal h1, .legal h2 {
  color: var(--neon-blue);
}
strong { font-weight: 700; color: var(--secondary); }

/* =============================
   GENERAL STRUCTURE & LAYOUT
   ============================= */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
main > section:first-child {
  margin-top: 24px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  position: relative;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

/* =============================
   HEADER & NAVIGATION
   ============================= */
header {
  background: rgba(25, 41, 65, 0.98);
  box-shadow: 0 2px 14px var(--shadow);
  position: sticky;
  top: 0;
  z-index: 99;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 12px;
  padding-bottom: 12px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo img {
  height: 42px;
  width: auto;
  filter: drop-shadow(0 2px 10px var(--neon-blue));
}
.main-nav {
  display: flex;
  gap: 20px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: var(--accent);
  padding: 8px 14px;
  border-radius: 24px;
  transition: background 0.22s, color 0.22s, box-shadow 0.2s;
  position: relative;
}
.main-nav a:hover,
.main-nav a:focus {
  background: var(--secondary);
  color: #1D3B5A;
  box-shadow: 0 0 12px 0 var(--neon-blue);
}

.cta-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.09rem;
  background: var(--secondary);
  color: var(--primary);
  border-radius: 32px;
  border: none;
  padding: 12px 26px;
  box-shadow: 0 0 16px 0 var(--neon-green), 0 2px 10px 0 var(--shadow);
  cursor: pointer;
  transition: background 0.22s, color 0.22s, box-shadow 0.2s, transform 0.15s;
  letter-spacing: 0.03em;
  outline: none;
  margin-left: 18px;
  text-align: center;
  position: relative;
  z-index: 2;
  text-shadow: none;
}
.cta-btn:hover,
.cta-btn:focus {
  background: var(--neon-blue);
  color: var(--primary);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 0 34px 0 var(--neon-blue), 0 2px 10px var(--shadow);
}

/* =============================
   MOBILE NAVIGATION
   ============================= */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 22px;
  right: 22px;
  z-index: 110;
  background: var(--secondary);
  color: var(--primary);
  font-size: 2.2rem;
  border: none;
  border-radius: 50%;
  width: 52px;
  height: 52px;
  box-shadow: 0 0 16px var(--neon-blue);
  cursor: pointer;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(22, 35, 55, 0.99);
  box-shadow: 0 8px 32px 0 var(--shadow);
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0;
  z-index: 120;
  transform: translateX(-100vw);
  transition: transform 0.3s cubic-bezier(.8,.5,.2,1.3) 0s;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0vw);
  pointer-events: all;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 24px 22px 0 0;
  background: var(--neon-blue);
  color: var(--primary);
  border: none;
  border-radius: 40px;
  font-size: 2.1rem;
  width: 48px;
  height: 48px;
  box-shadow: 0 0 20px var(--neon-blue);
  cursor: pointer;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  margin: 50px 0 0 38px;
  width: 70vw;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.34rem;
  font-weight: 600;
  color: var(--neon-blue);
  border-radius: 24px;
  padding: 13px 24px;
  background: transparent;
  transition: background .18s, color .18s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: var(--secondary);
  color: var(--primary);
  box-shadow: 0 0 8px var(--neon-green);
}

@media (max-width: 1100px) {
  .container {
    max-width: 92vw;
  }
  header .container {
    flex-wrap: wrap;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 12px;
  }
  .cta-btn {
    margin-left: 6px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 6px;
    font-size: .98rem;
  }
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.35rem; }
}

@media (max-width: 768px) {
  .main-nav, .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  header .container {
    justify-content: flex-start;
    gap: 6px;
    min-height: 64px;
  }
}

/* =============================
   HERO SECTIONS
   ============================= */
.hero {
  background: linear-gradient(135deg, rgba(22,35,55, 0.9), rgba(72,169,166, 0.12) 90%);
  border-radius: 24px;
  box-shadow: 0 8px 40px 0 var(--shadow);
  margin-top: 28px;
  margin-bottom: 36px;
}
.hero .container {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 0;
  padding: 0 8px;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 18px;
}
.hero h1 {
  color: var(--neon-blue);
  background: linear-gradient(90deg, var(--neon-blue) 27%, var(--accent) 65%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 24px var(--neon-blue), 0 1px 18px var(--primary);
}
.hero p {
  color: var(--accent);
  font-size: 1.23rem;
  max-width: 680px;
}

@media (max-width: 600px) {
  .hero {
    border-radius: 0;
    margin: 0 -20px 26px -20px;
    padding: 0;
  }
  .hero h1 {
    font-size: 1.42rem;
  }
}

/* =============================
   FLEX SPACING COMPONENTS
   ============================= */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: 16px;
  box-shadow: 0 2px 14px var(--shadow);
  background: var(--primary);
}
.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;
}

/* ==== FEATURES & SERVICE GRIDS ==== */
.features .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.features .feature-grid > div {
  background: rgba(34,56,99, 0.74);
  border-radius: 18px;
  box-shadow: 0 2px 20px 0 var(--shadow);
  padding: 28px 24px 22px 24px;
  min-width: 220px;
  flex: 1 1 266px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  border: 1.8px solid var(--secondary);
  transition: box-shadow .21s, border-color .18s, transform .18s;
}
.features .feature-grid > div:hover {
  border-color: var(--neon-blue);
  box-shadow: 0 6px 32px 0 var(--neon-blue), 0 2px 18px var(--shadow);
  transform: translateY(-5px) scale(1.04);
}
.features .feature-grid img {
  filter: drop-shadow(0 1px 7px var(--neon-blue)) hue-rotate(27deg);
  width: 52px;
  height: auto;
  margin-bottom: 4px;
}
.features ul, .features ol {
  margin: 0 0 0 10px;
  padding: 0 0 0 14px;
  list-style: disc inside;
  color: var(--accent);
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
  justify-content: flex-start;
}
.service-cards > div {
  flex: 1 1 260px;
  min-width: 232px;
  background: linear-gradient(120deg, rgba(72,169,166,.17) 0%,rgba(25,41,65,1) 100%);
  border: 1.5px solid var(--secondary);
  border-radius: 18px;
  padding: 28px 20px 18px 20px;
  box-shadow: 0 2px 16px var(--shadow);
  transition: box-shadow .22s, border-color .16s, transform .18s;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}
.service-cards > div:hover {
  border-color: var(--neon-blue);
  box-shadow: 0 1px 20px var(--neon-blue), 0 2px 26px var(--shadow);
  transform: translateY(-4px) scale(1.03);
}
.service-cards strong { font-size: 1.02rem; font-weight: bold; color: var(--neon-blue); }

@media (max-width: 900px) {
  .features .feature-grid,
  .service-cards {
    gap: 14px;
  }
}
@media (max-width: 700px){
  .features .feature-grid > div, .service-cards > div {
    min-width: 95vw;
    flex-basis: 98vw;
  }
}

/* ===============================
   TESTIMONIALS & CARDS
   =============================== */
.testimonials .testimonial-card {
  background: #F3F7FA;
  color: #223959;
  border-radius: 16px;
  box-shadow: 0 2px 16px 0 var(--shadow);
  margin-bottom: 26px;
  flex-direction: row;
  align-items: flex-start;
  gap: 20px;
  border-left: 8px solid var(--neon-blue);
  transition: box-shadow .15s, border-color .17s;
}
.testimonial-card blockquote {
  font-size: 1.14rem;
  font-style: italic;
  color: #223959;
  margin-bottom: 8px;
  line-height: 1.52;
}
.testimonial-card cite {
  color: #58c7ff;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
}
.rating-summary {
  background: linear-gradient(90deg, rgba(72,169,166,0.29), rgba(243,247,250,.5));
  color: #19315b;
  padding: 14px 24px;
  border-radius: 12px;
  margin-top: 14px;
  font-size: 1.12rem;
  font-weight: 500;
  box-shadow: 0 1px 8px rgba(21,66,95,0.16);
}

/* ===============================
   FOOTER
   =============================== */
footer {
  margin-top: 44px;
  background: linear-gradient(135deg, rgba(22,35,55,0.98) 60%, rgba(72,169,166,0.06));
  box-shadow: 0 -2px 22px var(--shadow);
  padding: 40px 0 10px 0;
  border-top: 2px solid var(--secondary);
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
}
footer .footer-contact {
  color: var(--accent);
  font-size: 0.97rem;
  letter-spacing: 0.01em;
}
footer nav.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 0 0 10px 0;
}
footer nav.footer-nav a {
  color: var(--neon-blue);
  font-weight: 600;
  font-size: 1.04rem;
  border-radius: 22px;
  padding: 6px 16px;
  background: transparent;
  transition: background .18s, color .17s;
}
footer nav.footer-nav a:hover{
  background: var(--secondary);
  color: var(--primary);
}
footer .logo img {
  height: 40px;
}
@media (max-width: 700px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

/* ===============================
   ABOUT / LEGAL STYLES
   =============================== */
.legal {
  background: linear-gradient(120deg, #1d3b5a 77%, rgba(72,169,166,0.11) 100%);
  border-radius: 18px;
  box-shadow: 0 8px 44px 0 var(--shadow);
}
.legal h1, .legal h2 {
  color: var(--neon-blue);
}
.legal ul {
  margin: 14px 0 14px 14px;
  list-style: disc inside;
}
.legal p, .legal li {
  color: var(--accent);
  margin-bottom: 8px;
}

/* ===============================
   CONTACT PAGE
   =============================== */
.contact .content-wrapper,
.section.contact .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
}
.contact ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.contact li {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1.08rem;
  color: var(--accent);
  margin-bottom: 7px;
}
.contact li img {
  width: 20px;
  height: 20px;
  filter: drop-shadow(0 1px 3px var(--neon-blue));
  opacity: 0.75;
}
.text-section a {
  color: var(--neon-blue);
  border-bottom: 1px solid var(--neon-blue);
  transition: color .15s, border-color .15s;
}
.text-section a:hover { color: var(--secondary); border-color: var(--secondary); }

/* =============================
   CONFIRMATION (THANK-YOU PAGE)
   ============================= */
.confirmation {
  background: linear-gradient(120deg, var(--secondary) 4%, rgba(29,59,90,1) 97%);
  color: var(--primary);
  padding: 36px 16px;
  border-radius: 20px;
  box-shadow: 0 3px 34px var(--shadow);
}
.confirmation h1 {
  color: var(--primary);
  font-size: 2.2rem;
  text-shadow: 0 2px 24px #58c7ff33;
}
.confirmation .cta-btn {
  margin-top: 22px;
}

/* =============================
   LISTS
   ============================= */
ul, ol {
  color: var(--light);
  margin-bottom: 8px;
  line-height: 1.7;
}
ul {
  list-style-type: disc;
  list-style-position: inside;
}
ol {
  list-style-type: decimal;
  list-style-position: inside;
}
li {
  margin-bottom: 6px;
}

/* =============================
   BUTTONS, LINKS
   ============================= */
button, .cta-btn, .main-nav a, .mobile-nav a {
  outline: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.16s;
}
button:focus-visible, .cta-btn:focus-visible, a:focus-visible {
  box-shadow: 0 0 0 3px var(--neon-blue);
}
a {
  cursor: pointer;
}

/* =============================
   COOKIE CONSENT BANNER + MODAL
   ============================= */
.cookie-banner {
  position: fixed;
  z-index: 1999;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%) translateY(100%);
  min-width: 320px;
  max-width: 480px;
  width: 92vw;
  background: linear-gradient(90deg, var(--primary), var(--secondary) 70%);
  box-shadow: 0 -4px 34px var(--shadow), 0 2px 13px #00000022;
  color: #fff;
  padding: 26px 22px 22px;
  border-radius: 16px 16px 0 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  opacity: 0;
  pointer-events: none;
  font-size: 1.1rem;
  letter-spacing: 0.011em;
  transition: transform .34s cubic-bezier(.8,.5,.2,1.4), opacity .28s;
}
.cookie-banner.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.cookie-banner strong {
  color: var(--neon-blue);
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 16px;
  margin: 18px 0 0 0;
  flex-wrap: wrap;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border: none;
  border-radius: 22px;
  padding: 9px 22px;
  font-size: 1rem;
  margin-top: 0;
  margin-bottom: 0;
  cursor: pointer;
  transition: background .19s, color .17s, box-shadow .19s;
}
.cookie-banner .accept {
  background: var(--neon-green);
  color: #093440;
  box-shadow: 0 0 10px var(--neon-green);
}
.cookie-banner .accept:hover {
  background: var(--secondary);
  color: var(--primary);
}
.cookie-banner .reject {
  background: transparent;
  color: var(--accent);
  border: 1.4px solid var(--accent);
  box-shadow: none;
}
.cookie-banner .reject:hover {
  border-color: var(--neon-blue);
  color: var(--neon-blue);
}
.cookie-banner .settings {
  background: var(--neon-blue);
  color: #122436;
}
.cookie-banner .settings:hover {
  background: var(--secondary);
  color: var(--primary);
}

/* Cookie modal overlay */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 1999;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(22,35,55,.85);
  pointer-events: none;
  opacity: 0;
  transition: opacity .22s;
}
.cookie-modal-overlay.open {
  display: flex;
  opacity: 1;
  pointer-events: auto;
  align-items: center;
  justify-content: center;
}

.cookie-modal {
  background: #1d3b5a;
  border: 2px solid var(--secondary);
  border-radius: 18px;
  box-shadow: 0 8px 54px var(--shadow);
  min-width: 314px;
  max-width: 98vw;
  color: #fff;
  padding: 32px 28px 24px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  animation: modalShow .26s cubic-bezier(.8,.5,.2,1.4);
}
@keyframes modalShow {
  0% { transform: scale(0.92) translateY(60px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h2 {
  color: var(--neon-blue);
  font-size: 1.32rem;
  margin-bottom: 18px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
  font-size: 1.06rem;
}
.cookie-modal .cookie-category input[type=checkbox] {
  width: 22px;
  height: 22px;
  accent-color: var(--neon-green);
}
.cookie-modal .cookie-actions {
  display: flex;
  gap: 14px;
  margin-top: 15px;
}
.cookie-modal button {
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 21px;
  padding: 9px 22px;
  border: none;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: none;
  margin-top: 0;
  margin-bottom: 0;
}
.cookie-modal .accept {
  background: var(--neon-green);
  color: #223959;
  box-shadow: 0 0 10px var(--neon-green);
}
.cookie-modal .accept:hover {
  background: var(--secondary);
}
.cookie-modal .reject {
  background: transparent;
  color: var(--neon-blue);
  border: 1.4px solid var(--neon-blue);
}
.cookie-modal .reject:hover {
  background: var(--neon-blue);
  color: #19315b;
}
.cookie-modal .close {
  background: transparent;
  color: #ffffff;
}
.cookie-modal .close:hover {
  color: var(--secondary);
}

/* =============================
   RESPONSIVE RULES
   ============================= */
@media (max-width: 900px) {
  .content-wrapper, .text-section, .features .feature-grid, .service-cards {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
}
@media (max-width: 768px) {
  .content-wrapper, .text-section {
    flex-direction: column;
    gap: 14px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
}
@media (max-width: 550px) {
  .section, section {
    padding: 26px 2vw;
    margin-bottom: 35px;
  }
  .hero {
    margin-bottom: 18px;
  }
  h1 { font-size: 1.13rem; }
}

/* =============================
   SCROLLBAR FUTURISTIC
   ============================= */
::-webkit-scrollbar {
  width: 10px;
  background: var(--primary);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--secondary) 10%, var(--neon-blue) 90%);
  border-radius: 16px;
}
.scrollbar-style {
  scrollbar-width: thin;
  scrollbar-color: var(--neon-blue) var(--primary);
}

/* =============================
   MICRO-INTERACTIONS & EFFECTS
   ============================= */
.card, .service-cards > div, .features .feature-grid > div, .testimonial-card, .hero, .confirmation {
  transition: box-shadow .21s, border-color .13s, transform .16s;
}
.card:hover, .service-cards > div:hover, .features .feature-grid > div:hover {
  box-shadow: 0 4px 32px 0 var(--neon-blue), 0 2px 8px var(--shadow);
  z-index: 3;
  transform: translateY(-2px) scale(1.01);
}

/* === Accessibility: Focus visible === */
:focus-visible {
  outline: 2px solid var(--neon-blue);
  outline-offset: 1.5px;
  z-index: 10;
}

/* =============================
   SPACING CONSISTENCY
   ============================= */
.card, .service-cards > div, .features .feature-grid > div, .testimonial-card {
  margin-bottom: 20px;
}
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container, .content-grid, .features .feature-grid, .service-cards {
  gap: 20px;
}

/* =============================
   ADDITIONAL HELPERS
   ============================= */
.mt-32 { margin-top: 32px; }
.mb-24 { margin-bottom: 24px; }
.mt-60 { margin-top: 60px; }
.hide { display: none!important; }

/* ==== End of CSS ==== */
