/* Zaviro Spark style.css - Scandinavian Clean, Responsive, Flexbox-only, Brand-compliant  */

/* ===== CSS 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 {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #143965;
  background: #F9FBFD;
  min-height: 100vh;
  line-height: 1.6;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #143965;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #FFC200;
}
a:hover, a:active {
  color: #FFC200;
}
ul, ol {
  margin-left: 1.3em;
  padding-left: 0.5em;
}
strong {
  font-weight: 700;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #143965;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.18;
  margin-bottom: 18px;
}
h2 {
  font-size: 1.8rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
p {
  margin-bottom: 15px;
  font-size: 1rem;
}
.section p:last-child, .content-wrapper p:last-child, .text-section p:last-child {
  margin-bottom: 0;
}

/* ==== CONTAINER/LAYOUT COMMONS ==== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ===== SCANDINAVIAN CLEAN SECTION SPACING ===== */
.section,
.hero-section,
.process-section,
.features-section,
.services-section,
.about-section,
.team-section,
.contact-section,
.thankyou-section,
.legal-section,
.faq-section,
.comparison-tool,
.availability-tool-section,
.speedtest-tool-section,
.testimonials-section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(20,57,101,0.06);
}
@media (max-width: 768px) {
  .section,
  .hero-section,
  .process-section,
  .features-section,
  .services-section,
  .about-section,
  .team-section,
  .contact-section,
  .thankyou-section,
  .legal-section,
  .faq-section,
  .comparison-tool,
  .availability-tool-section,
  .speedtest-tool-section,
  .testimonials-section {
    padding: 24px 10px;
    margin-bottom: 36px;
    border-radius: 10px;
  }
}

/* === FLEX UTILS FOR CARDS, FEATURES, TESTIMONIALS, ETC === */
.card-container, .feature-grid, .testimonial-list, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
@media (max-width: 768px) {
  .card-container, .feature-grid, .testimonial-list, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.content-grid {
  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;
    align-items: flex-start;
  }
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding: 20px;
  background: #E7ECF1;
  border-radius: 14px;
  box-shadow: 0 1px 4px rgba(20,57,101,0.08);
  min-width: 260px;
  flex: 1 1 250px;
}
.testimonial-card p {
  color: #131a23;
  font-size: 1.08rem;
}
.testimonial-card span {
  color: #143965;
  font-size: 0.97rem;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #F9FBFD;
  border-radius: 12px;
  padding: 22px 18px 18px 18px;
  box-shadow: 0 2px 8px rgba(20,57,101,0.03);
  min-width: 220px;
  flex: 1 1 205px;
  margin-bottom: 20px;
}
.feature-item h3 {
  margin-bottom: 6px;
}
.service-item {
  background: #F4F6F9;
  border-radius: 10px;
  box-shadow: 0 0.5px 4px rgba(20,57,101,0.06);
  padding: 22px 18px 16px 18px;
  margin-bottom: 20px;
  flex: 1 1 235px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 768px) {
  .service-item {
    min-width: 0;
    width: 100%;
  }
}

/***** Step Lists & About Cards *****/
.step-list, .step-by-step-list, .team-section ul, .about-section ul, .faq-section ul, .text-section ul {
  margin: 0 0 8px 0;
  padding-left: 21px;
  list-style: disc outside;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.address-tool-info, .address-info-box {
  background: #E7ECF1;
  border-radius: 8px;
  padding: 10px 15px;
  color: #143965;
  margin-top: 8px;
  font-size: 0.98rem;
  line-height: 1.5;
}

/***** HEADER & NAVIGATION *****/
header {
  background: #fff;
  box-shadow: 0 2px 12px rgba(20,57,101,0.05);
  padding: 0 0 0 0;
  position: relative;
  z-index: 30;
}
.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 78px;
  padding-top: 16px;
  padding-bottom: 16px;
}
.logo-link {
  display: flex;
  align-items: center;
  padding: 0 0 0 2px;
  transition: opacity 0.15s;
}
.logo-link:hover { opacity: 0.8; }
.main-nav {
  display: flex;
  gap: 22px;
  align-items: center;
  font-family: 'Montserrat', Arial, sans-serif;
}
.main-nav a {
  font-size: 1.07rem;
  font-weight: 500;
  color: #143965;
  letter-spacing: 0.02em;
  border-radius: 7px;
  padding: 7px 12px;
  transition: background 0.17s, color 0.17s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #E7ECF1;
  color: #FFC200;
}
.btn-primary {
  background: #143965;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  box-shadow: 0 2px 6px rgba(20,57,101,0.09);
  margin-left: 18px;
  cursor: pointer;
  transition: background 0.16s, color 0.16s, box-shadow 0.18s;
  display: inline-block;
  letter-spacing: 0.02em;
}
.btn-primary:hover, .btn-primary:focus {
  background: #1e599c;
  color: #FFC200;
  box-shadow: 0 3px 18px rgba(20,57,101,0.13);
}
.btn-secondary {
  background: #FFC200;
  color: #143965;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.02rem;
  border: none;
  border-radius: 8px;
  padding: 9px 20px;
  margin-top: 6px;
  margin-bottom: 6px;
  cursor: pointer;
  transition: background 0.17s, color 0.17s, box-shadow 0.17s;
  display: inline-block;
  letter-spacing: 0.01em;
  box-shadow: 0 2px 8px rgba(255,194,0,0.12);
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #ffd84b;
  color: #143965;
  box-shadow: 0 5px 16px rgba(255,194,0,0.17);
}

/* Mobile Burger Button */
.mobile-menu-toggle {
  background: none;
  border: none;
  font-size: 2rem;
  color: #143965;
  cursor: pointer;
  padding: 4px 11px 4px 11px;
  display: none;
  align-items: center;
  transition: color 0.23s;
  z-index: 33;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #FFC200;
}
@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .btn-primary {
    margin-left: 5px;
    padding: 8px 14px;
    font-size: 0.98rem;
  }
  .header-bar {
    gap: 7px;
  }
}

/* ===== MOBILE MENU OVERLAY ===== */
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(247,249,251,0.98);
  z-index: 1200;
  transform: translateX(100%);
  transition: transform 0.37s cubic-bezier(.68,-.35,.34,1.42);
  box-shadow: -3px 0 12px rgba(20,57,101,0.10);
}
.mobile-menu.open {
  transform: translateX(0%);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 15px 22px 0 0;
  background: none;
  border: none;
  font-size: 2.4rem;
  color: #143965;
  cursor: pointer;
  transition: color 0.18s;
  z-index: 1220;
}
.mobile-menu-close:focus {
  outline: 2px solid #FFC200;
}
.mobile-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 18px 32px 18px 24px;
  width: 100%;
  gap: 7px;
}
.mobile-nav a {
  font-size: 1.17rem;
  color: #143965;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  padding: 12px 8px;
  margin-top: 3px;
  border-radius: 7px;
  transition: background 0.20s, color 0.17s;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #E7ECF1;
  color: #FFC200;
}
@media (min-width:1025px) {
  .mobile-menu { display: none !important; }
}

/* ==== HERO SECTIONS ==== */
.hero-section {
  background: linear-gradient(105deg, #F9FBFD 65%, #E7ECF1 100%);
  margin-bottom: 50px;
  padding-top: 56px;
  padding-bottom: 56px;
  border-radius: 24px;
  box-shadow: 0 2px 20px rgba(20,57,101,0.05);
}
.hero-section h1 {
  font-size: 2.7rem;
  margin-bottom: 22px;
  color: #143965;
}
@media (max-width: 768px) {
  .hero-section {
    padding-top: 38px;
    padding-bottom: 38px;
    border-radius: 13px;
    margin-bottom: 26px;
  }
  .hero-section h1 {
    font-size: 2rem;
  }
}

/* ==== FOOTER ==== */
footer {
  background: #F4F6F9;
  padding: 36px 0 23px 0;
  margin-top: 34px;
}
.footer-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 15px;
}
.footer-nav a {
  font-size: 1rem;
  color: #143965;
  opacity: 0.9;
  padding: 6px 11px;
  border-radius: 7px;
  transition: background 0.13s, color 0.15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #E7ECF1;
  color: #FFC200;
}
.company-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 7px;
}
.company-info a {
  color: #143965;
}
@media (max-width: 768px) {
  .footer-nav {
    gap: 17px;
  }
  .company-info {
    font-size: 0.96rem;
  }
}

/* ==== FORM ELEMENTS (address tools etc.) ==== */
input[type="text"], input[type="email"], input[type="number"], textarea {
  padding: 10px 14px;
  border-radius: 6px;
  border: 1.5px solid #D1D9E2;
  background: #fff;
  color: #143965;
  font-family: inherit;
  font-size: 1.01rem;
  width: 100%;
  margin-bottom: 14px;
  transition: border 0.18s;
}
input:focus, textarea:focus {
  border: 1.5px solid #FFC200;
  outline: none;
}
label {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #143965;
  margin-bottom: 3px;
  display: block;
  font-size: 1.01rem;
}

/* Placeholder color */
input::placeholder, textarea::placeholder {
  color: #7a8ba5;
  opacity: 1;
}

/* ============= COOKIE CONSENT BANNER ============= */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 2000;
  background: #fff;
  border-top: 1.5px solid #D1D9E2;
  box-shadow: 0 -2.5px 26px 0 rgba(20,57,101,0.11);
  padding: 29px 4vw 22px 4vw;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  font-size: 1rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(60px);
  transition: opacity 0.25s, transform 0.37s;
}
.cookie-banner.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.cookie-banner-text {
  color: #143965;
  max-width: 480px;
  line-height: 1.59;
  margin-right: 20px;
  flex: 3 1 320px;
}
.cookie-banner-btns {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  flex: 2 1 220px;
  justify-content: flex-end;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border: none;
  border-radius: 7px;
  padding: 8px 20px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.15s, color 0.13s, box-shadow 0.16s;
}
.cookie-btn.accept {
  background: #143965;
  color: #fff;
  box-shadow: 0 1px 7px rgba(20,57,101,0.10);
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #1e599c;
  color: #FFC200;
}
.cookie-btn.reject {
  background: transparent;
  color: #143965;
  border: 1.5px solid #143965;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #E7ECF1;
  color: #143965;
}
.cookie-btn.settings {
  background: #FFC200;
  color: #143965;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #ffd84b;
  color: #143965;
}
@media (max-width: 820px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 20px 10px 18px 10px;
  }
  .cookie-banner-btns {
    width: 100%;
    justify-content: flex-start;
    gap: 10px;
  }
}

/* COOKIE SETTINGS MODAL */
.cookie-consent-modal {
  position: fixed;
  z-index: 2500;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(34,38,49,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.31s;
}
.cookie-consent-modal.visible {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal-content {
  background: #fff;
  padding: 34px 30px 26px 30px;
  border-radius: 16px;
  box-shadow: 0 8px 38px rgba(20,57,101,0.17);
  min-width: 312px;
  max-width: 98vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  font-size: 1rem;
  color: #143965;
  animation: cookie-modal-zoom 0.37s cubic-bezier(.57,1.57,.43,.87);
}
@keyframes cookie-modal-zoom {
  0% { transform: scale(0.95); opacity: 0; }
  50% { opacity: 0.7; }
  100% { transform: scale(1.0); opacity: 1; }
}
.cookie-modal-title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 2px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 13px 0 4px 0;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
}
.cookie-category label {
  cursor: pointer;
  margin-bottom: 0;
}
.cookie-category input[type="checkbox"] {
  accent-color: #FFC200;
  width: 19px;
  height: 19px;
}
.cookie-category.essential label {
  font-weight: 600;
  color: #38801a;
}
.cookie-category.essential input[type="checkbox"] {
  accent-color: #38801a;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 13px;
  margin-top: 14px;
  justify-content: flex-end;
}
.cookie-modal-close {
  position: absolute;
  right: 18px; top: 15px;
  background: none;
  color: #143965;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  opacity: 0.87;
  transition: color 0.18s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #FFC200;
  outline: none;
}
@media (max-width: 520px) {
  .cookie-modal-content {
    padding: 19px 6vw 17px 6vw;
    min-width: 0;
  }
}

/* ==== RESPONSIVE ==== */
@media (max-width: 1200px) {
  .container {
    max-width: 100vw;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 1.5rem;
  }
  h2 {
    font-size: 1.17rem;
  }
  .feature-item, .testimonial-card {
    min-width: 0;
    width: 100%;
  }
  .content-grid {
    flex-direction: column;
    gap: 14px;
  }
}

/* === SECTION AND CARD SPACING (MANDATORY) === */
.section, .card, .feature-item, .testimonial-card, .service-item {
  margin-bottom: 20px !important;
}
.card-container, .feature-grid, .testimonial-list, .content-grid, .content-wrapper {
  gap: 20px;
}

/* === CONTACT INFO === */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 1rem;
  color: #143965;
  margin-bottom: 10px;
}
.address-map {
  margin-top: 12px;
  background: #F9FBFD;
  padding: 9px 17px;
  border-radius: 7px;
  color: #143965;
  font-size: 0.97rem;
}

/* === THANK YOU PAGE === */
.thankyou-section {
  text-align: center;
  background: #fff;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* === LEGAL TEXT SECTIONS === */
.legal-section h1, .legal-section h2 {
  margin-bottom: 12px;
}
.legal-section ul, .legal-section ol {
  margin-bottom: 14px;
}
.legal-section p {
  font-size: 1.05rem;
}

/* === MICRO-INTERACTIONS & TRANSITIONS === */
.feature-item, .testimonial-card, .service-item {
  transition: box-shadow 0.18s, transform 0.12s;
}
.feature-item:hover, .testimonial-card:hover, .service-item:hover {
  box-shadow: 0 7px 28px rgba(20,57,101,0.11);
  transform: translateY(-3px) scale(1.013);
}

/* === Miscellaneous === */
::-webkit-scrollbar {
  width: 9px;
  background: #E7ECF1;
}
::-webkit-scrollbar-thumb {
  background: #D1D9E2;
  border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover {
  background: #b3bccc;
}

/* === BRAND FONTS === */
@font-face {
  font-family: 'Montserrat';
  font-weight: 400; font-style: normal;
  font-display: swap;
  src: local('Montserrat'), url('https://fonts.gstatic.com/s/montserrat/v24/JTUHjIg1_i6t8kCHKm459WxRyS7j.woff2') format('woff2');
}
@font-face {
  font-family: 'Montserrat'; font-weight: 700; font-style: normal;
  font-display: swap;
  src: local('Montserrat Bold'), url('https://fonts.gstatic.com/s/montserrat/v24/JTUHjIg1_i6t8kCHKm459WxZyS7j.woff2') format('woff2');
}
@font-face {
  font-family: 'Open Sans'; font-weight: 400; font-style: normal;
  font-display: swap;
  src: local('Open Sans'), url('https://fonts.gstatic.com/s/opensans/v27/mem8YaGs126MiZpBA-UFW50bbck.woff2') format('woff2');
}
@font-face {
  font-family: 'Open Sans'; font-weight: 700; font-style: normal;
  font-display: swap;
  src: local('Open Sans Bold'), url('https://fonts.gstatic.com/s/opensans/v27/mem5YaGs126MiZpBA-UN_r8OX-hpOqc.woff2') format('woff2');
}

/* ==========================================
   END OF FILE. All flexbox, no grid/columns!
============================================= */
