/* --- Reset & Normalize --- */
* {
  box-sizing: border-box;
}
html, body {
  margin: 0;
  padding: 0;
  font-family: 'Roboto', Arial, sans-serif;
  background: #F9FAFB;
  color: #1B2B46;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #3AA47C;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #FFB300;
  outline: none;
}
ul, ol {
  padding-left: 24px;
  margin: 0 0 20px 0;
}
li {
  margin-bottom: 12px;
}
iframe {
  border: none;
}
h1, h2, h3, h4, h5, h6 {
  margin: 0 0 18px 0;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  line-height: 1.2;
}
h1 { font-size: 2.2rem; }
h2 { font-size: 1.7rem; }
h3 { font-size: 1.3rem; }

/* --- Brand Colors (Palette) --- */
:root {
  --primary: #1B2B46;
  --secondary: #3AA47C;
  --accent: #F9FAFB;
  --danger: #F36C60;
  --highlight: #FFB300;
  --dynamic1: #43C8FF;
  --dynamic2: #FF59C7;
  --dynamic3: #F1F32E;
  --gray: #D1D8E0;
}

/* --- Layout Containers --- */
.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* --- Spacing Patterns --- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 10px 0 rgba(58,164,124,0.07);
  margin-bottom: 20px;
  position: relative;
  transition: transform 0.22s cubic-bezier(.6,0,.6,1), box-shadow 0.18s;
  padding: 28px 32px;
  min-width: 260px;
}
.card:hover {
  transform: translateY(-4px) scale(1.03) rotate(-1deg);
  box-shadow: 0 6px 30px 0 rgba(67, 200, 255, 0.17);
}
.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;
  padding: 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 18px 0 rgba(27,43,70,0.10);
  margin-bottom: 24px;
  min-width: 240px;
  position: relative;
  transition: box-shadow 0.18s, transform 0.18s;
}
.testimonial-card:hover {
  transform: scale(1.025) rotate(0.7deg);
  box-shadow: 0 12px 28px 0 rgba(58,164,124,0.12);
  z-index: 2;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #FFFFFF;
  border-radius: 14px;
  padding: 16px 22px;
  margin-bottom: 20px;
  box-shadow: 0 1px 10px 0 rgba(67,200,255,0.08);
}

/* --- Hero Section --- */
.hero {
  width: 100%;
  background: linear-gradient(98deg, var(--dynamic1) 0%, var(--dynamic2) 100%);
  color: #fff;
  border-radius: 0 0 44px 44px;
  margin-bottom: 50px;
  position: relative;
  box-shadow: 0 8px 24px 0 rgba(27,43,70,0.09);
  overflow: hidden;
  animation: fadein-bounce 1s cubic-bezier(.33,1.24,.68,1) 1;
}
@keyframes fadein-bounce {
  0% { opacity: 0; transform: translateY(-30px) scaleY(0.98); }
  70% { opacity: 1; transform: translateY(10px) scaleY(1.04); }
  100% { opacity: 1; transform: translateY(0) scaleY(1); }
}
.hero .content-wrapper {
  align-items: flex-start;
  padding: 36px 0;
}
.hero h1 {
  font-size: 2.6rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 18px;
  color: #fff;
}
.hero p {
  font-size: 1.25rem;
  margin-bottom: 24px;
  color: #fff;
}
.hero .cta {
  background: #fff;
  color: var(--dynamic2);
  box-shadow: 0 2px 9px 0 rgba(255,89,199,0.17);
  font-size: 1.16rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  border-radius: 29px;
  padding: 14px 38px;
  transition: background 0.20s, color 0.20s, box-shadow 0.20s;
  letter-spacing: 1px;
  margin-top: 8px;
}
.hero .cta:hover, .hero .cta:focus {
  background: var(--dynamic2);
  color: #fff;
  box-shadow: 0 7px 28px 0 rgba(255,89,199,0.28);
}

/* --- Navigation --- */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 15px 0 rgba(27,43,70,0.09);
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  min-height: 70px;
}
header img {
  height: 48px;
  min-width: 96px;
  margin-right: 20px;
}
nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}
nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  padding: 6px 18px;
  border-radius: 30px;
  transition: background 0.15s, color 0.13s;
  position: relative;
}
nav a.cta {
  background: var(--dynamic2);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 2px 12px 0 rgba(255,89,199,0.11);
  letter-spacing: 1px;
}
nav a:hover, nav a:focus {
  background: var(--dynamic1);
  color: #fff;
}
nav a.cta:hover, nav a.cta:focus {
  background: var(--highlight);
  color: var(--primary);
}

/* --- Mobile Menu --- */
.mobile-menu-toggle {
  display: none;
  background: var(--dynamic2);
  color: #fff;
  font-size: 2.3rem;
  border: none;
  border-radius: 14px;
  padding: 2px 18px 4px 14px;
  margin-left: 12px;
  cursor: pointer;
  transition: background 0.21s, color 0.15s;
  z-index: 103;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--dynamic3);
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(98deg, var(--dynamic2) 0%, var(--dynamic1) 100%);
  box-shadow: -8px 0 30px 0 rgba(67,200,255,0.09);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(100%);
  z-index: 105;
  transition: transform 0.34s cubic-bezier(.69,0,1,.58);
  padding: 40px 26px 24px 32px;
  overflow-y: auto;
  will-change: transform;
  opacity: 0.99;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.1rem;
  background: #fff;
  border: none;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  color: var(--dynamic1);
  margin-bottom: 18px;
  cursor: pointer;
  transition: background 0.14s, color 0.12s;
  box-shadow: 0 1px 7px 0 rgba(32, 32, 32, 0.06);
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--dynamic3);
  color: var(--dynamic2);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  width: 100%;
  margin-top: 16px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.36rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 1px;
  background: none;
  border-radius: 19px;
  padding: 11px 3px 11px 2px;
  transition: background 0.13s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: rgba(249,250,251,0.26);
  color: var(--dynamic3);
}
.mobile-nav a.cta {
  background: var(--dynamic3);
  color: var(--dynamic2);
  font-weight: 900;
  margin-top: 19px;
  box-shadow: 0 4px 24px 0 rgba(255, 243, 46, 0.13);
}
.mobile-nav a.cta:hover, .mobile-nav a.cta:focus {
  background: var(--highlight);
  color: var(--primary);
}

/* --- Page Main Sections & Content --- */
main {
  width: 100%;
  margin: 0 auto;
  min-height: 60vh;
  margin-bottom: 60px;
}
section {
  width: 100%;
}
.text-section {
  font-size: 1.05rem;
  color: #283E5B;
  background: none;
  border-radius: 8px;
  margin-bottom: 20px;
}
.text-section p, .text-section ul, .text-section ol {
  margin: 0 0 10px 0;
}
.certifications, .experience, .map {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1.09rem;
  margin-bottom: 12px;
  font-weight: 600;
}

/* --- Feature Icon List Styling --- */
ul {
  list-style-type: none;
  margin-bottom: 18px;
}
ol {
  padding-left: 20px;
  margin-bottom: 18px;
}
ul > li, ol > li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 16px;
  font-size: 1.10rem;
}
ul > li img, ol > li img {
  flex: 0 0 42px;
  height: 42px;
  width: 42px;
  background: #F1F32E;
  border-radius: 14px;
  object-fit: contain;
  margin-top: 1px;
  margin-bottom: 2px;
  box-shadow: 0 1px 8px 0 rgba(241,243,46,0.09);
}
ul > li strong, ol > li strong {
  font-size: 1.15em;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--dynamic2);
  font-weight: 800;
}

/* --- CTA Section --- */
.cta {
  width: 100%;
  background: var(--secondary);
  border-radius: 22px;
  box-shadow: 0 6px 32px 0 rgba(58,164,124,0.13);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 18px 38px 18px;
  margin-bottom: 60px;
}
.cta p {
  font-size: 1.22rem;
  margin-bottom: 22px;
}
.cta .cta {
  background: var(--dynamic1);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  border-radius: 25px;
  padding: 14px 36px;
  letter-spacing: 1.5px;
  transition: background 0.19s, color 0.15s, box-shadow 0.16s;
  box-shadow: 0 1px 8px 0 rgba(67, 200, 255, 0.09);
  margin-top: 7px;
}
.cta .cta:hover, .cta .cta:focus {
  background: var(--highlight);
  color: var(--dynamic2);
}

/* --- Table Styling (Pricing) --- */
table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  margin-bottom: 34px;
  box-shadow: 0 1px 10px 0 rgba(27,43,70,0.06);
}
thead {
  background: var(--dynamic3);
}
thead th {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
  font-size: 1.03rem;
  padding: 16px 7px;
  font-weight: 900;
  letter-spacing: 1px;
}
tbody td {
  padding: 13px 9px 13px 12px;
  text-align: left;
  color: var(--secondary);
  font-size: 1.06rem;
}
tbody tr:nth-child(2n) td {
  background: #F9FAFB;
}
tbody tr:hover td {
  background: #FFEBF8;
}
tbody td:first-child {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  color: var(--dynamic2);
}

/* --- Testimonials / Reviews --- */
.testimonials {
  background: #F9FAFB;
  padding: 36px 0 24px 0;
  border-radius: 34px;
}
.testimonials h2 {
  font-size: 2rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 24px;
  color: var(--dynamic1);
}
.testimonial-card blockquote {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.09rem;
  color: #283E5B;
  margin: 0 0 8px 0;
  line-height: 1.5;
  letter-spacing: .35px;
}
.testimonial-card > div {
  font-size: 0.97rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--secondary);
  font-weight: 700;
}
.average-rating, .star_ratings_summary {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--dynamic1);
  margin: 10px 0 7px 0;
  background: #FFF4DB;
  padding: 6px 20px;
  border-radius: 14px;
  box-shadow: 0 1px 5px 0 rgba(255,179,0,0.07);
  align-self: flex-start;
}
.average-rating img, .star_ratings_summary img {
  width: 24px;
  height: 24px;
  margin-right: 6px;
}

/* --- Contact/Map --- */
.contact, .contact-details {
  margin: 0px 0 60px 0;
  width: 100%;
}
.contact .text-section ul,
.contact-details ul {
  margin-bottom: 20px;
}
.contact .text-section ul li,
.contact-details ul li {
  gap: 12px;
  margin-bottom: 11px;
  font-size: 1.07rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--primary);
}
.contact .text-section ul li img,
.contact-details ul li img {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  border-radius: 7px;
  object-fit: contain;
  background: var(--dynamic3);
  margin-right: 4px;
  margin-bottom: 0;
  margin-top: 0;
}
.map {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--secondary);
  gap: 11px;
}

/* --- Legal Section --- */
.legal {
  background: #FFFFFF;
  border-radius: 22px;
  box-shadow: 0 1px 9px 0 rgba(27,43,70,0.07);
  margin-top: 25px;
  margin-bottom: 46px;
}
.legal h1 {
  font-size: 2.0rem;
  margin-bottom: 22px;
  color: var(--dynamic1);
}
.legal .text-section {
  margin-bottom: 0;
}

/* --- Footer --- */
footer {
  width: 100%;
  background: var(--primary);
  color: #fff;
  margin-top: auto;
  box-shadow: 0 -3px 23px 0 rgba(27,43,70,0.09);
  border-radius: 37px 37px 0 0;
  padding: 28px 0 20px 0;
}
footer .container {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
footer nav a {
  color: #fff;
  font-weight: 700;
  font-size: 0.99rem;
  font-family: 'Montserrat', Arial, sans-serif;
  opacity: 0.85;
  transition: opacity 0.19s, color 0.14s;
}
footer nav a:hover, footer nav a:focus {
  opacity: 1;
  color: var(--dynamic3);
}
.footer-contact {
  font-size: 0.99rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: #fff;
  opacity: 0.75;
}

/* --- Confirmation / Thank You --- */
.confirmation h1 {
  color: var(--dynamic2);
  font-size: 2.1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 20px;
}
.confirmation p {
  font-size: 1.15rem;
  color: #283E5B;
  margin-bottom: 16px;
}
.confirmation ul {
  margin-bottom: 25px;
}
.confirmation a.cta {
  display: inline-block;
  background: var(--dynamic2);
  color: #fff;
  padding: 12px 36px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  border-radius: 28px;
  font-size: 1.09rem;
  letter-spacing: 1px;
  box-shadow: 0 1px 7px 0 rgba(255,89,199,0.11);
  transition: background 0.17s, color 0.14s;
}
.confirmation a.cta:hover, .confirmation a.cta:focus {
  background: var(--highlight);
  color: var(--primary);
}

/* --- Cookie Consent Banner --- */
.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1300;
  background: #fff;
  color: var(--primary);
  border-radius: 19px;
  box-shadow: 0 2px 25px 0 rgba(27,43,70,0.14);
  padding: 27px 24px 19px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 17px;
  font-size: 1.03rem;
  animation: slideup-in 0.9s cubic-bezier(.66,0,.61,1);
}
@keyframes slideup-in {
  0% { opacity: 0; transform: translateY(50px); }
  80% { opacity: 1; transform: translateY(-7px); }
  100% { opacity: 1; transform: translateY(0); }
}
.cookie-banner .cookie-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 4px;
}
.cookie-banner button {
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1rem;
  border-radius: 11px;
  padding: 13px 28px;
  cursor: pointer;
  margin-right: 5px;
  transition: background 0.2s, color 0.2s, box-shadow 0.13s;
}
.cookie-banner .accept {
  background: var(--dynamic1);
  color: #fff;
  box-shadow: 0 2px 8px 0 rgba(67,200,255,0.13);
}
.cookie-banner .accept:hover {
  background: var(--dynamic2);
  color: #fff;
}
.cookie-banner .reject {
  background: var(--danger);
  color: #fff;
  box-shadow: 0 2px 8px 0 rgba(243,108,96,0.13);
}
.cookie-banner .reject:hover {
  background: #c81a11;
}
.cookie-banner .settings {
  background: var(--dynamic3);
  color: var(--primary);
}
.cookie-banner .settings:hover {
  background: var(--highlight);
}
/* Modal Overlay */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(27,43,70,0.36);
  z-index: 1400;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s cubic-bezier(.62,0,.48,1.1);
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: #fff;
  border-radius: 19px 19px 0 0;
  box-shadow: 0 2px 23px 0 rgba(67,200,255,0.15);
  margin: 0 0 0 0;
  padding: 35px 24px 28px 24px;
  min-width: 320px;
  width: 100%;
  max-width: 410px;
  display: flex;
  flex-direction: column;
  gap: 27px;
  font-size: 1.11rem;
  position: relative;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(.61,0,.45,1.12);
}
.cookie-modal.open {
  transform: translateY(0);
}
.cookie-modal h2 {
  font-size: 1.22rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--dynamic1);
  margin-bottom: 11px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1.01rem;
}
.cookie-category input[type='checkbox'] {
  accent-color: var(--secondary);
  width: 22px;
  height: 22px;
  cursor: pointer;
}
.cookie-essentials {
  font-weight: 900;
  color: var(--dynamic2);
}
.cookie-modal .close-modal {
  position: absolute;
  top: 14px;
  right: 16px;
  background: #fff;
  border: none;
  font-size: 1.77rem;
  color: var(--dynamic1);
  border-radius: 50%;
  width: 37px;
  height: 37px;
  cursor: pointer;
  transition: background 0.16s, color 0.12s;
}
.cookie-modal .close-modal:hover,
.cookie-modal .close-modal:focus {
  background: var(--dynamic3);
  color: var(--dynamic2);
}
.cookie-modal .modal-btns {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}
.cookie-modal button {
  border: none;
  border-radius: 11px;
  padding: 11px 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.18s, color 0.16s;
}
.cookie-modal .accept {
  background: var(--dynamic1);
  color: #fff;
}
.cookie-modal .accept:hover {
  background: var(--dynamic2);
}
.cookie-modal .cancel {
  background: #fff;
  color: var(--dynamic2);
  border: 2px solid var(--dynamic1);
}
.cookie-modal .cancel:hover {
  background: var(--gray);
  color: var(--dynamic1);
}

/* --- Animations & Microinteractions --- */
button, .cta, nav a, .testimonial-card, .card {
  transition: box-shadow 0.19s, background 0.17s, color 0.14s, transform 0.23s;
}

section, .card, .testimonial-card, .cookie-banner {
  animation: popin 0.6s cubic-bezier(.5,1.3,.62,1.1);
}
@keyframes popin {
  0% { opacity: 0; transform: scale(0.95) translateY(32px); }
  80% { opacity: 1; transform: scale(1.02) translateY(-7px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

/* --- Responsive Design: Mobile First --- */
/* BASE MOBILE: already applied */

@media (max-width: 1100px) {
  .container {
    max-width: 95vw;
    padding: 0 8px;
  }
  header .container {
    max-width: 99vw;
  }
}
@media (max-width: 900px) {
  .content-grid, .container, .card-container {
    flex-direction: column;
    gap: 22px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding: 20px 10px;
  }
}
@media (max-width: 768px) {
  .container, .content-wrapper {
    padding: 0 8px;
    flex-direction: column;
    align-items: flex-start !important;
  }
  .hero {
    border-radius: 0 0 25px 25px;
  }
  nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
    margin-left: auto;
  }
  footer .container {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }
  .section {
    padding: 28px 5px 30px 5px;
    margin-bottom: 35px;
  }
  .cta {
    border-radius: 11px;
    padding: 21px 6px 32px 6px;
  }
  .card, .feature-item {
    padding: 18px 8px;
  }
  .content-grid, .card-container {
    gap: 12px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
  .cookie-banner {
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 5px 5px 0 0;
    padding: 18px 8px 13px 8px;
    font-size: .99rem;
  }
  .cookie-modal {
    border-radius: 13px 13px 0 0;
    padding: 21px 10px 19px 10px;
    min-width: unset;
    max-width: 99vw;
    font-size: .98rem;
  }
}

@media (max-width: 500px) {
  h1 { font-size: 1.39rem; }
  h2 { font-size: 1.13rem; }
  .card, .testimonial-card, .feature-item {
    padding: 13px 5px;
    font-size: .98rem;
  }
  .hero .content-wrapper {
    padding: 18px 0;
  }
  .cta .cta, .hero .cta, .confirmation a.cta {
    padding: 10px 12px;
    font-size: .99rem;
  }
}

/* --- Custom Playful/Dynamic Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800;900&family=Roboto:wght@400;700&display=swap');

body, input, button {
  font-family: 'Roboto', Arial, sans-serif;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
}

/* --- Playful Dynamic Micro-details --- */
nav a.cta, .cta .cta, .confirmation a.cta, .hero .cta {
  filter: drop-shadow(0 3px 8px rgba(255,105,210,0.13));
  animation: bounce-in 0.9s ease 1;
}
@keyframes bounce-in {
  0% { opacity: 0; transform: scale(0.91) translateY(20px); }
  80% { opacity: 1; transform: scale(1.05) translateY(-10px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

/* --- Hide Mobile Menu When Desktop --- */
@media (min-width: 930px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
  nav {
    display: flex !important;
  }
}

/* --- Utility: Hide/Show --- */
.hide { display: none !important; }
.show { display: block !important; }

/* --- End --- */
