/* ------------------------------------------------------------
   CSS RESET & NORMALIZE (Mobile-First)
-------------------------------------------------------------*/
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,
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;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  background: #FCFAF7;
  color: #364153;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  min-height: 100vh;
  line-height: 1.7;
}
img {
  max-width: 100%;
  display: block;
  border: none;
}
a {
  color: #364153;
  text-decoration: none;
  transition: color 0.2s;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #364153;
  font-weight: 700;
  line-height: 1.2;
}
h1 { font-size: 2.25rem; margin-bottom: 18px; }
h2 { font-size: 1.5rem; margin-bottom: 14px; }
h3 { font-size: 1.18rem; margin-bottom: 12px; }
.section h2, .section h1 { margin-bottom: 24px; }
p { margin-bottom: 18px; }

ul, ol {
  margin-left: 19px;
  margin-bottom: 18px;
}
ul { list-style: disc; }
ol { list-style: decimal; }
li {
  margin-bottom: 8px;
  font-size: 1rem;
}

strong, b { font-weight: 700; }
blockquote {
  border-left: 4px solid #F8CD59;
  background: #FFFEE8;
  color: #364153;
  padding: 18px 20px;
  font-style: italic;
  margin: 18px 0;
  border-radius: 12px;
}

/* ------------------------------------------------------------
   COLOR PALETTE – Soft Pastel Variants
-------------------------------------------------------------*/
:root {
  --color-primary: #364153;
  --color-secondary: #F8CD59;
  --color-accent: #FDF6ED;
  --color-pink: #F9D3DC;
  --color-blue: #B3CBF1;
  --color-mint: #BDEFE9;
  --color-peach: #FFE6CC;
  --color-bg: #FCFAF7;
  --color-white: #FFFFFF;
  --color-grey: #F3F5FB;
}

/* Fallbacks for CSS variables */
:root {
  color-scheme: light;
}

/* ------------------------------------------------------------
   LAYOUT STRUCTURE
-------------------------------------------------------------*/
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-white);
  border-radius: 28px;
  box-shadow: 0 2px 28px 0 rgba(200,185,242,0.06);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--color-white);
  margin-bottom: 20px;
  border-radius: 20px;
  box-shadow: 0 6px 24px 0 rgba(186,205,240,0.13);
  position: relative;
  padding: 28px 22px;
  flex: 1 1 300px;
  transition: box-shadow 0.27s, transform 0.24s;
}
.card:hover {
  box-shadow: 0 10px 40px 8px rgba(121,166,183,0.16);
  transform: translateY(-4px) scale(1.021);
}

.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;
  margin-bottom: 32px;
}
.text-section {
  flex: 1 1 200px;
  background: none;
  padding: 0;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.feature-item img {
  width: 44px;
  height: 44px;
}

.testimonials {
  background: linear-gradient(120deg, #FFF9F6 57%, #EAF8FB 100%);
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #FFF8F5;
  margin-bottom: 20px;
  border-radius: 18px;
  box-shadow: 0 3px 16px 0 rgba(247,213,235,0.13);
  min-width: 0;
}
.testimonial-card p, .testimonial-card strong {
  color: #364153;
}
.testimonial-card span {
  color: #F8CD59;
  margin-left: 8px;
  font-size: 1.1em;
}
.testimonial-card .featured {
  background: linear-gradient(100deg,#FDF6ED 65%,#DFEFFF 100%);
}

/* prevent overlap in card layouts */
.testimonial-card + .testimonial-card { margin-top: 12px; }

/* ------------------------------------------------------------
   HEADER & NAVIGATION (Brand + Nav + Mobile)
-------------------------------------------------------------*/
header {
  background: #FBF6F5;
  border-bottom: 1.5px solid #FDF6ED;
  box-shadow: 0 1px 10px 0 rgba(230,190,245,0.04);
  position: relative;
  z-index: 100;
}
.logo {
  display: flex;
  align-items: center;
  padding: 6px 0;
}
header .container {
  padding-top: 18px;
  padding-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #364153;
  padding: 7px 12px;
  border-radius: 10px;
  transition: background 0.18s, color 0.18s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--color-blue);
  color: #26304A;
}
.main-nav .cta-btn {
  background: var(--color-secondary);
  color: #364153;
  font-weight: 700;
  border-radius: 14px;
  padding: 9px 26px;
  font-size: 1rem;
  box-shadow: 0px 2px 15px 0 rgba(208,193,247,0.10);
  transition: background 0.2s, color 0.2s, box-shadow 0.15s;
  margin-left: 12px;
  border: none;
}
.main-nav .cta-btn:hover, .main-nav .cta-btn:focus {
  background: var(--color-pink);
  color: #364153;
  box-shadow: 0px 4px 20px 0 rgba(255,182,194,0.11);
}

/* burger for mobile */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #364153;
  background: var(--color-white);
  border: none;
  font-size: 2rem;
  padding: 8px;
  border-radius: 9px;
  box-shadow: 0 1px 4px 0 rgba(152,183,255,0.13);
  cursor: pointer;
  margin-left: 18px;
  transition: background 0.2s, color 0.2s;
  z-index: 1020;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--color-blue);
  color: #1c2333;
}

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

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(250, 242, 236, 0.98);
  box-shadow: 0 4px 36px rgba(246,180,247,0.16);
  transform: translateX(-100%);
  transition: transform 0.39s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px 26px;
  gap: 32px;
}
.mobile-menu.active {
  transform: translateX(0%);
}
.mobile-menu-close {
  background: var(--color-pink);
  color: #364153;
  font-size: 2rem;
  align-self: flex-end;
  border: none;
  padding: 6px 13px;
  border-radius: 9px;
  cursor: pointer;
  box-shadow: 0 2px 14px 0 rgba(241,152,186,0.12);
  margin-bottom: 28px;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--color-blue);
  color: #253366;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.mobile-nav a {
  display: block;
  padding: 14px 0;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.11rem;
  color: #364153;
  border-radius: 8px;
  text-align: left;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-blue);
  color: #253366;
}

/* Hide desktop nav on mobile, show burger */
@media (max-width: 1024px) {
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex !important;
  }
}

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

/* ------------------------------------------------------------
   HERO SECTION (index)
-------------------------------------------------------------*/
.hero {
  background: linear-gradient(120deg, #F9D3DC 8%, #BDEFE9 42%, #FDF6ED 100%);
  padding-top: 68px;
  padding-bottom: 52px;
  margin-bottom: 48px;
  border-radius: 0 0 32px 32px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero h1 {
  font-size: 2.6rem;
  margin-bottom: 18px;
  color: #364153;
  letter-spacing: -1px;
}
.hero p {
  font-size: 1.12rem;
  color: #364153;
  max-width: 480px;
  margin: 0 auto 24px auto;
}
.hero .cta-btn {
  margin-top: 6px;
}

/* ------------------------------------------------------------
   CTA BUTTONS & LINKS
-------------------------------------------------------------*/
.cta-btn {
  display: inline-block;
  background: var(--color-secondary);
  color: #364153;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 9px 28px;
  border-radius: 17px;
  text-align: center;
  font-size: 1.1rem;
  box-shadow: 0px 1px 15px 0 rgba(208,193,247,0.15);
  border: none;
  outline: none;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.19s, color 0.19s;
  margin-top: 10px;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--color-blue);
  color: #253366;
  box-shadow: 0px 6px 26px 0 rgba(135,178,255,0.13);
}

/* ------------------------------------------------------------
   FEATURES & SERVICE LISTS
-------------------------------------------------------------*/
.features, .services, .pricing, .about, .legal, .values, .contact, .confirmation, .cta {
  background: var(--color-white);
  border-radius: 18px;
  margin-bottom: 60px;
  padding: 40px 20px;
  box-shadow: 0 2px 24px 0 rgba(186,205,240,0.07);
}
.features h2,
.services h2,
.pricing h2,
.about h2 { margin-bottom: 14px; }

.features ul, .services ul {
  list-style: none;
  margin: 0 0 18px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.features li, .services li {
  font-size: 1.08rem;
  display: flex;
  align-items: center;
  gap: 13px;
  color: #474E63;
  background: 0;
}
.features li img {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  background: #F9D3DC;
  border-radius: 50%;
  padding: 6px;
  box-shadow: 0 1px 8px 0 rgba(255,202,211,0.10);
}

.services ul {
  gap: 10px;
}
.services li {
  font-size: 1.03rem;
}

.values ul {
  list-style: none;
  margin: 0 0 13px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.values li {
  padding-left: 0;
  font-size: 1.06rem;
}

/* ------------------------------------------------------------
   TABLES (PRICING)
-------------------------------------------------------------*/
table {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  background: #FCFAF7;
  border-radius: 9px;
  box-shadow: 0 2px 18px 0 rgba(186,205,240,0.07);
  margin-bottom: 24px;
  overflow: hidden;
  font-size: 1rem;
}
thead tr {
  background: #F9D3DC;
}
thead th {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 13px 7px;
  color: #364153;
}
tbody td {
  padding: 11px 7px;
  border-bottom: 1px solid #F3EDE7;
}
tbody tr:last-child td {
  border-bottom: none;
}

/* ------------------------------------------------------------
   FOOTER
-------------------------------------------------------------*/
footer {
  background: #FCFAF7;
  font-size: 0.95rem;
  color: #364153;
  border-top: 1.5px solid #F8CD59;
  box-shadow: 0 -1px 12px 0 rgba(247,213,235,0.11);
  padding-top: 28px;
  padding-bottom: 24px;
  margin-top: 40px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav a{
  color: #364153;
  padding: 3px 0;
  border-radius: 5px;
  font-size: 1em;
  opacity: 0.92;
  transition: color 0.18s, background 0.16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #F8CD59;
  background: none;
}
.footer-contact {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  color: #364153;
  font-size: 1em;
}
.footer-contact a {
  color: #364153;
  font-weight: 500;
  padding: 0 4px;
  text-decoration: underline dotted;
}
.footer-contact img {
  width: 21px; height: 21px;
  vertical-align: sub;
  margin-right: 4px;
  opacity: 0.8;
}
.footer-logo {
  margin-left: auto;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
.footer-logo img {
  width: 60px;
  height: auto;
  opacity: 0.92;
}

/* ------------------------------------------------------------
   LEGAL/ABOUT/CONFIRMATION SECTION
-------------------------------------------------------------*/
.legal, .about, .confirmation {
  background: var(--color-white);
  box-shadow: 0 1px 18px rgba(186,205,240,0.07);
  border-radius: 22px;
  margin-bottom: 60px;
  padding: 40px 20px;
}

.legal h1, .confirmation h1 {
  margin-bottom: 22px;
  font-size: 2rem;
  color: #364153;
}
.legal h2, .legal h3 { color: #364153; }

/* ------------------------------------------------------------
   RESPONSIVE DESIGN (Mobile-first)
-------------------------------------------------------------*/
@media (max-width: 1024px) {
  .container {
    padding-left: 9px;
    padding-right: 9px;
  }
  .footer-logo img {
    width: 44px;
  }
  h1 { font-size: 1.57rem; }
  h2 { font-size: 1.14rem; }
}

@media (max-width: 768px) {
  .container {
    max-width: 100vw;
    padding-left: 3vw; padding-right: 3vw;
  }
  .hero {
    padding-top: 40px;
    padding-bottom: 28px;
  }
  .content-wrapper, .footer-nav {
    gap: 18px;
  }
  .section,
  .features,
  .services,
  .about,
  .pricing,
  .legal,
  .confirmation {
    padding: 23px 6px;
    border-radius: 17px;
  }
  .footer-contact {
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
  }
  .footer-logo {
    margin-left: 0;
    margin-top: 16px;
  }
  .testimonials, .testimonial-card, .confirmation {
    padding: 14px 6px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 6px;
  }
  .card-container, .content-grid, .features ul, .services ul, .values ul {
    flex-direction: column !important;
    gap: 13px;
  }
  table {
    font-size: 0.98rem;
  }
  .main-nav {
    display: none !important;
  }
  .content-grid {
    gap: 15px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 1.12rem; }
  .hero h1 { font-size: 1.18rem; }
  .footer-logo img { width: 36px; }
  .cta-btn { font-size: .98rem; padding: 9px 12px; }
}

/* ------------------------------------------------------------
   COOKIE BANNER (Consent)
-------------------------------------------------------------*/
.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%) scale(1);
  z-index: 3100;
  background: #FFF9F6;
  color: #253366;
  padding: 22px 4vw 18px 4vw;
  border-radius: 24px 24px 12px 12px;
  box-shadow: 0 6px 40px 0 rgba(117, 168, 210, 0.12);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 490px;
  width: 94vw;
  gap: 15px;
  opacity: 1;
  transition: opacity 0.3s, transform 0.24s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) scale(0.95);
}
.cookie-banner strong {
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-banner-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 17px;
  margin-top: 7px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border: none;
  outline: none;
  border-radius: 16px;
  padding: 8px 25px;
  font-size: 1rem;
  cursor: pointer;
  margin-right: 0;
  box-shadow: 0 1px 7px 0 rgba(249,211,220,0.11);
  transition: background .17s, color .14s;
}
.cookie-banner .cookie-accept {
  background: var(--color-primary);
  color: #FFF;
}
.cookie-banner .cookie-accept:hover, .cookie-banner .cookie-accept:focus {
  background: #26304A;
}
.cookie-banner .cookie-reject {
  background: var(--color-blue);
  color: #344055;
}
.cookie-banner .cookie-reject:hover, .cookie-banner .cookie-reject:focus {
  background: #abbfe3;
}
.cookie-banner .cookie-settings {
  background: var(--color-secondary);
  color: #364153;
}
.cookie-banner .cookie-settings:hover, .cookie-banner .cookie-settings:focus {
  background: #FFE6CC;
  color: #364153;
}

/* Cookie Modal Popup */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(170,190,230,0.19);
  z-index: 3600;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity .19s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #FFF9F6;
  padding: 34px 25px 22px 28px;
  max-width: 410px;
  min-width: 310px;
  border-radius: 18px;
  box-shadow: 0 10px 46px 0 rgba(99,155,221, 0.13);
  z-index: 4000;
  color: #364153;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal h2 {
  font-size: 1.17rem;
  margin-bottom: 8px;
  color: #364153;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #FFFEF5;
  border-radius: 12px;
  padding: 12px 10px;
  font-size: 1.06rem;
}
.cookie-category .toggle {
  width: 40px; height: 24px;
  background: #F8CD59;
  border-radius: 99px;
  position: relative;
  flex-shrink: 0;
  margin-left: 13px;
  cursor: pointer;
  border: 1.5px solid #ffe5bd;
  transition: background .14s, border-color .14s;
}
.cookie-category .toggle[aria-checked="true"] {
  background: #BDEFE9;
  border-color: #A1E2D6;
}
.cookie-category .toggle[aria-disabled="true"] {
  opacity: 0.55;
  pointer-events: none;
}
.cookie-category .toggle-slider {
  display: block;
  width: 19px; height: 19px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 2px; left: 2px;
  box-shadow: 0 1px 4px 0 rgba(186,205,240,0.11);
  transition: left .19s cubic-bezier(0.64, -0.14, 0.21, 1.02);
}
.cookie-category .toggle[aria-checked="true"] .toggle-slider {
  left: 19px;
}
.cookie-modal-close {
  background: var(--color-pink);
  color: #364153;
  border: none;
  font-size: 1.1rem;
  align-self: flex-end;
  border-radius: 8px;
  padding: 6px 15px;
  margin-top: 6px;
  transition: background 0.16s, color 0.14s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: var(--color-blue);
  color: #364153;
}
.cookie-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 11px;
}
.cookie-modal-actions button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 10px;
  padding: 7px 19px;
  outline: none;
  border: none;
  cursor: pointer;
  background: var(--color-secondary);
  color: #364153;
  transition: background .14s, color .13s;
}
.cookie-modal-actions button:hover, .cookie-modal-actions button:focus {
  background: #FFE6CC;
  color: #364153;
}
@media (max-width: 600px) {
  .cookie-modal {
    max-width: 90vw;
    padding: 14px 8px 12px 13px;
    min-width: unset;
  }
  .cookie-banner {
    border-radius: 13px 13px 5px 5px;
    padding: 17px 5vw 13px 5vw;
    font-size: 0.98rem;
  }
}

/* ------------------------------------------------------------
   MICRO-INTERACTIONS / TRANSITIONS
-------------------------------------------------------------*/
.cta-btn,
.main-nav a,
.card,
.cookie-banner button,
.cookie-modal-actions button,
.mobile-menu-toggle,
.mobile-menu-close,
.mobile-nav a {
  transition: background .2s, color .18s, box-shadow .18s, transform .16s;
}
.card:hover {
  box-shadow: 0 10px 50px 12px rgba(180,181,224,0.10);
  z-index: 2;
  transform: translateY(-5px) scale(1.017);
}
.cta-btn:active { transform: translateY(2px) scale(0.97); }

/* ------------------------------------------------------------
   VISUAL ELEMENTS - DREAMY ATMOSPHERE
-------------------------------------------------------------*/
.card, .testimonial-card, .section, .about, .legal, .values, .features, .footer-logo, .footer-contact, .footer-nav {
  border-radius: 16px;
}

.card, .testimonial-card {
  background: linear-gradient(110deg,#FFF7F6 60%, #E7F8FD 100%);
}

.section, .features, .services, .about, .legal, .values, .confirmation {
  background: linear-gradient(120deg,#FFF7F6 56%,#FFFEE8 100%);
}

.card, .testimonial-card, .section, .about, .legal, .values, .confirmation {
  box-shadow: 0 2px 22px 0 rgba(200,185,242,0.06);
}

/* ------------------------------------------------------------
   MISC SPACING
-------------------------------------------------------------*/
.section, .about, .services, .values, .legal, .pricing {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card, .testimonial-card {
  margin-bottom: 20px;
}
/* proper gap between cards/sections */
.card-container, .content-grid,
.features ul, .services ul, .values ul {
  gap: 20px;
}

/* ------------------------------------------------------------
   FORMS & INPUTS (if needed in future)
-------------------------------------------------------------*/
input[type="text"], input[type="email"], textarea {
  font-family: 'Open Sans', Arial, sans-serif;
  border-radius: 8px;
  border: 1.5px solid #EDE0F7;
  padding: 10px 13px;
  background: #fff;
  font-size: 1rem;
  margin-bottom: 13px;
  outline: none;
  transition: border-color .16s;
}
input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
  border-color: #BDEFE9;
}

/* ------------------------------------------------------------
   TYPOGRAPHY (Soft, Dreamy)
-------------------------------------------------------------*/
body {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  color: #364153;
  background: #FCFAF7;
  letter-spacing: 0.01em;
}
h1, h2, h3, h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #364153;
}
h1 { font-size: 2.25rem; }
h2 { font-size: 1.59rem; }
h3 { font-size: 1.19rem; }
small, .small { font-size: 0.92rem; opacity: 0.74; }

/* ------------------------------------------------------------
   ACCESSIBILITY & FOCUSED STATES
-------------------------------------------------------------*/
a, button, .cta-btn, .mobile-menu-toggle, .mobile-menu-close, input, textarea {
  outline: none;
}
a:focus, .cta-btn:focus, .main-nav a:focus, .mobile-nav a:focus {
  box-shadow: 0 0 0 3px #BDEFE9;
}
button:focus, .cookie-modal-close:focus, .cookie-banner button:focus {
  box-shadow: 0 0 0 2px #F8CD59;
}

/* Focus visible for better UX on keyboard navigation */
:focus-visible {
  outline: 2px dashed #F8CD59 !important;
  outline-offset: 2px !important;
}

/* ------------------------------------------------------------
   PRINT/SCREEN FRIENDLY
-------------------------------------------------------------*/
@media print {
  .mobile-menu,
  .mobile-menu-toggle,
  .cookie-banner,
  .cookie-modal-overlay {
    display: none !important;
  }
  footer, header { box-shadow: none; }
}
