/* =====================
   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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  background: #232731;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  background: #232731;
  color: #F3E8DB;
}
img, picture, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
a {
  color: #83ffd4;
  text-decoration: none;
  transition: color 0.18s;
}
a:hover {
  color: #67e5c1;
  text-decoration: underline;
}
ul, ol {
  padding-left: 1.5em;
  margin-top: 8px;
  margin-bottom: 8px;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  border: none;
  background: none;
  outline: none;
}
button {
  cursor: pointer;
}

/* =============
   BRAND COLORS
   ============= */
:root {
  --primary: #345066;
  --primary-dark: #273B4E;
  --secondary: #6E9987;
  --accent: #F3E8DB;
  --accent-dark: #e2cdb3;
  --black: #232731;
  --white: #F3E8DB;
  --neon: #83ffd4;
  --red: #F44336;
  --cookie-bar-bg: #233142;
}

/* ==============
   TYPOGRAPHY
   ============== */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,400|Roboto:400,500,700&display=swap');
body {
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--white);
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.1px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.8px;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 12px;
  color: var(--neon);
  text-shadow: 0 0 10px #6EF6F6, 0 0 24px #234554;
}
h2 {
  font-size: 2rem;
  color: var(--neon);
  margin-bottom: 10px;
}
h3 {
  font-size: 1.35rem;
  color: var(--accent);
}
h4, h5, h6 {
  font-size: 1.1rem;
  color: var(--white);
}
p {
  margin-bottom: 8px;
  font-size: 1rem;
}
.subheadline {
  color: var(--accent);
  font-weight: 500;
  font-size: 1.18rem;
  margin-bottom: 18px;
  letter-spacing: 0.3px;
}

/* =======
   LAYOUT
   ======= */
.container {
  width: 100%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 18px;
  padding-right: 18px;
}
section, .section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
@media (min-width: 768px) {
  .content-wrapper {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 36px;
    justify-content: space-between;
  }
}
.text-section, .text-image-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.text-image-section {
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .text-image-section {
    flex-direction: row;
  }
}
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 18px;
}
.feature {
  flex: 1 1 250px;
  min-width: 220px;
  background: rgba(36, 44, 56, 0.92);
  border-radius: 18px;
  padding: 26px 22px;
  margin-bottom: 20px;
  transition: box-shadow 0.22s, border-color 0.16s, transform 0.13s;
  box-shadow: 0 4px 24px 0 rgba(131,255,212,0.08), 0 2px 8px #171d24;
  border: 1.5px solid transparent;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.feature:hover, .feature:focus-visible {
  box-shadow: 0 4px 36px 0 rgba(131,255,212,0.15), 0 2px 28px #1e2333;
  border-color: var(--neon);
  transform: translateY(-2px) scale(1.015);
}
.feature img {
  width: 40px;
  height: 40px;
  margin-bottom: 12px;
  filter: drop-shadow(0 0 3px #83ffd455);
}
.price {
  display: inline-block;
  color: var(--neon);
  font-weight: 600;
  margin-top: 12px;
  font-size: 1.08rem;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: rgba(36, 44, 56, 0.98);
  border-radius: 14px;
  box-shadow: 0 6px 20px #171d24;
  margin-bottom: 20px;
  position: relative;
  padding: 20px;
  transition: box-shadow 0.22s, transform 0.18s;
  display: flex;
  flex-direction: column;
}
.card:hover, .card:focus-visible {
  box-shadow: 0 4px 18px #67e5c1, 0 2px 16px #171d24;
  transform: scale(1.018);
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.testimonials {
  background: linear-gradient(100deg, #1d2327 65%, #232d38 100%);
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: var(--accent);
  color: #232731;
  padding: 20px 24px;
  border-radius: 13px;
  margin-bottom: 20px;
  min-width: 210px;
  flex: 1 1 270px;
  box-shadow: 0 5px 20px #23455411, 0 1.5px 8px #3fac8b10;
  border-left: 2.5px solid var(--neon);
  transition: box-shadow 0.18s, transform 0.15s, border-color 0.16s;
}
.testimonial-card p {
  color: #234554;
  font-weight: 500;
  font-size: 1.06rem;
}
.testimonial-card span {
  font-size: 0.97rem;
  color: #345066;
  font-weight: 500;
}
.testimonial-card:hover, .testimonial-card:focus-visible {
  box-shadow: 0 8px 30px #67e5c140, 0 4px 12px #3fab8d44;
  border-left: 2.5px solid #5ffff4;
  transform: translateY(-2px) scale(1.012);
}

.cta-section {
  background: linear-gradient(90deg, #273b4e 50%, #31574c 100%);
  border-radius: 18px;
  box-shadow: 0 2px 24px #23455422;
  margin-bottom: 0;
}

.brand-footer {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
}
.brand-footer img {
  width: 38px;
  height: 38px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.footer-nav a {
  color: var(--neon);
  font-size: 1rem;
  transition: color 0.18s;
}
.footer-nav a:hover {
  color: #67e5c1;
}

/* ===== BUTTONS & CTA ===== */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  background: var(--primary);
  color: var(--neon);
  padding: 12px 32px;
  border-radius: 32px;
  font-size: 1.13rem;
  box-shadow: 0 0 12px #83ffd433, 0 2px 8px #334a4e22;
  text-shadow: 0 0 2px #234554;
  transition: background 0.18s, color 0.21s, box-shadow 0.23s, transform 0.14s;
  border: 2px solid var(--neon);
  margin-top: 8px;
}
.cta.primary {
  background: var(--primary);
  color: var(--neon);
}
.cta.primary:hover, .cta.primary:focus-visible {
  background: var(--secondary);
  color: #232731;
  border-color: #83ffd4;
  box-shadow: 0 0 16px #83ffd488, 0 2px 12px #b8f9ef23;
  transform: scale(1.03) translateY(-2px);
}
.cta.secondary {
  background: var(--neon);
  color: var(--primary-dark);
  border: 2px solid var(--primary);
}
.cta.secondary:hover, .cta.secondary:focus-visible {
  background: var(--primary);
  color: var(--neon);
  border-color: var(--secondary);
}

button, .button, input[type="submit"] {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border-radius: 26px;
  padding: 10px 26px;
  font-size: 1rem;
  border: 2px solid transparent;
  background: var(--secondary);
  color: var(--black);
  margin-right: 10px;
  transition: background 0.17s, color 0.17s, border 0.14s, box-shadow 0.15s, transform 0.12s;
}
button:hover, .button:hover, input[type="submit"]:hover {
  background: var(--neon);
  color: var(--primary-dark);
  border: 2px solid var(--neon);
  box-shadow: 0 2px 12px #83ffd433;
  transform: scale(1.03);
}

/* =======
   HEADER
   ======= */
header {
  background: #232731;
  box-shadow: 0 2px 10px #23455417, 0 1.5px 6px #21282e12;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 30px;
  padding-top: 18px;
  padding-bottom: 18px;
}
header a img {
  margin-right: 18px;
  width: 56px;
  height: 44px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
  margin-right: auto;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: var(--accent);
  font-size: 1.06rem;
  letter-spacing: 0.5px;
  position: relative;
  padding: 3px 0;
  transition: color 0.16s;
}
.main-nav a::after {
  content: '';
  display: block;
  margin: 3px auto 0 auto;
  width: 0%;
  height: 2px;
  background: var(--neon);
  transition: width 0.2s;
}
.main-nav a:hover, .main-nav a:focus-visible {
  color: var(--neon);
}
.main-nav a:hover::after, .main-nav a:focus-visible::after {
  width: 100%;
}

/* ===== MOBILE NAV ===== */
.mobile-menu-toggle {
  display: none;
  background: var(--neon);
  color: #232731;
  font-size: 2rem;
  border-radius: 8px;
  border: none;
  margin-left: 10px;
  min-width: 46px;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  z-index: 101;
  transition: background 0.15s, color 0.16s, box-shadow 0.12s;
}
.mobile-menu-toggle:focus-visible {
  box-shadow: 0 0 0 3px #67e5c1b1;
  outline: none;
}
@media (max-width: 1000px) {
  .main-nav, .cta.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(35, 46, 65, 0.97);
  z-index: 99999;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(.47,1.14,.41,.99);
  display: flex;
  flex-direction: column;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--neon);
  font-size: 2.2rem;
  align-self: flex-end;
  margin: 18px 30px 12px 0;
  cursor: pointer;
  z-index: 1001;
  transition: color 0.12s;
}
.mobile-menu-close:focus-visible {
  color: var(--accent-dark);
  outline: 2px solid var(--neon);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
  padding: 10px 40px 0 40px;
  margin-top: 20px;
}
.mobile-nav a {
  color: var(--neon);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.45rem;
  font-weight: 600;
  padding: 6px 0;
  border-radius: 9px;
  transition: background 0.16s, color 0.17s;
  min-width: 160px;
}
.mobile-nav a:hover, .mobile-nav a:focus-visible {
  background: var(--primary-dark);
  color: var(--accent);
}
@media (min-width: 1001px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}

/* ===========
   HERO/CTA
   =========== */
.hero {
  background: linear-gradient(95deg, #273b4e 70%, #345066 100%);
  border-radius: 18px;
  min-height: 340px;
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  box-shadow: 0 2px 38px #23455422;
  overflow: hidden;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 14px;
  padding: 38px 18px 32px 18px;
}
.hero h1 {
  font-size: 2.7rem;
  letter-spacing: 1.5px;
}
.hero .cta {
  margin-top: 14px;
  font-size: 1.2rem;
}
@media (max-width: 767px) {
  .hero {
    min-height: 210px;
    border-radius: 10px;
    margin-bottom: 36px;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .hero .container {
    padding: 24px 5px 20px 5px;
  }
}

.cta-section h2 {
  color: var(--neon);
  margin-bottom: 14px;
}

/* ===== BLOG/INSPIRATION CARDS ===== */
.blog-teaser {
  background: rgba(36, 44, 56, 0.98);
  border-radius: 13px;
  box-shadow: 0 3px 14px #171d24;
  border-left: 3px solid var(--neon);
  padding: 22px 24px;
  margin-bottom: 20px;
  min-width: 210px;
  transition: box-shadow 0.17s, border-color 0.13s, transform 0.14s;
}
.blog-teaser h3 {
  color: var(--neon);
  font-size: 1.25rem;
}
.blog-teaser:hover, .blog-teaser:focus-visible {
  box-shadow: 0 7px 22px #83ffd422, 0 2px 16px #3fab8d19;
  border-left: 3px solid #67e5c1;
  transform: scale(1.018);
}

.pricing-summary {
  background: #223135;
  border-radius: 14px;
  padding: 22px 22px;
  margin: 28px 0 0 0;
}

/* ================
   THANK YOU PAGE
   ================ */
section.thankyou {
  background: linear-gradient(102deg, #345066 65%, #6e998752 90%);
  border-radius: 18px;
  min-height: 330px;
  box-shadow: 0 4px 22px #23455433;
  display: flex;
  align-items: center;
}

.text-section h2, .text-section h3 {
  margin-top: 18px;
}

/* ====================================================
   CRITICAL FLEXBOX PATTERNS (MANDATORY CODE SECTIONS)
   ==================================================== */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.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;
}
.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;
}

/* =============
   FORM ELEMENTS
   ============= */
input, textarea, select {
  font-size: 1rem;
  padding: 12px 18px;
  border-radius: 9px;
  background: #161a1f;
  color: var(--white);
  border: 1.5px solid #2a3340;
  margin-bottom: 10px;
  width: 100%;
  transition: border 0.12s, box-shadow 0.14s;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border: 1.5px solid var(--neon);
  box-shadow: 0 0 3px #83ffd455;
}
label {
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 4px;
}

/* ===========
   TABLE STYLE
   =========== */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  background: #1D2327;
}
th, td {
  border: 1px solid #2c3947;
  padding: 12px 9px;
  text-align: left;
  color: var(--accent);
}
th {
  background: #345066;
  color: var(--neon);
}

/* =================
   COOKIE CONSENT
   ================= */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--cookie-bar-bg);
  color: var(--accent);
  box-shadow: 0 -2px 26px #23455490;
  padding: 24px 18px 20px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 99999;
  gap: 16px;
  transition: transform 0.4s cubic-bezier(.5,1,.4,1.01), opacity 0.14s;
  font-size: 1.04rem;
}
.cookie-consent-banner.hide {
  opacity: 0;
  transform: translateY(120%);
  pointer-events: none;
}
.cookie-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 6px;
}
.cookie-btn {
  background: var(--neon);
  color: var(--primary-dark);
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border-radius: 22px;
  padding: 8px 26px;
  min-width: 110px;
  font-size: 1rem;
  transition: background 0.12s, color 0.12s, box-shadow 0.14s;
  box-shadow: 0 1.7px 7px #83ffd444;
}
.cookie-btn.settings {
  background: var(--secondary);
  color: #232731;
  border: 2px solid var(--neon);
}
.cookie-btn.reject {
  background: #F44336;
  color: #fff;
}
.cookie-btn:hover, .cookie-btn:focus-visible {
  background: var(--primary);
  color: var(--neon);
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,34,46,0.86);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.22s;
}
.cookie-modal {
  background: var(--cookie-bar-bg);
  border-radius: 14px;
  box-shadow: 0 6px 32px #134b4033;
  padding: 36px 22px 28px 22px;
  max-width: 430px;
  width: 94vw;
  color: var(--accent);
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: pop-in 0.34s cubic-bezier(.73,.06,.34,1.54);
  position: relative;
}
.cookie-modal h2 {
  color: var(--neon);
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.cookie-modal .cookie-switch {
  display: inline-block;
  width: 36px;
  height: 20px;
  position: relative;
}
.cookie-modal .cookie-switch input[type="checkbox"] {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-modal .slider {
  background: #344;
  border-radius: 10px;
  position: absolute;
  top: 0; left: 0;
  width: 36px;
  height: 20px;
  transition: background 0.18s;
}
.cookie-modal .slider:before {
  content: '';
  position: absolute;
  width: 18px; height: 18px;
  left: 1px; top: 1px;
  background: var(--neon);
  border-radius: 50%;
  transition: 0.18s;
}
.cookie-modal .cookie-switch input[type="checkbox"]:checked + .slider {
  background: var(--neon);
}
.cookie-modal .cookie-switch input[type="checkbox"]:checked + .slider:before {
  transform: translateX(16px);
  background: #223135;
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 20px;
}
.cookie-modal-close {
  position: absolute;
  top: 16px; right: 18px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--neon);
  cursor: pointer;
}

/* Animation */
@keyframes pop-in {
  from { transform: scale(0.9); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

/* ==============
   RESPONSIVE
   ============== */
@media (max-width: 768px) {
  .container {
    padding-left: 7px;
    padding-right: 7px;
  }
  .content-wrapper, .content-grid {
    flex-direction: column !important;
    gap: 18px;
    align-items: stretch;
  }
  .testimonials .content-wrapper {
    flex-direction: column !important;
    gap: 18px;
    align-items: stretch;
  }
  .section {
    margin-bottom: 40px;
    padding: 26px 4.5vw;
  }
  .features-grid {
    gap: 16px;
  }
  .feature, .blog-teaser, .testimonial-card, .card {
    min-width: 0;
    width: 100%;
    margin-bottom: 13px;
    padding: 18px 12px;
  }
  .hero {
    padding: 0;
  }
}

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

/* ===============
   MISCELLANEOUS
   =============== */
hr {
  border: 0;
  border-top: 1px solid var(--primary);
  margin: 22px 0;
}
/* Remove input fading on autofill */
input:-webkit-autofill {
  box-shadow: 0 0 0px 1000px #161a1f inset;
  -webkit-box-shadow:0 0 0 1000px #161a1f inset;
  -webkit-text-fill-color: var(--white);
}
::-webkit-scrollbar {
  width: 10px;
  background: #182136;
}
::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 8px;
}

/* ===============
   PRINT & ACCESSIBILITY
   =============== */
@media print {
  * { background: #fff !important; color: #000 !important; }
  header, footer, .cookie-consent-banner { display: none !important; }
}

/* Hide cookie modal by default */
.cookie-modal-overlay { display: none; }
.cookie-modal-overlay.open { display: flex; }

/* ===== END RADIANT VECTOR WOHNDESIGN STYLES ===== */
