@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap');

:root {
  --color-primary: #2357e2;
  --color-primary-hover: #1a42b0;
  --color-accent: #4bdf53;
  --color-accent-hover: #3ecb45;
  --color-accent-text: #0f172a;
  --color-bg: #f9fafb;
  --color-surface: #ffffff;
  --color-border: #e2e8f0;
  --color-text-main: #0f172a;
  --color-text-muted: #64748b;
  --color-text-blue: #2357e2;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --radius-lg: 18px;
  --max-width: 1100px;
}

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

body {
  font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
  background-color: var(--color-bg);
  color: var(--color-text-main);
  line-height: 1.6;
  min-height: 100vh;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}

.main-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header */
.site-header {
  padding: 1.5rem 0;
  background: white;
  border-bottom: 1px solid var(--color-border);
}

.container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
}

.logo {
  max-width: 450px;
  width: 90%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Hero Section */
.hero-section {
  padding: 4rem 0;
  flex-grow: 1;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
}

/* Left Column Content */
.hero-content h1 {
  font-size: 2.75rem;
  font-weight: 900;
  line-height: 1.2;
  color: var(--color-text-blue);
  margin-bottom: 1.5rem;
}

.hero-content .subheadline {
  font-size: 1.25rem;
  color: var(--color-text-main);
  font-weight: 700;
  margin-bottom: 2rem;
}

.benefit-list {
  list-style: none;
  margin-bottom: 2.5rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text-main);
  text-align: left;
}

.benefit-item svg {
  flex-shrink: 0;
  color: var(--color-primary);
  width: 24px;
  height: 24px;
}

@media (max-width: 992px) {
  .hero-content h1 { font-size: 2.25rem; }
  .benefit-item { justify-content: center; }
}

/* Card Styles */
.card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--color-border);
}

.card-header {
  text-align: center;
  margin-bottom: 2rem;
}

.card-header h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-text-blue);
}

/* Form Styles */
.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--color-text-main);
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

.form-control {
  width: 100%;
  background: #fff;
  border: 2px solid #e2e8f0;
  color: var(--color-text-main);
  padding: 0.875rem 1.125rem;
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  font-weight: 500;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(35, 87, 226, 0.15);
}

.form-control::placeholder {
  color: #cbd5e1;
}

/* Checkbox */
.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.checkbox-input {
  appearance: none;
  width: 22px;
  height: 22px;
  border: 2px solid #cbd5e1;
  border-radius: 6px;
  background: white;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  margin-top: 0.1rem;
  transition: var(--transition);
}

.checkbox-input:checked {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

.checkbox-input:checked::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg);
}

.checkbox-label {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  cursor: pointer;
  font-weight: 500;
}

/* Buttons */
.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 1.125rem 2rem;
  border-radius: 12px;
  font-weight: 800;
  font-size: 1.125rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-primary {
  background-color: var(--color-accent);
  color: var(--color-accent-text);
  box-shadow: 0 4px 14px 0 rgba(75, 223, 83, 0.39);
}

.btn-primary:hover {
  background-color: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(75, 223, 83, 0.45);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
}

.btn-outline:hover {
  background: rgba(35, 87, 226, 0.05);
}

.microcopy {
  display: block;
  text-align: center;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: 0.75rem;
  font-weight: 600;
}

.trust-note {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  text-align: center;
  margin-top: 1.5rem;
}

/* Thank You Specific */
.confirmation-card {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.success-badge {
  width: 80px;
  height: 80px;
  background: rgba(75, 223, 83, 0.1);
  color: var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 40px;
  border: 2px solid var(--color-accent);
}

.success-title {
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--color-text-blue);
  margin-bottom: 1rem;
}

.success-subtitle {
  font-size: 1.125rem;
  color: var(--color-text-main);
  font-weight: 600;
  margin-bottom: 2rem;
}

.calendar-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.next-steps-box {
  background: #f8fafc;
  border-radius: 14px;
  padding: 2rem;
  text-align: left;
  border: 1px solid var(--color-border);
}

.next-steps-box h3 {
  font-size: 1.125rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  color: var(--color-text-main);
}

.step-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  font-weight: 600;
}

.step-number {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--color-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

.commitment-banner {
  margin-top: 2rem;
  padding: 1.25rem;
  background: rgba(35, 87, 226, 0.05);
  border: 1px solid rgba(35, 87, 226, 0.1);
  border-radius: 12px;
  font-size: 0.9rem;
  color: var(--color-primary);
  font-weight: 700;
  line-height: 1.4;
}

/* Utils */
.blue-strip {
  height: 8px;
  background: var(--color-primary);
  width: 100%;
}

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
  animation: fadeInUp 0.5s ease-out forwards;
}

/* Loading State */
.btn-loading {
  position: relative;
  color: transparent !important;
  pointer-events: none;
}
.btn-loading::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  border: 3px solid rgba(15, 23, 42, 0.2);
  border-radius: 50%;
  border-top-color: var(--color-accent-text);
  animation: spinner 0.8s linear infinite;
}
@keyframes spinner {
  to { transform: rotate(360deg); }
}
