/* 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, 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;
}
html {
  height: 100%;
}
body {
  min-height: 100vh;
  line-height: 1.5;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  background: #F6F8FB;
  color: #203355;
  font-size: 16px;
  letter-spacing: .01em;
  overflow-x: hidden;
}

/* VARIABLES */
:root {
  --primary: #203355;
  --secondary: #16A085;
  --accent: #F6F8FB;
  --white: #fff;
  --black: #151928;
  --gray: #9197af;
  --danger: #EC4D37;
  --container-width: 1080px;
}

/* CREATIVE ARTISTIC ACCENTS */
.artistic-bg {
  background: var(--accent);
  position: relative;
  overflow: hidden;
}
.artistic-bg::before, .artistic-bg::after {
  content: "";
  position: absolute;
  z-index: 0;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  opacity: 0.14;
  pointer-events: none;
}
.artistic-bg::before {
  background: var(--secondary);
  top: -50px;
  left: -60px;
}
.artistic-bg::after {
  background: var(--primary);
  bottom: -60px;
  right: -50px;
}

/* CONTAINER & LAYOUT */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
  z-index: 1;
}

/* SPACING AND SECTIONING */
section {
  margin-bottom: 60px;
  padding: 40px 0;
  position: relative;
}
@media (max-width: 768px) {
  section {
    padding: 32px 0;
    margin-bottom: 40px;
  }
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 2px 12px 0 rgba(32,51,85,0.10);
  padding: 32px 24px;
  flex: 1 1 280px;
  transition: box-shadow 0.25s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 8px 28px 0 rgba(32,51,85,0.15);
  transform: translateY(-4px) scale(1.02);
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: var(--accent);
  border-radius: 18px;
  box-shadow: 0 4px 16px 0 rgba(22,160,133,0.10);
  margin-bottom: 24px;
  border-left: 5px solid var(--secondary);
  max-width: 600px;
  color: var(--black);
}
.testimonial-card p {
  margin-bottom: 4px;
}
.testimonial-card strong {
  color: var(--primary);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.company-numbers {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-weight: bold;
  font-size: 18px;
  color: var(--secondary);
  margin-top: 14px;
}

/* HEADER & NAVIGATION */
header {
  background: var(--white);
  box-shadow: 0 2px 10px 0 rgba(32,51,85,0.03);
  position: sticky;
  top: 0;
  z-index: 1000;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 74px;
}
.logo img {
  height: 42px;
  vertical-align: middle;
}
.main-nav {
  display: flex;
  gap: 26px;
  background: none;
}
.main-nav a {
  color: var(--primary);
  text-decoration: none;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.04em;
  position: relative;
  transition: color 0.15s;
}
.main-nav a::after {
  content: '';
  display: block;
  margin: 0 auto;
  width: 0; height: 2px;
  background: var(--secondary);
  transition: width .2s;
}
.main-nav a:hover,
.main-nav a:focus {
  color: var(--secondary);
}
.main-nav a:hover::after,
.main-nav a:focus::after {
  width: 100%;
}
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Roboto Slab', serif;
  border-radius: 25px;
  padding: 12px 30px;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.04em;
  cursor: pointer;
  box-shadow: 0 2px 12px 0 rgba(32,51,85,0.08);
  border: none;
  outline: none;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.16s;
  margin-left: 16px;
  text-decoration: none;
}
.btn-primary {
  background: var(--secondary);
  color: var(--white);
}
.btn-primary:hover, .btn-primary:focus {
  background: #1EC8B2;
  color: var(--black);
  box-shadow: 0 4px 22px 0 rgba(22,160,133,0.16);
  transform: translateY(-2px) scale(1.04);
}
.btn-secondary {
  background: var(--primary);
  color: var(--white);
  margin-left: 0;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #2b4880;
  color: #fff;
  box-shadow: 0 4px 22px 0 rgba(32,51,85,0.12);
}
.mobile-menu-toggle {
  display: none;
  font-size: 32px;
  background: transparent;
  border: none;
  color: var(--primary);
  cursor: pointer;
  margin-left: 16px;
  transition: color 0.2s;
  z-index: 1300;
  line-height: 1;
}
.mobile-menu-toggle:focus {
  color: var(--secondary);
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(32,51,85,0.90);
  z-index: 1600;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  transform: translateX(-100vw);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(.65,.05,.36,1), opacity 0.25s;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 24px 30px 0 0;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 36px;
  cursor: pointer;
  transition: color 0.2s;
  z-index: 1610;
}
.mobile-menu-close:focus {
  color: var(--secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-top: 60px;
  align-items: flex-start;
  padding-left: 38px;
}
.mobile-nav a {
  color: var(--white);
  font-size: 22px;
  text-decoration: none;
  padding: 12px 0;
  font-family: 'Roboto Slab', serif;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 6px;
  transition: color 0.16s, background 0.13s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  color: var(--secondary);
  background: rgba(246,248,251,0.16);
  outline: none;
}

@media (max-width: 992px) {
  .main-nav {
    display: none;
  }
  .btn-primary {
    margin-left: 0;
    margin-right: 8px;
  }
  .mobile-menu-toggle {
    display: inline;
  }
}

@media (min-width: 993px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none;
  }
}

/* TYPOGRAPHY & ARTISTIC FONTS */
@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@700;900&family=Open+Sans:wght@400;600;700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto Slab', serif;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: 0.02em;
}
h1 {
  font-size: 2.75rem;
  margin-bottom: 10px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 8px;
  color: var(--secondary);
}
h3 {
  font-size: 1.35rem;
  color: var(--primary);
  margin-bottom: 6px;
}
p, ul, ol {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.12rem;
  line-height: 1.65;
  color: var(--black);
  margin-bottom: 8px;
}
strong {
  font-weight: bold;
}
.text-section {
  margin-bottom: 14px;
  margin-top: 0;
}
.text-section ul, .text-section ol {
  padding-left: 24px;
  margin-bottom: 8px;
}
.text-section li {
  margin-bottom: 7px;
  font-size: 1.02em;
}
.text-section a {
  color: var(--secondary);
  text-decoration: underline;
  transition: color 0.16s;
}
.text-section a:hover {
  color: var(--primary);
}
.service-price, .price {
  display: inline-block;
  background: var(--secondary);
  color: #fff;
  border-radius: 14px;
  padding: 3px 16px;
  font-family: 'Roboto Slab', serif;
  font-size: 17px;
  margin-top: 8px;
  font-weight: bold;
}

/* FEATURES LIST - HOME PAGE */
.features-list, .services-list, .articles-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  list-style: none;
  margin-left: 0;
  margin-bottom: 16px;
}
.features-list li, .services-list li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  flex: 1 1 220px;
  background: var(--white);
  border-radius: 17px;
  box-shadow: 0 2px 12px 0 rgba(32,51,85,0.08);
  padding: 28px 20px 20px 20px;
  min-width: 210px;
  min-height: 220px;
  transition: box-shadow 0.18s, transform 0.16s;
  position: relative;
  z-index: 2;
}
.features-list li:hover, .services-list li:hover {
  box-shadow: 0 8px 28px 0 rgba(22,160,133,0.13);
  transform: translateY(-3px) scale(1.04);
}
.features-list img, .services-list img {
  height: 48px;
  margin-bottom: 8px;
  filter: drop-shadow(1px 2px 2px rgba(22,160,133,0.16));
}

.logo-wall {
  margin-top: 30px;
  display: flex;
  justify-content: flex-start;
  gap: 32px;
  align-items: center;
}
.logo-wall img {
  height: 48px;
  opacity: 0.83;
}

/* PRICING TABLES */
.pricing-tables {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 30px;
  justify-content: space-between;
}
.pricing-plan {
  background: var(--white);
  border-radius: 22px;
  box-shadow: 0 2px 24px 0 rgba(32,51,85,0.10);
  padding: 38px 32px 28px 32px;
  min-width: 270px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  transition: box-shadow 0.18s, transform 0.15s;
  position: relative;
}
.pricing-plan:hover {
  box-shadow: 0 10px 36px 0 rgba(22,160,133,0.14);
  transform: translateY(-4px) scale(1.03);
}
.pricing-plan h3 {
  font-size: 1.15rem;
  color: var(--secondary);
  margin-bottom: 6px;
}
.price {
  margin-top: 0;
  margin-bottom: 12px;
}
.pricing-plan ul {
  margin-top: 8px;
  padding-left: 19px;
}
.pricing-plan li {
  margin-bottom: 7px;
  color: var(--black);
  font-size: 1.03em;
}
.pricing-compare, .pricing-faq {
  background: var(--accent);
  border-radius: 20px;
  padding: 20px 24px;
  margin-bottom: 20px;
}
.pricing-faq h3 {
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 10px;
}
.pricing-faq ul {
  padding-left: 19px;
}
.pricing-faq li {
  margin-bottom: 9px;
}

/* ARTICLES LIST & FAQ ACCORDION - RESOURCES PAGE */
.articles-list {
  gap: 28px;
  margin-bottom: 0;
}
.articles-list .text-section {
  min-width: 190px;
  flex: 1 1 215px;
  background: var(--white);
  border-radius: 13px;
  box-shadow: 0 2px 10px 0 rgba(32,51,85,0.06);
  padding: 18px 16px 14px 16px;
  transition: box-shadow 0.18s, transform 0.14s;
}
.articles-list .text-section:hover {
  box-shadow: 0 8px 22px 0 rgba(22,160,133,0.09);
  transform: translateY(-2px) scale(1.01);
}
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.faq-accordion .text-section {
  background: var(--accent);
  border-radius: 14px;
  padding: 14px 20px;
  color: var(--primary);
  font-family: 'Open Sans', Arial, sans-serif;
}
.faq-accordion strong {
  color: var(--secondary);
}

/* FOOTER */
footer {
  background: var(--primary);
  color: var(--white);
  padding-top: 34px;
  padding-bottom: 20px;
  margin-top: 50px;
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 38px;
  justify-content: space-between;
}
.footer-logo img {
  height: 48px;
}
.footer-nav {
  display: flex;
  gap: 22px;
}
.footer-nav a {
  color: var(--secondary);
  text-decoration: none;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1em;
  font-weight: 600;
  position: relative;
  transition: color 0.15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
}
.footer-contact {
  font-size: 1.05em;
  background-color: #e1ebf6;
  line-height: 1.6;
}
.footer-contact a {
  color: #6da87a;
  text-decoration: underline;
  transition: color 0.19s;
}
.footer-contact a:hover {
  color: var(--secondary);
}
.footer-links {
  font-size: .98em;
  color: #bdd0e5;
  margin-top: 24px;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  z-index: 3000;
  left: 0; right: 0;
  bottom: 0;
  width: 100vw;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 24px 16px 20px 16px;
  box-shadow: 0 -3px 22px 0 rgba(32,51,85,0.17);
  gap: 28px;
  transition: transform 0.35s, opacity 0.28s;
}
.cookie-banner.hide {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner p {
  font-size: 1.05em;
  margin-right: 14px;
  color: #fff;
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 13px;
}
.cookie-banner button {
  outline: none;
  border: none;
  border-radius: 20px;
  padding: 9px 22px;
  font-family: 'Roboto Slab', serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  background: var(--secondary);
  color: #fff;
  transition: background 0.14s, color 0.15s;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #1EC8B2;
  color: var(--primary);
}
.cookie-banner .cookie-settings-btn {
  background: var(--white);
  color: var(--primary);
  border: 1.5px solid var(--secondary);
  font-weight: bold;
  transition: background 0.19s, color 0.18s;
}
.cookie-banner .cookie-settings-btn:hover {
  background: var(--accent);
  color: var(--secondary);
}
/* Cookie Modal */
.cookie-modal {
  position: fixed;
  left: 50%; top: 50%;
  transform: translate(-50%, -52%) scale(0.98);
  background: var(--white);
  color: var(--primary);
  border-radius: 21px;
  box-shadow: 0 14px 60px 0 rgba(32,51,85,0.21);
  z-index: 4000;
  min-width: 328px;
  max-width: 96vw;
  padding: 32px 32px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 23px;
  opacity: 1;
  transition: opacity 0.22s, transform 0.28s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -40%) scale(0.92);
}
.cookie-modal h2 {
  color: var(--secondary);
  margin-bottom: 14px;
  font-size: 1.35rem;
}
.cookie-modal ul {
  list-style: none;
  padding-left: 0;
}
.cookie-modal li {
  margin-bottom: 14px;
  font-size: 1.08em;
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 14px;
}
.cookie-toggle {
  margin-left: 6px;
  appearance: none;
  width: 38px;
  height: 22px;
  border-radius: 13px;
  background: #e3ecec;
  outline: none;
  position: relative;
  transition: background 0.18s;
  cursor: pointer;
  vertical-align: middle;
}
.cookie-toggle:checked {
  background: var(--secondary);
}
.cookie-toggle::after {
  content: "";
  display: block;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  position: absolute;
  left: 2.5px; top: 2px;
  background: var(--white);
  box-shadow: 0 1px 4px 0 rgba(32,51,85,0.12);
  transition: left 0.18s;
}
.cookie-toggle:checked::after {
  left: 18px;
}
.cookie-modal .modal-btns {
  display: flex;
  gap: 13px;
  margin-top: 12px;
  justify-content: flex-end;
}
.cookie-modal button {
  outline: none;
  border: none;
  border-radius: 18px;
  padding: 8px 18px;
  font-family: 'Roboto Slab', serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  background: var(--secondary);
  color: #fff;
  transition: background 0.14s, color 0.15s;
}
.cookie-modal button.cancel {
  background: var(--accent);
  color: var(--primary);
  border: 1.2px solid var(--gray);
}
.cookie-modal button:hover, .cookie-modal button:focus {
  background: #1EC8B2;
  color: var(--primary);
}

@media (max-width: 768px) {
  .container {
    max-width: 100vw;
    padding: 0 8px;
  }
  .content-wrapper {
    gap: 20px;
  }
  .features-list, .services-list, .articles-list, .pricing-tables {
    flex-direction: column;
    gap: 18px;
  }
  .pricing-tables {
    gap: 20px;
  }
  .company-numbers {
    gap: 12px;
    flex-direction: column;
    font-size: 16px;
  }
  .logo-wall {
    gap: 18px;
  }
  .footer-logo {
    margin-bottom: 13px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 10px;
  }
  .footer-contact, .footer-links {
    text-align: left;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 16px;
    padding: 16px 8px 15px 8px;
    align-items: stretch;
  }
  section {
    margin-bottom: 36px;
    padding: 24px 0;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: inline;
  }
  .footer-links {
    margin-top: 13px;
  }
}

/* ANIMATIONS & MICROINTERACTIONS */
.btn-primary, .btn-secondary, .card, .features-list li, .services-list li, .pricing-plan, .articles-list .text-section, .testimonial-card {
  transition: box-shadow 0.22s, transform 0.16s, background 0.13s, color 0.18s;
}

/* FORM STYLES (for contact, if present in future) */
input, textarea, select {
  border-radius: 8px;
  border: 1px solid #ccd6e2;
  padding: 10px 13px;
  font-size: 1em;
  font-family: 'Open Sans', Arial, sans-serif;
  background: #fff;
  transition: border 0.15s, box-shadow 0.18s;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid var(--secondary);
  box-shadow: 0 1px 8px 0 rgba(22,160,133,0.15);
  outline: none;
}
::placeholder {
  color: #b6bed1;
}

/* OVERRIDES & UTILITIES */
[hidden] { display: none !important; }

/* Hide scroll on mobile menu overlay */
body.menu-open {
  overflow: hidden;
}

/* Copyright notice responsiveness */
.footer-links span {
  word-break: break-word;
  opacity: 0.95;
}

/* Ensuring all visual containers have min 20px margin between cards/sections */
.features-list li, .services-list li, .pricing-plan, .testimonial-card, .card {
  margin-bottom: 20px;
}

/* ADD SOME PLAYFUL, ARTISTIC ACCENTS */
.features-list li::before, .services-list li::before {
  content: '';
  display: block;
  position: absolute;
  top: -18px;
  left: -18px;
  width: 44px; height: 44px;
  background: var(--secondary);
  opacity: 0.12;
  border-radius: 60% 50% 44% 38%;
  z-index: 0;
  filter: blur(1.5px);
}

@media (max-width: 600px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.3rem; }
  .btn-primary, .btn-secondary { font-size: 15px; padding: 11px 17px; }
  .footer-logo img { height: 40px; }
  .pricing-plan, .card { padding: 16px 12px 12px 12px; }
  .company-numbers { font-size: 13.8px; }
}

/* VISUAL HIERARCHY for HERO */
section:first-of-type {
  background: var(--accent);
  border-bottom: 1.5px dashed var(--secondary);
}
section:first-of-type h1 {
  color: var(--secondary);
  text-shadow: 0 1px 7px #31b8a282;
}
section:first-of-type .btn-primary {
  margin-top: 18px;
}

/* Contact details highlight for CTA */
.text-section a[href^="mailto:"] {
  font-family: 'Roboto Slab', serif;
  background: var(--secondary);
  color: #fff !important;
  padding: 1px 11px 1px 11px;
  border-radius: 8px;
  text-decoration: none;
  margin-left: 4px;
  margin-right: 4px;
  font-size: .97em;
  transition: background 0.16s;
}
.text-section a[href^="mailto:"]:hover {
  background: var(--primary);
}

/* Ensure card content is flex column and centered */
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 130px;
}

/******************* END ******************/
