/* ==============================================
   SAILORS Corporate LP - Main Stylesheet
   Color Palette:
   - Primary:    #0EA5E9 (sky blue)
   - Primary D:  #0284C7
   - Accent:     #38BDF8
   - Light:      #E0F2FE
   - White:      #FFFFFF
   - Dark:       #0F172A
   - Gray:       #64748B
   =============================================== */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Noto Sans JP', 'Inter', sans-serif;
  color: #0F172A;
  background: #ffffff;
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s;
}

ul { list-style: none; }
img { max-width: 100%; display: block; }

.pc-only { display: inline; }

/* ---- Container ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn--primary {
  background: linear-gradient(135deg, #0EA5E9, #0284C7);
  color: #fff;
  box-shadow: 0 4px 20px rgba(14, 165, 233, 0.4);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(14, 165, 233, 0.5);
  color: #fff;
}

.btn--outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.7);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
  color: #fff;
}

.btn--white {
  background: #fff;
  color: #0284C7;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.btn--white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  color: #0284C7;
}

.btn--full { width: 100%; justify-content: center; }

/* ---- Section ---- */
.section {
  padding: 100px 0;
}
.section--alt {
  background: #F0F9FF;
}

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

.section__label {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #0EA5E9;
  background: #E0F2FE;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.section__title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 900;
  color: #0F172A;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section__subtitle {
  font-size: 1rem;
  color: #64748B;
  max-width: 600px;
  margin: 0 auto;
}

/* ---- Fade animation ---- */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   HEADER / NAV
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background 0.4s, box-shadow 0.4s;
  padding: 0;
}

.header.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  color: #fff;
  transition: color 0.4s;
}
.header.scrolled .nav__logo {
  color: #0284C7;
}

.nav__logo-icon {
  font-size: 1.4rem;
  color: #38BDF8;
  transition: color 0.4s;
}
.header.scrolled .nav__logo-icon {
  color: #0EA5E9;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__link {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  padding: 8px 14px;
  border-radius: 6px;
  transition: all 0.3s;
}
.nav__link:hover {
  color: #fff;
  background: rgba(255,255,255,0.15);
}
.nav__link--cta {
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.5);
  color: #fff;
  border-radius: 50px;
  padding: 8px 20px;
}
.nav__link--cta:hover {
  background: #fff;
  color: #0284C7;
}

.header.scrolled .nav__link {
  color: #334155;
}
.header.scrolled .nav__link:hover {
  color: #0EA5E9;
  background: #E0F2FE;
}
.header.scrolled .nav__link--cta {
  background: #0EA5E9;
  border-color: #0EA5E9;
  color: #fff;
}
.header.scrolled .nav__link--cta:hover {
  background: #0284C7;
  border-color: #0284C7;
  color: #fff;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}
.header.scrolled .nav__hamburger span { background: #0F172A; }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0284C7 0%, #0EA5E9 40%, #38BDF8 70%, #7DD3FC 100%);
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 200%;
  height: 200px;
  background: rgba(255,255,255,0.06);
  border-radius: 50% 50% 0 0 / 80px 80px 0 0;
  animation: waveAnim 8s ease-in-out infinite;
}
.hero__wave--1 {
  background: rgba(255,255,255,0.08);
  animation-delay: 0s;
  animation-duration: 8s;
}
.hero__wave--2 {
  background: rgba(255,255,255,0.05);
  animation-delay: -2s;
  animation-duration: 10s;
  height: 160px;
}
.hero__wave--3 {
  background: rgba(255,255,255,0.04);
  animation-delay: -4s;
  animation-duration: 12s;
  height: 120px;
}

@keyframes waveAnim {
  0%, 100% { transform: translateX(0) scaleY(1); }
  50% { transform: translateX(-5%) scaleY(1.05); }
}

.hero__particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: 80px;
}

.hero__badge {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.4);
  padding: 5px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
  background: rgba(255,255,255,0.1);
}

.hero__title {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.hero__title-sub {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.15em;
}

.hero__title-main {
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  letter-spacing: 0.05em;
  text-shadow: 0 4px 30px rgba(0,0,0,0.15);
}
.hero__title-main em {
  font-style: normal;
  color: #fff;
  background: linear-gradient(135deg, #fff, #BAE6FD);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__description {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: rgba(255,255,255,0.9);
  margin-bottom: 40px;
  line-height: 1.8;
}

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

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  z-index: 2;
}
.hero__scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.7), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================
   ABOUT
   ============================================ */
.about__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about__text p {
  font-size: 1rem;
  color: #334155;
  line-height: 1.9;
  margin-bottom: 20px;
}
.about__text p:last-child { margin-bottom: 0; }

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

.stat-card {
  background: #fff;
  border: 1px solid #E0F2FE;
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(14, 165, 233, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}
.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(14, 165, 233, 0.15);
}

.stat-card__icon {
  font-size: 1.8rem;
  color: #0EA5E9;
  margin-bottom: 12px;
}

.stat-card__number {
  font-family: 'Inter', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: #0284C7;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-card__number span {
  font-size: 1.2rem;
}

.stat-card__label {
  font-size: 0.78rem;
  color: #64748B;
  font-weight: 500;
}

/* ============================================
   SERVICES
   ============================================ */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 32px;
  box-shadow: 0 4px 24px rgba(14, 165, 233, 0.08);
  border: 1px solid #E0F2FE;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #0EA5E9, #38BDF8);
  border-radius: 4px 0 0 4px;
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(14, 165, 233, 0.18);
}
.service-card:hover::before {
  opacity: 1;
}

.service-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
}

.service-card__icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #E0F2FE, #BAE6FD);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #0EA5E9;
  transition: all 0.3s;
}
.service-card:hover .service-card__icon {
  background: linear-gradient(135deg, #0EA5E9, #0284C7);
  color: #fff;
}

.service-card__number {
  font-family: 'Inter', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: #E0F2FE;
  line-height: 1;
}

.service-card__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 14px;
}

.service-card__desc {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 20px;
}

.service-card__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-card__list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: #334155;
  font-weight: 500;
}
.service-card__list li i {
  color: #0EA5E9;
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* ============================================
   STRENGTHS
   ============================================ */
.strengths__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.strength-item {
  text-align: center;
  padding: 40px 24px;
  background: #fff;
  border-radius: 20px;
  border: 1px solid #E0F2FE;
  box-shadow: 0 4px 20px rgba(14, 165, 233, 0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}
.strength-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(14, 165, 233, 0.15);
}

.strength-item__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #0EA5E9, #0284C7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #fff;
  box-shadow: 0 8px 24px rgba(14, 165, 233, 0.35);
}

.strength-item__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 12px;
}

.strength-item__desc {
  font-size: 0.88rem;
  color: #64748B;
  line-height: 1.8;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  position: relative;
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0284C7 0%, #0EA5E9 50%, #38BDF8 100%);
}

.cta-section__bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(255,255,255,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(255,255,255,0.05) 0%, transparent 50%);
}

.cta-section__content {
  position: relative;
  z-index: 1;
}

.cta-section__title {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.4;
}

.cta-section__desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
}

/* ============================================
   COMPANY
   ============================================ */
.company__content {
  max-width: 800px;
  margin: 0 auto;
}

.company__table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(14, 165, 233, 0.1);
}

.company__table tr {
  border-bottom: 1px solid #E0F2FE;
}
.company__table tr:last-child {
  border-bottom: none;
}

.company__table th,
.company__table td {
  padding: 22px 28px;
  text-align: left;
  font-size: 0.95rem;
}

.company__table th {
  background: #F0F9FF;
  color: #0284C7;
  font-weight: 700;
  width: 160px;
  white-space: nowrap;
  border-right: 2px solid #BAE6FD;
}

.company__table td {
  color: #334155;
  line-height: 1.7;
}

.company__table td a {
  color: #0EA5E9;
  font-weight: 500;
}
.company__table td a:hover {
  color: #0284C7;
  text-decoration: underline;
}

/* ============================================
   CONTACT
   ============================================ */
.contact__wrapper {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact__info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #E0F2FE;
  box-shadow: 0 4px 16px rgba(14, 165, 233, 0.07);
  transition: transform 0.3s;
}
.contact__info-item:hover {
  transform: translateX(4px);
}

.contact__info-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #0EA5E9, #0284C7);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact__info-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact__info-label {
  font-size: 0.78rem;
  color: #94A3B8;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.contact__info-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: #0F172A;
}
.contact__info-value--addr {
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1.6;
}
a.contact__info-value {
  color: #0EA5E9;
}
a.contact__info-value:hover {
  color: #0284C7;
}

/* Form */
.contact__form {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 8px 40px rgba(14, 165, 233, 0.1);
  border: 1px solid #E0F2FE;
}

.form__group {
  margin-bottom: 20px;
}

.form__label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: #334155;
  margin-bottom: 8px;
}

.required {
  color: #EF4444;
  font-size: 0.75rem;
  margin-left: 2px;
}

.form__input,
.form__select,
.form__textarea {
  width: 100%;
  padding: 12px 16px;
  background: #F8FAFC;
  border: 1.5px solid #CBD5E1;
  border-radius: 10px;
  font-size: 0.95rem;
  color: #0F172A;
  font-family: 'Noto Sans JP', sans-serif;
  transition: all 0.3s;
  outline: none;
  appearance: none;
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  border-color: #0EA5E9;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: #94A3B8;
}

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

.form__success {
  display: none;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 14px 20px;
  background: #F0FDF4;
  border: 1px solid #86EFAC;
  border-radius: 10px;
  color: #16A34A;
  font-size: 0.9rem;
  font-weight: 500;
}
.form__success.show {
  display: flex;
}
.form__success i {
  font-size: 1.2rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #0F172A;
}

.footer__top {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__top .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.1em;
}
.footer__logo i {
  color: #38BDF8;
  font-size: 1.3rem;
}

.footer__tagline {
  margin-top: 8px;
  font-size: 0.85rem;
  color: #64748B;
}

.footer__nav ul {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.footer__nav a {
  font-size: 0.88rem;
  color: #94A3B8;
  padding: 6px 12px;
  border-radius: 6px;
  transition: all 0.3s;
}
.footer__nav a:hover {
  color: #38BDF8;
  background: rgba(56, 189, 248, 0.08);
}

.footer__bottom {
  padding: 20px 0;
}
.footer__copy {
  text-align: center;
  font-size: 0.82rem;
  color: #475569;
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #0EA5E9, #0284C7);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(14, 165, 233, 0.4);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s;
  z-index: 999;
}
.back-to-top.show {
  opacity: 1;
  transform: translateY(0);
}
.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(14, 165, 233, 0.5);
}

/* ============================================
   PARTICLES (floating dots)
   ============================================ */
.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  animation: floatParticle linear infinite;
}
@keyframes floatParticle {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0;
  }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% {
    transform: translateY(-100vh) rotate(720deg);
    opacity: 0;
  }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .strengths__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services__grid .service-card:last-child {
    grid-column: 1 / -1;
    max-width: 400px;
    margin: 0 auto;
  }
  .about__content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .pc-only { display: none; }

  .section { padding: 72px 0; }

  /* Nav */
  .nav__menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 24px 32px;
    gap: 4px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s;
  }
  .nav__menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav__link {
    color: #334155 !important;
    padding: 12px 16px;
    font-size: 1rem;
    border-radius: 8px;
  }
  .nav__link:hover {
    background: #E0F2FE !important;
    color: #0EA5E9 !important;
  }
  .nav__link--cta {
    background: linear-gradient(135deg, #0EA5E9, #0284C7) !important;
    color: #fff !important;
    text-align: center;
    margin-top: 8px;
  }
  .nav__hamburger { display: flex; }

  /* Hero */
  .hero__actions {
    flex-direction: column;
    align-items: center;
  }
  .hero__scroll { display: none; }

  /* Services */
  .services__grid {
    grid-template-columns: 1fr;
  }
  .services__grid .service-card:last-child {
    grid-column: auto;
    max-width: 100%;
    margin: 0;
  }

  /* About stats */
  .about__stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  /* Strengths */
  .strengths__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Company table */
  .company__table th,
  .company__table td {
    padding: 16px 20px;
    font-size: 0.88rem;
  }
  .company__table th {
    width: 110px;
  }

  /* Contact */
  .contact__wrapper {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .contact__form {
    padding: 28px 24px;
  }

  /* Footer */
  .footer__top .container {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .about__stats {
    grid-template-columns: 1fr;
  }
  .strengths__grid {
    grid-template-columns: 1fr;
  }
  .company__table {
    display: block;
  }
  .company__table tbody,
  .company__table tr {
    display: block;
  }
  .company__table th,
  .company__table td {
    display: block;
    width: 100%;
  }
  .company__table th {
    background: linear-gradient(135deg, #E0F2FE, #BAE6FD);
    border-right: none;
    border-bottom: 1px solid #BAE6FD;
    font-size: 0.8rem;
    padding: 10px 20px;
  }
  .company__table td {
    padding: 14px 20px;
  }
  .hero__title-main {
    font-size: 2.4rem;
  }
  .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }
}
