/* 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 { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  background: #f5fcff;
  color: #244768;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #36A77C;
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:focus {
  color: #244768;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: #244768;
  letter-spacing: 0.03em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  line-height: 1.1;
  text-shadow: 2px 3px 0 #36A77C1a, 0px 2px 20px #36A77C12;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  line-height: 1.15;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
strong {
  font-weight: 700;
  color: #36A77C;
}
p, ul, ol {
  margin-bottom: 16px;
}
ul, ol {
  padding-left: 24px;
}

/* ACCENT COLORS and UNIQUE PALETTE */
:root {
  --primary: #244768;
  --secondary: #36A77C;
  --accent: #F3F7F9;
  --white: #fff;
  --black: #132031;
  --info: #ffad05;
  --danger: #DD4669;
}

/* Container & Section Patterns */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.section,
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 768px) {
  .section,
  section {
    margin-bottom: 32px;
    padding: 24px 8px;
  }
  .container {
    padding-left: 12px;
    padding-right: 12px;
  }
}

/* FLEXBOX LAYOUTS */
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--accent);
  border-radius: 17px;
  box-shadow: 0 4px 24px 0 #1320310b, 0 1.5px 3px #2447681c;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: box-shadow .18s, transform .18s;
}
.card:hover {
  box-shadow: 0 10px 32px 0 #24476833;
  transform: translateY(-6px) scale(1.022);
  z-index: 1;
}
.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;
  background: #fff;
  border-radius: 17px;
  box-shadow: 0 4px 18px 0 #24476821;
  margin-bottom: 20px;
  border-left: 6px solid var(--secondary);
  transition: box-shadow .22s, border-color .17s;
  position: relative;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px #24476829;
  border-left: 6px solid #ffad05;
}
.testimonial-card p {
  color: #222;
}
.testimonial-card .author {
  font-size: 1rem;
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  margin-left: 12px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* HERO & ACCENT BG */
.hero {
  background: linear-gradient(93deg, #36A77C 0%, #244768 100%);
  color: #fff;
  position: relative;
  border-radius: 0 0 52px 0/0 0 90px 0;
  min-height: 260px;
  display: flex;
  align-items: center;
  box-shadow: 0 7px 32px #24476818;
}
.hero h1,
.hero h2,
.hero p {
  color: #fff;
}
.hero .btn-primary {
  margin-top: 18px;
}

/* ACCENT BG (call-to-action) */
.accent-bg {
  background: var(--accent);
  border-radius: 17px;
  box-shadow: 0 2px 18px 0 #24476815;
}

/* MAIN NAVIGATION */
header {
  background: #fff;
  box-shadow: 0 4px 18px 0 #24476808;
  position: sticky;
  top: 0;
  z-index: 999;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  padding: 14px 0 10px 0;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #244768;
  border-radius: 22px;
  padding: 7px 17px;
  transition: background .14s, color .14s;
}
.main-nav a:not(.btn-primary):hover,
.main-nav a:not(.btn-primary):focus {
  background: #36A77C13;
  color: #36A77C;
}
.main-nav img {
  height: 40px; width: auto; margin-right: 6px;
}
.btn-primary {
  display: inline-block;
  background: linear-gradient(93deg, #36A77C 40%, #244768 96%);
  color: #fff !important;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border: none;
  border-radius: 31px;
  padding: 11px 32px;
  font-size: 1.09rem;
  margin-left: 12px;
  transition: background .19s, box-shadow .18s, transform .17s;
  box-shadow: 0 3px 16px #24476826;
  position: relative;
  cursor: pointer;
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(101deg, #244768 25%, #36A77C 88%);
  color: #fff;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 9px 24px #1320312c;
  outline: none;
}

/* --- FEATURES GRID --- */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
  margin-bottom: 12px;
  justify-content: flex-start;
}
.feature {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 3px 18px #24476811;
  padding: 32px 18px 22px 18px;
  flex: 1 1 230px;
  min-width: 190px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
  border-left: 6px solid #36A77C;
  transition: border-color .19s, box-shadow .17s, transform .14s;
}
.feature:hover {
  border-left: 6px solid #ffad05;
  box-shadow: 0 6px 32px #24476822;
  transform: translateY(-4px) scale(1.03);
}
.feature img {
  height: 35px;
  width: auto;
  margin-bottom: 4px;
}

/* --- SERVICES LIST --- */
.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 8px;
  margin-bottom: 10px;
}
.service {
  background: var(--accent);
  border-radius: 17px;
  box-shadow: 0 2px 13px #2447680b;
  padding: 26px 20px;
  flex: 1 1 270px;
  min-width: 210px;
  max-width: 340px;
  /* card pattern spacing */
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
  border-left: 6px solid #244768;
  transition: border-color .17s, box-shadow .16s;
  position: relative;
}
.service:hover {
  border-left: 6px solid #36A77C;
  box-shadow: 0 7px 22px #13203122;
}
.service .price {
  background: #36A77C;
  color: #fff;
  border-radius: 14px;
  padding: 4px 18px;
  font-size: 1.01rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  align-self: flex-end;
  letter-spacing: 0.01em;
  margin-top: 10px;
}

/* BLOG POST PREVIEWS */
.blog-list .post-previews {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
}
.blog-list article {
  background: #fff;
  border-radius: 17px;
  box-shadow: 0 2px 13px #24476812;
  padding: 27px 18px;
  flex: 1 1 300px;
  min-width: 210px;
  max-width: 340px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  border-left: 6px solid #36A77C;
  transition: box-shadow .18s, border-color .16s, transform .15s;
}
.blog-list article:hover {
  box-shadow: 0 9px 24px #2447682a;
  border-left: 6px solid #ffad05;
  transform: translateY(-4px) scale(1.025);
}
.blog-list article h3 {
  font-size: 1.18rem;
  margin-bottom: 6px;
  color: #244768;
  font-family: 'Montserrat', Arial, sans-serif;
}
.blog-list article a {
  margin-top: 14px;
  color: var(--secondary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .15s;
}
.blog-list article a:hover,
.blog-list article a:focus {
  color: #244768;
}

/* CATEGORIES FILTER ON BLOG */
.categories-filter {
  display: flex;
  flex-direction: row;
  gap: 11px;
  align-items: center;
  margin-bottom: 16px;
  flex-wrap: wrap;
  font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.04rem;
}
.categories-filter span {
  background: #36A77C19;
  color: #244768;
  border-radius: 13px;
  padding: 3px 12px;
  font-size: 1rem;
  font-weight: 500;
}

/* CTA SECTION */
.cta-section {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.cta-section h2 {
  color: #244768;
  font-size: 2rem;
  margin-bottom: 16px;
}
.cta-section p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}
.cta-section .btn-primary {
  margin-top: 6px;
}

/* FOOTER */
footer {
  background: #244768;
  color: #fff;
  border-top-left-radius: 40px;
  border-top-right-radius: 0;
  margin-top: 40px;
  padding: 0;
  box-shadow: 0 -2px 24px #13203117;
}
footer .content-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 24px 0 10px 0;
}
footer img {
  height: 36px;
  width: auto;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.footer-nav a {
  color: #fff;
  padding: 5px 10px;
  border-radius: 11px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  transition: background .15s, color .15s;
}
.footer-nav a:hover {
  background: #36A77Cdd;
  color: #fff;
}
.copyright {
  color: #F3F7F9;
  font-size: 0.98rem;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1024px) {
  .features-grid, .services-list, .card-container, .content-grid, .blog-list .post-previews {
    gap: 16px;
  }
  .footer-nav { gap: 9px; }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 12px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .footer .content-wrapper { flex-direction: column; }
  .footer-nav { flex-wrap: wrap; }
  .features-grid,
  .services-list,
  .card-container,
  .content-grid,
  .blog-list .post-previews {
    flex-direction: column;
    gap: 18px;
  }
  .feature, .service, .blog-list article {
    min-width: 90%;
    max-width: 100%;
  }
  .hero {
    border-radius: 0 0 34px 0/0 0 64px 0;
    min-height: 170px;
    padding: 30px 0;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  footer .content-wrapper {
    flex-direction: column;
    gap: 11px;
    padding: 19px 0 8px 0;
  }
}

/* --- MOBILE BURGER MENU --- */
.mobile-menu-toggle {
  display: none;
  background: #36A77C;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  cursor: pointer;
  position: absolute;
  right: 14px;
  top: 10px;
  z-index: 1001;
  box-shadow: 0 2px 11px #24476817;
  transition: background .14s, color .14s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #244768;
  color: #ffad05;
  outline: 2px solid #ffad05;
}
@media (max-width: 1060px) {
  .mobile-menu-toggle {
    display: inline-block;
  }
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: #244768f7;
  color: #fff;
  z-index: 1200;
  transform: translateX(100%);
  transition: transform .37s cubic-bezier(.86,0,.07,1);
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: flex-start;
  padding: 38px 0 0 0;
  backdrop-filter: blur(2px);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: transparent;
  color: #fff;
  border: none;
  font-size: 2.3rem;
  cursor: pointer;
  position: absolute;
  right: 18px;
  top: 16px;
  z-index: 16;
  transition: color .16s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #ffad05;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100vw;
  align-items: flex-start;
  margin-top: 38px;
  padding-left: 32px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.23rem;
  border-radius: 22px;
  padding: 12px 22px;
  margin-right: 10px;
  transition: background .18s, color .15s;
  outline: none;
  display: inline-block;
  width: calc(100vw - 60px);
  box-sizing: border-box;
}
.mobile-nav a:active,
.mobile-nav a:focus,
.mobile-nav a:hover {
  background: #36A77Ccc;
  color: #ffad05;
}
@media (min-width: 1061px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  width: 100vw;
  background: #244768;
  color: #fff;
  box-shadow: 0 -4px 20px #24476822;
  z-index: 1800;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 18px 30px;
  gap: 20px;
  font-size: 1.07rem;
  font-family: 'Roboto', Arial, sans-serif;
  animation: fadeInBanner .5s;
}
.cookie-banner .cookie-text {
  flex: 3;
  margin-right: 16px;
  line-height: 1.5;
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    padding: 19px 12px;
    align-items: flex-start;
    gap: 9px;
  }
  .cookie-banner .cookie-text {
    margin-right: 0;
    margin-bottom: 8px;
  }
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 10px;
  flex-wrap: wrap;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 21px;
  padding: 7px 19px;
  font-weight: 600;
  border: none;
  transition: background .16s, color .16s, box-shadow .2s;
  cursor: pointer;
}
.cookie-banner .accept {
  background: #36A77C;
  color: #fff;
}
.cookie-banner .accept:hover,
.cookie-banner .accept:focus {
  background: #ffad05;
  color: #244768;
}
.cookie-banner .reject {
  background: #fff;
  color: #DD4669;
}
.cookie-banner .reject:hover,
.cookie-banner .reject:focus {
  background: #DD4669;
  color: #fff;
}
.cookie-banner .settings {
  background: #244768;
  color: #fff;
  border: 2px solid #36A77C;
}
.cookie-banner .settings:hover,
.cookie-banner .settings:focus {
  background: #36A77C;
  color: #fff;
}
@keyframes fadeInBanner {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}

/* COOKIE PREFERENCE MODAL */
.cookie-modal {
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: #244768e0;
  color: #244768;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInBanner .4s;
}
.cookie-modal .modal-content {
  background: #fff;
  border-radius: 19px;
  padding: 34px 30px 22px 30px;
  box-shadow: 0 7px 38px #24476829;
  min-width: 320px;
  max-width: 94vw;
  display: flex;
  flex-direction: column;
}
.cookie-modal h2 {
  font-size: 1.4rem;
  color: #244768;
  margin-bottom: 18px;
}
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: row;
  gap: 11px;
  align-items: center;
  margin-bottom: 12px;
}
.cookie-modal .category-label {
  font-size: 1rem;
  color: #244768;
}
.cookie-modal .category-toggle {
  margin-left: auto;
}
.cookie-modal button {
  margin-top: 16px;
  background: #36A77C;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.07rem;
  border-radius: 19px;
  border: none;
  padding: 8px 26px;
  font-weight: 600;
  transition: background .16s, color .16s;
  cursor: pointer;
}
.cookie-modal button:hover,
.cookie-modal button:focus {
  background: #244768;
  color: #ffad05;
}
.cookie-modal .close-modal {
  background: transparent;
  color: #DD4669;
  font-size: 2.1rem;
  border: none;
  position: absolute;
  right: 29px; top: 17px;
  cursor: pointer;
  padding: 0 10px;
}

/* --- SPECIAL STYLES FOR PAGES --- */
.text-section {
  max-width: 700px;
}
.price-overview strong {
  color: #244768;
  font-size: 1.19rem;
  background: #F3F7F9;
  border-radius: 9px;
  box-shadow: 0 1px 7px #2447680c;
  padding: 9px 17px;
  display: inline-block;
}
.industry-offers p {
  background: #36A77C0e;
  color: #244768;
  border-radius: 13px;
  padding: 14px 22px;
  margin-bottom: 16px;
}

.thank-you {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.thank-you a.btn-primary {
  margin-top: 15px;
}

.contact-data .content-wrapper,
.contact-form-info .content-wrapper {
  gap: 7px;
}
.contact-data strong {
  color: #244768;
}

/* UL/OL IN FEATURE LISTS & CONTACT DATA-- custom bullets */
ul, ol {
  font-size: 1.02rem;
  margin-bottom: 18px;
}
ul li, ol li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}
ul li:before {
  content: '';
  display: inline-block;
  height: 11px;
  width: 11px;
  background: linear-gradient(139deg, #36A77C 60%, #ffad05 140%);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 3px;
}

/* SHADOW/EFFECTS ON FOCUS */
input:focus, textarea:focus, select:focus, button:focus {
  outline: 2px solid #FFAD05;
  outline-offset: 1px;
  background: #F3F7F9;
}

/* MICROINTERACTIONS */
.btn-primary, .feature, .service, .testimonial-card,
.blog-list article, .card {
  transition: box-shadow .17s, transform .17s, border-color .18s, background .14s;
}

/* Animations for CTA or section fade-ins */
@keyframes fadeinUp {
  0% {opacity:0; transform:translateY(30px);}
  70% {opacity:.9;}
  100% {opacity:1; transform:translateY(0);}
}
.section, .card, .feature, .service,
.testimonial-card, .blog-list article {
  animation: fadeinUp .65s cubic-bezier(.38,1.06,.41,.99);
}

/* ACCESSIBILITY - CLEAR CONTRAST IN TESTIMONIALS */
.testimonials {
  background: #f7fafb;
  border-radius: 23px;
  margin: 32px 0 49px 0;
  padding-top: 28px;
  padding-bottom: 28px;
}
.testimonial-card p,
.testimonial-card .author {
  color: #222 !important;
}

/* BRAND-INSPIRED CREATIVE/ARTISTIC VISUALS */
.card:before, .feature:before, .service:before {
  content: '';
  display: block;
  position: absolute;
  top: -17px;
  right: -17px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(93deg,#36A77C80 40%,#ffad05af 100%);
  z-index: 0;
  opacity: .18;
}
.feature:before {
  left: -13px;
  right: auto;
  top: -16px;
  width: 33px;
  height: 33px;
  background: linear-gradient(133deg,#36A77C90 60%,#24476899 120%);
  opacity: .14;
}
.service:before {
  display: none;
}

/* OVERLAY Z-INDEX FIX FOR NAV & BANNER */
header, .mobile-menu, .cookie-banner, .cookie-modal {
  z-index: 1500;
}

/* --- END OF STYLE --- */
