/* NextBridge Corporate Site */

/* --- Custom Properties --- */
:root {
  --color-navy: #1B2A4A;
  --color-navy-light: #2A3D66;
  --color-white: #FFFFFF;
  --color-blue: #3B82F6;
  --color-blue-hover: #2563EB;
  --color-blue-light: #DBEAFE;
  --color-gray-50: #F8FAFC;
  --color-gray-200: #E2E8F0;
  --color-gray-300: #CBD5E1;
  --color-gray-400: #94A3B8;
  --color-gray-500: #64748B;
  --color-gray-600: #475569;
  --color-gray-700: #334155;
  --color-gray-800: #1E293B;
  --color-gray-900: #0F172A;
  --color-accent: #10B981;
  --font-en: "Inter Tight", sans-serif;
  --font-jp: "Noto Sans JP", sans-serif;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --header-height: 72px;
}

/* --- Reset --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-jp);
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-gray-800);
  background: var(--color-white);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul, ol { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { border: none; background: none; cursor: pointer; font: inherit; }
table { border-collapse: collapse; width: 100%; }
input, select, textarea, button { font: inherit; }

/* --- Utility --- */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.sp-hide { display: inline; }

/* --- Fade-in Animation --- */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-family: var(--font-jp);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn--primary {
  background: var(--color-blue);
  color: var(--color-white);
  border-color: var(--color-blue);
}

.btn--primary:hover {
  background: var(--color-blue-hover);
  border-color: var(--color-blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.35);
}

.btn--outline { background: transparent; color: var(--color-white); border-color: rgba(255, 255, 255, 0.5); }
.btn--outline:hover { background: rgba(255, 255, 255, 0.12); border-color: var(--color-white); }
.btn--white { background: var(--color-white); color: var(--color-navy); border-color: var(--color-white); }
.btn--white:hover { background: var(--color-gray-50); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); }
.btn--outline-white { background: transparent; color: var(--color-white); border-color: rgba(255, 255, 255, 0.4); }
.btn--outline-white:hover { background: rgba(255, 255, 255, 0.1); border-color: var(--color-white); }
.btn--large { padding: 18px 48px; font-size: 16px; }

/* --- HEADER --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: all var(--transition);
}

.header.is-scrolled {
  box-shadow: var(--shadow-sm);
  background: rgba(255, 255, 255, 0.95);
}

.header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.header__logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--color-navy);
  color: var(--color-white);
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 14px;
  border-radius: var(--radius-sm);
  letter-spacing: -0.02em;
}

.header__logo-text {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 20px;
  color: var(--color-navy);
  letter-spacing: -0.02em;
}

.header__nav {
  display: none;
}

.header__nav-list {
  display: flex;
  gap: 32px;
}

.header__nav-link {
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-gray-600);
  letter-spacing: 0.04em;
  position: relative;
}

.header__nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-blue);
  transition: width var(--transition);
}

.header__nav-link:hover {
  color: var(--color-navy);
}

.header__nav-link:hover::after {
  width: 100%;
}

.header__cta {
  display: none;
  padding: 10px 24px;
  background: var(--color-blue);
  color: var(--color-white);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: all var(--transition);
}

.header__cta:hover {
  background: var(--color-blue-hover);
  transform: translateY(-1px);
}

/* Hamburger */
.header__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
}

.header__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-navy);
  border-radius: 2px;
  transition: all var(--transition);
}

.header__hamburger.is-active span:nth-child(1) {
  transform: rotate(45deg) translateY(5px) translateX(5px);
}

.header__hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.header__hamburger.is-active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-5px) translateX(5px);
}

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: var(--header-height);
  left: 0;
  width: 100%;
  background: var(--color-white);
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
  z-index: 999;
  border-bottom: 1px solid var(--color-gray-200);
  box-shadow: var(--shadow-md);
}

.mobile-nav.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav__list {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav__link {
  display: block;
  padding: 14px 16px;
  font-family: var(--font-en);
  font-size: 15px;
  font-weight: 500;
  color: var(--color-gray-700);
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.mobile-nav__link:hover {
  background: var(--color-gray-50);
  color: var(--color-blue);
}

/* --- HERO --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-height) + 40px) 24px 80px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(27, 42, 74, 0.92) 0%,
    rgba(27, 42, 74, 0.75) 50%,
    rgba(59, 130, 246, 0.55) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--color-white);
  max-width: 720px;
}

.hero__sub {
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 20px;
  opacity: 0.8;
}

.hero__title {
  font-size: clamp(28px, 5.5vw, 52px);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.hero__desc {
  font-size: clamp(14px, 2vw, 17px);
  line-height: 1.9;
  opacity: 0.85;
  margin-bottom: 40px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- SECTION COMMON --- */
.section {
  padding: 100px 0;
}

.section__header {
  text-align: center;
  margin-bottom: 60px;
}

.section__label {
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-blue);
  margin-bottom: 12px;
}

.section__title {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.section__desc {
  font-size: 15px;
  color: var(--color-gray-500);
  line-height: 1.9;
}

/* --- SERVICE --- */
.service {
  background: var(--color-gray-50);
}

.service__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.service-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: all var(--transition);
  border: 1px solid var(--color-gray-200);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-blue), var(--color-accent));
  opacity: 0;
  transition: opacity var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-blue-light);
  color: var(--color-blue);
  border-radius: var(--radius-md);
  margin-bottom: 24px;
}

.service-card__icon svg {
  width: 28px;
  height: 28px;
}

.service-card__name {
  font-family: var(--font-en);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.service-card__tagline {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-blue);
  margin-bottom: 16px;
}

.service-card__text {
  font-size: 14px;
  color: var(--color-gray-500);
  line-height: 1.9;
  margin-bottom: 20px;
}

.service-card__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-blue);
  transition: all var(--transition);
}

.service-card__link:hover {
  color: var(--color-blue-hover);
  letter-spacing: 0.04em;
}

/* --- NUMBERS --- */
.numbers {
  background: var(--color-navy);
  color: var(--color-white);
}

.numbers .section__label {
  color: rgba(255, 255, 255, 0.5);
}

.numbers .section__title {
  color: var(--color-white);
}

.numbers__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 24px;
  text-align: center;
}

.numbers__value {
  display: block;
  font-family: var(--font-en);
  font-size: clamp(40px, 8vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--color-white), var(--color-blue-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.numbers__value small {
  font-size: 0.45em;
  font-weight: 600;
  opacity: 0.7;
}

.numbers__label {
  font-size: 14px;
  color: var(--color-gray-400);
  font-weight: 500;
}

/* --- TESTIMONIALS --- */
.testimonials {
  background: var(--color-gray-50);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--color-gray-200);
  transition: all var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
}

.testimonial-card__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.testimonial-card__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.testimonial-card__company {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-navy);
}

.testimonial-card__role {
  font-size: 12px;
  color: var(--color-gray-400);
  margin-top: 2px;
}

.testimonial-card__quote {
  font-size: 14px;
  line-height: 2;
  color: var(--color-gray-600);
  position: relative;
  padding-left: 20px;
  border-left: 3px solid var(--color-blue-light);
}

/* --- NEWS --- */
.news {
  background: var(--color-white);
}

.news__list {
  max-width: 800px;
  margin: 0 auto;
}

.news__item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--color-gray-200);
}

.news__item:first-child {
  border-top: 1px solid var(--color-gray-200);
}

.news__date {
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 500;
  color: var(--color-gray-400);
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

.news__tag {
  display: inline-block;
  padding: 2px 12px;
  font-size: 11px;
  font-weight: 600;
  border-radius: var(--radius-full);
  flex-shrink: 0;
}

.news__tag--info {
  background: var(--color-blue-light);
  color: var(--color-blue);
}

.news__tag--press {
  background: #DCFCE7;
  color: #16A34A;
}

.news__tag--event {
  background: #FEF3C7;
  color: #D97706;
}

.news__link {
  font-size: 14px;
  color: var(--color-gray-700);
  flex: 1;
  min-width: 200px;
}

.news__link:hover {
  color: var(--color-blue);
}

/* --- COMPANY --- */
.company {
  background: var(--color-gray-50);
}

.company__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}

.company__photo {
  border-radius: var(--radius-lg);
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.company__table {
  font-size: 14px;
}

.company__table th,
.company__table td {
  padding: 16px 0;
  border-bottom: 1px solid var(--color-gray-200);
  text-align: left;
  vertical-align: top;
}

.company__table th {
  width: 120px;
  font-weight: 600;
  color: var(--color-navy);
  white-space: nowrap;
}

.company__table td {
  color: var(--color-gray-600);
}

/* --- RECRUIT --- */
.recruit {
  background: var(--color-white);
}

.recruit__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.recruit-card {
  background: var(--color-gray-50);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--color-gray-200);
  transition: all var(--transition);
}

.recruit-card:hover {
  background: var(--color-white);
  box-shadow: var(--shadow-md);
  border-color: var(--color-blue-light);
}

.recruit-card__tag {
  display: inline-block;
  padding: 3px 14px;
  font-size: 11px;
  font-weight: 600;
  background: var(--color-blue-light);
  color: var(--color-blue);
  border-radius: var(--radius-full);
  margin-bottom: 14px;
}

.recruit-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 10px;
}

.recruit-card__text {
  font-size: 14px;
  color: var(--color-gray-500);
  line-height: 1.9;
  margin-bottom: 16px;
}

.recruit-card__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-blue);
}

.recruit-card__link:hover {
  color: var(--color-blue-hover);
}

/* --- CONTACT --- */
.contact {
  background: var(--color-gray-50);
}

.contact-form {
  max-width: 720px;
  margin: 0 auto;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  border: 1px solid var(--color-gray-200);
  box-shadow: var(--shadow-sm);
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.contact-form__field {
  margin-bottom: 20px;
}

.contact-form__row .contact-form__field {
  margin-bottom: 0;
}

.contact-form__label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 8px;
}

.contact-form__required {
  font-size: 11px;
  font-weight: 600;
  color: var(--color-white);
  background: #EF4444;
  padding: 1px 8px;
  border-radius: var(--radius-full);
  margin-left: 6px;
  vertical-align: middle;
}

.contact-form__input,
.contact-form__select,
.contact-form__textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--color-gray-300);
  border-radius: var(--radius-sm);
  font-size: 15px;
  color: var(--color-gray-800);
  background: var(--color-white);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

.contact-form__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' stroke='%2394A3B8' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.contact-form__textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form__input:focus,
.contact-form__select:focus,
.contact-form__textarea:focus {
  outline: none;
  border-color: var(--color-blue);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.12);
}

.contact-form__input::placeholder,
.contact-form__textarea::placeholder {
  color: var(--color-gray-400);
}

.contact-form__checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  font-size: 14px;
  color: var(--color-gray-600);
}

.contact-form__checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--color-blue);
  flex-shrink: 0;
}

.contact-form__checkbox a {
  color: var(--color-blue);
  text-decoration: underline;
}

.contact-form__submit {
  text-align: center;
}

/* --- CTA BANNER --- */
.cta-banner {
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 50%, var(--color-blue) 100%);
  padding: 80px 0;
  text-align: center;
  color: var(--color-white);
}

.cta-banner__title {
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 700;
  margin-bottom: 16px;
}

.cta-banner__text {
  font-size: 15px;
  opacity: 0.8;
  margin-bottom: 36px;
}

.cta-banner__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- FOOTER --- */
.footer {
  background: var(--color-gray-900);
  color: var(--color-gray-400);
  padding: 64px 0 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.footer__logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--color-blue);
  color: var(--color-white);
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 12px;
  border-radius: var(--radius-sm);
}

.footer__logo-text {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 18px;
  color: var(--color-white);
}

.footer__tagline {
  font-size: 13px;
  color: var(--color-gray-500);
}

.footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.footer__heading {
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-white);
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__col a {
  font-size: 13px;
  color: var(--color-gray-400);
  transition: color var(--transition);
}

.footer__col a:hover {
  color: var(--color-white);
}

.footer__bottom {
  padding: 24px 0;
  text-align: center;
}

.footer__copyright {
  font-family: var(--font-en);
  font-size: 12px;
  color: var(--color-gray-500);
}

/* --- RESPONSIVE - TABLET (768px+) --- */
@media (min-width: 768px) {
  .sp-hide {
    display: inline;
  }

  .section {
    padding: 120px 0;
  }

  .service__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .numbers__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
  }

  .testimonials__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .company__content {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
  }

  .recruit__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .contact-form {
    padding: 48px 40px;
  }

  .contact-form__row {
    grid-template-columns: 1fr 1fr;
  }

  .news__item {
    flex-wrap: nowrap;
  }

  .footer__inner {
    grid-template-columns: 1fr 2fr;
  }
}

/* --- RESPONSIVE - DESKTOP (1024px+) --- */
@media (min-width: 1024px) {
  :root {
    --header-height: 80px;
  }

  .header__nav {
    display: block;
  }

  .header__cta {
    display: inline-flex;
  }

  .header__hamburger {
    display: none;
  }

  .mobile-nav {
    display: none;
  }

  .hero {
    min-height: 100vh;
    padding: calc(var(--header-height) + 80px) 24px 120px;
  }

  .hero__sub {
    font-size: 15px;
    margin-bottom: 24px;
  }

  .hero__desc {
    margin-bottom: 48px;
  }

  .section {
    padding: 140px 0;
  }

  .section__header {
    margin-bottom: 72px;
  }

  .service-card {
    padding: 48px 36px;
  }

  .testimonial-card {
    padding: 36px;
  }

  .contact-form {
    padding: 56px 48px;
  }

  .cta-banner {
    padding: 100px 0;
  }

  .footer {
    padding: 80px 0 0;
  }

  .footer__inner {
    gap: 64px;
    padding-bottom: 64px;
  }

  .footer__links {
    gap: 48px;
  }
}

/* --- RESPONSIVE - SMALL (max-width: 767px) --- */
@media (max-width: 767px) {
  .sp-hide {
    display: none;
  }

  .hero {
    min-height: 85vh;
  }

  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }

  .btn--large {
    padding: 14px 36px;
    font-size: 15px;
  }

  .service-card {
    padding: 28px 24px;
  }

  .numbers__grid {
    gap: 32px 16px;
  }

  .testimonial-card {
    padding: 24px;
  }

  .contact-form {
    padding: 28px 20px;
  }

  .company__table th {
    width: 100px;
    font-size: 13px;
  }

  .company__table td {
    font-size: 13px;
  }

  .footer__links {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}