/* 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;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #FFF;
  color: #203040;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
}
* {
  box-sizing: border-box;
}
img, svg {
  vertical-align: middle;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}
ul, ol {
  list-style: none;
}
a {
  color: #4AC2EA;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #FF9933;
  outline: none;
  text-decoration: underline;
}

/* Brand Colors & Font Utilities */
:root {
  --brand-primary: #203040;
  --brand-secondary: #4AC2EA;
  --brand-accent: #F3F6F9;
  --warm-orange: #FF9933;
  --warm-yellow: #FFE6B3;
  --warm-light: #FFF8F3;
  --friendly-green: #D2F5C7;
  --box-radius: 18px;
  --card-radius: 20px;
  --shadow: 0 2px 16px 0 rgba(30,30,30,0.07), 0 1.5px 5px 0 rgba(255,153,51,0.08);
  --max-container: 1330px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--brand-primary);
  font-weight: 700;
  letter-spacing: -0.5px;
}
h1 {
  font-size: 2.5rem; /* 40px */
  margin-bottom: 20px;
  line-height: 1.15;
}
h2 {
  font-size: 2rem; /* 32px */
  margin-bottom: 16px;
  line-height: 1.2;
}
h3 {
  font-size: 1.375rem; /* 22px */
  margin-bottom: 10px;
  line-height: 1.2;
}
h4 {
  font-size: 1.125rem;
  margin-bottom: 8px;
}
p {
  color: #33475b;
  margin-bottom: 10px;
  font-size: 1rem;
}
@media (max-width: 600px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  h3 {
    font-size: 1.125rem;
  }
}

strong, b {
  font-weight: 700;
  color: var(--brand-primary);
}

/* Containers */
.container {
  width: 100%;
  max-width: var(--max-container);
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Utility Spacing & Flex */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--brand-accent);
  border-radius: var(--box-radius);
  box-shadow: var(--shadow);
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: #fff;
  border-radius: var(--card-radius);
  box-shadow: var(--shadow);
  transition: box-shadow 0.22s, transform 0.18s;
  position: relative;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 32px 0 rgba(255,153,51,0.15);
  transform: translateY(-3px) scale(1.015);
  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;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #FFF8F3;
  border-radius: var(--card-radius);
  box-shadow: 0 2px 16px 0 rgba(32,48,64,0.10);
  flex-direction: row;
  transition: box-shadow 0.2s, transform 0.18s;
  border-left: 5px solid var(--warm-orange);
  color: #203040;
}
.testimonial-card p {
  font-size: 1.08rem;
  margin-bottom: 0;
  color: #203040;
  font-style: italic;
}
.testimonial-card span {
  color: #B86400;
  font-size: 0.95em;
  font-weight: 500;
  margin-left: 12px;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px 0 rgba(255,153,51,0.16);
  transform: scale(1.025);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Hero Section */
.hero {
  background: linear-gradient(90deg, #FFE6B3 0%, #FFF8F3 100%);
  padding: 48px 0 48px 0;
  text-align: left;
  border-bottom-left-radius: 36px;
  border-bottom-right-radius: 36px;
  box-shadow: 0 6px 36px 0 rgba(32,48,64,0.06);
}
.hero h1 {
  color: #E06B00;
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.6px;
}
.hero p {
  font-size: 1.22rem;
  margin-bottom: 22px;
  color: #425068;
}
@media (max-width: 768px) {
  .hero {
    padding: 32px 0 32px 0;
    border-radius: 0;
  }
}

/* Brand Buttons */
.cta-btn, .btn, .cookie-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.07rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(90deg, #FF9933 85%, #FFC478 100%);
  border: none;
  border-radius: 32px;
  padding: 13px 32px;
  margin-top: 10px;
  box-shadow: 0 3px 18px 0 rgba(255,153,51,0.18);
  cursor: pointer;
  transition: background 0.14s, transform 0.15s, box-shadow 0.14s;
}
.cta-btn:hover, .cta-btn:focus, .btn:hover, .btn:focus, .cookie-btn:hover, .cookie-btn:focus {
  background: linear-gradient(90deg, #E06B00 85%, #FFE6B3 100%);
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 24px 0 rgba(255,153,51,0.21);
}

/* Header & Navigation */
header {
  background: #fff;
  box-shadow: 0 2px 12px 0 rgba(32,48,64,0.04);
  width: 100%;
  position: relative;
  z-index: 30;
}
header .container {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  gap: 0;
}
header img {
  max-height: 44px;
  border-radius: 0;
}
nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
nav a {
  color: #203040;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  border-radius: 14px;
  padding: 7px 14px;
  transition: background 0.12s, color 0.12s;
}
nav a:hover, nav a:focus {
  background: #FFC478;
  color: #E06B00;
}

/* Mobile Burger Menu */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  right: 24px;
  top: 18px;
  z-index: 60;
  background: #FF9933;
  color: #fff;
  font-size: 2.2rem;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px 0 rgba(255,153,51,0.16);
  cursor: pointer;
  transition: background 0.11s, box-shadow 0.12s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #E06B00;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #FFF8F3;
  position: fixed;
  top: 0; left: 0;
  height: 100vh;
  width: 100vw;
  z-index: 120;
  transform: translateX(-110vw);
  transition: transform 0.32s cubic-bezier(.19,1,.22,1);
  box-shadow: 0 6px 42px 0 rgba(255,153,51,0.14);
  padding: 0 0 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  margin: 22px 0 0 18px;
  background: #FF9933;
  color: #fff;
  font-size: 2rem;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  display: flex;
  cursor: pointer;
  box-shadow: 0 2px 10px 0 rgba(255,153,51,0.16);
  transition: background 0.11s, box-shadow 0.12s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #E06B00;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 58px 0 0 28px;
}
.mobile-nav a {
  font-size: 1.1rem;
  color: #203040;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  background: transparent;
  border-radius: 14px;
  padding: 9px 16px;
  transition: background 0.12s, color 0.11s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: #FFC478;
  color: #E06B00;
}

@media (max-width: 1020px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (max-width: 1020px) {
  .cta-btn {
    margin-right: 54px; /* avoid burger overlay */
  }
}
@media (min-width: 1021px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}

/* Features List/Card Styles */
.features {
  background: var(--brand-accent);
  border-radius: var(--box-radius);
  box-shadow: var(--shadow);
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 22px 0 0;
}
.feature-grid li {
  background: #fff;
  border-radius: var(--box-radius);
  box-shadow: var(--shadow);
  padding: 22px 20px;
  flex: 1 1 280px;
  min-width: 230px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 1rem;
  color: #203040;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.13s;
}
.feature-grid li img {
  width: 40px;
  height: 40px;
  margin-right: 8px;
  border-radius: 14px;
}
.feature-grid li:hover {
  box-shadow: 0 6px 32px 0 rgba(255,153,51,0.09);
  transform: scale(1.025);
}

.core-values-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 18px 0 0;
}
.core-values-list li {
  background: #fff;
  border-radius: var(--box-radius);
  box-shadow: var(--shadow);
  padding: 22px 20px;
  flex: 1 1 210px;
  min-width: 180px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  color: #203040;
  margin-bottom: 20px;
  transition: box-shadow 0.15s, transform 0.11s;
}
.core-values-list li img {
  width: 34px;
  height: 34px;
}
.core-values-list li:hover {
  background: #FFF8F3;
  box-shadow: 0 4px 20px 0 rgba(255,153,51,0.11);
  transform: scale(1.02);
}

/* Service List */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.service-list li {
  background: #fff;
  border-radius: var(--box-radius);
  box-shadow: var(--shadow);
  padding: 24px 26px 18px 26px;
  flex: 1 1 230px;
  min-width: 210px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.13s;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-list h3 {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  font-size: 1.06rem;
  margin-bottom: 6px;
  color: #203040;
  font-family: 'Montserrat', Arial, sans-serif;
}
.service-list h3 span {
  font-size: 1rem;
  color: var(--warm-orange);
  font-weight: 700;
  background: #FFE6B3;
  padding: 2px 11px;
  border-radius: 12px;
  margin-left: 9px;
}
.service-list li:hover {
  box-shadow: 0 8px 36px rgba(255,153,51,0.13);
  transform: translateY(-2px) scale(1.021);
}

/* App Listing / Blog Listing Styles */
.app-list ul,
.blog-list ul,
.team ul {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
.app-list li, .blog-list li, .team li {
  background: #FFF;
  border-radius: var(--box-radius);
  box-shadow: var(--shadow);
  padding: 22px 16px 18px 22px;
  flex: 1 1 240px;
  min-width: 200px;
  margin-bottom: 20px;
  transition: box-shadow 0.13s, transform 0.13s;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.app-list li:hover, .blog-list li:hover, .team li:hover {
  box-shadow: 0 8px 36px rgba(255,153,51,0.11);
  transform: scale(1.018);
}
.category-filter {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.category-filter span {
  font-size: 1rem;
  font-weight: 500;
  color: #203040;
}
.category-filter a {
  color: #E06B00;
  background: #FFE6B3;
  border-radius: 16px;
  padding: 6px 14px;
  font-size: 0.97rem;
  margin-right: 8px;
  transition: background 0.11s, color 0.11s;
}
.category-filter a:hover, .category-filter a:focus {
  background: #FF9933;
  color: #fff;
}

/* Contact Section */
.contact-form ul {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-top: 10px;
  margin-bottom: 6px;
}
.contact-form ul li {
  display: flex;
  flex-direction: row;
  gap: 13px;
  align-items: center;
  font-size: 1rem;
  color: #203040;
}
.contact-form ul img {
  width: 26px;
  height: 26px;
}

/* CTA section */
.cta {
  background: linear-gradient(90deg, #FFE6B3 25%, #FFF8F3 85%);
  border-radius: 28px;
  box-shadow: 0 2px 16px 0 rgba(255,153,51,0.10);
  margin-bottom: 60px;
  padding: 44px 22px;
  text-align: left;
}
.cta h2 {
  color: #FF9933;
}

/* Footer */
footer {
  background: #FFF8F3;
  color: #203040;
  box-shadow: 0 -2px 18px 0 rgba(32,48,64,0.06);
  padding: 32px 0 24px 0;
  border-top-left-radius: 36px;
  border-top-right-radius: 36px;
}
footer .container {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 38px;
}
.footer-navigation {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-navigation a {
  color: #E06B00;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  border-radius: 12px;
  padding: 6px 9px;
  transition: background 0.11s, color 0.11s;
}
.footer-navigation a:hover, .footer-navigation a:focus {
  background: #FFF1D6;
  color: #203040;
}
.company-contacts ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.company-contacts li {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 1rem;
  color: #203040;
  font-weight: 400;
  margin-right: 0;
  margin-bottom: 2px;
}
.company-contacts img {
  width: 22px;
  height: 22px;
}
.footer-logo img {
  max-width: 70px;
  border-radius: 16px;
}


/* Privacy/Terms/Rodo Sections */
.privacy-policy, .cookies-policy, .rodo-policy, .terms {
  background: #fff;
  border-radius: var(--box-radius);
  box-shadow: var(--shadow);
  padding: 44px 32px;
  margin-bottom: 48px;
}
.privacy-policy ul, .cookies-policy ul, .rodo-policy ul, .terms ul {
  margin: 22px 0 0 24px;
  list-style: disc;
  color: #203040;
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
}


/* Cookie Consent Banner */
.cookie-consent {
  position: fixed;
  z-index: 200;
  left: 0; right: 0; bottom: 0;
  background: #fffbe7;
  padding: 28px 16px 18px 16px;
  border-top: 3px solid #FF9933;
  box-shadow: 0 -6px 48px 0 rgba(255,153,51,0.17);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 32px;
  font-size: 1.05rem;
  border-radius: 28px 28px 0 0;
  opacity: 1;
  transition: opacity 0.32s cubic-bezier(.19,1,.22,1), bottom 0.28s;
}
.cookie-consent.hide {
  opacity: 0;
  bottom: -170px;
  pointer-events: none;
}
.cookie-consent p {
  color: #333;
  margin-bottom: 0;
  max-width: 390px;
  font-size: 1rem;
}
.cookie-consent .cookie-btn {
  margin: 0 8px 0 0;
  font-size: 1rem;
  padding: 8px 22px;
  border-radius: 22px;
  background: #FF9933;
  color: #fff;
  border: none;
}
.cookie-consent .cookie-btn.settings {
  background: #E06B00;
}
.cookie-consent .cookie-btn.reject {
  background: #DADADA;
  color: #203040;
}
.cookie-consent .cookie-btn:hover, .cookie-consent .cookie-btn:focus {
  background: #E06B00;
  color: #fff;
}
.cookie-consent .cookie-btn.reject:hover, .cookie-consent .cookie-btn.reject:focus {
  background: #ffc478;
  color: #203040;
}
@media (max-width: 600px) {
  .cookie-consent {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 8px 16px 8px;
    font-size: 1rem;
  }
  .cookie-consent p {
    max-width: 100%;
  }
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  z-index: 300;
  inset: 0;
  background: rgba(32,48,64,0.32);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.22s cubic-bezier(.19,1,.22,1);
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 8px 48px 0 rgba(255,153,51,0.19);
  padding: 38px 28px 30px 30px;
  min-width: 320px;
  animation: modalShow 0.35s cubic-bezier(.18,1.46,.1,1) both;
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 98vw;
}
@keyframes modalShow {
  0% {transform: translateY(34px) scale(0.96); opacity:0;}
  100% { transform: none; opacity:1;}
}
.cookie-modal h2 {
  font-size: 1.27rem;
  color: #E06B00;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 12px;
  font-size: 1rem;
}
.cookie-modal label {
  font-size: 1rem;
  color: #203040;
  margin: 0 0 0 2px;
  cursor: pointer;
}
.cookie-modal input[type="checkbox"] {
  width: 22px;
  height: 22px;
  border-radius: 8px;
  accent-color: #FF9933;
  border: 2px solid #FFC478;
  margin-right: 6px;
  vertical-align: middle;
}
.cookie-modal input[disabled] {
  accent-color: #E06B00;
  opacity: 0.7;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  justify-content: flex-end;
}
.cookie-modal .cookie-btn {
  font-size: 0.97rem;
  padding: 8px 20px;
  border-radius: 22px;
  background: #FF9933;
  color: #fff;
  border: none;
  transition: background 0.11s;
}
.cookie-modal .cookie-btn.cancel {
  background: #DADADA;
  color: #203040;
}
.cookie-modal .cookie-btn:hover, .cookie-modal .cookie-btn:focus {
  background: #E06B00;
  color: #fff;
}

/* Responsive Layouts */
@media (max-width: 1020px) {
  header .container, footer .container {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  nav {
    gap: 17px;
  }
  .service-list, .feature-grid, .core-values-list, .card-container, .app-list ul, .blog-list ul, .team ul {
    flex-wrap: wrap;
    flex-direction: column;
    gap: 20px;
  }
  .card, .service-list li, .feature-grid li, .core-values-list li, .app-list li, .blog-list li, .team li {
    min-width: unset;
    width: 100%;
  }
  .footer-logo {
    margin-top: 18px;
  }
}
@media (max-width: 768px) {
  .section {
    padding: 22px 5px;
    margin-bottom: 36px;
  }
  .cta {
    border-radius: 18px;
    padding: 28px 5px;
  }
  .feature-grid, .core-values-list, .service-list, .card-container, .content-grid,
  .app-list ul, .blog-list ul, .team ul {
    flex-direction: column;
    gap: 18px;
  }
  .footer-logo {
    margin-top: 16px;
  }
  .privacy-policy, .cookies-policy, .rodo-policy, .terms {
    padding: 20px 9px;
    margin-bottom: 23px;
  }
  .content-wrapper {
    padding: 0;
  }
}
@media (max-width: 600px) {
  .container {
    padding: 0 5px;
  }
  footer {
    padding: 21px 0 13px 0;
    border-radius: 22px 22px 0 0;
  }
}

/* Visual Enhancements */
::-webkit-scrollbar {
  width: 9px;
  background: #FFF8F3;
}
::-webkit-scrollbar-thumb {
  background: #FFC478;
  border-radius: 6px;
}

/* Focus Styles */
:focus {
  outline: 2.5px solid #FF9933;
  outline-offset: 1px;
}

/* Miscellaneous */
hr {
  border: none;
  border-top: 1px solid #FFE6B3;
  margin: 30px 0;
}

/* Smooth transitions for all interactive elements */
button, a, .card, .category-filter a, .cookie-btn {
  transition: background 0.17s, color 0.16s, box-shadow 0.14s, transform 0.14s;
}

/* Hide visually but keep accessible for screen-readers */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}


/* --------------- END --------------- */
