/* Updated Premium Styles for Cut List generator Landing Page */

:root {
    --primary-color: #1A365D;
    --primary-gradient: linear-gradient(135deg, #1A365D 0%, #2A4A7D 100%);
    --secondary-color: #7D9B5E;
    --secondary-gradient: linear-gradient(135deg, #7D9B5E 0%, #8DAC6E 100%);
    --accent-color: #4A90E2;
    --accent-gradient: linear-gradient(135deg, #4A90E2 0%, #5DA0F2 100%);
    --dark-overlay: rgba(26, 54, 93, 0.8);
    --light-overlay: rgba(255, 255, 255, 0.95);
    --light-bg: #F5F7FA;
    --white: #FFFFFF;
    --dark-text: #333333;
    --medium-text: #666666;
    --light-text: #999999;
    --border-color: #E1E4E8;
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 6px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 15px 30px rgba(0, 0, 0, 0.1);
    --shadow-inner: inset 0 2px 4px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-text);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--primary-color);
    letter-spacing: -0.02em;
}

h1 {
    font-size: 3.5rem;
    letter-spacing: -0.03em;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--secondary-gradient);
    border-radius: 3px;
}

h3 {
    font-size: 1.75rem;
}

p {
    margin-bottom: 1rem;
}

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

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

ul {
    list-style: none;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 2;
}

section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 0.85rem 1.75rem;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: var(--shadow-md);
}

.btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.5s ease;
    z-index: -1;
}

.btn:hover:before {
    width: 100%;
}

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

.btn-primary:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
    color: var(--white);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: none;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-large {
    padding: 1.1rem 2.2rem;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-google {
    background-color: #fff;
    color: #757575;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 0.85rem;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.btn-google:hover {
    background-color: #f5f5f5;
    box-shadow: var(--shadow-md);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.7rem 0;
    background-color: rgba(255, 255, 255, 0.98);
}

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

.logo img {
    height: 45px;
    transition: var(--transition);
}

.navbar.scrolled .logo img {
    height: 40px;
}

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

.nav-links a {
    color: var(--dark-text);
    font-weight: 500;
    position: relative;
}

.nav-links a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-gradient);
    transition: var(--transition);
}

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

.nav-links a:hover {
    color: var(--secondary-color);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding-top: 0;
    padding-bottom: 0;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    position: relative;
    background-color: var(--light-bg);
    overflow: hidden;
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    filter: brightness(0.7);
    z-index: 0;
}

.hero:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.9) 0%, rgba(26, 54, 93, 0.7) 100%);
    z-index: 1;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    height: 100%;
    padding-top: 80px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    color: var(--white);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 0.5s;
}

.hero h1 {
    margin-bottom: 1.5rem;
    font-size: 3.5rem;
    color: var(--white);
    line-height: 1.2;
}

.subheadline {
    font-size: 1.35rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-weight: 300;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateX(30px);
    animation: fadeInRight 1s ease forwards 0.8s;
}

.workflow-animation {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.animation-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    transition: var(--transition);
}

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

.animation-step i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 0.8rem;
}

.animation-arrow {
    font-size: 1.8rem;
    color: var(--medium-text);
    margin: 0 0.8rem;
}

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

.problem-comparison {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-top: 4rem;
}

.traditional, .csg {
    flex: 1;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    transform: translateY(50px);
    opacity: 0;
}

.traditional.animate, .csg.animate {
    transform: translateY(0);
    opacity: 1;
}

.traditional {
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
    border-left: 4px solid #e74c3c;
}

.csg {
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
    border-left: 4px solid var(--secondary-color);
}

.vs {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--medium-text);
}

.traditional h3, .csg h3 {
    text-align: center;
    margin-bottom: 1.8rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.traditional h3:after, .csg h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
}

.traditional h3:after {
    background-color: #e74c3c;
}

.csg h3:after {
    background-color: var(--secondary-color);
}

.traditional ul, .csg ul {
    padding-left: 1rem;
}

.traditional li, .csg li {
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: var(--transition);
}

.traditional li:hover, .csg li:hover {
    transform: translateX(5px);
}

.traditional i {
    color: #e74c3c;
    font-size: 1.2rem;
}

.csg i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

/* Features Section */
.features {
    background-color: var(--light-bg);
    position: relative;
}

.features:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    z-index: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.feature-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
    transform: translateY(50px);
    opacity: 0;
    position: relative;
    overflow: hidden;
}

.feature-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--secondary-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

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

.feature-card.animate {
    transform: translateY(0);
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(125, 155, 94, 0.1) 0%, rgba(125, 155, 94, 0.2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.8rem;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-icon i {
    font-size: 2.2rem;
    color: var(--secondary-color);
}

.feature-card h3 {
    margin-bottom: 1.2rem;
}

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

.benefits:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to bottom, transparent, rgba(245, 247, 250, 0.5));
    z-index: 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

.benefit-item {
    text-align: center;
    padding: 2.5rem;
    border-radius: 12px;
    transition: var(--transition);
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    transform: translateY(50px);
    opacity: 0;
}

.benefit-item.animate {
    transform: translateY(0);
    opacity: 1;
}

.benefit-item:hover {
    background-color: var(--light-bg);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.1) 0%, rgba(26, 54, 93, 0.2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.8rem;
    transition: var(--transition);
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
}

.benefit-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

/* How It Works Section */
.how-it-works {
    background-color: var(--light-bg);
    position: relative;
}

.how-it-works:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1600585154526-990dced4db0d?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    z-index: 0;
}

.steps {
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

.step {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
    opacity: 0;
    transform: translateX(-50px);
}

.step.animate {
    opacity: 1;
    transform: translateX(0);
}

.step:last-child {
    margin-bottom: 0;
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 2.5rem;
    width: 2px;
    height: 4rem;
    background: linear-gradient(to bottom, var(--secondary-color), transparent);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--secondary-gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    margin-right: 2.5rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 2;
}

.step-content {
    flex: 1;
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

.step-image {
    margin-left: 2.5rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.step:hover .step-image {
    transform: scale(1.1);
}

/* Testimonials Section */
.testimonials {
    background-color: var(--white);
    position: relative;
}

.testimonials:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1600573472550-8090b5e0745e?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    z-index: 0;
}

.testimonial-slider {
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

.testimonial {
    background: linear-gradient(135deg, var(--light-bg) 0%, #ffffff 100%);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    margin: 0 auto;
    max-width: 800px;
    opacity: 0;
    transform: scale(0.95);
    transition: var(--transition);
}

.testimonial.animate {
    opacity: 1;
    transform: scale(1);
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 2rem;
    position: relative;
    font-size: 1.1rem;
    line-height: 1.8;
}

.testimonial-content::before {
    content: '"';
    font-size: 5rem;
    color: rgba(125, 155, 94, 0.2);
    position: absolute;
    top: -2.5rem;
    left: -1.5rem;
    font-family: serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.testimonial-author img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: var(--shadow-md);
    border: 3px solid var(--white);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 2.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--border-color);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--secondary-color);
    transform: scale(1.2);
}

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

.pricing:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.03;
    z-index: 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

.pricing-card {
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    transform: translateY(50px);
    opacity: 0;
}

.pricing-card.animate {
    transform: translateY(0);
    opacity: 1;
}

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

.pricing-card.featured {
    border: none;
    transform: scale(1.05);
    z-index: 2;
}

.pricing-card.featured:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid transparent;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.pricing-badge {
    position: absolute;
    top: 1.5rem;
    right: -2.5rem;
    background: var(--secondary-gradient);
    color: var(--white);
    padding: 0.5rem 3rem;
    font-size: 0.875rem;
    font-weight: 600;
    transform: rotate(45deg);
    box-shadow: var(--shadow-md);
    z-index: 3;
}

.pricing-header {
    padding: 2.5rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    background: linear-gradient(135deg, rgba(245, 247, 250, 0.5) 0%, rgba(255, 255, 255, 1) 100%);
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1.5rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.currency {
    font-size: 1.8rem;
    margin-right: 0.25rem;
    align-self: flex-start;
}

.period {
    font-size: 1.1rem;
    color: var(--medium-text);
    font-weight: 400;
}

.custom-price {
    font-size: 1.8rem;
}

.pricing-features {
    padding: 2.5rem;
    flex: 1;
}

.pricing-features ul {
    margin-bottom: 1.8rem;
}

.pricing-features li {
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: var(--transition);
}

.pricing-features li:hover {
    transform: translateX(5px);
}

.pricing-features i {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.pricing-features .not-included i {
    color: var(--light-text);
}

.pricing-features .not-included {
    color: var(--light-text);
}

.pricing-cta {
    padding: 0 2.5rem 2.5rem;
}

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

.faq-grid {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    transform: translateY(50px);
    opacity: 0;
    background-color: var(--white);
}

.faq-item.animate {
    transform: translateY(0);
    opacity: 1;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.faq-question {
    padding: 1.8rem;
    background: linear-gradient(135deg, rgba(245, 247, 250, 0.5) 0%, rgba(255, 255, 255, 1) 100%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-item.active .faq-question {
    background: linear-gradient(135deg, rgba(125, 155, 94, 0.1) 0%, rgba(255, 255, 255, 1) 100%);
}

.faq-question h3 {
    margin-bottom: 0;
    font-size: 1.2rem;
}

.faq-toggle {
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-answer {
    padding: 0 1.8rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
}

.faq-item.active .faq-answer {
    padding: 1.8rem;
    max-height: 1000px;
    transition: max-height 1s ease-in-out;
}

.faq-item.active .faq-toggle i {
    transform: rotate(45deg);
}

/* Call-to-Action Section */
.cta {
    position: relative;
    color: var(--white);
    text-align: center;
    padding: 8rem 0;
    overflow: hidden;
}

.cta:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1600566752355-35792bedcfea?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    filter: brightness(0.4);
    z-index: 0;
}

.cta:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.9) 0%, rgba(26, 54, 93, 0.7) 100%);
    z-index: 1;
}

.cta .container {
    position: relative;
    z-index: 2;
}

.cta h2, .cta p {
    color: var(--white);
}

.cta h2:after {
    background: var(--white);
}

.cta p {
    font-size: 1.35rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 4rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: var(--transition);
}

.trust-badge:hover {
    transform: translateY(-5px);
}

.trust-badge i {
    color: var(--secondary-color);
    font-size: 1.5rem;
}

/* Footer */
footer {
    background-color: #0F2440;
    color: var(--white);
    padding: 6rem 0 2rem;
    position: relative;
}

footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: var(--secondary-gradient);
}

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

.footer-logo {
    height: 45px;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
}

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

.social-icons a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-5px);
}

.footer-column h4 {
    color: var(--white);
    margin-bottom: 1.8rem;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-column h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--secondary-color);
}

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

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    display: inline-block;
}

.footer-column ul li a:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

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

/* Authentication Modal */
.auth-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.auth-modal.active {
    opacity: 1;
    visibility: visible;
}

.auth-container {
    background-color: var(--white);
    border-radius: 12px;
    width: 100%;
    max-width: 500px;
    padding: 2.5rem;
    position: relative;
    box-shadow: var(--shadow-lg);
    transform: translateY(30px);
    transition: var(--transition);
    height: 90vh;
    overflow: scroll;
}

.auth-modal.active .auth-container {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--medium-text);
    transition: var(--transition);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close-modal:hover {
    color: var(--dark-text);
    background-color: rgba(0, 0, 0, 0.05);
}

.auth-tabs {
    display: flex;
    margin-bottom: 2.5rem;
    border-bottom: 1px solid var(--border-color);
}

.auth-tab {
    flex: 1;
    padding: 1.2rem;
    text-align: center;
    background: none;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--medium-text);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.auth-tab:after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-gradient);
    transition: var(--transition);
}

.auth-tab.active {
    color: var(--primary-color);
}

.auth-tab.active:after {
    width: 100%;
}

.auth-form {
    display: none;
}

.auth-form.active {
    display: block;
}

.auth-form h3 {
    text-align: center;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
    background-color: #f9f9f9;
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.2);
    background-color: var(--white);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.8rem;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.forgot-password {
    font-size: 0.9rem;
}

.auth-divider {
    position: relative;
    text-align: center;
    margin: 1.8rem 0;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--border-color);
}

.auth-divider span {
    position: relative;
    background-color: var(--white);
    padding: 0 1.2rem;
    color: var(--medium-text);
}

.auth-terms {
    font-size: 0.9rem;
    text-align: center;
    margin-top: 1.8rem;
    color: var(--medium-text);
}

.auth-terms a {
    color: var(--accent-color);
}

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

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

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

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2.8rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .hero {
        height: auto;
        min-height: 600px;
    }
    
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .problem-comparison {
        flex-direction: column;
    }
    
    .vs {
        margin: 1.5rem 0;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .hero {
        padding-top: 80px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    
    .workflow-animation {
        flex-direction: column;
    }
    
    .animation-arrow {
        transform: rotate(90deg);
        margin: 0.5rem 0;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    section {
        padding: 4rem 0;
    }
    
    .features-grid, .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .auth-container {
        width: 90%;
        padding: 2rem;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin-right: 0;
        margin-bottom: 1.5rem;
    }
    
    .step-image {
        margin-left: 0;
        margin-top: 1.5rem;
    }
    
    .step:not(:last-child)::after {
        left: 50%;
        transform: translateX(-50%);
    }
}
