/* ======================================== */
/* GLOBAL */
/* ======================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: #ffffff;
  color: #002645;
  line-height: 1.6;
}

/* ======================================== */
/* NAVBAR */
/* ======================================== */

.navbar {
  width: 100%;
  background: #e1b339;
  border-bottom: 1px solid #1e293b;
  padding: 18px 40px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 28px;
}

.logo {
  width: 150px;
  height: 42px;
  object-fit: contain;
}

.brand {
  text-decoration: none;
  font-size: 24px;
  font-weight: 800;
  color: white;
  letter-spacing: 0.5px;
}

.nav-link {
  text-decoration: none;
  color: #002645;
  font-size: 12px;
  font-weight: 600;
  transition: 0.2s ease;
}

.nav-link:hover {
  color: #2563eb;
}

/* ======================================== */
/* BUTTONS */
/* ======================================== */

.primary-btn {
  background: #002645;
  color: white;

  border: none;
  border-radius: 10px;

  padding: 10px 18px;

  font-size: 13px;
  font-weight: 600;

  cursor: pointer;
  transition: 0.25s ease;
}

.primary-btn:hover {
  background: #0f3a63;
  transform: translateY(-1px);
}

.secondary-btn {
  background: transparent;
  color: #002645;

  border: 2px solid #002645;
  border-radius: 10px;

  padding: 10px 18px;

  font-size: 13px;
  font-weight: 600;

  cursor: pointer;
  transition: 0.25s ease;
}

.secondary-btn:hover {
  background: #f8fafc;
}

.large-btn {
  padding: 16px 28px;
  font-size: 15px;
}

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

.hero-section {
  max-width: 1300px;
  margin: auto;

  padding: 100px 40px;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-badge {
  display: inline-block;

  background: #f6e2a8;
  color: #002645;

  padding: 10px 18px;
  border-radius: 999px;

  font-size: 12px;
  font-weight: 700;

  margin-bottom: 28px;
}

.hero-title {
  font-size: 64px;
  font-weight: 900;
  line-height: 1.1;

  margin-bottom: 30px;

  color: #002645;
}

.hero-title span {
  color: #e1b339;
}

.hero-description {
  font-size: 18px;
  line-height: 1.9;
  color: #475569;

  max-width: 700px;
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* ======================================== */
/* RIGHT PANEL */
/* ======================================== */

.workspace-card {
  border: 1px solid #e1b339;
  border-radius: 32px;

  padding: 36px;

  background: white;

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

.workspace-header {
  display: flex;
  justify-content: space-between;
  align-items: center;

  margin-bottom: 36px;
}

.workspace-header h3 {
  font-size: 24px;
  font-weight: 800;
  color: #002645;
}

.workspace-header p {
  margin-top: 6px;
  color: #64748b;
  font-size: 14px;
}

.live-badge {
  background: #e1b339;
  color: #002645;

  padding: 8px 16px;
  border-radius: 10px;

  font-size: 12px;
  font-weight: 800;
}

.workspace-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.workspace-item {
  background: #f8fafc;

  border: 1px solid #e2e8f0;
  border-radius: 22px;

  padding: 24px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  transition: 0.25s ease;
}

.workspace-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.workspace-item h4 {
  font-size: 17px;
  font-weight: 700;

  margin-bottom: 6px;

  color: #002645;
}

.workspace-item p {
  font-size: 14px;
  color: #64748b;
}

.tag-yellow,
.tag-dark {
  padding: 8px 14px;
  border-radius: 999px;

  font-size: 12px;
  font-weight: 700;
}

.tag-yellow {
  background: #f6e2a8;
  color: #002645;
}

.tag-dark {
  background: #002645;
  color: white;
}

/* ======================================== */
/* FEATURES */
/* ======================================== */

.features-section {
  max-width: 1300px;
  margin: auto;

  padding: 100px 40px;
}

.section-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-header h2 {
  font-size: 48px;
  font-weight: 900;

  margin-bottom: 20px;

  color: #002645;
}

.section-header p {
  max-width: 850px;
  margin: auto;

  font-size: 18px;
  line-height: 1.9;

  color: #64748b;
}

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

.feature-card {
  border: 1px solid #e1b339;
  border-radius: 30px;

  padding: 40px 32px;

  background: white;

  transition: 0.3s ease;

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

.feature-card:hover {
  transform: translateY(-5px);

  box-shadow:
    0 20px 35px rgba(0,0,0,0.08);
}

.feature-icon {
  width: 60px;
  height: 60px;

  background: #e1b339;
  color: #002645;

  border-radius: 18px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 24px;
  font-weight: 900;

  margin-bottom: 28px;
}

.feature-card h3 {
  font-size: 22px;
  font-weight: 800;

  margin-bottom: 18px;

  color: #002645;
}

.feature-card p {
  color: #64748b;
  line-height: 1.9;
}

/* ======================================== */
/* FORM SECTION */
/* ======================================== */

.form-section {
  background: #002645;
  padding: 110px 40px;
}

.form-container {
  max-width: 1300px;
  margin: auto;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.form-left h2 {
  font-size: 52px;
  font-weight: 900;

  color: white;

  margin-bottom: 26px;
}

.form-left p {
  font-size: 18px;
  line-height: 1.9;

  color: #cbd5e1;

  margin-bottom: 40px;
}

.benefits {
  display: flex;
  flex-direction: column;
  gap: 18px;

  color: #e2e8f0;
  font-size: 17px;
}

.form-card {
  background: white;

  border: 1px solid #e1b339;
  border-radius: 30px;

  overflow: hidden;

  box-shadow:
    0 20px 50px rgba(0,0,0,0.25);
}

.form-header {
  background: #e1b339;
  color: #002645;

  padding: 20px 28px;

  font-weight: 800;
  font-size: 18px;
}

.iframe-wrapper {
  padding: 18px;
}

.form-iframe {
  width: 100%;
  height: 1050px;

  border: none;
  border-radius: 22px;
}

/* ======================================== */
/* FOOTER */
/* ======================================== */

.footer {
  border-top: 1px solid #e2e8f0;
  padding: 50px 40px;
}

.footer-container {
  max-width: 1300px;
  margin: auto;

  display: flex;
  justify-content: space-between;
  align-items: center;

  gap: 30px;
}

.footer-brand {
  font-size: 30px;
  font-weight: 900;
  color: #002645;
}

.footer-text {
  margin-top: 10px;
  color: #64748b;
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 34px;
}

.footer-links a {
  text-decoration: none;
  color: #002645;

  font-size: 14px;
  font-weight: 600;

  transition: 0.2s ease;
}

.footer-links a:hover {
  color: #2563eb;
}

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

@media (max-width: 1100px) {

  .hero-section,
  .form-container,
  .features-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 52px;
  }

  .section-header h2 {
    font-size: 40px;
  }

  .form-left h2 {
    font-size: 42px;
  }
}

@media (max-width: 768px) {

  .navbar {
    padding: 18px 20px;
    flex-direction: column;
    gap: 20px;
  }

  .nav-left {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-section,
  .features-section,
  .form-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-title {
    font-size: 42px;
  }

  .section-header h2 {
    font-size: 34px;
  }

  .form-left h2 {
    font-size: 36px;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .workspace-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}