/* --- CSS RESET & BASE STYLES --- */
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;
  background: #F7FAFB;
  color: #25434A;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button, .cta {
  cursor: pointer;
  font-family: inherit;
}
a {
  color: #155263;
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:focus {
  color: #DD8542;
}
ul, ol {
  margin: 0 0 1.25em 1.5em;
}

/* --- BRAND COLORS & CUSTOM PROPERTIES --- */
:root {
  --primary: #155263;
  --secondary: #77C8D5;
  --accent: #F2F2F2;
  --neutral-bg: #FFF;
  --muted-bg: #F7FAFB;
  --warn-highlight: #FFE2C6;
  --cta: #DD8542;
  --cta-hover: #EAAC7C;
  --shadow: 0 3px 16px rgba(21,82,99,0.12);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
}

/* --- TYPOGRAPHY --- */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,400|Roboto:400,500,700&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #155263;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: .5em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 8px;
}
h4 {
  font-size: 1.12rem;
  font-weight: 600;
}
p, li {
  font-size: 1rem;
  font-weight: 400;
  color: #25434A;
}
strong {
  font-weight: 700;
  color: #155263;
}

/* --- GENERAL LAYOUT STRUCTURE --- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1240px) {
  .container {
    max-width: 100%;
    padding: 0 8px;
  }
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--neutral-bg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}
@media (max-width: 768px) {
  .section {
    padding: 28px 6px;
    margin-bottom: 36px;
    border-radius: var(--radius-sm);
  }
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--neutral-bg);
  box-shadow: var(--shadow);
  border-radius: var(--radius-lg);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px 28px;
  min-width: 260px;
  flex: 1 1 300px;
  transition: box-shadow .18s, transform .18s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 28px rgba(21,82,99,0.15);
  transform: translateY(-2px) scale(1.02);
}

/* --- VISUAL ELEMENTS: BUTTONS & CTA --- */
.cta {
  display: inline-block;
  outline: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.12rem;
  font-weight: 600;
  border-radius: var(--radius-lg);
  padding: 13px 32px;
  margin: 12px 0 0 0;
  text-align: center;
  border: none;
  background: var(--cta);
  color: #fff;
  box-shadow: 0 2px 8px rgba(222,133,66,0.10);
  transition: background .18s, box-shadow .18s, transform .15s;
}
.cta.primary {
  background: var(--cta);
  color: #fff;
}
.cta.secondary {
  background: var(--secondary);
  color: #155263;
}
.cta:hover, .cta:focus {
  background: var(--cta-hover);
  color: #fff;
  box-shadow: 0 7px 32px rgba(222,133,66,0.12), var(--shadow);
  transform: translateY(-1px) scale(1.03);
}
.cta:active {
  background: #BC692D;
}

/* --- HEADER & NAVIGATION --- */
header {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 20;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  height: 84px;
}
header img {
  height: 48px;
  border-radius: var(--radius-lg);
}
nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}
nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #fff;
  padding: 7px 11px;
  border-radius: var(--radius-sm);
  transition: background .19s, color .19s;
}
nav a:hover, nav a:focus {
  background: rgba(119,200,213,0.14);
  color: var(--secondary);
}
header .cta.primary {
  margin: 0 0 0 18px;
  font-size: 1.06rem;
  background: var(--secondary);
  color: var(--primary);
  box-shadow: 0 2px 8px rgba(21,82,99,0.07);
  font-weight: 700;
  letter-spacing: 0.01em;
}
header .cta.primary:hover {
  background: #32BACF;
  color: #fff;
}

/* --- MOBILE NAVIGATION --- */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 2.1rem;
  color: #fff;
  transition: color .15s;
  margin-left: 10px;
  z-index: 22;
}
.mobile-menu-toggle:focus {
  color: var(--cta);
  outline: none;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: #FFFFFFEE;
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 0;
  transition: transform .36s cubic-bezier(0.86,0,0.07,1), opacity .2s;
  transform: translateX(-100vw);
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  border: none;
  background: none;
  font-size: 2.2rem;
  color: var(--primary);
  margin: 22px 28px 0 0;
  align-self: flex-end;
  cursor: pointer;
  transition: color .18s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: var(--cta);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
  margin: 68px 0 0 28px;
  width: 80vw;
}
.mobile-nav a {
  font-size: 1.22rem;
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 10px 5px;
  border-radius: var(--radius-sm);
  transition: background .16s;
  width: 100%;
  box-sizing: border-box;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--secondary);
  color: #fff;
}

/* Show/hide logic for burger */
@media (max-width: 900px) {
  header .container {
    gap: 8px;
  }
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}
@media (min-width: 901px) {
  .mobile-menu { display: none !important; }
}

/* --- HERO/FEATURES/SERVICES/TESTIMONIALS --- */
/* Features Section */
.feature-grid,
.service-list,
.service-category-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-evenly;
}
.feature-item, .service-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--accent);
  border-radius: var(--radius-md);
  box-shadow: 0 2px 7px rgba(21,82,99,0.06);
  padding: 28px 24px 28px 24px;
  min-width: 240px;
  flex: 1 1 220px;
  transition: box-shadow .17s, transform .16s;
}
.feature-item:hover, .service-item:hover {
  box-shadow: 0 7px 22px rgba(21,82,99,0.11);
  transform: scale(1.027);
}
.feature-item img, .service-item img {
  width: 46px;
  height: 46px;
  margin-bottom: 2px;
}
@media (max-width: 950px) {
  .feature-grid, .service-list, .service-category-grid {
    gap: 16px;
  }
  .feature-item, .service-item {
    min-width: 140px;
    flex-basis: 160px;
  }
}
@media (max-width: 650px) {
  .feature-grid, .service-list, .service-category-grid {
    gap: 8px;
    flex-direction: column;
    align-items: stretch;
  }
  .feature-item, .service-item {
    width: 100%;
    min-width: 0;
    padding: 22px 14px 22px 14px;
    border-radius: var(--radius-sm);
  }
}

/* Testimonials */
.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  padding: 24px 26px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  min-width: 260px;
  flex: 1 1 280px;
  margin-bottom: 20px;
  transition: box-shadow .16s, transform .14s;
  color: #1D2D31;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 8px 30px 0 rgba(21,82,99,0.14);
  transform: scale(1.018);
}
.testimonial-rating {
  display: flex;
  align-items: center;
  gap: 4px;
}
.testimonial-rating img {
  width: 22px;
  height: 22px;
}
.testimonial-author {
  font-size: 1.01rem;
  color: var(--cta);
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 600;
  margin-top: 7px;
}
@media (max-width: 700px) {
  .testimonials {
    flex-direction: column;
    gap: 12px;
  }
  .testimonial-card {
    padding: 18px 10px;
    border-radius: var(--radius-sm);
  }
}

/* --- PRICING TABLE --- */
.pricing-table table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background-color: var(--accent);
  border-radius: var(--radius-md);
  box-shadow: 0 2px 16px rgba(21,82,99,0.05);
  overflow: hidden;
  margin-bottom: 24px;
}
.pricing-table th, .pricing-table td {
  padding: 14px 18px;
  text-align: left;
}
.pricing-table th {
  background: var(--secondary);
  color: #155263;
  font-family: 'Montserrat',Arial,sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
}
.pricing-table td {
  font-size: 1.02rem;
  color: #25434A;
  background: #fff;
}
.pricing-table tr:not(:last-child) td {
  border-bottom: 1px solid #E7E7E7;
}
@media (max-width: 600px) {
  .pricing-table table, .pricing-table th, .pricing-table td {
    font-size: .93rem;
    padding: 10px 6px;
  }
}

.package-list ul {
  list-style: disc inside;
  margin: 0 0 0 1em;
  color: #155263;
}
.savings-highlight {
  background: var(--warn-highlight);
  border-left: 5px solid var(--cta);
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  color: #9E661A;
  margin: 16px 0;
  font-size: 1.06rem;
}

/* --- FAQ --- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 27px;
}
.faq-item h2 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: var(--primary);
}
.faq-item p {
  margin-bottom: 4px;
  color: #25434A;
}

.quick-links-to-services ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.quick-links-to-services a {
  color: var(--cta);
  font-weight: 600;
  text-decoration: underline;
  transition: color .16s;
}
.quick-links-to-services a:hover {
  color: var(--primary);
}

/* --- CONTACT BLOCKS --- */
.address-block, .phone-email, .office-hours, .contact-snippet {
  margin-bottom: 14px;
}
.address-block img, .phone-email img, .office-hours img {
  vertical-align: middle;
  margin-right: 6px;
  width: 22px;
  height: 22px;
}
.contact-info-snippet ul {
  list-style: none;
  margin: 7px 0 14px 0;
  padding: 0;
}
.contact-info-snippet li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

/* --- PROJECT HIGHLIGHT/CASE STUDY --- */
.case-study-snippets {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.project-highlight {
  background: var(--accent);
  border-radius: var(--radius-md);
  box-shadow: 0 2px 7px rgba(21,82,99,0.07);
  padding: 26px 20px;
  min-width: 220px;
  flex: 1 1 260px;
  margin-bottom: 20px;
}
@media (max-width: 700px) {
  .case-study-snippets {
    flex-direction: column;
    gap: 10px;
  }
  .project-highlight {
    padding: 14px 6px;
    border-radius: var(--radius-sm);
  }
}

/* --- UTILITIES --*/
.mt-0 {margin-top:0;}
.mb-0 {margin-bottom:0;}
.mt-1 {margin-top:8px;}
.mt-2 {margin-top:16px;}
.mt-3 {margin-top:24px;}
.mb-1 {margin-bottom:8px;}
.mb-2 {margin-bottom:16px;}
.mb-3 {margin-bottom:24px;}
.text-center {text-align:center;}
.text-right {text-align:right;}

/* --- FOOTER --- */
footer {
  background: var(--primary);
  color: #fff;
  padding: 36px 0 20px 0;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
footer img {
  margin-bottom: 14px;
  border-radius: var(--radius-lg);
  height: 44px;
}
footer a {
  color: #fff;
  opacity: .98;
  transition: color .14s;
  font-weight: 500;
}
footer a:hover, footer a:focus { color: var(--secondary); }
.footer-contact {
  font-size: .97rem;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
  footer img {
    margin-bottom: 4px;
  }
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background: #fff6f0;
  color: #25434A;
  display: flex;
  flex-direction: row;
  align-items: center;
  box-shadow: 0 -2px 24px 0 rgba(21,82,99,0.13);
  padding: 18px 32px;
  gap: 24px;
  border-top-left-radius: var(--radius-md);
  border-top-right-radius: var(--radius-md);
  opacity: 1;
  transform: translateY(0);
  transition: transform .34s, opacity .21s;
}
.cookie-banner.hide {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner-message {
  flex: 1 1 380px;
  font-size: 1.02rem;
}
.cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: center;
}
.cookie-btn {
  padding: 9px 18px;
  border-radius: var(--radius-md);
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  transition: background .17s, color .13s;
  background: var(--accent);
  color: var(--primary);
  box-shadow: 0 1px 4px rgba(21,82,99,0.07);
}
.cookie-btn.accept {
  background: var(--cta);
  color: #fff;
}
.cookie-btn.accept:hover {background: var(--cta-hover);}
.cookie-btn.reject {
  background: var(--secondary);
  color: var(--primary);
}
.cookie-btn.settings {
  background: #fff;
  color: var(--primary);
  border: 1.2px solid var(--cta);
}
.cookie-btn.settings:hover,
.cookie-btn.reject:hover {filter: brightness(0.97);}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 6px;
    font-size: 0.96rem;
    border-top-left-radius: var(--radius-sm);
    border-top-right-radius: var(--radius-sm);
  }
  .cookie-buttons {
    gap: 7px;
    flex-wrap: wrap;
  }
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(21,82,99,0.18);
  z-index: 1001;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  animation: fadeInCookie .35s;
  pointer-events: all;
}
@keyframes fadeInCookie {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal-content {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: 0 7px 38px rgba(21,82,99,0.19);
  padding: 32px 30px 28px 30px;
  max-width: 380px;
  width: 96vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-size: 1.01rem;
  color: #222;
  align-items: flex-start;
  position: relative;
}
.cookie-modal-content h3 {
  font-size: 1.22rem;
  margin-bottom: 8px;
}
.cookie-cat {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 10px 0;
  width: 100%;
}
.cookie-cat label {
  font-weight: 500;
  flex: 1;
  color: #155263;
}
.cookie-toggle {
  appearance: none;
  width: 38px;
  height: 20px;
  background: #E7E7E7;
  border-radius: 10px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background .13s;
}
.cookie-toggle:checked {
  background: var(--secondary);
}
.cookie-toggle:before {
  content: '';
  position: absolute;
  left: 2px; top: 2px;
  background: #fff;
  width: 16px; height: 16px;
  border-radius: 50%;
  box-shadow: 0 0 2px #aaa;
  transition: left .15s;
}
.cookie-toggle:checked:before {
  left: 20px;
}
.cookie-modal-close {
  position: absolute;
  top: 13px;
  right: 17px;
  border: none;
  background: none;
  color: #155263;
  font-size: 1.5rem;
  cursor: pointer;
}
.cookie-modal-actions {
  margin-top: 10px;
  display: flex;
  flex-direction: row;
  gap: 14px;
  width: 100%;
}
.cookie-modal-actions .cookie-btn {
  flex: 1;
}
@media (max-width: 440px) {
  .cookie-modal-content {
    padding: 15px 4px 14px 8px;
    min-width: 0;
    font-size: .99rem;
  }
  .cookie-modal-content h3 {
    font-size:1.02rem;
  }
}

/* --- GENERAL RESPONSIVE --- */
@media (max-width: 768px) {
  .container {
    max-width: 100vw;
    padding: 0 4px;
  }
  header .container {
    height: 62px;
    gap: 4px;
    padding: 0 3px;
  }
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
  }
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

/* --- THANK YOU PAGE --- */
.thank-you-next-steps ul {
  list-style: disc inside;
  margin-top: 7px;
  padding-left: 12px;
  color: #155263;
}

/* --- INDUSTRY LIST ETC. --- */
.industry-list, .client-industries ul {
  list-style: disc inside;
  margin: 7px 0 14px 22px;
  color: #155263;
  font-weight: 500;
}
.client-logos-text-only {
  margin-top: 12px;
  padding: 8px;
  font-size: 1rem;
  color: #838282;
}

/* --- SPECIAL STYLES FOR LEGAL TEXTS --- */
.legal-text {
  background: var(--accent);
  border-radius: var(--radius-md);
  padding: 22px 18px;
  box-shadow: 0 1px 7px rgba(21,82,99,0.07);
  font-size: 0.99rem;
}
.legal-text ul {
  list-style: disc inside;
  color: #155263;
  margin-left: 1em;
}

/* --- MISC --- */
::-webkit-input-placeholder {color: #b3bbb9;}
::-moz-placeholder { color: #b3bbb9; }
:-ms-input-placeholder { color: #b3bbb9; }
::placeholder { color: #b3bbb9; }

/* --- HIDING DEFAULT FOCUS OUTLINES --- */
:focus {
  outline:2px solid var(--secondary);
  outline-offset:2px;
}

/* ENFORCE SPACING & AVOID OVERLAPS */
section + section {
  margin-top: 36px !important;
}
.content-wrapper > *:not(:last-child) {
  margin-bottom: 20px;
}

/* END OF STYLE.CSS */
