:root {
  /* Brand Colors */
  --primary: #4a148c; /* Deep Purple */
  --primary-light: #7c43bd;
  --primary-dark: #12005e;
  --accent: #ffb300; /* Amber for urgency highlights */
  
  /* Neutral Colors */
  --bg-color: #ffffff;
  --bg-secondary: #f8f9fa;
  --text-main: #1e1e24; /* Dark charcoal */
  --text-light: #5f6368;
  --border-color: #e0e0e0;

  /* Typography */
  --font-family: 'Inter', system-ui, -apple-system, sans-serif;
  
  /* Additional values */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 24px rgba(74, 20, 140, 0.15);
  --radius: 8px;
  --transition: all 0.3s ease;
}

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

body {
  font-family: var(--font-family);
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

/* Typography */
h1, h2, h3, h4 {
  color: var(--text-main);
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 1.5rem;
}

h1 .highlight {
  color: var(--primary);
}

h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 2rem;
  text-align: center;
}

p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.lead-text {
  font-size: clamp(1.125rem, 2vw, 1.35rem);
  color: var(--text-light);
  margin-bottom: 2.5rem;
}

/* Buttons */
.btn {
  display: inline-block;
  background-color: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: 1.125rem;
  text-align: center;
  padding: 1rem 2rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(74, 20, 140, 0.2);
  width: 100%;
}

@media (min-width: 768px) {
  .btn {
    width: auto;
    padding: 1.25rem 3rem;
    font-size: 1.25rem;
  }
}

.btn:hover {
  background-color: var(--primary-light);
  box-shadow: 0 6px 12px rgba(74, 20, 140, 0.3);
  transform: translateY(-2px);
}

.btn-large {
  width: 100%;
}

/* Sections */
section {
  padding: 5rem 0;
}

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

/* Hero Section */
.hero {
  padding: 6rem 0 5rem;
  text-align: center;
  background: linear-gradient(to bottom, #f3f0f9 0%, #ffffff 100%);
}

.hero .container {
  max-width: 800px;
}

/* Trust / Authority Section */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  padding: 2rem 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  margin-top: 3rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-light);
}

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

/* Value Stack */
.value-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .value-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.value-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 2rem;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.value-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
  transform: translateY(-5px);
}

.value-icon {
  background-color: rgba(74, 20, 140, 0.1);
  padding: 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--primary);
}

.value-content h3 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.value-content p {
  font-size: 1rem;
  margin-bottom: 0;
  color: var(--text-light);
}

/* Deals Section */
.deals-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .deals-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.deal-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.deal-image {
  position: relative;
  height: 250px;
  width: 100%;
}

.deal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.deal-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: var(--primary);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.deal-content {
  padding: 2rem;
}

.deal-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.metric {
  display: flex;
  flex-direction: column;
}

.metric-label {
  font-size: 0.85rem;
  color: var(--text-light);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.metric-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-main);
}

.deal-analysis p {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 0;
}

.deals-cta {
  text-align: center;
  margin-top: 3rem;
}

/* Form Section */
.form-section {
  background-color: var(--primary-dark);
  color: #fff;
  text-align: center;
}

.form-section h2 {
  color: #fff;
}

.form-wrapper {
  background: #fff;
  max-width: 600px;
  margin: 0 auto;
  padding: 3rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  color: var(--text-main);
  text-align: left;
}

.urgency-banner {
  background-color: rgba(255, 179, 0, 0.15);
  border-left: 4px solid var(--accent);
  padding: 1rem 1.5rem;
  margin-bottom: 2rem;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.urgency-banner svg {
  width: 24px;
  height: 24px;
  fill: var(--accent);
  flex-shrink: 0;
}

.urgency-banner p {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: #a47200;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 600px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select {
  width: 100%;
  padding: 1rem;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-size: 1rem;
  font-family: var(--font-family);
  transition: var(--transition);
  background-color: var(--bg-secondary);
}

input:focus,
select:focus {
  outline: none;
  border-color: var(--primary);
  background-color: #fff;
  box-shadow: 0 0 0 3px rgba(74, 20, 140, 0.1);
}

select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%231e1e24' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}

.checkbox-wrap {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

.checkbox-wrap input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 0.2rem;
  accent-color: var(--primary);
}

.checkbox-wrap label {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 400;
  margin-bottom: 0;
}

/* Footer */
footer {
  background-color: var(--text-main);
  color: #fff;
  padding: 3rem 0;
  text-align: center;
}

footer p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.footer-links a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.85rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: #fff;
}

/* Thank You Page Specific */
.thank-you-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 3rem 1rem;
  text-align: center;
  background-color: var(--bg-secondary);
}

.success-icon {
  width: 80px;
  height: 80px;
  background-color: rgba(76, 175, 80, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

.success-icon svg {
  width: 40px;
  height: 40px;
  fill: #4caf50;
}

.next-steps {
  background: #fff;
  padding: 2.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  max-width: 600px;
  margin: 2rem auto;
  border-top: 4px solid var(--primary);
  text-align: left;
}

.step {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.step-number {
  background-color: var(--primary);
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
}

.step-content p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 0;
}

.direct-contact {
  margin-top: 3rem;
  padding: 2rem;
  background-color: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
}

/* Animations */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}
