/* SoloForms — Main Styles */

:root {
  --blue-600: #2563eb;
  --blue-700: #1d4ed8;
  --blue-50: #eff6ff;
  --gray-900: #111827;
  --gray-800: #1f2937;
  --gray-700: #374151;
  --gray-600: #4b5563;
  --gray-500: #6b7280;
  --gray-400: #9ca3af;
  --gray-300: #d1d5db;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --gray-50: #f9fafb;
  --white: #ffffff;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 15px rgba(0,0,0,0.07), 0 4px 6px rgba(0,0,0,0.05);
  --radius: 8px;
  --radius-lg: 12px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--gray-800);
  line-height: 1.6;
  background: var(--white);
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-200);
  padding: 16px 0;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 700;
  color: var(--gray-900);
  text-decoration: none;
}

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

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

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

.nav a:hover { color: var(--gray-900); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}

.btn-primary {
  background: var(--blue-600);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--blue-700);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--gray-700);
  border: 1px solid var(--gray-300);
}

.btn-outline:hover {
  border-color: var(--gray-900);
  color: var(--gray-900);
}

.btn-lg {
  padding: 14px 28px;
  font-size: 16px;
}

/* Hero */
.hero {
  padding: 100px 0 80px;
  text-align: center;
  background: linear-gradient(180deg, var(--blue-50) 0%, var(--white) 100%);
}

.hero h1 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--gray-900);
  max-width: 700px;
  margin: 0 auto 24px;
}

.highlight {
  color: var(--blue-600);
}

.hero-sub {
  font-size: 18px;
  color: var(--gray-600);
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 24px;
}

.hero-note {
  font-size: 14px;
  color: var(--gray-500);
}

/* Products */
.products {
  padding: 80px 0;
}

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

.section-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.section-header p {
  font-size: 17px;
  color: var(--gray-500);
}

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

.product-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: all 0.3s;
}

.product-card:hover {
  border-color: var(--blue-300, #93c5fd);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.product-card-featured {
  border: 2px solid var(--blue-600);
  background: linear-gradient(180deg, var(--blue-50) 0%, var(--white) 100%);
}

.product-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--blue-600);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.product-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.product-card > p {
  font-size: 15px;
  color: var(--gray-600);
  margin-bottom: 20px;
  line-height: 1.6;
}

.product-includes {
  list-style: none;
  margin-bottom: 24px;
}

.product-includes li {
  font-size: 14px;
  color: var(--gray-600);
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
}

.product-includes li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--blue-600);
  font-weight: 700;
}

.product-price {
  font-size: 32px;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 4px;
}

.product-savings {
  font-size: 14px;
  color: #059669;
  font-weight: 600;
  margin-bottom: 16px;
}

.product-btn {
  width: 100%;
  padding: 14px;
  font-size: 16px;
}

/* Templates / Features */
.templates {
  padding: 80px 0;
  background: var(--gray-50);
}

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

.feature {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--gray-200);
}

.feature-icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.feature h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.feature p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
}

/* Trust */
.trust {
  padding: 80px 0;
  text-align: center;
}

.trust h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 48px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.trust-number {
  font-size: 56px;
  font-weight: 800;
  color: var(--blue-600);
  line-height: 1;
  margin-bottom: 8px;
}

.trust-item p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.5;
}

/* About */
.about {
  padding: 80px 0;
  background: var(--gray-50);
}

.about .container {
  max-width: 700px;
  text-align: center;
}

.about h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 24px;
}

.about p {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* Contact */
.contact {
  padding: 80px 0;
  text-align: center;
}

.contact h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.contact > .container > p {
  font-size: 17px;
  color: var(--gray-500);
  margin-bottom: 32px;
}

/* Footer */
.footer {
  padding: 60px 0 32px;
  background: var(--gray-900);
  color: var(--gray-400);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

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

.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.footer-legal {
  font-size: 13px !important;
  color: var(--gray-500) !important;
}

.footer-links h4 {
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links a {
  display: block;
  color: var(--gray-400);
  text-decoration: none;
  font-size: 14px;
  padding: 4px 0;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--white); }

.footer-disclaimer {
  font-size: 13px !important;
  line-height: 1.6 !important;
  color: var(--gray-500) !important;
}

/* Mobile */
@media (max-width: 768px) {
  .hero h1 { font-size: 32px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .product-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav { gap: 16px; }
  .nav a:not(.btn) { display: none; }
}
