/* CSS 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,
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 {
  font-size: 16px;
  scroll-behavior: smooth;
  background: #fff;
}

body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #f6f8fa;
  color: #19304c;
  line-height: 1.6;
  min-height: 100vh;
}

:root {
  --color-primary: #19304c;
  --color-secondary: #f6f8fa;
  --color-accent: #18a4a4;
  --color-accent-dark: #128181;
  --color-white: #ffffff;
  --color-gray: #e4e9ef;
  --color-dark: #112033;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-accent-dark);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: var(--color-primary);
}

h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
}
h1 { font-size: 2.5rem; line-height: 1.1; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.5rem; margin-bottom: 12px; }
h4 { font-size: 1.2rem; margin-bottom: 10px; }
h5 { font-size: 1rem; margin-bottom: 8px; }

p, ul, ol {
  font-size: 1rem;
  margin-bottom: 14px;
}

strong { font-weight: 700; }

ul, ol {
  padding-left: 24px;
  margin-bottom: 20px;
}
li {
  margin-bottom: 8px;
}

/* Container */
.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

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

/* HEADER & NAV */
header {
  background: var(--color-primary);
  box-shadow: 0 4px 24px rgba(20,48,76,0.10);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  position: relative;
}
.logo img {
  height: 40px;
  width: auto;
  margin-right: 16px;
  filter: drop-shadow(0 2px 8px rgba(24,164,164,0.17));
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.main-nav a {
  color: var(--color-secondary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 8px 6px;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--color-accent);
  color: var(--color-white);
}

/* Mobile Burger */
.mobile-menu-toggle {
  display: none;
  background: var(--color-accent);
  color: #fff;
  border: none;
  font-size: 2.2rem;
  padding: 8px 13px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.18s;
  box-shadow: 0 1px 10px rgba(24,164,164,0.06);
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--color-accent-dark);
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(25,48,76,0.95);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.66,-0.01,.29,1.11);
  z-index: 12000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 32px;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
}
.mobile-menu-close {
  background: none;
  color: var(--color-white);
  border: none;
  font-size: 2.2rem;
  align-self: flex-end;
  margin: 8px 32px 18px 0;
  cursor: pointer;
  transition: color 0.14s;
  z-index: 1;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--color-accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 40px 40px 0 40px;
  width: 100%;
}
.mobile-nav a {
  color: var(--color-accent);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  padding: 12px 0;
  border-radius: 6px;
  transition: background 0.18s, color 0.16s;
  background: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--color-white);
  background: rgba(24,164,164,0.16);
}

/* HERO */
.hero {
  background: linear-gradient(120deg, #fff 62%, #f6f8fa 100%);
  border-radius: 0 0 80px 0;
  box-shadow: 0 20px 60px -7px rgba(24,164,164,0.045);
  padding-top: 40px;
  padding-bottom: 60px;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 24px;
}
.hero h1 {
  font-family: 'Montserrat', cursive, sans-serif;
  font-size: 2.6rem;
  color: var(--color-primary);
  margin-bottom: 18px;
  letter-spacing: -1px;
}
.hero p {
  font-size: 1.16rem;
  color: var(--color-dark);
  margin-bottom: 18px;
}
.cta-btn {
  display: inline-block;
  background: var(--color-accent);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 14px 30px;
  border-radius: 32px;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  margin-right: 10px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(24,164,164,0.16);
  transition: background 0.17s, box-shadow 0.20s, transform 0.15s;
  position: relative;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--color-accent-dark);
  box-shadow: 0 8px 22px rgba(18,129,129,0.22);
  transform: translateY(-1.5px) scale(1.03);
}
.cta-link {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--color-accent-dark);
  font-size: 1rem;
  font-weight: 600;
  margin-left: 10px;
  text-decoration: underline;
  transition: color 0.16s;
}
.cta-link:hover, .cta-link:focus {
  color: var(--color-primary);
  text-shadow: 0px 2px 8px #e4e9ef;
}

/* SECTIONS */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 30px;
}
.features, .about-short, .services-highlight, .services, .features-benefits, .projects, .testimonials, .values, .technologies, .process, .blog-overview, .faq, .policy, .confirmation, .contact-info {
  margin-bottom: 60px;
  padding: 40px 0px;
}

/* FEATURES FLEX LAYOUT */
.features .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  list-style: none;
  margin-top: 12px;
}
.features .feature-grid li {
  background: #fff;
  color: #19304c;
  border-radius: 22px;
  box-shadow: 0 3px 32px rgba(24,164,164,0.09);
  padding: 28px 20px 22px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  flex: 1 1 220px;
  max-width: 320px;
  min-width: 240px;
  transition: box-shadow 0.18s, transform 0.14s;
  margin-bottom: 20px;
  position: relative;
  border-left: 5px solid var(--color-accent);
}
.features .feature-grid li:hover, .features .feature-grid li:focus {
  box-shadow: 0 6px 38px rgba(24,164,164,0.19), 0 2px 7px rgba(25,48,76,0.11);
  transform: translateY(-3px) scale(1.025);
}
.features .feature-grid h3 {
  font-size: 1.15rem;
  color: var(--color-primary);
}
.features .feature-grid img {
  height: 34px;
  margin-bottom: 7px;
}

/* ABOUT SHORT */
.about-short ul {
  margin-top: 18px;
  list-style: disc inside;
}
.about-short li {
  font-family: 'Montserrat',Arial,sans-serif;
  color: var(--color-accent-dark);
  margin-bottom: 8px;
  font-weight: 500;
}

/* SERVICES HIGHLIGHT CARDS */
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 10px;
}
.service-card {
  flex: 1 1 240px;
  max-width: 340px;
  min-width: 220px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 36px -7px rgba(18,129,129,0.13);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 28px 22px 22px 22px;
  margin-bottom: 20px;
  transition: box-shadow 0.17s, transform 0.14s;
  border-top: 4px solid var(--color-accent);
  position: relative;
}
.service-card:hover, .service-card:focus {
  box-shadow: 0 9px 50px -8px rgba(24,164,164,0.16), 0 2px 8px rgba(25,48,76,0.08);
  transform: translateY(-3px) scale(1.025);
}
.service-card img {
  height: 36px;
  margin-bottom: 11px;
}
.service-card h3 {
  font-family: 'Montserrat',Arial,sans-serif;
  color: var(--color-accent-dark);
  font-size: 1.2rem;
  font-weight: 700;
}

/* SERVICES OFFER (oferta.html) */
.services .service-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  list-style: none;
  margin-top: 12px;
}
.services .service-list li {
  background: #fff;
  border-radius: 19px;
  box-shadow: 0 2px 18px rgba(24,164,164,0.10);
  padding: 24px 22px 17px 22px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
  border-left: 5px solid var(--color-primary);
}
.services .service-list h2 {
  font-size: 1.21rem;
  margin-bottom: 7px;
}
.services .service-list strong {
  color: var(--color-accent);
  font-weight: 800;
  font-size: 1.06rem;
  margin-top: 12px;
}

.features-benefits ul {
  margin-bottom: 20px;
  margin-top: 10px;
  padding-left: 24px;
}
.features-benefits ul li {
  color: var(--color-accent-dark);
  font-weight: 500;
  margin-bottom: 8px;
}
.features-benefits .cta-btn {
  margin-top: 14px;
}

.features-benefits .text-section {
  margin-top: 10px;
}

/* PROJECTS */
.projects .project-list {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  list-style: none;
}
.projects .project-list li {
  background: #fff;
  border-radius: 19px;
  box-shadow: 0 2px 18px rgba(24,164,164,0.11);
  padding: 22px 20px 17px 20px;
  margin-bottom: 20px;
  position: relative;
  border-left: 5px solid var(--color-accent);
}
.projects .project-list h2 {
  color: var(--color-primary);
  font-weight: 800;
  font-size: 1.18rem;
  margin-bottom: 7px;
}

/* TESTIMONIALS */
.testimonials {
  background: var(--color-secondary);
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 19px;
  box-shadow: 0 3px 22px rgba(24,164,164,0.16);
  margin-bottom: 20px;
  margin-top: 18px;
  flex-direction: column;
  align-items: flex-start;
  max-width: 570px;
  border-left: 4px solid var(--color-primary);
}
.testimonial-card blockquote {
  color: var(--color-primary);
  font-size: 1.13rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 10px;
  font-style: italic;
}
.testimonial-author {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: var(--color-accent-dark);
  font-weight: 700;
}

/* TECHNOLOGIES */
.technologies ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  list-style: none;
}
.technologies ul li {

  min-width: 200px;
  background: #fff;
  border-radius: 19px;
  box-shadow: 0 2px 18px rgba(24,164,164,0.11);

  gap: 16px;
  padding: 17px 17px 17px 17px;
  margin-bottom: 20px;
}
.technologies ul img {
  height: 32px;
  margin-right: 8px;
}
.technologies ul strong {
  font-weight: 700;
  color: var(--color-primary);
  margin-right: 7px;
}

.process ol {
  margin-left: 24px;
  margin-bottom: 24px;
  margin-top: 10px;
}
.process ol li {
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 10px;
  color: var(--color-accent-dark);
  font-size: 1.08rem;
}

/* BLOG */
.article-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
  justify-content: flex-start;
}
.article-list article {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 18px rgba(24,164,164,0.13);
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 230px;
  flex: 1 1 33%;
  transition: box-shadow 0.17s, transform 0.13s;
  margin-bottom: 20px;
  position: relative;
}
.article-list article:hover, .article-list article:focus {
  box-shadow: 0 7px 36px rgba(18,129,129,0.25), 0 2px 8px rgba(25,48,76,0.12);
  transform: translateY(-2px) scale(1.02);
}
.article-list h2 {
  font-size: 1.19rem;
  color: var(--color-primary);
  font-family: 'Montserrat', Arial, sans-serif;
}
.summary {
  color: #333f52;
  font-size: 1rem;
}
.category {
  display: inline-block;
  padding: 5px 16px;
  background: var(--color-accent);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 14px;
  font-size: 0.9rem;
  font-weight: 600;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}
.faq-item {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 18px rgba(24,164,164,0.12);
  padding: 19px 18px;
  margin-bottom: 20px;
  position: relative;
  border-left: 4px solid var(--color-accent);
}
.faq-item h2 {
  font-size: 1.02rem;
  color: var(--color-primary);
}
.faq-item p {
  font-size: 0.96rem;
  margin-top: 6px;
  color: #293b54;
}

/* POLICY, CONFIRMATION, ETC. */
.policy, .confirmation, .contact-info {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 16px rgba(24,164,164,0.08);
}
.text-section {
  margin-bottom: 14px;
}
.text-section img{
  max-width: 80px;
}
.text-section p {
  margin-bottom: 8px;
}

/* FOOTER */
footer {
  background: var(--color-primary);
  color: #f6f8fa;
  padding: 34px 0 14px 0;
  border-radius: 60px 0 0 0;
  box-shadow: 0 -6px 38px rgba(24,164,164,0.06);
  font-size: 1rem;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.footer-logo img {
  height: 38px;
  margin-bottom: 5px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 8px;
}
.footer-nav a {
  color: var(--color-accent);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--color-white);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.97rem;
  opacity: 0.98;
}
.footer-contact img {
  height: 15px;
  width: 15px;
  margin-right: 7px;
  vertical-align: middle;
  opacity: 0.9;
}

/* COOKIE CONSENT BANNER STYLES */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fff;
  color: var(--color-primary);
  box-shadow: 0 -2px 18px rgba(24,164,164,0.11);
  padding: 20px 16px;
  z-index: 9000;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: cookieBannerFadeIn 0.66s cubic-bezier(.42,0,.45,1.14);
  gap: 24px;
}
@keyframes cookieBannerFadeIn {
  from { transform: translateY(120px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-consent-banner p {
  max-width: 900px;
  text-align: center;
}
.cookie-banner-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}
.cookie-btn {
  background: var(--color-accent);
  color: #fff;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 22px;
  margin: 0 1.8px;
  cursor: pointer;
  transition: background 0.15s, transform 0.16s;
}
.cookie-btn.settings {
  background: var(--color-primary);
}
.cookie-btn.reject {
  background: #e64949;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--color-accent-dark);
  transform: scale(1.06);
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #101e31;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #b41f1f;
}

/* COOKIE MODAL */
.cookie-modal-backdrop {
  display: none;
  position: fixed;
  z-index: 9900;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(25,48,76,0.55);
  animation: cookieModalBackdropFade 0.35s;
}
@keyframes cookieModalBackdropFade {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal-backdrop.open {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-modal {
  background: #fff;
  color: var(--color-primary);
  border-radius: 22px;
  box-shadow: 0 7px 44px -6px rgba(24,164,164,0.21);
  padding: 40px 28px 30px 28px;
  min-width: 90vw;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: cookieModalFadeIn 0.32s cubic-bezier(.48,.5,.44,1.3);
  position: relative;
}
@keyframes cookieModalFadeIn {
  from { transform: translateY(60px) scale(0.92); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.3rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 10px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 10px;
}
.cookie-category {
  background: #f6f8fa;
  border-radius: 12px;
  padding: 11px 10px 9px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
}
.cookie-category label {
  cursor: pointer;
  user-select: none;
}
.cookie-category input[type=checkbox] {
  accent-color: var(--color-accent);
  width: 20px;
  height: 20px;
  margin-left: 10px;
}
.cookie-category.essential {
  background: #e4e9ef;
  color: #6b7d9a;
  font-size: 0.98rem;
  font-weight: 500;
}
.cookie-category.essential input[type=checkbox] {
  accent-color: #999;
}
.cookie-modal .cookie-btn {
  margin-top: 18px;
}
.close-cookie-modal {
  position: absolute;
  right: 18px;
  top: 14px;
  background: none;
  color: var(--color-primary);
  border: none;
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.15s;
}
.close-cookie-modal:hover, .close-cookie-modal:focus {
  color: var(--color-accent);
}

/* SPACING, CARD, AND FLEX UTILITY CLASSES (MANDATORY REQUIREMENTS) */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* FORMS (if needed in the future) */
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  border: 1.5px solid var(--color-accent);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 1rem;
  background: #fff;
  margin-bottom: 16px;
  transition: border 0.17s, box-shadow 0.13s;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid var(--color-primary);
  outline: none;
  box-shadow: 0 2px 7px rgba(24,164,164,0.07);
}

button {
  font-family: 'Montserrat',Arial,sans-serif;
  font-weight: 700;
  background: var(--color-accent);
  color: #fff;
  border: none;
  border-radius: 22px;
  padding: 12px 24px;
  font-size: 1.09rem;
  cursor: pointer;
  transition: background 0.16s, box-shadow 0.13s, transform 0.13s;
}
button:hover, button:focus {
  background: var(--color-accent-dark);
  box-shadow: 0 7px 18px rgba(18,129,129,0.13);
  transform: scale(1.03);
}

/* CUSTOM SCROLLBAR */
::-webkit-scrollbar { width: 10px; background: #e4e9ef; }
::-webkit-scrollbar-thumb { background: var(--color-accent); border-radius: 10px; }

/* ANIMATIONS & MICRO-INTERACTIONS */
.card,
.service-card,
.article-list article,
.features .feature-grid li,
.projects .project-list li,
.testimonial-card,
.faq-item,
.technologies ul li{
  transition: box-shadow 0.16s, transform 0.15s;
}
.card:hover,
.service-card:hover,
.features .feature-grid li:hover,
.projects .project-list li:hover,
.testimonial-card:hover,
.faq-item:hover,
.technologies ul li:hover, .article-list article:hover {
  box-shadow: 0 10px 48px -10px rgba(24,164,164,0.21), 0 2px 9px rgba(25,48,76,0.11);
  transform: translateY(-1px) scale(1.016);
}

/* ARTISTIC ACCENTS (creative/artistic styling) */
.section, .card, .service-card, .features .feature-grid li, .technologies ul li, .article-list article, .testimonial-card, .faq-item {
  border-radius: 20px 18px 24px 22px;
  box-shadow: 0 3px 26px -3px rgba(18,129,129,0.08);
  border-bottom: 3px solid var(--color-accent);
}
.hero {
  border-bottom: 6px solid var(--color-accent);
}

h1, h2 {
  text-shadow: 1px 3px 11px #e4e9ef, 0 0px 1px #fff;
}

/* ARTISTIC UNIQUE ELEMENTS */
.service-card::after, .features .feature-grid li::after {
  content: '';
  position: absolute;
  top: -22px;
  right: -22px;
  width: 48px;
  height: 48px;
  background: rgba(24,164,164,0.13);
  border-radius: 52% 73% 67% 54% / 64% 71% 56% 59%;
  z-index: 0;
  filter: blur(3px);
}

@media (max-width: 992px) {
  .container { max-width: 95vw; padding: 0 15px; }
  .main-nav { gap: 16px; }
  .hero h1 { font-size: 2rem; }
  .features .feature-grid,
  .service-cards,
  .technologies ul,
  .article-list {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .footer-nav { gap: 10px; }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  header .container {
    height: 56px;
  }
  h1 { font-size: 1.65rem; }
  h2 { font-size: 1.35rem; }
  .hero {
    padding-top: 24px;
    padding-bottom: 34px;
    border-radius: 0 0 34px 0;
  }
  .cta-btn, .cta-link { margin-top: 8px; }
  .section, .about-short, .services-highlight, .services, .features-benefits, .projects, .testimonials, .values, .technologies, .process, .blog-overview, .faq, .policy, .confirmation, .contact-info {
    padding: 24px 6px;
    margin-bottom: 36px;
    border-radius: 14px;
  }
  .service-card,
  .features .feature-grid li,
  .technologies ul li,
  .article-list article {
    min-width: 0;
    flex: 1 1 100%;
  }
  .content-wrapper, .footer-contact { gap: 14px; }
  .text-image-section { flex-direction: column; gap: 18px; }
  .service-cards, .features .feature-grid { flex-direction: column; gap: 20px; }
  .footer-logo img { height: 29px; }
  .footer-contact span { font-size: 0.89rem; }
  .cookie-modal {
    min-width: 90vw;
    padding: 25px 9px 16px 9px;
    font-size: 0.99rem;
  }
  .mobile-menu {
    padding-top: 10px;
  }
  .mobile-nav { padding: 22px 16px 0 16px; }
}

@media (max-width: 520px) {
  .hero h1 { font-size: 1.18rem; }
  h2 { font-size: 1.02rem; }
}
