/* ==== 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 { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
body { line-height: 1; }
ol, ul { list-style: none; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; height: auto; border: 0; }
button {
  background: none;
  border: none;
  font: inherit;
  color: inherit;
  cursor: pointer;
}

/* ==== VARIABLE & BRAND COLORS ==== */
:root {
  --primary: #2D3142;
  --secondary: #E0E4EC;
  --accent: #F7C873;
  --background: #FAF7F2;
  --white: #fff;
  --error: #d94f4f;
  --shadow: 0 4px 16px 0 rgba(45,49,66,0.08);
  --shadow-lg: 0 8px 32px 0 rgba(45,49,66,0.13);
  --success: #7AC47A;
}

/* ==== TYPOGRAPHY ==== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Roboto:wght@400;500;700&display=swap');
body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  color: var(--primary);
  background: var(--background);
  min-height: 100vh;
  line-height: 1.6;
}
h1, .h1 {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.2;
  color: var(--primary);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
h2, .h2 {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary);
  margin-bottom: 16px;
}
h3, .h3 {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}
h4, .h4 {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
}
p, li, span, blockquote, cite, dt, dd {
  font-size: 1rem;
  color: var(--primary);
}
blockquote {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--primary);
}
cite {
  display: block;
  margin-top: 10px;
  color: #987841;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
}
strong, b { font-weight: 700; }

/* ==== GENERAL LAYOUT ==== */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 18px;
}

/* ==== HEADER & NAV ==== */
header {
  background: var(--white);
  box-shadow: 0 1px 8px 0 rgba(45,49,66,0.04);
  position: relative;
  z-index: 101;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
}
.logo img {
  height: 46px; 
  width: auto;
  margin-right: 18px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: var(--primary);
  padding: 8px 12px;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
  position: relative;
}
header nav a.button-primary {
  background: var(--accent);
  color: var(--primary);
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  margin-left: 16px;
  transition: box-shadow 0.16s, background 0.18s;
}
header nav a:hover, header nav a:focus {
  background: var(--secondary);
  color: var(--primary);
}
header nav a.button-primary:hover, header nav a.button-primary:focus {
  background: #FFD78C;
  color: var(--primary);
  box-shadow: var(--shadow-lg);
}
.mobile-menu-toggle {
  display: none;
  font-size: 2.2rem;
  color: var(--primary);
  background: none;
  border: none;
  padding: 8px 12px;
  border-radius: 14px;
  transition: background 0.1s;
  margin-left: 16px;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--accent);
}

/* ==== MOBILE MENU ==== */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: var(--white);
  z-index: 99999;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.85,0.09,0.36,0.91);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 24px 28px 0 20px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.6rem;
  color: var(--primary);
  margin-bottom: 18px;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 14px;
  padding: 4px 8px;
  transition: background 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.18rem;
  padding: 10px 0;
  color: var(--primary);
  border-radius: 10px;
  background: none;
  transition: background 0.12s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--accent);
  color: var(--primary);
}

/* ===== HERO SECTIONS ===== */
.hero, .services-hero, .portfolio-hero, .process-hero, .contact-hero, .blog-hero, .thank-you-section {
  background: linear-gradient(105deg, #ffeac5 60%, #fefdfb 100%);
  border-radius: 0 0 32px 32px;
  padding: 60px 0 44px 0;
  margin-bottom: 60px;
}
.hero h1, .services-hero h1, .portfolio-hero h1, .process-hero h1, .contact-hero h1, .blog-hero h1, .thank-you-section h1 {
  color: var(--primary);
}
.hero p, .services-hero p, .portfolio-hero p, .process-hero p, .contact-hero p, .blog-hero p, .thank-you-section p {
  margin-bottom: 20px;
  color: var(--primary);
}

/* ==== FLEXBOX SPACING CLASSES FROM PROMPT ==== */
.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; border-radius: 18px; box-shadow: var(--shadow); background: var(--white); padding: 32px; }
.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; background: var(--secondary); box-shadow: var(--shadow); border-radius: 16px; margin-bottom: 20px; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* ==== FEATURES (Index - Zašto odabrati) ==== */
.features {
  background: var(--secondary);
  border-radius: 20px;
  box-shadow: var(--shadow);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.features .content-wrapper > h2 {
  margin-bottom: 28px;
}
.features ul {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
}
.features ul li {
  background: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow);
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 340px;
  padding: 28px 24px 22px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: box-shadow 0.18s, transform 0.15s;
}
.features ul li:hover, .features ul li:focus-within {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px) scale(1.03);
}
.features img {
  width: 36px;
  height: 36px;
  margin-bottom: 6px;
}

/* ==== SERVICES PREVIEW (Index/Services) ==== */
.services-preview, .services-list {
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.services-preview ul, .services-list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.services-preview ul li, .services-list ul li {
  flex: 1 1 220px;
  min-width: 220px; max-width: 340px;
  background: var(--secondary);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 22px 20px 18px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.18s, transform 0.15s;
}
.services-preview ul li:hover, .services-list ul li:hover, .services-list ul li:focus-within {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px) scale(1.02);
}
.services-list ul li img {
  width: 32px; height: 32px; margin-bottom: 4px;
}
.service-price {
  color: var(--accent);
  font-size: 1.08rem;
  font-weight: 700;
  margin-top: 12px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.button-secondary {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
  background: var(--accent);
  padding: 10px 22px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  margin-top: 12px;
  transition: background 0.18s, box-shadow 0.17s, color 0.13s;
}
.button-secondary:hover, .button-secondary:focus {
  background: #FFD78C;
  color: var(--primary);
  box-shadow: var(--shadow-lg);
}

/* ==== ABOUT, TEAM, WHY US ==== */
.about-brand, .about-preview {
  background: var(--secondary);
  border-radius: 18px;
  box-shadow: var(--shadow);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.team-overview .content-wrapper > ul {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}
.team-overview .content-wrapper > ul > li {
  background: var(--white);
  border-radius: 17px;
  box-shadow: var(--shadow);
  padding: 22px 18px;
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 340px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}
.team-overview .content-wrapper > ul > li span {
  color: var(--accent);
  font-size: 0.98rem;
  margin-top: 8px;
}
.why-us {
  background: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 40px 20px;
}
.why-us ul li {
  list-style: disc inside;
  margin-bottom: 10px;
}

/* ==== PROCESS STEPS ==== */
.process-steps {
  background: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.process-steps ol {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.process-steps ol li {
  background: var(--secondary);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 20px 16px;
  flex: 1 1 180px;
  min-width: 180px;
  max-width: 310px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}
.process-steps ol li img {
  width: 28px; height: 28px; margin-top: 3px;
  flex-shrink: 0;
}

/* ==== FAQ ==== */
.faq {
  background: var(--secondary);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 40px 20px;
  margin-bottom: 60px;
}
.faq dl {
  margin-bottom: 18px;
}
.faq dt {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  margin-top: 18px;
  color: var(--primary);
}
.faq dd {
  margin-bottom: 10px;
  padding-left: 10px;
}
.faq a { color: var(--primary); text-decoration: underline; font-weight: 700; }

/* ==== PORTFOLIO ==== */
.project-list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.project-list ul li {
  background: var(--secondary);
  border-radius: 16px;
  box-shadow: var(--shadow);
  flex: 1 1 250px; min-width: 250px; max-width: 370px;
  padding: 24px 18px 20px 18px;
  margin-bottom: 20px;
}

/* ==== BLOG ==== */
.blog-list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.blog-list ul li {
  background: var(--secondary);
  border-radius: 16px;
  box-shadow: var(--shadow);
  flex: 1 1 240px; min-width: 240px; max-width: 350px;
  padding: 22px 16px 18px 16px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.read-more {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
  text-decoration: underline;
  font-weight: 700;
  font-size: 0.99rem;
  margin-top: 2px;
  transition: color 0.14s;
}
.read-more:hover, .read-more:focus {
  color: var(--accent);
}
.category {
  background: var(--accent);
  color: var(--primary);
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  display: inline-block;
  padding: 4px 10px;
  margin-left: 10px;
}

/* ==== CTA + Newsletter ==== */
.cta-final, .cta-services, .cta-blog {
  background: var(--accent);
  border-radius: 22px;
  box-shadow: var(--shadow);
  text-align: center;
  margin-bottom: 60px;
  padding: 40px 20px;
}
.cta-final h2, .cta-services h2, .cta-blog h2 {
  color: var(--primary);
}
.cta-final p, .cta-services p, .cta-blog p {
  margin-bottom: 18px;
  color: var(--primary);
}
.cta-final .button-primary, .cta-services .button-primary, .cta-blog .button-primary {
  margin-top: 18px;
}

/* ==== BUTTONS ==== */
.button-primary, button.button-primary, .cta-blog button[type=submit] {
  background: var(--primary);
  color: var(--accent);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  border: none;
  cursor: pointer;
  transition: background 0.14s, color 0.12s, box-shadow 0.13s;
  outline: none;
}
.button-primary:hover, .button-primary:focus, button.button-primary:hover, button.button-primary:focus {
  background: #434661;
  color: #ffe9a7;
  box-shadow: var(--shadow-lg);
}

/* ==== FORMS ==== */
form {
  display: flex;
  flex-direction: row;
  gap: 14px;
  justify-content: center;
  margin-top: 14px;
}
input[type='email'] {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  padding: 11px 18px;
  border: 1px solid var(--secondary);
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: border 0.14s, box-shadow 0.13s;
}
input[type='email']:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 2px #FFEFD6;
}

/* ==== TESTIMONIALS ==== */
.testimonials {
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.testimonials .content-wrapper > h2 {
  margin-bottom: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--secondary);
  box-shadow: var(--shadow);
  border-radius: 16px;
  margin-bottom: 20px;
  padding: 22px 20px;
  transition: box-shadow 0.13s, transform 0.1s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px) scale(1.01);
}
.testimonial-card blockquote {
  color: var(--primary);
  font-size: 1.13rem;
}
.testimonial-card cite {
  color: #9c842f;
  font-style: normal;
}

/* ==== CONTACT DETAILS ==== */
.contact-details .contact-info p {
  margin-bottom: 8px;
  font-size: 1.02rem;
}



.contact-details a {
  color: var(--primary);
  text-decoration: underline;
  font-weight: 700;
}
.contact-details a.button-primary {
  text-decoration: none;
  color: #ffe9a7
}

/* ==== LEGAL SECTIONS (GDPR, TERMS, COOKIES) ==== */
.legal-privacy, .legal-gdpr, .legal-cookies, .legal-terms {
  background: var(--secondary);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 40px 20px;
  margin-bottom: 60px;
}
.legal-privacy a, .legal-gdpr a, .legal-cookies a, .legal-terms a {
  color: var(--primary);
  text-decoration: underline;
}
.legal-privacy ul, .legal-gdpr ul, .legal-cookies ul, .legal-terms ul {
  margin-top: 14px;
  margin-bottom: 22px;
  padding-left: 18px;
}
.legal-privacy ul li, .legal-gdpr ul li, .legal-cookies ul li, .legal-terms ul li {
  margin-bottom: 8px;
  list-style: disc inside;
}

/* ==== FOOTER ==== */
footer {
  background: var(--primary);
  color: var(--accent);
  padding-top: 35px;
  padding-bottom: 20px;
  border-radius: 42px 42px 0 0;
  box-shadow: 0 -1px 16px 0 rgba(45,49,66,0.05);
  margin-top: 60px;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-top img {
  height: 38px;
  width: auto;
}
.footer-top nav {
  display: flex;
  gap: 22px;
}
.footer-top nav a {
  color: var(--accent);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 6px 10px;
  border-radius: 8px;
  transition: background 0.13s, color 0.14s;
}
.footer-top nav a:hover, .footer-top nav a:focus {
  background: var(--accent);
  color: var(--primary);
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(247,200,115,0.16);
  padding-top: 15px;
  font-size: 0.98rem;
}
.footer-bottom p, .footer-bottom a {
  color: var(--accent);
  opacity: 0.95;
}
.footer-bottom a:hover, .footer-bottom a:focus {
  color: var(--white);
}

/* ==== THANK YOU PAGE ==== */
.thank-you-section {
  background: #fffbe8;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  margin-bottom: 60px;
  padding: 60px 20px;
  text-align: center;
}
.thank-you-section a.button-primary {
  margin-top: 18px;
}

/* ==== COOKIE BANNER & MODAL ==== */
#cookie-banner, .cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: var(--white);
  box-shadow: 0 -2px 32px 0 rgba(45,49,66,0.13);
  border-radius: 22px 22px 0 0;
  z-index: 120000;
  padding: 28px 20px 22px 24px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s, bottom 0.20s;
}
#cookie-banner.show, .cookie-banner.show {
  opacity: 1;
  pointer-events: auto;
  bottom: 0;
}
.cookie-banner-text {
  flex: 1 1 auto;
  max-width: 540px;
  color: var(--primary);
  font-size: 1rem;
}
.cookie-buttons {
  display: flex;
  align-items: center;
  gap: 14px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 14px;
  box-shadow: var(--shadow);
  border: none;
  cursor: pointer;
  padding: 8px 18px;
  margin: 0 3px;
  background: var(--accent);
  color: var(--primary);
  transition: background 0.13s, box-shadow 0.13s, color 0.12s;
}
.cookie-btn.accept {
  background: var(--primary);
  color: var(--accent);
}
.cookie-btn.reject {
  background: #ef9191;
  color: #fff;
}
.cookie-btn.settings {
  background: var(--accent);
  color: var(--primary);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #FFD78C;
  color: var(--primary);
  box-shadow: var(--shadow-lg);
}

/* Cookie settings modal */
#cookie-modal, .cookie-modal {
  position: fixed; z-index: 130000;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(45,49,66,0.15);
  display: none;
  align-items: center;
  justify-content: center;
  transition: background 0.25s;
}
#cookie-modal.open, .cookie-modal.open {
  display: flex;
}
.cookie-modal-content {
  background: var(--white);
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
  padding: 32px 28px 26px 28px;
  min-width: 340px; max-width: 96vw;
  max-width: 430px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: fadeInUp 0.37s cubic-bezier(0.77,0.12,0.32,0.92);
}
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(26px); }
  100% { opacity: 1; transform: translateY(0); }
}
.cookie-modal-content h3 {
  color: var(--primary);
  margin-bottom: 10px;
  font-size: 1.2rem;
}
.cookie-category-row {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  gap: 10px;
}
.cookie-modal label {
  font-size: 1rem;
  color: var(--primary);
  flex: 1;
}
.cookie-toggle {
  width: 42px;
  height: 22px;
  background: var(--secondary);
  border-radius: 22px;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin-left: 4px;
}
.cookie-toggle input { display: none; }
.cookie-slider {
  position: absolute; left: 2px; top: 2px;
  width: 18px; height: 18px;
  background: var(--primary);
  border-radius: 50%;
  transition: left 0.17s, background 0.15s;
}
.cookie-toggle input:checked + .cookie-slider {
  left: 22px;
  background: var(--accent);
}
.cookie-modal-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 12px;
}

/* ==== RESPONSIVE DESIGN ==== */
@media (max-width: 1000px) {
  .features ul, .services-preview ul, .services-list ul, .team-overview .content-wrapper > ul, .project-list ul, .blog-list ul {
    flex-direction: column;
    gap: 18px;
  }
  .footer-top, .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }
  .section, .features, .services-preview, .about-brand, .about-preview, .testimonials, .cta-final, .cta-services, .project-list ul li, .faq, .legal-privacy, .legal-gdpr, .legal-cookies, .legal-terms {
    padding: 28px 8px;
  }
  .hero, .services-hero, .portfolio-hero, .process-hero, .contact-hero, .blog-hero, .thank-you-section {
    padding: 38px 0 24px 0;
    border-radius: 0 0 22px 22px;
  }
  .footer-top, .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }
  .features ul, .services-preview ul, .services-list ul, .team-overview .content-wrapper > ul, .project-list ul, .blog-list ul {
    flex-direction: column;
    gap: 14px;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 10px;
    padding: 14px 10px;
  }
  .content-grid, .card-container, .text-image-section { flex-direction: column; gap: 16px; }
  header .container {
    flex-direction: row; gap: 7px; min-height: 64px;
  }
  nav { display: none; }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (max-width: 480px) {
  h1, .h1 { font-size: 1.45rem; }
  h2, .h2 { font-size: 1.08rem; }
  .footer-top img { height: 22px; }
  .logo img { height: 32px; }
  .cookie-modal-content { min-width: 90vw; max-width: 100vw; padding: 16px; }
}

/* ==== UTILITY CLASSES ==== */
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-20 { gap: 20px; }

/* ===== TRANSITIONS / MICRO INTERACTIONS ===== */
a, button, .button-primary, .button-secondary, .cookie-btn {
  transition: background 0.14s, color 0.12s, box-shadow 0.15s, transform 0.13s;
}
.card, .project-list ul li, .blog-list ul li, .features ul li, .services-preview ul li, .services-list ul li, .testimonial-card {
  transition: box-shadow 0.18s, transform 0.13s;
}

/* ==== SCROLLBAR STYLE ==== */
::-webkit-scrollbar {
  width: 9px;
  background: #F8F5F0;
}
::-webkit-scrollbar-thumb {
  background: #ECD090;
  border-radius: 8px;
}

/* ==== ACCESSIBILITY ==== */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
[tabindex]:focus {
  outline: 2px solid var(--accent);
}

/* ==== HIDE MOBILE MENU NAV ON DESKTOP ==== */
@media (min-width: 769px) {
  .mobile-menu-toggle {
    display: none !important;
  }
  .mobile-menu {
    display: none !important;
  }
  nav {
    display: flex !important;
  }
}
