/* Base styles */
:root {
  --primary-color: #2563eb;
  --primary-dark: #1d4ed8;
  --secondary-color: #0f172a;
  --accent-color: #f59e0b;
  --text-color: #334155;
  --light-text: #64748b;
  --background-light: #f8fafc;
  --background-white: #ffffff;
  --border-color: #e2e8f0;
  --success-color: #10b981;
  --warning-color: #f59e0b;
  --error-color: #ef4444;
  --border-radius: 8px;
  --box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --transition: all 0.3s ease;
}

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

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans",
    "Helvetica Neue", sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  font-size: 16px;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--secondary-color);
  margin-bottom: 1rem;
  line-height: 1.3;
}

h1 {
  font-size: 3rem;
  font-weight: 800;
}

h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.75rem;
  font-weight: 600;
}

h4 {
  font-size: 1.25rem;
  font-weight: 600;
}

p {
  margin-bottom: 1rem;
}

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

a:hover {
  color: var(--primary-dark);
}

ul,
ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

li {
  margin-bottom: 0.5rem;
}

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

section {
  padding: 5rem 0;
}

.section-intro {
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
}

.two-columns {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}

.column {
  flex: 1;
}

@media (max-width: 768px) {
  .two-columns {
    flex-direction: column;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  section {
    padding: 3rem 0;
  }
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

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

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

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

/* Header & Navigation */
.hero {
  background-color: var(--background-light);
  padding: 2rem 0 5rem;
  position: relative;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4rem;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.hero-cta {
  margin-top: 2rem;
}

/* Testimonial Strip */
.testimonial-strip {
  background-color: var(--primary-color);
  color: white;
  padding: 3rem 0;
}

.testimonial-strip blockquote {
  font-size: 1.5rem;
  font-style: italic;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-strip cite {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  font-weight: 600;
}

/* Problem Section */
.problem {
  background-color: var(--background-white);
}

/* Solution Section */
.solution {
  background-color: var(--background-light);
}

.solution-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.feature {
  background-color: var(--background-white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  text-align: center;
}

.feature img {
  margin-bottom: 1rem;
}

.solution-details {
  margin-bottom: 3rem;
}

.features-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5rem;
}

.features-table th,
.features-table td {
  padding: 1rem;
  border: 1px solid var(--border-color);
  text-align: left;
}

.features-table th {
  background-color: var(--background-light);
  font-weight: 600;
}

/* Benefits Section */
.benefits {
  background-color: var(--background-white);
}

.benefits-highlight {
  background-color: var(--background-light);
  padding: 2rem;
  border-radius: var(--border-radius);
  margin-top: 3rem;
}

/* CTA Box */
.cta-box {
  background-color: var(--secondary-color);
  color: white;
  padding: 3rem;
  border-radius: var(--border-radius);
  text-align: center;
  margin-top: 3rem;
}

.cta-box h3 {
  color: white;
}

.cta-box p {
  margin-bottom: 1.5rem;
}

/* Case Studies */
.case-studies {
  background-color: var(--background-light);
}

.case-study {
  background-color: var(--background-white);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 2rem;
  margin-bottom: 2rem;
}

.case-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.case-header img {
  border-radius: 50%;
}

.case-client {
  color: var(--light-text);
}

.case-results {
  display: flex;
  justify-content: space-around;
  margin-top: 1.5rem;
  text-align: center;
}

.result .number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
}

.result .label {
  color: var(--light-text);
}

/* Process Section */
.process {
  background-color: var(--background-white);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.step {
  position: relative;
  padding: 2rem;
  background-color: var(--background-light);
  border-radius: var(--border-radius);
}

.step-number {
  position: absolute;
  top: -20px;
  left: 20px;
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.timeline {
  display: flex;
  justify-content: space-between;
  margin-top: 3rem;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--border-color);
  z-index: 1;
}

.timeline-item {
  position: relative;
  z-index: 2;
  background-color: var(--background-white);
  padding: 0 10px;
  text-align: center;
}

.timeline-item h4 {
  margin-bottom: 0.5rem;
}

.timeline-item p {
  color: var(--light-text);
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .timeline {
    flex-direction: column;
    gap: 1rem;
  }

  .timeline::before {
    display: none;
  }
}

/* Pricing Section */
.pricing {
  background-color: var(--background-light);
}

.pricing-card {
  background-color: var(--background-white);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  overflow: hidden;
  max-width: 600px;
  margin: 0 auto;
}

.pricing-header {
  background-color: var(--secondary-color);
  color: white;
  padding: 2rem;
  text-align: center;
}

.pricing-header h3 {
  color: white;
  margin-bottom: 0.5rem;
}

.price {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.price span {
  font-size: 1.25rem;
  font-weight: 400;
}

.billing {
  font-size: 0.9rem;
  opacity: 0.8;
}

.pricing-features {
  padding: 2rem;
}

.pricing-features ul {
  list-style-type: none;
  padding: 0;
}

.pricing-features li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-color);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-cta {
  padding: 0 2rem 2rem;
  text-align: center;
}

.pricing-addons {
  margin-top: 3rem;
}

.pricing-guarantee {
  margin-top: 3rem;
  background-color: var(--background-white);
  padding: 2rem;
  border-radius: var(--border-radius);
  border-left: 4px solid var(--success-color);
}

/* FAQ Section */
.faq {
  background-color: var(--background-white);
}

.faq-item {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
  border-bottom: none;
}

/* About Section */
.about {
  background-color: var(--background-light);
}

.values {
  margin-top: 3rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 1.5rem;
}

.value {
  background-color: var(--background-white);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

/* Final CTA Section */
.final-cta {
  background-color: var(--primary-color);
  color: white;
  text-align: center;
}

.final-cta h2 {
  color: white;
}

.final-benefits {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin: 3rem 0;
}

.benefit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.benefit p {
  margin-bottom: 0;
}

.guarantee-badge {
  margin: 2rem 0;
}

.final-cta-button {
  margin-top: 2rem;
}

.no-obligation {
  margin-top: 1rem;
  font-size: 0.9rem;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .final-benefits {
    flex-direction: column;
    gap: 1.5rem;
  }
}

/* Footer */
footer {
  background-color: var(--secondary-color);
  color: white;
  padding: 4rem 0 2rem;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-column h4 {
  color: white;
  margin-bottom: 1.5rem;
}

.footer-column ul {
  list-style-type: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 0.75rem;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.8);
}

.footer-column a:hover {
  color: white;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}
