/* Linkedpro Landing Page - High Converting CSS */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
@import url('https://cdn.jsdelivr.net/npm/aos@2.3.4/dist/aos.css');

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

:root {
    --primary-blue: #0057ff;
    --primary-blue-dark: #004de6;
    --light-gray: #f8f9fa;
    --dark-gray: #2c3e50;
    --text-gray: #5a6c7d;
    --white: #ffffff;
    --success-green: #27ae60;
    --gradient-bg: linear-gradient(135deg, #0057ff 0%, #004de6 100%);
    --shadow-soft: 0 8px 30px rgba(0, 87, 255, 0.12);
    --shadow-hover: 0 15px 40px rgba(0, 87, 255, 0.2);
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    background: var(--gradient-bg), url('../images/hero-bg.png');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    color: var(--white);
    padding: 80px 0 120px;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><linearGradient id="grad"><stop offset="0%" stop-color="rgba(255,255,255,0.1)"/><stop offset="100%" stop-color="rgba(255,255,255,0.05)"/></linearGradient></defs><path fill="url(%23grad)" d="M0,0 L1000,0 L1000,800 Q500,900 0,800 Z"/></svg>') no-repeat center bottom;
    background-size: cover;
    z-index: 0;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.3rem);
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.5;
}

.trust-logos {
    margin-top: 3rem;
    position: relative;
    z-index: 3;
}

.trust-logos p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 1rem;
    text-align: center;
}

.logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin: 0 auto;
    max-width: 600px;
}

.logo-placeholder {
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    backdrop-filter: blur(5px);
    text-align: center;
    min-width: 60px;
}

/* CTA Buttons */
.cta-btn {
    display: inline-block;
    padding: 16px 32px;
    border: none;
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-btn.primary {
    background: var(--white);
    color: var(--primary-blue);
    box-shadow: var(--shadow-soft);
}

.cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    background: #f8f9fa;
}

.cta-btn.secondary {
    background: var(--primary-blue);
    color: var(--white);
    border: 2px solid var(--primary-blue);
}

.cta-btn.secondary:hover {
    background: var(--primary-blue-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.cta-btn.large {
    padding: 20px 40px;
    font-size: 1.2rem;
}

/* Section Styles */
section {
    padding: 80px 0;
}

section h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    text-align: center;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

/* Why Choose Section */
.why-choose {
    background: var(--light-gray);
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

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

.why-choose h2 {
    margin-bottom: 2rem;
    color: var(--dark-gray);
}

.why-choose .section-intro {
    margin-bottom: 4rem;
    clear: both;
}

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

.feature-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

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

.feature-icon {
font-size: 3rem;
margin-bottom: 1.5rem;
color: var(--primary-blue);
width: 80px;
height: 80px;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 1.5rem;
}

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

.feature-card h3 {
font-size: 1.4rem;
font-weight: 600;
color: var(--dark-gray);
margin-bottom: 1rem;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* How It Works */
.how-it-works {
    background: var(--white);
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-bg);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-soft);
}

.step h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.step p {
    color: var(--text-gray);
    line-height: 1.6;
}

.cta-center {
    text-align: center;
    margin-top: 3rem;
}

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

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

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

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

.pricing-card.featured {
    border-color: var(--primary-blue);
    transform: scale(1.02);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-bg);
    color: var(--white);
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: var(--shadow-soft);
}

.pricing-card h3 {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.price span {
    font-size: 1.2rem;
    opacity: 0.8;
}

.plan-description {
    color: var(--text-gray);
    font-style: italic;
    margin-bottom: 2rem;
}

.features-list {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.features-list li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    font-size: 0.95rem;
}

.paypal-btn {
    width: 100%;
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    padding: 14px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.paypal-btn:hover {
    background: var(--primary-blue-dark);
    transform: translateY(-2px);
}

.paypal-btn.featured {
    background: var(--gradient-bg);
    box-shadow: var(--shadow-soft);
}

/* Testimonials */
.testimonials {
    background: var(--white);
}

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

.testimonial {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    border-left: 4px solid var(--primary-blue);
    transition: var(--transition);
}

.testimonial:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.author-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-blue);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-right: 1rem;
    overflow: hidden;
}

.author-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.author-info strong {
    display: block;
    color: var(--dark-gray);
    font-weight: 600;
}

.author-info span {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Statistics Section */
.stats-section {
    background: var(--gradient-bg);
    color: var(--white);
    text-align: center;
}

.stats-visual {
    margin: 2rem 0;
    text-align: center;
}

.stats-visual img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
}

.stats-section h2 {
    color: var(--white);
    margin-bottom: 3rem;
}

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

.stat-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, #fff, #f0f8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.4;
}

/* Before/After Section */
.before-after {
    background: var(--light-gray);
}

/* Visual Comparison Images */
.visual-comparison {
    margin: 3rem 0;
    text-align: center;
}

.visual-comparison h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 2rem;
}

.image-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    align-items: start;
}

.before-image, .after-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.before-image:hover, .after-image:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.image-comparison img {
    width: 100%;
    height: auto;
    display: block;
}

.image-label {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--white);
    z-index: 2;
}

.before-label {
    background: rgba(220, 53, 69, 0.9);
}

.after-label {
    background: rgba(40, 167, 69, 0.9);
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin: 3rem 0;
}

.comparison-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    position: relative;
    transition: var(--transition);
}

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

.comparison-card.before {
    border-left: 4px solid #e74c3c;
}

.comparison-card.after {
    border-left: 4px solid #27ae60;
    background: linear-gradient(135deg, #f8fff9, #ffffff);
}

.card-header {
    margin-bottom: 2rem;
}

.badge-before,
.badge-after {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.badge-before {
    background: #fee;
    color: #e74c3c;
}

.badge-after {
    background: #efe;
    color: #27ae60;
}

.card-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-gray);
}

.comparison-list {
    list-style: none;
}

.comparison-list li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 1.5rem;
}

.comparison-list li:last-child {
    border-bottom: none;
}

.before .comparison-list li::before {
    content: "❌";
    position: absolute;
    left: 0;
    top: 0.75rem;
}

.after .comparison-list li::before {
    content: "✅";
    position: absolute;
    left: 0;
    top: 0.75rem;
}

/* Guarantees Section */
.guarantees {
    background: var(--white);
}

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

.guarantee-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-soft);
    border: 2px solid var(--success-green);
    transition: var(--transition);
}

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

.guarantee-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

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

.guarantee-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.guarantee-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    background: var(--light-gray);
}

.faq-grid {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    background: var(--white);
    margin-bottom: 1rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin: 0;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-blue);
    transition: var(--transition);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer.active {
    padding: 0 1.5rem 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-top: 1rem;
}

/* Urgency Section */
.urgency-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/hero-offer.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.urgency-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse-bg 4s ease-in-out infinite;
}

@keyframes pulse-bg {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

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

.urgency-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

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

.urgency-section p {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.urgency-points {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
    margin: 2rem auto;
    text-align: left;
}

.urgency-point {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 1rem;
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

.point-icon {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    margin-right: 0.75rem;
}

.point-icon svg {
    width: 20px;
    height: 20px;
}

.urgency-cta {
    margin: 2rem 0 1rem;
    animation: pulse 3s ease-in-out infinite;
}

.urgency-note {
    font-size: 1rem;
    opacity: 0.9;
    font-style: italic;
}

/* About Section */
.about {
    background: var(--light-gray);
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text {
    padding-right: 2rem;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    text-align: left;
}

.about-intro {
    font-size: 1.3rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.about-highlights {
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.5rem;
}

.highlight-item:last-child {
    margin-bottom: 0;
}

.highlight-icon {
    font-size: 1.5rem;
    width: 40px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.highlight-icon svg {
    width: 24px;
    height: 24px;
}

.about-conclusion {
    font-size: 1.2rem;
    color: var(--dark-gray);
    font-weight: 500;
    margin-bottom: 0;
}

.about-image {
    position: relative;
}

.image-placeholder {
    position: relative;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    transition: var(--transition);
}

.image-placeholder:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 87, 255, 0.15);
}

.image-placeholder img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: var(--transition);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 87, 255, 0.9));
    color: var(--white);
    padding: 2rem;
    text-align: center;
    transform: translateY(100%);
    transition: var(--transition);
}

.image-placeholder:hover .image-overlay {
    transform: translateY(0);
}

.overlay-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.overlay-icon {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay-icon svg {
    width: 24px;
    height: 24px;
}

.overlay-content p {
    margin: 0;
    font-weight: 500;
}

/* Team Showcase */
.team-showcase {
    margin-top: 4rem;
    text-align: center;
}

.team-showcase h3 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 2.5rem;
}

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

.team-member {
    text-align: center;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    background: var(--white);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.member-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1rem;
    border: 4px solid var(--primary-blue);
}

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

.team-member h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.team-member p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Final CTA */
.final-cta {
    background: var(--gradient-bg);
    color: var(--white);
    text-align: center;
}

.final-cta h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-section h3 {
    font-size: 1.8rem;
    color: var(--primary-blue);
}

.footer-section h4 {
    font-size: 1.2rem;
}

.footer-brand p {
    color: #bbb;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.footer-stats {
    display: flex;
    gap: 2rem;
}

.footer-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-stat strong {
    font-size: 1.5rem;
    color: var(--primary-blue);
    font-weight: 700;
}

.footer-stat span {
    font-size: 0.85rem;
    color: #bbb;
    margin-top: 0.25rem;
}

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

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

.footer-links a {
    color: #bbb;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary-blue);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #bbb;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.contact-item:hover {
    color: var(--primary-blue);
}

.contact-item svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 2rem;
    margin-top: 2rem;
}

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

.footer-bottom p {
    color: #bbb;
    margin: 0;
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.footer-legal a {
    color: #bbb;
    text-decoration: none;
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-legal a:hover {
    color: var(--primary-blue);
    background: rgba(37, 99, 235, 0.1);
    border-color: var(--primary-blue);
    transform: translateY(-1px);
}

/* Floating Elements */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    z-index: 1000;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 25px;
    background: var(--primary-blue);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-blue-dark);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .hero {
        padding: 60px 0 80px;
    }
    
    .features-grid,
    .steps-grid,
    .pricing-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .logos {
        gap: 1rem;
    }
    
    .logo-placeholder {
        font-size: 0.7rem;
        padding: 6px 12px;
    }
    
    /* About Section Mobile */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-text {
        padding-right: 0;
        order: 2;
    }
    
    .about-image {
        order: 1;
    }
    
    .about-text h2 {
        font-size: 2rem;
        text-align: center;
    }
    
    .image-placeholder img {
        height: 300px;
    }
    
    /* Visual Comparison Mobile */
    .image-comparison {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .visual-comparison h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .cta-btn {
        padding: 14px 24px;
        font-size: 1rem;
    }
    
    .cta-btn.large {
        padding: 16px 28px;
        font-size: 1.1rem;
    }
    
    .feature-card,
    .pricing-card,
    .testimonial {
        padding: 1.5rem;
    }
}


/* Enhanced Mobile Responsive Fixes */
@media (max-width: 768px) {
    /* Fix horizontal scrolling issues */
    body {
        overflow-x: hidden;
    }
    
    .container {
        max-width: 100%;
        padding: 0 15px;
        overflow-x: hidden;
    }
    
    
    /* Fix section widths */
    section {
        overflow-x: hidden;
    }
    
    /* Fix grid layouts for mobile */
    .comparison-grid,
    .features-grid,
    .steps-grid,
    .testimonials-grid,
    .guarantees-grid,
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Fix image comparison mobile */
    .image-comparison {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Fix text overflow and sizing */
    h1 {
        font-size: 2rem;
        line-height: 1.2;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    h2 {
        font-size: 1.8rem;
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    h3 {
        font-size: 1.4rem;
        line-height: 1.4;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    /* Fix button sizing and text */
    .cta-btn {
        width: 100%;
        max-width: 100%;
        padding: 16px 20px;
        font-size: 1rem;
        white-space: normal;
        text-align: center;
        line-height: 1.3;
        min-height: 50px;
    }
    
    .cta-btn.large {
        padding: 18px 20px;
        font-size: 1.1rem;
        min-height: 55px;
    }
    
    /* Fix specific button text issues */
    .urgency-cta {
        font-size: 0.95rem;
        padding: 16px 15px;
    }
    
    /* Urgency section mobile optimization */
    .urgency-section {
        background-attachment: scroll;
        background-position: center center;
    }
}

@media (max-width: 480px) {
    /* Extra small screens */
    .container {
        padding: 0 10px;
    }
    
    
    /* Further reduce font sizes for very small screens */
    h1 {
        font-size: 1.7rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.2rem;
    }
    
    /* Smaller button text for very small screens */
    .cta-btn {
        font-size: 0.9rem;
        padding: 14px 16px;
        min-height: 45px;
    }
    
    .cta-btn.large {
        font-size: 1rem;
        padding: 16px 18px;
        min-height: 50px;
    }
    
    .urgency-cta {
        font-size: 0.85rem;
        padding: 14px 12px;
    }
    
    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-stats {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .footer-stat {
        flex-direction: row;
        gap: 0.5rem;
        align-items: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 0.8rem;
        align-items: center;
    }
    
    .footer-legal a {
        min-width: 120px;
        text-align: center;
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
}
