/* === 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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, main, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #F3F6F7;
  color: #25313d;
  font-family: 'Roboto', 'Georgia', serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a {
  background: transparent;
  text-decoration: none;
  color: #143357;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #68A8A6;
  outline: none;
}
img {
  max-width: 100%;
  display: block;
}
ul, ol {
  list-style-position: inside;
  margin-left: 0;
}
table {
  border-collapse: collapse;
  width: 100%;
}
button {
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
  outline: none;
}

/* ===== BRAND TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Georgia', serif;
  color: #143357;
  font-weight: 700;
  line-height: 1.2;
}
h1 {
  font-size: 2.75rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.375rem;
  font-weight: 600;
  margin-bottom: 12px;
}

p, li, table, th, td {
  font-family: 'Roboto', 'Georgia', serif;
  color: #25313d;
  font-size: 16px;
  letter-spacing: 0.01em;
}
p {
  margin-bottom: 16px;
}
strong {
  font-weight: bold;
  color: #143357;
}

/* VISUAL HIERARCHY SPACING */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 1px 8px 0 rgba(20,51,87,0.03);
}
@media (max-width: 768px) {
  .section {
    padding: 28px 8px;
    margin-bottom: 38px;
    border-radius: 10px;
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
  width: 100%;
  display: flex;
  flex-direction: column;
}

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

/* HEADER & NAVIGATION */
header {
  background: #fff;
  border-bottom: 1px solid #E5E8EC;
  box-shadow: 0px 1px 5px 0 rgba(20,51,87,0.03);
  position: sticky;
  top: 0;
  z-index: 995;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  min-height: 70px;
}
.logo img {
  height: 42px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  gap: 32px;
  margin-left: 24px;
  align-items: center;
}
.main-nav a {
  font-size: 16px;
  font-family: 'Montserrat', 'Georgia', serif;
  color: #143357;
  padding: 8px 4px 6px 4px;
  border-bottom: 2px solid transparent;
  transition: border-color .2s, color .2s;
  display: block;
}
.main-nav a:hover, .main-nav a:focus {
  color: #68A8A6;
  border-bottom: 2px solid #68A8A6;
}
.header .cta {
  margin-left: 30px;
}
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: transparent;
  color: #143357;
  border-radius: 7px;
  margin-left: 28px;
  transition: background .18s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #e8eef1;
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100vw;
  width: 95vw;
  max-width: 360px;
  height: 100vh;
  background: #fff;
  box-shadow: -8px 0 38px 0 rgba(20,51,87,0.21);
  z-index: 2000;
  transition: transform 0.34s cubic-bezier(.37,1.12,.69,.87), right 0s 0.34s;
  display: flex;
  flex-direction: column;
  padding: 24px 0 0 0;
  pointer-events: none;
  gap: 0;
}
.mobile-menu.open {
  transform: translateX(-100vw);
  right: 0;
  pointer-events: auto;
  transition: transform 0.34s cubic-bezier(.37,1.12,.69,.87);
}
.mobile-menu-close {
  background: transparent;
  color: #143357;
  font-size: 2.2rem;
  align-self: flex-end;
  margin-right: 32px;
  border-radius: 5px;
  padding: 4px 12px;
  transition: background .16s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #E5E8EC;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 22px 44px 40px 36px;
}
.mobile-nav a {
  font-size: 1.13rem;
  color: #143357;
  font-family: 'Montserrat', 'Georgia', serif;
  font-weight: 600;
  padding: 8px 0;
  border-radius: 5px;
  transition: background .16s, color .18s;
  margin: 0!important;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F3F6F7;
  color: #68A8A6;
}
@media (max-width:1024px) {
  .main-nav {
    gap: 18px;
    margin-left: 10px;
  }
}
@media (max-width:900px) {
  .main-nav {
    gap: 10px;
    font-size: 15px;
  }
  header .cta {
    margin-left: 8px;
    padding: 8px 18px;
  }
}
@media (max-width: 855px) {
  header .main-nav,
  header .cta {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 856px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ===== HERO / ACCENT SECTIONS ===== */
.hero {
  background: linear-gradient(105deg, #F3F6F7 70%, #dce7ef 100%);
  padding: 64px 0 54px 0;
  margin-bottom: 0;
  border-bottom: 1px solid #E5E8EC;
}
.hero .container {
  align-items: center;
  justify-content: center;
}
.hero h1 {
  font-family: 'Montserrat', 'Georgia', serif;
  font-size: 2.75rem;
  margin-bottom: 18px;
  color: #143357;
}
.hero p {
  font-size: 1.17rem;
  max-width: 600px;
}

.cta-section {
  display: flex;
  align-items: center;
  background: #fff;
  padding: 40px 0;
  border-radius: 20px;
  margin-bottom: 0;
  box-shadow: 0 1px 10px 0 rgba(20,51,87,0.04);
}
.cta-section.accent {
  background: #68A8A6;
  color: #fff;
}
.cta-section.accent h2,
.cta-section.accent p {
  color: #fff;
}
.cta-section .cta {
  margin-top: 10px;
}

/* ===== BUTTONS ===== */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', 'Georgia', serif;
  font-weight: 600;
  font-size: 1.12rem;
  line-height: 1.3;
  padding: 12px 34px;
  border-radius: 22px;
  text-align: center;
  transition: background 0.18s, color 0.18s, box-shadow .28s;
  margin-top: 6px;
  box-shadow: 0 3px 10px 0 rgba(104,168,166,0.07);
  border: none;
  cursor: pointer;
  min-width: 170px;
  outline: none;
}
.cta.primary {
  background: #143357;
  color: #fff;
  border: 1px solid #143357;
}
.cta.primary:hover, .cta.primary:focus {
  background: #1a426d;
  color: #fff;
  box-shadow: 0 7px 24px 0 rgba(20,51,87,0.08);
}
.cta.secondary {
  background: transparent;
  color: #143357;
  border: 1.5px solid #143357;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: #EAECEE;
  color: #143357;
  border: 1.5px solid #68A8A6;
}

@media (max-width: 480px) {
  .cta {
    min-width: 120px;
    font-size: 1.02rem;
    padding: 11px 12px;
  }
}

/* == CARDS FOR SERVICES, TESTIMONIALS, ETC. == */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 11px 0 rgba(20,51,87,0.06);
  padding: 28px 26px 24px 26px;
  margin-bottom: 20px;
  transition: box-shadow .23s, transform .18s;
  position: relative;
  min-width: 260px;
  flex: 1 1 340px;
  max-width: 420px;
}
.card:hover, .card:focus-within {
  box-shadow: 0 11px 38px 0 rgba(20,51,87,0.10);
  transform: translateY(-4px) scale(1.022);
}

/* == FEATURE GRID, SERVICE, TRAINING, BLOG == */
.feature-grid, .service-list, .training-list, .blog-post-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
}
.feature-grid li, .service-list li, .training-list li, .blog-post-list li {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 7px 0 rgba(20,51,87,0.04);
  padding: 22px 18px 18px 18px;
  min-width: 220px;
  max-width: 400px;
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 0;
  transition: box-shadow .19s, background .13s;
  border: 1px solid #E5E8EC;
}
.feature-grid li:hover, .service-list li:hover, .training-list li:hover, .blog-post-list li:hover {
  background: #F3F6F7;
  box-shadow: 0 7px 24px 0 rgba(20,51,87,0.09);
}
.feature-grid img {
  width: 42px;
  height: 42px;
  margin-bottom: 2px;
}

/* == SERVICE PRICING TAG == */
.service-list .price, .training-list .price {
  background: #e6efed;
  color: #143357;
  border-radius: 7px;
  font-weight: 700;
  padding: 3px 14px;
  font-size: 1.02rem;
  margin-left: 8px;
}

/* == TABLES == */
.schedule-table {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 6px 0 rgba(20,51,87,0.03);
  margin-bottom: 14px;
  overflow: hidden;
  width: 100%;
}
.schedule-table th, .schedule-table td {
  padding: 12px 14px;
  border-bottom: 1px solid #E5E8EC;
  text-align: left;
  font-size: 16px;
}
.schedule-table th {
  background: #F3F6F7;
  color: #143357;
  font-family: 'Montserrat', 'Georgia', serif;
  font-weight: 700;
}
.schedule-table tr:last-child td {
  border-bottom: none;
}

/* == BLOG EXTRAS == */
.blog-categories {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  margin-top: 8px;
  color: #25313d;
  margin-bottom: 22px;
}
.blog-categories a {
  color: #68A8A6;
  text-decoration: underline;
}
.newsletter-signup {
  background: #fff;
  padding: 26px 18px;
  border-radius: 11px;
  box-shadow: 0 1px 8px 0 rgba(20,51,87,0.04);
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.newsletter-signup .cta {
  align-self: flex-start;
}

/* == TESTIMONIALS == */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
  margin-bottom: 18px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 1px 7px 0 rgba(20,51,87,0.07);
  min-width: 220px;
  max-width: 370px;
  font-style: italic;
  margin-bottom: 0;
  border: 1px solid #E5E8EC;
}
.testimonial-card strong {
  font-family: 'Montserrat', 'Georgia', serif;
  font-size: 1rem;
  color: #68A8A6;
  font-style: normal;
  margin-top: 10px;
}
.testimonial-card p {
  font-style: italic;
  font-size: 1.06rem;
  color: #25313d;
}

/* == PROCESS STEPS (dla-startupow.html) == */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style-type: decimal;
  padding-left: 24px;
  margin-bottom: 18px;
  color: #143357;
  font-family: 'Montserrat', 'Georgia', serif;
}
.process-steps li {
  font-size: 16px;
  margin-bottom: 3px;
}

/* == CONTACT / MAP + INFO == */
.contact-info, .map {
  background: #F3F6F7;
  border-radius: 11px;
  padding: 22px 18px;
  margin-bottom: 20px;
  box-shadow: 0 1px 7px 0 rgba(20,51,87,0.03);
}
.contact-info a {
  color: #68A8A6;
  text-decoration: underline;
}
.map {
  border: 1px solid #E5E8EC;
  background: #E5E8EC;
}

/* == FOOTER == */
footer {
  background: #143357;
  color: #fff;
  padding: 40px 0 16px 0;
  margin-top: 60px;
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px 20px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 170px;
}
.footer-nav a {
  color: #cde3e3;
  font-family: 'Montserrat', 'Georgia', serif;
  font-size: 15px;
  text-decoration: underline;
  transition: color .16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #68A8A6;
}
.footer-contact {
  color: #fff;
  font-size: 15px;
  min-width: 210px;
}
.footer-contact p{
  color: #fff;
}
.footer-contact p a{
  color: #fff;
}
.footer-logo img {
  width: 58px;
  min-width: 58px;
  margin-bottom: 10px;
}
.footer-copy {
  color: #bdd9d8;
  font-size: 12px;
  margin-top: 28px;
  width: 100%;
}

/* == LAYOUT HELPERS FOR FLEXBOX == */
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 24px;
}
.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;
}

/* == COOKIE CONSENT BANNER == */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 3050;
  background: #fff;
  border-top: 1.5px solid #E5E8EC;
  box-shadow: 0 -1px 16px 0 rgba(20,51,87,0.10);
  padding: 24px 18px 18px 18px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
  justify-content: center;
  transition: transform .35s cubic-bezier(.66,.36,.37,.98);
}
.cookie-consent-banner.hidden {
  transform: translateY(120%);
  pointer-events: none;
  opacity: 0;
}
.cookie-consent-banner.visible {
  transform: translateY(0);
  opacity: 1;
}
.cookie-consent-banner p {
  flex: 1 1 280px;
  color: #143357;
  margin-bottom: 0;
  font-size: 1rem;
  font-family: 'Roboto', 'Georgia', serif;
}
.cookie-consent-banner .cookie-actions {
  display: flex;
  gap: 16px;
}
.cookie-consent-banner .cookie-btn {
  border-radius: 8px;
  border: 1.5px solid #143357;
  background: #fff;
  color: #143357;
  font-family: 'Montserrat', 'Georgia', serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 8px 22px;
  min-width: 90px;
  margin-left: 0;
  margin-right: 0;
  box-shadow: 0 2px 6px 0 rgba(20,51,87,0.03);
  transition: background .17s, color .17s, border .13s;
}
.cookie-consent-banner .cookie-btn:hover, 
.cookie-consent-banner .cookie-btn:focus {
  background: #68A8A6;
  color: #fff;
  border: 1.5px solid #68A8A6;
}
.cookie-consent-banner .cookie-btn.primary {
  background: #143357;
  color: #fff;
  border: 1.5px solid #143357;
}
.cookie-consent-banner .cookie-btn.primary:hover, 
.cookie-consent-banner .cookie-btn.primary:focus {
  background: #1a426d;
  color: #fff;
}
@media (max-width: 600px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 16px 10px 14px 10px;
  }
}
/* --- Cookie Modal --- */
.cookie-modal-backdrop {
  position: fixed;
  z-index: 4000;
  top: 0; left: 0; right:0; bottom: 0;
  background: rgba(20,51,87,0.20);
  display: none;
  align-items: center;
  justify-content: center;
}
.cookie-modal-backdrop.visible {
  display: flex;
}
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 42px 0 rgba(20,51,87,0.22);
  max-width: 420px;
  width: 95vw;
  padding: 30px 26px 18px 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  animation: modalIn .33s cubic-bezier(.5,1.1,.7,1.07);
}
@keyframes modalIn {
  0% { transform: scale(.62) translateY(80px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1;}
}
.cookie-modal h2 {
  font-size: 1.18rem;
  margin-bottom: 6px;
  color: #143357;
  font-family: 'Montserrat', 'Georgia', serif;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 12px;
  right: 17px;
  font-size: 1.6rem;
  border: none;
  background: none;
  color: #143357;
  cursor: pointer;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.cookie-category label {
  font-weight: 500;
  font-family: 'Roboto', 'Georgia', serif;
  font-size: 1.05rem;
  color: #143357;
}
.cookie-category input[type="checkbox"] {
  width: 27px;
  height: 27px;
  accent-color: #68A8A6;
  border-radius: 7px;
  border: 1.4px solid #143357;
}
.cookie-category .cookie-essential {
  font-size: .96rem;
  color: #68A8A6;
  font-style: italic;
  margin-left: 8px;
}
.cookie-modal .modal-actions {
  margin-top: 18px;
  display: flex;
  gap: 14px;
  justify-content: flex-end;
}

/* == TEXT SECTION (ABOUT) == */
.text-section {
  background: #F3F6F7;
  border-radius: 12px;
  padding: 24px 16px 18px 16px;
  box-shadow: 0 1px 4px 0 rgba(20,51,87,0.02);
  margin-bottom: 20px;
}
.text-section ul {
  margin: 10px 0 10px 14px;
}

/* == THANK YOU / SUCCESS == */
.hero .cta {
  margin-top: 21px;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width:1060px) {
  .footer-nav, .footer-contact {
    min-width: 120px;
  }
  .feature-grid li, .service-list li {
    min-width: 145px;
  }
}

@media (max-width:900px) {
  .container {
    padding: 0 2vw;
  }
}
@media (max-width:768px) {
  .feature-grid, .service-list, .training-list, .blog-post-list, .testimonial-slider, .card-container, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .card, .feature-grid li, .service-list li, .testimonial-card {
    max-width: 100%;
    min-width: 0;
  }
  .footer .container {
    flex-direction: column;
    gap: 15px;
  }
  .section {
    margin-bottom: 38px;
    padding: 24px 4vw;
  }
  .hero {
    padding: 32px 0 32px 0;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .feature-grid img {
    width: 32px; height: 32px;
  }
  .footer-logo img {
    width: 47px;
  }
  .process-steps {
    padding-left: 10px;
  }
  .mobile-nav {
    padding: 18px 12vw 26px 10vw;
    gap: 12px;
  }
}
@media (max-width: 500px) {
  h1 {
    font-size: 1.55rem;
  }
  h2 {
    font-size: 1.16rem;
  }
  .cta {
    padding: 10px 8px;
    font-size: .97rem;
    min-width: 90px;
  }
  .footer-copy {
    font-size: 10px;
    margin-top: 15px;
  }
  .testimonial-card {
    padding: 16px 8px;
  }
  .schedule-table th, .schedule-table td {
    font-size: 14px;
    padding: 9px 5px;
  }
}

/* ===== MICRO-INTERACTIONS ===== */
.cta, .cookie-btn {
  transition: background .17s, color .17s, box-shadow .27s, border .13s;
}
.card, .feature-grid li, .testimonial-card {
  transition: box-shadow .21s, transform .15s, background .15s;
}
.card:active, .feature-grid li:active, .testimonial-card:active {
  box-shadow: 0 1px 6px 0 rgba(20,51,87,0.07);
  transform: scale(.98);
}

/* == Z-INDEX SAFETY == */
header { z-index: 995; }
.mobile-menu { z-index: 2000; }
.cookie-consent-banner { z-index: 3050; }
.cookie-modal-backdrop { z-index: 4000; }

/* ===== UTILITIES ===== */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  border: 0 !important;
}

