:root {
  --primary: #FC5C5A;
  --primary-hover: #E04E4D;
  --secondary: #008785;
  --accent-blue: #19A7E1;
  --accent-yellow: #F9B948;
  --bg-light: #F8FAFC;
  --bg-white: #FFFFFF;
  --bg-dark: #1A1A1A;
  --text-dark: #1A1A1A;
  --text-body: #475569;
  --text-muted: #64748B;
  --text-light: #F8FAFC;
  --border-color: #E2E8F0;
  --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-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --radius: 12px;
  --transition: all 0.3s ease;
}

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-body);
  background-color: var(--bg-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  color: var(--text-dark);
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

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

/* Typography */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
}

.section-subtitle {
  font-size: 1.125rem;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
  color: var(--text-muted);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-align: center;
}

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

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.btn-secondary:hover {
  border-color: var(--secondary);
  background-color: var(--bg-light);
  transform: translateY(-2px);
}

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

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--bg-white);
}

.btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid var(--border-color);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--secondary);
}

.logo img {
  height: 40px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-weight: 500;
  color: var(--text-dark);
}

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

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-dark);
}

/* Sections Base */
section {
  padding: 6rem 0;
}

section:nth-child(even) {
  background-color: var(--bg-light);
}

/* Hero Section */
.hero {
  max-width: 1536px; /* Constrain to match image max width */
  margin: 0 auto; /* Center the entire section on ultra-wide screens */
  padding: 6rem 0 2rem;
  background-color: white;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 85vh;
}

.hero .container {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
  font-weight: 800;
  line-height: 1.1;
}

.hero-title span {
  color: var(--primary);
}

.hero-subtitle {
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto 2.5rem;
}

.hero .btn-group {
  justify-content: center;
  margin-bottom: 4rem;
}

/* Two-Column Layout Additions */
.hero-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-text-content {
  flex: 0 0 50%;
  max-width: 550px;
  position: relative;
  z-index: 2;
}

.hero-image-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: url('assets/custom-hero-graphic.png') no-repeat right center;
  background-size: auto 100%;
  z-index: 0;
}

.hero-fade-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(to right, rgba(255,255,255,1) 35%, rgba(255,255,255,0.85) 45%, rgba(255,255,255,0) 70%);
  z-index: 1;
}

.hero-layout .hero-subtitle {
  margin: 0 0 2.5rem 0;
}

.hero-layout .hero-btn-group {
  justify-content: flex-start;
  margin-bottom: 1.5rem;
}

.hero-layout .hero-trust-line {
  text-align: left;
  margin-top: 0;
}

.hero-pretitle {
  display: block;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 1rem;
}

.btn-danger {
  background-color: #e11d48;
  color: white;
  border-color: #e11d48;
}

.btn-danger:hover {
  background-color: #be123c;
  border-color: #be123c;
  color: white;
}

.hero-trust-indicators {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

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

.trust-item i {
  color: #10b981;
}

.image-caption {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 1rem;
  font-style: italic;
}

@media (max-width: 992px) {
  .hero {
    min-height: auto;
  }
  
  .hero-layout {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-text-content {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 3rem;
  }
  
  .hero-image-bg {
    width: 100%;
    opacity: 0.3;
  }
  
  .hero-fade-overlay {
    width: 100%;
    background: linear-gradient(to bottom, rgba(255,255,255,1) 30%, rgba(255,255,255,0.8) 100%);
  }
  
  .hero-layout .hero-subtitle {
    margin: 0 auto 2.5rem;
  }
  
  .hero-layout .hero-btn-group {
    justify-content: center;
  }
  
  .hero-layout .hero-trust-line {
    text-align: center;
  }
}

.hero-image {
  max-width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  background: var(--bg-white);
  padding: 1rem;
}

.trust-line {
  margin-top: 2rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* The Problem Section */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.problem-text h2 {
  margin-bottom: 1rem;
  font-size: 2.5rem;
}

.problem-text p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.problem-list {
  display: grid;
  gap: 1rem;
}

.problem-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--bg-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.problem-list i {
  color: var(--primary);
  font-size: 1.25rem;
  margin-top: 0.25rem;
}

/* The Solution Section */
.solution {
  background-color: var(--secondary);
  color: var(--text-light);
  text-align: center;
}

.solution .section-title {
  color: var(--bg-white);
}

.solution .section-subtitle {
  color: #94A3B8;
}

.solution-highlights {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.solution-badge {
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255,255,255,0.2);
}

/* What's Included */
.included-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.included-card {
  background: var(--bg-white);
  padding: 3rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.included-card h3 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.included-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.included-list i {
  color: #10B981; /* Green check */
}

/* Results Section */
.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.result-card {
  background: var(--bg-white);
  padding: 2.5rem 2rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.result-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.result-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
}

.result-card:nth-child(1) .result-icon { color: var(--primary); background: rgba(252, 92, 90, 0.1); }
.result-card:nth-child(2) .result-icon { color: var(--accent-blue); background: rgba(25, 167, 225, 0.1); }
.result-card:nth-child(3) .result-icon { color: var(--accent-yellow); background: rgba(249, 185, 72, 0.1); }
.result-card:nth-child(4) .result-icon { color: var(--secondary); background: rgba(0, 135, 133, 0.1); }

.result-card h3 {
  font-size: 1.25rem;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 4rem;
  color: var(--bg-light);
  font-family: serif;
  line-height: 1;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  font-weight: 600;
  color: var(--secondary);
}

/* CTA Section */
.cta-section {
  text-align: center;
  background: var(--bg-white);
}

.cta-section .btn-group {
  justify-content: center;
  margin-top: 2rem;
}

/* Future Platform */
.future-platform {
  background-color: var(--bg-light);
  text-align: center;
}

.future-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.future-feature {
  flex: 1;
  min-width: 250px;
  max-width: 350px;
  padding: 2rem;
  background: var(--bg-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.future-feature i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

/* Comparison Table */
.comparison-wrapper {
  overflow-x: auto;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  table-layout: fixed;
}

/* Column widths: feature col wide, icon cols narrow & equal */
.comparison-table th:first-child,
.comparison-table td:first-child {
  width: 60%;
  text-align: left;
}

.comparison-table th:not(:first-child),
.comparison-table td:not(:first-child) {
  width: 20%;
  text-align: center;
}

.comparison-table th, .comparison-table td {
  padding: 1.1rem 1.5rem;
  border-bottom: 1px solid #f1f5f9;
  font-size: 0.95rem;
  vertical-align: middle;
}

/* Last row — no bottom border */
.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

/* Header */
.comparison-table thead th {
  background: #f8fafc;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #64748b;
  padding: 1rem 1.5rem;
  border-bottom: 2px solid #e2e8f0;
}

.comparison-table thead th:nth-child(2) {
  background: rgba(225,29,72,0.06);
  color: var(--primary);
}

/* Alternating row tint */
.comparison-table tbody tr:nth-child(even) td {
  background: #fafafa;
}

.comparison-table tbody tr:nth-child(even) td.highlight {
  background: rgba(225,29,72,0.05);
}

/* Icons */
.comparison-table td.check,
.comparison-table td.cross,
.comparison-table td.partial {
  text-align: center !important;
}

.comparison-table td:nth-child(2),
.comparison-table td:nth-child(3) {
  text-align: center !important;
}

.comparison-table td.check {
  color: #10b981;
  font-size: 1.25rem;
}

.comparison-table td.cross {
  color: #cbd5e1;
  font-size: 1.25rem;
}

.comparison-table td.partial {
  color: #f97316 !important;
  font-size: 1.25rem;
}

/* Life Ready column highlight */
.comparison-table .highlight {
  background-color: rgba(225,29,72,0.04);
}

/* Priority (first) row */
.comparison-table tr.priority-row td {
  background-color: #fefce8 !important;
  border-top: 2px solid #fcd34d;
  border-bottom: 2px solid #fcd34d;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.comparison-table tr.priority-row td.check {
  font-size: 1.5rem;
  color: #10b981;
}

.comparison-table tr.priority-row td.cross {
  font-size: 1.5rem;
  color: #cbd5e1;
}


/* About Creator */
.about-creator {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.creator-image {
  flex: 1;
  max-width: 400px;
}

.creator-image img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.creator-info {
  flex: 2;
}

.creator-info h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

/* Final CTA */
.final-cta {
  background-color: #006D6B !important; /* Slightly darker teal for better contrast */
  color: #FFFFFF !important;
  text-align: center;
  padding: 80px 0;
}

.final-cta h2, 
.final-cta .section-title {
  color: #FFFFFF !important;
}

.email-form {
  max-width: 500px;
  margin: 3rem auto;
  display: flex;
  gap: 0.5rem;
}

.email-form input {
  flex: 1;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
}

.email-form button {
  white-space: nowrap;
}

/* Footer */
footer {
  background-color: #111827; /* Darker, cleaner background */
  color: #94A3B8; /* Light gray text */
  padding: 4rem 0;
  text-align: center;
}

footer p {
  color: #F8FAFC !important; /* Ensure copyright text is bright and visible */
}

/* Blog specific styles */
.blog-header {
  padding: 10rem 0 4rem;
  text-align: center;
  background-color: var(--bg-light);
}

.blog-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  margin-top: 4rem;
}

.featured-post {
  background: var(--bg-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.featured-post:hover {
  box-shadow: var(--shadow-md);
}

.post-content {
  padding: 2.5rem;
}

.post-category {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  display: inline-block;
}

.post-title {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.post-excerpt {
  color: var(--text-body);
  margin-bottom: 2rem;
}

.sidebar h3 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--border-color);
}

.category-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.category-list a {
  display: flex;
  justify-content: space-between;
  color: var(--text-body);
}

.category-list a:hover {
  color: var(--primary);
}

/* Responsive */
@media (max-width: 992px) {
  .problem-grid, .included-grid, .about-creator, .blog-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: var(--bg-white);
    flex-direction: column;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid var(--border-color);
  }

  .nav-links.active {
    display: flex;
  }

  .mobile-menu-btn {
    display: block;
  }

  .email-form {
    flex-direction: column;
  }

  .btn-group {
    flex-direction: column;
  }
  
  .hero {
    padding-top: 8rem;
  }
}

/* Browser Mockup Style for Previews */
.browser-mockup {
  background: var(--bg-white);
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.browser-mockup:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.browser-header {
  background: var(--bg-light);
  padding: 10px 15px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  gap: 6px;
}

.browser-header .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.browser-header .dot.red { background-color: #ff5f56; }
.browser-header .dot.yellow { background-color: #ffbd2e; }
.browser-header .dot.green { background-color: #27c93f; }

.browser-mockup img, .browser-mockup video {
  width: 100%;
  height: auto;
  display: block;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}
