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

body {
    font-family: 'Inter', system-ui, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Buttons */
.btn-primary {
    background: #0284c7;
    color: white;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
}

.btn-primary:hover {
    background: #0369a1;
    transform: translateY(-1px);
}

.btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-secondary {
    background: #f3f4f6;
    color: #1f2937;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s;
}

.btn-secondary:hover {
    background: #e5e7eb;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.text-primary {
    color: #0284c7;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.banner {
    background: #0284c7;
    color: white;
    text-align: center;
    padding: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.navbar {
    background: white;
    border-bottom: 1px solid #e5e7eb;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

.logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    text-decoration: none;
}

.nav-menu {
    display: none;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .nav-menu {
        display: flex;
    }
    
    .nav-cta {
        display: block;
    }
    
    .mobile-menu-btn {
        display: none;
    }
}

.nav-link {
    color: #374151;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.2s;
}

.nav-link:hover {
    color: #0284c7;
}

.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.dropdown-toggle i {
    font-size: 0.75rem;
    transition: transform 0.2s;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    width: 32rem;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1rem;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.25rem;
    color: #374151;
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.2s;
    text-transform: none;
    letter-spacing: normal;
    border: 1px solid #f3f4f6;
    border-radius: 0.5rem;
    background: #fafbfc;
    min-height: 5rem;
    position: relative;
}

.dropdown-menu a:hover {
    background: #f0f9ff;
    border-color: #0284c7;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.15);
}

.dropdown-menu a i {
    color: #0284c7;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.dropdown-menu a .service-title {
    font-weight: 600;
    font-size: 0.95rem;
    color: #1f2937;
    line-height: 1.3;
    margin-bottom: 0.25rem;
}

.dropdown-menu a small {
    display: block;
    color: #6b7280;
    font-size: 0.75rem;
    line-height: 1.4;
    font-weight: 400;
}

.nav-cta {
    display: none;
}

.mobile-menu-btn {
    display: block;
    font-size: 1.25rem;
    color: #374151;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f9fafb 0%, #e5e7eb 100%);
    padding: 4rem 0;
}

.hero-content {
    text-align: center;
    margin-bottom: 4rem;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #4b5563;
    margin-bottom: 2rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

/* Problems Section */
.problems-section {
    margin-top: 4rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    text-align: center;
    margin-bottom: 3rem;
}

.problems-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.problem-item {
    background: white;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-left: 3px solid #0284c7;
}

.problem-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.problem-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.problem-content p {
    color: #4b5563;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.problem-content p:last-child {
    margin-bottom: 0;
}

/* Solutions Section */
.solutions {
    background: white;
    padding: 4rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: #4b5563;
    max-width: 48rem;
    margin: 0 auto;
}

.solutions-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.solution-item {
    background: #f9fafb;
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.solution-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.solution-icon {
    width: 3rem;
    height: 3rem;
    background: #0284c7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.25rem;
}

.solution-item h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.solution-item p {
    color: #4b5563;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

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

/* How It Works Section */
.how-it-works {
    background: white;
    padding: 4rem 0;
}

/* 4-Step System Overview */
.system-overview {
    margin-bottom: 5rem;
    text-align: center;
}

.system-overview h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 1rem;
}

.system-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Steps Flow */
.steps-flow {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.step-flow-item {
    position: relative;
    text-align: center;
    padding: 2rem 1rem;
    background: #f9fafb;
    border-radius: 1rem;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.step-flow-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #0284c7;
}

.step-flow-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0284c7, #0369a1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.step-flow-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.step-flow-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #0284c7;
    margin-bottom: 1rem;
}

.step-flow-content p {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.step-flow-arrow {
    position: absolute;
    top: 50%;
    right: -1rem;
    transform: translateY(-50%);
    color: #0284c7;
    font-size: 1.5rem;
    z-index: 1;
}

.step-flow-item:last-child .step-flow-arrow {
    display: none;
}

/* Omnichannel Tags */
.omnichannel-tags {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.channel-tag {
    background: #0284c7;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* Omnichannel Highlight */
.omnichannel-highlight {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border-radius: 1rem;
    padding: 3rem;
    border: 1px solid #bae6fd;
}

.omnichannel-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    text-align: center;
}

.omnichannel-content p {
    font-size: 1.125rem;
    color: #4b5563;
    text-align: center;
    margin-bottom: 2rem;
}

.channel-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.channel-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.channel-icon {
    width: 50px;
    height: 50px;
    background: #0284c7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.channel-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.channel-info p {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.5;
}

/* Responsive Design for 4-Step System */
@media (max-width: 1024px) {
    .steps-flow {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .step-flow-arrow {
        display: none;
    }
    
    .channel-details {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .steps-flow {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .system-overview h2 {
        font-size: 2rem;
    }
    
    .system-subtitle {
        font-size: 1rem;
    }
    
    .omnichannel-highlight {
        padding: 2rem 1rem;
    }
    
    .channel-detail {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }
}

/* Process Overview */
.process-overview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 3rem 0;
    align-items: center;
}

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

.process-placeholder {
    background: #f9fafb;
    border: 2px dashed #d1d5db;
    border-radius: 1rem;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    min-height: 250px;
    justify-content: center;
}

.process-placeholder i {
    font-size: 3rem;
    color: #0284c7;
}

.process-placeholder span {
    font-weight: 600;
    color: #4b5563;
    text-align: center;
}

.process-intro h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.process-intro p {
    font-size: 1.125rem;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 2rem;
}

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

.stat-item {
    text-align: center;
    padding: 1rem;
    background: #f9fafb;
    border-radius: 0.5rem;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0284c7;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: #4b5563;
    font-weight: 500;
}

/* Detailed Steps */
.steps-detailed {
    margin: 4rem 0;
}

.step-detailed {
    margin-bottom: 4rem;
    padding: 3rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.step-detailed:last-child {
    border-bottom: none;
}

.step-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
    align-items: center;
}

.step-detailed.reverse .step-content {
    grid-template-columns: 400px 1fr;
}

.step-number {
    width: 4rem;
    height: 4rem;
    background: #0284c7;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}

.step-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.step-subtitle {
    font-size: 1.125rem;
    color: #0284c7;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.step-description p {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.step-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.step-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #4b5563;
    line-height: 1.6;
}

.step-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0284c7;
    font-weight: 700;
}

.step-outcome {
    background: #f0f9ff;
    border-left: 4px solid #0284c7;
    padding: 1rem 1.5rem;
    margin-top: 1.5rem;
    border-radius: 0 0.5rem 0.5rem 0;
}

.step-outcome strong {
    color: #0284c7;
}

.visual-placeholder {
    background: #f9fafb;
    border: 2px dashed #d1d5db;
    border-radius: 1rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    min-height: 200px;
    justify-content: center;
}

.visual-placeholder i {
    font-size: 2.5rem;
    color: #0284c7;
}

.visual-placeholder span {
    font-weight: 600;
    color: #4b5563;
    text-align: center;
    line-height: 1.4;
}

/* Success Metrics */
.success-metrics {
    background: #f9fafb;
    padding: 3rem;
    border-radius: 1rem;
    margin: 4rem 0;
}

.success-metrics h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1f2937;
    text-align: center;
    margin-bottom: 2rem;
}

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

.metric-item {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.metric-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.metric-icon {
    width: 3rem;
    height: 3rem;
    background: #0284c7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.25rem;
}

.metric-item h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.metric-item p {
    color: #4b5563;
    line-height: 1.6;
}

/* How It Works CTA */
.how-it-works-cta {
    background: linear-gradient(135deg, #0284c7, #0369a1);
    color: white;
    padding: 3rem;
    border-radius: 1rem;
    text-align: center;
    margin-top: 4rem;
}

.cta-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Services Section */
.services {
    background: white;
    padding: 4rem 0;
}

.services-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-item {
    background: #f9fafb;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 4rem;
    height: 4rem;
    background: #0284c7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.service-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.service-tags span {
    background: #e5e7eb;
    color: #374151;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.875rem;
}

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

/* Results Section */
.results {
    background: #f9fafb;
    padding: 4rem 0;
}

.results em {
    color: #0284c7;
    font-style: italic;
}

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

.result-item {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.result-value {
    font-size: 3rem;
    font-weight: 700;
    color: #0284c7;
    margin-bottom: 1rem;
}

.result-item p {
    font-size: 0.875rem;
    color: #4b5563;
}

/* Testimonials */
.testimonials {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    padding: 3rem;
    max-width: 64rem;
    margin: 0 auto;
}

.testimonial-content {
    text-align: center;
    margin-bottom: 2rem;
}

.testimonial-quote {
    font-size: 3rem;
    color: #0284c7;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1.25rem;
    color: #374151;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    margin-bottom: 2rem;
}

.author-name {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.author-title {
    font-size: 0.875rem;
    color: #4b5563;
}

.testimonial-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.nav-btn {
    background: #f3f4f6;
    border: none;
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    color: #4b5563;
}

.nav-btn:hover {
    background: #e5e7eb;
}

.nav-dots {
    display: flex;
    gap: 0.5rem;
}

.nav-dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    border: none;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.2s;
}

.nav-dot.active {
    background: #0284c7;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
}

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

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

.footer-column h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-column p {
    color: #d1d5db;
    margin-bottom: 1rem;
}

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

.contact-item {
    display: flex;
    gap: 0.5rem;
    color: #d1d5db;
}

.contact-item i {
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #60a5fa;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 2rem;
    border-top: 1px solid #374151;
    padding-top: 2rem;
}

.footer-description h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.footer-description p {
    color: #d1d5db;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

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

.social-links a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.2s;
}

.social-links a:hover {
    color: #60a5fa;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .problems-grid,
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .problem-item,
    .solution-item {
        padding: 1.25rem;
    }
    
    .solution-icon {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1rem;
    }
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    .problems-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .footer-bottom {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .nav-menu {
        display: flex;
    }
    
    .nav-cta {
        display: block;
    }
    
    .mobile-menu-btn {
        display: none;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .problems-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* Mobile Menu */
.nav-menu.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid #e5e7eb;
    padding: 1rem 0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.nav-menu.active .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    margin-left: 1rem;
    margin-top: 0.5rem;
}

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

.problem-item,
.solution-item,
.step-item,
.result-item {
    animation: fadeInUp 0.6s ease forwards;
}

/* Additional animations for staggered effect */
.problem-item:nth-child(2) { animation-delay: 0.1s; }
.problem-item:nth-child(3) { animation-delay: 0.2s; }
.problem-item:nth-child(4) { animation-delay: 0.3s; }
.problem-item:nth-child(5) { animation-delay: 0.4s; }

.solution-item:nth-child(2) { animation-delay: 0.1s; }
.solution-item:nth-child(3) { animation-delay: 0.2s; }
.solution-item:nth-child(4) { animation-delay: 0.3s; }
.solution-item:nth-child(5) { animation-delay: 0.4s; }

.step-item:nth-child(2) { animation-delay: 0.2s; }
.step-item:nth-child(3) { animation-delay: 0.4s; }

/* How It Works Responsive Design */
@media (max-width: 768px) {
    .process-overview {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .step-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .step-detailed.reverse .step-content {
        grid-template-columns: 1fr;
    }
    
    .process-stats {
        grid-template-columns: 1fr;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .success-metrics {
        padding: 2rem;
    }
    
    .how-it-works-cta {
        padding: 2rem;
    }
    
    .step-detailed {
        padding: 2rem 0;
    }
    
    .process-placeholder,
    .visual-placeholder {
        padding: 2rem 1rem;
        min-height: 150px;
    }
}

/* Page-specific styles for separate pages */

/* Breadcrumb */
.breadcrumb {
    background: #f9fafb;
    padding: 1rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.breadcrumb-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.breadcrumb-content a {
    color: #0284c7;
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb-content a:hover {
    color: #0369a1;
}

.separator {
    color: #9ca3af;
}

.current {
    color: #6b7280;
    font-weight: 500;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 4rem 0;
    text-align: center;
}

.page-header-content h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.25rem;
    color: #4b5563;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Timeline Section */
.timeline-section {
    background: #f9fafb;
    padding: 3rem;
    border-radius: 1rem;
    margin: 4rem 0;
}

.timeline-section h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1f2937;
    text-align: center;
    margin-bottom: 3rem;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #0284c7;
}

.timeline-item {
    position: relative;
    padding-left: 80px;
    margin-bottom: 3rem;
}

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

.timeline-marker {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background: white;
    border: 3px solid #0284c7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-number {
    font-weight: 700;
    color: #0284c7;
    font-size: 1.25rem;
}

.timeline-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

/* FAQ Section */
.faq-section {
    margin: 4rem 0;
}

.faq-section h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1f2937;
    text-align: center;
    margin-bottom: 3rem;
}

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

.faq-item {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 1rem;
    border-left: 4px solid #0284c7;
}

.faq-item h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.faq-item p {
    color: #4b5563;
    line-height: 1.6;
}

/* Active navigation link */
.nav-link.active {
    color: #0284c7;
    font-weight: 600;
}

/* How It Works CTA Section for Home Page */
.how-it-works-cta-section {
    background: #f9fafb;
    padding: 4rem 0;
}

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

.cta-preview-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.cta-preview-content > p {
    font-size: 1.25rem;
    color: #4b5563;
    margin-bottom: 3rem;
}

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

.preview-step {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.preview-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.step-icon {
    width: 4rem;
    height: 4rem;
    background: #0284c7;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
}

.preview-step h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.preview-step p {
    color: #4b5563;
    line-height: 1.6;
}

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

.preview-subtitle {
    margin-top: 1rem;
    color: #6b7280;
    font-size: 0.875rem;
}

/* Responsive for new sections */
@media (max-width: 768px) {
    .page-header-content h1 {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .timeline-section {
        padding: 2rem;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        padding-left: 60px;
    }
    
    .timeline-marker {
        width: 40px;
        height: 40px;
    }
    
    .timeline-number {
        font-size: 1rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .preview-steps {
        grid-template-columns: 1fr;
    }
    
    .cta-preview-content h2 {
        font-size: 2rem;
    }
}

/* Service Pages Styles */
.service-hero {
    background: linear-gradient(135deg, #f9fafb 0%, #e5e7eb 100%);
    padding: 6rem 0 4rem;
    text-align: center;
}

.service-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.service-icon {
    width: 5rem;
    height: 5rem;
    background: #0284c7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.service-icon i {
    font-size: 2.5rem;
    color: white;
}

.service-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 1rem;
}

.service-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.service-hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.service-content {
    padding: 4rem 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.content-main h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.content-main h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin: 2rem 0 1rem;
}

.content-main p {
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* ICP Section Layout */
.icp-section-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    margin-top: 2rem;
}

.icp-text-content {
    flex: 1;
    min-width: 300px;
}

.icp-text-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.icp-text-content p {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.image-placeholder {
    flex: 1;
    min-width: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* Remove previous placeholder styles if they interfere */
    background: none; /* Override if there's a default */
    border: none; /* Override if there's a default */
    padding: 0; /* Override if there's a default */
}

.image-placeholder img {
    max-width: 100%;
    height: auto;
    border-radius: 0.75rem; /* Optional: adds a subtle rounded corner */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Optional: adds a subtle shadow */
}

@media (max-width: 768px) {
    .icp-section-layout {
        flex-direction: column;
        text-align: center;
    }

    .icp-text-content,
    .image-placeholder {
        min-width: unset;
        width: 100%;
    }

    .icp-text-content h3 {
        font-size: 1.5rem;
    }

    .icp-text-content p {
        font-size: 0.95rem;
    }
}

.process-steps {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.process-step {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: #f9fafb;
    border-radius: 0.5rem;
    border-left: 4px solid #0284c7;
}

.step-number {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    background: #0284c7;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1rem;
}

.step-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #6b7280;
    margin: 0;
}

.benefits-list {
    display: grid;
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #f0f9ff;
    border-radius: 0.375rem;
}

.benefit-item i {
    color: #0284c7;
    font-size: 1rem;
}

.benefit-item span {
    color: #1f2937;
    font-weight: 500;
}

.content-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.cta-box,
.stats-box {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.cta-box h3,
.stats-box h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.cta-box p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 1rem 0;
    border-bottom: 1px solid #f3f4f6;
}

.stat-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #0284c7;
}

.stat-label {
    font-size: 0.875rem;
    color: #6b7280;
}

/* New Service Page Styles */
.problem-section {
    padding: 4rem 0;
    background: #f8fafc;
}

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

.problem-highlight {
    display: flex;
    gap: 1rem;
    background: #fee2e2;
    padding: 2rem;
    border-radius: 0.75rem;
    border-left: 4px solid #ef4444;
    margin: 2rem 0;
}

.problem-highlight i {
    color: #ef4444;
    font-size: 2rem;
    margin-top: 0.5rem;
}

.highlight {
    color: #ef4444;
    font-weight: 700;
}

.question-box {
    background: #dbeafe;
    padding: 1.5rem;
    border-radius: 0.5rem;
    border-left: 4px solid #3b82f6;
}

.question-box h4 {
    color: #1e40af;
    margin: 0;
    font-size: 1.125rem;
}

.image-placeholder {
    background: #f3f4f6;
    border: 2px dashed #d1d5db;
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
    color: #6b7280;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.image-placeholder.small {
    min-height: 100px;
    padding: 1rem;
}

.image-placeholder i {
    font-size: 2rem;
    color: #9ca3af;
}

.image-placeholder.small i {
    font-size: 1.5rem;
}

.lead-generation-section {
    padding: 4rem 0;
}

.importance-grid {
    margin-top: 2rem;
}

.importance-item {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
}

.tech-company-note {
    background: #fef3c7;
    padding: 1.5rem;
    border-radius: 0.5rem;
    border-left: 4px solid #f59e0b;
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
}

.tech-company-note i {
    color: #f59e0b;
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.benefits-section {
    padding: 4rem 0;
    background: #f9fafb;
}

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

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.2s;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    width: 4rem;
    height: 4rem;
    background: #0284c7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.benefit-icon i {
    color: white;
    font-size: 2rem;
}

.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.benefit-image {
    margin-top: 1.5rem;
}

.definition-section {
    padding: 4rem 0;
}

.definition-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.analogy-box {
    background: #f0f9ff;
    padding: 2rem;
    border-radius: 0.75rem;
    border: 1px solid #0284c7;
    margin: 2rem 0;
}

.analogy-box h3 {
    color: #0284c7;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.how-it-works-section {
    padding: 4rem 0;
    background: #f8fafc;
}

.how-it-works-intro {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-top: 2rem;
    align-items: center;
}

.result-highlight {
    background: #dcfce7;
    padding: 1.5rem;
    border-radius: 0.5rem;
    border-left: 4px solid #22c55e;
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    align-items: center;
}

.result-highlight i {
    color: #22c55e;
    font-size: 1.5rem;
}

.process-section {
    padding: 4rem 0;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.process-phase {
    text-align: center;
    position: relative;
}

.phase-number {
    width: 4rem;
    height: 4rem;
    background: #0284c7;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.phase-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.phase-image {
    margin-top: 1.5rem;
}

.target-audience-section {
    padding: 4rem 0;
    background: #f9fafb;
}

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

.audience-card {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.audience-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: #f3f4f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.audience-icon i {
    color: #0284c7;
    font-size: 1.5rem;
}

.audience-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.key-benefits-section {
    padding: 4rem 0;
}

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

.key-benefit {
    display: flex;
    gap: 1rem;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 0.75rem;
    border-left: 4px solid #0284c7;
}

.key-benefit i {
    color: #0284c7;
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.key-benefit h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
    color: white;
}

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

.cta-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

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

.cta-stats {
    display: grid;
    gap: 1.5rem;
}

.cta-stats .stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 0.5rem;
}

.cta-stats .stat-number {
    color: white;
    font-size: 2.5rem;
}

.cta-stats .stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
}

/* Responsive Design for Service Pages */
@media (max-width: 768px) {
    .service-hero {
        padding: 4rem 0 3rem;
    }
    
    .service-hero h1 {
        font-size: 2rem;
    }
    
    .service-subtitle {
        font-size: 1.125rem;
    }
    
    .service-hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .content-grid,
    .problem-content,
    .definition-content,
    .how-it-works-intro,
    .cta-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .importance-item {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid,
    .audience-grid,
    .key-benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .problem-highlight,
    .tech-company-note {
        flex-direction: column;
        text-align: center;
    }
    
    .result-highlight,
    .key-benefit {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}

/* Cold Email Specific Styles */
.hero-extended-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.hero-extended-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.time-waste-warning {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #fef3c7;
    padding: 1.5rem;
    border-radius: 0.5rem;
    border-left: 4px solid #f59e0b;
    margin: 1.5rem 0;
}

.time-waste-warning i {
    color: #f59e0b;
    font-size: 1.5rem;
}

.time-waste-warning h3 {
    margin: 0;
    color: #92400e;
}

.problem-solution-section {
    padding: 4rem 0;
    background: #f9fafb;
}

.problem-solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 3rem 0;
}

.problem-card,
.solution-card {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.problem-card {
    border-left: 4px solid #ef4444;
}

.solution-card {
    border-left: 4px solid #22c55e;
}

.problem-icon,
.solution-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.problem-icon {
    background: #fee2e2;
}

.problem-icon i {
    color: #ef4444;
    font-size: 1.5rem;
}

.solution-icon {
    background: #dcfce7;
}

.solution-icon i {
    color: #22c55e;
    font-size: 1.5rem;
}

.problem-card ul,
.solution-card ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.problem-card li,
.solution-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f3f4f6;
}

.problem-card li:last-child,
.solution-card li:last-child {
    border-bottom: none;
}

.ai-highlight {
    background: #f0f9ff;
    padding: 2rem;
    border-radius: 0.75rem;
    border: 1px solid #0284c7;
    margin-top: 3rem;
    display: flex;
    gap: 1rem;
    align-items: center;
}

.ai-highlight i {
    color: #0284c7;
    font-size: 2rem;
}

.strategy-section {
    padding: 4rem 0;
    text-align: center;
}

.strategy-subtitle {
    max-width: 800px;
    margin: 2rem auto;
}

.strategy-subtitle h3 {
    color: #0284c7;
    margin-bottom: 1rem;
}

.strategy-image-main {
    margin-top: 3rem;
}

.features-section {
    padding: 4rem 0;
    background: #f8fafc;
}

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #0284c7;
}

.feature-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: #0284c7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    color: white;
    font-size: 1.5rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.feature-image {
    margin-top: 1.5rem;
}

.success-stories-section {
    padding: 4rem 0;
}

.success-intro {
    text-align: center;
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 800px;
    margin: 2rem auto;
}

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

.success-case {
    background: white;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
}

.case-header {
    padding: 2rem;
    background: #f8fafc;
    border-bottom: 1px solid #e5e7eb;
}

.case-icon {
    width: 3rem;
    height: 3rem;
    background: #0284c7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.case-icon i {
    color: white;
    font-size: 1.25rem;
}

.case-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.case-goal {
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

.case-results {
    display: flex;
    justify-content: space-around;
    padding: 2rem;
}

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

.result-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #0284c7;
}

.result-label {
    font-size: 0.875rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.deliverability-section {
    padding: 4rem 0;
    background: #f9fafb;
}

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

.deliverability-item {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.deliverability-icon {
    width: 4rem;
    height: 4rem;
    background: #dcfce7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.deliverability-icon i {
    color: #22c55e;
    font-size: 1.5rem;
}

.deliverability-item h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.deliverability-image {
    margin-top: 3rem;
}

.how-it-works-detailed {
    padding: 4rem 0;
}

.detailed-process {
    margin-top: 3rem;
}

.process-step-detailed {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: center;
}

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

.step-number-large {
    width: 5rem;
    height: 5rem;
    background: #0284c7;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step-content-detailed h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.step-content-detailed p {
    color: #6b7280;
    line-height: 1.7;
}

.testimonials-cta-section {
    padding: 4rem 0;
    background: #f8fafc;
}

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

.testimonials-cta {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.pricing-cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    text-align: center;
}

.pricing-cta-content h2,
.pricing-cta-content h3 {
    color: white;
}

.pricing-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 3rem 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
}

.pricing-feature i {
    font-size: 2rem;
    color: #60a5fa;
    margin-bottom: 0.5rem;
}

.pricing-feature span {
    font-size: 0.875rem;
    text-align: center;
}

.pricing-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* Cold Email Responsive Design */
@media (max-width: 768px) {
    .hero-extended-content,
    .problem-solution-grid,
    .testimonials-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .success-cases {
        grid-template-columns: 1fr;
    }
    
    .deliverability-features {
        grid-template-columns: 1fr;
    }
    
    .process-step-detailed {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .pricing-features-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .time-waste-warning,
    .ai-highlight {
        flex-direction: column;
        text-align: center;
    }
    
    .testimonials-cta,
    .pricing-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Cold Calling Specific Styles */
.cold-calling-hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, #fef3c7 0%, #fed7aa 100%);
}

.cold-calling-hero-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-main-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.why-choose-section {
    padding: 4rem 0;
    background: #f8fafc;
}

.before-after-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 3rem 0;
}

.before-card,
.after-card {
    background: white;
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

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

.after-card {
    border-left: 4px solid #22c55e;
}

.before-icon,
.after-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.before-icon {
    background: #fee2e2;
}

.before-icon i {
    color: #ef4444;
    font-size: 2rem;
}

.after-icon {
    background: #dcfce7;
}

.after-icon i {
    color: #22c55e;
    font-size: 2rem;
}

.comparison-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #f3f4f6;
}

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

.comparison-item i {
    font-size: 1.25rem;
}

.before-card .comparison-item i {
    color: #ef4444;
}

.after-card .comparison-item i {
    color: #22c55e;
}

.key-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.key-benefit-item {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.key-benefit-item .benefit-icon {
    width: 4rem;
    height: 4rem;
    background: #f59e0b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.key-benefit-item .benefit-icon i {
    color: white;
    font-size: 1.5rem;
}

.key-benefit-item h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.method-technology-section {
    padding: 4rem 0;
}

.method-header {
    text-align: center;
    margin-bottom: 3rem;
}

.method-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 800px;
    margin: 1rem auto 0;
}

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

.method-feature {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 0.75rem;
    border-left: 4px solid #f59e0b;
}

.method-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: #f59e0b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.method-icon i {
    color: white;
    font-size: 1.5rem;
}

.method-feature h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.method-image {
    margin-top: 1.5rem;
}

.service-process-section {
    padding: 4rem 0;
    background: #f9fafb;
}

.process-intro {
    text-align: center;
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 3rem;
}

.process-timeline {
    display: grid;
    gap: 3rem;
    margin-top: 3rem;
}

.process-step-large {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    display: grid;
    grid-template-columns: 200px 1fr 300px;
    align-items: center;
    gap: 2rem;
}

.step-header {
    padding: 2rem;
    background: #f59e0b;
    color: white;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.step-number-xl {
    width: 4rem;
    height: 4rem;
    background: white;
    color: #f59e0b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.step-content-large {
    padding: 2rem;
}

.step-content-large p {
    color: #1f2937;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.step-content-large ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.step-content-large li {
    padding: 0.5rem 0;
    color: #6b7280;
    position: relative;
    padding-left: 1.5rem;
}

.step-content-large li:before {
    content: "•";
    color: #f59e0b;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.step-image-large {
    padding: 2rem;
}

.success-stories-cold-calling {
    padding: 4rem 0;
}

.success-cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.success-case-card {
    background: white;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
}

.success-case-card .case-header {
    padding: 2rem;
    background: #f8fafc;
    text-align: center;
}

.case-sector-icon {
    width: 4rem;
    height: 4rem;
    background: #f59e0b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.case-sector-icon i {
    color: white;
    font-size: 1.5rem;
}

.success-case-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
}

.case-results {
    padding: 2rem;
}

.case-duration {
    text-align: center;
    font-size: 1.125rem;
    font-weight: 600;
    color: #f59e0b;
    margin-bottom: 1.5rem;
}

.case-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.case-stats .stat {
    text-align: center;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 0.5rem;
}

.case-stats .stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
}

.case-stats .stat-label {
    font-size: 0.875rem;
    color: #6b7280;
}

.testimonials-section {
    padding: 4rem 0;
    background: #f8fafc;
}

.testimonial-showcase {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 3rem;
}

.testimonial-card {
    background: white;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.testimonial-quote i {
    color: #f59e0b;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.testimonial-quote blockquote {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #374151;
    margin: 0;
    font-style: italic;
}

.testimonial-author {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.author-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
}

.author-title {
    color: #6b7280;
    margin: 0.25rem 0;
}

.author-company {
    color: #f59e0b;
    font-weight: 500;
}

.pricing-packages-section {
    padding: 4rem 0;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.package-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 2px solid #e5e7eb;
    position: relative;
}

.package-card.featured {
    border-color: #f59e0b;
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #f59e0b;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.package-header {
    padding: 2rem;
    text-align: center;
    background: #f8fafc;
}

.package-card.featured .package-header {
    background: #fef3c7;
}

.package-icon {
    width: 4rem;
    height: 4rem;
    background: #f59e0b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.package-icon i {
    color: white;
    font-size: 1.5rem;
}

.package-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
}

.package-features {
    padding: 2rem;
}

.package-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.package-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f3f4f6;
}

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

.package-features li i {
    color: #22c55e;
    font-size: 1rem;
}

.package-cta {
    padding: 2rem;
    text-align: center;
}

.btn-outline {
    background: transparent;
    color: #f59e0b;
    border: 2px solid #f59e0b;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s;
}

.btn-outline:hover {
    background: #f59e0b;
    color: white;
}

.final-cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    text-align: center;
}

.final-cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.final-cta-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

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

.cta-feature i {
    font-size: 2rem;
    color: #fbbf24;
}

.cta-feature span {
    font-size: 1rem;
    font-weight: 500;
}

/* Cold Calling Responsive Design */
@media (max-width: 768px) {
    .cold-calling-hero-content,
    .before-after-comparison,
    .testimonial-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .key-benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .method-features {
        grid-template-columns: 1fr;
    }
    
    .process-step-large {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .step-header {
        padding: 2rem;
    }
    
    .success-cases-grid,
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .package-card.featured {
        transform: none;
    }
    
    .hero-main-content h2 {
        font-size: 2rem;
    }
    
    .final-cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 1.5rem;
    }
    
         .hero-cta-buttons,
     .final-cta-buttons {
         flex-direction: column;
         align-items: center;
     }
 }

/* Lead Generation Specific Styles */
.lead-generation-hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, #e0f2fe 0%, #cffafe 100%);
}

.lead-hero-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-text-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.what-is-lead-generation {
    padding: 4rem 0;
    background: #f8fafc;
}

.what-is-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.lead-definition {
    font-size: 1.25rem;
    color: #374151;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.importance-highlight {
    display: flex;
    gap: 1rem;
    background: #fef3c7;
    padding: 1.5rem;
    border-radius: 0.5rem;
    border-left: 4px solid #f59e0b;
    margin-top: 2rem;
}

.importance-highlight i {
    color: #f59e0b;
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.why-outsource-section {
    padding: 4rem 0;
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 3rem;
}

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

.benefit-card-detailed {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    transition: transform 0.2s;
}

.benefit-card-detailed:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.benefit-icon-large {
    position: relative;
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.benefit-icon-large i {
    color: white;
    font-size: 1.5rem;
}

.benefit-icon-large .emoji {
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 1.5rem;
    background: white;
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.benefit-card-detailed h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.benefit-details {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.benefit-details li {
    padding: 0.5rem 0;
    color: #6b7280;
    position: relative;
    padding-left: 1.5rem;
}

.benefit-details li:before {
    content: "✓";
    color: #06b6d4;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.benefit-visual {
    margin-top: 1.5rem;
}

.how-it-works-lead {
    padding: 4rem 0;
    background: #f9fafb;
}

.how-it-works-header {
    text-align: center;
    margin-bottom: 3rem;
}

.process-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 800px;
    margin: 1rem auto 0;
}

.process-flow {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

.process-step-advanced {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    display: grid;
    grid-template-columns: 150px 1fr 200px;
    align-items: center;
    gap: 2rem;
}

.step-icon-advanced {
    position: relative;
    width: 4rem;
    height: 4rem;
    background: #06b6d4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem auto;
}

.step-icon-advanced i {
    color: white;
    font-size: 1.5rem;
}

.step-icon-advanced .step-emoji {
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 1.25rem;
    background: white;
    border-radius: 50%;
    width: 1.75rem;
    height: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.step-content-advanced {
    padding: 2rem;
}

.step-content-advanced h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.step-content-advanced p {
    color: #6b7280;
    line-height: 1.6;
}

.step-visual-advanced {
    padding: 2rem;
}

.success-stories-lead {
    padding: 4rem 0;
}

.success-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 3rem;
}

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

.testimonial-card-detailed {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 1rem;
    background: #f8fafc;
}

.quote-icon i {
    color: #06b6d4;
    font-size: 2rem;
}

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

.metric-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #06b6d4;
}

.metric-label {
    font-size: 0.875rem;
    color: #6b7280;
}

.testimonial-card-detailed blockquote {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #374151;
    margin: 0;
    padding: 0 2rem 1rem;
    font-style: italic;
}

.testimonial-author-detailed {
    padding: 1rem 2rem 2rem;
    border-top: 1px solid #e5e7eb;
}

.author-name {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
}

.author-company {
    color: #06b6d4;
    font-weight: 500;
    margin-top: 0.25rem;
}

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

.faq-section {
    padding: 4rem 0;
    background: #f8fafc;
}

.faq-grid {
    display: grid;
    gap: 1rem;
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    background: white;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    transition: background 0.2s;
}

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

.faq-question h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
}

.faq-question i {
    color: #06b6d4;
    transition: transform 0.2s;
}

.faq-answer {
    padding: 0 2rem 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.faq-answer p {
    color: #6b7280;
    line-height: 1.6;
    margin: 1rem 0 0;
}

.meet-team-section {
    padding: 4rem 0;
}

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

.team-text h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.team-text p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.team-cta {
    margin-top: 2rem;
}

.final-cta-lead {
    padding: 4rem 0;
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    color: white;
    text-align: center;
}

.final-cta-lead h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.final-cta-lead p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.cta-guarantees {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

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

.guarantee-item i {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.guarantee-item span {
    font-size: 1rem;
    font-weight: 500;
}

/* Lead Generation Responsive Design */
@media (max-width: 768px) {
    .lead-hero-content,
    .what-is-content,
    .team-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .process-step-advanced {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-text-content h2 {
        font-size: 2rem;
    }
    
    .final-cta-lead h2 {
        font-size: 2rem;
    }
    
    .cta-guarantees {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .hero-cta-buttons,
    .final-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .importance-highlight {
        flex-direction: column;
        text-align: center;
    }
}

/* Customer List Creation Process Styles */
.customer-list-process {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.customer-list-process::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 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 0;
}

.customer-list-process .container {
    position: relative;
    z-index: 1;
}

.process-header {
    text-align: center;
    margin-bottom: 3rem;
}

.process-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #0284c7, #0369a1);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.process-description {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.process-steps-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

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

.process-flow-row-single {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: stretch;
}

.process-step {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 300px;
    display: flex;
    flex-direction: column;
}

.process-flow-row-single .process-step {
    display: flex;
    flex-direction: column;
    min-height: 200px;
    gap: 1.5rem;
    background: white;
    padding: 2rem;
}

.process-flow-row-single .step-content {
    display: flex;
    flex-direction: row;
    flex: 1;
    gap: 2rem;
    align-items: stretch;
}

.process-flow-row-single .step-description {
    flex: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.process-flow-row-single .step-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 0.75rem;
    min-height: 150px;
    border: 2px dashed #cbd5e1;
}

.process-flow-row-single .visual-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #64748b;
    text-align: center;
}

.process-flow-row-single .visual-content i {
    font-size: 2.5rem;
    color: #0284c7;
}

.process-flow-row-single .visual-content span {
    font-size: 0.875rem;
    font-weight: 600;
}

.process-flow-row-single .visual-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f97316;
    text-align: center;
    font-weight: 600;
    font-size: 0.875rem;
    background: linear-gradient(135deg, #fff7ed 0%, #fed7aa 100%);
    border: 2px dashed #f97316;
    border-radius: 0.75rem;
    min-height: 150px;
    padding: 1rem;
}

.process-flow-row-single .step-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0;
    background: transparent;
    padding: 0;
    width: calc(50% + 2rem);
    margin-left: -2rem;
    padding-left: 2rem;
}

.process-flow-row-single .step-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
}

.process-flow-row-single .step-number {
    color: #f97316;
    font-weight: 700;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.process-flow-row-single .step-icon {
    color: #f97316;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.process-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #0284c7, #0369a1);
}

.step-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.step-number {
    background: linear-gradient(135deg, #0284c7, #0369a1);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(2, 132, 199, 0.3);
    flex-shrink: 0;
}

.step-icon {
    background: #f1f5f9;
    color: #0284c7;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.step-header h3 {
    color: #1e293b;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
    flex: 1;
}

.step-content {
    display: flex;
    flex: 1;
    gap: 1.5rem;
}

.step-description {
    flex: 2;
}

.step-description p {
    color: #475569;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.step-description ul {
    list-style: none;
    padding: 0;
}

.step-description li {
    color: #475569;
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 0.6rem;
    padding-left: 1.2rem;
    position: relative;
}

.step-description li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #0284c7;
    font-weight: 700;
    font-size: 1rem;
}

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

.visual-content {
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    border: 2px solid #e2e8f0;
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    width: 100%;
    transition: all 0.3s ease;
}

.visual-content:hover {
    transform: scale(1.05);
    border-color: #0284c7;
}

.visual-content i {
    font-size: 2.5rem;
    color: #0284c7;
    margin-bottom: 0.5rem;
    display: block;
}

.visual-content span {
    font-size: 0.8rem;
    font-weight: 600;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Flow Arrows */
.flow-arrow {
    position: relative;
    flex-shrink: 0;
}

.flow-arrow-horizontal {
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, #0284c7, #0369a1);
    position: relative;
    margin: 0 1rem;
}

.flow-arrow-horizontal::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid #0369a1;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

.flow-arrow-vertical {
    width: 4px;
    height: 60px;
    background: linear-gradient(to bottom, #0284c7, #0369a1);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -30px;
}

.flow-arrow-vertical::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-top: 12px solid #0369a1;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
}

.flow-arrow-diagonal {
    position: absolute;
    right: -2rem;
    bottom: -2rem;
    width: 80px;
    height: 80px;
}

.flow-arrow-diagonal::before {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background: linear-gradient(45deg, #0284c7, #0369a1);
    transform: rotate(45deg);
    top: 50%;
    left: 50%;
    transform-origin: center;
    transform: translate(-50%, -50%) rotate(45deg);
}

.flow-arrow-diagonal::after {
    content: '';
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 0;
    height: 0;
    border-left: 10px solid #0369a1;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    transform: rotate(45deg);
}

.process-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.stat-item {
    text-align: center;
    padding: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0284c7;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.process-cta {
    background: linear-gradient(135deg, #0284c7, #0369a1);
    color: white;
    padding: 3rem 2rem;
    border-radius: 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.process-cta::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: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { transform: translate(-50%, -50%) rotate(0deg); }
    50% { transform: translate(-50%, -50%) rotate(180deg); }
}

.process-cta h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.process-cta p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.process-cta .btn-primary {
    background: white;
    color: #0284c7;
    border: 2px solid white;
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.process-cta .btn-primary:hover {
    background: transparent;
    color: white;
    transform: translateY(-2px);
}

/* Responsive Design for Flow Layout */
@media (max-width: 1024px) {
    .process-flow-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .process-flow-row-single {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .process-flow-row-single .process-step {
        flex-direction: column;
        min-height: auto;
        gap: 1.5rem;
    }
    
    .process-flow-row-single .step-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .process-flow-row-single .step-description {
        flex: 1;
    }
    
    .process-flow-row-single .step-visual {
        min-height: 120px;
    }
    
    .process-step {
        min-height: 280px;
    }
    
    .step-header h3 {
        font-size: 1.1rem;
    }
    
    .step-description p {
        font-size: 0.85rem;
    }
    
    .step-description li {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .customer-list-process {
        padding: 2rem 0;
    }
    
    .process-header h2 {
        font-size: 2rem;
    }
    
    .process-description {
        font-size: 1.1rem;
    }
    
    .process-step {
        padding: 1.5rem;
        min-height: auto;
    }
    
    .step-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }
    
    .step-header h3 {
        font-size: 1.2rem;
    }
    
    .step-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .process-flow-row-single {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .process-flow-row-single .process-step {
        flex-direction: column;
        min-height: auto;
        gap: 1rem;
    }
    
    .process-flow-row-single .step-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .process-flow-row-single .step-header {
        margin-bottom: 1rem;
    }
    
    .process-flow-row-single .step-header h3 {
        font-size: 1.25rem;
    }
    
    .process-flow-row-single .step-visual {
        min-height: 100px;
    }
    
    .step-description p {
        font-size: 0.9rem;
    }
    
    .step-description li {
        font-size: 0.85rem;
    }
    
    .process-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .process-cta {
        padding: 2rem 1rem;
    }
    
    .process-cta h3 {
        font-size: 1.5rem;
    }
}

/* Responsive Design for 3x2 Grid Layout */
@media (max-width: 1024px) {
    .process-flow-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .process-step {
        min-height: 280px;
    }
    
    .step-header h3 {
        font-size: 1.1rem;
    }
    
    .step-description p {
        font-size: 0.85rem;
    }
    
    .step-description li {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .customer-list-process {
        padding: 2rem 0;
    }
    
    .process-header h2 {
        font-size: 2rem;
    }
    
    .process-description {
        font-size: 1.1rem;
    }
    
    .process-flow-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .process-step {
        padding: 1.5rem;
        min-height: auto;
    }
    
    .step-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }
    
    .step-header h3 {
        font-size: 1.2rem;
        text-align: center;
    }
    
    .step-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .step-description p {
        font-size: 0.9rem;
    }
    
    .step-description li {
        font-size: 0.85rem;
    }
    
    .process-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .process-cta {
        padding: 2rem 1rem;
    }
    
    .process-cta h3 {
        font-size: 1.5rem;
    }
}

/* New Process Steps Layout */
.process-steps-new {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin: 3rem 0;
}

.process-step-box {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    min-height: 300px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.process-step-box:hover {
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

/* Layout 1, 3, 5: Solda içerik, sağda görsel */
.step-layout-1,
.step-layout-3,
.step-layout-5 {
    flex-direction: row;
}

/* Layout 2, 4, 6: Solda görsel, sağda içerik */
.step-layout-2,
.step-layout-4,
.step-layout-6 {
    flex-direction: row;
}

.step-content-left,
.step-content-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.step-header-new {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.step-number-new {
    background: linear-gradient(135deg, #0284c7, #0369a1);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.step-header-new h3 {
    color: #1f2937;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
}

.step-description-new p {
    color: #4b5563;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.step-description-new ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.step-description-new li {
    color: #374151;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.step-description-new li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
    font-size: 1rem;
}

.step-visual-new {
    flex: 1;
    max-width: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-placeholder-new {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border: 2px dashed #cbd5e1;
    border-radius: 1rem;
    padding: 3rem 2rem;
    text-align: center;
    color: #64748b;
    font-size: 0.95rem;
    font-weight: 500;
    width: 100%;
    height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.visual-placeholder-new i {
    font-size: 3rem;
    color: #94a3b8;
    margin-bottom: 0.5rem;
}

.visual-placeholder-new:hover {
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    border-color: #94a3b8;
}

/* Responsive Design for New Layout */
@media (max-width: 768px) {
    .process-step-box {
        flex-direction: column !important;
        text-align: center;
        padding: 1.5rem;
        gap: 1.5rem;
        min-height: auto;
    }
    
    .step-header-new {
        justify-content: center;
        text-align: center;
    }
    
    .step-header-new h3 {
        font-size: 1.25rem;
    }
    
    .step-number-new {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .step-visual-new {
        max-width: 100%;
        order: 2;
    }
    
    .step-content-left,
    .step-content-right {
        order: 1;
    }
    
    .visual-placeholder-new {
        height: 200px;
        padding: 2rem 1rem;
    }
    
    .visual-placeholder-new i {
        font-size: 2.5rem;
    }
}

/* Form Result Messages */
#formResult {
    margin-top: 1rem;
    padding: 0.75rem;
    border-radius: 0.5rem;
    text-align: center;
    font-weight: 600;
}

#formResult.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

#formResult.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

#formResult.loading {
    background-color: #cfe2ff;
    color: #055160;
    border: 1px solid #b0d4f3;
}

/* Ripple effect */
.ripple {
    position: relative;
    overflow: hidden;
}

.ripple span {
    position: absolute;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    transform: scale(0);
    animation: ripple-effect 0.6s linear;
}

@keyframes ripple-effect {
    to {
        transform: scale(2.5);
        opacity: 0;
    }
}