/* ==========================================  
   Radiance Jet Übersetzungsbüro "modern_bold" 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;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s;
}
img {
  max-width: 100%;
  display: block;
}
button, input, select, textarea {
  font: inherit;
  background: none;
  border: none;
  outline: none;
  padding: 0;
}
button {
  cursor: pointer;
}
table {
  border-collapse: collapse;
  width: 100%;
}

/* ----------------------------------
   Brand Variables
---------------------------------- */
:root {
  --color-primary: #20426E;
  --color-secondary: #E5EAF4;
  --color-accent: #F5A623;
  --color-dark: #18294a;
  --color-white: #fff;
  --color-grey: #f4f6fa;
  --color-grey2: #dbe2ed;
  --color-success: #20C997;
  --color-danger: #F24A4A;
  --color-text: #1A2330;
  --color-muted: #6B7687;

  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Open Sans', Arial, Helvetica, sans-serif;
}

/* ----------------------------------
   Universal Typography & Base
---------------------------------- */
body {
  color: var(--color-text);
  font-family: var(--font-body);
  background: var(--color-grey);
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--color-primary);
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 18px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 14px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-size: 1rem;
}
p, ul, ol, table, .text-section, .faq-answer {
  font-size: 1rem;
  color: var(--color-text);
}
strong {
  font-weight: 700;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-white);
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(32,66,110,0.08), 0 1.5px 6px rgba(32,66,110,0.08);
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

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

/* ----------------------------------
   Header & Navigation
---------------------------------- */
header {
  background: var(--color-white);
  border-bottom: 4px solid var(--color-secondary);
  /* geometric strip as separator */
}
.header-flex {
  display: flex;
  align-items: center;
  gap: 32px;
  justify-content: space-between;
  padding: 24px 0;
}
.logo-link {
  display: flex;
  align-items: center;
  padding: 6px 0;
  height: 56px;
}
.main-nav {
  display: flex;
  gap: 26px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
}
.main-nav a {
  padding: 6px 12px;
  border-radius: 4px;
  color: var(--color-primary);
  transition: background 0.18s, color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--color-accent);
  color: var(--color-white);
}
.button-primary {
  display: inline-flex;
  align-items: center;
  background: var(--color-accent);
  color: var(--color-dark);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.06rem;
  padding: 12px 30px;
  border-radius: 28px;
  box-shadow: 0 2px 12px rgba(245,166,35,0.10);
  transition: background 0.16s, color 0.16s, box-shadow 0.2s;
  border: none;
  letter-spacing: 1px;
}
.button-primary:hover, .button-primary:focus {
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 6px 24px rgba(32,66,110,0.08);
}

/* ----------------------------------
   Mobile Menu Burger & Overlay
---------------------------------- */
.mobile-menu-toggle {
  display: none;
  height: 46px;
  width: 46px;
  font-size: 1.9rem;
  background: var(--color-accent);
  color: var(--color-dark);
  border-radius: 10px;
  z-index: 1002;
  transition: background 0.18s, color 0.18s, box-shadow 0.2s;
  border: none;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--color-primary);
  color: var(--color-white);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: var(--color-white);
  z-index: 1030;
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(.7,.2,.2,1);
  box-shadow: 0 8px 32px rgba(32,66,110,0.13);
  padding: 0 14px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow-y: auto;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 25px 0;
  font-size: 2.1rem;
  background: transparent;
  color: var(--color-accent);
  border-radius: 8px;
  padding: 4px 12px;
  transition: background 0.19s, color 0.19s;
  border: none;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--color-secondary);
  color: var(--color-primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
}
.mobile-nav a {
  padding: 14px 0px 14px 12px;
  border-radius: 6px;
  color: var(--color-primary);
  transition: background 0.20s, color 0.20s;
  font-weight: 800;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-accent);
  color: var(--color-white);
}

/* ----------------------------------
   Hero / Section Styles (Bold)
---------------------------------- */
.hero-section {
  background: var(--color-secondary);
  border-radius: 0 0 28px 28px;
  padding: 70px 0 56px 0;
  box-shadow: 0 8px 32px rgba(32,66,110,0.10);
}
.hero-section h1 {
  color: var(--color-primary);
  font-size: 2.6rem;
  max-width: 650px;
}
.hero-section p {
  color: var(--color-dark);
  font-size: 1.18rem;
  font-weight: 500;
  margin-bottom: 18px;
  max-width: 600px;
}

/* Responsive content grouping for page sections */
.features-section, .services-section, .testimonials-section, .cta-section {
  background: var(--color-white);
  margin-top: 20px;
  margin-bottom: 60px;
  border-radius: 22px;
  box-shadow: 0 4px 18px rgba(32,66,110,0.07);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* ----------------------------------
   Features (Index/Highlight)
---------------------------------- */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 6px;
  font-family: var(--font-display);
}
.feature-grid li {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--color-secondary);
  border-radius: 10px;
  padding: 16px 18px;
  min-width: 210px;
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 6px;
  box-shadow: 0 3px 11px rgba(32,66,110,.04);
  color: var(--color-primary);
  letter-spacing: 0.02em;
}
.feature-grid img {
  width: 32px;
  height: 32px;
}

/* ----------------------------------
   Card Containers for Services, Features
---------------------------------- */
.card-container,
.service-highlights,
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
}
.service-card, .card {
  background: var(--color-white);
  border: 2.5px solid var(--color-secondary);
  border-radius: 18px;
  box-shadow: 0 4px 20px rgba(32,66,110,0.045);
  padding: 28px 24px;
  min-width: 250px;
  flex: 1 1 240px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.2s, border-color 0.19s, transform 0.16s;
}
.service-card h3 {
  font-size: 1.20rem;
  color: var(--color-primary);
  margin-bottom: 6px;
  font-family: var(--font-display);
  font-weight: 800;
}
.service-card p {
  flex: 1;
  font-size: 1rem;
  color: var(--color-text);
}
.service-card .price {
  display: inline-block;
  background: var(--color-secondary);
  color: var(--color-primary);
  font-family: var(--font-display);
  font-weight: 700;
  padding: 7px 18px;
  border-radius: 36px;
  font-size: 0.96rem;
  margin-top: 6px;
  letter-spacing: 0.02em;
}
.service-card:hover, .service-card:focus {
  border-color: var(--color-accent);
  box-shadow: 0 6px 26px rgba(245,166,35,0.08),0 2px 14px rgba(32,66,110,0.09);
  transform: translateY(-4px) scale(1.025);
}

/* Content Card Interface */
.card {
  background: var(--color-secondary);
  border: none;
  border-radius: 14px;
  padding: 18px 18px;
  box-shadow: 0 3px 10px rgba(32,66,110,0.06);
  transition: box-shadow 0.19s, background 0.15s;
}
.card:hover, .card:focus {
  background: var(--color-accent);
  color: var(--color-white);
  box-shadow: 0 10px 24px rgba(245,166,35,0.12);
}

/* ----------------------------------
   Testimonials (Slider & Card)
---------------------------------- */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  background: var(--color-secondary);
  color: var(--color-dark);
  border-radius: 14px;
  padding: 24px 28px;
  min-width: 230px;
  max-width: 360px;
  box-shadow: 0 2px 14px rgba(32,66,110,0.051);
  margin-bottom: 20px;
  font-size: 1.06rem;
  position: relative;
}
.testimonial-card p {
  font-size: 1.06rem;
  color: var(--color-dark);
  font-weight: 600;
}
.testimonial-card strong {
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: 0.05em;
}

/* ----------------------------------
   Pricing Table
---------------------------------- */
.pricing-table {
  width: 100%;
  background: var(--color-white);
  border-radius: 16px;
  margin-bottom: 22px;
  box-shadow: 0 2px 10px rgba(32,66,110,0.05);
}
.pricing-table thead tr {
  background: var(--color-secondary);
}
.pricing-table th, .pricing-table td {
  padding: 16px 12px;
  text-align: left;
  color: var(--color-primary);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.04rem;
}
.pricing-table tbody tr {
  border-bottom: 2px solid var(--color-secondary);
}
.pricing-table td {
  color: var(--color-dark);
  font-family: var(--font-body);
  font-weight: 500;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}
@media (max-width: 600px) {
  .pricing-table th, .pricing-table td { padding: 11px 6px; }
}

/* ----------------------------------
   Accordion FAQ
---------------------------------- */
.accordion-faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 18px;
}
.faq-item {
  background: var(--color-secondary);
  padding: 18px 22px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(32,66,110,0.055);
  transition: background 0.14s;
  margin-bottom: 10px;
}
.faq-item h3 {
  color: var(--color-primary);
  font-size: 1.11rem;
  font-family: var(--font-display);
  font-weight: 800;
  margin-bottom: 8px;
}
.faq-answer {
  color: var(--color-dark);
  font-size: 1rem;
}

/* ----------------------------------
   Address Box, Map, Certification, Misc.
---------------------------------- */
.address-box {
  background: var(--color-secondary);
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 22px;
  font-size: 1.07rem;
}
.address-box img {
  width: 20px;
  margin-right: 8px;
}
.map-embed {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 0;
  font-family: var(--font-display);
  font-size: 1.12rem;
  color: var(--color-primary);
}
.map-embed img {
  width: 42px;
  height: 42px;
}
.certifications {
  margin-top: 20px;
  background: var(--color-secondary);
  border-radius: 8px;
  padding: 10px 16px;
  display: inline-block;
  font-weight: 700;
  color: var(--color-dark);
  font-family: var(--font-display);
}

/* ----------------------------------
   Footer Styles
---------------------------------- */
footer {
  background: var(--color-primary);
  color: var(--color-white);
  padding-top: 48px;
  margin-top: 82px;
  border-radius: 32px 32px 0 0;
}
.footer-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 42px;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 22px;
}
.footer-logo {
  width: 68px;
  margin-bottom: 10px;
}
.contact-snippet span {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 1rem;
  color: var(--color-white);
  margin-bottom: 3px;
}
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}
.footer-menu a {
  color: var(--color-white);
  opacity: 0.92;
  transition: opacity 0.2s, color 0.2s;
  font-family: var(--font-display);
}
.footer-menu a:hover {
  color: var(--color-accent);
  opacity: 1;
}
.social-links {
  display: flex;
  gap: 16px;
  align-items: center;
}
.social-links a {
  display: flex;
  align-items: center;
  background: var(--color-accent);
  border-radius: 10px;
  width: 40px;
  height: 40px;
  justify-content: center;
  opacity: 0.97;
  transition: background 0.17s, opacity 0.18s;
}
.social-links a:hover, .social-links a:focus {
  background: var(--color-white);
  opacity: 1;
}
.social-links img {
  width: 22px;
  height: 22px;
}
.footer-bottom {
  border-top: 1.5px solid var(--color-grey2);
  margin-top: 30px;
  color: var(--color-secondary);
  font-size: 0.92rem;
  font-family: var(--font-body);
  text-align: center;
  padding: 14px 0 10px 0;
}

/* ----------------------------------
   CTA Section (Bold Style)
---------------------------------- */
.cta-section {
  background: var(--color-accent);
  color: var(--color-dark);
  border-radius: 20px;
  text-align: center;
  padding: 60px 20px;
  margin-top: 24px;
  box-shadow: 0 6px 24px rgba(32,66,110,0.08);
}
.cta-section h2 {
  color: var(--color-primary);
  font-size: 2.1rem;
  margin-bottom: 10px;
}
.cta-section p {
  color: var(--color-dark);
  font-size: 1.14rem;
  margin-bottom: 24px;
  font-weight: 600;
}
.cta-section .button-primary {
  font-size: 1.17rem;
}

/* ----------------------------------
   Utility Classes
---------------------------------- */
.text-section {
  margin-bottom: 26px;
  color: var(--color-dark);
}
.text-section ul, .text-section ol {
  margin-left: 22px;
  margin-top: 12px;
}
.text-section li {
  margin-bottom: 7px;
  list-style-position: inside;
  color: var(--color-text);
}
ol {
  list-style: decimal inside;
}
ul {
  list-style: disc inside;
}

.table {
  margin-bottom: 20px;
}

.thank-you-message {
  background: var(--color-secondary);
  border-radius: 10px;
  padding: 20px 20px 12px 20px;
}
.next-steps-info {
  margin: 18px 0 22px 0;
}
.next-steps-info ul {
  margin-left: 16px;
}
.next-steps-info li {
  margin-bottom: 6px;
}

.workflow-diagram {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 20px;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-primary);
}
.workflow-diagram img {
  width: 32px;
}

/* ----------------------------------
   Cookie Consent Banner & Modal
---------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  z-index: 4000;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--color-secondary);
  color: var(--color-primary);
  box-shadow: 0 0 24px rgba(32,66,110,0.16);
  padding: 30px 16px 18px 16px;
  font-size: 1.03rem;
  border-radius: 18px 18px 0 0;
  transition: transform 0.55s cubic-bezier(.7,.2,.2,1), opacity 0.28s;
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateY(100%);
  pointer-events: none;
}
.cookie-banner-content {
  max-width: 900px;
  margin-bottom: 13px;
  text-align: center;
}
.cookie-banner-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 9px;
}
.cookie-banner .cookie-btn {
  background: var(--color-accent);
  color: var(--color-dark);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 24px;
  padding: 10px 28px;
  margin-right: 4px;
  border: none;
  transition: background 0.15s, color 0.15s;
}
.cookie-banner .cookie-btn.reject {
  background: var(--color-danger);
  color: var(--color-white);
}
.cookie-banner .cookie-btn.settings {
  background: var(--color-secondary);
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: var(--color-primary);
  color: var(--color-white);
}
.cookie-preferences-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(32,66,110,0.20);
  z-index: 4200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.18s;
}
.cookie-preferences-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-content {
  background: var(--color-white);
  color: var(--color-primary);
  border-radius: 18px;
  padding: 38px 28px 28px 28px;
  min-width: 320px;
  max-width: 99vw;
  box-shadow: 0 4px 60px rgba(32,66,110,0.17);
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}
.cookie-modal-content h2 {
  margin-bottom: 5px;
  color: var(--color-primary);
}
.cookie-modal-content ul {
  margin-left: 10px;
}
.cookie-modal-content .cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 13px;
}
.cookie-modal-content .cookie-toggle {
  appearance: none;
  width: 38px; height: 22px;
  background: var(--color-grey2);
  border-radius: 12px;
  position: relative;
  outline: none;
  transition: background 0.16s;
  cursor: pointer;
}
.cookie-modal-content .cookie-toggle:checked {
  background: var(--color-accent);
}
.cookie-modal-content .cookie-toggle:before {
  content: '';
  display: block;
  width: 18px; height: 18px;
  background: var(--color-primary);
  border-radius: 50%;
  position: absolute;
  top: 2px; left: 2px;
  transition: left 0.15s, background 0.13s;
}
.cookie-modal-content .cookie-toggle:checked:before {
  left: 18px; background: var(--color-accent);
}
.cookie-modal-content .cookie-toggle[disabled] {
  cursor: not-allowed;
  opacity: 0.7;
}
.cookie-modal-content .modal-actions {
  display: flex;
  gap: 16px;
  margin-top: 7px;
}
.cookie-modal-close {
  position: absolute;
  right: 12px; top: 8px;
  background: transparent;
  color: var(--color-accent);
  font-size: 2rem;
  border: none;
  cursor: pointer;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: var(--color-danger);
}

/* ----------------------------------
   Flexbox Utility Classes
---------------------------------- */
.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; }

/* ----------------------------------
   Responsive Design
---------------------------------- */
@media (max-width: 1100px) {
  .container { max-width: 950px; }
}
@media (max-width: 900px) {
  .footer-flex {
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  h1 {font-size: 2rem;}
  h2 {font-size: 1.4rem;}
  .header-flex {
    padding: 14px 0 14px 0;
  }
  .main-nav,
  .button-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-flex;
  }
  .feature-grid {
    flex-direction: column;
    gap: 13px;
  }
  .card-container, .service-highlights, .service-cards, .testimonial-slider {
    flex-direction: column;
    gap: 20px;
  }
  .footer-flex {
    flex-direction: column;
    gap: 28px;
    align-items: flex-start;
  }
  .cta-section {
    padding: 38px 10px;
  }
  .map-embed {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
@media (max-width: 550px) {
  .hero-section {
    padding: 40px 0 28px 0;
    border-radius: 0 0 16px 16px;
  }
  .footer-logo {
    width: 46px;
  }
  .card, .service-card, .testimonial-card {
    min-width: unset;
    padding: 16px 8px;
  }
  .content-wrapper {
    gap: 10px;
  }
  .section {
    padding: 20px 2px;
    margin-bottom: 38px;
    border-radius: 10px;
  }
  .cookie-modal-content {
    min-width: 0;
    padding: 18px 5px 12px 7px;
  }
}

/* ----------------------------------
   Micro-Interactions & Animation
---------------------------------- */
a, .button-primary, .service-card, .card {
  transition: box-shadow 0.16s, background 0.16s, color 0.16s, transform 0.13s;
}
.service-card:active, .button-primary:active {
  transform: scale(0.97);
}

/* ----------------------------------
   Scrollbar Styling (modern_bold)
---------------------------------- */
::-webkit-scrollbar {
  width: 9px;
  background: var(--color-secondary);
  border-radius: 6px;
}
::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: 6px;
}

/* ----------------------------------
   Accessibility
---------------------------------- */
:focus {
  outline: 2.5px solid var(--color-accent);
  outline-offset: 1.5px;
}

/* End of Radiance Jet CSS */
