/* BlitzKurier Berlin Professional Corporate Theme - style.css */

/* 1. CSS RESET & NORMALIZE FOR CONSISTENT 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.55;
  background: #f9fbfd;
  color: #22323C;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
ol, ul {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
  border: 0;
}
table {
  border-collapse: collapse;
  width: 100%;
}
th, td {
  text-align: left;
  padding: 12px 16px;
}

/* 2. BRAND VARIABLES */
:root {
  --primary: #16324F;
  --secondary: #51A3A3;
  --accent: #F2AC29;
  --neutral: #f5f7fa;
  --bg: #f9fbfd;
  --gray-100: #e9eef4;
  --gray-200: #cfd8e2;
  --gray-300: #b5c3d3;
  --gray-600: #616e7c;
  --text-dark: #16324F;
  --text-medium: #34495e;
  --text-light: #7a859a;
  --white: #fff;
  --shadow-med: 0 4px 16px rgba(22, 50, 79, 0.07);
  --shadow-light: 0 2px 6px rgba(22,50,79,0.05);
  --border-radius: 12px;
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Open Sans', Arial, sans-serif;
}

/* 3. TYPOGRAPHY */
body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-medium);
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--text-dark);
  font-weight: 700;
  letter-spacing: -0.5px;
}
h1 {
  font-size: 2.25rem;
  margin-bottom: 24px;
  line-height: 1.15;
}
h2 {
  font-size: 1.5rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.125rem;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1rem;
  margin-bottom: 6px;
}
p, li {
  font-size: 1rem;
}
strong {
  color: var(--primary);
  font-weight: bold;
}

/* 4. CONTAINER & LAYOUT STRUCTURE */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

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

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.card {
  margin-bottom: 20px;
  background: var(--white);
  box-shadow: var(--shadow-med);
  border-radius: var(--border-radius);
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 24px;
  min-width: 250px;
  flex: 1 1 260px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.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;
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--gray-100);
  box-shadow: var(--shadow-light);
  border-radius: var(--border-radius);
  margin-bottom: 20px;
  min-width: 260px;
  flex: 1 1 320px;
  color: var(--primary);
}
.testimonial-card p {
  font-size: 1.125rem;
  font-style: italic;
  color: var(--primary);
}
.testimonial-card span {
  color: var(--gray-600);
  font-size: 1rem;
  font-style: normal;
  margin-left: 8px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--gray-100);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  padding: 24px 20px;
  margin-bottom: 20px;
  min-width: 240px;
  flex: 1 1 240px;
}

/* Feature Grid (startseite) */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.feature-grid > div {
  flex: 1 1 220px;
  background: var(--gray-100);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  padding: 24px 18px 20px 18px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.feature-grid img {
  width: 36px;
  height: 36px;
  margin-bottom: 8px;
}
.feature-grid h3 {
  font-size: 1.125rem;
  color: var(--primary);
}

/* CTA Banners */
.cta-banner {
  background: var(--primary);
  color: var(--white);
  border-radius: var(--border-radius);
  text-align: center;
  margin-bottom: 60px;
  padding: 36px 20px;
  box-shadow: var(--shadow-med);
}
.cta-banner h2, .cta-banner p {
  color: var(--white);
}

/* Buttons & Links */
.cta,
button.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 26px;
  padding: 12px 28px;
  border: none;
  background: var(--secondary);
  color: var(--white);
  transition: background 0.2s, box-shadow 0.2s, color 0.2s, transform 0.2s;
  box-shadow: var(--shadow-light);
  cursor: pointer;
  text-decoration: none;
  margin-top: 12px;
}
.cta.primary {
  background: var(--accent);
  color: var(--primary);
}
.cta.primary:hover,
.cta.primary:focus {
  background: #ed9900;
  color: var(--white);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 6px 24px rgba(81, 163, 163, 0.10);
}
.cta:hover, .cta:focus {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px) scale(1.03);
}
nav a.cta {
  margin-left: 20px;
}

/* Tables & Info Boxes */
table {
  background: var(--neutral);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  margin-bottom: 32px;
}
table caption {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
  padding: 14px 18px 6px 18px;
}
th {
  background: var(--primary);
  color: var(--white);
  font-size: 1rem;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
}
td {
  color: var(--text-medium);
  font-size: 1rem;
}
.info-box {
  background: var(--gray-200);
  border-left: 3px solid var(--accent);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  padding: 18px 20px;
  margin-bottom: 20px;
  color: var(--primary);
}

/* 5. HEADER & NAVIGATION */
header {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1001;
  box-shadow: 0 2px 12px rgba(22,50,79,0.03);
  min-height: 68px;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
}
.logo img, .logo-foot img {
  height: 44px;
}
nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
nav a {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--primary);
  font-weight: 500;
  padding: 8px 0;
  transition: color 0.16s;
  margin-right: 2px;
}
nav a:hover, nav a:focus {
  color: var(--accent);
}
nav a.active {
  color: var(--secondary);
  border-bottom: 2px solid var(--secondary);
}

/* 6. HERO & SPECIAL SECTIONS */
.hero {
  padding: 54px 0 40px 0;
  background: linear-gradient(96deg, var(--primary) 67%, var(--secondary) 100%);
  color: var(--white);
  border-radius: 0 0 28px 28px;
  min-height: 340px;
  margin-bottom: 60px;
  box-shadow: 0 8px 32px rgba(22,50,79,0.13);
}
.hero .container {
  justify-content: center;
  align-items: center;
}
.hero .content-wrapper h1,
.hero .content-wrapper p {
  color: var(--white);
}
.hero .content-wrapper {
  max-width: 700px;
}
.hero .cta.primary {
  margin-top: 28px;
}

/* 7. FOOTER */
footer {
  background: var(--primary);
  color: var(--white);
  padding: 38px 0 14px 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
footer .content-wrapper {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
}
footer nav {
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
footer nav a {
  color: var(--white);
  font-size: 1rem;
  font-family: var(--font-display);
  opacity: 0.85;
  transition: opacity 0.2s, color 0.18s;
}
footer nav a:hover,
footer nav a:focus {
  color: var(--accent);
  opacity: 1;
}
.logo-foot img {
  height: 44px;
  margin-bottom: 14px;
}
.footer-contact p {
  color: var(--gray-100);
  font-size: 0.95rem;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.social-links {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 10px;
}
.social-links a img {
  height: 28px;
  width: 28px;
  filter: brightness(0) invert(1);
  opacity: 0.80;
  transition: opacity 0.16s;
}
.social-links a:hover img,
.social-links a:focus img {
  opacity: 1;
  filter: brightness(1) drop-shadow(0 0 2px var(--accent));
}

/* 8. FAQ Accordion */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 18px;
}
.faq-question h2 {
  cursor: pointer;
  position: relative;
  padding-right: 28px;
  font-size: 1.1rem;
  transition: color 0.15s;
}
.faq-question h2:after {
  content: '+';
  position: absolute;
  right: 0; top: 0;
  font-size: 1.3rem;
  color: var(--secondary);
  transition: transform 0.22s;
}
.faq-question.active h2:after {
  content: '-';
  transform: rotate(90deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(.4,.01,.31,1), opacity 0.19s;
  opacity: 0;
}
.faq-question.active .faq-answer {
  max-height: 300px;
  opacity: 1;
  margin-top: 10px;
}
.faq-answer p {
  color: var(--text-medium);
}
.faq-contact-shortcut {
  background: var(--secondary);
  color: var(--white);
  padding: 18px 22px;
  border-radius: var(--border-radius);
  margin-top: 24px;
  font-size: 1rem;
}
.faq-contact-shortcut a {
  color: var(--accent);
  font-weight: bold;
}

/* 9. STEP-BY-STEP (how-it-works) */
.steps-overview {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
  justify-content: space-between;
}
.step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  flex: 1 1 180px;
  background: var(--gray-100);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  padding: 24px 18px 20px 18px;
  min-width: 180px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.18s;
}
.step img {
  width: 34px;
  height: 34px;
}
.step:hover, .step:focus-within {
  box-shadow: 0 6px 32px rgba(81,163,163,0.09);
  transform: translateY(-3px) scale(1.03);
}

/* 10. SERVICES PAGE CARDS */
.services-list .service-detail-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.service-box {
  flex: 1 1 240px;
  background: var(--gray-100);
  box-shadow: var(--shadow-light);
  border-radius: var(--border-radius);
  padding: 26px 20px 22px 20px;
  min-width: 220px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.18s, transform 0.13s;
}
.service-box:hover, .service-box:focus-within {
  box-shadow: 0 6px 24px rgba(81,163,163,0.10);
  transform: translateY(-3px) scale(1.03);
}

/* 11. PRICING TABLES */
.price-tables {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 24px;
}
.price-tables table {
  flex: 1 1 330px;
  min-width: 300px;
}

/* 12. ABOUT / TEAM / FACTS */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 16px;
}
.text-section ul {
  padding-left: 18px;
  margin-top: 10px;
}
.text-section li {
  margin-bottom: 7px;
  font-size: 1rem;
  position: relative;
}
.text-section li:before {
  content: '\2022';
  color: var(--secondary);
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}
.text-section li img {
  vertical-align: middle;
  width: 20px;
  margin-right: 8px;
  filter: grayscale(60%);
}

/* 13. CARD SPACING, MARGINS, FLEX */
.map-section, .facts, .team, .about, .confirmation, .privacy, .gdpr, .cookie-policy, .terms {
  margin-bottom: 60px;
}

/* 14. TESTIMONIALS (slider-cards) */
.testimonials .testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 24px;
  margin-bottom: 24px;
}

/* 15. CONTENT SPACING */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* 16. MOBILE BURGER MENU */
.mobile-menu-toggle {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 1002;
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 2rem;
  box-shadow: var(--shadow-light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.18s, transform 0.11s;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: var(--accent);
  color: var(--primary);
}

/* Hide on desktop */
@media (min-width: 900px) {
  .mobile-menu-toggle { display: none !important; }
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--primary);
  z-index: 1100;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(.64,0,.26,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 32px;
  color: var(--accent);
  background: none;
  border: none;
  font-size: 2.1rem;
  font-weight: bold;
  cursor: pointer;
  z-index: 1111;
  outline: none;
  width: 48px;
  height: 48px;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #FFD842;
}
.mobile-nav {
  margin-top: 96px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
  align-items: flex-start;
  padding-left: 32px;
}
.mobile-nav a {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 1.35rem;
  padding: 14px 0;
  width: 90vw;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  transition: color 0.17s, background 0.16s;
  border-radius: 8px;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: var(--accent);
  background: rgba(255,255,255,0.04);
}

/* Hide desktop nav on mobile, show burger */
@media (max-width: 900px) {
  header nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex !important;
  }
}
@media (min-width: 901px) {
  .mobile-menu {
    display: none !important;
  }
}

/* 17. COOKIE BANNER & CONSENT MODAL */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100vw;
  background: var(--primary);
  color: var(--white);
  z-index: 1200;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  box-shadow: 0 -2px 16px rgba(22,50,79,0.08);
  animation: cookieBannerSlideIn 0.9s cubic-bezier(.52,-0.01,.43,1);
}
@keyframes cookieBannerSlideIn {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.cookie-banner button {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  border-radius: 22px;
  padding: 8px 22px;
  border: none;
  cursor: pointer;
  background: var(--accent);
  color: var(--primary);
  margin-bottom: 0;
  transition: background 0.18s, color 0.15s, box-shadow 0.15s;
}
.cookie-banner button.reject {
  background: var(--gray-200);
  color: var(--primary);
}
.cookie-banner button.settings {
  background: var(--secondary);
  color: var(--white);
}
.cookie-banner button:hover,
.cookie-banner button:focus {
  background: #ffeea9;
  color: var(--primary);
}
.cookie-banner button.reject:hover, .cookie-banner button.reject:focus {
  background: #e9eef4;
  color: var(--primary);
}
.cookie-banner button.settings:hover, .cookie-banner button.settings:focus {
  background: #388c8c;
  color: var(--white);
}

/* Cookie Preferences Modal */
.cookie-modal-overlay {
  position: fixed;
  z-index: 1333;
  top: 0; left: 0; right:0; bottom:0;
  width: 100vw; height: 100vh;
  background: rgba(22,50,79,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.cookie-modal-overlay.open { opacity: 1; pointer-events: auto; }
.cookie-modal {
  background: var(--white);
  color: var(--primary);
  border-radius: var(--border-radius);
  box-shadow: 0 12px 48px rgba(22,50,79,0.21);
  padding: 34px 24px;
  min-width: 320px;
  max-width: 480px;
  animation: cookieModalFade .4s cubic-bezier(.565,0,.31,1);
}
@keyframes cookieModalFade {
  from { transform: translateY(35px) scale(.98); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal-title {
  font-size: 1.32rem;
  font-family: var(--font-display);
  margin-bottom: 12px;
  color: var(--primary);
}
.cookie-modal-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cookie-modal-category label {
  font-size: 1rem;
  font-weight: 600;
}
.cookie-modal-category input[type=checkbox] {
  width: 20px;
  height: 20px;
}
.cookie-modal-category .info {
  font-size: 0.93rem;
  font-weight: 400;
  color: var(--gray-600);
}
.cookie-modal-done {
  display: flex;
  gap: 16px;
  margin-top: 12px;
}
.cookie-modal-done button {
  font-family: var(--font-display);
  font-size: 1rem;
  border-radius: 20px;
  padding: 8px 22px;
  border: none;
  cursor: pointer;
  background: var(--accent);
  color: var(--primary);
  margin-bottom: 0;
  transition: background 0.15s, color 0.2s;
}
.cookie-modal-done button:hover, .cookie-modal-done button:focus {
  background: #ffeea9;
}
.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 2rem;
  color: var(--secondary);
  background: none;
  border: none;
  cursor: pointer;
}

/* 18. GENERAL RESPONSIVE ADAPTIONS */
@media (max-width: 900px) {
  .container {
    max-width: 98vw;
    padding-left: 12px;
    padding-right: 12px;
  }
  .content-wrapper, section, .section {
    padding-left: 0;
    padding-right: 0;
  }
  .feature-grid, .services-list .service-detail-grid, .price-tables, .testimonial-slider, .steps-overview, .card-container {
    flex-direction: column;
    gap: 20px;
  }
  .hero {
    padding: 40px 0 32px 0;
    min-height: unset;
    border-radius: 0 0 18px 18px;
  }
  .hero .container, .hero .content-wrapper {
    padding-left: 0;
    padding-right: 0;
  }
  .card, .service-box, .testimonial-card, .feature-grid > div, .step {
    min-width: unset;
    width: 100%;
    margin-bottom: 18px;
    padding-left: 12px;
    padding-right: 12px;
  }
  .section, section, .cta-banner {
    margin-bottom: 40px;
    padding: 24px 4px;
  }
  .testimonial-slider {
    gap: 18px;
    margin-bottom: 14px;
  }
  .faq-contact-shortcut {
    padding: 14px 10px;
    font-size: 0.97rem;
  }
  .footer-contact {
    margin-bottom: 14px;
  }
  .map-section, .facts, .team, .about, .confirmation, .privacy, .gdpr, .cookie-policy, .terms {
    margin-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .content-grid {
    flex-direction: column;
    gap: 14px;
  }
  .hero h1 {
    font-size: 1.6rem;
  }
  h1 {
    font-size: 1.5rem;
    margin-bottom: 18px;
  }
  h2 {
    font-size: 1.15rem;
    margin-bottom: 14px;
  }
  .cta-banner {
    padding: 18px 6px;
  }
  .step, .service-box, .price-tables table {
    min-width: unset;
  }
  .footer-contact p {
    font-size: 0.9rem;
  }
}

/* 19. MICRO-INTERACTIONS & EFFECTS */
.card, .service-box, .feature-grid > div, .step, .testimonial-card {
  transition: box-shadow 0.21s, transform 0.16s, background 0.14s;
}
.card:hover, .service-box:hover, .feature-grid > div:hover, .step:hover {
  box-shadow: 0 8px 32px rgba(81,163,163,0.10);
  transform: translateY(-4px) scale(1.03);
  background: #f5fafd;
}

.cta,
button.cta,
.cta.primary {
  transition: background 0.2s, color 0.16s, transform 0.17s, box-shadow 0.13s;
}

/* 20. MISCELLANEOUS */
hr {
  border: none;
  border-top: 1px solid var(--gray-300);
  margin: 24px 0;
}

::-webkit-input-placeholder { color: var(--gray-300); }
::-moz-placeholder { color: var(--gray-300); }
:-ms-input-placeholder { color: var(--gray-300); }
::placeholder { color: var(--gray-300); }

/* --- END OF FILE --- */
