/* RESET & BASE STYLES */
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, main, 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;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section {
  display: block;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  color: #1A2537;
  background: linear-gradient(135deg, #E9EEF2 0%, #c3e6ee 100%);
  min-height: 100vh;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #30B0C7;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(.4,0,.2,1);
}
a:hover, a:focus {
  color: #1A2537;
  text-decoration: underline;
}
strong, b {
  font-weight: 700;
}
ul, ol {
  list-style-position: inside;
}

/* FONTS */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: #1A2537;
  line-height: 1.15;
}
h1 {
  font-size: 2.75rem;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.375rem;
  margin-bottom: 12px;
}
h4 {
  font-size: 1.125rem;
  margin-bottom: 10px;
}
p, li {
  font-size: 1rem;
  line-height: 1.7;
  color: #1A2537;
}


/* CONTAINER AND LAYOUTS */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(26,37,55,.09);
}

/* HERO SECTION */
.hero {
  background: linear-gradient(100deg, #30B0C7 0%, #E9EEF2 100%);
  min-height: 330px;
  display: flex;
  align-items: center;
  border-bottom-left-radius: 32px;
  border-bottom-right-radius: 32px;
  margin-bottom: 36px;
  box-shadow: 0 4px 40px rgba(26,37,55,.12);
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 16px;
}
.hero h1 {
  color: #1A2537;
}
.hero p {
  color: #1A2537;
  font-size: 1.25rem;
}

/* BUTTONS */
.button-primary,
.button-secondary {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 32px;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 16px rgba(48,176,199,.15);
  transition: background-color 0.22s cubic-bezier(.4,0,.2,1), box-shadow 0.22s cubic-bezier(.4,0,.2,1), color 0.15s;
}
.button-primary {
  background: linear-gradient(90deg, #30B0C7 15%, #1A2537 100%);
  color: #fff;
  border: none;
}
.button-primary:hover, .button-primary:focus {
  background: linear-gradient(90deg, #1A2537 10%, #30B0C7 90%);
  color: #fff;
  box-shadow: 0 6px 36px rgba(48,176,199,.22);
}
.button-secondary {
  background: #E9EEF2;
  color: #1A2537;
  border: 1.5px solid #30B0C7;
  margin-top: 14px;
}
.button-secondary:hover, .button-secondary:focus {
  background: #30B0C7;
  color: #fff;
  border-color: #30B0C7;
}

/* FLEXBOX SPACING CONTAINERS (MANDATORY) */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 16px rgba(26,37,55,.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 240px;
  transition: box-shadow .22s cubic-bezier(.4,0,.2,1), transform .15s;
}
.card:hover {
  box-shadow: 0 6px 36px rgba(48,176,199,.13);
  transform: translateY(-4px) scale(1.02);
  z-index: 2;
}
.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: 24px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 24px;
  background: #E9EEF2;
  border-radius: 18px;
  box-shadow: 0 1px 8px rgba(26,37,55,.07);
  color: #1A2537;
}
.testimonial-card p {
  flex: 1 1 auto;
  font-size: 1.1rem;
  color: #1A2537;
}
.testimonial-card span {
  font-size: 1rem;
  color: #30B0C7;
  font-weight: 700;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* MINI CONTACT & INFO */
.mini-contact-info {
  margin-top: 16px;
  font-size: 1rem;
  color: #1A2537;
  background: #E9EEF2;
  border-radius: 14px;
  padding: 16px;
  line-height: 1.7;
}

/* REVIEW-SUMMARY */
.review-summary {
  margin-top: 14px;
  padding: 16px;
  background: #30B0C7;
  border-radius: 16px;
  color: #fff;
  font-weight: 700;
  font-size: 1.15rem;
}
.review-summary strong {
  color: #fff;
}

/* SERVICE LIST/LISTS */
.service-list ul, .product-feature-grid ul, .benefit-list ul, .usage-scenarios ul, .key-statistics ul, .studio-feature-grid ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.service-cards ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* TEAM HIGHLIGHT */
.team-highlight {
  background: #E9EEF2;
  border-left: 5px solid #30B0C7;
  padding: 14px 18px;
  border-radius: 12px;
}

/* TEXT SECTIONS, CASE STUDIES ETC. */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 10px;
}
.case-study-cards {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.key-statistics ul li {
  font-weight: 600;
  color: #1A2537;
}

/* FOOTER */
footer {
  background: #1A2537;
  color: #E9EEF2;
  padding: 48px 0 16px 0;
  border-top-left-radius: 36px;
  border-top-right-radius: 36px;
  margin-top: 80px;
}
footer .container {
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
}
footer nav {
  color: #E9EEF2;
  font-size: 0.98rem;
  margin-bottom: 8px;
}
footer nav a {
  color: #E9EEF2;
  font-weight: 600;
  margin-right: 7px;
  margin-left: 0;
  opacity: 0.8;
  text-decoration: none;
}
footer nav a:hover {
  color: #30B0C7;
  opacity: 1;
}
footer address {
  font-style: normal;
  color: #E9EEF2;
  opacity: 0.93;
  font-size: 0.95rem;
}
footer img {
  height: 36px;
}

/* HEADER/NAVIGATION */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 16px rgba(26,37,55,.07);
  position: relative;
  z-index: 22;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px 15px 20px;
  position: relative;
  gap: 0;
}
header img {
  height: 44px;
}
header nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
}
header nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 500;
  color: #1A2537;
  font-size: 1.08rem;
  position: relative;
  padding: 4px 8px;
}
header nav a:hover, header nav a.active {
  color: #30B0C7;
}
.button-primary {
  margin-left: 24px;
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 22px;
  right: 22px;
  z-index: 120;
  background: none;
  border: none;
  font-size: 2.05rem;
  color: #30B0C7;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  transition: background .17s;
  cursor: pointer;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: #e9eef2;
}
.mobile-menu {
  position: fixed;
  z-index: 121;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(26,37,55,0.95);
  transform: translateX(-100vw);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transition: transform 0.33s cubic-bezier(.5,0,.2,1);
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  position: absolute;
  top: 18px;
  right: 22px;
  z-index: 122;
  cursor: pointer;
  transition: color .18s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #30B0C7;
}
.mobile-nav {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 18px;
  padding-left: 38px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.35rem;
  padding: 12px 10px 12px 0;
  font-weight: 600;
  border-radius: 6px;
  width: fit-content;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #30B0C7 !important;
  background: rgba(48,176,199,0.08);
}

/* RESPONSIVE STYLES */
@media (max-width: 1200px) {
  .container {
    max-width: 95vw;
  }
}
@media (max-width: 1024px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.5rem; }
  .hero { min-height: 220px; }
}
@media (max-width: 900px) {
  header nav { gap: 15px; }
  .container { max-width: 98vw; }
  .hero { padding-bottom: 20px; }
}
@media (max-width: 768px) {
  .container {
    padding: 0 8px;
  }
  header .container {
    flex-direction: row;
    gap: 0;
    padding: 12px 8px 12px 8px;
  }
  header nav, header .button-primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
    position: fixed;
    right: 20px;
    top: 16px;
  }
  .hero {
    border-radius: 0 0 16px 16px;
    min-height: 160px;
  }
  .section {
    margin-bottom: 34px;
    padding: 22px 6px;
    border-radius: 16px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
}
@media (max-width: 550px) {
  h1, .hero h1 { font-size: 1.28rem; }
  h2 { font-size: 1.03rem; }
  h3 { font-size: 1rem; }
  .footer img, header img {
    height: 28px;
  }
  .testimonial-card, .mini-contact-info, .review-summary {
    font-size: 0.97rem;
    padding: 10px;
  }
  .button-primary, .button-secondary {
    padding: 11px 18px;
    font-size: 1rem;
  }
}

/* COOKIE CONSENT BANNER + MODAL */
.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  width: 96vw;
  max-width: 420px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 36px rgba(26,37,55,.13);
  padding: 22px 18px 16px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  z-index: 1400;
  font-size: 1rem;
  color: #1A2537;
  animation: cookie-banner-in 0.36s cubic-bezier(.8,0,.6,1);
}
@keyframes cookie-banner-in {
  0% { opacity: 0; transform: translate(-50%, 54px) scale(0.97); }
  100% { opacity: 1; transform: translate(-50%, 0) scale(1); }
}
.cookie-banner .cookie-banner-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}
.cookie-banner .cookie-btn {
  padding: 9px 22px;
  border-radius: 28px;
  font-size: 1rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background .12s, color .12s;
  margin-right: 4px;
}
.cookie-btn-accept {
  background: #30B0C7;
  color: #fff;
  box-shadow: 0 2px 8px rgba(48,176,199,.17);
}
.cookie-btn-accept:hover,
.cookie-btn-accept:focus {
  background: #1A2537;
  color: #fff;
}
.cookie-btn-reject {
  background: #E9EEF2;
  color: #1A2537;
  border: 1.2px solid #30B0C7;
}
.cookie-btn-reject:hover,
.cookie-btn-reject:focus {
  background: #30B0C7;
  color: #fff;
}
.cookie-btn-settings {
  background: #fff;
  color: #1A2537;
  border: 1.2px solid #30B0C7;
}
.cookie-btn-settings:hover,
.cookie-btn-settings:focus {
  background: #E9EEF2;
}

.cookie-modal-overlay {
  position: fixed;
  z-index: 1420;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(26, 37, 55, 0.60);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: overlay-fade-in .27s;
}
@keyframes overlay-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  min-width: 300px;
  max-width: 98vw;
  padding: 30px 24px;
  box-shadow: 0 6px 38px rgba(26,37,55,0.17);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  animation: modal-appear .24s cubic-bezier(.5,0,.2,1);
}
@keyframes modal-appear {
  0% { opacity: 0; transform: scale(.98) translateY(30px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
.cookie-modal h2 {
  margin-bottom: 10px;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}
.cookie-toggle {
  width: 42px;
  height: 24px;
  border-radius: 16px;
  background: #E9EEF2;
  position: relative;
  cursor: pointer;
  transition: background .18s;
  border: 1.2px solid #30B0C7;
}
.cookie-toggle[data-checked="true"] {
  background: #30B0C7;
}
.cookie-toggle .cookie-toggle-knob {
  position: absolute;
  top: 3.5px;
  left: 2.5px;
  width: 17px;
  height: 17px;
  background: #fff;
  border-radius: 50%;
  transition: left .18s cubic-bezier(.7,0,.7,1);
}
.cookie-toggle[data-checked="true"] .cookie-toggle-knob {
  left: 21px;
  background: #fff;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}
.cookie-modal-close {
  background: none;
  border: none;
  color: #1A2537;
  font-size: 1.66rem;
  position: absolute;
  top: 18px;
  right: 22px;
  z-index: 10;
  cursor: pointer;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  color: #30B0C7;
}

/* FORMS (if any in future) */
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  border: 1.2px solid #E9EEF2;
  border-radius: 8px;
  padding: 9px 14px;
  font-size: 1rem;
  transition: border-color .17s;
}
input:focus, textarea:focus, select:focus {
  border-color: #30B0C7;
  outline: none;
}

/* SHADOWS AND HIERARCHY */
.section {
  box-shadow: 0 8px 32px rgba(26,37,55,.09);
}
.card {
  box-shadow: 0 2px 16px rgba(26,37,55,.08);
}
.card:hover {
  box-shadow: 0 6px 36px rgba(48,176,199,.13);
  z-index: 2;
}
footer {
  box-shadow: 0 -2px 28px rgba(26,37,55,.11);
}

/* MISCELLANEOUS */
::-webkit-scrollbar {
  width: 9px;
  background: #E9EEF2;
}
::-webkit-scrollbar-thumb {
  background: #30B0C7;
  border-radius: 8px;
}

/* HELPER CLASSES */
.mt-16 { margin-top: 16px; }
.mb-24 { margin-bottom: 24px; }
.pb-20 { padding-bottom: 20px; }

/* Accessibility: Focus indicators */
a:focus, .button-primary:focus, .button-secondary:focus, .cookie-btn:focus, .mobile-menu-toggle:focus, .cookie-modal-close:focus {
  box-shadow: 0 0 0 2px #30B0C744;
  outline: none;
}

/* No grid properties or columns used anywhere - Flex only! */
