/* ---------------------------
   RESET & BASE TYPOGRAPHY
----------------------------*/
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 {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  font-family: inherit;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
  background: #fff;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #fff;
  color: #151515;
  /* High contrast black text for monochrome */
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
}
*, *:before, *:after {
  box-sizing: inherit;
}
img, svg {
  max-width: 100%;
  display: block;
}
a {
  color: #111;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: #026681;
  text-decoration: underline;
}
ul, ol {
  list-style: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #111;
  letter-spacing: -0.01em;
}
h1 { font-size: 2.6rem; line-height: 1.15; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.35rem; margin-bottom: 12px; }
h4, h5, h6 { font-size: 1.1rem; }
p, li, dd, dt { font-size: 1rem; letter-spacing: 0; }
b, strong { font-weight: bold; }

@media (max-width: 900px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.1rem; }
}

/* ---------------------------
   BRAND SPECIFIC VARIABLES
----------------------------*/
:root {
  --color-primary: #151515; /* Deep black for dramatic contrast */
  --color-secondary: #ededed; /* Clean light gray background */
  --color-accent: #F3F8F5; /* Subtle near-white for cards */
  --color-main-dark: #0e0e0e;
  --color-gray-dark: #262626;
  --color-gray-mid: #8b8b8b;
  --color-gray-light: #ededed;
  --brand-highlight: #026681; /* Used for subtle accent hover if needed */
  --brand-yellow: #F7B825; /* Used very sparingly for badges etc */
  --shadow-card: 0 2px 28px 0 rgba(30,30,30,0.11), 0 1.5px 3px 0 rgba(40,40,40,.065);
  --radius-card: 16px;
  --radius-btn: 48px;
  --transition-normal: 0.25s cubic-bezier(.4,.2,.1,1);
}

/* ---------------------------
      CONTAINER & LAYOUT
----------------------------*/
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: none;
}
@media (max-width: 768px) {
  .section {
    padding: 24px 8px;
    margin-bottom: 38px;
  }
}

/*****************************
   HEADER & NAVIGATION
******************************/
header {
  background: #fff;
  border-bottom: 1px solid var(--color-gray-light);
  padding-top: 0;
  position: sticky;
  top: 0;
  z-index: 900;
}
header .container {
  min-height: 76px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative;
  padding-top: 16px;
  padding-bottom: 16px;
}
header a img {
  height: 44px;
  width: auto;
}
nav {
  display: flex;
  flex-direction: row;
  gap: 28px;
  align-items: center;
}
nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #222;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color var(--transition-normal);
  padding: 8px 0 6px 0;
}
nav a:hover, .mobile-nav a:hover {
  color: #026681;
  text-decoration: underline;
}
.cta-btn {
  background: #fff;
  color: #111;
  border: 2px solid #111;
  border-radius: var(--radius-btn);
  padding: 10px 30px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  box-shadow: 0 2px 16px 0 rgba(20,20,20,.08);
  cursor: pointer;
  transition: all var(--transition-normal);
  margin-left: 20px;
  text-align: center;
  display: inline-block;
  position: relative;
}
.cta-btn:hover,
.cta-btn:focus {
  background: #111;
  color: #fff;
  border-color: #111;
  outline: none;
}

/* Hide hamburger on desktop */
.mobile-menu-toggle {
  display: none;
}

@media (max-width: 900px) {
  nav {
    display: none;
  }
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    background: none;
    border: none;
    color: #111;
    font-size: 2.1rem;
    padding: 6px 14px;
    cursor: pointer;
    z-index: 1202;
  }
}

/*****************************
   MOBILE NAVIGATION OVERLAY
******************************/
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(15,15,15,0.97);
  color: #fff;
  z-index: 1400;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(.53,.24,.085,.99);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  padding-top: 0;
  will-change: transform;
}
.mobile-menu.open {
  transform: translateX(0) !important;
}
.mobile-menu-close {
  color: #fff;
  background: none;
  border: none;
  font-size: 2.5rem;
  font-family: inherit;
  padding: 20px 28px 12px 0;
  cursor: pointer;
  z-index: 1402;
  transition: color 0.2s;
}
.mobile-menu-close:hover {
  color: #ededed;
}
.mobile-nav {
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-top: 32px;
  padding-left: 34px;
}
.mobile-nav a {
  display: block;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  width: 88vw;
  transition: color 0.16s;
}
.mobile-nav a:last-child { border-bottom: 0; }
.mobile-nav a:hover {
  color: #F7B825;
  background: rgba(255,255,255,0.04);
}
@media (min-width: 900px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}

/*****************************
   MAIN ELEMENTS & SECTION SPACING
******************************/
main {
  min-height: 70vh;
  background: #fff;
  width: 100%;
  padding-bottom: 4vw;
}
section {
  margin-bottom: 60px;
  padding: 40px 0;
  background: transparent;
}
@media (max-width: 900px) {
  section {
    padding: 24px 0;
    margin-bottom: 32px;
  }
}

/*****************************
   FEATURE GRIDS, CARDS, TESTIMONIALS
******************************/
.feature-grid,
.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 8px;
  justify-content: flex-start;
}
.feature-grid li,
.feature-list li {
  background: var(--color-accent);
  box-shadow: var(--shadow-card);
  border-radius: var(--radius-card);
  padding: 28px 24px 22px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-width:280px;
  max-width: 370px;
  flex: 1 1 260px;
}
.feature-grid img,
.feature-list img {
  height: 36px;
  width: 36px;
  margin-bottom: 4px;
}
.feature-grid h3,
.feature-list h3 {
  font-size: 1.15rem;
  color: #0e0e0e;
}
@media (max-width: 1000px) {
  .feature-grid, .feature-list {
    justify-content: center;
  }
  .feature-grid li, .feature-list li {
    flex: 1 1 97%;
    min-width: 0;
    max-width: 96vw;
    padding: 22px 10px;
  }
}

/*****************************
   SERVICE CARDS & LISTS
******************************/
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
  margin-top: 8px;
}
.service-card {
  background: #fff;
  border: 1.5px solid #ededed;
  border-radius: var(--radius-card);
  padding: 28px 22px 22px 22px;
  flex: 1 1 265px;
  min-width: 220px;
  max-width: 350px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  position: relative;
  margin-bottom: 20px;
  transition: box-shadow var(--transition-normal);
}
.service-card:hover {
  box-shadow: 0 6px 36px 0 rgba(20,20,20,0.20);
  z-index: 3;
}
.service-link {
  font-family: 'Montserrat', sans-serif;
  color: #151515;
  font-weight: 600;
  text-decoration: underline;
  font-size: 1rem;
  padding-top: 12px;
  transition: color .18s;
}
.service-link:hover {
  color: #026681;
}
@media (max-width: 1200px) {
  .service-cards {
    flex-wrap: wrap;
    gap: 22px 10px;
  }
  .service-card {
    min-width: 0;
    max-width: 94vw;
    padding: 18px 8px 16px 12px;
  }
}

/*****************************
   SERVICE LISTS (SURFKURSE)
******************************/
.service-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 28px;
}
.service-list li {
  background: var(--color-accent);
  border-radius: var(--radius-card);
  padding: 20px 18px 16px 18px;
  box-shadow: var(--shadow-card);
  margin-bottom: 8px;
}
.service-list strong {
  color: #151515;
  font-weight: 700;
  padding-left: 6px;
}

/*****************************
   TABLES
******************************/
.comparison-table, .pricing-table {
  width: 100%;
  margin: 20px 0 32px 0;
  border-collapse: collapse;
  background: #fff;
  box-shadow: var(--shadow-card);
  border-radius: var(--radius-card);
  overflow: hidden;
  font-size: 1rem;
}
.comparison-table th, .comparison-table td, .pricing-table th, .pricing-table td {
  border-bottom: 1px solid #ededed;
  padding: 15px 10px;
  text-align: left;
}
.comparison-table th, .pricing-table th {
  background: #fafafa;
  color: #111;
  font-weight: 700;
}
.comparison-table tr:last-child td, .pricing-table tr:last-child td {
  border-bottom: 0;
}
@media (max-width: 700px) {
  .comparison-table, .pricing-table {
    font-size: .93rem;
  }
}

/*****************************
   BADGES
******************************/
.benefit-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 20px 0 0 0;
}
.benefit-badges li {
  background: #fff;
  border: 1px solid #ededed;
  border-radius: 36px;
  padding: 8px 22px 8px 18px;
  font-size: .99rem;
  font-family: 'Montserrat',sans-serif;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #151515;
  transition: box-shadow .17s;
}
.benefit-badges li img {
  height: 26px; width: 26px;
}

/*****************************
   TESTIMONIALS
******************************/
.testimonials-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 16px;
}
.testimonial-card {
  background: #fafafa;
  color: #141414;
  border-radius: var(--radius-card);
  box-shadow: 0 2px 18px 0 rgba(35,35,35,.10);
  padding: 28px 22px 22px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  position: relative;
  margin-bottom: 20px;
  min-width: 262px;
  max-width: 350px;
  font-size: 1.08rem;
  line-height: 1.65;
}
.testimonial-meta {
  font-size: 0.98rem;
  color: #8b8b8b;
}
.stars {
  font-family: 'Montserrat',sans-serif;
  color: #F7B825;
  font-size: 1.1em;
  margin-left: 6px;
  letter-spacing: 0.03em;
}
@media (max-width: 900px) {
  .testimonials-wrap {
    flex-direction: column;
    gap: 12px;
  }
  .testimonial-card {
    min-width: 0;
    max-width: 99vw;
    padding: 14px 10px 14px 12px;
  }
}

/*****************************
    CALL TO ACTIONS
******************************/
.cta-btn {
  margin-top: 10px;
  margin-bottom: 10px;
}

/*****************************
   FOOTER
******************************/
footer {
  width: 100%;
  background: #151515;
  color: #ededed;
  border-top: 1.5px solid #262626;
  box-shadow: 0 -2px 20px 0 rgba(20,20,20,0.04);
  padding: 38px 0 28px 0;
}
footer .container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}
footer a {
  color: #ededed;
  font-family: 'Montserrat',sans-serif;
  font-size: 1.02rem;
  font-weight: 500;
  padding-right: 22px;
  transition: color 0.17s;
}
footer a:hover {
  color: #F7B825;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-top: 6px;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-family: 'Roboto',sans-serif;
  font-size: 0.96rem;
  color: #ededed;
  margin-top: 8px;
}
.footer-contact img {
  height: 18px;
  width: 18px;
  margin-right: 5px;
  vertical-align: middle;
}
@media (max-width: 1000px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .footer-contact {
    margin-left: 0;
  }
}

/*****************************
   FORMS & CONTACT
******************************/
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-info img {
  height: 22px;
  width: 22px;
  margin-right: 9px;
  vertical-align: middle;
}
.map-snippet {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 22px 0 8px 0;
  background: var(--color-accent);
  border-radius: 10px;
  padding: 16px;
}
.map-snippet p {
  margin: 0;
}

/*****************************
   FAQ (dt/dd)
******************************/
dt {
  font-family: 'Montserrat',sans-serif;
  font-weight: 600;
  margin-top: 24px;
  margin-bottom: 5px;
  color: #151515;
  font-size: 1.09rem;
}
dd {
  margin-left: 0;
  color: #262626;
  margin-bottom: 10px;
}

/*****************************
   UTILITY FLEX CLASSES
******************************/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 28px 22px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-card);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/*****************************
   RESPONSIVE ALIGNMENTS
******************************/
@media (max-width: 768px) {
  .container {
    padding: 0 7px;
  }
  .content-grid, .card-container, .feature-grid, .feature-list, .service-cards, .benefit-badges, .testimonials-wrap {
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
    justify-content: flex-start;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

/*****************************
    MODALS & OVERLAYS (COOKIE)
******************************/
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #151515;
  color: #fff;
  box-shadow: 0 -2px 32px 0 rgba(20,20,20,0.21);
  padding: 24px 30px 20px 30px;
  z-index: 2001;
  font-size: 1.03rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.cookie-banner p {
  margin: 0;
  flex: 1;
  color: #ededed;
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 16px;
  margin-left: 18px;
}
.cookie-btn {
  border-radius: var(--radius-btn);
  font-family: 'Montserrat',sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 7px 24px;
  border: none;
  background: #ededed;
  color: #151515;
  transition: background 0.18s, color 0.18s;
  margin-bottom: 0;
  cursor: pointer;
  box-shadow: 0 3px 16px 0 rgba(20,20,20,0.09);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #026681;
  color: #fff;
}
.cookie-settings {
  background: none;
  color: #ededed;
  border: 2px solid #ededed;
  font-weight: 600;
  font-family: 'Montserrat',sans-serif;
  margin-left: 9px;
  padding: 7px 18px;
  border-radius: var(--radius-btn);
}
.cookie-settings:hover, .cookie-settings:focus {
  background: #ededed;
  color: #151515;
}
@media (max-width: 800px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    padding: 18px 10px 18px 10px;
    gap: 16px;
  }
  .cookie-banner .cookie-btns {
    justify-content: flex-end;
    margin-left: 0;
    gap: 10px;
  }
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  z-index: 2050;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.98);
  background: #f9f9f9;
  color: #151515;
  border-radius: 18px;
  box-shadow: 0 8px 38px 0 rgba(0,0,0,0.25);
  min-width: 330px;
  max-width: 98vw;
  padding: 36px 32px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: cookie-modal-in 0.26s cubic-bezier(0.53,0.24,0.09,0.99);
}
@keyframes cookie-modal-in {
  from {
    transform: translate(-50%, -48%) scale(0.85);
    opacity: 0.2;
  }
  to {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}
.cookie-modal h2 {
  font-size: 1.2rem;
  font-family: 'Montserrat',sans-serif;
  margin-bottom: 10px;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 5px;
}
.category-toggle {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  font-family: 'Montserrat',sans-serif;
  font-size: 1.03rem;
  color: #151515;
}
.category-toggle input[type='checkbox'] {
  width: 20px; height: 20px;
  accent-color: #026681;
}
.cookie-modal .category-essential {
  opacity: 0.7;
  cursor: not-allowed;
}
.cookie-modal .cookie-btns {
  display: flex;
  gap: 16px;
  margin-top: 13px;
}
.cookie-modal .cookie-btn {
  background: #151515;
  color: #fff;
}
.cookie-modal .cookie-btn:hover {
  background: #026681;
  color: #fff;
}
@media (max-width: 540px) {
  .cookie-modal {
    padding: 16px 5px 18px 5px;
    min-width: 0;
  }
  .cookie-modal .cookie-btns {
    gap: 8px;
  }
}

/*****************************
   MICRO INTERACTIONS
******************************/
.cta-btn, .service-card, .testimonial-card, .benefit-badges li,
.card, .cookie-btn, .cookie-settings {
  transition: box-shadow var(--transition-normal), background var(--transition-normal), color var(--transition-normal), border-color var(--transition-normal), opacity .17s;
}
.cta-btn:active {
  transform: translateY(1.5px) scale(0.99);
  box-shadow: 0 1px 8px 0 rgba(0,0,0,0.13);
}
.service-card:hover, .testimonial-card:hover {
  box-shadow: 0 7px 27px 0 rgba(25,25,25,0.13);
  z-index: 11;
}
.benefit-badges li:hover {
  box-shadow: 0 4px 18px 0 rgba(40,40,40,0.10);
  cursor: default;
  color: #026681;
}

/*****************************
   GLOBAL SPACING
******************************/
main, section, .container, .content-wrapper, ul, dl, table {
  margin-bottom: 0;
}
.section, section, .container, .content-wrapper, .feature-grid, .service-cards, .testimonials-wrap, .card-container, .content-grid {
  gap: 20px;
}
.card, .service-card, .testimonial-card, .feature-grid li, .benefit-badges li { margin-bottom: 20px; }

/*****************************
   ACCESSIBILITY
******************************/
:focus {
  outline: 2px solid #026681;
  outline-offset: 2px;
}

/*****************************
   CUSTOM SCROLLBAR
******************************/
::-webkit-scrollbar {
  width: 8px;
  background: #ededed;
}
::-webkit-scrollbar-thumb {
  background: #bdbdbd;
  border-radius: 8px;
}
@media (max-width: 600px) {
  ::-webkit-scrollbar {
    display: none;
  }
}

/*****************************
   MISCELLANEOUS
******************************/
a.button, button {
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
}
table {
  font-family: 'Roboto', Arial, sans-serif;
}
thead {
  font-family: 'Montserrat', Arial, sans-serif;
}
.text-section {
  margin-bottom: 10px;
}
.text-section h2, .text-section h3 {
  margin-bottom: 10px;
}
.text-section p {
  margin-bottom: 15px;
}

@media (max-width: 900px) {
  .testimonials-wrap, .service-cards, .feature-grid, .benefit-badges, .content-grid, .card-container {
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
    justify-content: flex-start;
  }
}

/*****************************
   Z-INDEX DEFINITIONS
******************************/
header { z-index: 900; }
.mobile-menu { z-index: 1400; }
.cookie-banner { z-index: 2000; }
.cookie-modal { z-index: 2050; }
