/* RESET & BASE -------------------- */
:root {
  --primary: #234670;
  --secondary: #f9f5ec;
  --accent: #c3731b;
  --retro-red: #962d3e;
  --retro-green: #468966;
  --retro-yellow: #f3de8a;
  --retro-blue: #49759c;
  --retro-bg: #fffbee;
  --body-font: 'Open Sans', Arial, sans-serif;
  --heading-font: 'Montserrat', 'Futura', 'Arial Rounded MT Bold', Arial, sans-serif;
  --vintage-deco: repeating-linear-gradient(135deg, #f3de8a 0 6px, transparent 6px 16px);
}

html {
  box-sizing: border-box;
  font-family: var(--body-font);
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 1.6;
  color: #423e37;
  background: var(--retro-bg);
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: var(--retro-red);
  text-decoration: underline;
}
ul, ol {
  margin-bottom: 16px;
  padding-left: 1.3em;
}
table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  background: #fff;
  border-radius: 12px;
}
th, td {
  padding: 16px 12px;
  border-bottom: 1px solid #f0ece2;
}
th {
  background: #e4d9c2;
  font-family: var(--heading-font);
  font-size: 18px;
  color: var(--primary);
}
tr:last-child td { border-bottom: none; }

.container {
  width: 100%;
  padding-left: 16px;
  padding-right: 16px;
  margin-left: auto;
  margin-right: auto;
  max-width: 1160px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--secondary);
  border-radius: 24px;
  box-shadow: 0 4px 22px 0 #ece2ca33, 0 0 0 2px #f3de8a;
  position: relative;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  color: var(--primary);
  font-weight: 700;
  letter-spacing: .03em;
  margin-bottom: 16px;
}
h1 { font-size: 2.4rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.44rem; }
h4 { font-size: 1.2rem; }
.text-section h2,
.text-section h3 {
  margin-top: 24px;
}

/* TYPOGRAPHY SCALE by device */
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.17rem; }
}

/* HEADER -------------------- */
header {
  background: var(--retro-yellow);
  border-bottom: 5px solid var(--retro-red);
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 1200;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 24px;
}
.main-nav .logo {
  margin-right: 20px;
  flex-shrink: 0;
}
.main-nav ul {
  display: flex;
  gap: 20px;
  list-style: none;
  align-items: center;
}
.main-nav li a {
  font-family: var(--heading-font);
  padding: 7px 13px;
  border-radius: 7px;
  font-weight: 600;
  color: var(--primary);
  transition: background 0.2s, color 0.2s;
}
.main-nav li a.cta-nav, .main-nav li a.active {
  background: var(--retro-blue);
  color: #fff;
}
.main-nav li a:hover,.main-nav li a:focus {
  background: var(--retro-green);
  color: #fff;
}
.btn-primary {
  font-family: var(--heading-font);
  background: var(--accent);
  color: #fff;
  padding: 12px 26px;
  font-size: 18px;
  border: none;
  border-radius: 24px;
  margin-left: 18px;
  box-shadow: 0 3px 16px #d4caa933;
  letter-spacing: 0.03em;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
  position: relative;
  z-index: 1;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--retro-red);
  color: #fff;
  transform: translateY(-2px) scale(1.04);
}
.btn-secondary {
  font-family: var(--body-font);
  background: var(--primary);
  color: #fff;
  padding: 10px 22px;
  border: 2px solid var(--retro-yellow);
  border-radius: 18px;
  font-weight: 500;
  margin-top: 20px;
  font-size: 17px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--retro-blue);
  color: #fff;
  border-color: var(--retro-blue);
}

.mobile-menu-toggle {
  display: none;
  background: var(--retro-red);
  color: #fff;
  border: none;
  font-size: 2rem;
  border-radius: 12px;
  padding: 6px 16px;
  cursor: pointer;
  margin-left: 24px;
  transition: background 0.15s;
  z-index: 1101;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--accent);
  color: #fffce0;
}

/* MOBILE NAV & OVERLAY -------------------- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;width:100vw; height:100vh;
  background: #2b2323ee;
  z-index: 1250;
  transform: translateX(-100%);
  transition: transform 0.38s cubic-bezier(.67,-0.03,.34,1.01);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px 28px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.6rem;
  background: none;
  color: #ffe8c2;
  border: none;
  cursor: pointer;
  margin-bottom: 32px;
  transition: color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--retro-yellow);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.mobile-nav a {
  font-size: 1.4rem;
  font-family: var(--heading-font);
  color: #fffbe8;
  background: var(--retro-blue);
  border-radius: 10px;
  padding: 14px 0 14px 16px;
  transition: background 0.2s, color 0.2s;
  border-left: 7px solid var(--accent);
  margin-right: 36px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--retro-green);
  color: #fff;
  border-left: 7px solid var(--retro-yellow);
}
/* Hide nav on mobile, show burger */
@media (max-width: 1023px) {
  .main-nav ul,
  .main-nav .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}
@media (min-width: 1024px) {
  .mobile-menu,
  .mobile-menu-toggle { display: none !important; }
  header { position: relative; }
}

/* HERO, SECTIONS -------------------- */
.hero {
  background: var(--retro-yellow) url('../assets/pattern-vintage.svg') repeat top right;
  padding: 60px 0 48px;
  margin-bottom: 0;
  border-bottom: 6px double var(--accent);
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.hero h1 {
  color: var(--retro-red);
  text-shadow: 0 4px 1px #f9eac0, 0 0 2px #fffbe0;
  font-size: 2.4rem;
  font-family: var(--heading-font);
  margin-bottom: 10px;
}
.hero p {
  max-width: 600px;
  margin-bottom: 28px;
  font-size: 1.25rem;
  color: #3a3327;
}
@media (max-width: 900px) {
  .hero .container {
    align-items: flex-start;
    padding-bottom: 0;
  }
  .hero h1 { font-size: 2rem; }
}
@media (max-width: 600px) {
  .hero { padding: 38px 0 30px; }
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--secondary);
  border-radius: 24px;
  box-shadow: 0 4px 22px 0 #ece2ca24, 0 0 0 2px #eae0c1;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* FLEXBOX STRUCTURE COMPONENTS --------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  position: relative;
  margin-bottom: 20px;
  background: #fffbe8;
  border-radius: 18px;
  box-shadow: 0 2px 8px #e2cca080;
  padding: 28px 24px;
  min-width: 220px;
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 8px 35px #c3731b50;
  transform: translateY(-5px) scale(1.03);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #fffde5;
  border-radius: 16px;
  box-shadow: 0 3px 15px 0 #88581813, 0 0 0 2px #f9cb73;
  /* Retro border-accent with a shadow */
}
.testimonial-card p {
  font-size: 18px;
  color: #453529;
  font-style: italic;
  margin-bottom: 12px;
}
.testimonial-card .author {
  font-weight: 700;
  font-size: 1rem;
  font-family: var(--heading-font);
  color: var(--retro-blue);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
@media (max-width: 900px) {
  .card-container, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .card { min-width: 0; }
}

/* FEATURES, SERVICE LIST, BLOG ---------*/
.features .feature-grid, .benefit-list, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
  list-style: none;
  padding: 0;
}
.features .feature-grid li, .service-list li {
  flex: 1 1 210px;
  background: #fffde5;
  border-radius: 14px;
  box-shadow: 0 1px 12px #eae0c1;
  padding: 32px 20px 22px;
  min-width: 220px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  border-bottom: 5px solid #f7cd63;
  transition: box-shadow 0.21s, transform 0.19s;
}
.features .feature-grid li:hover {
  box-shadow: 0 5px 28px #49b07d31;
  transform: translateY(-5px) scale(1.015);
}
.features .feature-grid img, .service-list img {
  width: 55px; height: 55px;
  margin-bottom: 9px;
  filter: drop-shadow(1px 3px 0 #f3de8a);
}
.features .feature-grid h3, .service-list h3 {
  margin-bottom: 7px;
  color: var(--retro-red);
  font-size: 1.1rem;
}
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.service-list li, .service-item {
  background: #fffde5;
  border: 1.5px solid #ebe0c0;
  border-radius: 15px;
  padding: 27px 20px;
  min-width: 200px; flex: 1 1 210px;
  margin-bottom: 20px;
  box-shadow: 0 2px 11px 0 #efd87144;
  display: flex;
  flex-direction: column;
  gap: 7px;
  align-items: flex-start;
  transition: box-shadow 0.2s;
}
.service-list li:hover,
.service-item:hover {
  box-shadow: 0 7px 18px 0 #f0bf33bb;
}

/* PRICING TABLE ---------- */
.pricing-table {
  background: #fffce7;
  border-radius: 18px;
  margin-bottom: 24px;
  overflow: hidden;
  border: 2px solid #ffe59f;
}
.pricing-table th, .pricing-table td {
  font-family: var(--body-font);
}
.pricing-table td {
  font-family: var(--body-font);
  color: #333111;
}
.pricing-table tbody tr:hover {
  background: #faf6eb;
}

/* CTA, LEGAL, FOOTER ------------------*/
.cta {
  background: var(--retro-green);
  color: #fff;
  border-radius: 18px;
  padding: 40px 18px;
  margin-bottom: 55px;
  box-shadow: 0 4px 18px #46896618;
  text-align: center;
}
.cta h2 {
  color: #fffde8;
}
.cta a.btn-primary {
  background: var(--retro-yellow);
  color: var(--primary);
  margin: 8px auto;
}
.cta a.btn-primary:hover { background: var(--retro-red); color: #fff;}

.footer {
  padding: 50px 0 20px 0;
  background: var(--retro-blue);
  border-top: 6px double var(--retro-yellow);
  font-family: var(--body-font);
  color: #fff;
}
.footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  justify-content: space-between;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 16px;
}
.footer-menu a {
  color: #fffde8;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-bottom 0.2s;
  padding-bottom: 4px;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: var(--retro-yellow);
  border-bottom: 2px solid var(--retro-yellow);
}
.footer-brand img {
  max-height: 54px;
  margin-bottom: 10px;
}
.footer-copyright {
  color: #c0d8ed;
  font-size: 15px;
  margin-top: 9px;
}
@media (max-width: 800px) {
  .footer .content-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 18px;
  }
}

/* BLOG, ARTICLES & SEARCH -------------*/
.blog-articles {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.article-card {
  background: #fff9da;
  border-radius: 14px;
  border-bottom: 4px solid var(--accent);
  box-shadow: 0 2px 11px #bb8c2940;
  padding: 28px 20px;
  flex: 1 1 270px;
  min-width: 180px;
  transition: box-shadow 0.18s, transform 0.17s;
}
.article-card:hover {
  box-shadow: 0 7px 27px #c3731b44;
  transform: scale(1.02);
}
.search-box {
  margin: 14px 0 24px 0;
  display: flex;
}
.search-box input {
  width: 100%;
  font-size: 17px;
  padding: 13px 20px;
  border: 2.2px solid #f9cb73;
  background: #fff;
  border-radius: 12px;
  font-family: var(--body-font);
  outline: none;
  transition: border 0.2s;
}
.search-box input:focus {
  border-color: var(--retro-red);
}
.category-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin: 12px 0;
  font-size: 16px;
  align-items: center;
}
.category-filters label {
  font-weight: bold;
  margin-right: 9px;
}
.category-filters span {
  background: var(--retro-yellow);
  color: var(--primary);
  border-radius: 6px;
  padding: 5px 10px;
  font-family: var(--heading-font);
  font-size: 0.98rem;
}

/* THANK YOU PAGE ---------------------*/
.thankyou {
  background: var(--retro-yellow);
  text-align: center;
  border-radius: 28px;
  padding: 60px 14px;
  margin: 60px auto;
  box-shadow: 0 5px 28px #8766132d;
}
.thankyou h1 {
  color: var(--retro-red);
  margin-bottom: 18px;
}
.thankyou p {
  color: #2d2213;
  font-size: 1.2rem;
}

/* LEGAL, INFO PAGES -----------------*/
.legal {
  background: #fffbe8;
  border-radius: 24px;
  margin-bottom: 42px;
  padding: 36px 18px;
  box-shadow: 0 3px 22px #f3de8a24;
}
.legal .text-section h2 {
  color: var(--accent);
  margin-bottom: 7px;
}
.text-section {
  margin-bottom: 20px;
  padding-bottom: 8px;
  line-height: 1.7;
}
.text-section ul {
  margin-bottom: 8px;
  padding-left: 22px;
}
.text-section li {
  color: #713215;
  margin-bottom: 5px;
}

/* NUMBERS, BADGES, STATS -------------*/
.numbers-statistics ul {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 13px;
}
.numbers-statistics li {
  background: #ffe8ae;
  color: #234670;
  padding: 14px 20px;
  border-radius: 12px;
  font-family: var(--heading-font);
  font-size: 1.2rem;
  box-shadow: 0 2px 8px #f9cb7331;
}
.certificates-badges ul {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 7px;
}
.certificates-badges li {
  background: #e8f3e5;
  color: var(--retro-green);
  padding: 11px 16px;
  border-radius: 9px;
  font-size: 1rem;
  font-family: var(--heading-font);
}

/* CLIENT LOGOS -----------------------*/
.client-logos {
  display: flex;
  gap: 26px;
  margin-top: 24px;
  align-items: center;
  flex-wrap: wrap;
}
.client-logos img {
  height: 40px;
  filter: grayscale(60%) brightness(1.09);
  opacity: .84;
  background: #fffbe8;
  border-radius: 8px;
  box-shadow: 0 2px 6px #eae0c1;
  padding: 7px 11px;
}

/* COOKIE CONSENT BANNER --------------*/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 1900;
  width: 100%;
  background: #2c260d;
  color: #fffde8;
  padding: 26px 18px 18px 18px;
  box-shadow: 0 -3px 12px #dac695a8;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  animation: cookieIn 0.5s;
}
@keyframes cookieIn {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: none; opacity: 1; }
}
.cookie-banner-content {
  flex: 1 1 400px;
  font-size: 16px;
  font-family: var(--body-font);
}
.cookie-banner-actions {
  display: flex;
  gap: 18px;
}
.cookie-banner button {
  padding: 9px 22px;
  border-radius: 13px;
  font-size: 16px;
  border: none;
  background: var(--retro-yellow);
  color: var(--primary);
  font-weight: bold;
  font-family: var(--heading-font);
  cursor: pointer;
  transition: background 0.18s;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--retro-red);
  color: #fff;
}
.cookie-banner .btn-settings {
  background: #fffbe8;
  color: var(--primary);
  border: 1.5px solid var(--retro-yellow);
}
.cookie-banner .btn-settings:hover, .cookie-banner .btn-settings:focus {
  background: var(--retro-blue);
  color: #fff;
  border-color: var(--retro-blue);
}

/* COOKIE SETTINGS MODAL --------------*/
.cookie-modal-overlay {
  position: fixed;
  left:0;right:0; top:0;bottom:0;
  background: rgba(44,26,20, 0.7);
  z-index: 2001;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookieModalIn 0.4s;
}
@keyframes cookieModalIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fffbe8;
  border-radius: 20px;
  box-shadow: 0 8px 32px #67330d2a;
  max-width: 440px;
  width: 97vw;
  padding: 36px 30px 32px 30px;
  position: relative;
  color: #624920;
  font-family: var(--body-font);
}
.cookie-modal h2 {
  font-size: 1.4rem;
  margin-bottom: 14px;
  color: var(--retro-red);
}
.cookie-category-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 18px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cookie-category input[type=checkbox] {
  accent-color: var(--accent);
  width: 17px;
  height: 17px;
}
.cookie-category.essential input[type=checkbox] {
  accent-color: var(--retro-blue);
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 18px;
  justify-content: flex-end;
}
.cookie-modal-close {
  position: absolute;
  right: 17px; top: 13px;
  background: none;
  border: none;
  font-size: 1.7rem;
  color: var(--retro-red);
  cursor: pointer;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: var(--accent);
}

/* RESPONSIVITY ----------------------*/
@media (max-width: 1023px) {
  .main-nav ul { display: none; }
  .main-nav .btn-primary { display: none; }
  .mobile-menu-toggle { display: inline-block; }
}
@media (max-width: 900px) {
  .features .feature-grid, .service-list, .blog-articles { flex-direction: column; gap: 18px; }
  .numbers-statistics ul, .certificates-badges ul { flex-direction: column; gap: 10px; }
  .client-logos { gap: 15px; }
}
@media (max-width: 768px) {
  .footer .content-wrapper { flex-direction: column; gap: 15px; text-align: center; }
  .section, .hero, .legal, .cta, .thankyou { border-radius: 0; padding: 20px 7px; }
  .hero h1 { font-size: 1.35rem; }
  .numbers-statistics li, .certificates-badges li { font-size: 1rem; padding: 9px 12px; }
  .mobile-menu { padding: 20px 10px; }
  .cookie-modal { padding: 26px 7px 21px 10px; }
}
@media (max-width: 600px) {
  .container { padding-left: 6px; padding-right: 6px; }
  .btn-primary, .btn-secondary { font-size: 15px; padding: 10px 10px; }  
  .feature-list, .feature-grid, .service-list, .blog-articles { gap: 15px; }
  .card, .service-item, .testimonial-card { padding: 15px 8px; }
  .numbers-statistics li, .certificates-badges li { padding: 6px 8px; }
  .cookie-banner-content { font-size: 14px; }
  .cookie-banner { flex-direction: column; gap: 9px; }
}

/* VINTAGE & RETRO SPECIALS -----------*/
.section:before {
  content: '';
  display: block;
  position: absolute;
  left: -15px; top: -15px;
  width: 40px; height: 40px;
  background: var(--retro-yellow);
  border-radius: 50%;
  box-shadow: 0 1px 8px #bba25b88;
  opacity: .22;
  z-index: 0;
}
.section:after {
  content: '';
  display: block;
  position: absolute;
  bottom: -18px; right: -18px;
  width: 50px; height: 50px;
  background: var(--retro-red);
  border-radius: 50%;
  opacity: .1;
  z-index: 0;
}
.section,
.section *,
.section:before, .section:after {
  box-sizing: border-box;
}
.testimonial-card {
  border-left: 6px solid var(--retro-red);
  background: #fffbe9;
}

/* SPACING FOR ALL CARDS/SECTIONS ------*/
.section + .section, .card + .card, .testimonial-card + .testimonial-card, .service-item + .service-item, .card + .testimonial-card, .testimonial-card + .card {
  margin-top: 24px;
}

/* SCROLLBAR VINTAGE STYLE ------------*/
::-webkit-scrollbar { width: 12px; background: #ffe179; }
::-webkit-scrollbar-thumb { background: var(--retro-red); border-radius: 6px; }

input, textarea, select, button {
  font-family: var(--body-font);
}

/* FORM FOCUS RETRO OUTLINE ------------*/
input:focus, textarea:focus, select:focus {
  outline: 2px solid var(--retro-red);
  background: #fffbe8;
}

/* Micro-interactions ---------------*/
.card, .service-item, .testimonial-card, .article-card {
  transition: box-shadow 0.2s, transform 0.17s;
}
.card:active, .service-item:active, .testimonial-card:active, .article-card:active {
  transform: scale(0.98);
}

/* Unmistakable RETRO FONT OVERRIDES FOR SECTION HEADINGS */
.hero h1, .section h1, .section h2, .section h3 {
  font-family: 'Montserrat', 'Futura', 'Arial Rounded MT Bold', Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-shadow: 0 1.5px 0 #fffbe0, 0 2.5px 5px #f3de8a44;
}

/* Decorative Lines / Underlines ------*/
.section h2::after {
  content: '';
  display: block;
  height: 4px;
  width: 64px;
  margin: 7px 0 0 0;
  background: var(--retro-red);
  border-radius: 8px;
  opacity: .65;
}

/* Extra: Table Striping */
.pricing-table tbody tr:nth-child(even) {
  background: #fffbe0;
}

/* Accessibility: Focus Rings */
:focus {
  outline: 2px dashed var(--accent) !important;
  outline-offset: 2px;
}

/* Hide visually */
.visually-hidden {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}
