/* 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;
  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: #F9FAFF;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #24324e;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a {
  color: #3A6C82;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F2C879;
}
img {
  max-width: 100%;
  display: block;
}
ul, ol {
  margin-left: 20px;
  margin-bottom: 16px;
}
*:focus {
  outline: 2px dashed #F2C879;
  outline-offset: 2px;
}

/* BRAND COLORS AS CSS VARIABLES */
:root {
  --primary: #1B2845;
  --secondary: #3A6C82;
  --accent: #F2C879;
  --gray100: #F9FAFF;
  --gray200: #F4F7FA;
  --gray300: #DFE7FA;
  --error: #EF476F;
}

/* TYPOGRAPHY */
h1, h2, h3, h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.15;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.25rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--secondary);
}
p, li, address, span {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: #24324e;
}
p {
  margin-bottom: 16px;
}
strong {
  font-weight: bold;
}
body { font-size: 16px; }

/* CONTAINER */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* HEADER NAVIGATION */
header {
  background: #fff;
  box-shadow: 0 4px 20px 0 rgba(59,120,212,0.04);
  width: 100%;
  position: sticky;
  top: 0; z-index: 50;
  transition: box-shadow 0.3s;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  padding: 8px 16px 8px 16px;
}
.logo-link img {
  height: 46px;
  width: auto;
  display: block;
  margin-right: 18px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 26px;
  align-items: center;
  flex: 1 1 0;
  margin-left: 24px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: var(--primary);
  position: relative;
}
.main-nav a::after {
  content: '';
  display: block;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width .3s;
  margin-top: 4px;
}
.main-nav a:hover::after, .main-nav a:focus::after {
  width: 100%;
}

/* CTA BUTTON PRIMARY */
.cta-primary {
  background: var(--accent);
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 10px 32px;
  border-radius: 24px 8px 24px 8px;
  box-shadow: 0 2px 12px 0 rgba(242,200,121,0.14);
  border: none;
  margin-left: 22px;
  transition: background 0.16s, color 0.18s, transform 0.18s;
  cursor: pointer;
  position: relative;
  z-index: 2;
  display: inline-block;
  text-align: center;
}
.cta-primary:hover, .cta-primary:focus {
  background: var(--primary);
  color: var(--accent);
  box-shadow: 0 4px 18px 0 rgba(59,120,212,0.14);
  transform: translateY(-2px) scale(1.04);
}

/* MOBILE BURGER MENU */
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: var(--secondary);
  margin-left: 14px;
  z-index: 105;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  width: 84vw;
  max-width: 360px;
  height: 100%;
  background: #fff;
  box-shadow: 4px 0 24px 0 rgba(27,40,69,0.18);
  transform: translateX(-120%);
  transition: transform 0.36s cubic-bezier(.38,1.16,.62,1);
  z-index: 110;
  padding: 28px 22px 20px 26px;
  visibility: hidden;
}
.mobile-menu.open {
  transform: translateX(0%);
  visibility: visible;
}
.mobile-menu-close {
  font-size: 2.1rem;
  color: var(--secondary);
  background: none;
  border: none;
  position: relative;
  align-self: flex-end;
  cursor: pointer;
  margin-bottom: 18px;
  padding: 6px 8px;
  border-radius: 50%;
  transition: background 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--gray300);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
  margin-top: 14px;
}
.mobile-nav a {
  font-size: 1.15rem;
  padding: 10px 2px;
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  transition: color 0.17s, background 0.14s;
  border-radius: 8px;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--accent);
  color: var(--primary);
}

/* FADE SCREEN WHEN MENU OPEN */
body.menu-open {
  overflow: hidden;
}
.mobile-menu.open::before {
  content: '';
  position: fixed;
  left: 100%;
  top: 0; bottom: 0; right: 0;
  background: rgba(27,40,69,0.15);
  z-index: -1;
  pointer-events: auto;
}

@media (max-width: 1060px) {
  header .container {
    flex-wrap: wrap;
  }
  .main-nav { gap: 18px; }
  .cta-primary { margin-left: 10px; }
}
@media (max-width: 900px) {
  .main-nav { display: none; }
  .cta-primary { margin-left: 8px; }
  .mobile-menu-toggle { display: block; }
}
@media (max-width: 540px) {
  header .container { padding: 3px 3vw; }
}

/* HERO SECTIONS */
.hero-section {
  background: linear-gradient(100deg, #F2C879 0%, #fff 65%, #DFE7FA 100%);
  border-bottom-left-radius: 44px;
  border-bottom-right-radius: 44px;
  box-shadow: 0px 8px 40px 0 rgba(59,108,130,0.05);
  margin-bottom: 60px;
  padding: 40px 0 50px 0;
}
.hero-section .container {
  align-items: center;
}
.hero-section .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-start;
  text-align: left;
  padding: 0 16px;
}
.hero-section h1 {
  color: var(--primary);
  font-size: 2.5rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  text-shadow: 1px 2px 0 #fff,0 6px 36px #F2C87922;
  line-height: 1.1;
}
.hero-section p {
  color: #283457;
  font-size: 1.15rem;
  max-width: 600px; 
}
.hero-section .cta-primary {
  font-size: 1.09rem;
  margin-top: 12px;
}

/* MAIN SPACING */
main {
  margin-top: 0;
  margin-bottom: 54px;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  min-width: 0;
}
section:last-child {
  margin-bottom: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  min-width: 0;
}
.text-section {
  max-width: 700px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* CARDS AND FLEX GRIDS */
.card-container, .feature-grid, .service-list, .industry-list, .case-list, .post-list, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 0;
  justify-content: flex-start;
}
.feature-grid, .service-list, .industry-list, .case-list, .post-list {
  width: 100%;
  margin-top: 20px;
}

.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 20px 8px 20px 8px;
  box-shadow: 0 3px 20px 0 rgba(58,108,130,0.08);
  padding: 26px 22px;
  min-width: 260px;
  min-height: 110px;
  transition: box-shadow .22s, transform .20s;
  overflow: hidden;
}
.card:hover, .card:focus {
  box-shadow: 0 6px 30px 0 rgba(27,40,69,0.20);
  transform: translateY(-4px) scale(1.03);
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

/* Feature & Icon Items */
.feature-item, .industry-item, .stat-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 20px 8px 20px 8px;
  box-shadow: 0 2px 14px 0 rgba(27,40,69,0.07);
  padding: 24px 18px;
  min-width: 220px;
  transition: box-shadow .22s, transform .18s;
  margin-bottom: 0;
}
.feature-item img, .industry-item img, .stat-item img {
  height: 42px;
  width: 42px;
  margin-bottom: 8px;
  filter: drop-shadow(0 2px 10px #F2C87944);
  transition: transform 0.18s;
}
.feature-item:hover img, .industry-item:hover img {
  transform: scale(1.12) rotate(-9deg);
}
.feature-item:hover, .industry-item:hover {
  box-shadow: 0 7px 28px 0 rgba(58, 108, 130, 0.16);
  transform: translateY(-4px) scale(1.03) rotate(-2deg);
}
.feature-item h3, .industry-item h3, .service-list h3 {
  color: var(--primary);
  font-size: 1.12rem;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* Icon List for About values */
.icon-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 0;
}
.icon-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  background: var(--gray200);
  border-radius: 12px;
  padding: 10px 18px;
  margin-bottom: 0;
  font-family: 'Montserrat', Arial, sans-serif;
}
.icon-list img {
  height: 28px;
  width: 28px;
  margin-right: 4px;
}

/* Stat grid */
.stat-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 0;
  justify-content: flex-start;
}
.stat-item {
  display: flex; flex-direction: column;
  align-items: flex-start;
  background: var(--gray200);
  border-radius: 18px 8px 18px 8px;
  padding: 20px 20px 16px 20px;
  min-width: 154px; min-height: 76px;
  box-shadow: 0 2px 12px 0 rgba(58, 108, 130, 0.08);
}
.stat-item strong {
  font-size: 1.6rem;
  color: var(--secondary);
  font-weight: 900;
  font-family: 'Montserrat', Arial, sans-serif;
}
.stat-item span {
  color: #24324e;
  font-size: 1rem;
  margin-top: 5px;
}

/* Case & Blog Lists */
.case-list, .post-list {
  gap: 24px;
  margin-bottom: 0;
  flex-wrap: wrap;
}
.case-item, .post-item {
  background: #fff;
  border-radius: 17px 7px 17px 7px;
  box-shadow: 0 3px 14px 0 rgba(27,40,69,0.05);
  padding: 22px 22px;
  min-width: 240px;
  flex: 1 1 320px;
  margin-bottom: 0;
  transition: box-shadow .22s, transform .20s;
}
.case-item:hover, .post-item:hover {
  box-shadow: 0 8px 26px 0 rgba(58, 108, 130, 0.15);
  transform: translateY(-3px) scale(1.04) rotate(-2deg);
}
.case-item strong, .post-item strong {
  color: var(--secondary);
  display: block;
  margin-top: 8px;
  font-weight: 700;
}

/* Blog Featured Post */
.featured-post {
  background: var(--accent);
  color: var(--primary);
  border-radius: 16px;
  padding: 20px 18px;
  margin-top: 28px;
  box-shadow: 0 3px 18px 0 rgba(242,200,121,0.13);
  font-family: 'Montserrat', Arial, sans-serif;
}
.featured-post h4 {
  color: var(--primary);
  font-size: 1.18rem;
  margin-bottom: 6px;
}

/* Category List */
.category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.category-list li {
  display: inline-flex;
  background: var(--gray200);
  border-radius: 14px 4px 14px 4px;
  padding: 10px 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--secondary);
  margin-bottom: 0;
  font-size: 1rem;
  box-shadow: 0 1.5px 7px 0 rgba(58,108,130,0.07);
}

/* FAQ LIST */
.faq-list {
  display: flex; flex-direction: column;
  gap: 20px;
}
.faq-item {
  background: var(--gray200);
  border-radius: 13px 5px 13px 5px;
  padding: 18px 16px;
  box-shadow: 0 2px 8px rgba(58, 108, 130, 0.06);
  margin-bottom: 0;
  transition: box-shadow .18s, background .14s;
}
.faq-item strong {
  color: var(--primary);
  margin-bottom: 4px;
  display: block;
}
.faq-item:hover, .faq-item:focus-within {
  background: #F2C87930;
  box-shadow: 0 4px 18px 0 rgba(58,108,130,0.13);
}

/* CTA-SECTION */
.cta-section {
  background: linear-gradient(97deg, #F2C879 0%, #fff 70%, #DFE7FA 100%);
  border-radius: 24px;
  box-shadow: 0 2px 28px 0 rgba(242,200,121,0.08);
  margin-bottom: 40px;
  padding: 34px 0;
}
.cta-section .container,
.cta-section .content-wrapper {
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.cta-section h2 {
  font-size: 2rem;
  text-align: center;
  color: var(--primary);
  margin-bottom: 10px;
}
.cta-section p {
  font-size: 1.1rem;
  text-align: center;
}
.cta-section .cta-primary {
  margin-top: 8px;
}

/* Contact Short Row */
.contact-short {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  margin: 18px 0 16px 0;
}
.contact-short img {
  width: 26px;
  height: 26px;
  margin: 0 2px;
}

/* Testimonial Cards */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  color: #131e38;
  border-radius: 17px 7px 17px 7px;
  box-shadow: 0 3px 22px 0 rgba(58, 108, 130, 0.11);
  padding: 20px;
  margin-bottom: 18px;
  transition: box-shadow .19s, transform .16s;
}
.testimonial-card p {
  color: #2a2a2a;
  font-size: 1.03rem;
  margin-right: 12px;
}
.testimonial-card strong {
  color: var(--secondary);
  font-size: 1rem;
}
.testimonial-card:hover {
  box-shadow: 0 7px 30px 0 rgba(242,200,121,0.16);
  transform: scale(1.035) rotate(-1deg);
}

/* CASE SNIPPETS (Industries) */
.case-snippets {
  margin-top: 16px;
  background: var(--gray200);
  border-radius: 14px;
  padding: 16px 20px;
  box-shadow: 0 1.5px 9px 0 rgba(242,200,121,0.07);
}
.case-snippets h4 { margin-bottom: 8px; }

/* MAP (contact page) */
.map {
  background: var(--gray200);
  font-size: 1rem;
  color: var(--secondary);
  border-radius: 12px;
  padding: 18px 14px;
  margin-top: 16px;
  box-shadow: 0 1.5px 7px 0 rgba(58,108,130,0.08);
}

/* FOOTER */
footer {
  background: #fff;
  border-top: 3px solid var(--accent);
  box-shadow: 0 -2px 16px 0 rgba(58, 108, 130, 0.04);
  padding: 48px 0 24px 0;
  font-size: 1rem;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 22px;
  margin-bottom: 16px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
}
.footer-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--primary);
  opacity: 0.85;
  transition: color 0.18s, opacity 0.2s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--accent);
  opacity: 1;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
  color: #1B2845;
  font-size: 1rem;
  justify-content: flex-start;
}
.footer-contact img {
  width: 120px;
  margin-bottom: 6px;
}
.footer-contact address {
  font-style: normal;
  color: var(--secondary);
  font-size: 1rem;
}

/* ---- COOKIE CONSENT BANNER ---- */
.cookie-banner {
  position: fixed;
  left: 0; bottom: 0;
  width: 100vw;
  background: #fffcec;
  color: #343232;
  box-shadow: 0 -2px 22px 0 rgba(242,200,121,0.19);
  border-top: 4px solid var(--accent);
  padding: 18px 24px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  z-index: 9999;
  gap: 18px;
  transition: transform 0.25s;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
}
.cookie-banner.hide {
  transform: translateY(140%);
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 16px 2px 16px 2px;
  padding: 8px 20px;
  border: none;
  margin: 0 2px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
}
.cookie-banner .accept {
  background: var(--accent);
  color: var(--primary);
  font-weight: 700;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: var(--primary);
  color: var(--accent);
}
.cookie-banner .reject {
  background: #fff;
  color: var(--primary);
  border: 2px solid var(--accent);
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: var(--error);
  color: #fff;
  border-color: var(--error);
}
.cookie-banner .settings {
  background: var(--secondary);
  color: #fff;
  font-weight: 600;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: var(--accent);
  color: var(--primary);
}

/* COOKIE PREFERENCES MODAL POPUP */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  z-index: 10000;
  background: rgba(27,40,69,0.40);
  display: flex;
  justify-content: center;
  align-items: center;
}
.cookie-modal .modal-inner {
  background: #fff;
  border-radius: 20px 8px 20px 8px;
  box-shadow: 0 6px 44px 0 rgba(27,40,69,0.25);
  padding: 36px 32px 28px 32px;
  max-width: 430px;
  min-width: 250px;
  width: 94vw;
  margin: 12px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal h3 {
  color: var(--primary);
  font-size: 1.24rem;
  margin-bottom: 10px;
}
.cookie-modal .cookie-category-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.cookie-modal .category-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 1rem;
  padding: 10px 0;
}
.cookie-modal .category-row.essential input[type=checkbox] {
  display: none;
}
.cookie-modal .category-row.essential label:after {
  content: '✔';
  color: var(--accent);
  font-size: 1.2em;
  margin-left: 7px;
}
.cookie-modal .modal-close {
  position: absolute;
  right: 21px;
  top: 19px;
  font-size: 1.5rem;
  background: none;
  border: none;
  color: var(--secondary);
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.18s;
}
.cookie-modal .modal-close:hover, .cookie-modal .modal-close:focus {
  background: var(--gray300);
}
.cookie-modal .cookie-actions {
  margin-top: 10px;
}
.cookie-modal .cookie-actions button {
  min-width: 130px;
}

/* SWITCH TOGGLE */
.cookie-switch {
  position: relative;
  width: 40px;
  height: 22px;
  display: inline-block;
}
.cookie-switch input[type="checkbox"] {
  opacity: 0;
  width: 0; height: 0;
}
.cookie-slider {
  position: absolute; cursor: pointer;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background: var(--gray300);
  border-radius: 32px;
  transition: background 0.19s;
}
.cookie-switch input:checked + .cookie-slider {
  background: var(--accent);
}
.cookie-slider:before {
  position: absolute;
  content: '';
  height: 16px; width: 16px;
  left: 3px; bottom: 3px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 6px rgba(58,108,130,0.11);
  transition: transform 0.2s;
}
.cookie-switch input:checked + .cookie-slider:before {
  transform: translateX(17px);
}

/* BUTTON ANIMATIONS */
button, .cta-primary, .cookie-banner button {
  transition: box-shadow 0.18s, background 0.18s, color 0.18s, transform 0.14s;
}
button:active, .cta-primary:active {
  transform: scale(0.97);
}

/* PLAYFUL MICRO-ANIMATION KEYFRAMES */
@keyframes pop {
  0% { transform: scale(1); }
  50% { transform: scale(1.08) rotate(-2deg); }
  100% { transform: scale(1); }
}
@keyframes wiggle {
  0% { transform: rotate(0); }
  10% { transform: rotate(-3deg); }
  20% { transform: rotate(5deg); }
  40% { transform: rotate(-1deg); }
  60% { transform: rotate(2deg); }
  80% { transform: rotate(-2deg); }
  100% { transform: rotate(0); }
}
.cta-primary:hover, .cta-primary:focus {
  animation: pop 0.33s linear;
}
.feature-item:hover img, .industry-item:hover img { animation: wiggle 0.33s linear; }

/* RESPONSIVE DESIGN */
@media (max-width: 1020px) {
  .feature-grid, .service-list, .industry-list, .case-list, .post-list, .stat-grid {
    gap: 12px;
  }
}
@media (max-width: 830px) {
  .container {
    padding: 0 7px;
  }
  section, .section { padding: 32px 8px; }
  .footer-contact img { width: 96px; }
}
@media (max-width: 700px) {
  .feature-grid, .service-list, .industry-list, .case-list, .post-list {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card, .contact-short { flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer-nav { flex-direction: column; gap: 9px; }
}
@media (max-width: 650px) {
  h1 {font-size: 2rem;}
  h2 {font-size: 1.35rem;}
  .hero-section .container { padding: 0 3vw; }
  .case-item, .post-item { min-width: 120px; padding: 15px 8px; }
}
@media (max-width: 480px) {
  .container { padding: 0 2vw; }
  .hero-section {
    border-radius: 28px;
    padding-bottom: 32px;
  }
  .section, section { padding: 24px 1vw; }
  .cta-section { padding: 16px 0; border-radius: 16px; }
  .footer-contact img { width: 72px; }
}
@media (max-width: 430px) {
  .cookie-banner { flex-direction: column; align-items: flex-start; gap: 10px; }
  .cookie-banner .cookie-actions { flex-direction: column; gap: 11px; width: 100%; }
}
@media (max-width: 380px) {
  .cookie-modal .modal-inner { padding: 12px 4vw 10px 4vw; }
}

/* FLEXBOX UTILITY CLASSES (MANDATORY) */
.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; }

@media (max-width: 768px) {
  .text-image-section { flex-direction: column; align-items: flex-start; gap: 18px; }
}

/* ENSURE NO OVERLAPPING - SPACING RULES */
.card, .feature-item, .industry-item, .case-item, .post-item, .stat-item, .testimonial-card {
  margin-bottom: 20px;
}
section, .section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container, .feature-grid, .service-list, .industry-list, .case-list, .content-grid {
  gap: 24px;
}

/* CUSTOM FUN, MODERN FONT LOADING FOR HEADINGS */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Open+Sans:wght@400;600;700&display=swap');
