/* Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #1a1a2e;
  line-height: 1.6;
  background: #f8f9fa;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* Container */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Navigation */
.nav {
  background: #1a1a2e;
  padding: 1rem 0 1.25rem;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
}

.brand {
  display: flex;
  align-items: center;
  justify-content: center;
  order: 2;
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
}

.brand-logo {
  height: 168px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  order: 1;
}

.nav-links a {
  color: #ccc;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #fff;
}

.nav-cta {
  order: 3;
  margin-top: 0.25rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.6rem 1.4rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s, transform 0.15s;
  cursor: pointer;
  border: none;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: #2ec4b6;
  color: #fff;
}

.btn-primary:hover {
  background: #28b0a3;
}

.btn-secondary {
  background: #fff;
  color: #1a1a2e;
  border: 2px solid #e0e0e0;
}

.btn-secondary:hover {
  border-color: #2ec4b6;
  color: #2ec4b6;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: #fff;
  padding: 5rem 0 4rem;
  text-align: center;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  font-weight: 800;
}

.hero p {
  font-size: 1.15rem;
  color: #c0c8d8;
  max-width: 600px;
  margin: 0 auto;
}

.kicker {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

/* Sections */
.section {
  padding: 4rem 0;
}

.section h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.section p {
  color: #555;
  line-height: 1.7;
}

/* Grid Layouts */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* Cards */
.card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.2s;
}

.card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.card h2 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: #1a1a2e;
}

.card p {
  color: #555;
  margin-bottom: 0.75rem;
}

/* Feature List */
.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: #555;
}

.feature-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: #2ec4b6;
  font-weight: 700;
}

/* Form Styles */
.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.35rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: #1a1a2e;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 2px solid #e0e0e0;
  border-radius: 6px;
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.2s;
  background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2ec4b6;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* Section with Background */
.section-alt {
  background: #fff;
}

/* Center text helper */
.text-center {
  text-align: center;
}

/* Footer */
.footer {
  background: #1a1a2e;
  color: #888;
  padding: 2rem 0;
  font-size: 0.85rem;
  text-align: center;
}

.footer-bottom {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Vendors/Partners Directory - 2 per row */
.vendor-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.vendor-card {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 1.25rem;
  align-items: start;
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.vendor-photo-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.photo-placeholder {
  width: 160px;
  height: 160px;
  border: 2px dashed #cfd6df;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  background: #f8f9fa;
  font-weight: 600;
}

.vendor-photo {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
}

.vendor-info h2 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  color: #1a1a2e;
}

.vendor-info p {
  margin-bottom: 0.5rem;
  color: #555;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-inner {
    gap: 0.75rem;
  }

  .nav-links {
    gap: 1rem;
  }

  .brand-logo {
    height: 126px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .grid-2,
  .grid-3,
  .vendor-grid {
    grid-template-columns: 1fr;
  }

  .vendor-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .vendor-photo-wrap {
    justify-content: center;
  }

  .vendor-info {
    text-align: left;
  }

  .photo-placeholder,
  .vendor-photo {
    margin: 0 auto;
  }
}