/* CSS RESET & BASE 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,
u, i, center, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, input, textarea, button {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  font-size: 100%;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #22223b;
  background: #F5F7FA;
}
img {
  max-width: 100%;
  display: block;
  border-radius: 10px;
}
a {
  color: #20213A;
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s;
}
ul, ol {
  list-style: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #20213A;
  letter-spacing: 0.5px;
}
h1 {font-size: 2.5rem; margin-bottom: 20px;}
h2 {font-size: 2rem; margin-bottom: 16px;}
h3 {font-size: 1.375rem; margin-bottom: 12px;}
h4 {font-size: 1.1rem; margin-bottom: 8px;}
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

/* BRAND COLORS AS CSS VARS */
:root {
  --primary: #20213A;
  --secondary: #4ED3F3;
  --accent: #F5F7FA;
  --brand-orange: #FFD19C;
  --brand-yellow: #FFEBC1;
  --brand-pink: #FBC5E3;
  --brand-shadow: rgba(32,33,58,0.08);
  --brand-border: #eeeeee;
}

/* HEADER & NAVIGATION */
header {
  width: 100%;
  background: var(--accent);
  box-shadow: 0 2px 10px 0 var(--brand-shadow);
  position: sticky;
  top: 0;
  z-index: 1020;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 16px 20px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 8px 14px;
  border-radius: 22px;
  transition: background 0.18s, color 0.18s;
}
.main-nav a:hover,
.main-nav a:focus {
  background: var(--brand-orange);
  color: var(--primary);
}
.main-nav .cta {
  background: var(--secondary);
  color: var(--primary);
  font-weight: 700;
  border-radius: 22px;
  padding: 10px 22px;
  margin-left: 6px;
  box-shadow: 0 2px 8px var(--brand-shadow);
  transition: background 0.22s, box-shadow 0.22s;
}
.main-nav .cta:hover,
.main-nav .cta:focus {
  background: var(--brand-orange);
  box-shadow: 0 4px 16px var(--brand-shadow);
}
.mobile-menu-toggle {
  display: none;
  background: var(--secondary);
  color: var(--primary);
  border: none;
  font-size: 2rem;
  border-radius: 14px;
  padding: 6px 14px;
  box-shadow: 0 2px 8px var(--brand-shadow);
  cursor: pointer;
}

/* MOBILE NAVIGATION */
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(245, 247, 250, 0.98);
  z-index: 2000;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(.77,0,.18,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0%);
}
.mobile-menu-close {
  background: none;
  color: var(--primary);
  border: none;
  font-size: 2.2rem;
  margin: 28px 0 12px 28px;
  cursor: pointer;
  transition: color 0.22s;
}
.mobile-menu-close:hover {
  color: var(--secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-left: 38px;
  margin-top: 10px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.22rem;
  padding: 12px 6px;
  color: var(--primary);
  border-radius: 18px;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: var(--brand-orange);
  color: var(--primary);
}
@media (max-width: 992px) {
  header .container {
    gap: 16px;
  }
  .main-nav a { font-size: 0.99rem; padding: 8px 9px; }
  .main-nav .cta { padding: 9px 13px; }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  header .container {
    gap: 8px;
    padding: 10px 12px;
  }
  .mobile-menu {
    padding-top: 0;
  }
}

/* HERO SECTIONS */
.hero {
  background: linear-gradient(120deg, #FFEBC1 0%, #F5F7FA 100%);
  border-radius: 0 0 36px 36px;
  box-shadow: 0 8px 32px var(--brand-shadow);
  padding: 50px 0 40px;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 18px;
  max-width: 650px;
}
.hero h1 {
  color: var(--primary);
  font-size: 2.8rem;
  line-height: 1.13;
  margin-bottom: 12px;
}
.hero p {
  color: #333;
  font-size: 1.18rem;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .hero { padding: 32px 0 20px; }
  .hero h1 { font-size: 2rem; }
  .hero .content-wrapper { max-width: 100%; gap:14px; }
}

/* .section STYLING (SPACING PATTERN) */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: white;
  border-radius: 28px;
  box-shadow: 0 4px 24px var(--brand-shadow);
}

/* CTA BUTTONS */
.cta {
  display: inline-block;
  background: var(--secondary);
  color: var(--primary);
  border-radius: 32px;
  padding: 13px 38px;
  font-size: 1.07rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 16px var(--brand-shadow);
  border: none;
  cursor: pointer;
  margin-top: 10px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.22s;
}
.cta:hover,
.cta:focus {
  background: var(--brand-orange);
  color: var(--primary);
  transform: translateY(-2px) scale(1.025);
  box-shadow: 0 8px 24px var(--brand-shadow);
  outline: none;
}

/* FEATURE SECTIONS */
.features, .features-detailed {
  background: #fffbe9;
  border-radius: 24px;
  margin-bottom: 60px;
  padding: 40px 20px;
  box-shadow: 0 4px 24px var(--brand-shadow);
}
.features h2,
.features-detailed h2 {
  color: var(--primary);
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 8px;
}
.feature-grid li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  background: #fff9e3;
  border-radius: 16px;
  padding: 22px 24px;
  box-shadow: 0 2px 12px var(--brand-shadow);
  width: calc(25% - 18px);
  min-width: 220px;
  flex: 1 1 220px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.feature-grid li:hover {
  box-shadow: 0 8px 32px var(--brand-shadow);
  transform: translateY(-2px) scale(1.02);
}
.feature-grid img { width: 44px; height: 44px; }
.feature-grid h3 {
  margin-bottom: 6px;
  font-size: 1.13rem;
  color: var(--primary);
}
@media (max-width: 1000px) {
  .feature-grid {
    gap: 14px;
  }
  .feature-grid li {
    width: calc(50% - 12px);
  }
}
@media (max-width: 768px) {
  .feature-grid {
    flex-direction: column;
    gap: 16px;
  }
  .feature-grid li {
    width: 100%;
  }
}

/* STEPS LIST */
.step-list {
  padding-left: 0;
  margin: 14px 0 18px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.step-list li {
  display: flex;
  align-items: center;
  background: #ffe7c6;
  border-radius: 18px;
  padding: 12px 22px;
  font-size: 1.08rem;
  font-family: 'Roboto', Arial, sans-serif;
  margin-bottom: 0;
}

/* TESTIMONIALS */
.testimonials {
  background: #FFF5E6;
  border-radius: 24px;
  margin-bottom: 60px;
  padding: 40px 20px;
  box-shadow: 0 4px 24px var(--brand-shadow);
}
.testimonials h2 {
  margin-bottom: 22px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #FFF;
  border-radius: 20px;
  box-shadow: 0 2px 12px var(--brand-shadow);
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px var(--brand-shadow);
}
.testimonial-card p {
  font-size: 1.07rem;
  color: #20213A;
  margin-bottom: 0;
  flex: 1;
}
.testimonial-card strong {
  font-size: 1.05rem;
  color: var(--primary);
  display: block;
}
.testimonial-card span {
  display: block;
  color: #47496c;
  font-size: 0.99rem;
  margin-top: 1px;
}
@media (max-width: 768px) {
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 20px 12px;
  }
}

/* .card-container, .card, .card-content Example Utility */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.card {
  background: #FFF;
  border-radius: 18px;
  box-shadow: 0 2px 16px var(--brand-shadow);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 24px 20px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 8px 36px var(--brand-shadow);
  transform: translateY(-2px) scale(1.015);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

/* CTA SECTION */
.cta-section {
  background: linear-gradient(90deg, #FFD19C 0%, #FBC5E3 100%);
  border-radius: 24px;
  margin-bottom: 60px;
  padding: 32px 20px;
  box-shadow: 0 2px 16px var(--brand-shadow);
}
.cta-section .content-wrapper {
  align-items: flex-start;
  gap: 16px;
}
.cta-section h2 {
  color: var(--primary);
}

/* COMPARISON & PRICING TABLES */
.comparison-table, .pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 12px;
  margin-bottom: 32px;
}
.comparison-table th, .pricing-table th {
  background: #FFD19C;
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 13px 12px;
  border-radius: 11px 11px 0 0;
  font-size: 1.01rem;
  font-weight: 700;
}
.comparison-table td, .pricing-table td {
  background: #FFF;
  color: #20213A;
  padding: 13px 13px;
  border-radius: 0 0 11px 11px;
  font-size: 1rem;
}
.comparison-table tr, .pricing-table tr {
  margin-bottom: 12px;
  border-radius: 12px;
}
.comparison-table ul, .pricing-table ul {
  list-style: disc inside;
  padding-left: 0.7em;
}

/* FAQ AND ACCORDION */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 10px;
}
.faq-list li {
  background: #fff9e3;
  border-radius: 15px;
  box-shadow: 0 2px 8px var(--brand-shadow);
  padding: 18px 22px;
  margin-bottom: 0;
}
.faq-list h3 {
  font-size: 1.09rem;
  color: var(--primary);
}
.faq-list p { margin-top: 6px; }
.accordion h3 {
  font-size: 1.09rem;
  color: var(--primary);
  cursor: pointer;
  margin-bottom: 4px;
  margin-top: 14px;
  border-left: 4px solid var(--secondary);
  padding-left: 8px;
}
.accordion p { padding-left: 16px; margin-bottom: 10px; }

/* CALL OUTS/ NOTE BOXES */
.callout {
  background: #ffd19c33;
  border-left: 7px solid #FFD19C;
  border-radius: 15px;
  padding: 18px 22px 14px 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px var(--brand-shadow);
}
.callout h3 {
  margin-bottom: 7px;
  font-size: 1.12rem;
  color: var(--primary);
}

/* TEMPLATES OVERVIEW */
.category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 18px;
}
.category-list li {
  background: #FBC5E3;
  color: var(--primary);
  border-radius: 15px;
  padding: 9px 19px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.98rem;
  font-weight: 600;
  margin-bottom: 0;
  transition: background 0.17s;
}
.category-list li:hover {
  background: #FFD19C;
}
.template-preview-descriptions h3 {
  margin-bottom: 2px;
  font-size: 1.07rem;
  color: var(--primary);
}
.template-preview-descriptions p { margin-bottom: 14px; }

/* ABOUT US/TIMELINE */
.timeline {
  background: #fffbe9;
  border-radius: 20px;
  box-shadow: 0 4px 18px var(--brand-shadow);
  margin-bottom: 60px;
  padding: 36px 18px;
}
.timeline-events {
  display: flex;
  flex-direction: column;
  gap: 17px;
  margin-top: 10px;
}
.timeline-events li {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 7px var(--brand-shadow);
  padding: 13px 14px;
  font-size: 1rem;
  color: #20213A;
  margin-bottom: 0;
}

/* CONTACT/INFO SECTIONS */
.contact-info .content-wrapper, .contact-details {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.contact-details p {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 0;
  font-size: 1rem;
  color: #22223b;
}
.contact-details img {
  width: 20px;
  height: 20px;
  border-radius: 0;
  margin-left: 0;
}

/* LEGAL/PRIVACY/RODO/COKES/ETC. */
.legal {
  background: #fffbe9;
  border-radius: 19px;
  margin-bottom: 60px;
  padding: 36px 18px;
  box-shadow: 0 4px 22px var(--brand-shadow);
}
.legal h1, .legal h2 {
  font-family: 'Montserrat', Arial, sans-serif;
}
.legal ul {
  margin: 9px 0 14px 22px;
  list-style: disc;
}
.legal li {
  margin-bottom: 7px;
  font-size: 1.01rem;
  color: #20213A;
}

/* THANK YOU/ADDITIONAL LINKS */
.thank-you {
  background: #fffaed;
  border-radius: 22px;
  padding: 38px 20px;
  box-shadow: 0 4px 15px var(--brand-shadow);
  margin-bottom: 60px;
}
.thank-you .cta {
  margin-top: 22px;
}
.additional-links {
  margin-top: 22px;
}
.additional-links ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 7px;
}
.additional-links li {
  background: #FFF;
  padding: 4px 14px;
  border-radius: 10px;
  font-size: 0.99rem;
  margin-bottom: 0;
}
.additional-links a {
  color: var(--primary);
  font-weight: 500;
  transition: color 0.16s;
}
.additional-links a:hover { color: var(--secondary); }

/* FOOTER */
footer {
  width: 100%;
  background: #FFF;
  border-radius: 19px 19px 0 0;
  box-shadow: 0 -2px 12px var(--brand-shadow);
  padding: 32px 0 14px;
  margin-top: 60px;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  gap: 28px;
  justify-content: space-between;
  padding-top: 0;
  padding-bottom: 0;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.01rem;
  color: #22223b;
  padding: 2px 0;
  transition: color 0.14s;
}
.footer-nav a:hover {
  color: var(--secondary);
}
@media (max-width: 900px) {
  footer .container { flex-direction: column; gap: 12px; align-items: flex-start; }
}

/* SEARCH FIELDS & INPUTS */
input[type="search"] {
  width: 100%;
  max-width: 340px;
  padding: 10px 14px;
  border: 1.5px solid #FFD19C;
  border-radius: 18px;
  font-size: 1rem;
  background: #fff;
  margin-bottom: 16px;
  transition: border-color 0.18s;
}
input[type="search"]:focus { border-color: var(--secondary); outline: none; }

/* BUTTONS GENERAL */
button, .button {
  font-family: 'Montserrat', Arial, sans-serif;
  background: var(--secondary);
  color: var(--primary);
  border-radius: 28px;
  border: none;
  padding: 11px 28px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.18s, color 0.18s;
  box-shadow: 0 2px 8px var(--brand-shadow);
}
button:hover, .button:hover,
button:active, .button:active, button:focus, .button:focus {
  background: var(--brand-orange);
  color: var(--primary);
  box-shadow: 0 6px 24px var(--brand-shadow);
  outline: none;
}

/* MICRO-INTERACTIONS */
a, button, .cta, .category-list li, .card {
  transition: color 0.18s, background 0.18s, box-shadow 0.18s, transform 0.15s;
}

/* FLEXBOX LAYOUT HELPERS */
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fffbe9;
  color: #22223b;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  border-top: 2px solid #FFD19C;
  padding: 18px 16px;
  box-shadow: 0 -8px 30px var(--brand-shadow);
  z-index: 3100;
  animation: cookie-fade-in 0.6s cubic-bezier(.77,0,.18,1);
  font-size: 1.02rem;
}
@keyframes cookie-fade-in {
  from { opacity: 0; transform: translateY(60px); }
  to { opacity: 1; transform: none; }
}
.cookie-banner .cookie-btn {
  border: none;
  background: var(--secondary);
  color: var(--primary);
  padding: 10px 24px;
  border-radius: 20px;
  margin-right: 6px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  box-shadow: 0 2px 14px var(--brand-shadow);
}
.cookie-banner .cookie-btn.cookie-settings {
  background: #FFD19C;
  color: var(--primary);
}
.cookie-banner .cookie-btn:hover {
  background: #FBC5E3;
}
.cookie-banner .cookie-btn.reject {
  background: #ffe7c6;
  color: #a24123;
}
.cookie-banner .cookie-btn.reject:hover {
  background: #ffd19c;
}

/* COOKIE SETTINGS MODAL */
.cookie-modal {
  position: fixed;
  left: 50%;
  top:0%;
  transform: translate(-50%, 100px) scale(1.04);
  min-width: 320px;
  max-width: 95vw;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 24px 96px #20213A18;
  z-index: 3400;
  padding: 36px 26px 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation: cookie-modal-pop 0.34s cubic-bezier(.65,.05,.36,1);
}
@keyframes cookie-modal-pop {
  from { opacity: 0; transform: translate(-50%, 180px) scale(0.93); }
  to { opacity: 1; transform: translate(-50%, 100px) scale(1.04); }
}
.cookie-modal h2 {
  color: var(--primary);
  font-size: 1.25rem;
  margin-bottom: 3px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 13px;
  background: #fffbe9;
  padding: 10px 14px;
  margin-bottom: 7px;
}
.cookie-modal label {
  font-weight: 500;
  font-size: 1.01rem;
}
.cookie-modal .toggle-switch {
  width: 48px;
  height: 24px;
  background: #FFD19C;
  border-radius: 14px;
  position: relative;
  margin-left: 12px;
  cursor: pointer;
  transition: background 0.18s;
  flex-shrink: 0;
}
.cookie-modal .toggle-switch input {
  display: none;
}
.cookie-modal .toggle-slider {
  position: absolute;
  left: 3px;
  top: 3px;
  width: 18px;
  height: 18px;
  background: var(--secondary);
  border-radius: 50%;
  transition: left 0.22s;
}
.cookie-modal .toggle-switch input:checked + .toggle-slider {
  left: 27px;
  background: #4ed3f3;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 17px;
  margin-top: 7px;
}
.cookie-modal .cookie-btn {
  font-size: 1rem;
  padding: 10px 24px;
  border-radius: 18px;
}
@media (max-width: 768px) {
  .cookie-modal { padding: 24px 10px 18px 10px; }
}

/* RESPONSIVE & MOBILE ADAPTATION */
@media (max-width: 700px) {
  .container { padding: 0 8px; }
  .section, .timeline, .testimonials, .features, .features-detailed, .cta-section, .legal, .thank-you {
    padding: 22px 4px;
    border-radius: 12px;
  }
  .card, .callout, .faq-list li, .timeline-events li {
    padding: 16px 8px;
    border-radius: 11px;
  }
}
@media (max-width: 768px) {
  .content-grid, .card-container, .template-preview-descriptions ul, .category-list, .features, .cta-section {
    flex-direction: column !important;
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
}

/* MISC UTILITY */
.mt-2 { margin-top: 16px; }
.mb-2 { margin-bottom: 16px; }
.mt-1 { margin-top: 8px; }
.mb-1 { margin-bottom: 8px; }
.rounded { border-radius: 18px; }
.shadow {
  box-shadow: 0 4px 18px var(--brand-shadow);
}

/* VISUAL ENHANCEMENTS FOR WARM_FRIENDLY */
.card, .feature-grid li, .testimonial-card, .cta-section, .timeline, .features, .features-detailed, .thank-you, .legal, .faq-list li, .callout {
  border-radius: 19px;
}
input, button, .cta, .cookie-banner, .cookie-modal, .template-preview-descriptions h3, .category-list li {
  border-radius: 20px;
}

/* FOCUS OUTLINE FOR ACCESSIBILITY */
a:focus, button:focus, .cta:focus, .cookie-btn:focus {
  outline: 2px solid var(--secondary);
  outline-offset: 2px;
  box-shadow: 0 0 0 2px #fff, 0 0 0 6px var(--secondary);
}

/* END CSS */
