/* ===================== RESET & BASE ===================== */
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 {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background: #F3F7FA;
  color: #25405A;
  min-height: 100vh;
  font-size: 16px;
  overflow-x: hidden;
  letter-spacing: 0.01em;
}
*, *:before, *:after {
  box-sizing: inherit;
}
img {
  max-width: 100%;
  height: auto;
}
a {
  color: #25405A;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
a:focus, a:hover {
  color: #7EA5B8;
  outline: none;
}
ul, ol {
  list-style: none;
}
button {
  font-family: inherit;
  border: none;
  cursor: pointer;
  background: none;
}
::selection {
  background: #7EA5B8;
  color: #fff;
}

/* ========================= TYPOGRAPHY ========================= */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #25405A;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.18;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}
h4 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}
h5, h6 {
  font-size: 1rem;
  margin-bottom: 8px;
}
p, li, blockquote, address {
  font-size: 1rem;
  margin-bottom: 10px;
  line-height: 1.6;
  color: #25405A;
}
strong, b {
  font-weight: 700;
  color: #25405A;
}
blockquote {
  border-left: 4px solid #7EA5B8;
  padding-left: 20px;
  color: #25405A;
  font-style: italic;
  background: #F3F7FA;
}

/* ========================= LAYOUT CONTAINERS ========================= */
.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 32px rgba(37, 64, 90, 0.08);
}
@media (max-width: 768px) {
  .section {
    padding: 28px 8px;
    margin-bottom: 36px;
    border-radius: 12px;
  }
}

/* ========================= HEADER & NAVIGATION ========================= */
header {
  background: #25405A;
  color: #fff;
  width: 100%;
  padding: 0;
  box-shadow: 0 2px 18px rgba(37,64,90,0.13);
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  min-height: 76px;
}
.brand-logo img {
  height: 40px;
  display: block;
}
.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
  margin-left: 36px;
}
.main-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #7EA5B8;
}
.btn-primary {
  background: #7EA5B8;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  border-radius: 10px;
  padding: 14px 32px;
  margin-left: 32px;
  box-shadow: 0 2px 12px rgba(37,64,90,0.10);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  transition: background 0.18s, box-shadow 0.18s, transform 0.14s;
}
.btn-primary:focus, .btn-primary:hover {
  background: #25405A;
  color: #fff;
  box-shadow: 0 8px 24px rgba(37,64,90,0.16);
  transform: translateY(-2px) scale(1.04);
}

/* ========== MOBILE NAVIGATION ========== */
.mobile-menu-toggle {
  display: none;
  background: #7EA5B8;
  color: #fff;
  font-size: 2rem;
  border-radius: 8px;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  transition: background 0.18s;
  margin-left: 16px;
  z-index: 110;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #fff;
  color: #25405A;
}
@media (max-width: 1023px) {
  .main-nav {
    display: none;
  }
  .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #25405A;
  color: #fff;
  z-index: 1050;
  transform: translateX(105vw);
  transition: transform 0.45s cubic-bezier(.86,0,.07,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px 0 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: #fff;
  color: #25405A;
  font-size: 2rem;
  border-radius: 8px;
  margin-left: 24px;
  margin-bottom: 36px;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  display: flex;
  box-shadow: 0 2px 10px rgba(37,64,90,0.10);
  z-index: 1101;
  transition: background 0.18s, color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #7EA5B8;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 30px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  padding-left: 36px;
  margin-top: 10px;
  width: 100vw;
}
.mobile-nav a {
  color: #fff;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.17s, background 0.17s, padding-left 0.18s;
  border-radius: 0 12px 12px 0;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: rgba(126,165,184,0.24);
  color: #7EA5B8;
  padding-left: 16px;
}
@media (min-width: 1024px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}

/* ========================= HERO SECTION ========================= */
.hero {
  width: 100%;
  background: linear-gradient(120deg, #25405A 70%, #7EA5B8 100%);
  color: #fff;
  padding: 72px 0 64px 0;
  display: flex;
  align-items: center;
  min-height: 350px;
}
.hero .container {
  flex-direction: column;
  align-items: flex-start;
}
.hero .content-wrapper {
  gap: 18px;
  align-items: flex-start;
}
.hero h1 {
  color: #fff;
  margin-bottom: 10px;
}
.hero p {
  color: #fff;
}
.hero .btn-primary {
  margin-left: 0;
  margin-top: 18px;
  background: #fff;
  color: #25405A;
  font-weight: 800;
  box-shadow: 0 4px 16px rgba(37,64,90,0.18);
}
.hero .btn-primary:hover, .hero .btn-primary:focus {
  background: #7EA5B8;
  color: #fff;
}
@media (max-width: 768px) {
  .hero {
    padding: 36px 0 24px 0;
    min-height: 1px;
  }
}

/* ========================= FLEXBOX PATTERNS ========================= */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(37,64,90,0.07);
  padding: 28px 24px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 32px rgba(37,64,90,0.13);
  transform: translateY(-3px) scale(1.03);
}
.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 2px 14px rgba(37,64,90,0.09);
  margin-bottom: 20px;
  transition: box-shadow 0.16s, transform 0.13s;
  color: #25405A;
}
.testimonial-card:hover {
  box-shadow: 0 6px 24px rgba(37,64,90,0.12);
  transform: scale(1.025);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 4px rgba(37,64,90,0.05);
  padding: 18px 16px;
  transition: box-shadow 0.15s;
}
.feature-item:hover {
  box-shadow: 0 3px 16px rgba(37,64,90,0.13);
}

/* ========================= CUSTOM LISTS ========================= */
ul, ol {
  padding-left: 0;
  margin-bottom: 16px;
}
ul li, ol li {
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 1rem;
}
.feature-list li:before {
  content: '\2022';
  color: #7EA5B8;
  font-weight: bold;
  margin-right: 10px;
  font-size: 2rem;
  line-height: 1;
}
@media (max-width: 768px) {
  ul li, ol li {
    font-size: 0.99rem;
    margin-bottom: 8px;
  }
}

/* ========================= BUTTONS ========================= */
button, .btn-primary {
  transition: background 0.18s, color 0.18s, box-shadow 0.16s, transform 0.14s;
}
button:active, .btn-primary:active {
  filter: brightness(0.96);
  transform: scale(0.98);
}

/* ========================= CARDS ========================= */
.card {
  border: 2px solid #F3F7FA;
}

/* ========================= BRAND PROMISE ========================= */
.brand-promise {
  background: #7EA5B8;
  color: #fff;
  border-radius: 10px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 16px 24px;
  margin-top: 16px;
  box-shadow: 0 2px 10px rgba(37,64,90,0.11);
}

/* ========================= PRICING & SOLUTIONS SUMMARY ========================= */
.pricing-summary, .solution-overview {
  background: #25405A;
  color: #fff;
  border-radius: 10px;
  padding: 16px 20px;
  margin-top: 16px;
  font-weight: 600;
  font-size: 1.1rem;
}
.pricing-summary strong, .solution-overview strong { color: #fff; }

/* ========================= GUIDE CATEGORIES & TIPS ========================= */
.guide-categories, .quick-tips {
  background: #fff;
  border-radius: 10px;
  padding: 18px 24px;
  margin-bottom: 14px;
  box-shadow: 0 1px 7px rgba(37,64,90,0.07);
}
.guide-categories h3, .quick-tips h3 {
  margin-bottom: 10px;
  color: #7EA5B8;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
}

/* ========================= FOOTER ========================= */
footer {
  background: #25405A;
  color: #fff;
  padding: 48px 0 32px 0;
  width: 100%;
  margin-top: 80px;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  gap: 36px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.22rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}
.footer-brand img {
  height: 34px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}
.footer-nav a {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
  font-size: 1rem;
  margin-bottom: 6px;
  transition: color 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #7EA5B8;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 0.97rem;
}
.footer-contact div {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #fff;
}
.footer-contact img {
  height: 20px;
  width: 20px;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .footer-brand {
    margin-bottom: 10px;
  }
}

/* ========================= MODAL & OVERLAYS (Cookie) ========================= */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #25405A;
  color: #fff;
  z-index: 2000;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 26px 40px 18px 32px;
  box-shadow: 0 -1px 24px rgba(37,64,90,0.18);
  gap: 24px;
  justify-content: space-between;
  transition: transform 0.44s cubic-bezier(.9,0,.13,1);
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 10px 10px 10px;
  }
}
.cookie-banner.hide {
  transform: translateY(150%);
}
.cookie-banner .cookie-text {
  font-size: 1.07rem;
  margin-right: 18px;
  color: #fff;
  max-width: 480px;
}
.cookie-banner-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.cookie-btn {
  border-radius: 8px;
  font-size: 1rem;
  padding: 12px 22px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: bold;
  letter-spacing: 0.03em;
  background: #7EA5B8;
  color: #fff;
  border: none;
  transition: background 0.15s, color 0.15s, box-shadow 0.13s;
  box-shadow: 0 1px 8px rgba(37,64,90,0.09);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #fff;
  color: #25405A;
}
.cookie-btn.secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #7EA5B8;
}
.cookie-btn.secondary:hover, .cookie-btn.secondary:focus {
  background: #7EA5B8;
  color: #fff;
}
.cookie-settings-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 120vh);
  background: #fff;
  color: #25405A;
  width: 96vw;
  max-width: 420px;
  border-radius: 20px;
  box-shadow: 0 8px 48px rgba(37,64,90,0.22);
  padding: 34px 24px 24px 24px;
  z-index: 2100;
  display: flex;
  flex-direction: column;
  gap: 22px;
  transition: transform 0.36s cubic-bezier(.88,0,.13,1);
}
.cookie-settings-modal.open {
  transform: translate(-50%, -50%);
}
.cookie-settings-modal h3 {
  color: #7EA5B8;
  font-size: 1.19rem;
  font-weight: 800;
  margin-bottom: 12px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1.08rem;
  margin-bottom: 12px;
}
.cookie-category label {
  font-weight: 600;
  color: #25405A;
}
.cookie-category input[type=checkbox] {
  accent-color: #7EA5B8;
  height: 23px;
  width: 23px;
}
.cookie-modal-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 12px;
}
.cookie-settings-close {
  background: #25405A;
  color: #fff;
  border-radius: 8px;
  padding: 8px 18px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: bold;
  transition: background 0.16s, color 0.13s;
  margin-top: 8px;
}
.cookie-settings-close:hover {
  background: #7EA5B8;
  color: #fff;
}
@media (max-width: 480px) {
  .cookie-settings-modal {
    border-radius: 12px;
    padding: 18px 10px 14px 10px;
  }
}
.cookie-modal-backdrop {
  position: fixed;
  z-index: 2009;
  left: 0; right: 0; top: 0; bottom: 0;
  background: #25405A;
  opacity: 0.35;
}

/* ========================= RESPONSIVE (MOBILE-FIRST) ========================= */
@media (max-width: 900px) {
  body {
    font-size: 15px;
  }
  h1 { font-size: 1.65rem; }
  h2 { font-size: 1.23rem; }
  h3 { font-size: 1.08rem; }
  .content-wrapper { gap: 15px; }
}
@media (max-width: 600px) {
  h1 { font-size: 1.13rem; }
  h2 { font-size: 1.05rem; }
  h3 { font-size: 0.98rem; }
  .section { padding: 15px 4px; }
}

/* ========================= ANIMATIONS & MICRO-INTERACTIONS ========================= */
@media (prefers-reduced-motion: no-preference) {
  .btn-primary, .btn, .mobile-menu, .mobile-menu-open, .cookie-banner, .cookie-settings-modal, .card, .testimonial-card {
    transition: all 0.18s cubic-bezier(.77,0,.18,1);
  }
}

/* ========================= GEOMETRIC/DECORATIVE ========================= */
.section {
  position: relative;
  overflow: visible;
}
.section:before {
  content: '';
  display: block;
  position: absolute;
  top: -16px; left: -16px;
  width: 45px; height: 45px;
  background: #7EA5B8;
  opacity: 0.08;
  border-radius: 20px;
  z-index: 1;
}
.section:after {
  content: '';
  display: block;
  position: absolute;
  bottom: -16px; right: -16px;
  width: 28px; height: 28px;
  background: #25405A;
  opacity: 0.13;
  border-radius: 18px;
  z-index: 1;
}
@media (max-width: 600px) {
  .section:before, .section:after {
    display: none;
  }
}

/* ========================= MISC ========================= */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.text-section strong {
  color: #25405A;
  font-weight: bold;
}

/* ========================= HIGH CONTRAST FOR TESTIMONIALS ========================= */
.testimonial-card, .testimonial-card blockquote, .testimonial-card div {
  color: #25405A !important;
  background: #fff !important;
}

/* ========================= FORMS ========================= */
input, select, textarea {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  padding: 13px 15px;
  margin-bottom: 18px;
  border-radius: 7px;
  border: 1.5px solid #7EA5B8;
  background: #fff;
  transition: border 0.17s;
}
input:focus, select:focus, textarea:focus {
  border: 2px solid #25405A;
  outline: none;
}

/* ========================= PRINT ========================= */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-settings-modal, .cookie-modal-backdrop {
    display: none !important;
  }
}
