/* =================== CSS RESET & NORMALIZATION =================== */
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,
main, 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, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #f5f6fa;
  color: #202632;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
}
a { color: inherit; text-decoration: none; transition: color 0.2s linear; }
ul, ol { list-style: none; }
img { border: 0; max-width: 100%; display: block; }
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  outline: none;
}
hr { border: 0; border-top: 1px solid #eceae4; margin: 32px 0; }

/* =================== ROOT & BRAND COLORS =================== */
:root {
  --brand-primary: #263238;
  --brand-secondary: #FFFFFF;
  --brand-accent: #CBA135;
  --electric-pink: #E1007D;
  --electric-blue: #1CB5E0;
  --electric-green: #00E172;
  --bg-default: #f5f6fa;
  --text-main: #202632;
  --text-inverse: #fafafa;
  --shadow-vibrant: 0 6px 32px 0 rgba(41, 44, 67, .16);
}

/* =================== FONTS =================== */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,800|Roboto:400,500,700&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.5px;
  color: var(--brand-primary);
}
h1 { font-size: 2.5rem; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.5rem; margin-bottom: 12px; }
h4 { font-size: 1.125rem; margin-bottom: 8px; }
p, ul, ol { font-size: 1rem; line-height: 1.5; }
strong { font-weight: 700; }

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

/* =================== LAYOUT CLASSES =================== */
.container {
  width: 100%;
  max-width: 1168px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .content-wrapper {
    gap: 24px;
  }
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--brand-secondary);
  border-radius: 24px;
  box-shadow: var(--shadow-vibrant);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  box-shadow: var(--shadow-vibrant);
  border-radius: 18px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  transition: transform .18s cubic-bezier(.42,1.22,.52,1);
}
.card:hover {
  transform: translateY(-6px) scale(1.035) rotate(-1deg);
  box-shadow: 0 8px 40px 0 rgba(90,50,190,.11), 0 4px 12px 0 rgba(0,0,0,.15);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 24px;
  gap: 14px;
}

.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

@media (max-width: 768px) {
  .section { padding: 24px 8px; margin-bottom: 36px; }
  .container { padding: 0 4px; }
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
  .content-grid { flex-direction: column; gap: 14px; }
  .card-container { flex-direction: column; gap: 16px; }
}

/* =================== HEADER / NAVBAR =================== */
header {
  width: 100%;
  background: var(--brand-primary);
  color: var(--brand-secondary);
  box-shadow: 0 2px 10px rgba(41, 44, 67, .09);
  z-index: 100;
  position: relative;
}
header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 24px 0 18px 0;
  position: relative;
}
header nav a img {
  height: 44px;
  width: auto;
  margin-right: 24px;
  vertical-align: middle;
}
nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
nav ul li a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--brand-secondary);
  padding: 8px 4px;
  border-radius: 4px;
  transition: background .2s, color .2s;
}
nav ul li a:hover, nav ul li a:focus {
  background: var(--electric-pink);
  color: #fff;
}
header .btn-primary {
  margin-left: 32px;
}

@media (max-width: 1090px) {
  nav ul {
    gap: 12px;
  }
  header nav {
    gap: 12px;
  }
  header .btn-primary { margin-left: 16px; }
}

@media (max-width: 920px) {
  nav ul, header .btn-primary {
    display: none;
  }
}

/* =================== HERO SECTION =================== */
.hero {
  background: linear-gradient(88deg, #fff 88%, var(--electric-blue) 99%) left no-repeat;
  position: relative;
  overflow: hidden;
  min-height: 420px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  display: flex;
  align-items: stretch;
  justify-content: center;
}
.hero .container, .hero .content-wrapper {
  height: 100%;
}
.hero h1 {
  color: var(--brand-primary);
  text-shadow: 0 2px 6px rgba(27,27,27,.10);
  font-size: 2.7rem;
  background: linear-gradient(90deg, var(--electric-pink), #CBA135 67%, var(--electric-blue) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  margin-bottom: 12px;
}
.hero p {
  font-size: 1.12rem;
  margin-bottom: 23px;
  color: var(--brand-primary);
  font-weight: 500;
}
.hero .btn-primary {
  margin-top: 4px;
}
@media (max-width: 768px) {
  .hero { min-height: 240px; padding-bottom: 12px; margin-bottom: 18px; }
  .hero h1 { font-size: 1.85rem; margin-bottom: 10px; }
  .hero p { font-size: 1rem; }
}

/* =================== BUTTONS =================== */
.btn-primary,
.btn-secondary{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  font-size: 1.08rem;
  padding: 13px 32px;
  border-radius: 42px;
  box-shadow: 0 2px 12px 0 rgba(203,161,53,0.16);
  background: var(--brand-accent);
  color: var(--brand-secondary) !important;
  cursor: pointer;
  margin: 0 8px 0 0;
  letter-spacing: 0.8px;
  border: none;
  transition: background .24s, color .19s, box-shadow .23s, transform .21s;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--electric-pink);
  color: #fff !important;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 3px 14px 0 rgba(227,0,125,0.13);
}
.btn-secondary {
  background: var(--electric-blue);
  color: #fff !important;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--electric-green);
  color: var(--brand-primary) !important;
}
@media (max-width: 500px) {
  .btn-primary, .btn-secondary {
    padding: 11px 17px;
    font-size: 1rem;
  }
}

/* =================== FEATURES SECTION =================== */
.features {
  background: #fffefa;
  border-radius: 20px;
  margin-bottom: 54px;
  box-shadow: 0 2px 30px 0 rgba(203,161,53,0.08);
}
.features h2 {
  margin-bottom: 20px;
  color: var(--brand-primary);
}
.features ul {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 8px;
}
.features ul li {
  background: #fff;
  box-shadow: var(--shadow-vibrant);
  border-radius: 18px;
  flex: 1 0 220px;
  min-width: 210px;
  padding: 26px 24px 24px 24px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  border-left: 4px solid var(--electric-blue);
  transition: transform .18s, box-shadow .21s, border-color .18s;
  position: relative;
}
.features ul li:hover {
  transform: translateY(-4px) rotate(-1.2deg) scale(1.022);
  border-left-color: var(--electric-pink);
  box-shadow: 0 6px 32px 0 rgba(227,0,125,0.13), var(--shadow-vibrant);
}
.features ul li img {
  height: 36px;
  width: 36px;
  margin-bottom: 4px;
}
.features ul li strong {
  color: var(--brand-primary);
  font-size: 1.1rem;
  line-height: 1;
}
.features ul li p {
  color: var(--brand-primary);
  font-size: 0.97rem;
}
@media (max-width: 1100px) {
  .features ul {
    gap: 18px;
  }
}
@media (max-width: 768px) {
  .features ul {
    flex-direction: column;
    gap: 14px;
  }
  .features ul li {
    min-width: 0;
    width: 100%;
    padding: 17px 10px 15px 14px;
  }
}

/* =================== TESTIMONIALS =================== */
.testimonial-card {
  margin: 0 0 24px 0;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 28px;
  background: #f8f9fa;
  border-left: 6px solid var(--electric-pink);
  border-radius: 15px;
  box-shadow: var(--shadow-vibrant);
  transition: border-color .18s, box-shadow .17s;
  position: relative;
  color: var(--brand-primary);
  min-width: 0;
}
.testimonial-card:hover {
  border-left-color: var(--brand-accent);
  box-shadow: 0 8px 30px 0 rgba(203,161,53,0.07), 0 2px 24px 0 rgba(203,161,53,0.08);
}
.testimonial-card p {
  font-size: 1.08rem;
  color: #22282c;
  line-height: 1.5;
  font-style: italic;
}
.testimonial-card strong {
  color: var(--electric-blue);
  font-size: 1rem;
  font-weight: 800;
  margin-left: 8px;
}
@media (max-width: 768px) {
  .testimonial-card {
    flex-direction: column;
    gap: 12px;
    padding: 15px 12px;
    width: 100%;
  }
}

/* =================== CTA SECTIONS =================== */
.cta {
  background: linear-gradient(90deg, var(--electric-pink) 0%, var(--brand-accent) 80%, var(--electric-blue) 100%);
  color: #fff;
  border-radius: 22px;
  box-shadow: 0 2px 18px 0 rgba(39,65,165,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-bottom: 48px;
  transition: box-shadow .26s;
}
.cta p {
  color: #fff;
  font-weight: 700;
  font-size: 1.13rem;
  margin: 0 10px 0 0;
  letter-spacing: 0.05em;
}
.cta .btn-primary {
  background: var(--brand-secondary);
  color: var(--brand-accent) !important;
  font-weight: 800;
}
.cta .btn-primary:hover {
  background: var(--brand-accent);
  color: #fff !important;
}
@media (max-width: 550px) {
  .cta {
    flex-direction: column;
    gap: 14px;
    padding: 18px 4px;
    margin-bottom: 24px;
  }
  .cta p {margin-bottom: 8px;}
}

/* =================== ABOUT TEASER & TEXT-SECTION =================== */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.text-section ul, .text-section ol {
  padding-left: 20px;
  margin-top: 8px;
  margin-bottom: 6px;
  color: var(--brand-primary);
}
.text-section ul li, .text-section ol li {
  margin-bottom: 6px;
  font-size: 1rem;
  line-height: 1.5;
}
.text-section a { color: var(--electric-pink); word-break: break-word; }
.text-section a:hover { color: var(--brand-accent); text-decoration: underline; }

/* =================== HIGHLIGHTED SERVICE / USP =================== */
.highlighted-service {
  background: var(--electric-blue);
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 18px 24px;
  border-radius: 12px;
  display: inline-block;
  margin-top: 20px;
  box-shadow: 0 2px 12px 0 rgba(30,181,224,0.14);
  letter-spacing: 0.02em;
}

.usp {
  background: #e6f9f3;
  border-radius: 13px;
  box-shadow: 0 2px 12px 0 rgba(0,225,114,0.10);
  margin-bottom: 40px;
}

/* =================== FOOTER =================== */
footer {
  background: var(--brand-primary);
  color: #fff;
  padding: 24px 0 8px 0;
  text-align: center;
  font-size: 0.99rem;
  margin-top: 32px;
}
footer nav {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}
footer ul {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin: 0;
}
footer ul li a {
  color: var(--brand-accent);
  font-weight: 600;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  transition: color .19s, text-decoration .14s;
}
footer ul li a:hover {
  color: var(--electric-blue);
  text-decoration: underline;
}
footer p {
  color: #ded5c3;
  font-size: 0.94rem;
  margin-top: 14px;
}
@media (max-width: 600px) {
  footer ul { gap: 8px; }
  footer { font-size: 0.93rem; padding: 14px 0 8px 0; }
}

/* =================== MOBILE NAVIGATION (BURGER MENU) =================== */
.mobile-menu-toggle {
  display: none;
  background: var(--electric-pink);
  color: #fff;
  border-radius: 50%;
  padding: 10px 13px;
  font-size: 2rem;
  font-weight: 700;
  position: absolute;
  right: 14px;
  top: 12px;
  z-index: 401;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 14px 0 rgba(225,0,125,0.105);
  transition: background .18s, color .12s;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus { background: var(--brand-accent); color: #fff; }

@media (max-width: 920px) {
  .mobile-menu-toggle { display: block; }
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--brand-primary);
  color: #fff;
  z-index: 9000;
  transform: translateX(-100vw);
  opacity: 0;
  pointer-events: none;
  transition: transform .38s cubic-bezier(.87,.12,.31,1.16), opacity .28s linear;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--brand-accent);
  color: #fff;
  border-radius: 50%;
  font-size: 2rem;
  width: 48px;
  height: 48px;
  border: none;
  cursor: pointer;
  z-index: 9100;
  box-shadow: 0 2px 22px 0 rgba(203,161,53,0.17);
  transition: background .19s;
}
.mobile-menu-close:active,
.mobile-menu-close:focus {
  background: var(--electric-pink);
  color: #fff;
}
.mobile-nav {
  margin-top: 82px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  padding: 0 32px;
}
.mobile-nav a {
  display: block;
  width: 100%;
  color: #fff !important;
  background: none;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  padding: 16px 0 7px 0;
  margin: 0;
  border-radius: 6px;
  transition: background .19s, color .19s, padding-left .18s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: var(--electric-blue);
  color: #fff !important;
  padding-left: 13px;
}
@media (max-width: 500px) {
  .mobile-nav { padding: 0 12px; }
  .mobile-nav a { font-size: 1rem; padding: 13px 0 4px 0; }
  .mobile-menu-close {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
}

/* =================== COOKIE CONSENT BANNER =================== */
.cookie-consent-banner {
  position: fixed;
  width: 100vw;
  max-width: 100vw;
  left: 0; right: 0; bottom: 0;
  z-index: 9999;
  background: rgba(38,50,56,0.97);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
  padding: 22px 40px;
  font-size: 1.1rem;
  transition: transform .44s cubic-bezier(0.85,0.18,0.53,0.98);
  box-shadow: 0 -2px 36px 0 rgba(203,161,53,0.18);
}
.cookie-consent-banner.hidden {
  transform: translateY(120px);
  pointer-events: none;
  opacity: 0;
}
.cookie-consent-banner p {
  flex: 1 1 auto;
  margin-right: 12px;
  color: #fff;
  font-size: 1.01rem;
}
.cookie-consent-banner .btn-group {
  display: flex;
  gap: 12px;
}
.cookie-consent-banner .btn-primary,
.cookie-consent-banner .btn-secondary {
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 30px;
  padding: 9px 18px;
  margin: 0;
  min-width: 90px;
}
.cookie-consent-banner .btn-cookie-settings {
  background: var(--electric-blue);
  color: #fff;
  font-weight: 700;
  border-radius: 30px;
  padding: 9px 18px;
  margin: 0;
  border: none;
  transition: background .19s;
  cursor: pointer;
}
.cookie-consent-banner .btn-cookie-settings:hover {
  background: var(--electric-pink);
  color: #fff;
}
@media (max-width: 720px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: stretch;
    padding: 14px 9px 22px 9px;
    gap: 12px;
    font-size: 0.93rem;
  }
  .cookie-consent-banner .btn-group { justify-content: flex-end; }
}

/* COOKIE SETTINGS MODAL */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(41,44,67,0.67);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  opacity: 0;
  pointer-events: none;
  transition: opacity .34s cubic-bezier(.81,.21,.56,.85);
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal-content {
  background: #fff;
  color: var(--brand-primary);
  border-radius: 20px;
  padding: 32px 36px 24px 36px;
  box-shadow: 0 2px 64px 0 rgba(41,44,67,0.14);
  position: relative;
  min-width: 320px;
  max-width: 99vw;
  width: 390px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.cookie-modal-content h3 {
  color: var(--electric-blue);
  margin-bottom: 10px;
  font-size: 1.13rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.cookie-modal-content label, .cookie-modal-content .cookie-category {
  font-size: 1.01rem;
  color: var(--brand-primary);
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 11px;
  gap: 8px;
}
.cookie-modal-content input[type="checkbox"] {
  accent-color: var(--electric-blue);
  width: 20px;
  height: 20px;
  margin-left: 10px;
}
.cookie-modal-content .cookie-note {
  font-size: 0.88rem;
  color: #757575;
  margin-bottom: 10px;
}
.cookie-modal-content .btn-group {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}
.cookie-modal-content .cookie-modal-close {
  position: absolute;
  top: 10px; right: 12px;
  color: #fff;
  background: var(--electric-pink);
  border-radius: 50%;
  font-size: 1.5rem;
  width: 37px; height: 37px;
  display: flex; align-items: center; justify-content: center;
  border: none;
  cursor: pointer;
  transition: background .2s;
}
.cookie-modal-content .cookie-modal-close:hover,
.cookie-modal-content .cookie-modal-close:focus {
  background: var(--electric-blue);
}
@media (max-width: 530px) {
  .cookie-modal-content {
    width: 97vw;
    min-width: 0;
    padding: 20px 3vw 22px 3vw;
  }
}

/* =================== LEGAL PAGES =================== */
.legal {
  background: #fff;
  border-radius: 17px;
  box-shadow: 0 1px 10px 0 rgba(70,110,190,0.06);
  margin-bottom: 44px;
  padding-bottom: 24px;
  overflow: hidden;
}
.legal h1, .legal h2 {
  color: var(--electric-pink);
  margin-bottom: 18px;
}
.legal h2 { font-size: 1.3rem; color: var(--electric-blue); }

/* =========== MISCELLANEOUS =========== */
a[role=button],
button[role=button],
button {
  outline: none;
  transition: outline .13s;
}
button:focus, a:focus {
  outline: 2px solid var(--electric-blue);
}

::-webkit-scrollbar {
  width: 11px;
  background: #f5f6fa;
  border-radius: 13px;
}
::-webkit-scrollbar-thumb {
  background: var(--brand-accent);
  border-radius: 13px;
}

/* =============== Utility / Spacing =============== */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-20 { margin-bottom: 20px !important; }
.gap-20 { gap:20px !important; }

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