/* === Reset & Base === */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --navy: #002965;
  --blue: #4887E3;
  --blue-light: #6BA3F0;
  --sky: #E8F1FD;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f2f4f7;
  --gray-200: #e4e7ec;
  --gray-600: #475467;
  --gray-900: #101828;
  --radius: 8px;
  --shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-lg: 0 4px 24px rgba(0,0,0,0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--gray-900);
  line-height: 1.6;
  background: var(--white);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* === Header === */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--white);
  transition: box-shadow 0.2s;
}

.header.scrolled {
  box-shadow: var(--shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 50px;
  width: auto;
}

.nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 32px;
}

.nav-list a {
  text-decoration: none;
  color: var(--gray-600);
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-list a:hover {
  color: var(--navy);
}

/* Nav toggle (mobile) */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-900);
  transition: all 0.3s;
}

.nav-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* === Buttons === */
.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--radius);
  transition: all 0.2s;
  cursor: pointer;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  padding: 12px 28px;
}

.btn-primary:hover {
  background: var(--navy);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 12px 28px;
  border: 2px solid var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}

.btn-nav {
  background: var(--blue);
  color: var(--white) !important;
  padding: 8px 20px;
  border-radius: var(--radius);
}

.btn-nav:hover {
  background: var(--navy);
  color: var(--white) !important;
}

.btn-large {
  padding: 16px 36px;
  font-size: 17px;
}

/* === Hero === */
.hero {
  background: linear-gradient(rgba(10, 25, 47, 0.55), rgba(10, 25, 47, 0.55)), url('joel-rohland-MCL2xxjZJvs-unsplash.jpg') center/cover no-repeat;
  color: var(--white);
  padding: 160px 0 100px;
  text-align: center;
}

.hero h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 12px;
}

.hero-tagline {
  font-size: 22px;
  font-weight: 500;
  color: var(--blue-light);
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.75);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* === Sections === */
.section {
  padding: 80px 0;
}

.section-light {
  background: var(--white);
}

.section-dark {
  background: var(--gray-50);
}

.section-accent {
  background: var(--navy);
  color: var(--white);
  text-align: center;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
}

.pricing-week {
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-600);
  margin-bottom: 8px;
}

.section-subtitle {
  text-align: center;
  color: var(--gray-600);
  font-size: 16px;
  max-width: 560px;
  margin: 0 auto 40px;
}

.section-accent .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

/* === How It Works === */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.step {
  text-align: center;
  padding: 32px 24px;
  border-radius: var(--radius);
  background: var(--gray-50);
}

.step-number {
  width: 48px;
  height: 48px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
}

.step h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--navy);
}

.step p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.6;
}

/* === Pricing Tabs === */
.tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
}

.tab-btn {
  background: var(--navy);
  color: var(--white);
  border: none;
  padding: 10px 24px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s;
  font-family: inherit;
}

.tab-btn:hover {
  background: var(--blue);
}

.tab-btn.active {
  background: var(--blue);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  background: var(--white);
}

thead th {
  background: var(--navy);
  color: var(--white);
  padding: 14px 16px;
  text-align: center;
  font-weight: 600;
  white-space: nowrap;
}

thead th:first-child {
  text-align: left;
}

tbody td {
  padding: 12px 16px;
  text-align: center;
  border-bottom: 1px solid var(--gray-200);
}

tbody td:first-child {
  font-weight: 600;
  text-align: left;
  white-space: nowrap;
}

tbody tr:nth-child(even) {
  background: var(--gray-100);
}

tbody tr:hover {
  background: var(--sky);
}

tbody tr:last-child td {
  border-bottom: none;
}

/* === About === */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 48px;
}

.about-text p {
  color: var(--gray-600);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.highlight {
  text-align: center;
  padding: 24px 12px;
  background: var(--gray-50);
  border-radius: var(--radius);
}

.highlight-number {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 4px;
}

.highlight-label {
  display: block;
  font-size: 13px;
  color: var(--gray-600);
  font-weight: 500;
}

/* === Contact === */
.contact-content {
  padding: 20px 0;
}

.section-accent .section-title {
  color: var(--white);
}

.section-accent .btn-primary {
  background: var(--white);
  color: var(--navy);
  margin-top: 8px;
}

.section-accent .btn-primary:hover {
  background: var(--sky);
}

/* === Label Request Form === */
.form-section {
  padding-top: 140px;
}

.label-form {
  max-width: 540px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  font-size: 15px;
  font-family: inherit;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--gray-50);
  color: var(--gray-900);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(72, 135, 227, 0.15);
}

.form-group textarea {
  min-height: 90px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-submit {
  width: 100%;
  margin-top: 8px;
  border: none;
  text-align: center;
}

/* === Footer === */
.footer {
  background: var(--gray-900);
  color: rgba(255, 255, 255, 0.5);
  padding: 24px 0;
  text-align: center;
  font-size: 14px;
}

/* === Responsive === */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-list {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    box-shadow: var(--shadow-lg);
  }

  .nav-list.open {
    display: flex;
  }

  .hero {
    padding: 130px 0 70px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero-tagline {
    font-size: 18px;
  }

  .hero-sub {
    font-size: 15px;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 26px;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-highlights {
    grid-template-columns: repeat(3, 1fr);
  }

  .tabs {
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 28px;
  }

  .about-highlights {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}
