/* === CSS RESET & BASE TYPOGRAPHY === */
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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #ffffff;
  color: #153040;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
img, video {
  max-width: 100%;
  display: block;
}
ul, ol {
  list-style-position: inside;
  margin-left: 0;
}
a {
  color: #217f87;
  text-decoration: none;
  transition: color 0.18s;
}
a:hover, a:focus {
  color: #299CA6;
  outline: none;
}
button {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  background: none;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
}
table {
  border-collapse: collapse;
  width: 100%;
  margin: 30px 0 0 0;
}
th, td {
  text-align: left;
  padding: 8px 12px;
  border-bottom: 1px solid #eaeaea;
}

/* === BRAND FONTS === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #153040;
}
h1 { font-size: 2.5rem; margin-bottom: 16px; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.25rem; margin-bottom: 8px; }
h4, h5, h6 { font-size: 1rem; margin-bottom: 8px; }
.subtitle {
  font-size: 1.25rem;
  color: #217f87;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 400;
  margin-bottom: 24px;
}
p {
  color: #153040;
  margin-bottom: 16px;
  font-size: 1rem;
}

/* === CONTAINER & SECTION === */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 16px;
}

/* === HEADER === */
header {
  background: #ffffffcc;
  box-shadow: 0 2px 8px rgba(21, 48, 64, 0.06);
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
}
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  gap: 20px;
}
.header-container a img {
  height: 36px;
  transition: filter 0.2s;
}

/* === NAVIGATION === */
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #153040;
  padding: 8px 0;
  position: relative;
  transition: color 0.16s;
}
.main-nav a.cta-primary {
  background: #153040;
  color: #fff;
  padding: 8px 28px;
  border-radius: 28px;
  font-weight: 700;
  box-shadow: 0 2px 12px rgba(21,48,64,0.07);
  margin-left: 16px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.main-nav a.cta-primary:hover, .main-nav a.cta-primary:focus {
  background: #299CA6;
  color: #fff;
  box-shadow: 0 4px 16px rgba(33,156,166,0.13);
}
.main-nav a:hover, .main-nav a:focus {
  color: #217f87;
}

/* === MOBILE BURGER MENU === */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #153040;
  padding: 6px 10px;
  border-radius: 40px;
  margin-left: 8px;
  transition: background 0.2s;
  z-index: 1012;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #E4DCC2;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(21, 48, 64, 0.98);
  z-index: 1010;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  transform: translateX(100%);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.32s cubic-bezier(.77,0,.18,1), transform 0.36s cubic-bezier(.77,0,.18,1), visibility 0.2s;
}
.mobile-menu.open {
  opacity: 1;
  transform: translateX(0);
  visibility: visible;
}
.mobile-menu-close {
  margin: 22px 32px 0 0;
  font-size: 2rem;
  color: #fff;
  background: none;
  border: none;
  align-self: flex-end;
  cursor: pointer;
  z-index: 1011;
  transition: color 0.18s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: #E4DCC2;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin: 32px 0 0 0;
  width: 100%;
  align-items: flex-start;
  padding-left: 40px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.25rem;
  padding: 10px 0;
  border-radius: 6px;
  margin-right: 16px;
  transition: background 0.16s, color 0.16s;
  display: block;
  min-width: 140px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #217f87;
  color: #fff;
}

/* ==== RESPONSIVE NAV ==== */
@media (max-width: 991px) {
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; }
}
@media (min-width: 992px) {
  .mobile-menu { display: none!important; }
}

/* ===== HERO SECTION ===== */
.hero-section {
  background: #E4DCC2;
  display: flex;
  align-items: center;
  min-height: 360px;
  margin-bottom: 60px;
  padding: 0;
}
.hero-section .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  height: 100%;
  min-height: 340px;
}
.hero-section .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  padding: 32px 0;
}
.hero-section h1 {
  font-size: 2.75rem;
  color: #153040;
  margin-bottom: 8px;
}
.hero-section .subtitle {
  color: #217f87;
}
.hero-section .cta-primary {
  margin-top: 12px;
}

/* ===== SECTIONS, FLEX, GRID, CARDS ===== */
.features-section,
.services-section,
.testimonials-section,
.about-section,
.faq-section, 
.contact-section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 16px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 32px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #f8f9fa;
  border-radius: 12px;
  box-shadow: 0 2.5px 16px rgba(21,48,64,0.06);
  padding: 28px 20px 20px 20px;
  min-width: 225px;
  max-width: 320px;
  flex: 1 1 250px;
  margin-bottom: 20px;
  transition: box-shadow 0.25s;
}
.feature-item img {
  height: 36px;
  width: auto;
  margin-bottom: 4px;
}
.feature-item:hover, .feature-item:focus {
  box-shadow: 0 6px 32px rgba(33,156,166,0.12);
}
.feature-item h3 {
  font-size: 1.125rem;
  margin-bottom: 4px;
}

/* ===== SERVICE LIST ===== */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 32px 0 16px 0;
}
.service-list li {
  background: #f3f6fa;
  border-radius: 10px;
  padding: 24px 20px;
  min-width: 230px;
  box-shadow: 0 1.5px 9px rgba(21,48,64,0.04);
  margin-bottom: 20px;
  flex: 1 1 230px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.2s;
}
.service-list li:hover, .service-list li:focus {
  box-shadow: 0 4px 14px rgba(33,156,166,0.09);
}
.service-list h3 { margin-bottom: 5px; }

/* ===== PRICING TABLES & LISTS ===== */
.comparison-table {
  background: #f6f6f7;
  border-radius: 14px;
  margin: 28px 0;
  box-shadow: 0 1px 8px rgba(33,156,166,0.08);
}
.comparison-table th, .comparison-table td {
  font-size: 1rem;
  color: #153040;
}
.comparison-table th {
  background: #E4DCC2;
  font-weight: 600;
}

.pricing-breakdown, .value-comparison {
  margin-top: 28px;
}
.pricing-breakdown ul, .value-comparison ul, .feature-list {
  padding-left: 18px;
  margin-top: 8px;
}
.pricing-breakdown li, .value-comparison li, .feature-list li {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  background: #fafafb;
  box-shadow: 0 1.5px 12px rgba(33,156,166,0.06);
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 28px 24px;
  min-width: 240px;
  background: #fff;
  color: #153040;
  border-radius: 14px;
  margin-bottom: 20px;
  box-shadow: 0 1.5px 12px rgba(21,48,64,0.06);
  transition: box-shadow 0.21s;
  font-size: 1.1rem;
  font-family: 'Roboto', Arial, sans-serif;
  max-width: 350px;
}
.testimonial-card:hover, .testimonial-card:focus {
  box-shadow: 0 4px 24px rgba(33,156,166,0.14);
}
.star-rating {
  display: flex;
  gap: 2px;
  align-items: center;
}
.star-rating img {
  height: 20px;
  width: auto;
}
.testimonial-meta {
  color: #217f87;
  font-size: 1rem;
  margin-top: 6px;
  font-weight: 600;
}

/* ===== ABOUT & FAQ SECTIONS ===== */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 1rem;
}
.journey-steps {
  margin-top: 36px;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.journey-steps li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.06rem;
}
.step-number {
  background: #153040;
  color: #fff;
  font-size: 1.1rem;
  font-family: 'Montserrat', Arial;
  font-weight: 700;
  border-radius: 50%;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 6px;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 26px;
}
.faq-item {
  background: #f6f7f7;
  border-radius: 10px;
  padding: 20px 18px;
  box-shadow: 0 1.5px 12px rgba(21,48,64,0.04);
  transition: box-shadow 0.17s;
}
.faq-item h3 { margin-bottom: 8px; font-size: 1.16rem; font-family: 'Montserrat', Arial, san-serif; color: #153040; }
.faq-item:hover, .faq-item:focus { box-shadow: 0 3px 18px rgba(21,48,64,0.09); }

.contact-support-cta {
  margin-top: 28px;
  font-size: 1.04rem;
}
.contact-support-cta a {
  color: #153040;
  border-bottom: 1px dotted #299CA6;
  transition: color 0.16s;
}
.contact-support-cta a:hover {
  color: #217f87;
}

/* ===== CONTACT SECTION ===== */
.contact-details, .address-map {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.06rem;
}
.contact-details a {
  color: #217f87;
}
.address-map {
  margin-top: 24px;
  font-size: 1rem;
  color: #153040;
}

/* ===== BUTTONS ===== */
.cta-primary {
  background: #153040;
  color: #fff !important;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.09rem;
  border-radius: 44px;
  padding: 14px 42px;
  margin-top: 16px;
  box-shadow: 0 4px 18px rgba(21, 48, 64, 0.07);
  outline: none;
  display: inline-block;
  border: none;
  transition: background 0.25s, color 0.23s, box-shadow 0.20s, transform 0.15s;
  letter-spacing: 0.01em;
  cursor: pointer;
  position: relative;
}
.cta-primary:hover, .cta-primary:focus {
  background: #217f87;
  color: #fff;
  box-shadow: 0 8px 32px rgba(33,156,166,0.17);
  transform: translateY(-1.5px) scale(1.03);
}

/* ===== FOOTER ===== */
footer {
  background: #f7f7f6;
  padding: 34px 0 20px 0;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}
.footer-container > * { margin-bottom: 16px; }
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}
.footer-nav a {
  color: #217f87;
  font-size: 0.97rem;
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 6px;
  padding: 4px 8px;
  transition: background 0.21s, color 0.14s;
}
.footer-nav a:hover {
  background: #E4DCC2;
  color: #153040;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.98rem;
  color: #153040;
}
.contact-info img {
  height: 16px;
  width: 16px;
  margin-right: 2px;
}
.social-links {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 8px;
}
.social-links a img {
  display: inline-block;
  width: 26px;
  height: 26px;
  transition: filter 0.21s;
  filter: grayscale(15%) brightness(0.88);
}
.social-links a:hover img { filter: brightness(1.1) saturate(1.6); }

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #153040;
  color: #fff;
  padding: 26px 18px 20px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 -2px 18px rgba(21,48,64,0.08);
  z-index: 9999;
  transition: transform 0.24s cubic-bezier(.5,0,.2,1), opacity 0.20s;
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(80px);
}
.cookie-banner-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  max-width: 740px;
}
.cookie-banner p {
  color: #f3f3f3;
  font-size: 1rem;
  line-height: 1.4;
}
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 10px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  background: #fff;
  color: #153040;
  border-radius: 32px;
  border: none;
  padding: 10px 24px;
  font-weight: 600;
  box-shadow: 0 2px 10px rgba(21,48,64,0.05);
  margin: 0 5px;
  transition: background 0.16s, color 0.12s, box-shadow 0.15s;
}
.cookie-btn.accept {
  background: #299CA6;
  color: #fff;
}
.cookie-btn.reject {
  background: #E4DCC2;
  color: #153040;
}
.cookie-btn.settings {
  border: 1.5px solid #217f87;
  background: transparent;
  color: #217f87;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #217f87;
  color: #fff;
  box-shadow: 0 4px 22px rgba(33,156,166,0.14);
}
/* ===== COOKIE MODAL ===== */
.cookie-modal-overlay {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10011;
  background: rgba(21, 48, 64, 0.65);
  top: 0; left: 0; width: 100vw; height: 100vh;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.18s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  color: #153040;
  border-radius: 14px;
  padding: 38px 28px 28px 28px;
  max-width: 420px;
  width: 90vw;
  box-shadow: 0 6px 36px rgba(21,48,64,0.20);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  animation: fadeinUp 0.34s;
}
@keyframes fadeinUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-modal .modal-header {
  font-size: 1.22rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  margin-bottom: 8px;
}
.cookie-modal .modal-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
  font-size: 1.08rem;
}
.modal-toggle {
  width: 36px;
  height: 20px;
  border-radius: 16px;
  background: #E4DCC2;
  position: relative;
  cursor: pointer;
  border: none;
}
.modal-toggle.enabled {
  background: #299CA6;
}
.modal-toggle:before {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0.5px 6px rgba(21,48,64,0.14);
  transition: left 0.17s;
}
.modal-toggle.enabled:before { left: 18px; }
.cookie-modal .modal-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}
.cookie-modal .modal-close {
  background: none;
  border: none;
  color: #153040;
  font-size: 1.45rem;
  position: absolute;
  top: 18px;
  right: 18px;
  cursor: pointer;
  transition: color 0.14s;
  font-weight: 600;
}
.cookie-modal .modal-close:hover, .cookie-modal .modal-close:focus {
  color: #299CA6;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 991px) {
  .header-container { min-height: 54px; }
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}
@media (max-width: 768px) {
  .container { padding-left: 12px; padding-right: 12px; }
  .hero-section {
    min-height: 220px;
    padding: 0 0 12px 0;
  }
  .hero-section .container { min-height: 180px; padding: 18px 0; }
  .hero-section h1 { font-size: 1.5rem; }
  .features-section, .services-section, .testimonials-section, .about-section, .faq-section, .contact-section { padding: 26px 8px; }
  .feature-grid, .testimonial-slider, .service-list, .footer-nav {
    flex-direction: column;
    gap: 18px;
  }
  .feature-item, .testimonial-card, .service-list li {
    min-width: unset;
    max-width: 100%;
    width: 100%;
    padding: 20px 12px;
  }
  .testimonials-section { margin-bottom: 32px; }
}
@media (max-width: 540px) {
  .hero-section { min-height: 170px; }
  .hero-section .container { min-height: 130px; padding: 12px 0; }
  .hero-section h1 { font-size: 1.22rem; }
  .footer-nav { gap: 10px; }
  .footer-container { padding-bottom: 24px; }
}
@media (max-width: 420px) {
  .cookie-modal { padding: 16px 6px 14px 6px; }
}

/* ===== VISUAL MICRO-INTERACTIONS ===== */
.cta-primary, .cookie-btn, .main-nav a, .footer-nav a, .mobile-menu-close, .modal-close, .feature-item, .faq-item, .service-list li, .testimonial-card {
  transition: box-shadow 0.16s, background 0.16s, color 0.14s, transform 0.12s;
}
.cta-primary:active, .cookie-btn:active {
  transform: scale(0.98);
}

/* ===== UTILITIES ===== */
.mt-2 { margin-top: 12px; }
.mb-2 { margin-bottom: 12px; }
.mt-4 { margin-top: 24px; }
.mb-4 { margin-bottom: 24px; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.gap-2 { gap: 16px; }
.gap-4 { gap: 24px; }

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 8px;
  background: #f3f3f3;
}
::-webkit-scrollbar-thumb {
  background: #E4DCC2;
  border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
  background: #299CA6;
}
