/* --- 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;
  background: transparent;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  line-height: 1.6;
  background: #F9F7F4;
  color: #203A51;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #14769C;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #FD3D7B;
  outline: none;
}
ul,ol { list-style: none; }

/* --- BRAND CSS VARIABLES --- */
:root {
  --color-primary: #203A51;
  --color-secondary: #14769C;
  --color-accent: #F9F7F4;
  --color-electric-blue: #1BCDFE;
  --color-yellow: #FFD600;
  --color-hot-pink: #FD3D7B;
  --color-green: #04C773;
  --color-dark: #10202F;
  --color-shadow: rgba(32,58,81,0.10);
  --border-radius: 18px;
}

/* --- TYPOGRAPHY SCALE & FONTS --- */
h1, .h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--color-primary);
  letter-spacing: -1.5px;
  margin-bottom: 24px;
  line-height: 1.12;
}
h2, .h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-secondary);
  margin-bottom: 20px;
  letter-spacing: -1px;
  line-height: 1.16;
}
h3, .h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 16px;
  line-height: 1.2;
}
p, li, blockquote {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 12px;
}
blockquote {
  font-style: italic;
  background: var(--color-accent);
  border-left: 5px solid var(--color-electric-blue);
  padding: 14px 24px;
  border-radius: var(--border-radius);
  margin-bottom: 12px;
}
strong { font-weight: 700; color: var(--color-primary); }
.text-section strong { color: var(--color-secondary); }

@media (max-width: 768px){
  h1, .h1 { font-size: 2rem; }
  h2, .h2 { font-size: 1.5rem; }
  h3, .h3 { font-size: 1.125rem; }
}

/* --- CONTAINER & SPACING --- */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 768px){
  .section {
    padding: 28px 10px;
    margin-bottom: 36px;
  }
}

/* --- HEADER --- */
header {
  background: #fff;
  box-shadow: 0 2px 12px var(--color-shadow);
  position: relative;
  z-index: 100;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  min-height: 80px;
  padding-top: 12px;
  padding-bottom: 12px;
}
header img {
  height: 48px;
  width: auto;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: .5px;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.22s, border-bottom-color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--color-electric-blue);
  border-bottom: 2px solid var(--color-electric-blue);
}

.btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 1px;
  border: none;
  border-radius: var(--border-radius);
  padding: 12px 30px;
  margin-left: 24px;
  cursor: pointer;
  font-size: 1.08rem;
  box-shadow: 0 3px 18px var(--color-shadow);
  transition: transform .18s, box-shadow .22s, background .19s;
  background: var(--color-electric-blue);
  color: var(--color-primary);
}
.btn-primary {
  background: var(--color-electric-blue);
  color: var(--color-dark);
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--color-hot-pink);
  color: #fff;
  transform: scale(1.05);
}
.btn-secondary {
  background: var(--color-secondary);
  color: #fff;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--color-yellow);
  color: var(--color-primary);
  transform: scale(1.05);
}
.btn-tertiary {
  background: var(--color-yellow);
  color: var(--color-primary);
}
.btn-tertiary:hover, .btn-tertiary:focus {
  background: var(--color-electric-blue);
  color: #fff;
  transform: scale(1.05);
}
@media (max-width: 1000px){
  .main-nav { gap: 14px; }
  .btn { margin-left: 10px; padding: 10px 20px; }
  header img { height: 40px; }
}
@media (max-width: 768px){
  header .container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0;
  }
  .main-nav, .btn {
    display: none;
  }
  header img { height: 34px; }
}

/* --- MOBILE MENU --- */
.mobile-menu-toggle {
  display: none;
}
@media (max-width: 768px){
  .mobile-menu-toggle {
    display: block;
    background: var(--color-electric-blue);
    color: var(--color-dark);
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    font-size: 2rem;
    cursor: pointer;
    margin-left: 8px;
    z-index: 1020;
    transition: background .2s, color .2s;
  }
  .mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
    background: var(--color-primary);
    color: #fff;
  }
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(32,58,81, 0.97);
  color: #fff;
  z-index: 1100;
  transform: translateX(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.37s cubic-bezier(0.46,0.01,0.32,1), opacity 0.21s;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 20px;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: transparent;
  color: #fff;
  border: none;
  font-size: 2.2rem;
  line-height: 1;
  align-self: flex-end;
  margin-right: 24px;
  margin-bottom: 16px;
  cursor: pointer;
  z-index: 1101;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
  padding: 0 36px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.4rem;
  color: #fff;
  font-weight: 700;
  padding: 12px 0;
  text-transform: uppercase;
  border-bottom: 1.5px solid rgba(27,205,254,0.15);
  transition: color 0.22s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--color-yellow);
  background: none;
}

/* --- HERO --- */
.hero {
  background: linear-gradient(90deg, var(--color-electric-blue) 50%, var(--color-accent) 100%);
  padding: 60px 0 52px 0;
  margin-bottom: 60px;
}
.hero .container {align-items: center;}
.hero .content-wrapper {
  align-items: flex-start;
  max-width: 680px;
}
.hero h1 { color: var(--color-primary); }
.hero p {
  font-size: 1.23rem;
  color: var(--color-dark);
  margin-bottom: 30px;
  font-weight: 500;
}
.hero .btn {
  background: var(--color-hot-pink);
  color: #fff;
  font-size: 1.25rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  box-shadow: 0 5px 24px var(--color-shadow);
}
.hero .btn:hover, .hero .btn:focus {
  background: var(--color-yellow);
  color: var(--color-primary);
}
@media (max-width: 900px){
  .hero { padding: 38px 0 28px 0; }
  .hero .content-wrapper { max-width: 100%; }
}
@media (max-width: 768px){
  .hero { padding: 24px 0 20px 0; margin-bottom: 32px; }
  .hero .content-wrapper { gap: 20px; }
}

/* --- FLEX CONTAINER UTILITIES --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  margin-bottom: 20px;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 10px var(--color-shadow);
  overflow: hidden;
  transition: box-shadow .19s, transform .2s;
  position: relative;
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 36px var(--color-shadow);
  transform: translateY(-3px) scale(1.025);
}
.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;
}
@media (max-width: 768px){
  .text-image-section { flex-direction: column; gap: 18px; }
  .content-grid {
    flex-direction: column;
    gap: 20px;
  }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- FEATURES SECTION --- */
.features {
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 16px var(--color-shadow);
  margin-bottom: 60px;
  padding: 36px 18px;
  position: relative;
}
.features h2 {
  color: var(--color-hot-pink);
  font-weight: 900;
}
.features ul {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
.features ul li {
  flex: 1 1 230px;
  background: var(--color-accent);
  border-radius: var(--border-radius);
  box-shadow: 0 2px 8px var(--color-shadow);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  min-width: 220px;
  transition: background .17s, box-shadow .18s, transform .16s;
  margin-bottom: 0;
}
.features ul li:hover {
  background: var(--color-yellow);
  box-shadow: 0 6px 36px var(--color-shadow);
  transform: translateY(-2px);
}
.features ul li img {
  width: 42px;
  height: 42px;
  margin-bottom: 6px;
}
@media (max-width: 1000px) {
  .features ul { gap: 14px; }
  .features ul li { min-width: 140px; padding: 18px 12px; }
}
@media (max-width: 768px) {
  .features ul { flex-direction: column; gap: 10px; }
  .features ul li { width: 100%; margin-bottom: 0; }
}

/* --- ABOUT SAMPLE / PREVIEWS & TEXT --- */
.about-preview, .services-preview, .statistics {
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 10px var(--color-shadow);
}
.about-preview h2, .about-preview p strong {color: var(--color-electric-blue);}
.services-preview h2 { color: var(--color-green); font-weight: 900; }
.services-preview ul {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 12px;
}
.services-preview ul li {
  background: var(--color-electric-blue);
  color: var(--color-dark);
  border-radius: var(--border-radius);
  padding: 8px 20px;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
}
@media (max-width: 768px){
  .services-preview ul{ flex-direction: column; gap: 7px; }
}

/* --- TESTIMONIALS --- */
.testimonials-preview,
.testimonials,
.testimonial-highlights {
  background: var(--color-accent);
  border-radius: var(--border-radius);
  box-shadow: 0 1.5px 8px var(--color-shadow);
}
.testimonials-preview h2,
.testimonials h1,
.testimonial-highlights h2 {
  color: var(--color-hot-pink);
  font-weight: 900;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: 0 1.5px 8px var(--color-shadow);
  margin-bottom: 20px;
  border-left: 6px solid var(--color-electric-blue);
}
.testimonial-card blockquote {
  background: transparent;
  border-left: none;
  color: var(--color-primary);
  font-size: 1.12rem;
  margin-bottom: 0;
}
.testimonial-card p span {
  font-weight: 700;
  color: var(--color-hot-pink);
}
.testimonial-card p {
  color: var(--color-dark);
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-card img {
  width: 22px; height: 22px;
  display: inline-block;
  margin: 0 1.5px;
}
.testimonial-highlights blockquote {
  background: #fff;
  border-left: 4px solid var(--color-green);
  color: var(--color-dark);
  margin-bottom: 16px;
}
.testimonial-highlights blockquote span {
  display: block;
  font-weight: 700;
  margin-top: 8px;
  font-size: 1rem;
  color: var(--color-electric-blue);
}
@media (max-width: 768px){
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 15px;
  }
}

/* --- CTA BANNER --- */
.cta-banner {
  background: linear-gradient(90deg, var(--color-yellow) 65%, var(--color-electric-blue) 100%);
  border-radius: var(--border-radius);
  box-shadow: 0 2px 10px var(--color-shadow);
  padding: 36px 20px;
  display: flex;
  align-items: center;
  margin-bottom: 60px;
}
.cta-banner h2 {
  color: var(--color-primary);
  font-weight: 900;
}
.cta-banner p {
  color: var(--color-dark);
  font-weight: 500;
}
.cta-banner .btn {
  background: var(--color-primary);
  color: #fff;
  margin-top: 14px;
}
.cta-banner .btn:hover, .cta-banner .btn:focus {
  background: var(--color-hot-pink);
  color: #fff;
}
@media (max-width: 768px){
  .cta-banner { padding: 18px 8px; margin-bottom: 35px; }
}

/* --- ABOUT, MISSION, STATISTICS --- */
.about-company, .mission, .statistics, .gdpr, .privacy-policy, .terms, .cookie-policy {
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 10px var(--color-shadow);
  margin-bottom: 60px;
  padding: 42px 24px;
}
.about-company h1, .mission h2, .statistics h2,
.gdpr h1, .privacy-policy h1, .terms h1, .cookie-policy h1 {
  color: var(--color-hot-pink);
}
.statistics ul {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-bottom: 16px;
}
.statistics ul li {
  flex: 1 1 140px;
  background: var(--color-electric-blue);
  color: var(--color-dark);
  border-radius: var(--border-radius);
  padding: 16px 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0;
}
.statistics ul li strong {
  display: block;
  color: var(--color-hot-pink);
  font-size: 2rem;
}
@media (max-width: 768px){
  .statistics ul{ flex-direction: column; gap: 12px; }
}

/* --- USPs, CASE STUDY section --- */
.usp {
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 10px var(--color-shadow);
  margin-bottom: 60px;
  padding: 42px 24px;
}
.usp h1 { color: var(--color-electric-blue); }
.usp h2 { color: var(--color-hot-pink); }
.case-studies .content-wrapper { gap: 10px; }
.case-studies .text-section p strong { color: var(--color-secondary); }

/* --- CAREERS PAGE --- */
.careers, .job-offers {
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 10px var(--color-shadow);
  margin-bottom: 60px;
  padding: 40px 24px;
}
.careers h1, .job-offers h2 { color: var(--color-green); font-weight: 900;}
.job-offers ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.job-offers ul li {
  background: var(--color-electric-blue);
  color: var(--color-primary);
  border-radius: var(--border-radius);
  box-shadow: 0 1.5px 8px var(--color-shadow);
  padding: 22px 20px;
  flex: 1 1 270px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.job-offers ul li a {
  margin-top: 14px;
}
.application-instructions {
  background: var(--color-yellow);
  border-radius: var(--border-radius);
  padding: 18px 14px; 
  margin-top: 28px;
  color: var(--color-primary);
  font-size: 1rem;
  font-weight: 500;
}
@media (max-width: 768px){
  .job-offers ul {flex-direction: column; gap: 10px;}
  .job-offers ul li {width: 100%;}
}

/* --- CONTACT PAGE --- */
.contact, .contact-form, .map-section {
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 10px var(--color-shadow);
  margin-bottom: 60px;
  padding: 42px 24px;
}
.contact .text-section p, .contact-form .text-section p, .map-section .text-section p {
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact .text-section img, .contact-form .text-section img, .map-section .text-section img {
  width: 24px;
  height: 24px;
}
.privacy-note {
  background: var(--color-accent);
  color: var(--color-primary);
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 0.97rem;
}

/* --- FOOTER --- */
footer {
  background: var(--color-primary);
  color: #fff;
  padding: 38px 0 16px 0;
}
footer .container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 32px;
  justify-content: space-between;
}
.footer-brand img {
  width: 64px;
  height: 64px;
  margin-bottom: 12px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 8px;
}
.footer-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1rem;
  transition: color 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--color-yellow);
}
.footer-contact, .footer-hours {
  margin-top: 8px;
  color: #fff;
}
.footer-contact a {color: var(--color-yellow); font-weight: 700;}
.footer-contact a:hover, .footer-contact a:focus {color: var(--color-electric-blue);}
@media (max-width: 1024px){
  footer .container{ gap: 14px; }
  .footer-brand img{ width: 48px; height:48px;}
}
@media (max-width: 768px){
  footer .container {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    padding: 0 10px;
  }
}

/* --- TABLES --- */
table {
  width: 100%;
  border-collapse: collapse;
  background: #fafafa;
  margin-bottom: 24px;
  font-size: 1rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 1px 5px var(--color-shadow);
}
th, td {
  padding: 14px;
  border-bottom: 1.5px solid #e0e0e0;
  text-align: left;
}
th {
  background: var(--color-electric-blue);
  color: var(--color-primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
}
tr:last-child td { border-bottom: none; }

/* --- COOKIE CONSENT BANNER --- */
.cookie-consent-banner {
  position: fixed;
  bottom: 0; left: 0; width: 100vw;
  background: var(--color-accent);
  color: var(--color-primary);
  box-shadow: 0 -2px 18px var(--color-shadow);
  z-index: 3000;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 30px;
  font-size: 1.08rem;
  transition: transform 0.4s cubic-bezier(.91,.02,.44,1.17), opacity 0.18s;
}
.cookie-consent-banner.hide {
  transform: translateY(120%);
  opacity: 0;
}
.cookie-consent-banner .cc-buttons {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.cookie-consent-banner button {
  padding: 9px 24px;
  font-size: 1rem;
  border-radius: 8px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  cursor: pointer;
  transition: background .18s, color .18s, transform .15s;
}
.cookie-consent-banner .accept {
  background: var(--color-green);
  color: #fff;
}
.cookie-consent-banner .accept:hover, .cookie-consent-banner .accept:focus{
  background: var(--color-primary);
  color: var(--color-yellow);
}
.cookie-consent-banner .reject {
  background: var(--color-hot-pink);
  color: #fff;
}
.cookie-consent-banner .reject:hover, .cookie-consent-banner .reject:focus{
  background: var(--color-secondary);
}
.cookie-consent-banner .settings {
  background: var(--color-electric-blue);
  color: var(--color-primary);
}
.cookie-consent-banner .settings:hover, .cookie-consent-banner .settings:focus{
  background: var(--color-yellow);
  color: var(--color-dark);
}
@media (max-width: 600px){
  .cookie-consent-banner{ flex-direction: column; align-items: flex-start; padding:16px 10px; gap:12px; font-size:0.98rem;}
  .cookie-consent-banner .cc-buttons{ width: 100%; gap:8px; }
}

/* --- COOKIE MODAL POPUP --- */
.cookie-modal {
  position: fixed;
  bottom: 0; left: 50%;
  transform: translate(-50%, 100%);
  background: #fff;
  box-shadow: 0 6px 42px var(--color-shadow);
  border-radius: var(--border-radius) var(--border-radius) 0 0;
  z-index: 4020;
  max-width: 430px;
  width: 97vw;
  padding: 38px 26px 26px 26px;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.33s, opacity 0.22s;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal.active {
  transform: translate(-50%, 0);
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal h2 {
  font-size: 1.35rem;
  color: var(--color-primary);
  font-weight: 900;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  font-family: 'Roboto', Arial, sans-serif;
}
.cookie-modal input[type="checkbox"] {
  width: 21px;
  height: 21px;
  accent-color: var(--color-electric-blue);
}
.cookie-modal .cc-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 6px;
}
.cookie-modal .accept {
  background: var(--color-green);
  color: #fff;
}
.cookie-modal .accept:hover, .cookie-modal .accept:focus{ background: var(--color-primary); color: var(--color-yellow); }
.cookie-modal .reject {
  background: var(--color-hot-pink);
  color: #fff;
}
.cookie-modal .reject:hover, .cookie-modal .reject:focus{ background: var(--color-secondary); }
@media (max-width: 450px){
  .cookie-modal{padding:18px 6px 10px 6px;}
}

/* --- THANK YOU / CONFIRMATION --- */
.confirmation {
  background: #fff;
  border-radius: var(--border-radius);
  padding: 44px 26px;
  text-align: center;
  box-shadow: 0 1.5px 8px var(--color-shadow);
  margin-bottom: 60px;
  animation: bounce-intro 1.2s cubic-bezier(.6,1.3,.32,1) 0.3s both;
}
.confirmation h1 {
  color: var(--color-electric-blue);
}
@keyframes bounce-intro {
  0% {transform: translateY(60px) scale(.97); opacity: 0.1;} 
  60%{transform: translateY(-10px) scale(1.03); opacity: 1;} 
  100%{transform: translateY(0) scale(1); opacity: 1;}
}

/* --- UTILITY CLASSES --- */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-16 { margin-bottom: 16px !important; }
.mb-24 { margin-bottom: 24px !important; }
.text-center { text-align: center; }
.flex { display: flex; }
.flex-center { justify-content: center; align-items: center; }
.gap-20 { gap: 20px; }

/* --- ANIMATIONS & INTERACTIONS --- */
.btn, .card, .features ul li, .testimonial-card, .cookie-consent-banner button, .cookie-modal button {
  transition: background 0.18s, color 0.18s, box-shadow 0.19s, transform 0.18s;
}
.card:hover, .features ul li:hover, .testimonial-card:hover {
  box-shadow: 0 6px 28px var(--color-shadow);
  transform: scale(1.025) translateY(-3px);
}
.btn:active {
  transform: scale(0.97);
}

/* --- FOCUS RING ON INTERACTIVE --- */
.btn:focus, input:focus, select:focus, textarea:focus, .cookie-consent-banner button:focus, .mobile-menu-toggle:focus, .mobile-menu-close:focus {
  outline: 2px solid var(--color-yellow);
  outline-offset: 2px;
}

/* --- SCROLLBAR (native, visible on desktop) --- */
::-webkit-scrollbar {
  width: 12px;
  background: var(--color-accent);
}
::-webkit-scrollbar-thumb {
  background: var(--color-electric-blue);
  border-radius: 6px;
}

/* --- RESPONSIVE UTILITIES (TEXT REDUCE) --- */
@media (max-width: 640px){
  body {font-size:0.97rem;}
  .features ul li, .statistics ul li, .job-offers ul li {padding: 12px 8px;}
  .testimonial-card { padding: 8px; }
}
