/* === 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.4;
  background: #F5F4EF;
  color: #2D2D34;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.2s; }
button { font-family: inherit; font-size: 1rem; appearance: none; border: none; background: none; cursor: pointer; outline: none; }
ul, ol { list-style-position: inside; }
strong, b { font-weight: bold; }

/* === BRAND COLORS AS CSS CUSTOM PROPERTIES === */
:root {
  --primary: #2D2D34;
  --secondary: #BCA77A;
  --accent: #F5F4EF;
  --electric-pink: #FF1D51;
  --electric-blue: #14B5FF;
  --electric-yellow: #FFCE00;
  --vibrant-green: #34EABE;
  --cta-gradient-light: #FF1D51;
  --cta-gradient-dark: #14B5FF;
  --card-bg: #fff;
  --text-on-dark: #fff;
  --text-dark: #18181A;
  --shadow-main: 0 8px 32px rgba(74,27,68,0.11);
}

/* === TYPOGRAPHY === */
h1, .display {
  font-family: 'Playfair Display', serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--electric-pink);
  margin-bottom: 16px;
  line-height: 1.2;
}
h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.2;
}
p, li, blockquote, ul, ol, label {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #2d2d34;
  font-size: 1rem;
}
p.subheadline {
  font-size: 1.15rem;
  color: var(--electric-blue);
  font-weight: 500;
  margin-bottom: 22px;
}
blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--primary);
  border-left: 4px solid var(--electric-yellow);
  margin-left: 0;
  padding-left: 16px;
  margin-bottom: 8px;
}
blockquote span {
  display: block;
  margin-top: 8px;
  color: var(--electric-pink);
  font-size: 1rem;
  font-family: 'Roboto', sans-serif;
  font-style: italic;
}

/* === LAYOUT CONTAINERS === */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
  border-radius: 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--card-bg);
  border-radius: 14px;
  box-shadow: var(--shadow-main);
  margin-bottom: 20px;
  position: relative;
  transition: transform 0.2s cubic-bezier(.46,.03,.52,.96), box-shadow 0.2s;
  padding: 24px 18px;
  flex: 1 1 260px;
  min-width: 200px;
}
.card:hover {
  transform: translateY(-6px) scale(1.025);
  box-shadow: 0 12px 40px rgba(20,181,255,0.16);
}
.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;
  background: #fff;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(44, 173, 205, 0.06);
  position: relative;
  min-width: 220px;
  border: 2px solid var(--electric-yellow);
  transition: box-shadow 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(255, 29, 81, 0.09);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 22px;
}
.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: var(--electric-pink);
  font-weight: 600;
  border-radius: 12px;
  padding: 10px 16px;
  font-size: 1rem;
  box-shadow: 0 4px 16px rgba(255, 206, 0, .06);
  margin-bottom: 0;
}
.feature-list img {
  width: 24px;
  height: 24px;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 1.02rem;
}

/* === HEADER & NAVIGATION === */
header {
  width: 100%;
  background: #fff;
  border-bottom: 4px solid var(--electric-yellow);
  box-shadow: 0 1px 16px rgba(44,173,205,.05);
  position: sticky;
  top: 0;
  z-index: 10;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 84px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: var(--primary);
  font-size: 1rem;
  padding: 7px 12px;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
}
.main-nav a:hover, .main-nav a.active {
  background: var(--electric-pink);
  color: #fff;
}
header img {
  height: 44px;
  width: auto;
}

/* --- HAMBURGER MENU --- */
.mobile-menu-toggle {
  display: none;
  background: var(--electric-blue);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 1.5rem;
  color: #fff;
  align-items: center;
  justify-content: center;
  border: none;
  transition: background 0.16s;
  z-index: 30;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--electric-pink);
}

/* --- CTA BUTTONS --- */
.cta {
  display: inline-block;
  font-family: 'Roboto', sans-serif;
  font-weight: bold;
  font-size: 1.15rem;
  padding: 12px 32px;
  border-radius: 100px;
  border: none;
  color: #fff;
  background: linear-gradient(90deg, var(--electric-pink) 0%, var(--electric-blue) 70%);
  box-shadow: 0 4px 16px rgba(255,29,81,0.07);
  transition: background 0.17s, transform 0.16s, box-shadow 0.15s;
  margin-top: 10px;
  letter-spacing: 0.01em;
  cursor: pointer;
  outline: none;
}
.cta.primary {
  background: linear-gradient(90deg, var(--electric-yellow) 0%, var(--electric-pink) 90%);
  color: var(--primary);
}
.cta:hover, .cta:focus {
  background: linear-gradient(90deg, var(--electric-blue) 0%, var(--electric-pink) 90%);
  color: #fff;
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 8px 36px rgba(20, 181, 255, 0.13);
}

/* === FOOTER === */
footer {
  background: var(--primary);
  color: var(--accent);
  padding: 48px 0 16px 0;
  margin-top: 44px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 11px;
  min-width: 150px;
}
.footer-links a {
  font-family: 'Roboto', sans-serif;
  color: var(--electric-blue);
  font-weight: 600;
  font-size: 1rem;
  padding: 3px 0;
  transition: color 0.18s;
}
.footer-links a:hover {
  color: var(--electric-pink);
}
.footer-contact {
  color: var(--accent);
  font-size: 0.99rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-contact p{color:var(--accent);}
.footer-contact img { width: 21px; height: 21px; margin-right: 8px; vertical-align: text-bottom; display: inline-block; }
.footer-brand img {
  width: 60px;
  height: auto;
}
.footer-brand {
  align-self: center;
}

/* === RESPONSIVE BREAKPOINTS === */
@media (max-width: 1020px) {
  .container { max-width: 970px; }
  .main-nav { gap: 12px; }
}
@media (max-width: 900px) {
  .container { max-width: 820px; }
  .footer-brand img { width: 48px; }
}
@media (max-width: 768px) {
  .container { max-width: 97vw; padding: 0 10px; }
  header .container { gap: 8px; height: 56px; }
  .main-nav {
    display: none;
  }
  .cta.primary { display: none; }
  .mobile-menu-toggle {
    display: flex;
  }
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 26px;
  }
  .footer-links, .footer-contact { font-size: 1.03rem; }
}
@media (max-width: 600px) {
  .section { padding: 30px 5px; margin-bottom: 36px; }
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.19rem; }
  .cta, .cta.primary { font-size: 1rem; padding: 12px 14px; }
  .content-wrapper { gap: 14px; }
}

/* --- FLEX/COLUMN SWITCH --- */
@media (max-width: 900px) {
  .content-grid, .card-container, .feature-list, .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

/* === MOBILE MENU (SLIDE-IN) === */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--primary);
  color: #fff;
  transform: translateX(-100vw);
  transition: transform 0.32s cubic-bezier(.61,.16,.27,1.06);
  z-index: 99;
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  right: 22px;
  top: 22px;
  background: var(--electric-pink);
  color: #fff;
  font-size: 2rem;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  border: none;
  transition: background 0.15s;
}
.mobile-menu-close:hover { background: var(--electric-yellow); color: var(--primary); }
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin: 74px 0 0 36px;
}
.mobile-nav a {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: bold;
  color: #fff;
  font-size: 1.27rem;
  letter-spacing: 0.01em;
  padding: 12px 2px 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.17);
  width: 80vw;
  transition: color 0.16s, background 0.14s;
  border-radius: 6px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--electric-yellow);
  background: rgba(255,206,0,0.03);
}

@media (min-width: 769px) {
  .mobile-menu { display: none !important; }
  .mobile-menu-toggle { display: none !important; }
}

/* === CARD & SECTION SPACING === */
.card, .testimonial-card, .feature-list li {
  margin-bottom: 20px;
}
.section, .text-section, .content-grid, .card-container {
  margin-bottom: 20px;
}

/* === FORMS, INPUTS === */
input, textarea, select {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  border-radius: 8px;
  border: 1.5px solid #e0e0e0;
  padding: 10px 12px;
  margin-bottom: 16px;
  background: #fcfcfc;
  color: var(--primary);
  transition: border 0.2s;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid var(--electric-pink);
  outline: none;
}
label { font-weight: 500; display: block; margin-bottom: 8px; }

/* === COOKIE CONSENT BANNER === */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background: var(--primary);
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  z-index: 1002;
  box-shadow: 0 -2px 36px rgba(20,181,255,0.07);
  padding: 20px 3vw;
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  animation: slide-banner-in 0.8s cubic-bezier(.86,-0.01,.57,1.14);
}
@keyframes slide-banner-in {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner .btn-consent {
  margin-left: 12px;
  margin-right: 8px;
  font-family: 'Roboto', sans-serif;
  font-weight: bold;
  padding: 8px 28px;
  border-radius: 30px;
  border: none;
  font-size: 1rem;
  background: var(--electric-yellow);
  color: var(--primary);
  transition: background 0.12s, color 0.12s;
  cursor: pointer;
  outline: none;
}
.cookie-banner .btn-consent:hover { background: var(--electric-pink); color: #fff; }
.cookie-banner .btn-settings {
  background: var(--electric-blue);
  color: #fff;
  border: none;
  margin-left: 6px;
}
.cookie-banner .btn-settings:hover { background: var(--electric-pink); color: #fff; }

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 8px;
    font-size: 0.97rem;
    gap: 11px;
  }
  .cookie-banner .btn-consent, .cookie-banner .btn-settings {
    width: 95vw !important;
    margin-left: 0;
    margin-bottom: 4px;
    padding: 10px 0;
    text-align: center;
  }
}

/* --- COOKIE PREFERENCES MODAL --- */
.cookie-modal {
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  z-index: 1100;
  background: rgba(45,45,52,0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modalIn 0.41s cubic-bezier(.77,-0.01,.53,1.09);
}
@keyframes modalIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal-content {
  background: #fff;
  color: var(--primary);
  border-radius: 22px;
  max-width: 400px;
  width: 96vw;
  padding: 32px 22px 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 8px 36px rgba(44,173,205,0.18);
  position: relative;
}
.cookie-modal-close {
  position: absolute;
  right: 16px;
  top: 14px;
  font-size: 1.6rem;
  background: transparent;
  color: var(--electric-pink);
  border: none;
  cursor: pointer;
  z-index: 3;
}
.cookie-modal h2 {
  color: var(--electric-pink);
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 9px;
}
.cookie-switch {
  appearance: none;
  width: 44px;
  height: 24px;
  background: var(--electric-yellow);
  border-radius: 22px;
  position: relative;
  outline: none;
  transition: background 0.18s;
  cursor: pointer;
}
.cookie-switch:checked { background: var(--electric-blue); }
.cookie-switch::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 3.5px;
  width: 17px;
  height: 17px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.18s cubic-bezier(.49,.04,.62,1.04);
}
.cookie-switch:checked::before {
  transform: translateX(19px);
}
.cookie-modal .btn-cookie-save {
  margin-top: 15px;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  border-radius: 30px;
  font-size: 1rem;
  padding: 10px 35px;
  background: var(--electric-blue);
  color: #fff;
  border: none;
  align-self: flex-end;
  cursor: pointer;
}
.cookie-modal .btn-cookie-save:hover {
  background: var(--electric-pink);
}
.cookie-category label {
  font-size: 1.07rem;
  font-weight: 500;
  color: var(--primary);
}

/* === MISC === */
::-webkit-scrollbar { width: 12px; background: var(--accent); }
::-webkit-scrollbar-thumb { background: var(--electric-blue); border-radius: 8px; }

hr {
  border: none;
  border-top: 1.5px solid #eaeaea;
  margin: 41px 0 32px;
}

/* === ACCESSIBILITY & UTILITY === */
.sr-only {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* === MICRO-INTERACTIONS (Basic) === */
.card, .testimonial-card, .cta, .cookie-modal-content {
  transition: box-shadow 0.18s, transform 0.16s cubic-bezier(.49,.21,.68,.96);
}
.card:active, .testimonial-card:active, .cta:active {
  transform: scale(0.98);
}

/* === VISUAL HIERARCHY FOR LINKS === */
a {
  transition: color 0.16s, text-shadow 0.1s;
}
a:hover {
  color: var(--electric-blue);
  text-shadow: 0 1px 4px var(--electric-pink, #FF1D51, 0.08);
}

/* === SELECTED, ACTIVE STATE === */
.main-nav a.active, .footer-links a.active, .mobile-nav a.active {
  color: var(--electric-yellow) !important;
}

/* === ERROR & SUCCESS STATES === */
input:invalid, textarea:invalid {
  border-color: var(--electric-pink);
  background: #FFEEF2;
}

/* === Z-INDEX MANAGEMENT === */
header { z-index: 10; }
.mobile-menu { z-index: 99; }
.cookie-banner { z-index: 1002; }
.cookie-modal { z-index: 1100; }

/* === OVERRIDE FOR <ol> & <ul> === */
.text-section ul, .text-section ol {
  margin: 8px 0 8px 26px;
  padding-left: 0;
  gap: 7px;
}
.text-section ul li, .text-section ol li {
  margin-bottom: 5px;
  padding-left: 0;
}

/* === DISABLE GRID PROPERTIES (CRITICAL) === */
/* No grid properties are in use anywhere. Only flex is applied for multi-column/layouts. */
