/* ========================================
   RESET & NORMALIZE
   ======================================== */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  padding: 0;
  margin: 0;
}
body {
  background: #fcfdff;
  color: #222;
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.18s;
}
ul, ol {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
}
img {
  max-width: 100%;
  display: block;
}
button {
  font-family: inherit;
  border: none;
  outline: none;
  background: none;
  cursor: pointer;
}

/* ========================================
   BRAND COLORS & FONTS
   ======================================== */
:root {
  --primary: #1A345E;
  --secondary: #FACF5A;
  --accent: #FFFFFF;
  --art-pink: #EF466F;
  --art-blue: #3FD9E5;
  --art-green: #51DF95;
  --card-shadow: 0 4px 28px rgba(26,52,94,0.08);
  --radius: 18px;
  --gap: 20px;
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */
h1, .h1 {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--art-pink);
  margin-bottom: 16px;
  letter-spacing: -1px;
}
h2, .h2 {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
h3, .h3 {
  font-family: var(--font-display);
  font-size: 1.36rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--art-blue);
}
p {
  font-size: 1rem;
  font-family: var(--font-body);
  margin-bottom: 14px;
}
strong { font-weight: 700; }
.text-section ul, .text-section ol {
  margin-left: 0;
  padding-left: 0;
  margin-bottom: 15px;
}
.text-section ul li, .text-section ol li {
  padding-left: 32px;
  margin-bottom: 10px;
  position: relative;
}
.text-section ul li:before {
  content: '';
  position: absolute;
  left: 6px;
  top: 11px;
  width: 10px;
  height: 10px;
  background: var(--art-green);
  border-radius: 50%;
  display: inline-block;
}
.text-section ol {
  counter-reset: citem;
}
.text-section ol li:before {
  counter-increment: citem;
  content: counter(citem) '.';
  position: absolute;
  left: 7px;
  top: 0;
  color: var(--art-pink);
  font-family: var(--font-display);
  font-weight: 700;
}
.text-section ul li img, .text-section ol li img {
  width: 22px;
  height: 22px;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: contain;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.045));
}

/* ========================================
   CONTAINER & WRAPPER
   ======================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  margin: 0 auto;
  padding: 0;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  position: relative;
}
@media (max-width: 900px) {
  .section {
    padding: 28px 8px;
    margin-bottom: 40px;
  }
}

/* ========================================
   FLEXBOX LAYOUTS (MANDATORY)
   ======================================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  padding: 32px 22px 22px 22px;
  margin-bottom: 20px;
  position: relative;
  transition: transform 0.18s cubic-bezier(.42,0,.58,1), box-shadow 0.18s;
  flex: 1 1 340px;
  min-width: 280px;
  max-width: 390px;
}
.card:hover {
  transform: translateY(-7px) rotate(-1.5deg) scale(1.03);
  box-shadow: 0 10px 36px rgba(239,70,111,0.10);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  width: 100%;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #faf7f9;
  padding: 20px;
  border-radius: 14px;
  margin-bottom: 20px;
  box-shadow: 0 2px 16px #f6e1e7;
  position: relative;
  min-height: 88px;
  color: #202028 !important;
  z-index: 2;
}
.testimonial-card p {
  color: #222 !important;
  font-family: var(--font-body);
  font-size: 1.08rem;
  margin-bottom: 0;
  letter-spacing: 0.01em;
}
.testimonial-details {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  flex-shrink: 0;
}
.testimonial-details strong {
  color: var(--primary);
  font-size: 0.96rem;
}
.testimonial-details span {
  font-size: 1.1rem;
  color: var(--art-pink);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.cta {
  background: linear-gradient(90deg, var(--secondary) 75%, var(--art-pink) 100%);
  border-radius: var(--radius);
  padding: 32px 16px;
  margin-bottom: 40px;
  text-align: center;
  box-shadow: 0 4px 40px rgba(26,52,94,0.09);
}
.cta p {
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 1.26rem;
  font-weight: 600;
  margin-bottom: 18px;
}

/* ====== HERO SECTION ====== */
.hero {
  background: radial-gradient(ellipse at top right, var(--art-pink) 0%, #fff 90%);
  padding: 60px 0 40px;
  position: relative;
  margin-bottom: 60px;
  border-radius: var(--radius);
}
.hero h1 {
  font-size: 2.7rem;
  color: var(--art-pink);
}
.hero p {
  font-size: 1.18rem;
  margin-bottom: 22px;
}

/* ========== NAVIGATION ========== */
header {
  background: #fff;
  box-shadow: 0 2px 20px rgba(26,52,94,0.07);
  position: sticky;
  top: 0;
  z-index: 1002;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: 0 20px;
  min-height: 72px;
}
nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
nav > a img {
  height: 40px;
  margin-right: 18px;
}
nav ul {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-right: 22px;
}
nav ul li {
  margin-bottom: 0;
}
nav ul li a {
  font-family: var(--font-display);
  color: var(--primary);
  font-size: 1.03rem;
  background: transparent;
  padding: 8px 14px;
  border-radius: 7px;
  transition: background 0.15s, color 0.13s;
}
nav ul li a:hover, nav ul li a:focus {
  color: var(--art-pink);
  background: #fff9e6;
}
.primary-cta {
  font-family: var(--font-display);
  font-weight: bold;
  font-size: 1.09rem;
  background: linear-gradient(90deg, var(--art-blue) 40%, var(--art-pink) 100%);
  color: #fff;
  padding: 11px 28px;
  border-radius: 46px;
  margin-left: 12px;
  box-shadow: 0 2px 14px rgba(26,52,94,0.11);
  letter-spacing: 0.03em;
  border: none;
  outline: none;
  cursor: pointer;
  transition: box-shadow 0.17s, background 0.19s, transform 0.14s;
  position: relative;
}
.primary-cta:hover, .primary-cta:focus {
  background: linear-gradient(90deg, var(--art-green) 15%, var(--art-pink) 85%);
  box-shadow: 0 8px 28px rgba(239,70,111,0.20);
  transform: translateY(-2px) scale(1.04) rotate(-0.5deg);
}

/* ========== MOBILE MENU ========== */
.mobile-menu-toggle {
  display: none;
  border-radius: 8px;
  background: linear-gradient(90deg, var(--art-blue), var(--art-pink));
  color: #fff;
  font-size: 2.2rem;
  padding: 2px 13px 5px 13px;
  margin-left: 12px;
  border: none;
  outline: none;
  z-index: 1003;
  transition: background 0.17s, color 0.14s;
}
.mobile-menu-toggle:active {
  background: var(--art-green);
  color: var(--primary);
}
.mobile-menu {
  display: none;
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: linear-gradient(135deg, #fff 65%, var(--art-pink) 120%);
  z-index: 2000;
  padding-top: 45px;
  transform: translateX(104vw);
  transition: transform 0.37s cubic-bezier(.7,0,.21,1);
}
.mobile-menu.open {
  display: block;
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 20px;
  font-size: 2.1rem;
  color: var(--art-pink);
  background: #fff;
  border-radius: 8px;
  padding: 3px 13px 4px 13px;
  box-shadow: 0 1px 10px #facf5a30;
  transition: background 0.15s, color 0.14s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--art-blue);
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding: 30px 18px 0 28px;
  font-size: 1.24rem;
}
.mobile-nav a {
  color: var(--primary);
  background: #fff8e654;
  border-radius: 9px;
  padding: 13px 10px 11px 20px;
  margin-bottom: 7px;
  width: 100%;
  display: block;
  font-family: var(--font-display);
  letter-spacing: 0.01em;
  font-weight: 600;
  transition: background 0.15s, color 0.13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--art-pink);
  color: #fff;
}

@media (max-width: 1023px) {
  nav ul {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 1024px) {
  .mobile-menu { display: none !important; }
  .mobile-menu-toggle { display: none !important; }
}

/* ========== PROMO BADGES ========== */
.discount-badge {
  display: inline-block;
  background: var(--art-pink);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  border-radius: 12px;
  padding: 4px 12px;
  font-size: 0.98rem;
  vertical-align: middle;
  margin: 0 10px 0 6px;
  box-shadow: 0 1px 6px #ef466f14;
  letter-spacing: 0.02em;
}

/* ========== FOOTER ========== */
footer {
  background: #fff;
  border-top: 3px solid var(--art-blue);
  margin-top: 35px;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
  padding: 34px 0 14px 0;
  border-bottom: 1px solid #eaeaea;
}
.footer-top a img {
  height: 38px;
}
.footer-top nav {
  display: flex;
  gap: 18px;
}
.footer-top nav a {
  color: var(--art-pink);
  font-family: var(--font-display);
  font-size: 0.95rem;
  background: #fff8ee;
  border-radius: 6px;
  padding: 7px 11px;
  transition: background 0.15s;
}
.footer-top nav a:hover {
  background: var(--art-pink);
  color: #fff;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 42px;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0 28px 0;
}
.contact-info ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-info ul li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--primary);
  font-size: 1rem;
  font-family: var(--font-body);
}
.contact-info ul li img {
  width: 18px;
  height: 18px;
}
.social-media-links {
  display: flex;
  gap: 14px;
}
.social-media-links a {
  background: #fff;
  border-radius: 50%;
  padding: 6px;
  box-shadow: 0 2px 12px #facf5a18;
  transition: background 0.14s, box-shadow 0.16s;
}
.social-media-links a:hover{
  background: var(--art-blue);
  box-shadow: 0 5px 18px #3fd9e51a;
}
.social-media-links img {
  width: 25px;
  height: 25px;
}

@media (max-width: 850px) {
  .footer-top, .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

/* ========== SECTIONS: UL/LI FEATURES ========== */
section ul, section ol {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
section ul li, section ol li {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  background: #f9fafd;
  border-radius: 12px;
  padding: 11px 15px 11px 38px;
  color: var(--primary);
  font-size: 1.09rem;
  font-family: var(--font-body);
  box-shadow: 0 1px 6px #ef466f14;
  position: relative;
}
section ul li img, section ol li img {
  width: 22px;
  height: 22px;
  position: absolute;
  left: 9px;
  top: 11px;
}

@media (max-width: 600px) {
  section ul li, section ol li {
    font-size: 0.97rem;
    padding-left: 36px;
  }
}

/* ========== RESPONSIVE - FLEX SECTIONS ========= */
@media (max-width: 768px) {
  .text-image-section, .content-grid {
    flex-direction: column;
    align-items: stretch !important;
    gap: 20px;
  }
  .hero {
    padding: 35px 0 22px;
    margin-bottom: 36px;
  }
}

/* CARD SPACING per MANDATORY RULES */
.card, .testimonial-card, .section, .cta {
  margin-bottom: 20px;
}
.card-container, .content-grid, .features {
  gap: 24px;
}

/* =========================================
   BUTTONS/MICROINTERACTIONS/ANIMATION
   ========================================= */
button, .primary-cta, .mobile-menu-close {
  transition: background 0.18s, color 0.15s, box-shadow 0.19s, transform 0.16s;
}
.mobile-menu, .cookie-banner, .cookie-modal {
  transition: transform 0.37s cubic-bezier(.5,.2,.2,.8), opacity 0.18s;
}
/* Micro hover for cards */
.card:hover {
  box-shadow: 0 8px 38px #facf5a30;
  border: 1.5px solid var(--art-blue);
}
section ul li:hover, section ol li:hover {
  background: #fff8e6;
  transform: translateY(-2px) scale(1.015);
  box-shadow: 0 2px 20px #facf5a18;
}
.primary-cta:active {
  background: linear-gradient(90deg, #457cf6, var(--art-pink) 100%);
}

/* =========================================
   COOKIE CONSENT BANNER & MODAL
   ========================================= */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background: linear-gradient(90deg, #fff8e6 70%, var(--art-pink) 170%);
  color: var(--primary);
  font-size: 1.07rem;
  font-family: var(--font-body);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 20px 30px 20px 28px;
  box-shadow: 0 -3px 18px #ef466f24;
  z-index: 3000;
  transform: translateY(110%);
  opacity: 0;
}
.cookie-banner.show {
  transform: translateY(0);
  opacity: 1;
}
.cookie-banner .cookie-banner-text {
  flex: 1 1 0;
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 18px;
}
.cookie-banner button {
  font-family: var(--font-display);
  padding: 8px 20px;
  border-radius: 16px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  outline: none;
  margin-right: 0;
  transition: background 0.17s, color 0.13s;
  box-shadow: 0 2px 10px #1a345e14;
}
.cookie-accept {
  background: var(--art-green);
  color: var(--primary);
}
.cookie-accept:hover,
.cookie-accept:focus {
  background: var(--art-blue);
  color: #fff;
}
.cookie-reject {
  background: var(--art-pink);
  color: #fff;
}
.cookie-reject:hover, .cookie-reject:focus {
  background: var(--primary);
  color: #fff;
}
.cookie-settings {
  background: var(--secondary);
  color: var(--primary);
}
.cookie-settings:hover, .cookie-settings:focus {
  background: var(--primary);
  color: #fff;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  width: 90%;
  max-width: 420px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 8px 44px #1a345e18;
  padding: 36px 24px 24px 24px;
  z-index: 3100;
  transform: translate(-50%,-60%) scale(0.97);
  opacity: 0;
  pointer-events: none;
}
.cookie-modal.show {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%,-50%) scale(1);
}
.cookie-modal h2 {
  color: var(--primary);
  font-size: 1.40rem;
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: 10px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 10px 0 10px 0;
}
.cookie-modal label {
  font-size: 1.02rem;
  color: var(--primary);
}
.cookie-modal input[type='checkbox'] {
  accent-color: var(--art-blue);
  width: 19px; height: 19px;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 20px;
}
.cookie-modal .modal-actions button {
  padding: 9px 20px;
  border-radius: 16px;
  font-size: 1rem;
  font-family: var(--font-display);
  font-weight: 600;
}
.cookie-modal .modal-actions .cookie-accept {
  background: var(--art-green);
  color: var(--primary);
}
.cookie-modal .modal-actions .cookie-reject {
  background: var(--art-pink);
  color: #fff;
}
.cookie-modal .modal-actions .cookie-close {
  background: #e6ebf0;
  color: var(--primary);
}
.cookie-modal .modal-actions .cookie-close:hover {
  background: var(--art-blue);
  color: #fff;
}

/* ========== MAP LOCATION (CONTACT) ========= */
.map-location {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #f7fafd;
  border-radius: 11px;
  padding: 15px 20px;
  margin-top: 15px;
  color: var(--primary);
  font-family: var(--font-body);
}
.map-location img {
  width: 26px; height: 26px;
}
.map-location span {
  font-size: 1.13rem;
  font-family: var(--font-display);
}

/* ========== UTILITIES / VISUAL ACCENTS ========= */
::-webkit-scrollbar { width: 6px; background: #f9fafd; }
::-webkit-scrollbar-thumb { background: var(--secondary); border-radius: 5px; }
::-webkit-selection { background: var(--art-pink); color: #fff; }
::selection { background: var(--art-pink); color: #fff; }

hr {
  border: none;
  border-top: 1.5px dashed var(--secondary);
  margin: 18px 0 24px 0;
}

/* Artful touches */
.hero:after {
  content: '';
  position: absolute;
  bottom: -35px;
  right: 5%;
  width: 120px;
  height: 60px;
  background: var(--art-green);
  opacity: 0.12;
  border-radius: 60px 60px 20px 60px;
  z-index: 1;
  pointer-events: none;
}
.cta:before {
  content: '';
  position: absolute;
  left: 4%;
  top: -28px;
  width: 36px;
  height: 36px;
  background: var(--art-blue);
  opacity: 0.14;
  border-radius: 50%;
  z-index: 0;
}

/* ========== FONTS LOADING ========== */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600 900;
  font-display: swap;
  src: local('Montserrat'), url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700;800;900&display=swap');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: local('Roboto'), url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');
}

/* ========== RESPONSIVE OVERRIDES ========== */
@media (max-width: 600px) {
  .container { padding: 0 7px; }
  .footer-top, .footer-bottom { padding-left: 0; }
  .section { padding: 24px 6px; }
  .card { padding: 18px 8px 15px 8px; }
  h1, .h1 { font-size: 1.46rem; }
  h2, .h2 { font-size: 1.18rem; }
  .primary-cta { padding: 9px 14px; font-size: 0.95rem; }
}

/* ========== PRINT / SCREEN ========== */
@media print {
  header, nav, footer, .cookie-banner, .mobile-menu { display: none !important; }
  .section { box-shadow: none !important; border: none !important; }
}
