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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333333;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    max-width: 100vw;
}

/* Layout Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    width: 100%;
    overflow-x: hidden;
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
}

/* Main Header Styling */
.main-header {
    background: #ffffff;
    border-bottom: 1px solid #f0f0f0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    min-height: 72px;
}

.brand-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-icon {
    flex-shrink: 0;
}

.brand-details {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #333333;
    line-height: 1.2;
}

.brand-tagline {
    font-size: 0.875rem;
    color: #666666;
    margin-top: 2px;
}

.trust-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #f8f9fa;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #00B04F;
}

/* Hero Section Layout */
.hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 40px 0 20px;
}

.hero-wrapper {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.hero-heading {
    font-size: 1.75rem;
    font-weight: 700;
    color: #333333;
    margin-bottom: 12px;
    line-height: 1.2;
}

.brand-highlight {
    color: #00B04F;
}

.hero-description {
    font-size: 1rem;
    color: #666666;
    margin-bottom: 32px;
    line-height: 1.5;
}

.value-propositions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 24px;
    width: 100%;
    max-width: 100%;
}

@media (max-width: 480px) {
    .value-propositions {
        gap: 8px;
        margin-top: 20px;
    }
}

.value-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

@media (max-width: 480px) {
    .value-item {
        padding: 10px;
        gap: 8px;
    }
}

.value-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.value-content h3 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 2px;
}

.value-content p {
    font-size: 0.8rem;
    color: #666666;
}

/* Primary CTA Section */
.primary-cta-section {
    background: #ffffff;
    padding: 32px 0 40px;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    z-index: 10;
}

.primary-cta-wrapper {
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.primary-action-button {
    margin-bottom: 12px;
    position: relative;
    z-index: 10;
    padding: 24px 56px;
    font-size: 1.4rem;
    min-height: 72px;
    font-weight: 800;
}

.primary-cta-message {
    font-size: 0.875rem;
    color: #666666;
    margin: 0;
}

@media (max-width: 480px) {
    .primary-cta-section {
        padding: 24px 0 32px;
    }
    
    .primary-action-button {
        padding: 14px 32px;
        font-size: 1rem;
        min-height: 52px;
    }
}

/* Features Section Layout */
.features-section {
    padding: 60px 0;
    background: #ffffff;
}

.section-heading {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    color: #333333;
    margin-bottom: 32px;
}

/* Landing page specific heading */
.landing-process .section-heading {
    font-size: 1rem;
    margin-bottom: 12px;
    margin-top: 0;
}

.features-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.feature-item {
    text-align: center;
    padding: 24px 20px;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #f0f0f0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.feature-visual {
    margin-bottom: 16px;
}

.feature-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 8px;
}

.feature-item p {
    font-size: 0.9rem;
    color: #666666;
    line-height: 1.5;
}

/* Final CTA Section */
.final-cta-section {
    background: linear-gradient(135deg, #00B04F 0%, #00A045 100%);
    padding: 60px 0;
    color: #ffffff;
}

.final-cta-wrapper {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.final-cta-heading {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.2;
}

.final-cta-description {
    font-size: 1rem;
    margin-bottom: 32px;
    opacity: 0.9;
    line-height: 1.4;
}

.success-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.metric {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.metric-value {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.metric-description {
    font-size: 0.75rem;
    opacity: 0.8;
}

.action-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    color: #00B04F;
    border: none;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    min-height: 48px;
    position: relative;
    overflow: hidden;
}

.action-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transition: left 0.6s ease;
}

.action-button:hover::before {
    left: 100%;
}

.action-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.05) 50%,
        rgba(255, 255, 255, 0.1) 100%
    );
    border-radius: 50px;
    pointer-events: none;
}

.action-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    background: #f8f9fa;
}

.action-button:active {
    transform: translateY(0);
}

.action-button span,
.action-button svg {
    position: relative;
    z-index: 1;
}

/* Subtle pulse animation */
@keyframes buttonPulse {
    0% {
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1), 0 0 0 0 rgba(0, 176, 79, 0.3);
    }
    50% {
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1), 0 0 0 4px rgba(0, 176, 79, 0.1);
    }
    100% {
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1), 0 0 0 0 rgba(0, 176, 79, 0);
    }
}

.action-button {
    animation: buttonPulse 3s infinite;
    margin: 20px 0;
}

.action-button:hover {
    animation: none;
}

.primary-action-button {
    margin: 20px 0 12px 0;
}

.final-cta-assurance {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Site Footer */
.site-footer {
    background: #f8f9fa;
    padding: 48px 0 32px;
    border-top: 1px solid #e9ecef;
}

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

.footer-security {
    margin-bottom: 32px;
}

.security-indicators {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: #666666;
}

.footer-navigation {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

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

.footer-navigation a:hover {
    color: #00B04F;
}

.footer-info {
    border-top: 1px solid #e9ecef;
    padding-top: 24px;
}

.footer-info p {
    font-size: 0.875rem;
    color: #666666;
    margin-bottom: 8px;
}

.footer-message {
    font-style: italic;
    opacity: 0.8;
}

/* Responsive Design - Tablet */
@media (min-width: 768px) {
    .container {
        padding: 0 32px;
    }
    
    .hero-heading {
        font-size: 2.75rem;
    }
    
    .value-propositions {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }
    
    .value-item {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }
    
    .features-layout {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
    
    .success-metrics {
        gap: 40px;
    }
    
    .security-indicators {
        gap: 32px;
    }
    
    .footer-navigation {
        gap: 32px;
    }
}

/* Responsive Design - Desktop */
@media (min-width: 1024px) {
    .hero-section {
        padding: 80px 0 100px;
    }
    
    .hero-heading {
        font-size: 3.25rem;
    }
    
    .hero-description {
        font-size: 1.25rem;
    }
    
    .features-section {
        padding: 100px 0;
    }
    
    .final-cta-section {
        padding: 100px 0;
    }
    
    .final-cta-heading {
        font-size: 2.5rem;
    }
    
    .final-cta-description {
        font-size: 1.25rem;
    }
}

/* Accessibility Features */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Focus styles for accessibility */
.action-button:focus,
.footer-navigation a:focus {
    outline: 2px solid #00B04F;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .value-item,
    .feature-item {
        border: 2px solid #333333;
    }
    
    .action-button {
        border: 2px solid #00B04F;
    }
}

/* Loading animation for better UX */
@keyframes contentFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-wrapper,
.features-layout,
.final-cta-wrapper {
    animation: contentFadeIn 0.6s ease-out;
}

/* Process Section Styling */
.process-section {
    padding: 60px 0;
    background: #f8f9fa;
}

/* Landing page specific - compact process */
.landing-process.process-layout {
    gap: 8px;
}

.landing-process .process-section {
    padding: 40px 0 4px;
    background: #ffffff;
    border-bottom: 1px solid #f0f0f0;
}

.process-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    background: #ffffff;
    padding: 24px;
    border-radius: 16px;
    border: 1px solid #e9ecef;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.process-step:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.step-indicator {
    position: absolute;
    top: -12px;
    left: 24px;
    background: #00B04F;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.process-step h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333333;
    margin: 8px 0;
}

.process-step p {
    font-size: 0.9rem;
    color: #666666;
    line-height: 1.5;
}

/* Advantages Section */
.advantages-section {
    padding: 60px 0;
    background: #ffffff;
}

.advantages-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.advantage-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 12px;
}

.advantage-content p {
    font-size: 1rem;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 24px;
}

.advantage-highlights {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.highlight-item {
    padding: 16px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #00B04F;
}

.highlight-item h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 4px;
}

.highlight-item p {
    font-size: 0.85rem;
    color: #666666;
    line-height: 1.4;
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.faq-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-block {
    background: #ffffff;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    transition: box-shadow 0.2s ease;
}

.faq-block:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.faq-block h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 12px;
}

.faq-block p {
    font-size: 0.9rem;
    color: #666666;
    line-height: 1.5;
}

/* Responsive Design for New Sections - Tablet */
@media (min-width: 768px) {
    .process-layout {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    
    .advantages-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }
    
    .advantage-highlights {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .faq-layout {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

/* Responsive Design for New Sections - Desktop */
@media (min-width: 1024px) {
    .process-section {
        padding: 80px 0;
    }
    
    .process-layout {
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
    }
    
    .process-step {
        padding: 32px 24px;
    }
    
    .advantages-section {
        padding: 80px 0;
    }
    
    .advantage-highlights {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .faq-section {
        padding: 80px 0;
    }
    
    .faq-layout {
        gap: 32px;
    }
    
    .faq-block {
        padding: 32px;
    }
}

/* Landing Page Specific Styles */
.landing-process {
    max-width: 700px;
    margin: 0 auto;
}

.landing-process-step {
    position: relative;
    padding: 16px 8px 8px;
    text-align: center;
    overflow: visible;
    z-index: 1;
}

.landing-process-step .process-visual {
    display: flex;
    justify-content: center;
    margin-bottom: 6px;
}

.landing-process-step .process-visual svg {
    width: 28px;
    height: 28px;
}

.landing-process-step .step-indicator {
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
    font-size: 0.8rem;
    box-shadow: 0 2px 8px rgba(0, 176, 79, 0.3);
    z-index: 1000;
    position: absolute;
    background: #00B04F;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.landing-process-step h3 {
    font-size: 0.8rem;
    margin: 2px 0 0 0;
    text-align: center;
}

.landing-features {
    max-width: 900px;
    margin: 0 auto;
}

/* Compact process section */
.landing-process .process-section {
    padding: 30px 0 20px;
}

/* Responsive adjustments for landing page */
@media (min-width: 768px) {
    .landing-process {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
    
    .landing-process-step {
        text-align: center;
        padding: 20px 16px 16px;
    }
    
    .landing-process-step .process-visual svg {
        width: 36px;
        height: 36px;
    }
    
    .landing-process-step .step-indicator {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }
    
    .landing-process-step h3 {
        font-size: 1rem;
    }
    
    .landing-features {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
}

@media (min-width: 1024px) {
    .landing-process-step {
        padding: 24px 20px 20px;
    }
    
    .landing-process-step .process-visual svg {
        width: 40px;
        height: 40px;
    }
    
    .landing-process-step .step-indicator {
        top: -16px;
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }
    
    .landing-process-step h3 {
        font-size: 1.1rem;
    }
}

/* Print styles */
@media print {
    .main-header,
    .site-footer {
        display: none;
    }
    
    .hero-section,
    .features-section,
    .process-section,
    .advantages-section,
    .faq-section,
    .final-cta-section {
        padding: 20px 0;
    }
    
    .action-button {
        display: none;
    }
    
    .step-indicator {
        position: static;
        display: inline-flex;
        margin-right: 8px;
    }
}
