/* ========================
   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 {
  line-height: 1.15;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  background: #F4F5F6;
  color: #222;
  min-height: 100vh;
  font-size: 16px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

a {
  color: #43AA8B;
  text-decoration: none;
  transition: color 0.2s;
}

a:hover, a:focus {
  color: #EE6C4D;
  outline: none;
}

button {
  background: none;
  border: none;
  font-family: inherit;
  cursor: pointer;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  border-radius: 6px;
  border: 1px solid #d9d9d9;
  padding: 10px 14px;
  margin-bottom: 16px;
  outline: none;
  transition: border 0.2s;
}
input:focus, textarea:focus, select:focus {
  border-color: #43AA8B;
}


/* ============
   COLORS & VARIABLES
   ============ */
:root {
  --color-primary: #264653;
  --color-secondary: #43AA8B;
  --color-accent: #F4F5F6;
  --color-electric: #00D6D9; /* for vibrancy */
  --color-energy: #F8333C; /* for energetic accents */
  --color-light: #FFFFFF;
  --color-dark: #222831;
  --color-gray: #CBD2D9;
  --color-shadow: rgba(38,70,83,0.09);
}


/* ============
   TYPOGRAPHY
   ============ */
h1, .hero-section h1 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 24px;
  line-height: 1.15;
  letter-spacing: -1.5px;
  text-shadow: 0 2px 8px rgba(0,214,217,0.06);
}

h2 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-energy);
  margin-bottom: 16px;
  line-height: 1.2;
  letter-spacing: -1px;
}

h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 10px;
}

h4 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 8px;
}

p {
  color: var(--color-dark);
  font-size: 1rem;
  margin-bottom: 16px;
  line-height: 1.6;
}

strong {
  color: var(--color-primary);
  font-weight: 700;
}


/* ============
   GENERAL LAYOUT/SECTION PATTERNS
   ============ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
  box-sizing: border-box;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-accent);
  border-radius: 20px;
  box-shadow: 0 6px 28px 0 var(--color-shadow);
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.text-section,
.contact-details,
.pricing-notes,
.text-image-section {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.team-grid,
.service-categories,
.feature-grid,
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: stretch;
  margin-top: 12px;
}

.team-grid > div,
.service-categories > div,
.feature-grid > div {
  background: var(--color-light);
  border-radius: 16px;
  box-shadow: 0 2px 16px 0 var(--color-shadow);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 350px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.2s;
  border-bottom: 3px solid var(--color-electric);
}
.team-grid > div:hover,
.service-categories > div:hover,
.feature-grid > div:hover {
  box-shadow: 0 8px 32px 0 rgba(248,51,60,0.09), 0 2px 16px 0 var(--color-shadow);
  transform: translateY(-4px) scale(1.03);
  border-bottom: 3px solid var(--color-energy);
}

.trust-badges {
  gap: 32px;
  margin-top: 20px;
  align-items: center;
}
.trust-badges img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-electric);
  padding: 6px;
  box-shadow: 0 2px 16px 0 var(--color-shadow);
  transition: background 0.2s;
}
.trust-badges img:hover {
  background: var(--color-energy);
}

.usp-list ul,
.text-section ul,
.pricing-notes ul {
  list-style: disc inside;
  padding-left: 16px;
  color: var(--color-secondary);
}
.usp-list ul li,
.text-section ul li,
.pricing-notes ul li {
  margin-bottom: 10px;
  font-size: 1rem;
}


/* ============
   HERO SECTION
   ============ */
.hero-section {
  background: linear-gradient(93deg, var(--color-secondary) 0%, var(--color-electric) 80%, var(--color-accent) 100%);
  min-height: 380px;
  display: flex;
  align-items: center;
  padding-top: 64px;
  padding-bottom: 64px;
  border-radius: 0 0 36px 36px;
  box-shadow: 0 8px 40px 0 rgba(0,214,217,0.12);
}
.hero-section .container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
}
.hero-section .content-wrapper {
  max-width: 650px;
  gap: 32px;
}
.hero-section h1 {
  color: #fff;
  text-shadow: 0 4px 20px rgba(38,70,83,0.16);
}
.hero-section p {
  font-size: 1.25rem;
  color: #e6f4f1;
  font-weight: 500;
  margin-bottom: 18px;
}


/* ============
   NAVIGATION
   ============ */
header {
  background: var(--color-light);
  box-shadow: 0 2px 12px 0 var(--color-shadow);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 20;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
}
header a img {
  height: 40px;
  margin-right: 24px;
}
nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  color: var(--color-primary);
  font-size: 1rem;
  transition: color 0.18s;
  position: relative;
  padding: 6px 2px;
  border-radius: 4px;
  margin-bottom: 0;
}
nav a:after {
  content: '';
  display: block;
  width: 0;
  height: 3px;
  background: var(--color-electric);
  border-radius: 3px;
  position: absolute;
  left: 0;
  bottom: -5px;
  transition: width 0.2s;
}
nav a:hover:after,
nav a:focus:after {
  width: 70%;
}
.cta-button {
  background: linear-gradient(93deg, var(--color-energy) 40%, var(--color-electric) 90%);
  color: #fff !important;
  font-weight: 800;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.08rem;
  border-radius: 24px;
  padding: 12px 32px 12px 28px;
  margin-left: 16px;
  box-shadow: 0 4px 18px 0 rgba(248,51,60,0.13);
  border: none;
  transition: background 0.17s, transform 0.13s, box-shadow 0.17s;
  position: relative;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  outline: none;
  display: inline-block;
}
.cta-button:hover, .cta-button:focus {
  background: linear-gradient(93deg, var(--color-electric) 30%, var(--color-energy) 100%);
  transform: scale(1.05);
  box-shadow: 0 6px 30px 0 rgba(248,51,60,0.19);
  text-decoration: none !important;
  color: #fff !important;
}

.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  color: var(--color-energy);
  background: var(--color-light);
  border-radius: 8px;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 2px solid #fff;
  box-shadow: 0 1px 6px 0 var(--color-shadow);
  margin-left: 14px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  z-index: 110;
}

.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--color-electric);
  color: #fff;
}


/* =============
   MOBILE BURGER MENU
   ============= */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(38,70,83, 0.88);
  z-index: 200;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.77,0,.18,1);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  padding-top: 0;
  box-sizing: border-box;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.2rem;
  color: #fff;
  background: none;
  border: none;
  margin: 24px 28px 16px 0;
  align-self: flex-end;
  z-index: 210;
  cursor: pointer;
  transition: color 0.14s, background 0.14s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--color-electric);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  gap: 8px;
  padding: 18px 32px;
  margin-top: 8px;
  box-sizing: border-box;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
  padding: 14px 0 14px 0;
  margin: 0 0 4px 0;
  width: 100%;
  border-radius: 5px;
  transition: background 0.16s, color 0.17s;
  text-align: left;
  outline: none;
  letter-spacing: 0.04em;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-electric);
  color: var(--color-primary);
}


/* =============
   MAIN CONTENT FLEX LAYOUTS
   ============= */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: #fff;
  color: #222;
  border-radius: 22px;
  box-shadow: 0 4px 24px 0 rgba(67,170,139,0.11), 0 2px 16px 0 var(--color-shadow);
  padding: 32px 38px 22px 38px;
  min-width: 240px;
  max-width: 410px;
  margin-bottom: 20px;
  margin-right: 16px;
  border-left: 8px solid var(--color-electric);
  transition: box-shadow 0.16s;
}
.testimonial-card p {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--color-primary);
}
.testimonial-card strong {
  color: var(--color-energy);
  font-size: 1rem;
  font-weight: 700;
}
.testimonial-card:hover {
  box-shadow: 0 8px 38px 0 rgba(67,170,139,0.2);
}

.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}


/* =============
   PRICING TABLE
   ============= */
.pricing-table {
  overflow-x: auto;
  margin-bottom: 20px;
  width: 100%;
}
.pricing-table table {
  border-collapse: collapse;
  min-width: 350px;
  width: 100%;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 16px 0 rgba(38,70,83,0.11);
  margin-bottom: 12px;
}
.pricing-table th, .pricing-table td {
  padding: 16px 28px;
  text-align: left;
  font-size: 1rem;
  border-bottom: 2px solid var(--color-accent);
}
.pricing-table th {
  background: var(--color-secondary);
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.13rem;
  font-weight: 800;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}
.pricing-table tr:nth-child(even) td {
  background: var(--color-electric);
  color: var(--color-primary);
}

.pricing-notes ul {
  margin-top: 6px;
}


/* ===========
   FAQ & HELP
   =========== */
.faq-list h3 {
  color: var(--color-primary);
  margin: 24px 0 6px 0;
  font-size: 1.17rem;
}
.faq-list p {
  margin-bottom: 10px;
}
.contact-for-help {
  margin-top: 18px;
  padding: 18px 22px;
  background: var(--color-electric);
  border-radius: 9px;
  color: var(--color-primary);
  font-size: 1.06rem;
  box-shadow: 0 2px 16px 0 var(--color-shadow);
}


/* ===========
   MAPS/ADDRESS
   =========== */
.map-embed {
  margin-top: 10px;
  border-radius: 11px;
  background: var(--color-gray);
  padding: 14px 24px;
  color: var(--color-primary);
  box-shadow: 0 2px 12px 0 var(--color-shadow);
}


/* ===========
   FOOTER
   =========== */
footer {
  background: var(--color-primary);
  color: #fff;
  margin-top: 70px;
  border-radius: 32px 32px 0 0;
  box-shadow: 0 4px 20px 0 rgba(38,70,83,0.16);
  position: relative;
  z-index: 3;
}
.footer-main {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  padding: 44px 0 20px 0;
  align-items: flex-start;
}
.footer-main > div {
  min-width: 156px;
  max-width: 260px;
}
.footer-main img {
  width: 70px;
  margin-bottom: 20px;
}
.footer-main h4 {
  color: var(--color-electric);
  margin-bottom: 10px;
  font-size: 1.04rem;
}
.footer-main ul li {
  color: #e5e7ea;
  margin-bottom: 12px;
  font-size: 0.98rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-main ul li a {
  color: #fff;
  transition: color 0.16s;
}
.footer-main ul li a:hover, .footer-main ul li a:focus {
  color: var(--color-electric);
  text-decoration: underline;
}
.footer-bottom {
  border-top: 1px solid #3a4a5a;
  text-align: center;
  padding: 14px 0;
  font-size: 0.9rem;
  color: #d0eef4;
}


/* ===========
   COOKIE CONSENT BANNER
   =========== */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: rgba(38,70,83,0.97);
  color: #fff;
  z-index: 999;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 26px 22px 26px;
  border-radius: 24px 24px 0 0;
  box-shadow: 0 -2px 21px 0 rgba(0,214,217,0.14);
  transition: transform 0.34s cubic-bezier(.77,0,.18,1), opacity 0.2s;
  opacity: 1;
}
.cookie-banner.hidden {
  transform: translateY(220px);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner p {
  font-size: 1.04rem;
  color: #FFF;
  margin-right: 28px;
  margin-bottom: 0;
  max-width: 520px;
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.cookie-banner button {
  padding: 10px 20px;
  border-radius: 23px;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  outline: none;
  color: #fff;
  background: var(--color-secondary);
  transition: background 0.18s, color 0.18s, box-shadow 0.2s;
  margin: 0 2px;
  box-shadow: 0 1px 5px 0 var(--color-shadow);
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--color-energy);
  color: #fff;
}
.cookie-banner .cookie-btn-settings {
  background: var(--color-electric);
  color: var(--color-primary);
}
.cookie-banner .cookie-btn-settings:hover {
  background: var(--color-energy);
  color: #fff;
}

/* ===========
   COOKIE CONSENT MODAL
   =========== */
.cookie-modal-overlay {
  position: fixed;
  z-index: 1000;
  left: 0; right: 0; top: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(34,40,49,0.61);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  animation: fadeInModal 0.3s;
}
@keyframes fadeInModal {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  box-shadow: 0 10px 42px 0 rgba(38,70,83,0.20);
  border-radius: 24px;
  max-width: 380px;
  width: 97vw;
  padding: 38px 30px 28px 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  z-index: 1011;
  animation: bounceInModal 0.42s cubic-bezier(.45,1.87,.43,.94);
}
@keyframes bounceInModal {
  0% { transform: scale(.93); opacity: 0; }
  60% { transform: scale(1.06); }
  90% { transform: scale(0.98); }
  100% { transform: scale(1); opacity: 1; }
}
.cookie-modal h2 {
  margin-bottom: 16px;
  color: var(--color-primary);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 18px;
  right: 26px;
  color: var(--color-energy);
  background: none;
  border: none;
  font-size: 1.3rem;
  font-weight: bold;
  cursor: pointer;
}
.cookie-categories {
  width: 100%;
  margin-bottom: 20px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.cookie-category label {
  font-size: 1rem;
  color: var(--color-dark);
  font-weight: 600;
}
.cookie-category small {
  color: var(--color-primary);
  font-size: 0.94rem;
  opacity: 0.7;
  margin-left: 6px;
}
.cookie-switch {
  width: 34px;
  height: 20px;
  border-radius: 11px;
  background: var(--color-accent);
  border: 1px solid var(--color-secondary);
  position: relative;
  transition: background 0.2s;
  margin-right: 6px;
  flex-shrink: 0;
  display: inline-block;
}
.cookie-switch input {
  opacity: 0;
  width: 0; height: 0;
}
.cookie-switch span {
  display: block;
  width: 18px;
  height: 18px;
  background: var(--color-secondary);
  border-radius: 50%;
  position: absolute;
  left: 2px;
  top: 1px;
  transition: background 0.19s, left 0.23s cubic-bezier(.63,.12,.44,1.03);
}
.cookie-switch input:checked + span {
  background: var(--color-energy);
  left: 13px;
}
.cookie-category .essential-label {
  color: var(--color-secondary);
  font-weight: 700;
}

.cookie-modal .cookie-modal-btns {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 16px;
  width: 100%;
}
.cookie-modal .cookie-modal-btns button {
  padding: 9px 18px;
  border-radius: 19px;
  border: none;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.01rem;
  background: var(--color-secondary);
  color: #fff;
  transition: background 0.14s;
}
.cookie-modal .cookie-modal-btns button:hover {
  background: var(--color-energy);
}


/* ===========
   RESPONSIVE DESIGN
   =========== */
@media (max-width: 1140px) {
  .container {
    max-width: 1000px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 760px;
  }
  .footer-main {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 8px;
  }
  .section {
    margin-bottom: 40px;
    padding: 28px 8px;
  }
  .content-wrapper {
    gap: 14px;
  }
  .feature-grid, .service-categories, .team-grid, .trust-badges, .testimonial-slider, .card-container {
    gap: 16px;
  }
  .team-grid > div, .service-categories > div, .feature-grid > div {
    min-width: 142px;
    padding: 16px 9px;
  }
  .testimonial-card {
    min-width: 0;
    max-width: 100%;
    padding: 20px 12px 15px 12px;
  }
  .footer-main {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .footer-main > div {
    max-width: none;
    min-width: 0;
  }
}
@media (max-width: 570px) {
  .hero-section {
    min-height: 220px;
    padding-top: 28px;
    padding-bottom: 38px;
    border-radius: 0 0 18px 18px;
  }
  .hero-section .container {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }
  .hero-section h1 {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }
  .hero-section p {
    font-size: 1rem;
  }
}
@media (max-width: 680px) {
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 681px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
  nav {
    display: flex;
  }
}
@media (max-width: 600px) {
  .footer-main {
    flex-direction: column;
    gap: 18px;
    padding: 28px 0 9px 0;
  }
  .section {
    padding: 16px 3px;
  }
}

@media (max-width: 570px) {
  h1,
  .hero-section h1 {
    font-size: 1.24rem;
  }
  h2 {
    font-size: 1.08rem;
  }
  h3 {
    font-size: 1rem;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 8px 14px 8px;
  }
  .cookie-banner p {
    font-size: 0.97rem;
    max-width: 98vw;
    margin-right: 0;
  }
  .cookie-banner .cookie-buttons {
    gap: 8px;
  }
}

@media (max-width: 589px) {
  .content-grid, .testimonial-slider, .card-container, .team-grid, .feature-grid, .service-categories, .trust-badges {
    flex-direction: column !important;
    gap: 14px;
  }
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 14px;
  }
}
