/* CSS Variables & Reset */
:root {
  --white: #ffffff;
  --dark: #111111;
  --red: #d32f2f;
  --gray-light: #f9f9f9;
  --gray: #e0e0e0;
  --text-muted: #555555;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--dark);
  background-color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  z-index: 1000;
  padding: 16px 0;
}

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

.logo {
  font-size: 24px;
  font-weight: 800;
  text-decoration: none;
  color: var(--dark);
  letter-spacing: -0.5px;
}

.logo span {
  color: var(--red);
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 600;
  font-size: 15px;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--red);
}

.btn-primary {
  display: inline-block;
  background-color: var(--red);
  color: var(--white) !important;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
  text-align: center;
  font-size: 16px;
}

.btn-primary:hover {
  background-color: #b71c1c;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(211, 47, 47, 0.3);
}

/* Hero Section */
.hero {
  padding: 100px 0;
  background-color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gray), transparent);
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 24px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -1px;
}

.hero p {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 760px;
  margin: 0 auto 40px;
}

/* Trust Bar */
.trust-bar {
  background-color: var(--dark);
  color: var(--white);
  padding: 32px 0;
}

.trust-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  text-align: center;
}

.trust-item {
  flex: 1;
  min-width: 200px;
  font-weight: 600;
  font-size: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.trust-item svg {
  fill: var(--red);
  width: 28px;
  height: 28px;
}

/* Common Section Styles */
section {
  padding: 96px 0;
}

.bg-light {
  background-color: var(--gray-light);
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 56px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

/* Cards */
.card {
  background: var(--white);
  border: 1px solid var(--gray);
  border-radius: 12px;
  padding: 40px 32px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.06);
}

.card h3 {
  margin-bottom: 16px;
  font-size: 1.5rem;
  color: var(--dark);
  font-weight: 700;
}

.card p {
  color: var(--text-muted);
}

/* Included List */
.included-list {
  max-width: 800px;
  margin: 0 auto;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.included-list li {
  background: var(--white);
  padding: 20px;
  border-radius: 8px;
  border: 1px solid var(--gray);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}

.included-list li svg {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  fill: var(--red);
}

/* Process Grid */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
}

.process-step {
  text-align: center;
  position: relative;
}

.step-number {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 64px;
  height: 64px;
  background-color: var(--red);
  color: var(--white);
  border-radius: 50%;
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(211, 47, 47, 0.3);
}

.process-step h4 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.process-step p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Contact Form */
.contact-section {
  background-color: var(--gray-light);
  border-top: 1px solid var(--gray);
}

.form-container {
  max-width: 640px;
  margin: 0 auto;
  background: var(--white);
  padding: 48px;
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.1);
}

.submit-btn {
  width: 100%;
  font-size: 1.1rem;
  padding: 16px;
}

/* Footer */
.site-footer {
  background-color: var(--dark);
  color: var(--white);
  padding: 80px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 48px;
  margin-bottom: 48px;
}

.footer-col h4 {
  margin-bottom: 24px;
  font-size: 1.25rem;
  color: var(--white);
  font-weight: 700;
}

.footer-col a {
  color: #a3a3a3;
  text-decoration: none;
  display: block;
  margin-bottom: 12px;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--red);
}

.footer-col p {
  margin-bottom: 12px;
  color: #a3a3a3;
}

.copyright {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid #262626;
  color: #737373;
  font-size: 0.9rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    gap: 16px;
  }
  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
  .hero {
    padding: 64px 0;
  }
  section {
    padding: 64px 0;
  }
  .included-list {
    grid-template-columns: 1fr;
  }
  .form-container {
    padding: 32px 24px;
  }
}
