/* ==================== ROOT VARIABLES ==================== */
:root {
    --deep-teal: #335c67;
    --medium-teal: #4a7885;
    --light-teal: #7ba3ae;
    --cream-yellow: #fff3b0;
    --light-cream: #fffbdb;
    --warm-orange: #e09f3e;
    --light-orange: #f4c07e;
    --off-white: #fafaf8;
    --soft-white: #ffffff;
    --text-dark: #1a2e35;
    --text-medium: #335c67;
    --text-light: #6b8893;
    --border-light: #e5ede9;
    --shadow-sm: 0 2px 8px rgba(51, 92, 103, 0.08);
    --shadow-md: 0 4px 16px rgba(51, 92, 103, 0.12);
    --shadow-lg: 0 8px 32px rgba(51, 92, 103, 0.16);
    --shadow-xl: 0 16px 48px rgba(51, 92, 103, 0.2);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==================== GLOBAL STYLES ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--off-white);
}

html {
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Lora', serif;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-dark);
}

section {
    position: relative;
    overflow: hidden;
}

/* ==================== DECORATIVE ELEMENTS ==================== */
.graph-decoration {
    position: absolute;
    opacity: 0.03;
    pointer-events: none;
}

/* ==================== NAVIGATION ==================== */
.navbar {
    padding: 1rem 0;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
}

.navbar.scrolled {
    padding: 0.7rem 0;
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    font-family: 'Lora', serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--deep-teal);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.brand-icon {
    color: var(--warm-orange);
    font-size: 1.8rem;
}

.nav-link {
    color: var(--text-medium);
    font-weight: 600;
    padding: 0.5rem 1.2rem !important;
    transition: var(--transition);
    position: relative;
    font-size: 0.95rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--warm-orange);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--deep-teal);
}

.btn-nav {
    background: var(--warm-orange);
    color: var(--soft-white);
    padding: 0.7rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    border: none;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.btn-nav:not(:disabled):hover {
    background: var(--deep-teal);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-nav:disabled {
    background: var(--light-teal)
}

/* ==================== HERO SECTION - CREATIVE DIAGONAL SPLIT ==================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 60px;
    position: relative;
    overflow: hidden;
}

.hero-diagonal-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.diagonal-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 55%;
    height: 100%;
    background: linear-gradient(135deg, var(--deep-teal), var(--medium-teal));
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
}

.diagonal-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 243, 176, 0.3), rgba(224, 159, 62, 0.2));
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
}

.hero-left {
    color: var(--soft-white);
    padding: 2rem 0;
}

.hero-badge {
    display: inline-block;
    background: var(--warm-orange);
    color: var(--soft-white);
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    animation: slideInLeft 0.8s ease-out;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.8rem);
    font-weight: 800;
    color: var(--soft-white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    animation: slideInLeft 0.8s ease-out 0.2s both;
}

.hero-title-highlight {
    color: var(--cream-yellow);
    display: block;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    max-width: 550px;
    line-height: 1.8;
    animation: slideInLeft 0.8s ease-out 0.4s both;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: slideInLeft 0.8s ease-out 0.6s both;
}

.hero-login-group {
    display: flex;
    flex-direction: column;
    max-width: 50%;
}

.btn-primary-cta {
    background: var(--warm-orange);
    color: var(--soft-white);
    padding: 1.3rem 3rem;
    border-radius: 8px;
    font-weight: 700;
    border: none;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 8px 24px rgba(224, 159, 62, 0.4);
    font-size: 1.05rem;
}

.btn-primary-cta:hover {
    background: var(--cream-yellow);
    color: var(--text-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(224, 159, 62, 0.5);
}

.btn-secondary-cta {
    background: transparent;
    color: var(--soft-white);
    padding: 1.3rem 3rem;
    border-radius: 8px;
    font-weight: 700;
    border: 2px solid var(--soft-white);
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    font-size: 1.05rem;
}

.btn-secondary-cta:hover {
    background: var(--soft-white);
    color: var(--deep-teal);
    transform: translateY(-3px);
}

.trust-indicators {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
    animation: slideInLeft 0.8s ease-out 0.8s both;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.trust-icon {
    color: var(--cream-yellow);
    font-size: 1.8rem;
}

.trust-text {
    display: flex;
    flex-direction: column;
}

.trust-text strong {
    color: var(--soft-white);
    font-size: 0.95rem;
}

.trust-text span {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
}

/* Hero Right - Interactive Stats Cards */
.hero-right {
    position: relative;
}

.hero-image {
    max-width: 400px;
}

.hero-stats-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    animation: slideInRight 0.8s ease-out 0.4s both;
}

.stat-card {
    background: var(--soft-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.stat-card:hover {
    transform: translateY(-10px) rotate(2deg);
    box-shadow: 0 20px 60px rgba(51, 92, 103, 0.3);
    border-color: var(--warm-orange);
}

.stat-card:nth-child(1) {
    animation-delay: 0.5s;
}

.stat-card:nth-child(2) {
    animation-delay: 0.6s;
}

.stat-card:nth-child(3) {
    animation-delay: 0.7s;
}

.stat-card:nth-child(4) {
    animation-delay: 0.8s;
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--warm-orange), var(--light-orange));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--soft-white);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--deep-teal);
    margin-bottom: 0.5rem;
    font-family: 'Lora', serif;
}

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

/* Floating Elements */
.floating-element {
    position: absolute;
    animation: float 6s ease-in-out infinite;
    opacity: 0.3;
    z-index: 1;
}

.floating-receipt {
    top: 10%;
    right: 10%;
    font-size: 3rem;
    color: var(--warm-orange);
    animation-delay: 0s;
}

.floating-chart {
    bottom: 15%;
    right: 5%;
    font-size: 2.5rem;
    color: var(--deep-teal);
    animation-delay: 2s;
}

.floating-calculator {
    top: 30%;
    left: 5%;
    font-size: 2rem;
    color: var(--cream-yellow);
    animation-delay: 1s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ==================== PROBLEM SECTION ==================== */
.problem-section {
    padding: 100px 0;
    background: var(--soft-white);
}

.section-badge {
    display: inline-block;
    background: var(--deep-teal);
    color: var(--soft-white);
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-description {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.9;
    max-width: 750px;
    margin: 0 auto 4rem;
}

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

.problem-card {
    background: var(--off-white);
    padding: 2.5rem;
    border-radius: 12px;
    transition: var(--transition);
    border: 2px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--warm-orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.problem-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--warm-orange);
}

.problem-card:hover::before {
    transform: scaleX(1);
}

.problem-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--deep-teal), var(--medium-teal));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--soft-white);
    margin-bottom: 1.5rem;
}

.problem-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.problem-text {
    color: var(--text-light);
    line-height: 1.8;
}

/* ==================== GUIDE SECTION ==================== */
.guide-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(255, 243, 176, 0.3), rgba(224, 159, 62, 0.1));
}

.empathy-box {
    background: var(--soft-white);
    padding: 3rem;
    border-radius: 12px;
    border-left: 5px solid var(--warm-orange);
    margin-bottom: 3rem;
    box-shadow: var(--shadow-md);
}

.empathy-quote {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.empathy-author {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 600;
}

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

.credential-item {
    background: var(--soft-white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.credential-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--warm-orange), var(--light-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--soft-white);
    margin: 0 auto 1.5rem;
}

.credential-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.credential-text {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ==================== PLAN SECTION ==================== */
.plan-section {
    padding: 100px 0;
    background: var(--soft-white);
}

.plan-container {
    max-width: 900px;
    margin: 0 auto;
}

.plan-step {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 3rem;
    padding: 2.5rem;
    background: var(--off-white);
    border-radius: 12px;
    transition: var(--transition);
    position: relative;
}

.plan-step::after {
    content: '';
    position: absolute;
    bottom: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 1.5rem;
    background: var(--border-light);
}

.plan-step:last-child::after {
    display: none;
}

.plan-step:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
    background: var(--soft-white);
}

.step-number {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--warm-orange), var(--light-orange));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--soft-white);
    box-shadow: var(--shadow-md);
}

.step-content h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.step-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

/* ==================== SERVICES SECTION ==================== */
.services-section {
    padding: 100px 0;
    background: var(--deep-teal);
    color: var(--soft-white);
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-header .section-badge {
    background: var(--warm-orange);
}

.services-header .section-title {
    color: var(--soft-white);
}

.services-header .section-description {
    color: rgba(255, 255, 255, 0.85);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--soft-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transition: var(--transition);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.pricing-card.featured {
    border: 3px solid var(--warm-orange);
    transform: scale(1.05);
}

.pricing-header {
    background: linear-gradient(135deg, var(--deep-teal), var(--medium-teal));
    padding: 2.5rem 2rem;
    text-align: center;
    color: var(--soft-white);
}

.pricing-card.featured .pricing-header {
    background: linear-gradient(135deg, var(--warm-orange), var(--light-orange));
}

.pricing-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--cream-yellow);
    color: var(--text-dark);
    padding: 0.35rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.pricing-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--soft-white);
}

.pricing-subtitle {
    font-size: 0.95rem;
    opacity: 0.95;
    margin-bottom: 1.5rem;
}

.pricing-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--soft-white);
}

.pricing-period {
    font-size: 1rem;
    opacity: 0.9;
}

.pricing-body {
    padding: 2.5rem 2rem;
    background: var(--soft-white);
}

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

.pricing-features li {
    padding: 0.75rem 0;
    display: flex;
    align-items: start;
    gap: 1rem;
    color: var(--text-medium);
    border-bottom: 1px solid var(--border-light);
}

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

.pricing-features i {
    color: var(--warm-orange);
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.btn-pricing {
    background: var(--warm-orange);
    color: var(--soft-white);
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    border: none;
    transition: var(--transition);
    width: 100%;
    box-shadow: var(--shadow-sm);
    font-size: 1rem;
    cursor: pointer;
}

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

/* ==================== FAILURE SECTION ==================== */
.failure-section {
    padding: 100px 0;
    background: var(--text-dark);
    color: var(--soft-white);
}

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

.failure-content .section-title {
    color: var(--soft-white);
}

.failure-content .section-description {
    color: rgba(255, 255, 255, 0.85);
}

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

.failure-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.failure-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-color: var(--warm-orange);
}

.failure-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--warm-orange);
}

.failure-card h4 {
    color: var(--soft-white);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.failure-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin: 0;
}

/* ==================== SUCCESS SECTION ==================== */
.success-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(255, 243, 176, 0.5), rgba(224, 159, 62, 0.2));
}

.success-vision {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

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

.benefit-card {
    background: var(--soft-white);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--warm-orange);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--deep-teal), var(--medium-teal));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 1.5rem;
    color: var(--soft-white);
}

.benefit-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.benefit-text {
    color: var(--text-light);
    line-height: 1.7;
}

/* ==================== TESTIMONIALS ==================== */
.testimonials-section {
    padding: 100px 0;
    background: var(--soft-white);
}

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

.testimonial-card {
    background: var(--off-white);
    border-radius: 12px;
    padding: 3rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 2px solid var(--border-light);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--warm-orange);
}

.quote-icon {
    font-size: 3rem;
    color: var(--cream-yellow);
    opacity: 0.6;
    line-height: 1;
    margin-bottom: 1rem;
}

.testimonial-stars {
    color: var(--warm-orange);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--border-light);
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--deep-teal), var(--warm-orange));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--soft-white);
    box-shadow: var(--shadow-sm);
}

.author-info h5 {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.author-info p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.9rem;
}

/* ==================== FINAL CTA SECTION ==================== */
.final-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--deep-teal), var(--medium-teal));
    color: var(--soft-white);
    text-align: center;
}

.final-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.final-cta-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    color: var(--soft-white);
    margin-bottom: 1.5rem;
}

.final-cta-text {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.btn-final-cta {
    background: var(--warm-orange);
    color: var(--soft-white);
    padding: 1.5rem 4rem;
    border-radius: 8px;
    font-weight: 800;
    border: none;
    transition: var(--transition);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    font-size: 1.2rem;
    text-decoration: none;
    display: inline-block;
}

.btn-final-cta:hover {
    background: var(--cream-yellow);
    color: var(--text-dark);
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.guarantee-box {
    margin-top: 3rem;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 2rem;
    border-radius: 8px;
}

.guarantee-icon {
    font-size: 2rem;
    color: var(--cream-yellow);
}

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

.guarantee-text strong {
    display: block;
    font-size: 1.1rem;
}

.guarantee-text span {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--text-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 5rem 0 2rem;
}

.footer-brand {
    font-family: 'Lora', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--soft-white);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-brand i {
    color: var(--warm-orange);
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.footer-title {
    color: var(--soft-white);
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-size: 1.1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--warm-orange);
    padding-left: 8px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--soft-white);
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--warm-orange);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 4rem;
    padding-top: 2rem;
    text-align: center;
}

/* ==================== SCROLL TO TOP BUTTON ==================== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: var(--warm-orange);
    color: var(--soft-white);
    border-radius: 8px;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 1000;
    box-shadow: var(--shadow-lg);
}

.scroll-top.show {
    display: flex;
}

.scroll-top:hover {
    background: var(--deep-teal);
    transform: translateY(-5px);
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

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

.fade-in-up {
    animation: fadeInUp 0.8s ease-out both;
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 1000px) {
    .hero-section {
        padding: 100px 0 60px;
        min-height: auto;
    }

    /* Simplify diagonal background on mobile */
    .diagonal-left {
        width: 100%;
        clip-path: none;
    }

    .diagonal-right {
        display: none;
    }

    .hero-left {
        padding-bottom: 3rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-cta-group {
        flex-direction: column;
    }

    .hero-login-group {
        max-width: 80%;
    }

    .hero-image {
        display: none;
    }

    .btn-primary-cta,
    .btn-secondary-cta {
        text-align: center;
        width: 100%;
    }

    .trust-indicators {
        flex-direction: column;
    }

    .trust-item {
        width: 100%;
    }

    /* Stats cards responsive */
    .hero-stats-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-card:nth-child(n) {
        margin-top: 0 !important;
    }

    /* Hide floating elements on mobile */
    .floating-element {
        display: none;
    }

    .problem-section,
    .guide-section,
    .plan-section,
    .services-section,
    .failure-section,
    .success-section,
    .testimonials-section,
    .final-cta-section {
        padding: 60px 0;
    }

    .plan-step {
        flex-direction: column;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .navbar-collapse {
        background: var(--soft-white);
        padding: 1.5rem;
        border-radius: 12px;
        margin-top: 1rem;
        box-shadow: var(--shadow-md);
    }

    .btn-nav {
        margin-top: 1rem;
        display: block;
        text-align: center;
    }

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

/* ==================== PRINT STYLES ==================== */
@media print {

    .navbar,
    .scroll-top,
    .footer {
        display: none;
    }
}
