/* ===== CSS RESET & NORMALIZE ===== */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #f8faff;
}
ol, ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
  border-style: none;
}
button {
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
}

/* ===== BRANDING: COLORS & VARIABLES ===== */
:root {
  --primary: #1F4172;
  --primary-rgb: 31, 65, 114;
  --secondary: #F9BA32;
  --accent: #FFFFFF;
  --accent-darker: #e5e5e5;
  --text-primary: #232946;
  --text-light: #ffffff;
  --electric-cyan: #11CFFF;
  --electric-pink: #FF226F;
  --electric-green: #00e07c;
  --electric-violet: #635BFF;
  --gray-bg: #f8faff;
}

/* ===== TYPE ===== */
@import url('https://fonts.googleapis.com/css?family=Montserrat:800,700,600,500,400|Roboto:400,500,700&display=swap');
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: var(--text-primary);
  font-size: 16px;
  background: var(--gray-bg);
  min-height: 100vh;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: var(--primary);
  font-weight: 800;
  letter-spacing: -0.5px;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.12;
  margin-bottom: 18px;
  color: var(--primary);
  text-shadow: 0 3px 16px rgba(var(--primary-rgb), 0.15);
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
  color: var(--electric-cyan);
}
h3 {
  font-size: 1.25rem;
  color: var(--electric-pink);
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1.1rem;
  color: var(--electric-violet);
}
p, ul, ol, li {
  font-size: 1rem;
  color: var(--text-primary);
}
p {
  margin-bottom: 18px;
}
strong, b {
  font-weight: 700;
  color: var(--secondary);
}

/* ===== LAYOUT CONTAINERS ===== */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--accent);
  border-radius: 18px;
  box-shadow: 0 0 24px 0 rgba(31,65,114,0.06);
}

/* ====== HEADER / NAV ====== */
header {
  background: var(--primary);
  box-shadow: 0 8px 32px -8px rgba(var(--primary-rgb), 0.14);
  z-index: 20;
}
header .container {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
  min-height: 72px;
}
header img {
  height: 40px;
}
nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--accent);
  transition: color 0.18s;
  letter-spacing: 0.04em;
  position: relative;
}
nav a:hover, nav a.active {
  color: var(--secondary);
}
nav a.active::after, nav a:hover::after {
  content: '';
  display: block;
  width: 60%;
  margin: 4px auto 0 auto;
  height: 3px;
  border-radius: 2px;
  background: var(--secondary);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary);
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  padding: 13px 38px;
  border-radius: 44px;
  box-shadow: 0 2px 16px 0 rgba(31,65,114,0.22);
  border: none;
  cursor: pointer;
  letter-spacing: 0.03em;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.14s;
  position: relative;
  z-index: 1;
}
.btn-primary:focus, .btn-primary:hover {
  background: var(--electric-pink);
  color: #fff;
  box-shadow: 0 4px 36px 0 rgba(255,34,111,0.22);
  text-decoration: none;
  transform: scale(1.03);
}

.mobile-menu-toggle {
  display: none;
  font-size: 2.35rem;
  color: var(--secondary);
  background: transparent;
  border: none;
  margin-left: 6px;
  transition: color 0.18s, transform 0.18s;
  z-index: 30;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  color: var(--electric-cyan);
  transform: rotate(10deg) scale(1.20);
}

/* ===== MOBILE NAV MENU ===== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(31,65,114, 0.98);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transform: translateX(100%);
  transition: opacity 0.34s, transform 0.34s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100vw;
  height: 100vh;
  overflow-y: auto;
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}
.mobile-menu-close {
  font-size: 2.2rem;
  color: var(--secondary);
  margin: 32px 0 0 24px;
  background: transparent;
  align-self: flex-start;
  border: none;
  cursor: pointer;
  z-index: 2100;
  transition: color 0.18s, transform 0.18s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: var(--electric-pink);
  transform: scale(1.1);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100vw;
  margin: 44px 0 0 0;
  padding: 18px 32px 32px 32px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.35rem;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 12px 0 6px 0;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: var(--electric-cyan);
  color: var(--primary);
}

/* ===== HERO STYLES ===== */
.hero {
  background: linear-gradient(120deg, var(--electric-cyan) 0%, var(--secondary) 100%);
  color: var(--primary);
  border-radius: 0 0 32px 32px;
  margin-bottom: 46px;
  box-shadow: 0 8px 36px rgba(31,65,114,0.12);
  padding: 38px 0 32px 0;
  min-height: 290px;
  position: relative;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 210px;
}
.hero h1 {
  color: var(--primary);
  text-shadow: 0 2px 32px var(--secondary);
}
.hero p {
  font-size: 1.18rem;
  color: var(--primary);
  margin-bottom: 24px;
}
.hero .btn-primary {
  margin-top: 8px;
  background: var(--electric-pink);
  color: #fff;
}
.hero .btn-primary:hover {
  background: var(--electric-violet);
  color: var(--accent);
}

/* ===== FEATURE GRID ===== */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
  margin-top: 12px;
}
.feature-grid li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 18px;
  padding: 24px 20px;
  background: var(--electric-cyan);
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(31,65,114,0.10);
  flex: 1 1 330px;
  min-width: 260px;
  max-width: 44%;
}
.feature-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  border-radius: 14px;
  box-shadow: 0 4px 24px 0 rgba(31,65,114,.07);
}
.feature-grid h3 {
  color: var(--electric-violet);
  font-weight: 700;
  margin-bottom: 6px;
}
.feature-grid p {
  font-size: 1rem;
}

/* ===== COURSE CARD GRID ===== */
.course-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
  justify-content: space-between;
}
.course-card {
  display: flex;
  flex-direction: column;
  background: linear-gradient(95deg, var(--accent) 75%, var(--electric-cyan) 100%);
  border-radius: 15px;
  box-shadow: 0 2px 18px -3px rgba(31,65,114,.10);
  padding: 30px 22px 24px 22px;
  margin-bottom: 20px;
  min-width: 260px;
  flex: 1 1 310px;
  position: relative;
  transition: box-shadow 0.18s, transform 0.16s, border 0.14s;
}
.course-card h3 {
  margin-bottom: 9px;
  color: var(--electric-pink);
  font-size: 1.15rem;
  font-weight: 700;
}
.course-card ul {
  margin-bottom: 6px;
  margin-left: 18px;
  list-style: disc;
}
.course-card li {
  margin-bottom: 5px;
  font-size: 0.98rem;
}
.course-card .course-price {
  color: var(--electric-green);
  font-weight: 800;
}
.course-card .btn-primary {
  margin-top: 15px;
  min-width: 60%;
  align-self: flex-start;
}
.course-card:hover, .course-card:focus-within {
  box-shadow: 0 10px 40px -4px var(--electric-cyan), 0 6px 16px 0 rgba(31,65,114,.17);
  transform: translateY(-6px) scale(1.035);
  border: 2px solid var(--electric-pink);
  z-index: 2;
}

/* ===== TESTIMONIALS ===== */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
  justify-content: flex-start;
}
.testimonial-card {
  background: var(--accent);
  color: var(--primary);
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(var(--primary-rgb), 0.09);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 30px 24px;
  min-width: 260px;
  max-width: 420px;
  flex: 1 1 310px;
  margin-bottom: 20px;
  border-left: 6px solid var(--electric-pink);
  transition: box-shadow 0.17s, border 0.12s, transform 0.15s;
}
.testimonial-card p {
  color: var(--primary);
  font-size: 1.08rem;
  line-height: 1.4;
  margin-bottom: 10px;
}
.testimonial-card .testimonial-meta {
  color: var(--electric-pink);
  font-size: 0.97rem;
  font-style: italic;
  font-family: 'Montserrat', Arial, sans-serif;
}
.testimonial-card .star-rating {
  font-size: 1.35rem;
  color: var(--secondary);
  letter-spacing: 0.09em;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px -7px var(--secondary), 0 8px 26px rgba(31,65,114,0.14);
  border-left: 6px solid var(--electric-cyan);
  transform: scale(1.030);
}

/* ===== CASE STUDY / BEFORE & AFTER ===== */
.case-study-summary {
  background: var(--accent);
  border-radius: 15px;
  box-shadow: 0 2px 14px rgba(var(--primary-rgb), 0.08);
  padding: 28px 20px 20px 28px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  border-left: 5px solid var(--electric-violet);
}
.case-study-summary h3 {
  color: var(--primary);
  margin-bottom: 9px;
  font-size: 1.12rem;
}
.progress-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 6px;
  align-items: center;
}
.progress-metrics span {
  color: var(--electric-green);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 7px;
}

/* ===== CTA SECTIONS ===== */
.cta {
  width: 100%;
  background: linear-gradient(115deg, var(--electric-pink) 12%, var(--electric-cyan) 98%);
  padding: 42px 0;
  border-radius: 28px;
  box-shadow: 0 1px 36px 0 rgba(255,34,111,0.10);
  color: var(--accent);
  margin: 60px 0 0 0;
}
.cta h2 {
  color: var(--accent);
  margin-bottom: 20px;
}
.cta .btn-primary {
  background: var(--secondary);
  color: var(--primary);
  font-size: 1.15rem;
  font-weight: 800;
  box-shadow: 0 2px 24px rgba(31,65,114,0.17);
}
.cta .btn-primary:hover {
  background: var(--accent);
  color: var(--electric-pink);
}

/* ===== FAQ LIST & ACCORDION ===== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 12px;
}
.faq-list li {
  padding: 18px 22px;
  background: var(--accent);
  border-radius: 11px;
  box-shadow: 0 2px 11px #1f41720a;
  font-size: 1rem;
  margin-bottom: 12px;
  transition: box-shadow 0.16s, background 0.16s;
}
.faq-list li strong {
  color: var(--electric-cyan);
  display: block;
  margin-bottom: 4px;
}
.faq-list li:hover {
  background: var(--electric-cyan);
  box-shadow: 0 6px 22px #11cfff23;
}

.faq-accordion > h3 {
  margin-bottom: 15px;
}
.faq-accordion > div {
  margin-bottom: 16px;
  background: var(--accent);
  padding: 16px 16px 12px 22px;
  border-radius: 9px;
  box-shadow: 0 1px 8px #1f417208;
}
.faq-accordion > div strong {
  color: var(--electric-pink);
}

/* ===== ABOUT: TEAM GRID ===== */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}
.team-member {
  background: var(--electric-cyan);
  border-radius: 13px;
  padding: 20px 16px 18px 20px;
  flex: 1 1 310px;
  min-width: 250px;
  box-shadow: 0 2px 12px #1f417219;
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 20px;
  transition: transform 0.15s, box-shadow 0.16s;
}
.team-member h3 {
  color: var(--electric-pink);
  margin-bottom: 9px;
  font-weight: 700;
}
.team-member span {
  color: var(--electric-violet);
  font-size: 0.97rem;
}
.team-member:hover {
  transform: translateY(-5px) scale(1.025);
  box-shadow: 0 5px 20px #11cfff2d;
}

/* ===== CONTACT INFO / MAP ===== */
.contact-info {
  background: var(--electric-cyan);
  border-radius: 11px;
  padding: 24px 20px;
  margin-bottom: 20px;
  font-size: 1.06rem;
  line-height: 1.45;
  font-family: 'Roboto', Arial, sans-serif;
  box-shadow: 0 2px 14px #1f417210;
}
.contact-info img {
  vertical-align: sub;
  margin-right: 7px;
  width: 20px;
}
.map-placeholder {
  background: var(--accent);
  border-radius: 11px;
  padding: 20px 20px;
  font-size: 1rem;
  box-shadow: 0 1px 14px #1f417208;
  margin-bottom: 20px;
}

/* ===== FOOTER ===== */
footer {
  background: var(--primary);
  color: var(--accent);
  padding: 44px 0 18px 0;
  margin-top: 70px;
  position: relative;
  z-index: 11;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 38px;
  justify-content: space-between;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-brand img {
  width: 45px;
  height: 45px;
}
.footer-brand span {
  font-family: 'Montserrat';
  font-size: 1.02rem;
  color: var(--accent);
  font-weight: 800;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-nav a {
  color: var(--secondary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  transition: color 0.16s;
}
.footer-nav a:hover {
  color: var(--electric-cyan);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.98rem;
  color: var(--accent);
  font-family: 'Roboto', Arial, sans-serif;
}
.footer-contact img {
  vertical-align: sub;
  margin-right: 7px;
  width: 16px;
}

/* ===== THANK YOU PAGE ===== */
.thank-you {
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.thank-you .content-wrapper {
  background: var(--electric-cyan);
  border-radius: 14px;
  padding: 38px 24px;
  align-items: center;
  text-align: center;
  gap: 20px;
  box-shadow: 0 3px 18px #1f417219;
}
.thank-you h1 {
  color: var(--electric-pink);
}
.thank-you .btn-primary {
  margin-top: 18px;
  background: var(--electric-pink);
  color: var(--accent);
}
.thank-you .btn-primary:hover {
  background: var(--electric-cyan);
  color: var(--primary);
}
.next-steps ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.next-steps a {
  color: var(--electric-violet);
  text-decoration: underline;
  font-weight: 600;
}

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: var(--primary);
  color: var(--accent);
  z-index: 3000;
  box-shadow: 0 -2px 32px 0 rgba(31,65,114,0.14);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 22px 32px 22px 32px;
  gap: 20px;
  font-size: 1.03rem;
  animation: cookie-slide-in 0.6s cubic-bezier(.5,1.5,.7,1) 1;
  border-top: 4px solid var(--secondary);
}
@keyframes cookie-slide-in {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner-buttons {
  display: flex;
  gap: 13px;
}
.cookie-banner .btn-cookie {
  background: var(--electric-cyan);
  color: var(--primary);
  border-radius: 28px;
  padding: 10px 24px;
  font-weight: 800;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border: none;
  margin-left: 3px;
  transition: background 0.16s, color 0.16s;
  box-shadow: 0 2px 11px #1f417217;
}
.cookie-banner .btn-cookie:hover,
.cookie-banner .btn-cookie:focus {
  background: var(--electric-pink);
  color: var(--accent);
}
.cookie-banner .btn-cookie.secondary {
  background: var(--accent);
  color: var(--primary);
}
.cookie-banner .btn-cookie.secondary:hover {
  background: var(--secondary);
  color: var(--primary);
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(31,65,114, 0.87);
  z-index: 3200;
  display: none;
  align-items: center;
  justify-content: center;
  animation: cookie-modal-fadein 0.35s ease;
}
@keyframes cookie-modal-fadein {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal.open {
  display: flex;
}
.cookie-modal-content {
  background: var(--accent);
  color: var(--primary);
  border-radius: 18px;
  box-shadow: 0 6px 48px 0 rgba(31,65,114,0.17);
  padding: 34px 30px 36px 30px;
  min-width: 320px;
  max-width: 95vw;
  display: flex;
  flex-direction: column;
  gap: 17px;
  align-items: center;
  animation: cookie-modal-popup 0.29s cubic-bezier(.43,1.4,.38,1) 1;
}
@keyframes cookie-modal-popup {
  from { transform: translateY(30px) scale(.9); opacity: 0; }
  to { transform: none; opacity: 1; }
}
.cookie-modal-content h3 {
  color: var(--electric-violet);
  margin-bottom: 7px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 18px;
  width: 100%;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  background: var(--electric-cyan);
  padding: 10px 15px;
  border-radius: 8px;
  width: 100%;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.04rem;
  font-weight: 600;
}
.cookie-modal-content .btn-cookie {
  margin-top: 16px;
}
.cookie-modal-close {
  position: absolute;
  top: 18px; right: 20px;
  color: var(--electric-pink);
  font-size: 1.65rem;
  background: transparent;
  border: none;
  cursor: pointer;
}
.cookie-modal-close:hover {
  color: var(--electric-violet);
}

/* ===== GENERIC CARDS & FLEX CONTAINERS ===== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: 11px;
  box-shadow: 0 2px 16px #1f417211;
  background: var(--accent);
  padding: 22px 18px;
  transitions: box-shadow 0.16s, background 0.13s;
}
.card:hover {
  background: var(--electric-cyan);
  box-shadow: 0 6px 22px #11cfff25;
}
.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;
  margin-bottom: 40px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ===== MICRO-INTERACTIONS & TRANSITIONS ===== */
a, .btn-primary, button {
  transition: background 0.17s, color 0.17s, box-shadow 0.18s, transform 0.16s;
}

/* ===== MEDIA QUERIES / RESPONSIVE ===== */
@media (max-width: 1200px) {
  .container { max-width: 97vw; }
  .feature-grid li, .course-card, .team-member { max-width: 47%; }
}
@media (max-width: 900px) {
  nav { gap: 20px; }
  .feature-grid li, .course-card, .team-member { max-width: 100%; min-width: 230px; }
  .footer-nav, .footer-contact { font-size: 1rem; }
}
@media (max-width: 768px) {
  .hero {
    min-height: 220px;
    padding: 30px 0 18px 0;
    border-radius: 0 0 20px 20px;
  }
  header .container {
    flex-direction: row;
    padding: 0 12px;
  }
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .feature-grid, .course-grid, .card-container, .team-grid {
    flex-direction: column;
    gap: 20px;
  }
  .feature-grid li, .course-card, .team-member {
    max-width: 100%;
    min-width: unset;
  }
  .cta {
    border-radius: 13px;
    padding: 30px 0;
  }
  .testimonial-slider {
    gap: 14px;
    flex-direction: column;
  }
  .footer-contact, .footer-nav {
    font-size: 0.97rem;
  }
  footer .container {
    gap: 24px;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 10px;
  }
  .section {
    padding: 24px 7px;
  }
  .content-wrapper {
    gap: 13px;
  }
}
@media (max-width: 570px) {
  h1 { font-size: 1.55rem; }
  h2 { font-size: 1.25rem; }
  .btn-primary, .cookie-banner .btn-cookie, .cookie-modal-content .btn-cookie {
    padding: 12px 20px;
    font-size: 1.01rem;
  }
  .hero p, p, li {
    font-size: 0.97rem;
  }
  .footer-brand span { font-size: 0.92rem; }
  .cookie-banner { padding: 16px 6px; font-size: 0.97rem; flex-direction: column; gap: 10px; }
  .cookie-banner-buttons { flex-direction: column; gap: 8px; }
  .cookie-modal-content { padding: 18px 7px; }
  .map-placeholder, .contact-info { padding: 14px 7px; }
}

/* ===== MISC ===== */
::-webkit-scrollbar { width: 9px; background: #ececec; }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 9px; }
::-webkit-selection { background: var(--electric-pink); color: #fff; }
::selection { background: var(--electric-pink); color: #fff; }

/* Hide cookie modal on start */
.cookie-modal { display: none; }

/* Accessibility helpers */
:focus { outline: 2px solid var(--electric-cyan); outline-offset: 2px; }

/* ============== END CSS ============== */
