/* === CSS RESET & BASE === */
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 {
  height: 100%;
  width: 100%;
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  background: #ffffff;
  color: #1A2930;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, video {
  max-width: 100%;
  display: block;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  outline: none;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color .15s;
}
/* ============= BRAND COLOR VARIABLES (with fallback) ============ */
:root {
  --color-primary: #1A2930;
  --color-secondary: #E6EDF2;
  --color-accent: #FCB13D;
  --color-bright-pink: #F9146B;
  --color-electric-blue: #0D9AE0;
  --color-hot-lime: #A6FF04;
  --color-deep-cerise: #E13C9E;
  --color-success: #30E671;
  --color-error: #F33C47;
  --shadow-card: 0 8px 28px 0 rgba(26,41,48,0.06), 0 2px 4px 0 rgba(26,41,48,0.10);
  --radius: 16px;
}


/* ============= TYPOGRAPHY ============ */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Roboto:wght@400;500;700&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  letter-spacing: -0.02em;
  font-weight: 900;
}
h1 { font-size: 2.5rem; line-height: 1.1; margin-bottom: 20px; }
h2 { font-size: 2rem; line-height: 1.15; margin-bottom: 16px; }
h3 { font-size: 1.3rem; line-height: 1.22; margin-bottom: 12px; }
h4 { font-size: 1.15rem; margin-bottom: 8px; }
p, li, table, dl, dd {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-primary);
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
}
strong {
  font-weight: 700;
}

/* ============= LAYOUT HELPERS ============ */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 32px 24px;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@media (max-width: 600px) {
  .container {
    padding: 0 8px;
  }
  .content-wrapper {
    padding: 20px 10px;
  }
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  transition: transform .3s cubic-bezier(.4,1.3,.3,1), box-shadow .3s;
  padding: 24px 18px;
  min-width: 240px;
}
.card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 16px 42px -4px rgba(12,150,224,0.19), 0 2px 12px 0 rgba(249,20,107,0.11);
  z-index: 1;
}
.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;
}
@media (max-width: 768px) {
  .content-grid, .card-container, .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
}

/* ============= HEADER / NAV ============ */
header {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 3px 16px -11px var(--color-primary);
  position: sticky;
  top: 0;
  left: 0;
  z-index: 60;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
header img {
  max-height: 44px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-bottom 0.18s;
}
.main-nav a:hover {
  color: var(--color-accent);
  border-bottom: 2px solid var(--color-accent);
}
.cta-btn {
  margin-left: 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  font-size: 1.08rem;
  color: #ffffff;
  background: linear-gradient(90deg,var(--color-electric-blue) 40%, var(--color-accent), var(--color-bright-pink) 98%);
  border: none;
  border-radius: var(--radius);
  padding: 14px 30px;
  display: inline-block;
  cursor: pointer;
  transition: background 0.16s, transform 0.18s, box-shadow 0.18s;
  box-shadow: 0 3px 16px -7px var(--color-accent);
  letter-spacing: 1px;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg,var(--color-bright-pink) 0%, var(--color-electric-blue) 80%, var(--color-accent) 100%);
  transform: scale(1.045) translateY(-2px);
  box-shadow: 0 6px 24px -3px var(--color-bright-pink);
  outline: none;
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  cursor: pointer;
  padding: 8px 10px;
  margin-left: 22px;
  transition: color 0.2s;
}
.mobile-menu-toggle:focus {
  color: var(--color-accent);
}
@media (max-width: 1024px) {
  .main-nav {
    gap: 11px;
  }
  .cta-btn {
    margin-left: 8px;
    padding: 12px 20px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* ============= MOBILE MENU ============ */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; 
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 0 0 0 2200px rgba(26,41,48,0.50);
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(.71,1.89,.58,.95);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 35px 0 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--color-primary);
  font-size: 2.4rem;
  padding: 12px 22px 12px 18px;
  align-self: flex-end;
  cursor: pointer;
  transition: color 0.22s;
  margin-bottom: 12px;
  margin-right: 0;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--color-bright-pink);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  align-items: flex-start;
  padding: 0 28px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  color: var(--color-primary);
  font-size: 1.3rem;
  padding: 12px 0;
  border-bottom: 2px solid transparent;
  width: 100%;
  display: block;
  transition: color 0.18s, border-bottom 0.15s;
}
.mobile-nav a:hover {
  color: var(--color-accent);
  border-bottom: 2px solid var(--color-accent);
}
@media (min-width: 901px) {
  .mobile-menu {
    display: none;
  }
}

/* ============= HERO SECTION ============ */
.hero {
  width: 100%;
  min-height: 350px;
  background: linear-gradient(110deg,#E6EDF2 60%, #0D9AE0 100%, #FCB13D 130%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 38px;
  position: relative;
  box-shadow: 0 3px 16px -8px var(--color-primary);
  z-index: 1;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero .text-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 14px;
  padding: 48px 0;
}
.hero h1 {
  color: var(--color-primary);
  font-weight: 900;
  text-shadow: 0 2px 4px #e6edf2a0;
  letter-spacing: -0.03em;
}
.hero p {
  font-size: 1.25rem;
  color: #222;
}
@media (max-width: 700px) {
  .hero {
    min-height: 180px;
    margin-bottom: 18px;
    padding-top: 7px;
  }
  .hero .text-section {
    padding: 26px 0;
  }
  .hero h1 { font-size: 1.35rem; }
  .hero p { font-size: 1.08rem; }
}

/* ============= FEATURES / LISTS ============ */
ul, ol {
  padding-left: 1.1em;
  margin-bottom: 0.8em;
}
ul > li, ol > li {
  margin-bottom: 11px;
  font-size: 1.05em;
  position: relative;
  padding-left: 0.6em;
}
ul > li::before {
  content: "";
  display: inline-block;
  width: 10px; height: 10px;
  background: linear-gradient(90deg,var(--color-accent) 60%, var(--color-electric-blue));
  border-radius: 50%;
  margin-right: 11px;
  margin-left: -19px;
  vertical-align: middle;
}
dt {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: var(--color-electric-blue);
  margin-top: 12px;
  margin-bottom: 3px;
}
dd {
  margin-left: 0;
  margin-bottom: 9px;
}

/* ============= TESTIMONIALS ============ */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 26px;
  background: #fff;
  border-radius: var(--radius);
  margin-bottom: 24px;
  box-shadow: var(--shadow-card);
  border-left: 6px solid var(--color-accent);
  min-width: 240px;
  transition: box-shadow .25s, border-color 0.15s;
}
.testimonial-card blockquote {
  font-size: 1.08rem;
  line-height: 1.6;
  color: #1A2930;
  font-family: 'Roboto', Arial, sans-serif;
  font-style: italic;
  margin-bottom: 8px;
}
.testimonial-name {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: var(--color-electric-blue);
}
.testimonial-card:hover {
  box-shadow: 0 16px 52px -4px rgba(12,150,224,0.22), 0 3px 13px 0 #FCB13D44;
  border-left: 6px solid var(--color-hot-lime);
}

/* ============= PRICING TABLE ============ */
table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 18px;
  background: #fff;
  box-shadow: var(--shadow-card);
}
table th, table td {
  text-align: left;
  padding: 14px 16px;
  font-size: 1rem;
  border-bottom: 2px solid #e6edf2;
}
table th {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  color: var(--color-electric-blue);
  background: #E6EDF2;
}
table tr:last-child td {
  border-bottom: none;
}
.price {
  color: var(--color-bright-pink);
  font-size: 1.07rem;
  font-weight: 700;
  margin-left: 8px;
}

/* ============= FOOTER ============ */
footer {
  background: var(--color-primary);
  color: #fff;
  padding: 0 0 0 0;
  margin-top: 60px;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 44px;
  justify-content: space-between;
  padding: 32px 0 8px 0;
  border-bottom: 1px solid #E6EDF2;
}
.footer-brand img {
  width: 70px;
  margin-bottom: 15px;
}
.footer-contact p {
  margin-bottom: 5px;
  font-size: 0.97rem;
}
.footer-links {
  display: flex;
  flex-direction: column;
}
.footer-links a {
  color: #fff;
  font-family: 'Montserrat',Arial,sans-serif;
  font-size: 0.98rem;
  margin-bottom: 5px;
  transition: color 0.15s;
}
.footer-links a:hover {
  color: var(--color-accent);
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 17px;
  margin-top: 8px;
}
.footer-social a img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 8px #E6EDF2CC;
  transition: box-shadow 0.14s, background 0.14s;
}
.footer-social a:hover img {
  background: var(--color-accent);
  box-shadow: 0 4px 18px #FCB13D33;
}
.footer-bottom {
  background: #162126;
  color: #fff;
  padding: 10px 0;
  font-size: 0.9rem;
  text-align: center;
}
@media (max-width: 900px) {
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
}

/* ============= MISC. ELEMENTS ============ */
.map-placeholder {
  background: #E6EDF2;
  border-radius: var(--radius);
  padding: 20px 14px;
  color: var(--color-primary);
  font-size: 1.04rem;
  margin-top: 6px;
  box-shadow: var(--shadow-card);
}

/* ============= INTERACTIONS ============ */
button, .cta-btn, .mobile-menu-toggle, .mobile-menu-close {
  transition: background .18s, color 0.18s, box-shadow .18s, transform 0.13s;
}

a:focus,
button:focus,
.cta-btn:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* ============= COOKIE CONSENT BANNER ============ */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0;
  width: 100vw;
  background: #fff;
  color: var(--color-primary);
  box-shadow: 0 -4px 24px 0 #0D9AE044;
  z-index: 210;
  padding: 24px 20px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  border-radius: 18px 18px 0 0;
  animation: cookie-fade-in .6s cubic-bezier(.58,.9,.42,1.1);
}
@keyframes cookie-fade-in {
  0% {transform: translateY(100%); opacity: 0;}
  100% {transform: translateY(0); opacity: 1;}
}
.cookie-banner-buttons {
  display: flex;
  gap: 16px;
  margin-top: 6px;
  flex-wrap: wrap;
}
.cookie-btn,
.cookie-banner button {
  border: none;
  border-radius: var(--radius);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 11px 24px;
  margin: 0;
  cursor: pointer;
  transition: background .18s, color 0.18s, box-shadow .18s;
  box-shadow: 0 2px 9px -3px #FCB13D80;
}
.cookie-btn.accept {
  background: linear-gradient(90deg,var(--color-hot-lime) 55%, var(--color-accent) 100%);
  color: #1A2930;
}
.cookie-btn.accept:hover {
  background: linear-gradient(90deg, var(--color-accent), var(--color-bright-pink) 90%);
  color: #fff;
}
.cookie-btn.reject {
  background: #F33C47;
  color: #fff;
}
.cookie-btn.reject:hover {
  background: #b91b23;
}
.cookie-btn.settings {
  background: #E6EDF2;
  color: var(--color-primary);
}
.cookie-btn.settings:hover {
  box-shadow: 0 0 16px #0D9AE022;
  background: #fffbe6;
}

/* === COOKIE PREFERENCE MODAL === */
.cookie-modal {
  position: fixed;
  bottom: 0; left: 50%;
  transform: translateX(-50%) translateY(120%);
  width: 96vw;
  max-width: 390px;
  background: #fff;
  color: #1A2930;
  box-shadow: 0 14px 50px -9px #0D9AE0aa, 0 3px 18px #FCB13D38;
  border-radius: 18px 18px 0 0;
  z-index: 220;
  padding: 30px 20px 22px 20px;
  display: none;
  flex-direction: column;
  gap: 15px;
  animation: cookie-modal-in .38s cubic-bezier(.64,1.22,.22,1.3);
}
.cookie-modal.open {
  display: flex;
  animation: cookie-modal-in .38s cubic-bezier(.64,1.22,.22,1.3);
  transform: translateX(-50%) translateY(0);
}
@keyframes cookie-modal-in {
  0% {transform: translateX(-50%) translateY(60%); opacity: 0;}
  100% {transform: translateX(-50%) translateY(0); opacity: 1;}
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid #E6EDF2;
}
.cookie-modal .cookie-category:last-child {
  border-bottom: none;
}
.cookie-modal .cookie-category label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
}
.cookie-toggle {
  width: 40px; height: 22px;
  border-radius: 14px;
  background: #E6EDF2;
  position: relative;
  cursor: pointer;
  border: none;
  transition: background .15s;
}
.cookie-toggle.on { background: linear-gradient(90deg, var(--color-hot-lime), var(--color-electric-blue)); }
.cookie-toggle .slider {
  position: absolute; left: 3px; top: 3px;
  width: 16px; height: 16px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 4px #0D9AE022;
  transition: left .18s, background .16s;
}
.cookie-toggle.on .slider {
  left: 21px;
  background: var(--color-hot-lime);
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 15px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 15px;
  right: 18px;
  font-size: 1.4rem;
  background: none;
  border: none;
  color: var(--color-bright-pink);
  cursor: pointer;
}

/* ============= RESPONSIVE BREAKPOINTS ============ */
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.35rem; }
  header .container {
    height: 60px;
  }
}
@media (max-width: 600px) {
  h1 { font-size: 1.3rem; }
  h2 { font-size: 1rem; }
  .content-wrapper, .section {
    padding: 20px 7px;
    margin-bottom: 18px;
  }
  .card-container {
    gap: 12px;
  }
}

/* ============= UTILITIES & OVERRIDES ============ */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 16px;
}
/* Highlights for vibrant energetic style */
::selection {
  background: var(--color-hot-lime);
  color: #1A2930;
}
em {
  color: var(--color-deep-cerise);
  font-style: italic;
}
blockquote {
  border-left: 5px solid var(--color-accent);
  padding-left: 14px;
  color: var(--color-bright-pink);
  background: #F8F0E4;
}

/* === TRANSITIONS FOR PAGES === */
main, .content-wrapper, .card, .testimonial-card, .section, .hero {
  transition: box-shadow .22s, background .22s, border-color .15s, color .16s;
}

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