/* ========================================================
   Volt Horizon "playful_dynamic" Style – style.css
   Author: UI/CSS Team
   ======================================================== */

/* ==== 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 {
  scroll-behavior: smooth;
  box-sizing: border-box;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #FEFDFD;
  color: #222e49;
  font-size: 16px;
  min-height: 100vh;
  line-height: 1.6;
  letter-spacing: 0.015em;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
ul, ol {
  margin-left: 1.5em;
}
a {
  color: #1A2743;
  text-decoration: none;
  transition: color .18s;
}
a:hover, a:focus {
  color: #FFD525;
  text-decoration: underline;
}

/* ==== BRAND COLOR PALETTE === */
:root {
  --vh-primary: #1A2743;
  --vh-secondary: #7ECAE7;
  --vh-accent: #FFD525;
  --vh-bg: #FEFDFD;
  --vh-highlight: #FF72B1;
  --vh-card: #fff3e6;
  --vh-shadow: rgba(30,40,75,0.10);
  --vh-error: #FF4862;
}

/* ==== TYPOGRAPHY ==== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 800;
  color: var(--vh-primary);
  letter-spacing: 0.01em;
  margin-bottom: 0.5em;
}
h1 {
  font-size: 2.2rem;
  line-height: 1.1;
  margin-bottom: 16px;
  color: var(--vh-primary);
  text-shadow: 2px 4px 0 var(--vh-accent), 0 2px 8px rgba(126,202,231,.08);
  animation: vh-bounce-in 0.7s;
}
h2 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.18rem;
  margin-bottom: 10px;
}
h4 {
  font-size: 1.08rem;
}
p, li {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #253150;
}
strong {
  color: var(--vh-highlight);
  font-weight: 700;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
}

/* Playful Headings – Letters with colored drop shadow */
.hero h1, .hero h2, .cta h2 {
  text-shadow: 1px 3px 0 var(--vh-secondary), 0 4px 16px var(--vh-accent), 0 0 2px #fff;
  letter-spacing: 0.02em;
}

/* ==== MAIN LAYOUT STRUCTURE ==== */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 18px;
}

/* -- Spacing and Patterns -- */
section, .section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* -- Flexbox card containers -- */
.card-container, .card-grid, .feature-grid, .technology-grid, .service-list, .key-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
  margin-bottom: 20px;
}
.card, .feature-grid li, .technology-grid li, .service-list li, .key-benefits li {
  margin-bottom: 20px;
  position: relative;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #fffbe7;
  border-radius: 20px;
  box-shadow: 0 4px 24px var(--vh-shadow);
  margin-bottom: 24px;
  padding: 24px 28px;
  border: 2.5px solid var(--vh-accent);
  position: relative;
  min-width: 0;
  transition: transform .19s cubic-bezier(.7,.05,.31,1.22), box-shadow .17s;
}
.testimonial-card:hover {
  box-shadow: 0 12px 32px rgba(30,40,75,.18);
  transform: translateY(-4px) scale(1.027) rotate(-1.2deg);
  border-color: var(--vh-secondary);
}
.testimonial-card p {
  font-size: 1.13rem;
  color: #222d41;
  font-style: italic;
  margin-bottom: 1em;
}
.testimonial-meta {
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: center;
  color: var(--vh-primary);
  font-weight: 700;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
}
.testimonial-meta span:last-child {
  font-size: 1.13rem;
  color: var(--vh-highlight);
}

.card {
  background: var(--vh-card);
  border-radius: 20px;
  box-shadow: 0 2px 14px var(--vh-shadow);
  padding: 28px 30px;
  min-width: 220px;
  flex: 1 1 280px;
  transition: box-shadow .18s, transform .14s;
}
.card:hover {
  box-shadow: 0 8px 36px rgba(30,40,75,0.18);
  transform: translateY(-5px) rotate(-0.7deg);
}

.feature-grid, .technology-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
  margin: 0;
  padding: 0;
  list-style: none;
}
.feature-grid li, .technology-grid li {
  flex: 1 1 225px;
  max-width: 320px;
  background: #FFF8ED;
  border-radius: 16px;
  padding: 20px 14px 20px 20px;
  align-items: flex-start;
  /* Jump-in animation */
  animation: vh-pop 0.30s cubic-bezier(.5,1.7,.7,1.1) both;
  border: 2px solid var(--vh-secondary);
  box-shadow: 0 2px 16px var(--vh-shadow);
  position: relative;
  margin-bottom: 0;
  margin-right: 0;
  transition: box-shadow .12s, border-color .17s;
}
.feature-grid li:hover, .technology-grid li:hover {
  border-color: var(--vh-accent);
  box-shadow: 0 8px 36px rgba(30,40,75,.18);
}
.feature-grid img, .technology-grid img {
  width: 38px;
  height: 38px;
  margin-bottom: 8px;
  filter: drop-shadow(0 1px 6px var(--vh-secondary));
  animation: vh-wiggle 1.5s infinite linear both;
}
.feature-grid strong, .technology-grid strong {
  display: block;
  font-size: 1.1rem;
  color: var(--vh-primary);
}
.feature-grid p, .technology-grid p {
  color: #2a344e;
  font-size: 1rem;
  margin: 0.5em 0 0 0;
}

/* -- Section Titles -- */
section > h1, section > h2, .container > h1, .container > h2 {
  margin-bottom: 24px;
  font-size: 1.7rem;
  line-height: 1.15;
  text-align: left;
}

/* ==== NAVIGATION & HEADER ==== */
header {
  background: #FFFDFB;
  box-shadow: 0 2px 12px var(--vh-shadow);
  border-bottom: 3.5px solid var(--vh-accent);
  padding-top: 10px;
  padding-bottom: 10px;
  position: relative;
  z-index: 20;
}
.nav-bar {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  width: 100%;
  min-height: 64px;
}
.logo img {
  height: 44px;
  width: auto;
  display: block;
  margin-right: 8px;
  filter: drop-shadow(0 1px 4px var(--vh-secondary));
  animation: vh-pop .4s;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
.main-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--vh-primary);
  border-radius: 8px;
  padding: 7px 15px;
  transition: background .16s, color .13s, box-shadow .17s;
  position: relative;
  z-index: 1;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--vh-secondary);
  color: #111;
  box-shadow: 0 4px 22px rgba(126,202,231,0.07);
}

.cta.primary {
  background: linear-gradient(90deg, var(--vh-accent) 70%, var(--vh-highlight) 100%);
  color: var(--vh-primary);
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  border: none;
  border-radius: 16px;
  padding: 13px 32px;
  margin-left: 12px;
  cursor: pointer;
  box-shadow: 0 2px 8px var(--vh-shadow);
  transition: background .15s, color .14s, box-shadow .22s, transform .14s;
  outline: none;
  text-shadow: none;
  position: relative;
}
.cta.primary:hover, .cta.primary:focus {
  background: linear-gradient(90deg, var(--vh-highlight) 76%, var(--vh-secondary) 100%);
  color: #232b47 !important;
  box-shadow: 0 8px 32px var(--vh-shadow);
  transform: scale(1.04) rotate(-2deg);
}
.cta.secondary {
  background: var(--vh-secondary);
  color: var(--vh-primary);
  border-radius: 16px;
  border: 2px solid var(--vh-primary);
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 800;
  padding: 13px 32px;
  margin-top: 15px;
  min-width: 180px;
  cursor: pointer;
  box-shadow: 0 2px 8px var(--vh-shadow);
  transition: background .15s, color .14s, box-shadow .22s, transform .13s, border .12s;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: var(--vh-accent);
  color: var(--vh-primary);
  border-color: var(--vh-highlight);
  box-shadow: 0 8px 32px var(--vh-shadow);
  transform: scale(1.04) rotate(2deg);
}

/* ==== Hamburger Menu Styling ==== */
.mobile-menu-toggle {
  background: var(--vh-accent);
  color: var(--vh-primary);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.6rem;
  font-family: inherit;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 18px var(--vh-shadow);
  cursor: pointer;
  transition: background .17s, color .17s, box-shadow .12s;
  z-index: 1055;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--vh-highlight);
  color: var(--vh-primary);
}

/* ==== Mobile Menu Overlay ==== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: var(--vh-card);
  box-shadow: 0 8px 48px rgba(30,40,75,0.24);
  z-index: 2100;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(.65,.02,.28,1) 0s;
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2rem;
  background: transparent;
  color: var(--vh-primary);
  border: none;
  align-self: flex-end;
  margin: 24px 24px 10px 0;
  cursor: pointer;
  z-index: 2200;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .17s, color .14s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--vh-accent);
  color: var(--vh-highlight);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  width: 100%;
  padding-left: 0;
}
.mobile-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.13rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--vh-primary);
  background: none;
  padding: 20px 30px;
  border-bottom: 2px solid #f2f1de;
  transition: background .16s, color .13s, border-radius .12s;
  min-width: 240px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--vh-secondary);
  color: #0a183b;
  border-radius: 10px;
}

/* ==== HERO SECTION ==== */
.hero {
  background: linear-gradient(90deg, #fffbe7 60%, #ffe0fa 100%);
  padding-top: 50px;
  padding-bottom: 55px;
  border-radius: 0 0 42px 42px;
  box-shadow: 0 12px 55px var(--vh-shadow);
  position: relative;
}
.hero::after {
  content: '';
  display: block;
  position: absolute;
  right: -48px; bottom: -38px;
  width: 135px; height: 46px;
  background: var(--vh-highlight);
  opacity: .19;
  z-index: 0;
  filter: blur(6px);
  border-radius: 46px;
  pointer-events: none;
  animation: vh-shine 3.6s infinite alternate linear;
}
.hero h1 {
  font-size: 2.4rem;
  color: var(--vh-primary);
  font-weight: 900;
}
.hero p {
  font-size: 1.1rem;
  margin: 20px 0 30px 0;
}

/* ==== FEATURES ==== */
.features {
  background: #f1faff;
  border-radius: 32px;
  min-height: 120px;
  margin-bottom: 60px;
  box-shadow: 0 1.5px 10px var(--vh-shadow);
}

/* ==== SERVICE LISTS AND CARDS ==== */
.services, .services-list {
  background: #FFFDFB;
  border-radius: 32px;
  box-shadow: 0 4px 22px var(--vh-shadow);
}
.services .cta.secondary, .services-list .cta.secondary {
  align-self: flex-end;
}
.service-list, .key-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 0;
  list-style: disc inside;
}
.service-list li, .key-benefits li {
  flex: 1 1 210px;
  background: #f6fdff;
  border-radius: 12px;
  min-width: 120px;
  padding: 14px 16px 16px 12px;
  color: #28416a;
  margin-bottom: 0;
  position: relative;
}

/* ==== ABOUT & LEGAL PAGES ==== */
.about-section, .legal {
  background: #f0fbfd;
  border-radius: 28px;
  box-shadow: 0 2px 12px rgba(30,40,75,0.06);
}
.text-section {
  font-size: 1rem;
  color: #1A2743;
  margin-bottom: 0;
  padding: 0;
}
.text-section ul {
  margin-top: 12px;
  margin-bottom: 0;
  padding-left: 16px;
}
.text-section li {
  margin-bottom: 6px;
}

/* ==== CONTACT BLOCK ==== */
.contact-info-section, .contact-preview {
  background: #fafdfe;
  border-radius: 32px;
  box-shadow: 0 2px 10px var(--vh-shadow);
}
.contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
}
.contact-info li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 9px;
  font-size: 1rem;
}
.contact-info li img {
  width: 24px;
  height: 24px;
  opacity: .87;
}

/* ==== TABLES ==== */
table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-top: 16px;
  font-size: 1rem;
  margin-bottom: 14px;
}
thead th {
  background: var(--vh-secondary);
  color: var(--vh-primary);
  padding: 10px 8px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
}
tbody td {
  background: #fff;
  color: #1A2743;
  padding: 10px 8px;
  border-bottom: 1px solid #e6eaf2;
}
tbody tr:last-child td {
  border-bottom: none;
}
table th, table td {
  text-align: left;
}
.comparison-chart h3 {
  margin-top: 22px;
  font-size: 1.1rem;
  color: var(--vh-primary);
}

/* ==== CTA ==== */
.cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #effbff;
  border-radius: 26px;
  margin-top: 60px;
  margin-bottom: 60px;
  padding: 34px 18px 42px 18px;
  box-shadow: 0 2px 18px var(--vh-shadow);
}
.cta h2 {
  font-size: 2rem;
  margin-bottom: 22px;
  text-align: center;
}

/* ==== FOOTER ==== */
footer {
  background: #F3F6FA;
  border-top: 4px solid var(--vh-accent);
  box-shadow: 0 -2px 18px rgba(30,40,75,0.07);
  padding: 40px 0 0 0;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 38px;
  justify-content: space-between;
  align-items: flex-start;
  border-radius: 0 0 24px 24px;
  padding-bottom: 14px;
}
.footer-nav nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  color: var(--vh-primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
}
.footer-nav a:hover {
  color: var(--vh-highlight);
}
.branding {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 17px;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--vh-primary);
  font-weight: 700;
  margin-bottom: 8px;
}
.branding img {
  width: 38px;
  height: auto;
}
.contact-details ul {
  list-style: none;
  padding: 0;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 15px;
  color: #2d3861;
  margin-bottom: 5px;
}
.contact-details li img {
  width: 22px;
  height: 22px;
}

/* ==== COOKIE CONSENT BANNER ==== */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 18px;
  background: #FFD525;
  color: var(--vh-primary);
  border-radius: 16px;
  box-shadow: 0 2px 22px rgba(30,40,75,.10);
  z-index: 2500;
  padding: 18px 22px;
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  animation: vh-pop .26s;
}
.cookie-banner-actions {
  display: flex;
  gap: 16px;
}
.cookie-btn {
  min-width: 120px;
  min-height: 40px;
  border: none;
  border-radius: 12px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 8px 22px;
  transition: background .14s, color .14s, box-shadow .15s;
  cursor: pointer;
}
.cookie-btn.accept {
  background: var(--vh-highlight);
  color: var(--vh-primary);
}
.cookie-btn.accept:hover { background: var(--vh-primary); color: var(--vh-accent); }
.cookie-btn.reject {
  background: #fffbe7;
  color: #A12443;
}
.cookie-btn.reject:hover { background: var(--vh-error); color: #fff; }
.cookie-btn.settings {
  background: var(--vh-secondary);
  color: var(--vh-primary);
}
.cookie-btn.settings:hover { background: var(--vh-accent); color: #1A2743; }


/* ==== COOKIE MODAL ==== */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(30,35,64,0.32);
  z-index: 2600;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: vh-pop .22s;
}
.cookie-modal {
  background: #fffbe7;
  padding: 32px 24px;
  border-radius: 26px;
  box-shadow: 0 2px 44px rgba(30,40,75,.22);
  min-width: 312px;
  max-width: 410px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
  color: #1a1943;
}
.cookie-modal h3 {
  font-size: 1.15rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}
.cookie-category label {
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}
.cookie-toggle {
  cursor: pointer;
  appearance: none;
  width: 36px;
  height: 20px;
  background: #ecebe3;
  border-radius: 16px;
  position: relative;
  outline: none;
  transition: background .13s;
}
.cookie-toggle:checked {
  background: var(--vh-secondary);
}
.cookie-toggle::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 2px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: transform .19s cubic-bezier(.65,.65,.22,1.5);
  box-shadow: 0 2px 8px var(--vh-shadow);
}
.cookie-toggle:checked::before {
  transform: translateX(16px);
}
.cookie-modal-actions {
  display: flex;
  gap: 18px;
  justify-content: flex-end;
}
.cookie-modal .close-modal {
  position: absolute;
  right: 16px;
  top: 18px;
  border: none;
  background: none;
  color: var(--vh-primary);
  font-size: 1.4rem;
  cursor: pointer;
  border-radius: 50%;
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
}
.cookie-modal .close-modal:hover,
.cookie-modal .close-modal:focus {
  background: var(--vh-accent);
  color: var(--vh-highlight);
}

/* ==== ANIMATIONS ==== */
@keyframes vh-pop {
  0% { transform: scale(.93) translateY(24px); opacity: 0.3; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
@keyframes vh-bounce-in {
  0% { transform: scale(.88); opacity: 0.55; }
  80% { transform: scale(1.09); }
  100% { transform: scale(1); opacity: 1; }
}
@keyframes vh-shine {
  0% { opacity: .13; right: -8px; }
  100% { opacity: .19; right: -48px; }
}
@keyframes vh-wiggle {
  0%   { transform: rotate(-6deg); }
  12%  { transform: rotate(9deg); }
  25%  { transform: rotate(-4deg); }
  50%  { transform: rotate(8deg); }
  80%  { transform: rotate(-4deg); }
  100% { transform: rotate(-6deg); }
}

/* ==== MICRO-INTERACTIONS ==== */
.feature-grid li, .technology-grid li, .card {
  transition: box-shadow .14s, border-color .17s, transform .19s cubic-bezier(.75,.02,.31,1.47);
}
.cta, .card, .testimonial-card {
  transition: box-shadow .20s, transform .12s;
}
.main-nav a, .cta.primary, .cta.secondary, .cookie-btn {
  transition: background .16s, color .15s, box-shadow .15s, border .10s;
}

/* ==== RESPONSIVE DESIGN ==== */
@media (max-width: 1020px) {
  .container { max-width: 100%; }
  .nav-bar { gap: 12px; }
  .feature-grid li, .technology-grid li {
    flex: 1 1 175px;
    max-width: 98vw;
  }
}
@media (max-width: 830px) {
  .hero h1, section > h1, section > h2 { font-size: 1.5rem; }
  .footer .container,
  footer .container { flex-direction: column; gap: 22px; align-items: stretch; }
  .main-nav { gap: 6px; }
}
@media (max-width: 768px) {
  section.section { padding: 27px 6px; }
  .container { padding: 0 8px; }
  .main-nav { display: none; }
  .cta.primary, .cta.secondary { font-size: 1rem; padding: 12px 18px; }
  .card, .feature-grid li, .technology-grid li, .testimonial-card {
    padding: 18px 10px;
    min-width: 0;
  }
  .hero {
    padding-top: 35px;
    padding-bottom: 28px;
    border-radius: 0 0 18px 18px;
  }
  .hero h1 { font-size: 1.32rem; }
  .content-wrapper {
    gap: 16px;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .mobile-menu { width: 100vw; max-width: 100vw; }
  .text-image-section { flex-direction: column; align-items: flex-start; gap: 16px; }
  .content-grid { flex-direction: column; gap: 12px; }
  .footer .container, footer .container {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    padding-bottom: 14px;
  }
}

@media (max-width: 540px) {
  .card, .feature-grid li, .technology-grid li, .testimonial-card {min-width:0;}
  section, .section {padding:17px 3px;margin-bottom:33px;}
  .cta {padding:14px 8px 18px 8px;}
  .cookie-modal {padding:16px 6px;min-width: 0;max-width:90vw;}
  .cookie-banner {padding:8px 6px; font-size:.91rem;}
  .cookie-banner-actions {gap:6px;}
}

/* === Accessibility Helpers === */
:focus-visible { outline: 2px solid var(--vh-highlight); outline-offset: 2px; }

/* ========== Prevent Overlaps & Ensure Spacing ========== */
.card, .testimonial-card, .feature-grid li, .technology-grid li, .service-list li, .key-benefits li {
  margin-bottom: 20px !important;
}
.content-wrapper, .card-container, .card-grid, .feature-grid, .technology-grid, .service-list, .key-benefits {
  gap: 20px;
}

/* ==== Hide mobile menu overlay by default ==== */
.mobile-menu {display: flex; pointer-events: none; opacity: 0;}
.mobile-menu.active {pointer-events: auto; opacity: 1; transition: opacity .26s, transform .35s;}

/* Utility classes for playful style */
.playful-bounce { animation: vh-bounce-in .8s; }
.playful-shine { animation: vh-shine 2s infinite linear alternate; }
.rounded-xxl { border-radius: 38px; }
.bg-accent { background: var(--vh-accent); color: var(--vh-primary); }

/* === Print safe (simple) === */
@media print { .nav-bar, .main-nav, .cta, .cookie-banner, .mobile-menu, .cookie-modal-overlay { display: none !important; } }
