/* ===================================================
   CSS RESET & BASELINE NORMALIZATION
   =================================================== */
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;
}
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  background: #f9fbfd;
  min-height: 100vh;
  color: #1a1a1a;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.16s; }
ul, ol { list-style: none; }
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  padding: 0;
  margin: 0;
}
:root {
  --color-primary: #215285;
  --color-primary-dark: #1e4977;
  --color-accent: #F3B700;
  --color-accent-dark: #e0a800;
  --color-secondary: #fff;
  --color-bg-light: #f9fbfd;
  --color-bg-card: #ffffff;
  --color-grey: #767676;
  --font-display: 'Noto Sans JP', 'M PLUS 1p', sans-serif;
  --font-body: 'M PLUS 1p', 'Noto Sans JP', Arial, sans-serif;
}

/* ===================================================
   TYPOGRAPHY - MODERN BOLD STYLE
   =================================================== */
body {
  font-family: var(--font-body);
  font-weight: 500;
  background: var(--color-bg-light);
  color: #1a1a1a;
  font-size: 16px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
h1 { font-size: 2.4rem; line-height: 1.1; letter-spacing: 0.03em; }
h2 { font-size: 2rem; line-height: 1.15; }
h3 { font-size: 1.25rem; line-height: 1.3; }
h4 { font-size: 1.1rem; }
h5, h6 { font-size: 1rem; }

@media (min-width: 720px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.25rem; }
  h3 { font-size: 1.5rem; }
}
p, ul, ol, li, blockquote {
  font-size: 1rem;
  font-weight: 500;
  color: #24292f;
  margin-bottom: 16px;
}
.subheadline {
  color: var(--color-grey);
  font-size: 1.08rem;
  margin-bottom: 24px;
  font-weight: 700;
}
strong { font-weight: bold; }

/* Typography for buttons and nav */
.cta-btn, .main-nav a, .mobile-nav a {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.03em;
}

/* ===================================================
   LAYOUT & CONTAINER CLASSES
   =================================================== */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--color-bg-card);
  border-radius: 20px;
  box-shadow: 0 2px 16px rgba(33,82,133,0.09);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: box-shadow 0.18s, transform 0.16s;
  border: 2px solid #f1f5f8;
}
.card:hover, .service-item:hover, .feature-item:hover, .testimonial-card:hover {
  box-shadow: 0 4px 28px rgba(33,82,133,0.13);
  transform: translateY(-2px) scale(1.015);
}
.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;
  background: var(--color-secondary);
  border-radius: 18px;
  box-shadow: 0 2px 14px rgba(33,82,133,0.10);
  margin-bottom: 24px;
  min-width: 260px;
  flex: 1 0 300px;
  border-left: 7px solid var(--color-primary);
  position: relative;
  transition: box-shadow 0.18s, border-color 0.2s;
}
.testimonial-card blockquote {
  font-size: 1.13rem;
  font-weight: 700;
  color: #1a2c38;
  margin-bottom: 12px;
  line-height: 1.5;
}
.testimonial-card span {
  color: var(--color-primary);
  font-weight: bold;
  font-size: 0.98rem;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--color-bg-card);
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(33,82,133,0.07);
  padding: 24px;
  margin-bottom: 20px;
  min-width: 220px;
  border: 2.5px solid #e0e7ef;
  transition: border 0.18s;
}
.feature-item img {
  width: 44px;
  height: 44px;
}

/* Responsive Feature Grid */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
@media (max-width: 900px) {
  .feature-grid, .content-grid, .card-container {
    gap: 16px;
  }
}
@media (max-width: 700px) {
  .content-wrapper, .card-container, .feature-grid,
  .testimonials-section .testimonial-list {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card, .feature-item, .card, .service-item {
    min-width: 0;
  }
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

/* Card Shadows and Hierarchy */
.card, .feature-item {
  box-shadow: 0 2px 12px rgba(33,82,133,0.08);
}
.card h3, .feature-item h3 {
  color: var(--color-accent);
  font-size: 1.18rem;
  font-weight: 800;
}

/* Section Headings */
section > .container > .content-wrapper > h1,
section > .container > .content-wrapper > h2 {
  border-left: 8px solid var(--color-accent);
  padding-left: 16px;
  background: none;
  color: var(--color-primary);
}

/* Main Navigation - Desktop */
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 24px;
  background: var(--color-secondary);
  height: 72px;
  position: relative;
  z-index: 10;
}
.main-nav a {
  font-weight: 700;
  color: var(--color-primary);
  font-size: 1rem;
  transition: color 0.18s;
  padding: 8px 14px;
  border-radius: 7px;
  position: relative;
}
.main-nav a:hover, .main-nav a.active {
  color: var(--color-accent);
  background: rgba(33,82,133, 0.07);
}
.main-nav img {
  height: 40px; width: auto; margin-right: 10px; vertical-align: middle;
}

.cta-btn {
  display: inline-block;
  background: var(--color-accent);
  color: var(--color-primary-dark);
  font-weight: 900;
  font-size: 1.1rem;
  border-radius: 8px;
  padding: 12px 32px;
  margin-left: 16px;
  box-shadow: 0 2px 8px rgba(243,183,0, 0.07);
  transition: background 0.15s, color 0.15s, box-shadow 0.15s, transform 0.13s;
  border: none;
  cursor: pointer;
}
.cta-btn:focus,
.cta-btn:hover {
  background: var(--color-primary);
  color: var(--color-accent);
  box-shadow: 0 4px 18px rgba(33,82,133,0.13);
  transform: scale(1.045);
}

/* Mobile Menu Button */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 20px;
  top: 16px;
  background: var(--color-primary);
  color: var(--color-secondary);
  font-size: 2.1rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  z-index: 35;
  box-shadow: 0 2px 12px rgba(33,82,133,0.13);
  cursor: pointer;
  border: none;
  transition: background 0.18s, box-shadow 0.15s; 
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--color-accent);
  color: var(--color-primary);
}

@media (max-width: 990px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* Mobile Menu Overlay */
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  min-height: 100vh;
  background: var(--color-primary-dark);
  transform: translateX(-100vw);
  transition: transform 0.34s cubic-bezier(.77,0,.18,1);
  z-index: 9999;
  box-shadow: 2px 0 22px rgba(33,82,133,0.23);
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2rem;
  margin: 24px 24px 0 0;
  background: var(--color-accent);
  color: var(--color-primary-dark);
  border-radius: 50%;
  border: none;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.13s, color 0.13s;
  z-index: 10001;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: var(--color-primary);
  color: var(--color-accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
  margin-top: 32px;
  padding: 0 36px;
}
.mobile-nav a {
  font-size: 1.23rem;
  font-weight: 800;
  color: var(--color-accent);
  letter-spacing: 0.021em;
  padding: 16px 0 8px 0;
  border-bottom: 1.5px solid rgba(255,255,255,0.08);
  width: 100%;
  transition: color 0.16s, background 0.12s;
  border-radius: 0;
  background: none;
  margin-bottom: 4px;
  outline: none;
}
.mobile-nav a:focus,
.mobile-nav a:hover {
  color: var(--color-secondary);
  background: rgba(243,183,0,0.07);
}

/* Hero Section (Landing) */
.hero {
  background: linear-gradient(120deg, #eaf2fa 60%, #F3B70010 100%);
  padding: 56px 0 40px 0;
  border-radius: 0 0 28px 28px;
  box-shadow: 0 2px 48px rgba(33,82,133,0.08);
}
.hero .container { display: flex; flex-direction: column; align-items: center;}
.hero .content-wrapper {
  align-items: flex-start;
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
}
.hero h1 {
  color: var(--color-primary);
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 10px;
}
@media (min-width: 720px) {
  .hero h1 { font-size: 2.9rem; }
  .hero .content-wrapper { text-align: left; }
}

/* Features Section */
.features {
  background: none;
  margin-top: 40px;
}
.features h2 {
  color: var(--color-accent);
  padding-left: 0;
  border: none;
  text-shadow: 0 1px 0 rgba(33,82,133,0.06);
}
.features .feature-grid { gap: 24px; }
.feature-item h3 { color: var(--color-primary-dark); }

/* CTA Block */
.cta, .cta-section, .review-cta-section {
  background: var(--color-accent);
  border-radius: 18px;
  box-shadow: 0 2px 24px rgba(243,183,0,0.06);
  padding: 48px 20px;
  max-width: 880px;
  margin: 40px auto 60px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.cta h2, .cta-section h2, .review-cta-section h2 {
  color: var(--color-primary-dark);
  margin-bottom: 10px;
}
.cta-btn {
  margin-top: 16px;
}

/* Testimonial Section & Cards */
.testimonial-preview, .testimonials-section {
  margin-bottom: 60px;
}
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.testimonial-card + .testimonial-card {
  margin-top: 14px;
}

/* Review More Link */
.more-link {
  color: var(--color-accent);
  font-weight: bold;
  margin-top: 18px;
  display: inline-block;
  font-size: 1.08rem;
  border-bottom: 2px solid var(--color-accent);
  transition: color 0.13s, border-bottom 0.13s;
}
.more-link:hover { color: var(--color-primary-dark); border-bottom: 2.5px solid var(--color-primary-dark); }

/* About/Team Section */
.about-section, .team-section, .access-section {
  background: var(--color-secondary);
  border-radius: 14px;
  margin-bottom: 50px;
}
.team-section .staff-profiles {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.staff-profile {
  background: #f5f8fa;
  border-radius: 12px;
  padding: 20px 24px;
  min-width: 220px;
  margin-bottom: 20px;
  box-shadow: 0 1px 8px rgba(33,82,133,0.07);
  flex: 1 0 220px;
}

/* Services Page */
.services-section .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
}
.service-item {
  background: var(--color-bg-card);
  border-radius: 15px;
  box-shadow: 0 2px 12px rgba(33,82,133,0.08);
  padding: 26px 20px;
  min-width: 230px;
  margin-bottom: 20px;
  flex: 1 0 290px;
  border-left: 5px solid var(--color-accent);
  transition: box-shadow 0.13s, border-color 0.13s;
}
.service-item h2 {
  color: var(--color-primary);
  font-size: 1.19rem;
  font-weight: 800;
}
.process-section ol {
  margin-left: 24px;
  margin-bottom: 6px;
}
.process-section ol li {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 9px;
  color: #263859;
}

/* Knowledge/FAQ */
.knowledge-articles, .faq-list, .faq-snippets {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.knowledge-articles article, .faq-item {
  background: var(--color-bg-card);
  border-radius: 15px;
  box-shadow: 0 1px 9px rgba(33,82,133,0.07);
  padding: 20px 18px;
  min-width: 220px;
  margin-bottom: 20px;
  flex: 1 0 280px;
  transition: box-shadow 0.13s;
}
.knowledge-articles article h2, .faq-item h3, .faq-item h2 {
  color: var(--color-primary);
  font-size: 1.15rem;
  font-weight: 800;
}

@media (max-width: 760px) {
  .team-section .staff-profiles,
  .testimonial-list,
  .services-section .service-list,
  .feature-grid,
  .knowledge-articles, .faq-list, .faq-snippets {
    flex-direction: column;
    gap: 16px;
  }
  .card, .service-item, .feature-item, .staff-profile, .testimonial-card {
    min-width: 0;
    width: 100%;
  }
}

/* Contact & Thank You */
.contact-section, .thank-you-section {
  min-height: 300px;
  background: var(--color-secondary);
  border-radius: 14px;
  margin-bottom: 40px;
}
.contact-info, .office-hours, .office-address {
  background: #f5f8fa;
  border-radius: 12px;
  padding: 15px 20px;
  margin-bottom: 16px;
}
.contact-info p, .office-hours p, .office-address p {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: #2a415f;
  margin-bottom: 8px;
}

/* Legal (Policy) Pages */
.legal-section {
  background: var(--color-secondary);
  border-radius: 14px;
  margin-bottom: 80px;
  padding-bottom: 24px;
}
.legal-section h1 {
  margin-top: 24px;
}
.legal-section h2 {
  margin-top: 26px;
  color: var(--color-primary-dark);
  font-weight: bold;
  border-left: 4px solid var(--color-accent);
  padding-left: 9px;
}
.legal-section ul, .about-section ul {
  padding-left: 28px;
  margin-bottom: 14px;
  list-style-type: square;
}
.legal-section ul li, .about-section ul li {
  margin-bottom: 6px;
  color: #284060;
  font-weight: 600;
}

/* Footer */
footer {
  background: var(--color-primary-dark);
  color: var(--color-secondary);
  padding: 36px 0 20px 0;
  margin-top: 50px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 10px;
}
.footer-nav a {
  color: var(--color-accent);
  font-weight: 700;
  font-size: 1rem;
  border-bottom: 2px solid transparent;
  padding: 3px 6px;
  transition: color 0.14s, border-bottom 0.13s;
}
.footer-nav a:focus,
.footer-nav a:hover {
  color: #ffe271;
  border-bottom: 2px solid #ffe271;
}
.footer-info {
  color: #e9eaf5;
  font-size: 0.98rem;
  text-align: center;
}

@media (max-width:600px) {
  .footer-nav { gap: 11px; font-size: 0.97rem; }
}

/* ===================================================
   COOKIE CONSENT BANNER & MODAL
   =================================================== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 45000;
  background: #1e4977;
  color: #fff;
  border-top: 4px solid var(--color-accent);
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  box-shadow: 0 -3px 22px rgba(33,82,133,0.09);
  font-size: 1rem;
  animation: cookieBannerFadeIn 0.7s cubic-bezier(.76, 0, .18, 1);
}
@keyframes cookieBannerFadeIn {
  0% { transform: translateY(100px); opacity: 0; }
 100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  margin-bottom: 8px;
  text-align: center;
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.cookie-banner button {
  padding: 10px 18px;
  border-radius: 7px;
  border: none;
  font-family: var(--font-display);
  font-weight: bold;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.14s, color 0.14s, box-shadow 0.12s;
}
.cookie-banner .accept-cookies {
  background: var(--color-accent);
  color: var(--color-primary-dark);
}
.cookie-banner .accept-cookies:hover {
  background: var(--color-primary);
  color: var(--color-accent);
}
.cookie-banner .reject-cookies {
  background: #ffffff;
  color: var(--color-primary-dark);
  border: 2px solid var(--color-accent);
}
.cookie-banner .reject-cookies:hover {
  background: #ffe271;
  color: var(--color-primary-dark);
}
.cookie-banner .cookie-settings {
  background: transparent;
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
}
.cookie-banner .cookie-settings:hover {
  background: var(--color-accent);
  color: var(--color-primary-dark);
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(30,73,119,0.62);
  z-index: 45999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(.76,0,.18,1);
}
.cookie-modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 4px 32px rgba(33,82,133,0.18);
  max-width: 400px;
  width: 94vw;
  padding: 32px 28px 24px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: cookieModalSlideIn 0.42s cubic-bezier(.77,0,.18,1);
}
@keyframes cookieModalSlideIn {
  0% {transform: translateY(70px) scale(0.93); opacity:0; }
 100% {transform: translateY(0) scale(1); opacity:1; }
}
.cookie-modal h2 {
  color: var(--color-primary-dark);
  font-size: 1.27rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.cookie-modal .cookie-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cookie-modal .cookie-option {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #f5f8fa;
  border-radius: 8px;
  padding: 14px 11px;
  font-weight: 600;
}
.cookie-modal .cookie-option input[type='checkbox'] {
  accent-color: var(--color-accent);
  width: 22px;
  height: 22px;
  margin: 0;
}
.cookie-modal .cookie-option[data-essential='true'] input {
  display: none;
}
.cookie-modal .cookie-option[data-essential='true']::after {
  content: '必須';
  color: var(--color-accent);
  font-size: 0.98rem;
  margin-left: auto;
  font-weight: 800;
}
.cookie-modal .cookie-modal-actions {
  margin-top: 16px;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}
.cookie-modal .cookie-modal-actions button {
  font-size: 1rem;
  padding: 9px 15px;
  border-radius: 7px;
  font-family: var(--font-display);
  font-weight: 600;
  border: 2px solid var(--color-accent);
}
.cookie-modal .cookie-modal-actions .accept-cookies {
  background: var(--color-accent);
  color: var(--color-primary-dark);
  border: 2px solid var(--color-accent);
}
.cookie-modal .cookie-modal-actions .reject-cookies {
  background: transparent;
  color: var(--color-primary-dark);
}
.cookie-modal .close-cookie-modal {
  position: absolute;
  top: 18px;
  right: 18px;
  background: transparent;
  color: var(--color-primary-dark);
  font-size: 1.7rem;
  border: none;
  cursor: pointer;
}

/* ===================================================
   ACCESSIBILITY
   =================================================== */
a:focus, button:focus, input[type="checkbox"]:focus {
  outline: 2.5px solid var(--color-accent);
  outline-offset: 2px;
}

/* ===================================================
   RESPONSIVENESS (Mobile First)
   =================================================== */
@media (max-width: 700px) {
  .section, section, .hero, .cta, .cta-section, .review-cta-section, .knowledge-articles, .faq-list, .testimonials-section, .thank-you-section, .services-section, .legal-section, .about-section, .team-section, .access-section {
    padding: 20px 7px;
    margin-bottom: 35px;
    border-radius: 0;
  }
  .hero {
    padding-top: 32px;
    padding-bottom: 18px;
  }
  .feature-item, .card, .service-item, .testimonial-card, .staff-profile {
    padding: 16px 10px;
  }
  .content-wrapper {
    gap: 18px;
  }
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.23rem; }
  .cta-btn { padding: 12px 14px; font-size: 1rem; }
}
@media (max-width: 430px) {
  .mobile-nav a { font-size: 1.04rem; padding: 10px 0 6px 0; }
}

/* Prevent content overlapping */
.card, .feature-item, .testimonial-card, .staff-profile, .service-item, .faq-item, .office-address, .contact-info {
  margin-bottom: 20px;
}

/* Prevent image overflow */
img {
  max-width: 100%;
  height: auto;
  border-radius: 7px;
}

/* Utility Classes for Margin/Gaps */
.mt-0 { margin-top: 0 !important; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mb-24 { margin-bottom: 24px; }
.gap-12 { gap: 12px; }
.gap-24 { gap: 24px; }

/* Hide visually but allow for accessibility */
.visually-hidden {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
  clip: rect(1px 1px 1px 1px);
  white-space: nowrap;
}

/* Remove number arrows for inputs (future proof) */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type="number"] {
  -moz-appearance: textfield;
}

/* Micro-interaction for links and cards */
a, .card, .feature-item, .service-item, .cta-btn, .testimonial-card, .more-link {
  transition: box-shadow 0.18s, transform 0.14s, color 0.12s, border 0.14s;
}

/* Z-index layering for overlays */
.mobile-menu { z-index: 9999; }
.cookie-banner { z-index: 45000; }
.cookie-modal-overlay { z-index: 45999; }

/* End of CSS */
