.elementor-988814 .elementor-element.elementor-element-b57517a{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-a811cb1 *//* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #2D69FF;
    --secondary-blue: #1E4DB8;
    --accent-yellow: #FFBE11;
    --light-blue: #E8F2FF;
    --background-gray: #F8FAFC;
    --text-dark: #1A202C;
    --text-light: #4A5568;
    --white: #ffffff;
    --danger-red: #E53E3E;
    --success-green: #38A169;
    --warning-orange: #DD6B20;
    
    /* Nigerian Color Additions */
    --nigeria-green: #00C851;
    --naira-gold: #FFD700;
    
    /* Improved Gradients */
    --gradient-primary: linear-gradient(135deg, #2D69FF 0%, #1E4DB8 100%);
    --gradient-hero: linear-gradient(135deg, #2D69FF 0%, #1E4DB8 70%, #00C851 100%);
    --gradient-success: linear-gradient(135deg, #38A169 0%, #2F855A 100%);
    --gradient-warning: linear-gradient(135deg, #FFBE11 0%, #ECC94B 100%);
    --gradient-light: linear-gradient(135deg, #E8F2FF 0%, #ffffff 100%);
    
    /* Enhanced Shadows */
    --shadow-soft: 0 4px 20px rgba(45, 105, 255, 0.08);
    --shadow-medium: 0 8px 30px rgba(45, 105, 255, 0.12);
    --shadow-strong: 0 15px 40px rgba(45, 105, 255, 0.15);
    --shadow-floating: 0 20px 60px rgba(45, 105, 255, 0.20);
    
    /* Typography */
    --font-heading: 'Syne', sans-serif;
    --font-body: 'Kanit', sans-serif;
    
    /* Spacing */
    --border-radius: 12px;
    --border-radius-large: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
    position: relative;
}

.section-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    text-align: center;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 4rem;
    line-height: 1.6;
}

.highlight {
    background: var(--gradient-warning);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.highlight-red {
    color: var(--danger-red);
    font-weight: 800;
}

.accent {
    color: var(--primary-blue);
    font-weight: 600;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(45, 105, 255, 0.1);
    z-index: 1000;
    transition: var(--transition);
    padding: 0.5rem 0;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-medium);
    padding: 0.25rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand-logo {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(45, 105, 255, 0.3);
}

.logo-fallback {
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 1.25rem;
    font-family: var(--font-heading);
}

.brand-info {
    display: flex;
    flex-direction: column;
}

.brand-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-dark);
    line-height: 1.2;
}

.brand-tagline {
    font-size: 0.875rem;
    color: var(--primary-blue);
    font-weight: 500;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-blue);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: var(--primary-blue);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--gradient-primary);
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.nav-cta::after {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: var(--transition);
    border-radius: 2px;
}

/* Section Badges */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--light-blue);
    color: var(--primary-blue);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-badge.warning {
    background: rgba(221, 107, 32, 0.1);
    color: var(--warning-orange);
}

.section-badge.success {
    background: rgba(56, 161, 105, 0.1);
    color: var(--success-green);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
}

.animated-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 190, 17, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 200, 81, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(45, 105, 255, 0.3) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(1deg); }
    66% { transform: translateY(10px) rotate(-1deg); }
}

.hero-content {
    text-align: center;
    color: white;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.25);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-soft);
    color: #ffffff;
}

.hero-badge i {
    color: var(--naira-gold);
    font-size: 1rem;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1.1;
    color: #ffffff;
}

.hero-subtitle h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 1rem;
    font-weight: 700;
    color: #ffffff;
}

.subtitle-text {
    font-size: 1.25rem;
    font-weight: 400;
    color: #E8F2FF;
    margin-bottom: 2rem;
}

.urgency-banner {
    background: rgba(229, 62, 62, 0.9);
    border: 2px solid rgba(229, 62, 62, 1);
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    margin: 2rem auto;
    max-width: 800px;
    display: flex;
    align-items: center;
    gap: 1rem;
    backdrop-filter: blur(10px);
    color: #ffffff;
    font-weight: 500;
}

.urgency-banner i {
    color: var(--naira-gold);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin: 4rem 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem 1.5rem;
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-soft);
    min-width: 200px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--naira-gold);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.stat-location {
    font-size: 0.9rem;
    color: #E8F2FF;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem 2.5rem;
    border-radius: var(--border-radius);
    font-family: var(--font-heading);
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-warning);
    color: var(--text-dark);
    box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-floating);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.btn-subtitle {
    font-size: 0.75rem;
    opacity: 0.8;
    font-weight: 400;
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

.hero-locations {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.location-badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.875rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    color: #E8F2FF;
    font-weight: 500;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid rgba(255, 255, 255, 0.8);
    border-bottom: 2px solid rgba(255, 255, 255, 0.8);
    transform: rotate(45deg);
    margin: 0 auto 0.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: rotate(45deg) translateY(0); }
    40% { transform: rotate(45deg) translateY(-10px); }
    60% { transform: rotate(45deg) translateY(-5px); }
}

/* Problems Section */
.problems {
    padding: 80px 0;
    background: var(--background-gray);
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.problem-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    text-align: center;
    border-top: 4px solid var(--danger-red);
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.problem-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 2rem;
}

.problem-icon.warning {
    background: rgba(229, 62, 62, 0.1);
    color: var(--danger-red);
}

.problem-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.problem-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.problem-impact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(229, 62, 62, 0.05);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--danger-red);
}

.impact-lost {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.impact-number {
    font-weight: 800;
    color: var(--danger-red);
    font-size: 1.25rem;
}

.problems-cta {
    text-align: center;
}

.cta-urgent {
    background: var(--gradient-primary);
    padding: 3rem 2rem;
    border-radius: var(--border-radius-large);
    color: white;
    box-shadow: var(--shadow-strong);
}

.cta-urgent h3 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: 2rem;
    color: white;
}

.btn-urgent {
    background: var(--gradient-warning);
    color: var(--text-dark);
    padding: 1.25rem 2.5rem;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    box-shadow: var(--shadow-soft);
}

.btn-urgent:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Solution Section */
.solution {
    padding: 80px 0;
    background: white;
}

.solution-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.feature-card {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2.5rem;
    background: var(--light-blue);
    border-radius: var(--border-radius-large);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.feature-card:nth-child(even) {
    flex-direction: row-reverse;
    background: var(--background-gray);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-soft);
}

.feature-content h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-content p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.feature-highlight {
    display: inline-block;
    background: var(--gradient-success);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Results Section */
.results {
    padding: 80px 0;
    background: var(--background-gray);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.testimonial-card.featured {
    border-top: 4px solid var(--primary-blue);
    transform: scale(1.02);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.result-badge {
    background: var(--light-blue);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    text-align: center;
}

.result-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    display: block;
    font-family: var(--font-heading);
}

.result-label {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 500;
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
}

.testimonial-rating i {
    color: var(--naira-gold);
    font-size: 1rem;
}

blockquote {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-style: italic;
    position: relative;
}

blockquote::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary-blue);
    position: absolute;
    top: -1rem;
    left: -1rem;
    font-family: serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.author-info p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.firm-name {
    color: var(--primary-blue) !important;
    font-weight: 600 !important;
}

.testimonial-timeline {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(45, 105, 255, 0.1);
}

.timeline-item {
    text-align: center;
    flex: 1;
}

.timeline-period {
    display: block;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.timeline-stat {
    font-weight: 700;
    color: var(--text-dark);
}

.timeline-stat.success {
    color: var(--success-green);
}

.timeline-arrow {
    font-size: 1.5rem;
    color: var(--primary-blue);
    font-weight: bold;
}

.results-summary {
    text-align: center;
    padding: 3rem;
    background: white;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-soft);
}

.results-summary h3 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.results-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.result-stat {
    text-align: center;
}

.result-stat .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    display: block;
    font-family: var(--font-heading);
}

.result-stat .stat-label {
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 500;
}

/* Process Section */
.process {
    padding: 80px 0;
    background: white;
}

.process-timeline {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.process-week {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 2.5rem;
    background: var(--light-blue);
    border-radius: var(--border-radius-large);
    transition: var(--transition);
}

.process-week:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.process-week:nth-child(even) {
    flex-direction: row-reverse;
    background: var(--background-gray);
}

.week-number {
    width: 120px;
    height: 120px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    flex-shrink: 0;
    box-shadow: var(--shadow-soft);
}

.week-content h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.week-tasks {
    list-style: none;
    margin-bottom: 1.5rem;
}

.week-tasks li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-light);
}

.week-tasks i {
    color: var(--success-green);
    font-size: 1rem;
}

.week-outcome {
    background: var(--gradient-success);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    display: inline-block;
}

.process-guarantee {
    text-align: center;
    padding: 3rem;
    background: var(--light-blue);
    border-radius: var(--border-radius-large);
    border: 2px solid var(--primary-blue);
}

.guarantee-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--gradient-primary);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-soft);
}

.process-guarantee p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Packages Section */
.packages {
    padding: 80px 0;
    background: var(--background-gray);
}

.payment-options {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    box-shadow: var(--shadow-soft);
}

.payment-option i {
    color: var(--success-green);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.package-card {
    background: white;
    border-radius: var(--border-radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    position: relative;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.package-card.featured {
    border: 3px solid var(--primary-blue);
    transform: scale(1.05);
}

.package-card.premium {
    border: 3px solid var(--naira-gold);
}

.package-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.package-header {
    padding: 2.5rem 2rem 1.5rem;
    text-align: center;
    background: var(--light-blue);
}

.package-card.featured .package-header {
    background: var(--gradient-primary);
    color: white;
}

.package-card.premium .package-header {
    background: linear-gradient(135deg, var(--naira-gold), #FFA500);
    color: white;
}

.package-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-soft);
}

.package-card.featured .package-icon,
.package-card.premium .package-icon {
    background: white;
    color: var(--primary-blue);
}

.package-card.premium .package-icon {
    color: var(--naira-gold);
}

.package-name {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.package-card.featured .package-name,
.package-card.premium .package-name {
    color: white;
}

.package-tagline {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.package-card.featured .package-tagline,
.package-card.premium .package-tagline {
    color: rgba(255, 255, 255, 0.9);
}

.package-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.package-card.featured .currency,
.package-card.premium .currency {
    color: white;
}

.amount {
    font-size: 3rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--primary-blue);
}

.package-card.featured .amount,
.package-card.premium .amount {
    color: white;
}

.package-payment {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.package-card.featured .package-payment,
.package-card.premium .package-payment {
    color: rgba(255, 255, 255, 0.8);
}

.package-features {
    padding: 2rem;
}

.package-features h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
}

.package-features ul {
    list-style: none;
    margin-bottom: 2rem;
}

.package-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

.package-features i {
    color: var(--success-green);
    font-size: 0.9rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.package-btn {
    width: 100%;
    padding: 1.25rem 2rem;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    margin-bottom: 1.5rem;
}

.package-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.package-btn.featured {
    background: var(--gradient-warning);
    color: var(--text-dark);
}

.package-btn.premium {
    background: linear-gradient(135deg, var(--naira-gold), #FFA500);
}

.package-best-for {
    background: var(--background-gray);
    padding: 1rem;
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    color: var(--text-light);
    text-align: center;
    margin: 0 2rem 2rem;
}

.packages-guarantee {
    text-align: center;
    padding: 3rem;
    background: white;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-soft);
}

.guarantee-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.guarantee-header i {
    color: var(--success-green);
    font-size: 2rem;
}

.guarantee-header h3 {
    font-size: 2rem;
    color: var(--text-dark);
    margin: 0;
}

.guarantee-content h4 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.guarantee-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: var(--gradient-primary);
    color: white;
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.cta-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 2rem;
    color: white;
}

.urgency-notice {
    background: rgba(229, 62, 62, 0.9);
    border: 2px solid rgba(229, 62, 62, 1);
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
}

.urgency-notice i {
    color: var(--naira-gold);
    font-size: 1.25rem;
}

.cta-options {
    margin: 2rem 0;
}

.cta-option {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
}

.cta-option h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: white;
}

.cta-option i {
    color: var(--naira-gold);
}

.cta-option p {
    color: #E8F2FF;
    font-size: 1rem;
    line-height: 1.6;
}

.warning-box {
    background: rgba(229, 62, 62, 0.1);
    border: 2px solid rgba(229, 62, 62, 0.3);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-top: 2rem;
}

.warning-box h4 {
    color: var(--naira-gold);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.warning-box ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.warning-box li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #E8F2FF;
}

.warning-box li::before {
    content: '•';
    color: var(--naira-gold);
    font-weight: bold;
    flex-shrink: 0;
}

.warning-question {
    background: rgba(0, 0, 0, 0.2);
    padding: 1rem;
    border-radius: var(--border-radius);
    text-align: center;
    color: white;
}

/* Form Styles */
.cta-form-container {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-strong);
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h3 {
    font-size: 1.75rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.urgency-timer {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(229, 62, 62, 0.1);
    color: var(--danger-red);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
}

.urgency-timer i {
    animation: pulse 1s infinite;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-family: var(--font-body);
    background: white;
    color: var(--text-dark);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(45, 105, 255, 0.1);
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.btn-submit {
    width: 100%;
    padding: 1.25rem 2rem;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    font-family: var(--font-heading);
    margin: 2rem 0 1.5rem;
    box-shadow: var(--shadow-medium);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-floating);
}

.btn-text {
    font-size: 1.1rem;
}

.form-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.875rem;
    margin-bottom: 2rem;
    text-align: center;
}

.form-guarantee i {
    color: var(--success-green);
}

.contact-alternatives {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.contact-alternatives h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: var(--background-gray);
    border-radius: var(--border-radius);
    text-decoration: none;
    color: var(--text-dark);
    transition: var(--transition);
    font-size: 0.9rem;
    font-weight: 500;
}

.contact-method:hover {
    background: var(--primary-blue);
    color: white;
}

.contact-method.whatsapp:hover {
    background: #25D366;
}

.business-hours {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand .brand-text {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

.brand-subtitle {
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-brand p {
    color: #cbd5e0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-awards {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.award-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #e2e8f0;
}

.award-item i {
    color: var(--naira-gold);
}

.footer-services h4,
.footer-locations h4,
.footer-contact h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    font-weight: 700;
}

.footer-services ul,
.footer-locations ul {
    list-style: none;
}

.footer-services li,
.footer-locations li {
    margin-bottom: 0.5rem;
    color: #cbd5e0;
    transition: var(--transition);
}

.footer-services li:hover,
.footer-locations li:hover {
    color: var(--primary-blue);
    cursor: pointer;
}

.contact-info {
    margin-bottom: 1.5rem;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #cbd5e0;
}

.contact-info i {
    color: var(--primary-blue);
    width: 16px;
    text-align: center;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent-yellow);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #4a5568;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom-content p {
    color: #cbd5e0;
    margin-bottom: 1rem;
}

.footer-keywords {
    font-size: 0.8rem;
    color: #718096;
}

/* Fixed CTA Button */
.fixed-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    display: none;
}

.fixed-cta.show {
    display: block;
    animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.fixed-cta-btn {
    background: var(--gradient-warning);
    color: var(--text-dark);
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    box-shadow: var(--shadow-floating);
    font-size: 1rem;
}

.fixed-cta-btn:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-floating);
}

.fixed-cta-btn i {
    animation: pulse 2s infinite;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-container {
        padding: 1rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .stat-item {
        min-width: 160px;
        padding: 1.5rem 1rem;
    }
    
    .feature-card {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-card:nth-child(even) {
        flex-direction: column;
    }
    
    .nav-brand {
        gap: 0.75rem;
    }
    
    .brand-logo,
    .logo-fallback {
        width: 40px;
        height: 40px;
    }
    
    .cta-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-strong);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero {
        padding: 100px 0 60px;
        text-align: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    
    .stat-item {
        max-width: 250px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 350px;
    }
    
    .problems-grid,
    .testimonials-grid,
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .process-week {
        flex-direction: column;
        text-align: center;
    }
    
    .process-week:nth-child(even) {
        flex-direction: column;
    }
    
    .week-number {
        width: 100px;
        height: 100px;
        font-size: 1.25rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .results-stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .contact-methods {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-method {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-badge {
        padding: 0.5rem 1.5rem;
        font-size: 0.8rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .urgency-banner {
        padding: 1rem 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .fixed-cta {
        bottom: 1rem;
        right: 1rem;
    }
    
    .fixed-cta-btn {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }
    
    .brand-logo,
    .logo-fallback {
        width: 35px;
        height: 35px;
    }
    
    .brand-text {
        font-size: 1.25rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle h2 {
        font-size: 1.5rem;
    }
    
    .package-card.featured {
        transform: none;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .fixed-cta,
    .hero-background,
    .animated-bg {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .hero {
        background: none !important;
        color: black !important;
    }
    
    * {
        box-shadow: none !important;
    }
}/* End custom CSS */