/* =============================
   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-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F3F8FC;
  color: #195174;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: inline-block;
  vertical-align: middle;
  height: auto;
}
a {
  color: #195174;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #59A270;
}
ul, ol {
  margin-left: 24px;
}
/* Remove border on images inside links */
a img {
  border: 0;
}

/* =============================
   FONT IMPORTS: Monterrat + Roboto
   ============================= */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  src: local('Montserrat Bold'),
       url('https://fonts.gstatic.com/s/montserrat/v26/JTUQjIg1_i6t8kCHKm459WxZKg.woff2') format('woff2');
  unicode-range: U+000-5FF;
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  src: local('Montserrat SemiBold'),
       url('https://fonts.gstatic.com/s/montserrat/v26/JTUQjIg1_i6t8kCHKm459Ww.woff2') format('woff2');
  unicode-range: U+000-5FF;
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  src: local('Montserrat'), local('Montserrat Regular'), 
      url('https://fonts.gstatic.com/s/montserrat/v26/JTUQjIg1_i6t8kCHKm459Wxi.woff2') format('woff2');
  unicode-range: U+000-5FF;
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: local('Roboto'), local('Roboto Regular'), 
      url('https://fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Mu4mxK.woff2') format('woff2');
  unicode-range: U+000-5FF;
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  src: local('Roboto Medium'),
       url('https://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmEU9vAw.woff2') format('woff2');
  unicode-range: U+000-5FF;
}

/* =============================
   ROOT (CSS CUSTOM PROPERTIES)
   ============================= */
:root {
  --color-primary: #195174;
  --color-secondary: #59A270;
  --color-accent: #F3F8FC;
  --color-white: #fff;
  --color-black: #151d26;
  --color-bg-card: #fff;
  --shadow-1: 0 2px 8px rgba(25, 81, 116, 0.10);
  --shadow-card: 0 6px 24px rgba(25, 81, 116, 0.13);
  --radius: 18px;
  --ff-display: 'Montserrat', Arial, sans-serif;
  --ff-body: 'Roboto', Arial, sans-serif;
  --fw-bold: 700;
  --fw-semibold: 600;
  --fw-normal: 400;
}

/* =============================
   GENERAL LAYOUT & CONTAINER
   ============================= */
.container {
  max-width: 1190px;
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 0;
}
.text-center {
  text-align: center;
}

/* =============================
   TYPOGRAPHY
   ============================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-display);
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  letter-spacing: -0.5px;
}
h1 {
  font-size: 2.6rem;
  line-height: 1.15;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  line-height: 1.19;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.3rem;
  line-height: 1.22;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-size: 1rem;
  margin-bottom: 7px;
}
p, ul, ol, li, span, label, .tagline {
  font-family: var(--ff-body);
  font-weight: var(--fw-normal);
  color: var(--color-primary);
  font-size: 1rem;
  line-height: 1.7;
}
strong, b {
  font-weight: var(--fw-semibold);
}

/* Typography for footer tagline */
.tagline {
  font-size: 1.05rem;
  font-family: var(--ff-display);
  color: var(--color-secondary);
  margin-top: 6px;
  letter-spacing: 0.04em;
  font-weight: var(--fw-semibold);
}

/* =============================
   HEADER & MAIN NAVIGATION
   ============================= */
header {
  background: var(--color-white);
  box-shadow: var(--shadow-1);
  padding: 0;
  margin-bottom: 0;
  width: 100%;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 16px 12px 16px;
  min-height: 70px;
}
header img {
  height: 42px;
  width: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 22px;
}
.main-nav a {
  font-family: var(--ff-display);
  font-weight: var(--fw-semibold);
  font-size: 1.08rem;
  padding: 8px 0;
  color: var(--color-primary);
  position: relative;
  transition: color 0.2s;
}
.main-nav a:hover,
.main-nav a:focus {
  color: var(--color-secondary);
}

.btn-primary {
  background: var(--color-secondary);
  color: var(--color-white);
  display: inline-block;
  font-family: var(--ff-display);
  font-weight: var(--fw-bold);
  font-size: 1.03rem;
  border-radius: var(--radius);
  padding: 12px 26px;
  letter-spacing: 0.035em;
  border: none;
  box-shadow: 0 3px 14px rgba(89, 162, 112, 0.17);
  transition: background 0.23s, box-shadow 0.18s, color 0.16s, transform 0.21s;
  cursor: pointer;
  margin-left: 20px;
}
.btn-primary:hover,
.btn-primary:focus {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px) scale(1.032);
  box-shadow: 0 8px 38px rgba(25, 81, 116, 0.17);
}

/* Hamburger menu button */
.mobile-menu-toggle {
  background: var(--color-secondary);
  color: var(--color-white);
  border: none;
  font-size: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-left: 16px;
  transition: background 0.16s, box-shadow 0.16s;
  box-shadow: 0 2px 8px rgba(89, 162, 112, 0.17);
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: var(--color-primary);
  color: var(--color-white);
}

/* =============================
   MOBILE NAVIGATION OVERLAY
   ============================= */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(25, 81, 116, 0.98);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  transform: translateX(-100vw);
  transition: transform 0.36s cubic-bezier(0.45,0,0.47,1);
  box-shadow: 0 0 60px 12px rgba(25,81,116,0.12);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  color: var(--color-secondary);
  background: transparent;
  border: none;
  font-size: 2.3rem;
  position: absolute;
  top: 18px;
  right: 24px;
  z-index: 1001;
  cursor: pointer;
  transition: color 0.17s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: var(--color-white);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 90px 0 0 38px;
  width: 100%;
  height: 100%;
}
.mobile-nav a {
  font-family: var(--ff-display);
  font-weight: var(--fw-bold);
  font-size: 1.5rem;
  color: var(--color-white);
  letter-spacing: 0.02em;
  padding: 10px 0;
  transition: color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--color-secondary);
}

/* =============================
   HERO & SECTION BASE SPACING
   ============================= */
section {
  width: 100%;
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}

/* Remove bottom margin for last section in main */
main section:last-child {
  margin-bottom: 0;
}

/* =============================
   FEATURE, CARD, INDUSTRY LAYOUTS
   ============================= */
.feature-grid, .service-snippets, .industry-short-list, .industry-list, .service-list, .benefit-cards, .case-studies, .latest-articles-preview, .featured-post-snippets, .card-container, .card-grid, .testimonial-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
  justify-content: space-between;
}
.feature-item, .service-item, .industry-item, .service-card, .benefit-card, .case-study-snippet, .testimonial-card, .card {
  background: var(--color-bg-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 26px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  min-width: 220px;
  max-width: 370px;
  flex: 1 1 270px;
  transition: box-shadow 0.23s, transform 0.21s;
}
.feature-item img,
.industry-item img,
.service-card img,
.benefit-card img {
  height: 56px;
  width: 56px;
  margin-bottom: 10px;
}
.feature-item:hover, .service-item:hover, .industry-item:hover, .service-card:hover, .benefit-card:hover, .case-study-snippet:hover, .testimonial-card:hover, .card:hover {
  box-shadow: 0 14px 48px rgba(25, 81, 116, 0.15);
  transform: translateY(-4px) scale(1.03);
}

.testimonial-cards {
  gap: 24px;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
  justify-content: flex-start;
}
.testimonial-card {
  background: #fff;
  color: #131f26;
  border-radius: var(--radius);
  padding: 24px 22px;
  box-shadow: 0 7px 26px rgba(25,81,116,0.12);
  min-width: 260px;
  max-width: 370px;
  flex: 1 1 270px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  gap: 12px;
  transition: box-shadow 0.21s, transform 0.22s;
}
.testimonial-card p {
  color: #182c3c;
  font-size: 1.05rem;
  font-family: var(--ff-body);
  font-weight: 400;
  line-height: 1.65;
  margin-bottom: 10px;
}
.testimonial-card .client-name {
  font-family: var(--ff-display);
  font-weight: var(--fw-semibold);
  color: var(--color-secondary);
  font-size: 1.006rem;
}

/* =============================
   CONTENT SECTIONS
   ============================= */
.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;
}

.core-values-list, .usps, .category-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0 0 20px 0;
  font-size: 1.08rem;
  list-style: none;
}
.core-values-list li, .usps li, .category-list li {
  display: flex;
  align-items: center;
  gap: 13px;
  font-family: var(--ff-body);
}
.core-values-list img { height: 30px; width: 30px; }

.team-overview {
  display: flex;
  flex-direction: column;
  gap: 23px;
}

.certifications {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 20px 0;
}
.certifications img {
  height: 36px; width: 36px;
}

.case-studies {
  gap: 24px;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.case-study-snippet {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 7px 22px rgba(25,81,116,0.13);
  padding: 24px 18px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  min-width: 250px;
  max-width: 370px;
}

.latest-articles-preview, .featured-post-snippets {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.latest-articles-preview article, .featured-post-snippets article {
  background: #fff;
  box-shadow: 0 5px 18px rgba(25,81,116,0.11);
  border-radius: var(--radius);
  padding: 22px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 360px;
  flex: 1 1 270px;
  margin-bottom: 20px;
}

.benefit-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
  justify-content: space-between;
}
.benefit-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 8px 20px rgba(25,81,116,0.13);
  padding: 24px 18px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 200px;
  max-width: 350px;
  margin-bottom: 20px;
}
.benefit-card h3 {
  color: var(--color-secondary);
  font-weight: var(--fw-semibold);
}
.benefit-card ul {
  margin: 0 0 0 16px;
  font-size: 1rem;
  color: var(--color-primary);
}

/* Contact short info (CTA) */
.contact-short {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  margin: 36px 0 6px 0;
}
.contact-short p {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-body);
  font-size: 1.07rem;
  color: var(--color-primary);
  font-weight: var(--fw-semibold);
}
.contact-short img {
  width: 22px; height: 22px;
}

/* =============================
   FOOTER
   ============================= */
footer {
  background: #143751;
  padding: 48px 0 26px 0;
  color: var(--color-white);
  box-shadow: 0 -3px 14px rgba(25,81,116,0.07);
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
}
.footer-nav, .footer-contact, .footer-branding {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav {
  flex: 2.2 1 200px;
  flex-wrap: wrap;
  gap: 6px;
}
.footer-nav a {
  font-family: var(--ff-body);
  color: #d4e5f7;
  font-size: 0.98rem;
  margin-right: 12px;
  transition: color 0.15s;
  font-weight: 500;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--color-secondary);
}
.footer-contact {
  flex: 1.2 1 160px;
  color: #f3fafb;
  gap: 7px;
}
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.96rem;
  color: #f3fafb;
}
.footer-contact img {
  width: 17px; height: 17px;
}
.footer-branding {
  flex: 1.2 1 170px;
  align-items: flex-start;
  margin-top: 6px;
  gap: 4px;
}
.footer-branding img {
  width: 38px; height: 38px;
  margin-bottom: 4px;
}
.footer-branding .tagline {
  color: var(--color-secondary);
  font-size: 1.01rem;
  letter-spacing: 0.012em;
  font-weight: var(--fw-semibold);
}
.copyright {
  color: #b3bec8;
  font-size: 0.84rem;
  font-family: var(--ff-body);
  margin-top: 1px;
}

/* =============================
   COOKIE CONSENT BANNER
   ============================= */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: var(--color-primary);
  color: #fff;
  display: flex;
  align-items: center;
  padding: 22px 18px;
  border-radius: 23px 23px 0 0;
  box-shadow: 0 -4px 22px rgba(25,81,116,0.23);
  z-index: 99999;
  gap: 20px;
  flex-wrap: wrap;
  transition: transform 0.3s cubic-bezier(.45,0,.47,1), opacity 0.22s;
}
.cookie-banner.hide {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-text {
  flex: 1 1 260px;
  font-size: 1.07rem;
  color: #fff;
  font-family: var(--ff-body);
  margin-right: 10px;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.cookie-btn, .cookie-btn-secondary {
  font-family: var(--ff-display);
  border: none;
  border-radius: 14px;
  padding: 11px 22px;
  font-weight: var(--fw-bold);
  font-size: 0.98rem;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, transform 0.15s;
}
.cookie-btn {
  background: var(--color-secondary);
  color: #fff;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #196157;
  color: #fff;
}
.cookie-btn-secondary {
  background: transparent;
  color: #fff;
  border: 1.7px solid #fff;
}
.cookie-btn-secondary:hover,
.cookie-btn-secondary:focus {
  background: #fff;
  color: var(--color-primary);
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 160%);
  z-index: 100000;
  background: #fff;
  color: var(--color-primary);
  padding: 40px 25px 28px 25px;
  border-radius: 22px 22px 0 0;
  min-width: 310px;
  box-shadow: 0 -10px 40px 0 rgba(25,81,116,0.28);
  transition: transform 0.34s cubic-bezier(.45,0,.47,1), opacity 0.22s;
  opacity: 0;
  pointer-events: none;
  max-width: 96vw;
}
.cookie-modal.open {
  transform: translate(-50%, 0);
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal h2 {
  color: var(--color-primary);
  margin-bottom: 16px;
  font-size: 1.43rem;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 20px 0 18px 0;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
}
.cookie-category label {
  color: var(--color-primary);
  font-family: var(--ff-body);
  font-size: 1.07rem;
  font-weight: 500;
}
.cookie-category input[type='checkbox'] {
  width: 22px;
  height: 22px;
  accent-color: var(--color-secondary);
  margin-right: 4px;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 19px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.cookie-modal .cookie-btn,
.cookie-modal .cookie-btn-secondary {
  font-size: 1rem;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 14px;
  right: 20px;
  color: var(--color-primary);
  background: transparent;
  border: none;
  font-size: 1.51rem;
  cursor: pointer;
  transition: color 0.14s;
}
.cookie-modal .close-modal:hover,
.cookie-modal .close-modal:focus {
  color: var(--color-secondary);
}

/* =============================
   MICRO-INTERACTIONS & EFFECTS
   ============================= */
section, .feature-item, .service-item, .industry-item, .card, .testimonial-card,
.service-card, .benefit-card, .case-study-snippet, .latest-articles-preview article, .featured-post-snippets article {
  transition: box-shadow 0.18s, transform 0.16s, background 0.19s;
}
section:target, .card:focus-within {
  box-shadow: 0 0 0 5px rgba(25,81,116,0.16);
}

/* =============================
   RESPONSIVENESS & LAYOUT ADJUSTMENTS
   ============================= */
@media (max-width: 1023px) {
  .container {
    max-width: 990px;
    padding: 0 10px;
  }
  .main-nav {
    gap: 11px;
  }
  .footer-nav, .footer-contact, .footer-branding {
    flex: 1 1 160px;
  }
}
@media (max-width: 870px) {
  .feature-grid, .service-snippets, .industry-short-list, .industry-list, .service-list, .benefit-cards, .case-studies, .latest-articles-preview, .featured-post-snippets, .card-container, .card-grid, .testimonial-cards {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 1.95rem; }
  h2 { font-size: 1.33rem; }
  h3 { font-size: 1.07rem; }
  section { padding: 27px 7px; margin-bottom: 34px; }
  .container, footer .container {
    padding: 0 7px;
    max-width: 100vw;
  }
  .main-nav, .btn-primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  header .container {
    flex-direction: row;
    gap: 10px;
    min-height: 62px;
    padding: 7px 7px 7px 7px;
  }
  .feature-item, .service-item, .industry-item, .service-card, .benefit-card, .case-study-snippet, .testimonial-card, .card {
    min-width: 96vw;
    max-width: 100vw;
    padding: 18px 7px 16px 13px;
  }
  .case-study-snippet {
    padding: 17px 5px;
  }
  .testimonial-card, .benefit-card {
    padding: 16px 9px;
  }
  .case-study-snippet, .testimonial-card, .benefit-card {
    min-width: unset; max-width: unset;
  }
  .footer-nav, .footer-contact, .footer-branding {
    min-width: unset;
    flex: 1 1 100%;
  }
}
@media (max-width: 720px) {
  .footer-nav, .footer-contact, .footer-branding {
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
    margin-bottom: 17px;
  }
  .footer-nav {
    columns: unset;
    flex-wrap: wrap;
    gap: 7px 16px;
  }
  footer .container {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .case-study-snippet, .testimonial-card, .benefit-card {
    padding: 15px 2px 10px 8px;
  }
}
@media (max-width: 520px) {
  h1 { font-size: 1.3rem; }
  h2 { font-size: 1.05rem; }
  h3 { font-size: 0.97rem; }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 7px;
    gap: 10px;
    font-size: 0.95rem;
  }
  .cookie-banner .cookie-text {
    font-size: 0.96rem;
  }
  .cookie-banner .cookie-actions {
    flex-direction: column;
    gap: 10px;
  }
  .cookie-modal {
    min-width: 95vw;
    padding: 22px 7px 13px 9px;
    font-size: 0.99rem;
  }
  .cookie-category label { font-size: 0.97rem; }
}

/* =============================
   ALIGNMENT FOR TEXT-IMAGE SECTIONS
   ============================= */
.text-image-section {
  flex-direction: row;
  align-items: center;
  gap: 30px;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

/* =============================
   EXTRAS: FOCUS & ACCESSIBILITY
   ============================= */
:focus-visible {
  outline: 2px solid var(--color-secondary) !important;
  outline-offset: 2px;
}

/* =============================
   UTILITY: HIDE ON DESKTOP/MOBILE
   ============================= */
.desktop-only { display: block !important; }
.mobile-only { display: none !important; }
@media (max-width: 768px) {
  .desktop-only { display: none !important; }
  .mobile-only { display: block !important; }
}

/* =============================
   CLEANING UP BUTTONS & INPUTS
   ============================= */
button, input[type="button"], input[type="submit"] {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
  outline: none;
}
input, textarea, select {
  font-family: var(--ff-body);
  font-size: 1rem;
  border-radius: 8px;
  border: 1.2px solid #bfd8e3;
  padding: 8px 10px;
  margin-bottom: 8px;
  box-sizing: border-box;
}

/* =============================
   GEOMETRIC DECORATIVE SHAPES
   ============================= */
/* (Optionally add visual shapes: add absolutely/relatively positioned SVG/CSS shapes for brand styling) */

/* =============================
   FINAL: NO ABSOLUTE ON CARDS, NO GRID OR COLUMNS
   (Already checked above - only flexbox is used)
   ============================= */
