/* === 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.5;
  background: #f7f9fa;
  color: #25476a;
}
ol, ul {
  list-style: none;
}
a {
  background-color: transparent;
  color: inherit;
  text-decoration: none;
}
img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

/* === FONT IMPORTS === */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,700&display=swap');

/* === ROOT CUSTOM PROPERTIES === */
:root {
  --color-primary: #25476a;
  --color-secondary: #f7f9fa;
  --color-accent: #f6b93b;
  --color-art-blue: #4B77BE;
  --color-art-pink: #f953c6;
  --color-art-lime: #88e167;
  --shadow-main: 0 6px 24px rgba(37,71,106,0.08),0 1.5px 6px rgba(246,185,59,0.07);
  --shadow-card: 0 2px 8px rgba(37,71,106,0.15),0 1px 3px rgba(37,71,106,0.08);
  --shadow-lg: 0 8px 32px rgba(79, 71, 140, 0.13);
  --radius-main: 22px;
  --radius-btn: 999px;
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  background: var(--color-secondary);
  color: var(--color-primary);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  margin-bottom: 16px;
  color: var(--color-primary);
  font-weight: 700;
  letter-spacing: .02em;
}
h1 { font-size: 2.5rem; line-height: 1.1; margin-bottom: 24px; }
h2 { font-size: 2rem; line-height: 1.2; margin-bottom: 20px; }
h3 { font-size: 1.35rem; line-height: 1.3; margin-bottom: 16px; }
h4, h5, h6 { font-size: 1.125rem; }
p, li, span, dl, dt, dd { font-size: 1rem; line-height: 1.7; color: #25476a; }

/* ======== LAYOUTS ======== */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: white;
  border-radius: var(--radius-main);
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
  position: relative;
  padding: 28px 22px;
  flex: 1 1 260px;
  min-width: 260px;
}
.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: center;
  gap: 20px;
  background: white;
  color: #111820;
  padding: 20px 32px;
  border-radius: var(--radius-main);
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
  min-width: 220px;
  max-width: 560px;
  font-family: var(--font-body);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ============ HEADER & NAVIGATION ============ */
header {
  background: white;
  box-shadow: 0 1px 8px rgba(37,71,106,0.11);
  position: sticky;
  top: 0;
  z-index: 1001;
}
.logo img {
  height: 56px;
  width: auto;
  display: block;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
}
.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  font-family: var(--font-display);
  color: var(--color-primary);
  font-weight: 700;
  font-size: 1.04rem;
  transition: color .19s;
  border-radius: 16px;
  padding: 6px 18px;
  position: relative;
}
.main-nav a:not(.cta-btn):hover,
.main-nav a:not(.cta-btn):focus {
  color: var(--color-accent);
  background: rgba(246,185,59,0.1);
}
.main-nav .cta-btn {
  background: var(--color-accent);
  color: #fff;
  border-radius: var(--radius-btn);
  padding: 8px 26px;
  font-weight: 900;
  font-size: 1.04rem;
  margin-left: 16px;
  box-shadow: 0 2px 12px rgba(246,185,59,0.13);
  transition: background .18s,color .18s,box-shadow .23s;
  letter-spacing: 0.03em;
}
.main-nav .cta-btn:hover, .main-nav .cta-btn:focus {
  background: var(--color-art-pink);
  color: #fff;
  box-shadow: 0 4px 18px rgba(249,83,198,0.12),0 1.5px 8px rgba(246,185,59,0.08);
}
/* Hamburger Mobile */
.mobile-menu-toggle {
  display: none;
  background: var(--color-accent);
  color: #fff;
  font-size: 2rem;
  border-radius: 12px;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  line-height: 1;
  margin-left: 24px;
  transition: background .15s;
  z-index: 1002;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--color-art-blue);
  color: #fff;
  box-shadow: 0 0 0 4px rgba(246,185,59,0.2);
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(247,249,250, 0.98);
  z-index: 3002;
  transform: translateX(-101%);
  transition: transform 0.45s cubic-bezier(.75,0,.25,1);
  box-shadow: 0 3px 32px rgba(37,71,106,0.21);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  color: var(--color-art-pink);
  font-size: 2.2rem;
  padding: 16px;
  border: none;
  cursor: pointer;
  margin-right: 8px;
  margin-top: 12px;
  transition: color .16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--color-accent);
}
.mobile-nav {
  margin-top: 30px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.mobile-nav a {
  font-family: var(--font-display);
  color: var(--color-primary);
  padding: 14px 30px;
  font-size: 1.15rem;
  border-radius: 14px;
  transition: background .17s, color .2s;
  min-width: 180px;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: var(--color-accent);
  color: #fff;
}
@media(max-width: 992px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media(min-width: 993px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ==== HERO ==== */
.hero {
  background: linear-gradient(90deg, #f7f9fa 60%, #f6b93b 100%);
  padding: 56px 0 60px 0;
  min-height: 395px;
}
.hero .container {
  align-items: flex-start;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 12px;
  max-width: 670px;
}
.hero h1 {
  font-size: 2.25rem;
  color: var(--color-art-blue);
  font-weight: 900;
  text-shadow: 1px 3px 0 #fff6, 0 2px 18px rgba(75,119,190, 0.07);
}
.hero p {
  color: #25476a;
  font-size: 1.22rem;
  margin-bottom: 10px;
  font-family: var(--font-body);
}
.hero .cta-btn {
  margin-top: 16px;
}

/* ==== FEATURES ==== */
.features {
  background: #fff;
  border-radius: var(--radius-main);
  box-shadow: 0 1px 7px rgba(249,83,198,0.08);
}
.features .content-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 8px;
}
.features .content-wrapper ul li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  background: rgba(136,225,103,0.04);
  padding: 12px 22px;
  border-radius: 16px;
  font-weight: 700;
  font-size: 1.09rem;
  color: var(--color-primary);
  box-shadow: 0 1px 4px rgba(136,225,103,0.13);
  transition: box-shadow .14s, background .16s;
}
.features .content-wrapper ul li img {
  height: 28px;
  width: 28px;
  filter: saturate(1.3);
}
.features .content-wrapper ul li:hover {
  background: #f7f9fa;
  box-shadow: 0 3px 16px rgba(136,225,103,0.12);
}

/* ==== CARDS ==== */
.services > .container > .content-wrapper > div, .services-list .service-card {
  border-radius: var(--radius-main);
  background: #fff;
  box-shadow: var(--shadow-card);
  padding: 32px 24px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: box-shadow .17s, transform .15s;
}
.services > .container > .content-wrapper > div:hover, .services-list .service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px) scale(1.02);
}
.price {
  display: inline-block;
  margin-top: 10px;
  color: var(--color-art-pink);
  font-size: 1.09rem;
  font-family: var(--font-display);
  font-weight: 900;
  background: #f7f9fa;
  border-radius: 8px;
  padding: 3px 12px;
  margin-bottom: 8px;
}

/* ==== CTA ==== */
.cta {
  background: linear-gradient(90deg, #f6b93b 70%, #88e167 100%);
  border-radius: var(--radius-main);
  box-shadow: 0 1px 8px rgba(246,185,59,0.08);
  color: #25476a;
  text-align: center;
}
.cta .content-wrapper {
  align-items: center;
  gap: 10px;
  padding: 30px 0;
}
.cta h2 {
  color: var(--color-primary);
  font-size: 2rem;
  letter-spacing: .02em;
  margin-bottom: 5px;
  font-family: var(--font-display);
}
.cta p {
  color: var(--color-art-blue);
  font-family: var(--font-display);
  margin-bottom: 15px;
  font-size: 1.1rem;
}
.cta .cta-btn {
  margin-top: 7px;
}

/* ==== CTA BUTTONS ==== */
.cta-btn {
  background: linear-gradient(90deg, var(--color-art-blue), var(--color-art-pink), var(--color-accent));
  color: #fff !important;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.07rem;
  border-radius: var(--radius-btn);
  padding: 12px 30px;
  border: none;
  box-shadow: 0 3px 14px rgba(249,83,198,0.13);
  transition: box-shadow .18s, transform .17s, background .16s;
  cursor: pointer;
  letter-spacing: .04em;
  outline: none;
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg, var(--color-accent), var(--color-art-blue), var(--color-art-pink));
  transform: scale(1.04) translateY(-1px);
  box-shadow: 0 6px 26px rgba(75,119,190,0.16),0 1.5px 10px rgba(246,185,59,0.08);
  filter: brightness(1.06);
}

/* ==== TESTIMONIALS ==== */
.testimonials {
  background: #fff;
  border-radius: var(--radius-main);
  box-shadow: 0 2px 12px rgba(75,119,190,0.09);
}
.testimonials .content-wrapper {
  align-items: flex-start;
}
.testimonials h2, .testimonials h1 {
  color: var(--color-art-pink);
}
.testimonial-card {
  background: #fff;
  color: #25476a;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  box-shadow: 0 2px 6px rgba(75,119,190,.12);
  border-radius: var(--radius-main);
  padding: 22px 30px;
}
.testimonial-card p {
  font-size: 1.13rem;
  color: #25476a;
  font-style: italic;
  line-height: 1.6;
}
.testimonial-card span {
  font-size: 0.98rem;
  font-family: var(--font-display);
  color: var(--color-art-blue);
}
.testimonial-card:before {
  content: '\201C';
  color: var(--color-accent);
  font-size: 3.5rem;
  font-family: var(--font-display);
  line-height: 0.3;
  display: block;
  opacity: 0.18;
}
.testimonial-card:last-child { margin-bottom: 0; }

/* ==== TEAM ==== */
.team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
  align-items: stretch;
}
.team-member {
  flex: 1 1 270px;
  min-width: 240px;
  max-width: 320px;
  background: #fff;
  border-radius: var(--radius-main);
  box-shadow: 0 1px 8px rgba(75,119,190,0.08);
  padding: 28px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
  transition: box-shadow .17s, transform .13s;
  position: relative;
}
.team-member img {
  border-radius: 50%;
  height: 80px;
  width: 80px;
  box-shadow: 0 1.5px 6px rgba(249,83,198,.09);
  margin-bottom: 12px;
}
.team-member h2 {
  font-size: 1.25rem;
  color: var(--color-art-blue);
  font-weight: 900;
  margin: 12px 0 7px 0;
  text-align: center;
}
.team-member p {
  font-size: 1rem;
  color: #25476a;
  text-align: center;
}
.team-member:hover {
  box-shadow: 0 6px 24px rgba(136,225,103,0.11), 0 2px 8px rgba(75,119,190,0.15);
  transform: translateY(-2px) scale(1.04);
}

/* ==== FAQ ==== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.faq-item {
  background: #fff;
  border-radius: var(--radius-main);
  box-shadow: 0 2px 8px rgba(246,185,59,0.06);
  padding: 24px 20px;
  margin-bottom: 20px;
  transition: box-shadow .13s;
  position: relative;
}
.faq-item:hover {
  box-shadow: var(--shadow-lg);
}
.faq-item h2 {
  font-size: 1.13rem;
  color: var(--color-art-blue);
  font-family: var(--font-display);
  margin-bottom: 7px;
}
.faq-item p {
  font-size: 1rem;
}

/* ==== CONTACT/INFO BOX ==== */
.info-box {
  background: #fffbe9;
  padding: 20px 26px;
  border-radius: var(--radius-main);
  box-shadow: 0 2px 8px rgba(246,185,59,0.07);
  color: var(--color-art-blue);
  font-family: var(--font-display);
  text-align: center;
  margin-top: 18px;
  font-size: 1.07rem;
}
dl { margin: 18px 0; }
dt {
  font-weight: 700;
  color: var(--color-art-blue);
  margin-top: 10px;
}
dd {
  margin-bottom: 7px;
  margin-left: 10px;
}

/* ==== FOOTER ==== */
footer {
  background: #25476a;
  color: #fff;
  padding: 38px 0 12px 0;
  border-top-left-radius: 28px;
  border-top-right-radius: 28px;
  margin-top: 70px;
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-nav, .footer-contact, .footer-social {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-nav {
  flex: 2 1 330px;
  flex-wrap: wrap;
  gap: 11px;
}
.footer-nav a {
  color: #fff;
  opacity: 0.96;
  font-family: var(--font-display);
  transition: color 0.15s, opacity 0.12s;
  font-size: 1rem;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: var(--color-accent);
  opacity: 1;
}
.footer-contact {
  flex: 1 1 260px;
  gap: 7px;
  font-size: 0.99rem;
}
.footer-contact strong {
  color: var(--color-art-pink);
  font-family: var(--font-display);
}
.footer-contact a { color: var(--color-accent); word-break: break-all;}
.footer-contact a:hover { color: var(--color-art-blue); }
.footer-social {
  flex: 1 1 70px;
  flex-direction: row;
  gap: 12px;
  align-items: flex-end;
  margin-left: auto;
  margin-right: 30px;
}
.footer-social a {
  display: inline-flex;
  height: 40px;
  width: 40px;
  align-items: center;
  justify-content: center;
}
.footer-social img {
  height: 100%;
  width: 100%;
  filter: brightness(1.2) contrast(1.2);
  transition: filter 0.2s;
}
.footer-social a:hover img {
  filter: brightness(1.15) drop-shadow(0 2px 6px var(--color-art-blue));
}

/* ======= SPECIAL SECTIONS ======= */
/* About Vision */
.vision {
  font-size: 1.26rem;
  font-family: var(--font-display);
  color: var(--color-art-pink);
  margin-top: 20px;
  text-align: center;
}
.success {
  background: linear-gradient(60deg, #88e167 80%, #f6b93b 100%);
  border-radius: var(--radius-main);
  box-shadow: 0 2px 8px rgba(136,225,103,0.08);
  text-align: center;
}
.success h1 { color: var(--color-art-blue); }
.success p { color: #25476a; margin-bottom: 20px; }

/* Terms, Privacy, Cookie Policy consistency */
.privacy-policy, .terms-of-service, .gdpr, .cookie-policy {
  background: #fff;
  border-radius: var(--radius-main);
  box-shadow: 0 2px 12px rgba(75,119,190,0.14);
  color: #25476a;
  padding-top: 16px;
  padding-bottom: 30px;
}
.privacy-policy h1, .terms-of-service h1, .gdpr h1, .cookie-policy h1 {
  color: var(--color-art-pink);
}

/* ======= ANIMATIONS & TRANSITIONS ======= */
.section, .card, .card-container, .testimonial-card, .team-member, .faq-item, .cta {
  transition: box-shadow .19s, transform .13s;
}

/* ======= COOKIE BANNER ======= */
.cookie-banner {
  position: fixed;
  left: 0; bottom: 0; right: 0;
  background: #fff9e2;
  box-shadow: 0 -2px 14px rgba(246,185,59,0.09);
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  gap: 24px;
  z-index: 4000;
  font-size: 1.06rem;
  font-family: var(--font-body);
  opacity: 1;
  transform: translateY(0);
  transition: transform .32s cubic-bezier(.87,.07,.41,1.01), opacity .19s;
}
.cookie-banner.hide {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner-text {
  flex: 3 1 330px;
  color: #25476a;
}
.cookie-banner-btns {
  flex: 1 1 160px;
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: center;
  justify-content: flex-end;
}
.cookie-btn {
  background: var(--color-art-pink);
  color: #fff;
  border-radius: var(--radius-btn);
  padding: 9px 22px;
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: background .16s, box-shadow .15s, color .18s;
  box-shadow: 0 1px 5px rgba(249,83,198,0.10);
}
.cookie-btn.settings {
  background: rgba(136,225,103,0.9);
  color: #25476a;
}
.cookie-btn.accept {
  background: var(--color-accent);
  color: #fff;
}
.cookie-btn.reject {
  background: var(--color-art-pink);
}
.cookie-btn:hover, .cookie-btn:focus {
  box-shadow: 0 2px 10px rgba(246,185,59,0.11),0 2px 8px rgba(249,83,198,0.09);
  filter: brightness(1.05);
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%) scale(1);
  background: #fff;
  box-shadow: 0 4px 32px rgba(75,119,190,0.22);
  border-radius: var(--radius-main);
  padding: 36px 32px;
  min-width: 320px;
  min-height: 220px;
  z-index: 7000;
  opacity: 1;
  transition: opacity .28s, transform .21s;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%,-50%) scale(0.96);
}
.cookie-modal-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.cookie-modal-header h2 {
  font-size: 1.2rem;
  color: var(--color-art-blue);
  font-family: var(--font-display);
}
.cookie-modal-close {
  background: none;
  border: none;
  color: var(--color-art-pink);
  font-size: 2rem;
  cursor: pointer;
  padding: 0 8px;
  transition: color .14s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: var(--color-accent);
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-body);
}
.cookie-category input[type=checkbox], .cookie-category input[type=radio] {
  width: 22px;
  height: 22px;
  accent-color: var(--color-art-blue);
}
.cookie-category.essential label { color: var(--color-art-pink); font-weight: bold; }
.cookie-category.essential input { accent-color: var(--color-accent); }
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin-top: 16px;
  justify-content: flex-end;
}
/* Modal Reveal Transition */
.cookie-modal {
  animation: popup-reveal .38s cubic-bezier(.55,1.2,.55,1.14);
}
@keyframes popup-reveal {
  0% { opacity: 0; transform: translate(-50%,-50%) scale(0.95); }
  80% { opacity: 1; transform: translate(-50%,-50%) scale(1.04); }
  100% { opacity: 1; transform: translate(-50%,-50%) scale(1); }
}

/* ======= RESPONSIVE DESIGN ======= */
@media (max-width: 1280px) {
  .container { max-width: 960px; }
}
@media (max-width: 992px) {
  .container { max-width: 720px; }
  .team-list { gap: 18px; }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  body { font-size: 15px; }
  .container { max-width: 98vw; }
  .footer-social { margin-right: 0; }
  header .container, footer .container {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
  .hero { padding: 32px 0 24px 0; min-height: auto; }
  .section, .features, .cta, .success, .privacy-policy, .terms-of-service, .gdpr, .cookie-policy {
    padding: 28px 8px;
    margin-bottom: 38px;
  }
  .content-wrapper { gap: 18px; }
  .team-list, .features .content-wrapper ul, .card-container, .content-grid {
    flex-direction: column;
    gap: 21px;
  }
  .testimonials .testimonial-card, .testimonial-card, .team-member, .faq-item, .card {
    min-width: 0;
    max-width: 100%;
    width: 100%;
  }
  .cta .content-wrapper, .cta {
    align-items: stretch;
    text-align: left;
  }
}
@media (max-width: 560px) {
  html { font-size: 14px; }
  .hero h1 { font-size: 1.55rem; }
  .hero { padding-left: 0; }
  .container { padding: 0 7px; }
  .section { padding: 17px 2px; }
  .footer-nav, .footer-contact, .footer-social {
    font-size: 0.97rem;
  }
  .cookie-banner {
    flex-direction: column;
    padding: 13px 8px 18px 8px;
    gap: 10px;
    font-size: 0.97rem;
  }
  .cookie-banner-btns {
    flex-direction: column;
    gap: 8px;
    justify-content: stretch;
    width: 100%;
  }
  .cookie-modal { min-width: 88vw; padding: 19px 7px 17px 11px; }
}

/* ====== MICRO-INTERACTIONS ====== */
.cta-btn:active { transform: scale(0.98); }
.main-nav a:active, .mobile-nav a:active { opacity: .82; }
.card:active, .faq-item:active, .team-member:active, .testimonial-card:active {
  transform: scale(.985);
  opacity: .96;
}
input, textarea {
  border-bottom: 2px solid var(--color-accent);
  border-radius: 4px;
  padding: 7px 3px;
  margin-bottom: 8px;
  background: #f7f9fa;
  transition: border-color .13s;
}
input:focus, textarea:focus {
  border-bottom: 2.2px solid var(--color-art-pink);
  background: #fffbe9;
}

/* = MOBILE MENU TRANSITIONS = */
.mobile-menu {
  will-change: transform;
  transition: transform 0.45s cubic-bezier(.75,0,.25,1);
}

/* ===== SELECTORS FOR CARD-CONTAINER, MARGINS, GAPS ===== */
.card-container, .content-grid, .features .content-wrapper ul, .team-list, .faq-list  {
  gap: 20px;
}
.card, .testimonial-card, .service-card, .team-member, .faq-item {
  margin-bottom: 20px;
}

/* ========== HIGH CONTRAST FOR TESTIMONIALS ========== */
.testimonial-card, .testimonials .testimonial-card {
  background: #fff;
  color: #25476a;
  box-shadow: 0 2px 10px rgba(36,18,98,0.08);
}

/* ========== END OF STYLE.CSS ========== */
