:root {
    /* Colors */
    --bg-color: #F9F8F6;
    --text-color: #2C3E50;
    /* Darker, more stable gray */
    --text-light: #5D6D7E;

    --primary-green: #6B8E78;
    /* Sage Green */
    --primary-terracotta: #D27D66;
    /* Terracotta */
    --secondary-green: #E8F3EB;
    /* Pastel Green */
    --secondary-terracotta: #F9EBE8;
    /* Pastel Terracotta */

    --white: #FFFFFF;
    --gray-light: #E0E0E0;

    --accent-gold: #D4AF37;

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Nunito', sans-serif;

    /* Spacing */
    --container-width: 1140px;
    /* Slightly tighter for better readability */
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 5rem;
    /* Reduced slightly to keep things connected but breathable */

    /* Shadows & Radius */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.06);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.7;
    /* Increased for better readability */
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-color);
    line-height: 1.3;
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

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

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    border-radius: 6px;
    /* More professional, less playful than 50px */
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    gap: 10px;
    letter-spacing: 0.5px;
}

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

.btn-primary {
    background-color: var(--primary-terracotta);
    color: var(--white);
    border: 1px solid var(--primary-terracotta);
}

.btn-primary:hover {
    background-color: #c06850;
    border-color: #c06850;
}

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

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

.btn-white {
    background-color: var(--white);
    color: var(--primary-green);
    border: 1px solid var(--white);
}

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

.btn-whatsapp {
    background-color: #25D366;
    color: white;
    font-size: 1rem;
    padding: 14px 32px;
    border-radius: 50px;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
}

/* Header */
header {
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    background-color: rgba(249, 248, 246, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-green);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    background: var(--primary-green);
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 0.9rem;
}

.desktop-nav {
    display: flex;
    gap: 2.5rem;
}

.desktop-nav a {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-color);
    position: relative;
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--primary-terracotta);
    transition: width 0.3s;
}

.desktop-nav a:hover::after {
    width: 100%;
}

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

.mobile-nav {
    display: none;
    flex-direction: column;
    background: var(--bg-color);
    padding: var(--spacing-md);
    border-top: 1px solid var(--gray-light);
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    box-shadow: var(--shadow-md);
}

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

.mobile-nav a {
    padding: 15px 0;
    border-bottom: 1px solid var(--gray-light);
    font-weight: 600;
}

/* Hero Section */
.hero {
    padding: var(--spacing-lg) 0 var(--spacing-xl);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.hero-text h1 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.hero-text .highlight {
    color: var(--primary-green);
    font-style: italic;
    font-weight: 400;
}

.hero-text p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 540px;
    line-height: 1.8;
}

.image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

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

.section-header {
    max-width: 700px;
    margin: 0 auto var(--spacing-lg);
}

.section-header h2 {
    font-size: 2.2rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.section-header .subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
}

.problem-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: var(--spacing-lg);
}

.problem-card {
    background: var(--bg-color);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-md);
    text-align: center;
    transition: transform 0.3s;
    border: 1px solid transparent;
}

.problem-card:hover {
    border-color: var(--gray-light);
    transform: translateY(-5px);
}

.icon-box {
    width: 50px;
    height: 50px;
    background: var(--secondary-terracotta);
    color: var(--primary-terracotta);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin: 0 auto 1.5rem;
}

.problem-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.problem-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0;
}

.problem-conclusion {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem;
    background: var(--secondary-green);
    border-radius: var(--radius-md);
}

/* Solution Section */
.solution {
    padding: var(--spacing-xl) 0;
}

.solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.solution-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.check-list {
    margin-top: 2rem;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--text-color);
}

.check-list i {
    color: var(--primary-green);
    font-size: 1.2rem;
}

.solution-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s;
}

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

.visual-card i {
    font-size: 2rem;
    color: var(--primary-green);
    background: var(--secondary-green);
    padding: 10px;
    border-radius: 50%;
}

/* Journey (Services) Section */
.journey {
    padding: var(--spacing-xl) 0;
    background-color: #F2F8B3;
}

.journey-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: var(--spacing-lg);
    align-items: stretch;
    /* Ensure equal height */
}

.journey-card {
    background: transparent;
    border-radius: var(--radius-md);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid rgba(107, 142, 120, 0.5);
    transition: all 0.3s;
    height: 100%;
    /* Force full height */
}

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

.journey-card.featured {
    background: #FFFFFF;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: scale(1.02);
    z-index: 1;
    border: none;
}

.journey-card.featured:hover {
    transform: scale(1.02) translateY(-5px);
}

.card-header {
    border-bottom: 1px solid var(--gray-light);
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
}

.tag {
    background: var(--secondary-green);
    color: var(--primary-green);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 10px;
}

.featured-tag {
    background: var(--primary-terracotta);
    color: white;
    border-radius: 50px;
    padding: 6px 16px;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: var(--shadow-sm);
}

.journey-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.income-range {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 600;
}

.card-body {
    flex: 1;
    /* Pushes footer to bottom */
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pain {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

.solution-highlight {
    background: var(--secondary-terracotta);
    padding: 12px;
    border-radius: var(--radius-sm);
    margin-top: auto;
    /* Push to bottom of body if needed */
}

.solution-highlight span {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--text-light);
    font-weight: 700;
    display: block;
    margin-bottom: 4px;
}

.solution-highlight h4 {
    margin: 0;
    color: var(--primary-terracotta);
    font-size: 1.1rem;
}

.card-footer {
    margin-top: 2rem;
}

.card-footer .btn {
    width: 100%;
}

/* New Journey Card Styles */
.price-display {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: #1a4d2e;
    /* Dark green */
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.price-display small {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-light);
    display: inline-block;
}

/* Tooltip Interaction Styles */
.plan-details-container {
    margin-top: 1rem;
    display: flex !important;
    align-items: center !important;
    gap: 8px;
    position: relative;
}

.details-label {
    font-size: 0.9rem;
    color: var(--primary-terracotta);
    font-weight: 600;
}

.tooltip-wrap {
    position: relative !important;
    display: inline-block !important;
}

.tooltip-icon {
    background: var(--secondary-terracotta);
    color: var(--primary-terracotta);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.tooltip-icon:hover {
    background: var(--primary-terracotta);
    color: white;
    transform: scale(1.1);
}

.tooltip-box {
    display: none;
    /* Hide by default to prevent layout issues */
    position: absolute !important;
    bottom: 140%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    color: var(--text-color);
    width: 300px;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: left;
}

.tooltip-box::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -8px;
    border-width: 8px;
    border-style: solid;
    border-color: #fff transparent transparent transparent;
}

.tooltip-wrap:hover .tooltip-box,
.tooltip-icon:focus+.tooltip-box {
    display: block !important;
    animation: fadeInTooltip 0.2s ease-out;
}

@keyframes fadeInTooltip {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.tooltip-box p {
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    line-height: 1.5;
}

.tooltip-box ul {
    padding-left: 1.2rem;
    list-style: disc;
}

.tooltip-box li {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

/* Mobile adjustment for tooltip */
@media (max-width: 768px) {
    .tooltip-box {
        width: 260px;
        left: -100px;
        transform: translateX(0);
    }

    .tooltip-box::after {
        left: auto;
        right: 20px;
        margin-left: 0;
    }
}

/* IR Box */
.ir-box {
    background: var(--primary-green);
    color: var(--white);
    border-radius: var(--radius-md);
    padding: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow-md);
    gap: 2rem;
}

.ir-content h3 {
    color: var(--white);
    margin-bottom: 10px;
    font-size: 1.8rem;
}

.ir-content p {
    margin: 0;
    opacity: 0.9;
}

/* Opening Offer Section */
.opening-offer {
    padding: var(--spacing-xl) 0;
}

.offer-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 3rem;
    position: relative;
    border: 1px solid var(--accent-gold);
    max-width: 900px;
    margin: 0 auto;
}

.offer-badge {
    position: absolute;
    top: -18px;
    right: 40px;
    background: var(--accent-gold);
    color: var(--white);
    padding: 8px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: var(--shadow-sm);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.offer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: center;
}

.offer-text h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.offer-text .price {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-green);
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: 1.5rem;
}

.offer-features {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.offer-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--text-color);
}

.offer-features i {
    color: var(--accent-gold);
    font-size: 1.2rem;
}

.disclaimer {
    font-size: 0.85rem;
    color: var(--text-light);
}

.disclaimer summary {
    cursor: pointer;
    text-decoration: underline;
    opacity: 0.8;
}

/* Pricing Table Section */
.pricing-table-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--bg-color);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: stretch;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid transparent;
    transition: transform 0.3s;
}

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

.pricing-card.featured-plan {
    border: 2px solid var(--primary-green);
    background: #fff;
    position: relative;
    top: -10px;
    /* Slight lift for featured */
}

.pricing-header h4 {
    margin-bottom: 5px;
    font-size: 1.3rem;
}

.sub-text {
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.pricing-price {
    margin: 2rem 0;
    padding: 1.5rem 0;
    border-top: 1px solid var(--gray-light);
    border-bottom: 1px solid var(--gray-light);
}

.old-price {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 1rem;
    display: block;
    margin-bottom: 5px;
}

.current-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-green);
    font-family: var(--font-heading);
    line-height: 1;
}

.badge-discount {
    display: inline-block;
    background: var(--secondary-terracotta);
    color: var(--primary-terracotta);
    font-size: 0.75rem;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 700;
    margin-top: 8px;
}

.pricing-body {
    flex: 1;
}

.pricing-body ul li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

.pricing-body i {
    color: var(--primary-green);
    flex-shrink: 0;
}

.pricing-footer {
    margin-top: 2rem;
}

/* BPO Section */
.bpo-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--primary-green);
    color: var(--white);
}

.bpo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.bpo-text h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.bpo-text p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.price-tag {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-family: var(--font-heading);
}

.bpo-list ul li {
    font-size: 1.1rem;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 8px;
}

.bpo-list i {
    font-size: 1.4rem;
    color: var(--secondary-green);
}

/* Differentials */
.differentials {
    padding: var(--spacing-xl) 0;
}

.diff-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    text-align: center;
}

.diff-item {
    padding: 2rem;
}

.diff-item i {
    font-size: 2.5rem;
    color: var(--primary-terracotta);
    margin-bottom: 1.5rem;
    background: var(--secondary-terracotta);
    width: 80px;
    height: 80px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.diff-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

/* Testimonials */
.testimonials {
    padding: var(--spacing-xl) 0;
    background-color: var(--secondary-terracotta);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

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

.quote {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    line-height: 1.6;
}

.author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar {
    width: 48px;
    height: 48px;
    background: var(--primary-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

/* FAQ */
.faq {
    padding: var(--spacing-xl) 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

details {
    background: var(--white);
    margin-bottom: 15px;
    padding: 24px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: all 0.3s;
}

details:hover {
    box-shadow: var(--shadow-md);
}

summary {
    font-weight: 700;
    font-size: 1.1rem;
    list-style: none;
    position: relative;
    padding-right: 30px;
}

summary::after {
    content: '+';
    position: absolute;
    right: 0;
    font-weight: bold;
    color: var(--primary-green);
    font-size: 1.5rem;
    line-height: 1;
}

details[open] summary::after {
    content: '-';
}

details p {
    margin-top: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Footer */
footer {
    background-color: var(--bg-color);
    border-top: 1px solid var(--gray-light);
}

.promo-bar {
    background: var(--primary-terracotta);
    color: white;
    text-align: center;
    padding: 12px;
    font-size: 1rem;
    font-weight: 600;
}

.footer-main {
    padding: 4rem 0;
}

.footer-info {
    margin-top: 3rem;
    color: var(--text-light);
    font-size: 0.9rem;
    border-top: 1px solid var(--gray-light);
    padding-top: 2rem;
}

.links {
    margin-top: 10px;
}

.links a {
    margin: 0 10px;
    text-decoration: underline;
    opacity: 0.8;
}

.links a:hover {
    opacity: 1;
}

/* Pulse Animation */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Responsive */
@media (max-width: 900px) {

    .hero-grid,
    .solution-grid,
    .bpo-grid,
    .testimonials-grid,
    .offer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .problem-cards,
    .journey-cards,
    .pricing-grid,
    .diff-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .journey-card.featured {
        transform: none;
        top: 0;
    }

    .pricing-card.featured-plan {
        top: 0;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .desktop-nav,
    .sm-hidden {
        display: none;
    }

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

    .ir-box {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .offer-badge {
        position: static;
        display: inline-block;
        margin-bottom: 1rem;
    }

    .offer-card {
        padding: 2rem;
    }

    .offer-text .price {
        font-size: 2.5rem;
    }
}