/* Silent Road Consulting: style.css - Geometric Structured Design (Flex-Only) */

/* --- 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;
}

html { scroll-behavior: smooth; }

body {
  min-height: 100vh;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #12376B;
  background: #F0F4F7;
  line-height: 1.6;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #12376B;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; letter-spacing: -2px; }
h2 { font-size: 2rem; letter-spacing: -1.2px; }
h3 { font-size: 1.3rem; font-weight: 600; }

p, ul, ol, table, .container > * { margin-bottom: 1.125em; }

ul, ol { padding-left: 1.5em; }
li { margin-bottom: 0.6em; }

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}

/* --- BRAND COLORS --- */
:root {
  --primary: #12376B;
  --secondary: #829AB1;
  --accent: #F0F4F7;
  --white: #fff;
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Open Sans', Arial, Helvetica, sans-serif;
  --focus: #3852a6;
  --shadow-1: 0 2px 12px rgba(18,55,107,0.06);
  --shadow-2: 0 4px 20px rgba(18,55,107,0.12);
  --card-radius: 12px;
  --btn-radius: 24px;
  --section-radius: 44px;
  --transition: 0.2s cubic-bezier(.7,.4,.2,1);
}

/* --- GEOMETRIC STRUCTURED TYPOGRAPHY --- */
body {
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--accent);
  color: var(--primary);
  letter-spacing: 0.02em;
}
h1, h2, h3 {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 20, "wdth" 80;
  text-transform: none;
}
h1, h2 { letter-spacing: -1px; }
h1 { font-size: 2.2rem; }
h2 { font-size: 1.55rem; }
h3 { font-size: 1.15rem; }

@media (min-width: 700px){
  h1 { font-size: 2.8rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.22rem; }
}

strong, b { font-weight: 700; color: var(--primary); }

/* --- MAIN NAVIGATION --- */
header {
  box-shadow: var(--shadow-1);
  background: var(--white);
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 900;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 0.5em 0;
  justify-content: flex-start;
  font-family: var(--font-display);
  font-weight: 500;
}
.main-nav > a {
  color: var(--primary);
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 1rem;
  transition: background var(--transition), color var(--transition);
  letter-spacing: 0.05em;
}
.main-nav > a.cta {
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
  border-radius: var(--btn-radius);
  box-shadow: 0 2px 12px rgba(18,55,107,0.10);
  margin-left: auto;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
}
.main-nav > a.cta:hover, .main-nav > a.cta:focus {
  background: var(--secondary);
  color: var(--primary);
  box-shadow: 0 4px 20px rgba(18,55,107,0.17);
}
.main-nav > a:hover, .main-nav > a:focus {
  background: var(--accent);
  color: var(--focus);
}
.main-nav > a > img {
  height: 40px;
  width: auto;
  margin-right: 20px;
  vertical-align: middle;
}

/* --- MOBILE MENU & BURGER TOGGLE --- */
.mobile-menu-toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  padding: 6px 14px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 8px;
  margin-left: auto;
  transition: background var(--transition), color var(--transition);
  z-index: 1002;
  cursor: pointer;
}
.mobile-menu-toggle:focus { outline: 2px solid var(--focus); }

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

.mobile-menu {
  position: fixed;
  z-index: 1100;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--white);
  box-shadow: 0 8px 32px rgba(18,55,107,0.22);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  transform: translateX(-100vw);
  transition: transform 0.32s cubic-bezier(.7,.4,.28,1);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.2rem;
  line-height: 1;
  margin: 24px 36px 0 0;
  background: transparent;
  color: var(--primary);
  border: none;
  cursor: pointer;
  padding: 4px 8px;
  transition: color var(--transition);
}
.mobile-menu-close:focus {
  color: var(--focus);
  outline: 2px solid var(--focus);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  margin-top: 54px;
}
.mobile-nav a {
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  padding: 14px 28px;
  text-decoration: none;
  border-radius: var(--btn-radius);
  transition: background var(--transition), color var(--transition);
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--accent);
  color: var(--focus);
}

/* --- HERO SECTION --- */
.hero {
  background: linear-gradient(88deg, var(--accent) 70%, #EAF0F6 100%);
  border-radius: 0 0 var(--section-radius) var(--section-radius);
  box-shadow: var(--shadow-1);
  margin-bottom: 60px; padding: 56px 0 44px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero .container {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  max-width: 580px;
}
.hero .cta {
  margin-top: 14px;
  align-self: flex-start;
}

/* --- GEOMETRIC STRUCTURED LAYOUT HELPERS --- */
.section {
  margin-bottom: 60px; 
  padding: 40px 20px;
  border-radius: var(--section-radius);
  background: #fff;
  box-shadow: 0 2px 12px rgba(18,55,107,0.04);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative; /* only for inner embellishments */
  background: #fff;
  box-shadow: var(--shadow-1);
  border-radius: var(--card-radius);
  padding: 24px 20px;
  flex: 1 1 280px;
  min-width: 260px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 24px rgba(18,55,107,0.18);
  transform: translateY(-5px) scale(1.012);
}
.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: 12px;
  padding: 20px;
  margin-bottom: 24px;
  border-radius: var(--card-radius);
  background: #F6F8FA;
  box-shadow: 0 3px 18px rgba(18,55,107,0.12);
  border-left: 5px solid var(--secondary);
  max-width: 540px;
  min-width: 250px;
  color: #1a253b;
  font-size: 1.08rem;
}
.testimonial-card strong {
  color: #12376B;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- FEATURES SECTION / SERVICE CARDS --- */
.features {
  background: var(--white);
  border-radius: var(--section-radius);
  margin-bottom: 60px;
  padding: 40px 0 36px 0;
  box-shadow: var(--shadow-1);
}
.features .content-wrapper {
  margin-top: 26px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
}
.feature {
  background: var(--accent);
  border-radius: var(--card-radius);
  box-shadow: var(--shadow-1);
  flex: 1 1 210px;
  min-width: 220px;
  max-width: 265px;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  border-bottom: 6px solid var(--primary);
  transition: box-shadow var(--transition), border-color var(--transition);
}
.feature:hover, .feature:focus-within {
  border-bottom: 6px solid var(--focus);
  box-shadow: 0 6px 24px rgba(18,55,107,0.16);
}
.feature img {
  width: 38px; height: 38px; margin-bottom: 10px;
}
.feature h3 {
  color: var(--primary);
  font-size: 1.1rem;
  margin-bottom: 4px;
}
.feature p {
  font-size: 1rem;
  font-family: var(--font-body);
  color: #213e60;
  margin-bottom: 0;
}

/* --- CTA BUTTONS --- */
.cta {
  display: inline-block;
  background: var(--primary);
  color: var(--white) !important;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.06rem;
  letter-spacing: 0.09em;
  border: none;
  border-radius: var(--btn-radius);
  padding: 14px 34px;
  box-shadow: var(--shadow-2);
  text-decoration: none;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition), transform var(--transition);
  cursor: pointer;
}
.cta:hover, .cta:focus {
  background: var(--secondary);
  color: var(--primary) !important;
  outline: 2px solid var(--focus);
  transform: translateY(-2px) scale(1.01);
}

/* --- ABOUT / TEAM --- */
.about, .about-preview, .why-choose, .team {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: var(--section-radius);
  background: var(--white);
  box-shadow: var(--shadow-1);
}
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.team-member {
  background: var(--accent);
  border-radius: var(--card-radius);
  box-shadow: var(--shadow-1);
  flex: 1 1 220px; min-width: 220px; max-width: 285px;
  padding: 26px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 5px solid var(--primary);
}
.team-member h3 {
  margin-bottom: 4px; font-size: 1.10rem;
}
.team-member span {
  font-size: 0.97rem;
  color: var(--secondary);
  margin-top: 2px;
}

/* --- PROCESS / SCENARIOS --- */
.process, .scenarios, .benefits {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: var(--section-radius);
  background: #fff;
  box-shadow: var(--shadow-1);
}
.process ol {
  counter-reset: step;
  list-style: none;
  padding: 0 0 0 6px;
}
.process ol li {
  counter-increment: step;
  position: relative;
  padding-left: 38px;
  margin-bottom: 18px;
  min-height: 32px;
  font-size: 1.02rem;
}
.process ol li:before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  background: var(--primary);
  color: var(--white);
  border-radius: 7px;
  display: flex;
  align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(18,55,107,0.09);
}

/* --- PRICING TABLE --- */
.pricing-table {
  border-collapse: collapse;
  width: 100%;
  background: var(--accent);
  border-radius: 16px;
  box-shadow: var(--shadow-1);
  overflow: hidden;
  margin-top: 24px;
  margin-bottom: 20px;
}
.pricing-table th,
.pricing-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid #DAE2EA;
  font-size: 1rem;
}
.pricing-table th {
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}
.service-price {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-display);
  padding: 5px 16px;
  border-radius: var(--btn-radius);
  font-size: 1rem;
  margin-top: 10px;
}

/* --- RESOURCES / NEWS --- */
.helpful-resources, .updates {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: var(--section-radius);
  background: var(--white);
  box-shadow: var(--shadow-1);
}
.news-article {
  background: var(--accent);
  border-radius: var(--card-radius);
  box-shadow: 0 1px 10px rgba(18,55,107,0.06);
  padding: 20px 18px;
  margin-bottom: 20px;
  transition: box-shadow var(--transition);
}
.news-article:hover {
  box-shadow: 0 3px 20px rgba(18,55,107,0.13);
}
.news-article a {
  color: var(--primary);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: underline;
  transition: color var(--transition);
}
.news-article a:hover,
.news-article a:focus { color: var(--focus); }

/* --- CONTACT PAGE --- */
.contact-section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  box-shadow: var(--shadow-1);
  border-radius: var(--section-radius);
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-details {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
}
.contact-details li {
  margin-bottom: 10px;
  font-size: 1.03rem;
}
.contact-details a {
  color: var(--primary);
  text-decoration: underline;
  word-break: break-all;
}
.map-placeholder {
  background: var(--accent);
  border: 2px dashed var(--secondary);
  border-radius: var(--card-radius);
  padding: 16px 12px;
  color: var(--secondary);
  font-size: 0.98rem;
  font-style: italic;
}

/* --- FOOTER --- */
footer {
  background: var(--primary);
  color: var(--white);
  padding: 28px 0 18px 0;
  border-radius: var(--section-radius) var(--section-radius) 0 0;
  box-shadow: 0 -2px 12px rgba(18,55,107,0.09);
  margin-top: 38px;
}
.footer-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.01rem;
  text-decoration: none;
  padding: 7px 14px;
  border-radius: 4px;
  transition: background var(--transition), color var(--transition);
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--secondary);
  color: var(--primary);
}
.footer-info {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: center;
  font-size: 0.99rem;
  flex-wrap: wrap;
}
.footer-info img {
  width: 38px;
  height: 38px;
  margin-right: 8px;
}

/* --- CTA Section / Final CTA --- */
.final-cta, .cta-section, .thank-you-section {
  margin-bottom: 60px;
  padding: 36px 20px 44px 20px;
  background: var(--white);
  border-radius: var(--section-radius);
  box-shadow: var(--shadow-1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.final-cta .container, .cta-section .container, .thank-you-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.final-cta .content-wrapper, .cta-section .content-wrapper, .thank-you-section .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  max-width: 650px;
}

/* --- POLICIES / LEGAL PAGES --- */
.privacy-policy, .gdpr-section, .cookies-policy-section, .terms-of-use-section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--white);
  border-radius: var(--section-radius);
  box-shadow: var(--shadow-1);
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1024px) {
  .container { max-width: 93vw; }
  .feature-grid, .team-grid { gap: 16px; }
}
@media (max-width: 900px) {
  .feature-grid, .team-grid, .content-grid {
    flex-wrap: wrap;
    gap: 16px;
    justify-content: flex-start;
  }
}
@media (max-width: 768px) {
  .hero, .about, .about-preview, .why-choose, .team, .features,
  .process, .scenarios, .benefits, .helpful-resources, .updates,
  .contact-section, .final-cta, .cta-section, .thank-you-section,
  .privacy-policy, .gdpr-section, .cookies-policy-section, .terms-of-use-section {
    padding: 30px 7px;
    margin-bottom: 32px;
    border-radius: 22px;
  }
  .hero .container, .final-cta .container, .cta-section .container {
    max-width: 99vw;
    padding: 0 0;
  }
  .main-nav { display: none; }
  .feature, .card, .team-member, .testimonial-card {
    min-width: 80vw;
    max-width: 98vw;
    flex: 1 1 100%;
  }
  .feature-grid, .team-grid, .content-grid {
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
  }
  .testimonial-card {
    margin-bottom: 20px;
    padding-left: 13px;
    padding-right: 13px;
  }
  .text-image-section, .content-wrapper {
    flex-direction: column !important;
    gap: 16px;
    align-items: flex-start !important;
  }
}
@media (max-width: 480px) {
  h1 { font-size: 1.4rem; }
  h2 { font-size: 1.15rem; }
  h3 { font-size: 1.01rem; }
  .card, .feature, .team-member, .testimonial-card {
    min-width: 84vw;
    padding: 15px 8px;
    font-size: 0.99rem;
  }
  .footer-info img {
    width: 28px; height: 28px;
  }
}

/* --- TABLE STYLE (mobile) --- */
@media (max-width: 600px) {
  .pricing-table, .pricing-table tbody, .pricing-table tr, .pricing-table td, .pricing-table th {
    display: block;
    width: 100%;
  }
  .pricing-table th { text-align: left; }
  .pricing-table tr { border-bottom: 2px solid #e2e8f0; margin-bottom: 10px; }
  .pricing-table td {
    font-size: 0.98rem;
    padding: 10px 10px;
    border-bottom: none;
  }
}


/* --- MICROINTERACTIONS & EFFECTS --- */
a, button, .cta, .feature, .card, .main-nav a, .footer-nav a, .mobile-nav a {
  transition: background var(--transition), color var(--transition), box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}

input, textarea, select {
  border: 1.5px solid var(--secondary);
  padding: 9px 16px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  width: 100%;
  margin-bottom: 20px;
  background: #fff;
  transition: border var(--transition), box-shadow var(--transition);
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid var(--primary);
  outline: none;
  box-shadow: 0 0 0 2px #B6C6DB;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 1200;
  background: var(--white);
  box-shadow: 0 -2px 20px rgba(18,55,107,.14);
  border-radius: 22px 22px 0 0;
  padding: 24px 18px 20px 18px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 22px;
  justify-content: space-between;
  max-width: 440px;
  margin: 0 auto;
  transform: translateY(110%);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(.7,.4,.2,1), opacity 0.24s linear;
}
.cookie-banner.visible {
  transform: translateY(0);
  opacity: 1;
}
.cookie-banner p {
  color: var(--primary);
  font-size: 0.97rem;
  margin-bottom: 0;
  flex: 1 1 54%;
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 12px;
  margin-left: 18px;
}
.cookie-banner button {
  appearance: none;
  border: none;
  outline: none;
  border-radius: var(--btn-radius);
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 600;
  padding: 9px 21px;
  cursor: pointer;
  margin-bottom: 0;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
}
.cookie-banner button.cookie-settings {
  background: var(--secondary);
  color: var(--primary);
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--focus);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(18,55,107,0.13);
  outline: 2px solid var(--focus);
}

/* --- COOKIE PREFERENCES MODAL --- */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  z-index: 1300;
  background: rgba(18,55,107,0.11);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s cubic-bezier(.7,.4,.2,1);
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal-content {
  background: var(--white);
  border-radius: 32px;
  box-shadow: 0 5px 40px rgba(18,55,107,0.21);
  min-width: 340px;
  max-width: 97vw;
  padding: 36px 26px 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  animation: fadeInUp 0.42s cubic-bezier(.7,.4,.22,1);
}
.cookie-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cookie-modal-close {
  font-size: 1.7rem;
  color: var(--primary);
  background: transparent;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  padding: 2px 7px;
  transition: background var(--transition), color var(--transition);
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: var(--accent);
  color: var(--focus);
  outline: 2px solid var(--focus);
}
.cookie-modal-categories {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}
.cookie-toggle-row {
  display: flex;
  align-items: center;
  gap: 17px;
  font-size: 1rem;
  font-family: var(--font-body);
  justify-content: space-between;
}
.cookie-toggle-row label {
  font-weight: 600;
}
.switch {
  position: relative;
  display: inline-block;
  width: 38px;
  height: 20px;
}
.switch input { opacity:0; width:0; height:0; }
.slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: #ccc;
  border-radius: 16px;
  transition: background 0.18s;
}
.slider:before {
  position: absolute;
  content: "";
  height: 16px; width: 16px;
  left: 2px; bottom: 2px;
  background-color: #fff;
  border-radius: 17px;
  transition: transform 0.18s;
}
input:checked + .slider {
  background-color: var(--primary);
}
input:checked + .slider:before {
  transform: translateX(18px);
}

.cookie-modal-btns {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}
.cookie-modal-btns button {
  border-radius: var(--btn-radius);
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  padding: 8px 22px;
  border: none;
  box-shadow: 0 1px 7px rgba(18,55,107,0.11);
  transition: background var(--transition), color var(--transition);
  cursor: pointer;
}
.cookie-modal-btns button.settings-cancel {
  background: var(--secondary);
  color: var(--primary);
}
.cookie-modal-btns button:hover, .cookie-modal-btns button:focus {
  background: var(--focus);
  color: var(--white);
}

/* --- ANIMATION KEYFRAMES --- */
@keyframes fadeInUp {
  0% { transform: translateY(60px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

/* --- ACCESSIBILITY / FOCUS STYLE --- */
a:focus, button:focus, .cta:focus, .footer-nav a:focus, .mobile-nav a:focus {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
}

/* --- SCROLLBAR --- */
::-webkit-scrollbar { width: 7px; background: #e2e8f0; }
::-webkit-scrollbar-thumb { background: #b7c6db; border-radius: 8px; }

/* END style.css */
