html, body {
  overflow-x: hidden;
  width: 100%;
}

/* ======================================
   COMPANY THEME
====================================== */

:root {
  --company-color: #2563eb;
  --company-dark: #0f172a;

  --text: #0f172a;
  --muted: #64748b;

  --border: #e2e8f0;
  --bg: #f8fafc;
  --bg-gradient: linear-gradient(127deg, #f3f9ff, #e3eef7);
}

/* ======================================
   HERO
====================================== */

.company-hero {
  padding: 180px 0 120px;

  text-align: center;

  background: linear-gradient(135deg, #0f172a, #1e3a8a);

  color: white;

  position: relative;

  overflow: hidden;
}

.company-hero::before {
  content: "";

  position: absolute;

  width: 600px;
  height: 600px;

  right: -200px;
  top: -250px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.05);
}

.company-hero .hero-label {
  color: #93c5fd;

  font-weight: 700;

  letter-spacing: 0.2em;

  margin-bottom: 20px;
}

.company-hero h1 {
  font-size: clamp(3rem, 7vw, 5rem);

  line-height: 1.1;

  margin-bottom: 24px;
}

.company-hero .hero-text {
  max-width: 700px;

  margin: 0 auto;

  line-height: 2;

  color: rgba(255, 255, 255, 0.85);
}

/* ======================================
   MESSAGE
====================================== */

.company-message {
  background: white;
}

.narrow {
  max-width: 900px;

  margin: 0 auto;
}

.message-text {
  margin-top: 40px;

  font-size: 1.15rem;

  line-height: 2.4;

  color: var(--text);

  text-align: center;
}

/* ======================================
   PROFILE
====================================== */

.profile {
  background: var(--bg-gradient);
}

.profile-card {
  margin-top: 60px;

  background: white;

  border-radius: 30px;

  overflow: hidden;

  border: 1px solid var(--border);

  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
}

.profile-table {
  width: 100%;

  border-collapse: collapse;
}

.profile-table tr:not(:last-child) {
  border-bottom: 1px solid var(--border);
}

.profile-table th {
  width: 240px;

  padding: 28px 40px;

  background: #f8fafc;

  text-align: left;

  font-weight: 700;

  color: var(--company-dark);
}

.profile-table td {
  padding: 28px 40px;

  line-height: 2;

  color: var(--text);
}

/* ======================================
   HISTORY
====================================== */

.history-list {
  margin-top: 80px;

  max-width: 900px;

  margin-left: auto;
  margin-right: auto;

  position: relative;
}

.history-list::before {
  content: "";

  position: absolute;

  left: 80px;
  top: 0;
  bottom: 0;

  width: 2px;

  background: var(--border);
}

.history-item {
  display: flex;

  gap: 40px;

  position: relative;

  padding-bottom: 60px;
}

.history-item:last-child {
  padding-bottom: 0;
}

.history-item span {
  width: 80px;

  font-weight: 700;

  color: var(--company-color);

  flex-shrink: 0;
}

.history-item p {
  flex: 1;

  padding: 24px 32px;

  background: white;

  border-radius: 20px;

  border: 1px solid var(--border);

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.history-item::before {
  content: "";

  position: absolute;

  left: 74px;
  top: 10px;

  width: 14px;
  height: 14px;

  border-radius: 50%;

  background: var(--company-color);

  border: 4px solid white;
}

/* ======================================
   ACCESS
====================================== */

/*.access {
  background: var(--bg-gradient);
}*/

.access-grid {
  margin-top: 60px;

  display: grid;

  grid-template-columns: 400px 1fr;

  gap: 40px;
}

.access-info {
  background: white;

  padding: 40px;

  border-radius: 24px;

  border: 1px solid var(--border);

  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.access-info h3 {
  color: var(--company-color);

  margin-bottom: 24px;
}

.access-info p {
  margin-bottom: 12px;

  line-height: 1.8;
}

.access-map {
  min-height: 420px;

  border-radius: 24px;

  overflow: hidden;

  border: 1px solid var(--border);

  background: white;
}

.access-map iframe {
  width: 100%;

  height: 100%;

  border: none;
}

/* ======================================
   CTA
====================================== */

.contact-cta {
  padding: 120px 0;

  text-align: center;

  background: linear-gradient(135deg, #0f172a, #1e293b);

  color: white;
}

.contact-cta h2 {
  font-size: clamp(2rem, 5vw, 4rem);

  margin-bottom: 20px;
}

.contact-cta p {
  max-width: 700px;

  margin: 0 auto 40px;

  line-height: 2;

  color: rgba(255, 255, 255, 0.85);
}

/* ======================================
   HOVER
====================================== */

.profile-card,
.history-item p,
.access-info {
  transition: 0.3s;
}

.profile-card:hover,
.history-item p:hover,
.access-info:hover {
  transform: translateY(-4px);

  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

/* ======================================
   RESPONSIVE
====================================== */

@media (max-width: 992px) {
  .access-grid {
    grid-template-columns: 1fr;
  }

  .profile-table th,
  .profile-table td {
    padding: 24px;
  }
}

@media (max-width: 768px) {
  .company-hero {
    padding: 140px 0 90px;
  }

  .company-hero h1 {
    font-size: 2.8rem;
  }

  .message-text {
    font-size: 1rem;
  }

  .profile-table,
  .profile-table tbody,
  .profile-table tr,
  .profile-table th,
  .profile-table td {
    display: block;
  }

  .profile-table th {
    width: 100%;

    border-bottom: 1px solid var(--border);
  }

  .history-list::before {
    left: 15px;
  }

  .history-item {
    gap: 20px;
  }

  .history-item span {
    width: 40px;
  }

  .history-item::before {
    left: 9px;
  }

  .access-info {
    padding: 30px;
  }
}
