:root {
    --primary-color: #2E7D32;
    --primary-dark: #1B5E20;
    --secondary-color: #1565C0;
    --accent-color: #FF5722;
    --text-dark: #1A1A1A;
    --text-light: #666666;
    --white: #FFFFFF;
    --gray-100: #F8F9FA;
    --gray-200: #E9ECEF;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --container-width: 1200px;
    --header-height: 70px;
}

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

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}


#footer {
    background-color: #fff;
    color: black;
    text-align: center;
    padding: 15px;
    position: relative;
    bottom: 0;
    width: 100%;
}

footer div {
    font-size: 1rem;
    display: flex;
    justify-content: center; /* Center the content in the header */
    align-items: center;     
}

footer div a {
   color: var(--accent-color);
}

/* Mobile Menu */
.hamburger-icon {
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
    color: black;
    font-size: 1.8rem;
    display: none;
  }
  
  /* Tippy.js Dropdown Menu */
  .tippy-box {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    color: #333;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 2000 !important; /* Higher than the webpage */
  }
  
  .tippy-box[data-theme~='menu'] {
    padding: 10px;
    min-width: 150px;
  }
  
  .tippy-box[data-theme~='menu'] ul {
    list-style: none;
  }
  
  .tippy-box[data-theme~='menu'] ul li {
    padding: 10px 15px;
    cursor: pointer;
    transition: background-color 0.2s ease;
  }
  
  .tippy-box[data-theme~='menu'] ul li:hover {
    background-color: #f4f4f4;
  }
  
  /*
      Tippy Tool Tips
  */
  .tippy-box[data-theme~='light'] {
    background-color: #333;
    color: #fff;
    border: 1px solid #ccc;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;    
    text-align: left;
    white-space: normal; /* Ensure text wraps */
  }
  
  .tippy-arrow {
    color: #333;
  }
  
  
  /*
  To style the menu and align icons properly:
  */
  .menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .menu-list li {
      margin: 10px 0;
      display: flex;
      align-items: center;
  }
  
  .menu-list a {
      text-decoration: none;
      color: #333;
      font-family: 'Roboto', sans-serif;
      font-size: 1rem;
      display: flex;
      align-items: center;
      gap: 8px;
  }
  
  .menu-list a:hover {
      color: #605d5d; /* Highlight color */
  }
  
  .menu-icon {
      font-size: 1.2rem;
      color: #333; /* Icon color */
  }

/* Logo Styles */
.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.logo-wrapper:hover {
    cursor: pointer;
}

.logo-image {
    width: 32px;  /* Adjust based on your logo's dimensions */
    height: 32px;  /* Adjust based on your logo's dimensions */
    object-fit: contain;  /* Preserves logo aspect ratio */
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .logo-wrapper {
        gap: 0.5rem;
    }

    .logo-image {
        width: 28px;
        height: 28px;
    }

    .logo-text {
        font-size: 1.25rem;
    }

    .hamburger-icon {
        display: block;
    }    
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

/* Hero Section Styles */
.hero {
    padding: 5rem 0;
    background: linear-gradient(135deg, #2E7D32, #1565C0);
    color: var(--white);
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: var(--max-width);
    margin: 0 auto;
}

.hero-content {
    max-width: 600px;
}

.hero h1 {
    font-size: clamp(2.5rem, 4vw, 4rem);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-tagline {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    opacity: 0.9;
    margin-bottom: 2rem;
}

.hero-metrics {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.metric {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.metric i {
    color: white;
}

/* Cover Showcase Styles */
.hero-image {
    width: 400px;
    height: 600px;
    position: relative;
    margin-left: auto;
}

.cover-showcase {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Status Indicator Styles */
.cover-status {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.status-indicator.active {
    color: white;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}

.status-indicator.active .status-dot {
    background: white;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Cover Container Styles */
.cover-container {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.cover-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    transition: opacity 0.5s ease-in-out;
}

.cover-wrapper.before {
    opacity: 1;
}

.cover-wrapper.after {
    opacity: 0;
}

.cover-label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 500;
    z-index: 2;
}

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

/* Improvement Metrics Styles */
.improvement-metrics {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: var(--accent-color);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    color: white;
    z-index: 2;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.3s ease;
}

.improvement-metrics.show {
    transform: translateY(0);
    opacity: 1;
}

.metric-item {
    text-align: center;
}

.metric-value {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
}

.metric-label {
    font-size: 0.75rem;
    opacity: 0.9;
}

/* Animation Styles */
@keyframes coverTransform {
    0%, 45% {
        opacity: 1;
    }
    50%, 95% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.cover-wrapper.before {
    animation: coverTransform 10s infinite;
}

.cover-wrapper.after {
    animation: coverTransform 10s infinite reverse;
}


/* Animation for sequential fade */
@keyframes fadeSequence {
    0% { opacity: 1; }
    20% { opacity: 1; }
    25% { opacity: 0; }
    95% { opacity: 0; }
    100% { opacity: 1; }
}
.image-wrapper {
    margin: 0 auto;
}

.image-wrapper img {
    position: absolute; /* Ensure images are stacked */
    top: 0;
    left: 0;
    /* width: 100%; */ /* Adjust to your desired size */
    height: auto;
    opacity: 0; /* Start hidden */
    animation: fadeSequence 25s infinite; /* Adjust duration as needed */
}

/* Stagger animations for each image */
.image-wrapper img:nth-child(1) {
    animation-delay: 0s;
}

.image-wrapper img:nth-child(2) {
    animation-delay: 5s;
}

.image-wrapper img:nth-child(3) {
    animation-delay: 10s;
}

.image-wrapper img:nth-child(4) {
    animation-delay: 15s;
}

.image-wrapper img:nth-child(5) {
    animation-delay: 20s;
}


/* Status Indicator Animation */
@keyframes statusChange {
    0%, 45% {
        color: white;
    }
    50%, 95% {
        color: rgba(255, 255, 255, 0.7);
    }
    100% {
        color: white;
    }
}

.status-indicator.before {
    animation: statusChange 6s infinite;
}

.status-indicator.after {
    animation: statusChange 6s infinite reverse;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    padding: 0.875rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

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

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

.btn-primary:hover {
    background: #f4511e;
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Features Section */
.quick-features {
    background: var(--white);
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.quick-features .container {
    display: flex;
    justify-content: center;
    gap: 5rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature i {
    color: var(--primary-color);
}

/* Feature Cards */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.feature-metric {
    margin-top: 1.5rem;
    padding: 0.75rem;
    background: var(--gray-100);
    border-radius: 6px;
    font-size: 0.875rem;
    color: var(--text-light);
}

.feature-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: transform 0.3s ease;
}

.feature-link:hover {
    transform: translateX(5px);
}

/* How It Works Section Styles */
.how-it-works {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

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

.step-card {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
}

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

.step-number {
    width: 32px;
    height: 32px;
    background: #007bff;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step-header h3 {
    margin: 0;
    font-size: 1.25rem;
    color: #333;
}

.step-content {
    padding-left: calc(32px + 1rem); /* Aligns with the heading */
}

.step-content p {
    margin: 0 0 1rem 0;
    color: #666;
    line-height: 1.5;
}

.step-tip {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #666;
    background: #f8f9fa;
    padding: 0.75rem;
    border-radius: 6px;
}

.step-tip i {
    color: #ffd700;
    margin-top: 2px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .step-card {
        padding: 1.25rem;
    }
    
    .step-content {
        padding-left: 0;
        margin-top: 1rem;
    }
}

/* Animation for step cards */
.step-card {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.step-card:nth-child(1) { animation-delay: 0.1s; }
.step-card:nth-child(2) { animation-delay: 0.2s; }
.step-card:nth-child(3) { animation-delay: 0.3s; }
.step-card:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Value Proposition Section Styles */
.value-proposition {
    padding: 3rem 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.proposition-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

.proposition-text h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.lead-text {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.proposition-text p {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.6;
}

.key-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    background: var(--gray-100);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.metric {
    text-align: center;
    padding: 1rem;
}

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

.metric-label {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.4;
}

/* Decorative elements */
.value-proposition::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--primary-color), 
        var(--secondary-color), 
        var(--primary-color));
    opacity: 0.2;
}

/* Responsive Design */
@media (max-width: 768px) {
    .value-proposition {
        padding: 3rem 0;
    }

    .key-metrics {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .metric {
        padding: 0.5rem;
    }

    .proposition-text {
        text-align: left;
    }
}

/* Animations */
.proposition-text {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.key-metrics {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.2s;
}

.metric {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.metric:nth-child(1) { animation-delay: 0.4s; }
.metric:nth-child(2) { animation-delay: 0.6s; }
.metric:nth-child(3) { animation-delay: 0.8s; }

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

/* Psychology Section Styles */
.cover-psychology {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.psychology-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.psychology-content h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: white;
    margin-bottom: 1.5rem;
}

.lead-text {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    color: white;
    margin-bottom: 3rem;
}

.psychology-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.point-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.point-card:hover {
    transform: translateY(-5px);
}

.point-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1.5rem;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.point-card h3 {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

/* CTA Transform Section */
.cta-transform {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-message {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    margin-bottom: 3rem;
    opacity: 0.9;
}

/* Benefits List */
.cta-benefits {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.benefit-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.benefit-item span {
    font-size: 1.125rem;
    font-weight: 500;
}

/* CTA Actions */
.cta-actions {
    margin-top: 3rem;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.25rem;
}

.action-subtext {
    margin-top: 1rem;
    font-size: 0.875rem;
    opacity: 0.8;
}

/* Background Elements */
.cta-transform::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
}

/* Button Hover Animation */
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .cta-transform {
        padding: 4rem 1rem;
    }

    .cta-benefits {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }

    .benefit-item {
        justify-content: center;
    }

    .btn-large {
        width: 100%;
        max-width: 300px;
    }
}

/* Entrance Animations */
.cta-content {
    animation: fadeInUp 0.8s ease-out;
}

.benefit-item {
    opacity: 0;
    animation: fadeInRight 0.6s ease-out forwards;
}

.benefit-item:nth-child(1) { animation-delay: 0.2s; }
.benefit-item:nth-child(2) { animation-delay: 0.4s; }
.benefit-item:nth-child(3) { animation-delay: 0.6s; }

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Color demonstration */
.color-demo {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.color-dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.color-dot:hover {
    transform: scale(1.2);
}

/* Font demonstration */
.font-demo {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.font-example {
    font-size: 1.125rem;
    color: #000;
}

.font-example.serif {
    font-family: Georgia, serif;
}

.font-example.sans {
    font-family: 'Roboto', sans-serif;
}

.font-example.display {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

/* Image demonstration */
.image-demo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--text-light);
    font-size: 2rem;
}

.psychology-footer {
    max-width: 700px;
    margin: 3rem auto 0;
    text-align: center;
}

.psychology-footer p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .psychology-points {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .psychology-points {
        grid-template-columns: 1fr;
    }

    .point-card {
        padding: 1.5rem;
    }

    .psychology-footer {
        padding: 0 1.5rem;
    }
}

/* Animations */
.point-card {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.point-card:nth-child(1) { animation-delay: 0.1s; }
.point-card:nth-child(2) { animation-delay: 0.2s; }
.point-card:nth-child(3) { animation-delay: 0.3s; }

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

.testimonial-card {
    background: var(--white);
    padding: 0.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

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

.author-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
}

.success-metric {
    text-align: center;
}

.metric-value {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

/* Why Authors Love Section Styles */
.why-authors-love {
    padding: 2rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    overflow: hidden;
}

.authors-love {
    color: white;
}

.why-authors-love::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0.3;
}

/* Benefits Grid - 2x2 Layout */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Force 2 columns */
    gap: 2rem;
    margin-top: 1rem;
    max-width: var(--max-width);
    margin-left: auto;
    margin-right: auto;
}

.benefit-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    gap: 1.5rem;
    height: 100%; /* Ensure equal height */
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.benefit-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.benefit-content {
    flex-grow: 2;
}

/* Ensure content alignment */
.benefit-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.benefit-content h3 {
    margin-bottom: 1rem;
}

.benefit-content p {
    margin-bottom: 1.5rem;
}

/* Optional: Add numbered indicators */
/*
.benefit-card::before {
    content: counter(benefit);
    counter-increment: benefit;
    position: absolute;
    top: -1rem;
    right: -1rem;
    width: 2.5rem;
    height: 2.5rem;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}
    */

.benefit-metric {
    background: var(--gray-100);
    padding: 0.75rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
}

.metric-number {
    margin: 0;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.125rem;
}

.metric-label {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* Animation Enhancements */
.slide-up {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.6s ease forwards;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-content {
        margin: 0 auto;
    }

    .hero-metrics {
        justify-content: center;
    }

    .hero-image {
        width: 300px;
        height: 420px;
        margin: 0 auto;
    }

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


/* Mobile Responsiveness */
@media (max-width: 992px) {
    .benefits-grid {
        grid-template-columns: 1fr; /* Stack on mobile */
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .benefit-card {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
}

/* Medium screens */
@media (min-width: 768px) and (max-width: 1200px) {
    .benefits-grid {
        padding: 0 2rem;
    }
    
    .benefit-card {
        padding: 1.5rem;
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .benefit-card {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .benefit-icon {
        margin-bottom: 1rem;
    }
    
    .benefit-metric {
        width: 100%;
        justify-content: center;
    }

    .step-cards {
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .step-card {
        scroll-snap-align: center;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }
    
    .hero {
        padding: 5rem 0;
    }

    .hero-image {
        width: 250px;
        height: 420px;
    }

    .hero-metrics {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }
    
    .quick-features .container {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    /* Mobile Navigation */
    .mobile-menu-btn {
        display: block;
        width: 30px;
        height: 20px;
        position: relative;
        cursor: pointer;
        z-index: 1000;
    }

    .mobile-menu-btn span,
    .mobile-menu-btn span::before,
    .mobile-menu-btn span::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 2px;
        background: var(--text-dark);
        transition: all 0.3s ease;
    }

    .mobile-menu-btn span {
        top: 50%;
        transform: translateY(-50%);
    }

    .mobile-menu-btn span::before { top: -8px; }
    .mobile-menu-btn span::after { bottom: -8px; }

    .mobile-menu-btn.active span {
        background: transparent;
    }

    .mobile-menu-btn.active span::before {
        transform: rotate(45deg);
        top: 0;
    }

    .mobile-menu-btn.active span::after {
        transform: rotate(-45deg);
        bottom: 0;
    }

    .nav-links {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: var(--white);
        padding: 2rem;
        flex-direction: column;
        align-items: center;
        transform: translateX(100%);
        transition: transform 0.3s ease;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .testimonials {
        margin-top: 1rem;
    }

    /* Mobile Testimonials */
    .testimonials-grid, .psychology-points, .steps-grid, .benefits-grid, .features-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 1rem;
        padding: 1rem;
        -webkit-overflow-scrolling: touch;
    }

    .testimonial-card, .point-card, .step-card, .benefit-card, .feature-card {
        flex: 0 0 300px;
        scroll-snap-align: center;
    }

    /* Mobile Steps */
    .steps-container {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
    }

    .step-card {
        scroll-snap-align: center;
        min-width: 280px;
    }

    /* Mobile CTAs */
    .hero-ctas {
        flex-direction: column;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
}

/* High-contrast mode support */
@media (prefers-contrast: high) {
    .benefit-card {
        border: 2px solid var(--primary-color);
    }
    
    .benefit-metric {
        border: 1px solid var(--text-light);
    }
}


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

@keyframes slideIn {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

@keyframes scaleIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.fade-in {
    opacity: 0;
    animation: fadeIn 0.6s ease forwards;
}

.slide-up {
    opacity: 0;
    animation: fadeIn 0.6s ease forwards;
}

.scale-in {
    opacity: 0;
    animation: scaleIn 0.6s ease forwards;
}

[data-delay] {
    animation-delay: var(--delay);
}

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

/* Loading States */
.loading {
    position: relative;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.2),
        transparent
    );
    animation: loading 1.5s infinite;
}

@keyframes loading {
    from { transform: translateX(-100%); }
    to { transform: translateX(100%); }
}






/* Examples Section Styles */
.examples {

    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    position: relative;
    overflow: hidden;   
}

.examples .lead-text {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.6;
}

.examples h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-align: center;
}


.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.example-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 25px;
}

.example-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.example-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.example-header h3 {
    margin: 0;
    font-size: 1.4rem;
    color: #333;
}

.success-metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #f0f8ff;
    padding: 8px 15px;
    border-radius: 5px;
}

.metric-value {
    font-weight: bold;
    font-size: 1.2rem;
    color: #0066cc;
}

.metric-label {
    font-size: 0.8rem;
    color: #666;
}

.example-covers {
    margin-bottom: 20px;
}

.cover-comparison {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.cover {
    position: relative;
    width: 120px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}

.cover img {
    width: 100%;
    height: auto;
    display: block;
}

.cover-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.6);
    color: white;
    text-align: center;
    padding: 5px;
    font-size: 0.8rem;
}

.comparison-arrow {
    color: #0066cc;
    font-size: 1.5rem;
}

.example-insights {
    margin-bottom: 20px;
}

.example-insights h4 {
    margin: 0 0 10px;
    font-size: 1.1rem;
    color: #444;
}

.example-insights ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.example-insights li {
    color: black;
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.example-insights li i {
    color: #4CAF50;
    margin-right: 8px;
}

.testimonial-quote {
    font-style: italic;
    color: #666;
    font-size: 0.9rem;
    border-left: 3px solid #0066cc;
    padding-left: 15px;
    margin: 0;
}

.examples-cta {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 8px;
}

.examples-cta h3 {
    margin: 0 0 20px;
    font-size: 1.5rem;
    color: black;
}

/* Pricing Section Styles */
.pricing {
    padding: 80px 0;
    background: #fff; 
}

.pricing-h2 {
    margin: 0;
    font-size: 2rem;
    color: black;
    text-align: center;
}

.pricing .lead-text {
    max-width: 700px;
    margin: 0 auto 50px;
    text-align: center;
    font-size: 1.2rem;
    color: black;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.pricing-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    position: relative;
    border: 1px solid #eee;
}

.pricing-card.highlighted {
    transform: scale(1.05);
    border-color: #0066cc;
    z-index: 1;
}

.pricing-card.highlighted:hover {
    transform: scale(1.07);
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.popular-tag {
    position: absolute;
    top: 15px;
    right: -30px;
    background: #ff6b6b;
    color: white;
    padding: 5px 30px;
    font-size: 0.8rem;
    transform: rotate(45deg);
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.pricing-header {
    text-align: center;
    padding: 30px 20px;
    background: #f9f9f9;
    border-bottom: 1px solid #eee;
}

.pricing-card.highlighted .pricing-header {
    background: #f0f8ff;
    border-bottom: 1px solid #0066cc;
}

.pricing-header h3 {
    margin: 0 0 15px;
    font-size: 1.5rem;
    color: #333;
}

.price {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0066cc;
}

.period {
    font-size: 0.9rem;
    color: #666;
}

.pricing-features {
    padding: 30px 25px;
}

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

.pricing-features li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.pricing-features li i {
    color: #4CAF50;
    margin-right: 10px;
    min-width: 20px;
}

.pricing-footer {
    text-align: center;
    padding: 20px 25px 30px;
}

.btn-block {
    display: block;
    width: 100%;
    padding: 12px;
    font-size: 1rem;
}

.perfect-for {
    margin: 15px 0 0;
    font-size: 0.85rem;
    color: #666;
}

.pricing-faq {
    max-width: 900px;
    margin: 0 auto 60px;
}

.pricing-faq h3 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.6rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 25px;
}

.faq-item {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
}

.faq-item h4 {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    margin: 0 0 10px;
    color: #333;
}

.faq-item h4 i {
    margin-right: 10px;
    color: #0066cc;
}

.faq-item p {
    margin: 0;
    font-size: 0.95rem;
    color: #555;
}

.pricing-guarantee {
    display: flex;
    align-items: center;
    background: #f0f8ff;
    border-radius: 8px;
    padding: 25px;
    max-width: 900px;
    margin: 0 auto;
}

.guarantee-icon {
    font-size: 2.5rem;
    color: #0066cc;
    margin-right: 25px;
}

.guarantee-content h3 {
    margin: 0 0 10px;
    font-size: 1.3rem;
}

.guarantee-content p {
    margin: 0;
    font-size: 0.95rem;
    color: #444;
}

/* Media queries */
@media (max-width: 768px) {
    .pricing-grid, .examples-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.highlighted {
        transform: scale(1);
    }
    
    .pricing-card.highlighted:hover {
        transform: translateY(-5px);
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-guarantee {
        flex-direction: column;
        text-align: center;
    }
    
    .guarantee-icon {
        margin: 0 0 15px;
    }
}