/* --- CSS RESET & NORMALIZATION --- */
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, menu, 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, 
main, 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 {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.6;
  font-family: 'Roboto', Arial, sans-serif;
  color: #232a35;
  background: #f2f6fc;
  min-height: 100vh;
}
a {
  color: #35425e;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #ffc857;
  outline-offset: 2px;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  list-style-position: inside;
  margin-left: 0;
  margin-bottom: 16px;
}
li {
  margin-bottom: 10px;
}
button {
  background: none;
  border: none;
  margin: 0;
  padding: 0;
  font: inherit;
  cursor: pointer;
}
table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(53,66,94,.06);
  margin-bottom: 32px;
}
th, td {
  padding: 16px 20px;
  text-align: left;
}
th {
  background: #e3eaf3;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
}
tr:not(:last-child) {
  border-bottom: 1px solid #e5e9ef;
}

/* --- BRAND VARIABLES (with static fallback for wide support) --- */
:root {
  --brand-primary: #35425e;
  --brand-primary-dark: #232a35;
  --brand-secondary: #f2f6fc;
  --brand-accent: #ffc857;
  --brand-accent-dark: #e6af29;
  --gray-100: #e3eaf3;
  --gray-200: #b5bdc9;
  --gray-300: #8893a7;
  --gray-800: #35425e;
}

/* --- LAYOUT CONTAINERS --- */
.container {
  width: 100%;
  max-width: 1152px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

/* Section pattern */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 8px rgba(53,66,94,.06);
}
@media (max-width: 768px) {
  .section {
    padding: 28px 10px;
    margin-bottom: 40px;
    border-radius: 10px;
  }
}

/* --- TYPOGRAPHY --- */
h1, .hero h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.5rem;
  letter-spacing: -0.5px;
  color: var(--brand-primary);
  font-weight: 800;
  margin-bottom: 16px;
}
h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2rem;
  color: var(--brand-primary);
  font-weight: 700;
  margin-bottom: 10px;
}
h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.5rem;
  color: var(--brand-primary-dark);
  font-weight: 600;
  margin-bottom: 8px;
}
h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--brand-primary);
  margin-bottom: 6px;
}
p, li, blockquote {
  font-size: 1rem;
  color: #323a49;
}
.subheadline {
  font-size: 1.25rem;
  color: var(--gray-300);
  margin-bottom: 12px;
}
blockquote {
  font-style: italic;
  color: var(--brand-primary-dark);
  border-left: 4px solid var(--brand-accent);
  padding-left: 22px;
  margin-bottom: 12px;
  background: #f6fafd;
  border-radius: 8px;
}

@media (max-width: 540px) {
  h1, .hero h1 { font-size: 1.7rem; }
  h2 { font-size: 1.2rem; }
  .subheadline { font-size: 1rem; }
  p, li, blockquote { font-size: 0.95rem; }
}

/* --- BUTTONS / CTA'S --- */
.cta-btn, .main-nav .cta-btn, .service-card .cta-btn, .mobile-nav .cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-primary);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 25px;
  padding: 12px 32px;
  margin-left: 14px;
  margin-top: 0;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(53,66,94,.08);
  transition: background 0.24s, color 0.18s, transform 0.1s;
  outline: none;
  text-decoration: none;
  min-width: 140px;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--brand-accent);
  color: var(--brand-primary);
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 4px 18px rgba(53,66,94,.11);
}
.cta-btn.ghost {
  background: transparent;
  color: var(--brand-primary);
  border: 2px solid var(--brand-primary);
}
.cta-btn.ghost:hover, .cta-btn.ghost:focus {
  background: var(--brand-primary);
  color: #fff;
  border-color: var(--brand-accent);
}

/* --- HEADER + MAIN NAV --- */
header {
  background: var(--brand-secondary);
  box-shadow: 0 1px 8px rgba(53,66,94,.05);
  border-bottom: 1px solid #e3eaf3;
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100vw;
  min-height: 72px;
  transition: box-shadow 0.2s;
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 18px;
}
.main-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: var(--brand-primary);
  padding: 10px 18px;
  margin: 0 2px;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
  position: relative;
}
.main-nav a:not(.cta-btn):hover,
.main-nav a:not(.cta-btn):focus {
  background: #e3eaf3;
  color: var(--brand-accent-dark);
}

.main-nav a.cta-btn {
  margin-left: 18px;
  font-size: 1.1rem;
  padding: 12px 28px;
}

/* Hide mobile menu toggle on desktop */
.mobile-menu-toggle {
  display: none;
}

@media (max-width: 960px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-flex;
    background: var(--brand-primary);
    color: #fff;
    border: none;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    font-size: 2rem;
    margin-left: 16px;
    transition: background 0.18s;
    z-index: 1051;
  }
  .mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
    background: var(--brand-accent);
    color: var(--brand-primary);
  }
}

/* --- MOBILE MENU --- */
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: var(--brand-primary);
  z-index: 1100;
  transform: translateX(-100%);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.7,0,0.3,1), opacity 0.2s;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 22px 24px 10px 0;
  font-size: 2.2rem;
  color: #fff;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus { color: var(--brand-accent); }
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: flex-start;
  gap: 8px;
  margin-top: 30px;
  padding-left: 24px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.18rem;
  color: #fff;
  margin: 6px 0;
  padding: 16px 0 16px 10px;
  border-radius: 8px;
  width: 97%;
  display: inline-block;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--brand-accent);
  color: var(--brand-primary);
  text-decoration: none;
}
.mobile-nav .cta-btn {
  background: #fff;
  color: var(--brand-primary);
  margin-top: 16px;
}

@media (max-width: 960px) {
  .mobile-menu {
    display: flex;
  }
}

/* --- HERO SECTION --- */
.hero {
  background: linear-gradient(120deg, #e3eaf3 62%, #fff 100%);
  padding-top: 50px;
  padding-bottom: 60px;
  margin-bottom: 32px;
  min-height: 320px;
  display: flex;
  align-items: center;
  width: 100%;
}
.hero .container.content-wrapper {
  align-items: flex-start;
  gap: 18px;
}

@media (max-width: 768px) {
  .hero {
    padding: 36px 0;
    min-height: 180px;
  }
}

/* --- FEATURES SECTION --- */
.features {
  margin-bottom: 60px;
}
.features h2 {
  margin-bottom: 18px;
}
.feature-grid, .features ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  justify-content: flex-start;
}
.feature-grid li, .features ul li {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 14px;
  padding: 18px 24px;
  min-width: 220px;
  gap: 12px;
  color: var(--brand-primary-dark);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.08rem;
  box-shadow: 0 1px 4px rgba(53,66,94,.05);
}
.feature-grid li img, .features ul li img {
  width: 32px;
  height: 32px;
  margin-right: 8px;
}
@media (max-width: 700px) {
  .feature-grid, .features ul {
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
  }
}

/* --- SERVICES PREVIEW / CARDS --- */
.services-preview .service-cards,
.services .service-list,
.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}
.service-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(53,66,94,.08);
  padding: 32px 28px 30px 28px;
  flex: 1 1 320px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  min-width: 260px;
  max-width: 420px;
  transition: box-shadow 0.20s, transform 0.15s;
  position: relative;
}
.service-card .price {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--brand-accent-dark);
  font-weight: 700;
  font-size: 1.05rem;
  margin-top: 10px;
}
.service-card:hover,
.service-card:focus-within {
  box-shadow: 0 8px 28px rgba(53,66,94,.12);
  transform: translateY(-3px) scale(1.01);
}
.service-cards .cta-btn {
  align-self: flex-start;
  margin-top: 10px;
}
@media (max-width: 1024px) {
  .services-preview .service-cards, .services .service-list {
    gap: 16px;
  }
  .service-card { min-width: 202px; }
}
@media (max-width: 800px) {
  .services-preview .service-cards, .services .service-list, .testimonial-grid {
    flex-direction: column;
    gap: 18px;
  }
  .service-card, .testimonial-card { max-width: 100%; width: 100%; }
}

/* --- TESTIMONIAL CARDS --- */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  margin-bottom: 20px;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(53,66,94,.07);
  font-size: 1.08rem;
  transition: box-shadow 0.18s, transform 0.12s;
  flex: 1 1 340px;
  color: #222d3e;
}
.testimonial-card blockquote {
  color: var(--brand-primary-dark);
  background: #f2f6fc;
  border-left: 4px solid var(--brand-accent);
  font-size: 1.08rem;
  font-style: italic;
  border-radius: 8px;
  padding: 10px 16px;
  margin-bottom: 8px;
}
.testimonial-meta {
  font-size: 0.97rem;
  color: #505c72;
  opacity: 0.93;
  font-style: normal;
  display: flex;
  align-items: center;
  gap: 2px;
}
.testimonial-meta img {
  width: 20px;
  height: 20px;
  vertical-align: middle;
}
.testimonial-card:hover,
.testimonial-card:focus-within {
  box-shadow: 0 10px 36px rgba(53,66,94,.12);
  transform: translateY(-2px) scale(1.01);
}
@media (max-width: 700px) {
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

/* --- TESTIMONIAL GRID --- */
.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
}
@media (max-width: 800px) {
  .testimonial-grid {
    flex-direction: column;
    gap: 16px;
  }
}

/* --- CTA + TEXT SECTIONS --- */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.address-map {
  margin-top: 10px;
  padding: 12px 0 0 0;
  font-size: 1.05rem;
}

/* --- PRICING TABLE & NOTES --- */
.pricing-table {
  margin-top: 14px;
  margin-bottom: 18px;
  box-shadow: 0 2px 8px rgba(53,66,94,.07);
}
.pricing-table th, .pricing-table td {
  font-size: 1rem;
}
.pricing-table th {
  background: #e3eaf3;
  color: var(--brand-primary);
  font-weight: 700;
}
.pricing-table td {
  color: #232a35;
}
.note, .transparent-pricing {
  font-size: 1rem;
  color: var(--gray-300);
  margin-top: 6px;
}

/* --- FAQ ACCORDION --- */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  background: #fff;
  padding: 20px 24px;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(53,66,94,.05);
  margin-bottom: 12px;
  cursor: pointer;
  transition: box-shadow 0.18s, transform 0.12s;
}
.faq-item:hover {
  box-shadow: 0 4px 18px rgba(53,66,94,.10);
  transform: translateY(-1px) scale(1.01);
}
.faq-item h2 {
  font-size: 1.12rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: var(--brand-primary);
  margin-bottom: 5px;
}
.faq-answer {
  margin-top: 7px;
  font-size: 0.98rem;
  color: #323a49;
}

/* --- LEGAL SECTIONS --- */
.legal-section, .thank-you-section {
  margin-bottom: 60px;
  padding: 40px 20px 36px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 8px rgba(53,66,94,.06);
}

/* --- FOOTER --- */
footer {
  background: var(--brand-primary);
  color: #fff;
  padding: 36px 0 22px 0;
  margin-top: 60px;
  font-size: 1rem;
}
.footer-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 36px;
  flex-wrap: wrap;
}
.footer-wrapper > * {
  margin-bottom: 12px;
}
.footer-nav {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #d3d7e4;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  opacity: 0.94;
  margin-right: 8px;
  padding: 4px 10px;
  border-radius: 6px;
  transition: background 0.14s, color 0.18s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  background: var(--brand-accent);
  color: var(--brand-primary);
}
.contact-snippet p {
  font-size: 0.98rem;
  line-height: 1.4;
  margin-bottom: 5px;
  color: #e8eaf1;
}
.contact-snippet a {
  color: #ffc857;
}

@media (max-width: 900px) {
  .footer-wrapper {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #fff;
  color: var(--brand-primary-dark);
  box-shadow: 0 -4px 24px rgba(53,66,94,.12);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 24px;
  z-index: 2399;
  font-size: 1rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
  transition: opacity 0.35s, transform 0.33s cubic-bezier(0.7,0,0.3,1);
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}
.cookie-banner.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.cookie-banner .cookie-actions {
  display: flex; flex-wrap: wrap;
  gap: 12px;
}
.cookie-banner button {
  min-width: 120px;
  padding: 8px 22px;
  border-radius: 25px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  border: none;
  transition: background 0.18s, color 0.18s, box-shadow 0.14s;
  margin-left: 0;
  margin-top: 0;
  cursor: pointer;
}
.cookie-banner .cookie-accept {
  background: var(--brand-primary);
  color: #fff;
}
.cookie-banner .cookie-accept:hover { background: var(--brand-accent); color: var(--brand-primary); }
.cookie-banner .cookie-reject {
  background: #e3eaf3;
  color: var(--brand-primary);
  border: 1px solid var(--brand-primary);
}
.cookie-banner .cookie-reject:hover { background: var(--brand-accent); color: var(--brand-primary); }
.cookie-banner .cookie-settings {
  background: transparent;
  color: var(--brand-primary);
  border: 2px solid var(--brand-primary);
}
.cookie-banner .cookie-settings:hover { background: var(--brand-primary); color: #fff; border-color: var(--brand-accent); }
@media (max-width: 620px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 8px 14px 14px;
    font-size: 0.96rem;
  }
}

/* --- COOKIE MODAL --- */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(53, 66, 94, 0.55);
  z-index: 3001;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.cookie-modal-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #fff;
  color: var(--brand-primary-dark);
  border-radius: 18px;
  box-shadow: 0 24px 86px rgba(53,66,94,.19);
  padding: 36px 28px 24px 28px;
  min-width: 290px;
  max-width: 438px;
  width: 95vw;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform 0.23s cubic-bezier(.18,.67,.7,1.24);
  transform: translateY(48px) scale(0.97);
}
.cookie-modal .modal-close {
  position: absolute;
  top: 16px; right: 18px;
  font-size: 2rem;
  background: transparent;
  color: var(--brand-primary-dark);
  border: none;
  cursor: pointer;
  z-index: 9;
}
.cookie-modal h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  color: var(--brand-primary);
  margin-bottom: 3px;
}
.cookie-modal .cookie-categories {
  display: flex; flex-direction: column; gap: 14px;
}
.cookie-category {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 6px 10px 0;
  border-radius: 7px;
  background: #f2f6fc;
}
.cookie-category input[type="checkbox"] {
  accent-color: var(--brand-primary);
  width: 21px; height: 21px;
  margin-right: 2px;
}
.cookie-category .category-label {
  font-size: 1.01rem;
  color: #323a49;
  font-weight: 500;
}
.cookie-category .category-desc {
  font-size: 0.94rem;
  color: #9caac4;
  margin-left: 7px;
}
.cookie-modal .modal-actions {
  display: flex;
  flex-direction: row;
  gap: 15px;
  margin-top: 10px;
  justify-content: flex-end;
}
.cookie-modal .modal-actions button {
  padding: 8px 24px;
  border-radius: 28px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  border: none;
  background: var(--brand-primary);
  color: #fff;
  transition: background 0.18s, color 0.18s, box-shadow 0.14s;
}
.cookie-modal .modal-actions button:hover {
  background: var(--brand-accent);
  color: var(--brand-primary);
}
.cookie-category input[disabled] {
  opacity: 0.74;
  pointer-events: none;
}

/* --- RESPONSIVE FLEX Spacing Patterns (Per Guidelines) --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(53,66,94,.07);
  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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
@media(max-width: 768px) {
  .content-grid,
  .card-container {
    flex-direction: column;
    gap: 14px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

/* ------ MICRO-INTERACTIONS & TRANSITIONS ------ */
button, .cta-btn, .main-nav a, .mobile-nav a {
  transition: all 0.19s cubic-bezier(.24,.55,.31,1.15);
}
.card, .service-card {
  transition: box-shadow 0.20s, transform 0.15s;
}
a.animated-link {
  position: relative;
  z-index: 1;
  padding-bottom: 2px;
}
a.animated-link::before {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--brand-accent);
  transform: scaleX(0);
  transition: transform 0.18s;
  z-index: -1;
}
a.animated-link:hover::before, a.animated-link:focus::before {
  transform: scaleX(1);
}

/* ------ UTILITIES & HELPER CLASSES ------ */
.text-center {text-align:center;}
.mt-24 {margin-top:24px;}
.mt-12 {margin-top:12px;}
.mb-16 {margin-bottom:16px;}
.mb-32 {margin-bottom:32px;}
.w-100 {width:100%;}
.hidden {display: none !important;}

/* --- ANIMATIONS --- */
@keyframes slideInUp {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: translateY(0); }
}
.slide-in-up {
  animation: slideInUp 0.56s cubic-bezier(0.32, 0.72, 0.62, 1.12);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.fade-in { animation: fadeIn 0.4s; }

/* --- MEDIA QUERIES: MOBILE OPTIMIZATION --- */
@media (max-width: 768px) {
  .container {
    max-width: 100vw;
    padding-left: 9px;
    padding-right: 9px;
  }
  .content-wrapper {
    gap: 14px;
  }
  .section { padding: 22px 4px; margin-bottom: 34px; border-radius: 10px; }
  h1, .hero h1 { font-size: 1.45rem; }
  h2 { font-size: 1.02rem; }
  .service-card, .testimonial-card { padding: 18px 8px 18px 14px; }
  .footer-wrapper { gap: 6px; }
}

/* --- SCROLLBAR (SUBTLE STYLE) --- */
::-webkit-scrollbar {
  width: 8px;
  background: #e3eaf3;
}
::-webkit-scrollbar-thumb {
  background: #b5bdc9;
  border-radius: 5px;
}

/* --- ACCESSIBILITY --- */
:focus-visible {
  outline: 2px solid var(--brand-accent);
  outline-offset: 1.5px;
}

/* --- PRINT FRIENDLY (REMOVES SHADOWS) --- */
@media print {
  *, *:before, *:after {
    box-shadow: none !important;
    background: #fff !important;
    color: #1b2332 !important;
  }
}

/* --- END OF CORPORATE PROFESSIONAL CSS --- */
