/* ── Custom styles on top of Tailwind ── */

:root {
  --brand-blue: #1a73e8;
  --brand-blue-dark: #1557b0;
  --brand-green: #34a853;
  --brand-gray: #5f6368;
}

/* Smooth scrolling */
html { scroll-behavior: smooth; }

/* Hero gradient overlay */
.hero-gradient {
  background: linear-gradient(135deg, #1a73e8 0%, #0d47a1 100%);
}

/* Step number circles */
.step-number {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  background: #1a73e8;
  color: #fff;
  font-weight: 700;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Value prop icons */
.prop-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: #e8f0fe;
  color: #1a73e8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

/* CTA button hover */
.btn-cta {
  background: #fff;
  color: #1a73e8;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 1.1rem;
  transition: transform 0.15s, box-shadow 0.15s;
  display: inline-block;
  text-decoration: none;
}
.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}

.btn-cta-blue {
  background: #1a73e8;
  color: #fff;
}
.btn-cta-blue:hover {
  background: #1557b0;
}

/* Form styling */
.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.15s;
}
.form-input:focus {
  outline: none;
  border-color: #1a73e8;
  box-shadow: 0 0 0 3px rgba(26,115,232,0.1);
}

/* Social proof placeholder */
.proof-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.15);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.9);
}

/* Footer */
footer a {
  color: #9ca3af;
  text-decoration: none;
}
footer a:hover {
  color: #d1d5db;
}
