/* SKYLINE SPIRE - STYLE.CSS (MINIMALIST, FLEXBOX-ONLY) */
/* RESET & BASELINE ------------------------------------------- */
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: #fff;
  color: #1d2630;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color .2s;
}
ul, ol {
  list-style: none;
}
button {
  cursor: pointer;
  font-family: inherit;
  background: none;
  border: none;
  padding: 0;
  color: inherit;
}
/* GENERAL LAYOUT & CONTAINER ------------------------------ */
.container {
  display: flex;
  flex-direction: column;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
/* TYPOGRAPHY ---------------------------------------------- */
h1, h2, h3, h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #1d2630;
  letter-spacing: -0.02em;
}
h1 {
  font-size: 2.75rem;
  margin-bottom: 18px;
  line-height: 1.12;
}
h2 {
  font-size: 2rem;
  margin-bottom: 14px;
  line-height: 1.18;
}
h3 {
  font-size: 1.33rem;
  margin-bottom: 8px;
  line-height: 1.18;
}
p, li, a, blockquote {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #1d2630;
}
strong {
  font-weight: 600;
  color: #205378;
}
blockquote {
  font-style: italic;
  color: #205378;
  border-left: 4px solid #ECEFF1;
  padding-left: 16px;
  margin-bottom: 8px;
}
.text-section, .text-section ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.text-section ul li {
  padding-left: 18px;
  position: relative;
}
.text-section ul li:before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #67953A;
  position: absolute;
  left: 0;
  top: 0.7em;
  opacity: .38;
}
/* HEADER & NAV ------------------------------------------- */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 10px rgba(32,83,120,0.06);
  position: relative;
  z-index: 10;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
}
header nav {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #205378;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 4px;
  transition: background .2s, color .2s;
}
header nav a:hover,
header nav a:focus {
  background: #ECEFF1;
  color: #67953A;
}
header img[alt="Skyline Spire"] {
  width: 120px;
  height: auto;
}
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #205378;
  color: #fff;
  border-radius: 24px;
  padding: 8px 32px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  box-shadow: 0 2px 12px rgba(32,83,120,0.07);
  transition: background .18s, box-shadow .18s, color .18s;
  border: 1px solid #205378;
  margin-left: 8px;
  outline: none;
}
.cta-button:hover,
.cta-button:focus {
  background: #67953A;
  color: #fff;
  box-shadow: 0 3px 14px rgba(103,149,58,0.15);
  border-color: #67953A;
}
/* MOBILE NAV ------------------------------------------- */
.mobile-menu-toggle {
  display: none;
  font-size: 2.3rem;
  color: #205378;
  background: transparent;
  border: none;
  transition: color 0.2s;
  margin-left: 12px;
  z-index: 102;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  color: #67953A;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: #fff;
  box-shadow: 0 0 40px 0 rgba(32,83,120,0.11);
  z-index: 400;
  padding: 0 0 0 0;
  transform: translateX(100%);
  transition: transform 0.34s cubic-bezier(.42,.27,.67,1.24);
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.35rem;
  background: none;
  color: #205378;
  padding: 28px 22px 10px 0;
  transition: color .2s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #67953A;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  margin-top: 20px;
}
.mobile-nav a {
  padding: 16px 32px;
  width: 100%;
  font-size: 1.13rem;
  color: #205378;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  transition: background .18s, color .18s;
  border-bottom: 1px solid #ECEFF1;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #ECEFF1;
  color: #67953A;
}
/* HERO SECTION ------------------------------------------ */
.hero {
  margin-bottom: 60px;
  padding: 56px 0 48px 0;
  background: #fff;
}
.hero .container {
  align-items: flex-start;
}
.hero .content-wrapper {
  gap: 20px;
  align-items: flex-start;
}
.hero h1 {
  color: #205378;
  margin-bottom: 10px;
}
/* FEATURES & CARDS -------------------------------------- */
.features .content-wrapper > h2 {
  margin-bottom: 16px;
}
.features ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  width: 100%;
}
.features ul li {
  flex: 1 1 220px;
  min-width: 220px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 18px 0 rgba(32,83,120,0.04);
  padding: 26px 24px 20px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  border: 1px solid #ECEFF1;
  margin-bottom: 20px;
  transition: box-shadow .2s, border-color .2s, transform .15s;
}
.features ul li img {
  width: 42px;
  height: 42px;
  opacity: 0.82;
  margin-bottom: 5px;
}
.features ul li h3, .features ul li strong {
  margin-bottom: 0px;
  font-size: 1.12rem;
  color: #205378;
}
.features ul li:hover,
.features ul li:focus-within {
  box-shadow: 0 8px 36px -3px rgba(103,149,58,0.11);
  border-color: #b0c6dc;
  transform: translateY(-2px);
}
/* TESTIMONIALS ------------------------------------------ */
.testimonials .content-wrapper > h2 {
  margin-bottom: 20px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #fafcff;
  border: 1px solid #ECEFF1;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(32,83,120,.07);
  padding: 22px 30px 18px 24px;
  margin-bottom: 20px;
  transition: box-shadow .2s;
}
.testimonial-card blockquote {
  color: #205378;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.18rem;
  line-height: 1.42;
}
.testimonial-author {
  font-size: .98rem;
  color: #205378;
  opacity: 0.85;
  font-family: 'Roboto', Arial, sans-serif;
}
.testimonial-card:hover {
  box-shadow: 0 6px 28px -1px rgba(103,149,58,0.10);
}
/* SECTION, CARD, GRID COMPONENTS ------------------------ */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  flex: 1 1 310px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 18px 0 rgba(32,83,120,0.03);
  border: 1px solid #ECEFF1;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: box-shadow .19s;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 24px 18px 24px;
  gap: 12px;
}
.card:hover,
.card:focus-within {
  box-shadow: 0 6px 28px -4px rgba(103,149,58,0.09);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: flex-start;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
/* SERVICES & CALL-TO-ACTION ----------------------------- */
.services .content-wrapper > h2 {
  margin-bottom: 8px;
}
.services .cta-button {
  margin-top: 12px;
}
.cta {
  background: #205378;
  color: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 20px 0 rgba(32,83,120,0.06);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.cta .content-wrapper {
  align-items: flex-start;
  gap: 16px;
}
.cta h2 {
  color: #fff;
}
.cta .cta-button {
  background: #fff;
  color: #205378;
  border: 1px solid #fff;
  margin-left: 0;
}
.cta .cta-button:hover, .cta .cta-button:focus {
  background: #67953A;
  color: #fff;
  border-color: #67953A;
}
/* CONTACT ---------------------------------------------- */
.contact .content-wrapper > h2 {
  margin-bottom: 12px;
}
.contact .cta-button {
  margin-top: 16px;
}
.contact .text-section img {
  width: 22px;
  height: 22px;
  margin: -4px 7px -4px 0;
  vertical-align: middle;
  opacity: 0.7;
  display: inline-block;
}
.contact .text-section a {
  color: #205378;
  text-decoration: underline;
  word-break: break-all;
}
.contact .text-section a:hover,
.contact .text-section a:focus {
  color: #67953A;
}
/* FOOTER ----------------------------------------------- */
footer {
  background: #fbfcfd;
  border-top: 1px solid #ECEFF1;
  padding: 48px 0 35px 0;
}
footer .container {
  flex-direction: column;
  gap: 20px;
}
footer nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 14px;
}
footer nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #205378;
  font-size: 1rem;
  opacity: .85;
  transition: color .16s;
}
footer nav a:hover,
footer nav a:focus {
  color: #67953A;
  opacity: 1;
}
.footer-contact p, .footer-contact a {
  font-size: .97rem;
  color: #1d2630;
  opacity: .68;
}
.footer-contact a {
  text-decoration: underline dotted;
}
/* LEGAL / POLICY PAGES ---------------------------------- */
.legal .content-wrapper {
  gap: 12px;
}
.legal h1 {
  color: #205378;
  font-size: 2.1rem;
  margin-bottom: 10px;
}
.legal h2 {
  color: #205378;
  font-size: 1.22rem;
  margin: 22px 0 8px 0;
}
/* CONFIRMATION PAGE ------------------------------------- */
.confirmation .content-wrapper {
  align-items: flex-start;
  gap: 18px;
}
.confirmation h1 {
  color: #205378;
}
.confirmation .cta-button {
  margin-top: 16px;
  margin-left: 0;
}
/* COOKIE CONSENT BANNER --------------------------------- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #fff;
  border-top: 1px solid #ECEFF1;
  box-shadow: 0 -2px 26px -5px rgba(32,83,120,0.09);
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 30px;
  z-index: 9000;
  transition: transform .35s cubic-bezier(.6,.01,.42,1.01);
  transform: translateY(0);
}
.cookie-banner.closed {
  transform: translateY(110%);
}
.cookie-banner p {
  flex: 1;
  font-size: 1rem;
  color: #1d2630;
}
.cookie-banner .cookie-btn {
  background: #205378;
  color: #fff;
  border-radius: 22px;
  padding: 8px 24px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: .97rem;
  border: none;
  margin-left: 8px;
  transition: background .16s, color .16s, box-shadow .2s;
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: #67953A;
  color: #fff;
}
.cookie-banner .cookie-settings {
  background: #ECEFF1;
  color: #205378;
  border: none;
}
.cookie-banner .cookie-settings:hover { background: #205378; color: #fff; }
/* COOKIE MODAL ------------------------------------------ */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background: rgba(32,83,120,0.08);
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn .22s;
}
@keyframes fadeIn { from { opacity: 0;} to { opacity: 1;} }
.cookie-modal {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 42px 0 rgba(32,83,120,0.13);
  max-width: 350px;
  min-width: 0;
  width: 90vw;
  padding: 36px 32px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 10010;
  position: relative;
  animation: popIn .23s;
}
@keyframes popIn { from { transform: scale(0.98); opacity:0; } to { transform: scale(1); opacity:1; } }
.cookie-modal-close {
  position: absolute;
  top: 16px; right: 20px;
  font-size: 1.8rem;
  color: #67953A;
  background: none;
  border: none;
}
.cookie-modal h2 {
  color: #205378;
  font-size: 1.15rem;
  margin-bottom: 7px;
}
.cookie-category {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
}
.cookie-category label {
  font-size: .98rem;
  color: #205378;
}
.cookie-toggle {
  appearance: none;
  width: 38px;
  height: 20px;
  background: #ECEFF1;
  border-radius: 10px;
  position: relative;
  outline: none;
  border: none;
  cursor: pointer;
  transition: background .2s;
  margin-top: 2px;
}
.cookie-toggle:checked {
  background: #67953A;
}
.cookie-toggle:before {
  content: '';
  position: absolute; left: 2px; top: 2px;
  width: 16px; height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: transform .2s;
  box-shadow: 0 2px 6px rgba(32,83,120,.08);
}
.cookie-toggle:checked:before {
  transform: translateX(18px);
}
.cookie-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
  justify-content: flex-end;
}
.cookie-modal-actions .cookie-btn {
  padding: 8px 24px;
  font-size: .98rem;
}
/* RESPONSIVE / MOBILE ----------------------------------- */
@media (max-width: 1024px) {
  .container {
    max-width: 890px;
  }
  .features ul, .card-container, .content-grid {
    flex-wrap: wrap;
    gap: 18px;
  }
}
@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    gap: 10px;
    min-height: 62px;
    padding: 0 10px;
  }
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    margin-right: 2px;
  }
  .cta-button {
    padding: 8px 18px;
    font-size: .98rem;
    margin-left: 0;
  }
  .section,
  .cta {
    padding: 30px 10px;
    margin-bottom: 40px;
  }
  .content-wrapper {
    gap: 17px;
  }
  .features ul, .card-container, .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .card {
    min-width: 0;
    width: 100%;
  }
  .text-image-section {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }
  .testimonial-card {
    padding: 15px 11px 13px 10px;
  }
}
@media (max-width: 520px) {
  h1 {
    font-size: 1.6rem;
  }
  h2 {
    font-size: 1.1rem;
  }
  .container {
    padding: 0 5px;
  }
  .section,
  .cta {
    padding: 20px 3px;
  }
}
/* UTILITY ----------------------------------------------- */
.hidden { display: none !important; }

/* FOCUS STYLES ------------------------------------------ */
:focus-visible {
  outline: 2px solid #205378;
  outline-offset: 2px;
}

/* Transition for hover/focus on block & links */
.features ul li,
.card,
.cta-button,
.testimonial-card,
footer nav a,
header nav a,
.mobile-nav a,
.cookie-banner .cookie-btn,
.cookie-banner .cookie-settings {
  transition: all 0.17s cubic-bezier(.53,.11,.61,.88);
}
