/* Base Styles */
:root {
    --primary-color: #3AA278;
    --secondary-color: #F5D547;
    --accent-color: #E5F4EC;
    --text-color: #2D2D2D;
    --light-gray: #f8f8f8;
    --gray: #e0e0e0;
    --dark-gray: #666;
    --beige: #BE9B7B;
    --error-color: #E74C3C;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 8px;
    --container-width: 1200px;
    --header-height: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
}

h3 {
    font-size: 1.75rem;
    font-weight: 600;
}

h4 {
    font-size: 1.3rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    width: 60%;
    height: 3px;
    background-color: var(--secondary-color);
    bottom: -8px;
    left: 20%;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--dark-gray);
    max-width: 600px;
    margin: 0 auto;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 8px rgba(58, 162, 120, 0.2);
}

.btn-primary:hover {
    background-color: #2d8060;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(58, 162, 120, 0.3);
}

.btn-secondary {
    background-color: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.wave-divider.reverse {
    transform: rotate(0);
    top: 0;
}

/* Header Styles */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: var(--transition);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    height: 50px;
}

.logo img {
    height: 100%;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
}

.nav-list li {
    margin-left: 30px;
}

.nav-list a {
    color: var(--text-color);
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-list a:hover {
    color: var(--primary-color);
}

.nav-list a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 22px;
    position: relative;
}

.menu-toggle span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--primary-color);
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.menu-toggle span:nth-child(1) {
    top: 0;
}

.menu-toggle span:nth-child(2) {
    top: 9px;
}

.menu-toggle span:nth-child(3) {
    top: 18px;
}

.menu-toggle.active span:nth-child(1) {
    top: 9px;
    transform: rotate(135deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    top: 9px;
    transform: rotate(-135deg);
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.blur-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(5px);
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero h1 {
    margin-bottom: 20px;
    color: var(--primary-color);
    animation: fadeInUp 1s ease;
}

.hero h2 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 40px;
    color: var(--dark-gray);
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-form-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
    animation: fadeInUp 1s ease 0.4s both;
}

.pdf-preview {
    position: relative;
    width: 250px;
    height: 350px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.cover-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pdf-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: white;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.signup-form {
    background-color: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    width: 350px;
    text-align: left;
}

.signup-form h3 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--gray);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(58, 162, 120, 0.2);
}

.signup-form button {
    width: 100%;
    padding: 14px;
    font-size: 1.1rem;
}

.form-disclaimer {
    margin-top: 15px;
    font-size: 0.85rem;
    color: var(--dark-gray);
    text-align: center;
}

/* Benefits Section */
.benefits {
    background-color: white;
    position: relative;
}

.benefits-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.benefit-card {
    flex: 1;
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    margin-bottom: 20px;
    display: inline-block;
}

.benefit-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Content Section */
.content-section {
    background-color: var(--accent-color);
    position: relative;
}

.content-grid {
    display: flex;
    align-items: center;
    gap: 60px;
}

.content-image {
    flex: 1;
    position: relative;
}

.content-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.content-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background-color: var(--secondary-color);
    color: var(--text-color);
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 30px;
    box-shadow: 0 4px 10px rgba(245, 213, 71, 0.4);
    z-index: 2;
}

.content-list {
    flex: 1;
}

.content-item {
    display: flex;
    margin-bottom: 30px;
    align-items: flex-start;
}

.content-icon {
    margin-right: 20px;
    min-width: 40px;
}

.content-text h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

/* For Who Section */
.for-who {
    background-color: white;
    position: relative;
}

.persona-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.persona-card {
    flex: 1;
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.persona-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.persona-icon {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.persona-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.persona-card:hover .persona-image {
    transform: scale(1.05);
}

.persona-card h3 {
    color: var(--primary-color);
    padding: 20px 20px 10px;
}

.persona-card > p {
    padding: 0 20px;
    min-height: 80px;
}

.persona-quote {
    background-color: var(--accent-color);
    padding: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    font-style: italic;
}

.persona-quote p {
    color: var(--text-color);
    position: relative;
    padding-left: 20px;
    margin-bottom: 5px;
}

.persona-quote p::before {
    content: '"';
    font-size: 36px;
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: -5px;
}

.persona-quote span {
    color: var(--primary-color);
    font-weight: 600;
    display: block;
    text-align: right;
    font-style: normal;
}

.leaf-divider {
    position: absolute;
    width: 100%;
    height: 80px;
    bottom: 0;
    left: 0;
    overflow: hidden;
}

.leaf-left {
    position: absolute;
    bottom: -20px;
    left: 10%;
    opacity: 0.5;
}

.leaf-right {
    position: absolute;
    bottom: -20px;
    right: 10%;
    opacity: 0.5;
    transform: scaleX(-1);
}

/* Before After Section */
.before-after {
    background-color: var(--light-gray);
    position: relative;
}

.comparison-container {
    display: flex;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.comparison-column {
    flex: 1;
    padding: 30px;
    border-radius: 12px;
    background-color: white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.comparison-column.before {
    border-top: 5px solid var(--error-color);
}

.comparison-column.after {
    border-top: 5px solid var(--primary-color);
}

.comparison-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}

.comparison-header h3 {
    margin-bottom: 0;
}

.emoji-icon {
    font-size: 2rem;
}

.comparison-list {
    list-style: none;
}

.comparison-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.comparison-list li svg {
    margin-right: 15px;
    flex-shrink: 0;
}

.comparison-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
}

.arrow-icon {
    background-color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Testimonials Section */
.testimonials {
    background-color: white;
    position: relative;
}

.testimonials-grid {
    display: flex;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-card {
    flex: 1;
    background-color: var(--accent-color);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    position: relative;
}

.testimonial-rating {
    margin-bottom: 20px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 30px;
    position: relative;
    padding-left: 25px;
}

.testimonial-text::before {
    content: '"';
    font-size: 50px;
    color: var(--primary-color);
    opacity: 0.3;
    position: absolute;
    left: 0;
    top: -15px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 3px solid white;
}

.author-details h4 {
    margin-bottom: 5px;
    color: var(--primary-color);
}

.author-details p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: var(--dark-gray);
}

/* FAQ Section */
.faq-section {
    background-color: var(--accent-color);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: white;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    margin-bottom: 0;
    font-size: 1.3rem;
}

.faq-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.faq-toggle .vertical {
    transition: var(--transition);
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-item.active .faq-toggle .vertical {
    opacity: 0;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 500px;
}

/* CTA Section */
.cta-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    background-color: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Map Section */
.map-section {
    background-color: white;
}

.map-container {
    width: 100%;
    height: 450px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.contact-info {
    display: flex;
    justify-content: space-around;
    max-width: 800px;
    margin: 0 auto;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-item svg {
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-item p {
    margin-bottom: 0;
}

/* Footer */
.main-footer {
    background-color: var(--primary-color);
    color: white;
    padding: 80px 0 30px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    flex: 1;
    min-width: 200px;
}

.footer-logo img {
    max-width: 180px;
    filter: brightness(0) invert(1);
}

.footer-form {
    flex: 2;
    min-width: 300px;
}

.footer-form h3 {
    color: white;
    margin-bottom: 20px;
}

.newsletter-form .form-group {
    display: flex;
}

.newsletter-form input {
    flex: 1;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    border: none;
}

.newsletter-form button {
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.footer-nav {
    flex: 2;
    min-width: 300px;
    display: flex;
    justify-content: space-between;
}

.footer-links h3,
.footer-contact h3 {
    color: white;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-links a:hover {
    color: white;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.title-animation {
    animation: fadeInUp 1s ease;
}

.subtitle-animation {
    animation: fadeInUp 1s ease 0.2s both;
}

/* Media Queries */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
    
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 720px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    .hero-form-container {
        flex-direction: column;
    }
    
    .pdf-preview {
        width: 200px;
        height: 280px;
    }
    
    .benefits-grid,
    .persona-grid {
        flex-direction: column;
    }
    
    .benefit-card,
    .persona-card {
        margin-bottom: 30px;
    }
    
    .content-grid {
        flex-direction: column;
    }
    
    .comparison-container {
        flex-direction: column;
    }
    
    .comparison-divider {
        display: none;
    }
    
    .testimonials-grid {
        flex-direction: column;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 540px;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .main-header {
        height: 70px;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .nav-list {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: white;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
    }
    
    .nav-list.active {
        left: 0;
    }
    
    .nav-list li {
        margin: 15px 0;
    }
    
    .mobile-hidden {
        display: none;
    }
    
    .hero {
        height: auto;
        min-height: auto;
        padding: 120px 0 80px;
    }
    
    .signup-form {
        width: 100%;
    }
    
    .contact-info {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 60px 0;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .cta-content {
        padding: 30px 20px;
    }
}