/* RESET & BASE STYLES */
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-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  scroll-behavior: smooth;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #F8FAFC;
  color: #19223C;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #61D4F5;
}

section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #19223C;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.15;
  text-transform: uppercase;
}
h2 {
  font-size: 2rem;
  line-height: 1.2;
  text-transform: uppercase;
}
h3 {
  font-size: 1.4rem;
  line-height: 1.2;
}
h4 {
  font-size: 1rem;
  line-height: 1.2;
}
h5 {
  font-size: 0.95rem;
  line-height: 1.2;
}

p, li, table, th, td {
  font-size: 1rem;
  color: #313959;
}
strong {
  font-weight: 700;
  color: #19223C;
}
em {
  font-style: italic;
}

/* HEADER & NAVIGATION */
header {
  background: #fff;
  border-bottom: 3px solid #19223C;
  box-shadow: 0 2px 8px 0 rgba(25,34,60,0.08);
  position: sticky;
  top: 0;
  z-index: 40;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  min-height: 78px;
  gap: 0;
}
header nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 8px 10px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}
header nav a:hover,
header nav a:focus {
  background: #F3F6F9;
  color: #61D4F5;
}
header nav .cta-btn {
  background: #61D4F5;
  color: #19223C;
  font-weight: bold;
  letter-spacing: 0.01em;
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 18px;
  padding: 10px 28px;
  box-shadow: 0 2px 8px 0 rgba(97, 212, 245, 0.18);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  border: none;
  text-transform: uppercase;
}
header nav .cta-btn:hover,
header nav .cta-btn:focus {
  background: #19223C;
  color: #fff;
  box-shadow: 0 4px 16px 0 rgba(25,34,60,0.19);
}
.mobile-menu-toggle {
  background: none;
  border: 2px solid #61D4F5;
  color: #19223C;
  font-size: 2rem;
  padding: 8px 16px;
  border-radius: 12px;
  margin-left: 24px;
  display: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #61D4F5;
  color: #fff;
  border-color: #19223C;
}

/* MOBILE MENU STYLES */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #19223C;
  color: #fff;
  z-index: 100;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(.42,0,.58,1);
  display: flex;
  flex-direction: column;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  padding: 18px 28px 10px 0;
  margin: 0;
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #61D4F5;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 36px;
  align-items: flex-start;
  padding: 0 40px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 10px 0;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
  min-width: 200px;
  display: block;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #222d4d;
  color: #61D4F5;
}

/* HERO SECTION */
.hero {
  background: #19223C;
  color: #fff;
  border-radius: 0 0 48px 48px;
  box-shadow: 0 5px 36px 0 rgba(25,34,60,0.15);
  display: flex;
  align-items: center;
  min-height: 290px;
}
.hero .container {
  justify-content: center;
  align-items: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 24px;
}
.hero h1 {
  color: #fff;
  font-size: 2.5rem;
  letter-spacing: 0.04em;
  text-shadow: 0 5px 24px rgba(25,34,60,0.16);
  text-transform: uppercase;
}
.hero p {
  color: #F8FAFC;
  font-size: 1.25rem;
  max-width: 540px;
}
.hero .cta-btn {
  margin-top: 20px;
}

/* BUTTONS */
.cta-btn {
  display: inline-block;
  background: #61D4F5;
  color: #19223C;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  padding: 13px 34px;
  border-radius: 20px;
  letter-spacing: 0.08em;
  box-shadow: 0 3px 10px 0 rgba(97, 212, 245, 0.18);
  margin-top: 12px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.18s;
  text-transform: uppercase;
}
.cta-btn:hover, .cta-btn:focus {
  background: #19223C;
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 24px 0 rgba(25,34,60,0.19);
}

/* FLEX LAYOUTS & SPACING */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border: 2px solid #E4E9F1;
  border-radius: 20px;
  box-shadow: 0 2px 12px 0 rgba(25,34,60,0.06);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px 24px;
  min-width: 260px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 26px 28px;
  background: #f4f8fb;
  border: 2px solid #E4E9F1;
  border-radius: 20px;
  margin-bottom: 20px;
  box-shadow: 0 4px 18px 0 rgba(25,34,60,0.07);
  transition: box-shadow .2s, border-color .2s;
  min-width: 250px;
  max-width: 540px;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px 0 rgba(25,34,60,0.14);
  border-color: #61D4F5;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: #fff;
  border-radius: 13px;
  border: 2px solid #E4E9F1;
  box-shadow: 0 1px 7px 0 rgba(25,34,60,0.06);
  min-width: 200px;
}
.features ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding-top: 18px;
}
.features li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1.09rem;
  background: #fff;
  border-radius: 12px;
  border: 2px solid #E4E9F1;
  padding: 18px 18px;
  box-shadow: 0 2px 10px 0 rgba(97, 212, 245, 0.05);
  margin-bottom: 0;
}
.services-overview ul,
.services-details ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.services-overview ul li, .services-details ul li {
  background: #fff;
  border: 2px solid #E4E9F1;
  border-radius: 12px;
  padding: 18px 18px;
  margin-bottom: 0;
  font-size: 1.03rem;
  box-shadow: 0 1px 5px 0 rgba(97, 212, 245, 0.045);
}
.services-details ul li h3 {
  margin-bottom: 7px;
  font-size: 1.14rem;
  color: #19223C;
}
.services-details ul li h3 span {
  color: #61D4F5;
  font-size: 0.98rem;
  font-weight: 500;
}
.process ol {
  display: flex;
  flex-direction: column;
  gap: 20px;
  counter-reset: step;
  margin-left: 0;
}
.process ol li {
  background: #fff;
  border-radius: 11px;
  border: 2px solid #E4E9F1;
  padding: 18px 18px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1.05rem;
  position: relative;
  margin-bottom: 0;
}

.pricing table {
  margin: 0 0 28px 0;
  border-spacing: 0;
  border-collapse: collapse;
  width: 100%;
}
.pricing th,
.pricing td {
  border: 2px solid #E4E9F1;
  text-align: left;
  padding: 14px 12px;
  font-size: 1rem;
}
.pricing thead th {
  background: #61D4F5;
  color: #19223C;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}
.pricing tbody tr:nth-child(even) {
  background: #f7fafc;
}

/* BLOG */
.blog-list .blog-categories {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.blog-list .blog-categories a {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #F8FAFC;
  color: #19223C;
  padding: 6px 20px;
  border-radius: 8px;
  border: 2px solid #E4E9F1;
  font-size: 1rem;
  font-weight: 500;
  transition: background 0.19s, color 0.19s;
}
.blog-list .blog-categories a:hover,
.blog-list .blog-categories a:focus {
  background: #61D4F5;
  color: #fff;
  border-color: #61D4F5;
}
.blog-preview-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
}
.blog-preview {
  flex: 1 1 300px;
  min-width: 250px;
  max-width: 390px;
  background: #fff;
  border: 2px solid #E4E9F1;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(25,34,60,0.06);
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px 22px 20px 22px;
}
.blog-preview h2 {
  font-size: 1.21rem;
  color: #19223C;
  margin-bottom: 3px;
}
.blog-preview a {
  color: #61D4F5;
  font-weight: bold;
  transition: text-decoration 0.2s, color 0.2s;
  text-decoration: underline dotted 2px #61D4F5;
}
.blog-preview a:hover { color: #19223C; text-decoration: underline solid 2px #19223C; }

/* FAQ SECTION */
.faq .content-wrapper {
  gap: 12px;
}
.faq h3 {
  margin-top: 18px;
}

/* CTA SECTION */
.cta {
  background: #19223C;
  border-radius: 42px;
  box-shadow: 0 6px 38px 0 rgba(25,34,60,0.11);
  color: #fff;
}
.cta h2, .cta p {
  color: #fff;
}
.cta-btn { margin-top: 10px; }

/* ABOUT/LEGAL */
.about-story, .legal, .team-highlights, .value-props {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 2px 12px 0 rgba(25,34,60,0.07);
}
.value-props ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 17px 0 17px 0;
}
.value-props ul li {
  background: #F8FAFC;
  border-radius: 11px;
  border: 2px solid #E4E9F1;
  padding: 13px 13px;
  font-size: 1.06rem;
  margin-bottom: 0;
}

/* CONTACT PAGE */
.contact-section .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}
.contact-section .text-section {
  flex: 1 0 260px;
  min-width: 250px;
  background: #fff;
  border-radius: 13px;
  border: 2px solid #E4E9F1;
  padding: 22px 18px 18px 18px;
  box-shadow: 0 1px 7px 0 rgba(25,34,60,0.08);
}

/* TESTIMONIALS PAGE */
.testimonials .content-wrapper {
  gap: 26px;
  align-items: flex-start;
  display: flex;
  flex-direction: column;
}
.testimonials .testimonial-card {
  width: 100%;
  max-width: 600px;
  background: #fff;
  color: #19223C;
  border-left: 8px solid #61D4F5;
  box-shadow: 0 3px 16px 0 rgba(97, 212, 245, 0.12);
  margin: 0 0 16px 0;
  align-items: flex-start;
  font-size: 1.08rem;
}
.testimonials .testimonial-card p {
  color: #19223C;
}
.testimonials .testimonial-card > div {
  display: flex;
  gap: 20px;
  align-items: center;
}
.testimonials .testimonial-card span:last-child {
  color: #61D4F5;
  font-weight: bold;
  font-size: 1.1rem;
  margin-left: 8px;
}

/* FOOTER */
footer {
  background: #19223C;
  color: #fff;
  padding: 44px 0 28px 0;
  margin-top: 38px;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.footer-logo {
  flex: 0 0 auto;
  margin-bottom: 18px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 15px;
}
footer nav a {
  color: #61D4F5;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
footer nav a:hover, footer nav a:focus {
  color: #fff;
}
.footer-contact {
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.footer-contact a {
  color: #F8FAFC;
  text-decoration: underline;
  font-weight: 400;
}

/* THANK YOU */
.thank-you .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 20px;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #19223C;
  color: #fff;
  border-top: 3px solid #61D4F5;
  z-index: 110;
  padding: 24px 20px 20px 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  box-shadow: 0 -3px 18px 0 rgba(25,34,60,0.09);
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.4s, opacity 0.45s;
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateY(100%);
  pointer-events: none;
}
.cookie-banner p {
  margin: 0;
  flex: 1 1 auto;
}
.cookie-banner .cookie-btn {
  margin-left: 6px;
  background: #61D4F5;
  color: #19223C;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 10px 22px;
  border-radius: 16px;
  border: none;
  cursor: pointer;
  transition: background 0.17s, color 0.17s;
  text-transform: uppercase;
}
.cookie-banner .cookie-btn:focus,
.cookie-banner .cookie-btn:hover {
  background: #fff;
  color: #19223C;
}
.cookie-banner .cookie-settings-btn {
  background: none;
  color: #61D4F5;
  border: 2px solid #61D4F5;
  padding: 10px 20px;
  border-radius: 16px;
  margin-left: 12px;
  font-weight: 700;
  transition: background 0.16s, color 0.16s, border-color 0.16s;
}
.cookie-banner .cookie-settings-btn:hover,
.cookie-banner .cookie-settings-btn:focus {
  background: #61D4F5;
  color: #fff;
  border-color: #19223C;
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(25,34,60,0.64);
  z-index: 2001;
  display: none;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s;
}
.cookie-modal-overlay.active {
  display: flex;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #19223C;
  border-radius: 28px;
  box-shadow: 0 8px 48px 0 rgba(25,34,60,0.21);
  padding: 36px 34px 28px 34px;
  min-width: 280px;
  max-width: 98vw;
  width: 410px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  animation: slideUp 0.6s cubic-bezier(.33,1.33,.35,1) 0s 1;
}
@keyframes slideUp {
  from { transform: translateY(128px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.21rem;
  margin-bottom: 8px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 18px;
  border-radius: 16px;
  background: #F8FAFC;
  border: 2px solid #E4E9F1;
  padding: 16px 12px;
}
.cookie-cat-label {
  flex: 1;
}
.cookie-cat-switch {
  position: relative;
  width: 40px;
  height: 22px;
}
.cookie-cat-switch input[type="checkbox"] {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-cat-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #E4E9F1;
  border-radius: 22px;
  transition: background 0.2s;
}
.cookie-cat-switch input:checked + .cookie-cat-slider {
  background: #61D4F5;
}
.cookie-cat-slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.2s;
  box-shadow: 0 2px 5px rgba(97,212,245,0.09);
}
.cookie-cat-switch input:checked + .cookie-cat-slider:before {
  transform: translateX(16px);
}
.cookie-modal .essential {
  opacity: 0.6;
  pointer-events: none;
}
.cookie-modal .close-modal {
  position: absolute;
  right: 20px;
  top: 16px;
  background: none;
  border: none;
  color: #19223C;
  font-size: 1.25rem;
  cursor: pointer;
  transition: color 0.2s;
}
.cookie-modal .close-modal:hover,
.cookie-modal .close-modal:focus {
  color: #61D4F5;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
}
.cookie-modal .cookie-btn {
  font-size: 1rem;
  padding: 8px 20px;
  border-radius: 14px;
}

/* MEDIA QUERIES: MOBILE-FIRST */
@media (max-width: 1400px) {
  .container { max-width: 1044px; }
}
@media (max-width: 1100px) {
  .container { max-width: 880px; }
}
@media (max-width: 980px) {
  .container { max-width: 98vw; }
  .card, .testimonial-card, .blog-preview, .features li, .feature-item {
    min-width: 210px;
  }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  section { padding: 32px 6px; margin-bottom: 42px; }
  .hero { border-radius: 0 0 32px 32px; min-height: 200px; }
  .hero h1 { font-size: 2rem; }
  .container { padding-left: 8px; padding-right: 8px; }
  header .container { padding-left: 8px; padding-right: 8px; min-height: 60px; }
  header nav { display: none; }
  .mobile-menu-toggle { display: block; }
  .card-container, .content-grid, .blog-preview-grid, .features ul {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-card { max-width: 98vw; }
  .contact-section .content-wrapper, .value-props ul { gap: 20px; }
  .contact-section .content-wrapper { flex-direction: column; }
  .content-wrapper { gap: 18px; }
  .blog-preview { max-width: 98vw; }
  .cta { border-radius: 18px; }
  .features li, .feature-item {
    padding: 14px 10px;
    font-size: 0.97rem;
  }
  .card { padding: 17px 11px; border-radius: 11px; font-size: 0.98rem; }
  .testimonial-card { padding: 17px 11px; border-radius: 11px; font-size: 1rem; }
  .about-story, .legal, .team-highlights, .value-props { border-radius: 11px; }
  .cookie-banner { flex-direction: column; align-items: flex-start; gap: 10px; padding: 14px 8px 11px 8px; }
  .cookie-modal { padding: 21px 8px 12px 8px; border-radius: 16px; width: 96vw; min-width: 0; }
}
@media (max-width: 480px) {
  html { font-size: 14px; }
  .container { padding-left: 2vw; padding-right: 2vw; }
  .cta-btn, .cookie-banner .cookie-btn, .cookie-banner .cookie-settings-btn {
    padding: 8px 12px;
    font-size: 0.96rem;
    margin-top: 7px;
    border-radius: 10px;
  }
  .mobile-nav {
    padding: 0 14px;
    gap: 19px;
  }
  .cookie-modal { width: 98vw; }
}

/* GEOMETRIC DECORATIVE SHAPES (Sample for brand geometry touch) */
.geometric-shape {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  opacity: 0.07;
}
.geometric-shape.circle { border-radius: 50%; background: #61D4F5; }
.geometric-shape.triangle {
  width: 0; height: 0;
  border-left: 32px solid transparent;
  border-right: 32px solid transparent;
  border-bottom: 64px solid #19223C;
}

/* TRANSITIONS & INTERACTIONS */
.card, .feature-item, .features li, .testimonial-card, .blog-preview {
  transition: box-shadow 0.19s, border-color 0.19s, transform 0.17s;
}
.card:hover, .feature-item:hover, .features li:hover,
.blog-preview:hover {
  box-shadow: 0 8px 32px 0 rgba(97,212,245,0.13);
  border-color: #61D4F5;
  transform: translateY(-4px);
}

input, textarea, select, button {
  outline: none;
  font-family: inherit;
}

/* VISUAL HIERARCHY AND SPACING UTILITIES */
.mt-16 { margin-top: 16px; }
.mb-24 { margin-bottom: 24px; }
.mt-32 { margin-top: 32px; }
.mb-32 { margin-bottom: 32px; }
.gap-24 { gap: 24px !important; }
.rounded { border-radius: 16px; }

/* ACCESSIBILITY: FOCUS STYLES */
a:focus,
button:focus,
.cta-btn:focus {
  outline: 2px dashed #61D4F5;
  outline-offset: 2px;
}

/* Prevent overlapping and guarantee spacing */
.card:not(:last-child),
.testimonial-card:not(:last-child),
.blog-preview:not(:last-child),
.features li:not(:last-child),
.value-props ul li:not(:last-child),
.services-overview ul li:not(:last-child),
.services-details ul li:not(:last-child),
.process ol li:not(:last-child) {
  margin-bottom: 20px;
}

/* Hide visually (for a11y utilities if needed) */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
