/* ===========================
   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, 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 {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  line-height: 1.6;
  background: #fff;
  color: #181a1b;
}
ol, ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
img {
  border: 0;
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
  background: transparent;
  transition: color 0.2s;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  margin: 0;
  border-radius: 0;
  outline: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
:focus {
  outline: 2px solid #31596D;
  outline-offset: 2px;
}

/* ===========================
   BRAND TYPOGRAPHY & COLORS
   =========================== */
:root {
  /* Monochrome palette for sophistication */
  --color-bg: #fff;
  --color-bg-dark: #181a1b;
  --color-bg-light: #f6f6f6;
  --color-border: #e2e2e2;
  --color-card: #f9f9f9;
  --color-card-dark: #222325;
  --color-primary: #111418;
  --color-secondary: #5C5C60;
  --color-accent: #EFC76C;
  --color-highlight: #f7f5f2;
  --color-disabled: #bbb;
  --color-link: #222;
  --color-link-hover: #31596D;
  --brand-primary: #31596D;
  --brand-secondary: #EFC76C;
  --brand-accent: #F7F5F2;
  /* Font Families */
  --font-display: 'Montserrat', 'Arial', sans-serif;
  --font-body: 'Roboto', 'Segoe UI', Arial, sans-serif;
  /* Shadows */
  --shadow-xs: 0 1px 3px rgba(0,0,0,0.04);
  --shadow-sm: 0 2px 12px rgba(24,26,27,0.10);
  --shadow-md: 0 4px 16px rgba(17,20,24,0.12);
  /* Radii */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 32px;
}
body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-primary);
  background: var(--color-bg);
  letter-spacing: 0.015em;
  min-height:100vh;
}

h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-display);
  color: var(--color-primary);
  font-weight: 700;
  line-height: 1.15;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
p, ul, ol, label {
  margin-bottom: 16px;
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-secondary);
}
strong, b {
  color: var(--color-primary);
  font-weight: 700;
}
small {
  font-size: 0.85rem;
  color: var(--color-secondary);
}

/* =============
  CONTAINER
  ============= */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.section:last-child {
  margin-bottom: 0;
}

/* =======================
   HEADER & NAVIGATION
   ======================= */
header {
  background: var(--color-bg);
  box-shadow: var(--shadow-xs);
  position: sticky;
  top: 0;
  z-index: 100;
}
nav {
  max-width: 1120px;
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
nav > a img {
  width: 140px;
  height: auto;
}
nav ul {
  display: flex;
  gap: 20px;
  align-items: center;
}
nav ul li {
  display: flex;
  align-items: center;
}
nav ul li a {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-link);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: background 0.2s, color 0.2s;
  letter-spacing: 0.01em;
}
nav ul li a:hover, nav ul li a:focus {
  background: var(--color-highlight);
  color: var(--brand-primary);
}
nav ul li a.cta {
  background: var(--brand-primary);
  color: #fff !important;
  border: none;
  border-radius: var(--radius-md);
  padding: 10px 24px;
  margin-left: 4px;
  box-shadow: var(--shadow-sm);
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
nav ul li a.cta.primary {
  background: var(--brand-primary);
  color: #fff !important;
}
nav ul li a.cta.secondary {
  background: #fff;
  color: var(--brand-primary) !important;
  border: 1px solid var(--brand-primary);
}
nav ul li a.cta:hover, nav ul li a.cta:focus {
  background: var(--color-secondary);
  color: #fff !important;
  box-shadow: var(--shadow-md);
}

/* Hamburger Menu Button */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--brand-primary);
  font-size: 2.1rem;
  margin-left: 16px;
  cursor: pointer;
  z-index: 501;
  line-height: 1;
  padding: 4px 10px;
  border-radius: var(--radius-md);
  transition: background 0.15s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--color-card);
}

/* Mobile Dropdown Overlay */
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(24,26,27,0.98);
  z-index: 999;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(.53,-0.14,.35,1.26);
  opacity: 1;
}
.mobile-menu.open {
  transform: translateX(0);
  box-shadow: 0 2px 18px rgba(10,10,10,0.20);
}
.mobile-menu-close {
  color: #fff;
  background: none;
  border: none;
  font-size: 2.1rem;
  align-self: flex-end;
  margin-top: 24px;
  margin-right: 36px;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: var(--radius-md);
  transition: background 0.15s;
  z-index: 1001;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #222326;
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  margin: 42px 0 0 42px;
  z-index: 1000;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.01em;
  color: #fff;
  padding: 8px 2px;
  border-radius: var(--radius-md);
  transition: background 0.2s, color 0.2s;
  font-weight: 600;
  width: 80vw;
  max-width: 320px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--brand-secondary);
  color: #181a1b;
}

@media (max-width: 1024px) {
  nav ul {
    gap: 14px;
  }
  nav {
    padding: 12px 10px;
  }
}

@media (max-width: 900px) {
  nav ul {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

@media (min-width: 901px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ============================
   HERO SECTION
   ============================ */
.hero {
  background: linear-gradient(120deg, #fff 60%, #f3f3f3 100%);
  padding: 48px 0 28px 0;
  display: flex;
  align-items: center;
}
.hero .container {
  width: 100%;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 14px;
  justify-content: center;
}
.hero h1 {
  font-size: 2.4rem;
  color: var(--color-primary);
  text-shadow: 0 2px 8px rgba(200,200,200,0.06);
}
.hero p {
  color: var(--color-secondary);
  font-size: 1.2rem;
  font-family: var(--font-body);
  font-weight: 400;
  margin-bottom: 16px;
}

@media (max-width: 600px) {
  .hero {
    padding: 34px 0 18px 0;
  }
  .hero h1 {
    font-size: 1.45rem;
  }
  .hero p {
    font-size: 1rem;
  }
}

/* ================================
   FEATURES & SERVICES SECTIONS
   ================================ */
.features, .services, .about, .pricing, .blog-posts, .newsletter, .cta, .testimonials, .faq, .contact, .team, .legal, .thank-you {
  margin-bottom: 60px;
  padding: 40px 0;
}
.features ul,
.services ul,
.about ul,
.pricing ul,
.team ul,
.blog-posts ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 8px;
}
.features ul li,
.services ul li,
.about ul li,
.pricing ul li,
.team ul li,
.blog-posts ul li {
  flex: 1 0 220px;
  background: var(--color-card);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-xs);
  padding: 26px 22px 22px 22px;
  margin-bottom: 20px;
  position: relative;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
  transition: box-shadow 0.2s, transform 0.18s;
}
.features ul li:hover, .features ul li:focus-within,
.services ul li:hover, .services ul li:focus-within,
.blog-posts ul li:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px) scale(1.015);
  z-index: 3;
}
.features ul li img {
  width: 48px; height: 48px; margin-bottom: 6px;
}
.features ul li h3 {
  font-size: 1.16rem;
}
.features ul li p {
  font-size: 1.05rem;
  color: var(--color-secondary);
}
.services ul li h3 {
  color: var(--brand-primary);
  margin-bottom: 7px;
}
.services ul ul {
  gap: 6px;
  margin-top: 2px;
  margin-bottom: 0;
}
.services ul ul li {
  box-shadow: none;
  background: none;
  padding: 0 0 0 18px;
  margin-bottom: 6px;
  position: relative;
  min-width: unset;
  align-items: flex-start;
  font-size: 0.96rem;
}
.services ul ul li:before {
  content: "• ";
  color: var(--brand-primary);
  margin-right: 5px;
  font-family: var(--font-display);
}

@media (max-width: 900px) {
  .features ul,
  .services ul,
  .about ul,
  .pricing ul,
  .team ul,
  .blog-posts ul {
    gap: 14px;
  }
  .features ul li, .services ul li,
  .about ul li, .pricing ul li, .team ul li {
    min-width:180px;
    padding:20px 12px;
  }
}
@media (max-width: 600px) {
  .features ul,
  .services ul,
  .about ul,
  .pricing ul,
  .team ul,
  .blog-posts ul {
    flex-direction: column;
    gap: 16px;
  }
  .features ul li, .services ul li,
  .about ul li, .pricing ul li, .team ul li, .blog-posts ul li {
    width: 100%; min-width: 0;
    padding:14px 10px;
  }
}

/* ===================
    TESTIMONIALS
   =================== */
.testimonials .content-wrapper {
  gap: 28px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  background: #ffffff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.18s;
  border-left: 4px solid var(--brand-primary);
  color: #222;
}
.testimonial-card p {
  font-style: italic;
  font-size: 1.13rem;
  color: #232324;
  margin-bottom: 4px;
}
.testimonial-card span {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--brand-primary);
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: var(--shadow-md);
  background: #f7f7f7;
  transform: translateY(-3px) scale(1.012);
}
@media(max-width:600px){
  .testimonial-card{
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 10px;
  }
}

/* ===================
     CTA BANNERS
   =================== */
.cta {
  margin-bottom: 0;
}
.cta .cta-banner {
  background: var(--color-bg-dark);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  justify-content: center;
}
.cta .cta-banner h2 {
  color: #fff;
  font-size:2rem;
}
.cta .cta, .cta .cta.primary, .cta .cta.secondary {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.08rem;
  padding: 13px 32px;
  border-radius: var(--radius-md);
  letter-spacing: 0.02em;
  box-shadow: var(--shadow-xs);
  background: var(--brand-primary);
  color: #fff;
  border:none;
  margin-top:10px;
  cursor: pointer;
  transition: background 0.22s, box-shadow 0.22s, color 0.18s;
}
.cta .cta.secondary {
  background: #fff;
  color: var(--brand-primary);
  border:1.5px solid var(--brand-primary);
}
.cta .cta:hover, .cta .cta:focus {
  background: var(--brand-secondary);
  color: #181a1b;
  box-shadow: var(--shadow-md);
}
@media (max-width:600px) {
  .cta .cta-banner {
    padding:23px 9px;
    border-radius:var(--radius-md);
  }
  .cta .cta, .cta .cta.primary, .cta .cta.secondary {
    width:100%;
    padding:12px 0;
  }
}

/* ===================
      PRICING TABLES
   =================== */
.pricing table {
  width: 100%;
  background: var(--color-bg);
  border-collapse: collapse;
  margin-bottom: 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xs);
  overflow: hidden;
}
.pricing th, .pricing td {
  padding: 16px 14px;
  text-align: left;
  font-size: 1rem;
  color: var(--color-primary);
}
.pricing th {
  background: var(--color-bg-dark);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.11rem;
}
.pricing tr:nth-child(even) td {
  background: #f0f0f0;
}
.pricing tr:nth-child(odd) td {
  background: #fafbfc;
}
.pricing tbody tr:hover td {
  background: #ebebeb;
  color: var(--color-primary);
}
@media(max-width:600px){
  .pricing th, .pricing td{
    padding:10px 5px;
    font-size:0.96rem;
  }
}

/* ===================
     BLOG POSTS, NEWSLETTER & SEARCH
   =================== */
.blog-posts ul li {
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius-md);
  padding: 26px 20px 15px 20px;
  background: var(--color-card);
  margin-bottom: 20px;
}
.blog-posts ul li h3 {
  font-size:1.17rem;
  color:var(--color-primary);
}
.blog-posts ul li p {
  font-size: 1.01rem;
  margin-bottom: 12px;
}
.blog-posts ul li a {
  color: var(--brand-primary);
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.18s;
}
.blog-posts ul li a:hover, .blog-posts ul li a:focus {
  color: var(--brand-secondary);
}
.categories-list {
  margin: 22px 0 4px 0;
  color: var(--color-secondary);
  font-size: 1rem;
}
/* Search input */
#search {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  font-size: 1rem;
  transition: border 0.19s;
}
#search:focus {
  border-color: var(--brand-primary);
}

/* Newsletter Form */
.newsletter form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 420px;
  margin-top: 10px;
}
.newsletter input[type="email"] {
  border:1.5px solid var(--color-border);
  padding: 13px 10px;
  border-radius: var(--radius-md);
  font-size: 1rem;
  transition: border 0.2s;
}
.newsletter input[type="email"]:focus {
  border: 1.5px solid var(--brand-primary);
}
.newsletter .cta {
  align-self: flex-start;
}
.newsletter small {
  color: var(--color-secondary);
  margin-bottom:0;
}

/* ===================
      ABOUT, TEAM,
      CONTACT, FAQ
   =================== */
.text-section, .contact-info {
  margin-bottom: 22px;
}
.text-section ul, .contact-info ul {
  margin-top: 0;
  gap: 9px;
  flex-wrap: wrap;
}
.text-section ul li, .contact-info ul li {
  padding-left: 18px;
  position: relative;
  color: var(--color-secondary);
  font-size: 1rem;
}
.text-section ul li:before, .contact-info ul li:before {
  content: '– ';
  color: var(--brand-primary);
  font-weight:700;
  position: absolute;
  left: 0;
}
.map {
  padding:12px 0 0 0;
  color:var(--color-secondary);
  font-size:1rem;
}
.faq .content-wrapper > div {
  margin-bottom: 21px;
  background: var(--color-card);
  padding:18px 16px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-xs);
}
.faq h3 {
  margin-bottom: 6px;
  color: var(--brand-primary);
}

@media(max-width:600px){
  .faq .content-wrapper > div {padding:12px 8px;}
}

/* ===================
         LEGAL
   =================== */
.legal {
  background: #fafbfc;
}
.legal .content-wrapper h1,
.legal .content-wrapper h2 {
  color: var(--brand-primary);
}
.legal .content-wrapper ul {
  margin-left: 0;
  gap: 8px;
}
.legal .content-wrapper ul li {
  font-size: 1rem;
  padding-left: 17px;
  position: relative;
  color: var(--color-secondary);
}
.legal .content-wrapper ul li:before {
  content: '\2022';
  position:absolute; left:0; color: var(--brand-primary);
}

/* Thank You  */
.thank-you .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 18px;
}
.thank-you .cta {
  margin-top: 18px;
}

/* ===============
   FOOTER
   =============== */
footer {
  background: var(--color-bg-dark);
  color: #fff;
  padding: 64px 0 18px 0;
  width: 100%;
  box-shadow: 0 -2px 8px rgba(12,13,14,0.08);
  font-size: 1.04rem;
}
footer .container {
  padding-bottom: 7px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
footer .content-wrapper > div {
  flex: 1 1 200px;
  min-width: 170px;
  margin-bottom: 20px;
}
footer a {
  color: #fff;
  transition: color 0.18s;
}
footer a:hover, footer a:focus {
  color: var(--brand-secondary);
  text-decoration: underline;
}
footer h4 {
  color: var(--brand-secondary);
  margin-bottom: 8px;
  font-size:1.05rem;
  font-weight: 600;
}
footer ul li {
  margin-bottom: 8px;
}
footer .social-media-links {
  display: flex;
  gap: 16px;
  margin: 14px 0 13px 0;
}
footer .social-media-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: #212226;
  border-radius: 50%;
  transition: background 0.16s;
}
footer .social-media-links a:hover {
  background: var(--brand-primary);
}
footer .social-media-links img {
  width: 20px;
  height: 20px;
}
footer .copyright {
  margin-top: 24px;
  text-align: center;
  color: #bcbcbc;
}

@media (max-width: 900px) {
  footer .content-wrapper {
    flex-direction: column;
    gap:12px;
  }
  footer .container {
    padding-bottom: 0;
  }
  footer{
    padding:30px 0 12px 0;
    font-size:0.98rem;
  }
}

/* ===============================
   COOKIE BANNER & MODAL
   =============================== */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #232324f2;
  color: #fff;
  padding: 22px 25px 22px 25px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  z-index: 1200;
  box-shadow: 0 -1px 10px rgba(24,24,24,0.18);
  animation: cookiefadein 0.6s cubic-bezier(.60,.03,.67,1.04);
}
@keyframes cookiefadein {
  from {transform: translateY(70px); opacity:0;}
  to {transform: translateY(0); opacity:1;}
}
.cookie-consent-banner .cookie-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.cookie-consent-banner button {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  padding: 11px 28px;
  border-radius: var(--radius-md);
  border: none;
  margin-right: 7px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.2s;
  margin-bottom: 0;
}
.cookie-consent-banner .cookie-accept {
  background: var(--brand-primary);
  color: #fff;
  box-shadow: var(--shadow-xs);
}
.cookie-consent-banner .cookie-accept:hover, .cookie-consent-banner .cookie-accept:focus{
  background: var(--brand-secondary);
  color:var(--color-primary);
  box-shadow: var(--shadow-md);
}
.cookie-consent-banner .cookie-reject {
  background: #fff;
  color: var(--brand-primary);
  border: 1.5px solid var(--brand-primary);
}
.cookie-consent-banner .cookie-reject:hover, .cookie-consent-banner .cookie-reject:focus{
  background: var(--brand-primary);
  color: #fff;
}
.cookie-consent-banner .cookie-prefs {
  background: transparent;
  color: var(--brand-secondary);
  text-decoration: underline;
  box-shadow: none;
}
.cookie-consent-banner .cookie-prefs:hover, .cookie-consent-banner .cookie-prefs:focus{
  color: #fff;
  background: var(--brand-secondary);
  text-decoration: none;
}

@media(max-width:600px){
  .cookie-consent-banner {
    padding:16px 8px 16px 8px;
    gap:11px;
  }
  .cookie-consent-banner .cookie-btns {
    gap:8px;
  }
  .cookie-consent-banner button{
    padding:9px 13px;
    font-size:0.96rem;
  }
}

/* ===========================
      COOKIE SETTINGS MODAL
   =========================== */
.cookie-modal-overlay {
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.65);
  display:flex;
  justify-content:center;
  align-items:center;
  z-index:1600;
  animation:cookiefadein 0.38s cubic-bezier(.60,.03,.67,1.04);
}
.cookie-modal {
  background: #fff;
  color: var(--color-primary);
  border-radius: var(--radius-lg);
  max-width: 460px;
  width: 90vw;
  padding: 28px 36px 35px 36px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 22px;
  position:relative;
}
.cookie-modal h2 {
  color: var(--brand-primary);
  font-size: 1.3rem;
  margin-bottom: 8px;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px solid var(--color-border);
}
.cookie-modal .cookie-label {
  color: var(--color-primary);
}
.cookie-modal .cookie-toggle {
  width: 40px;
  height: 22px;
  background: #e8e8e8;
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.cookie-modal .cookie-toggle[aria-checked="true"] {
  background: var(--brand-secondary);
}
.cookie-modal .cookie-toggle .cookie-switch {
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.2s, box-shadow 0.24s;
  box-shadow:0 2px 4px rgba(0,0,0,0.10);
  position: absolute;
  left: 2px;
}
.cookie-modal .cookie-toggle[aria-checked="true"] .cookie-switch {
  transform: translateX(18px);
}
.cookie-modal .cookie-essential {
  opacity: 0.60;
  cursor: not-allowed;
}
.cookie-modal .cookie-essential .cookie-switch {
  box-shadow:none;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 16px;
  margin-top: 18px;
  justify-content: flex-end;
}
.cookie-modal .cookie-modal-actions button {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  padding: 9px 24px;
  border-radius: var(--radius-md);
  cursor: pointer;
  border: none;
  transition: background 0.18s, color 0.18s;
}
.cookie-modal .cookie-modal-actions .cookie-accept {
  background: var(--brand-primary);
  color: #fff;
}
.cookie-modal .cookie-modal-actions .cookie-accept:hover, 
.cookie-modal .cookie-modal-actions .cookie-accept:focus {
  background: var(--brand-secondary);
  color: #181a1b;
}
.cookie-modal .cookie-modal-actions .cookie-reject {
  background: #f7f7f7;
  color: var(--brand-primary);
  border: 1px solid var(--brand-primary);
}
.cookie-modal .cookie-modal-actions .cookie-reject:hover,
.cookie-modal .cookie-modal-actions .cookie-reject:focus {
  background: var(--brand-primary);
  color:#fff;
}
.cookie-modal .cookie-modal-close {
  position:absolute;
  top:15px; right:18px;
  background:none;
  border:none;
  color: #6c6c6c;
  font-size:1.1rem;
  cursor:pointer;
  transition: color 0.18s;
}
.cookie-modal .cookie-modal-close:hover {
  color:#222;
}
@media(max-width:480px){
  .cookie-modal {padding:18px 7px 24px 7px;}
  .cookie-modal .cookie-modal-actions {
    gap:7px;
  }
  .cookie-modal .cookie-modal-close{right:9px;top:7px;}
}

/* ===================
     GENERAL BUTTONS
   =================== */
button, .btn {
  font-family: var(--font-display);
  background: var(--brand-primary);
  color: #fff;
  padding: 10px 26px;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-xs);
  transition: background 0.2s, color 0.18s, box-shadow 0.18s, border 0.18s;
  margin-bottom: 0;
}
button:hover, .btn:hover, button:focus, .btn:focus {
  background: var(--brand-secondary);
  color: #181a1b;
  box-shadow: var(--shadow-md);
}

/* Disable button state */
button[disabled], .btn[disabled] {
  background: var(--color-disabled) !important;
  color: #fff !important;
  cursor: not-allowed;
  box-shadow: none;
  border: none;
}

/* ===============
   MICROINTERACTIONS
   =============== */
a, button, .btn, .cta, input, select, textarea {
  transition: background 0.20s, color 0.18s, box-shadow 0.18s, border 0.18s;
}

/* ===============
   SPACING UTILITIES & FLEX PATTERNS
   =============== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--color-card);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xs);
  padding: 26px 24px;
  transition: box-shadow 0.18s;
}
.card:hover, .card:focus-within {
  box-shadow: var(--shadow-md);
}
.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;
}

@media (max-width:900px) {
  .content-grid {
    gap: 13px;
  }
  .card-container {
    gap: 13px;
  }
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .content-grid {
    flex-direction: column;
    gap: 12px;
  }
  .card-container {
    flex-direction: column;
    gap: 11px;
  }
}

/* ==============
   UTILITY CLASSES
   ============== */
.hide {
  display: none !important;
}
.invisible {
  visibility: hidden;
}
.text-center {
  text-align: center !important;
}
.mt-2 {margin-top:16px;}
.mt-3 {margin-top:24px;}
.mt-4 {margin-top:36px;}
.mb-2 {margin-bottom:16px;}
.mb-3 {margin-bottom:24px;}
.mb-4 {margin-bottom:36px;}

/* ======================
   FOCUS VISIBILITY
   ====================== */
:focus-visible {
  outline: 2px solid var(--brand-primary);
  outline-offset: 2px;
}

/* ======================
   CUSTOM SCROLL BAR
   ====================== */
::-webkit-scrollbar {width:8px; background:#eee;}
::-webkit-scrollbar-thumb {
  background: #d2d3d4;
  border-radius: var(--radius-md);
}

/* =================
   PRINT STYLES
   ================= */
@media print {
  header, footer, .cookie-consent-banner, .mobile-menu { display:none!important; }
  body {color:#000;background:#fff;}
}
