/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", Arial, sans-serif;
}

body {
  color: #1f2933;
  background: #ffffff;
  line-height: 1.6;
}

/* Layout */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Header */
.header {
  border-bottom: 1px solid #e5e7eb;
  padding: 16px 0;
}

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

.logo {
  font-size: 20px;
  font-weight: 700;
}

.logo span {
  color: #2563eb;
  margin-left: 4px;
}

nav a {
  margin-left: 24px;
  text-decoration: none;
  color: #1f2933;
  font-weight: 500;
}

.btn-outline {
  border: 1px solid #2563eb;
  padding: 8px 14px;
  border-radius: 6px;
  color: #2563eb;
}

/* Hero */
.hero {
  padding: 80px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

/* Updated hero heading */
.hero h1 {
  font-size: 36px;
  max-width: 480px;
  line-height: 1.3;
  margin-bottom: 16px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 24px;
  color: #4b5563;
}

.hero-actions a {
  margin-right: 16px;
  margin-top: 12px;
}

.btn-primary {
  background: #2563eb;
  color: #fff;
  padding: 12px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

.btn-secondary {
  color: #2563eb;
  font-weight: 600;
  text-decoration: none;
}

/* Mockup */
/* Updated mockup styles */
.mockup {
  max-width: 500px;
  height: auto;
  background: transparent;
  color: inherit;
  padding: 0;
  display: block;
}

.mockup img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  display: block;
}

/* Values */
.values {
  background: #f9fafb;
  padding: 60px 0;
}

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

.value-card {
  background: #fff;
  padding: 24px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
}

.value-card h3 {
  margin-bottom: 8px;
}

/* Trust */
.trust {
  padding: 40px 0;
  text-align: center;
  color: #4b5563;
}

/* CTA */
.cta {
  padding: 80px 0;
}

.cta-box {
  background: #2563eb;
  color: #fff;
  padding: 60px;
  border-radius: 16px;
  text-align: center;
}

.cta-box h2 {
  margin-bottom: 12px;
}

.cta-box p {
  margin-bottom: 24px;
}

/* Footer */
.footer {
  background: #111827;
  color: #d1d5db;
  padding: 40px 0 20px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.footer a {
  color: #9ca3af;
  margin-right: 16px;
  text-decoration: none;
}

copyright {
  text-align: center;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .mockup {
    max-width: 100%;
    height: auto;
  }

  .hero h1 {
    max-width: 100%;
    font-size: 28px;
  }
}

@media (max-width: 900px) {
  .hero-grid,
  .value-grid {
    grid-template-columns: 1fr;
  }

  nav a {
    margin-left: 12px;
  }
}

.contact-form {
  max-width: 480px;
  margin-top: 32px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 16px;
  border-radius: 6px;
  border: 1px solid #d1d5db;
  font-size: 14px;
}

.contact-form textarea {
  min-height: 100px;
}
