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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1E887E 0%, #1a7a72 100%);
    color: white;
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255,255,255,0.1) 1px, transparent 1px),
        radial-gradient(circle at 80% 70%, rgba(255,255,255,0.1) 1px, transparent 1px),
        radial-gradient(circle at 40% 80%, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px, 30px 30px, 40px 40px;
    opacity: 0.3;
}

.logo {
    position: relative;
    z-index: 2;
}

.logo-icon {
    font-size: 3rem;
    color: white;
    margin-bottom: 10px;
    display: block;
}

.brand-name {
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
    margin: 0;
}

.hero-title {
    font-size: 2.2rem;
    font-weight: bold;
    margin: 30px 0 20px;
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.cta-text {
    font-size: 1.1rem;
    margin-top: 20px;
    position: relative;
    z-index: 2;
}

/* Contact Form Section */
.contact-form-section {
    background: linear-gradient(135deg, #1E887E 0%, #1a7a72 100%);
    color: white;
    padding: 60px 0;
    position: relative;
}

.contact-form {
    max-width: 70%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    width: 100%;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
    width: 100%;
}

.form-group {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.form-control {
    border: none;
    border-radius: 8px;
    padding: 15px;
    font-size: 1rem;
    background: white;
    color: #333;
    width: 100%;
    height: 60px;
    box-sizing: border-box;
    min-width: 0;
    flex-shrink: 0;
}

.form-control:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
}

.phone-group {
    position: relative;
}

.phone-input {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    height: 60px;
    box-sizing: border-box;
    width: 100%;
    min-width: 0;
    flex-shrink: 0;
}

.country-selector {
    background: #1E887E;
    color: white;
    padding: 15px 12px;
    font-weight: bold;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100px;
    height: 60px;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
    box-sizing: border-box;
    flex-shrink: 0;
}

.country-selector:hover {
    background: #1a7a72;
}

.country-flag {
    font-size: 1.2rem;
}

.country-code {
    font-weight: bold;
    font-size: 1rem;
}

.country-selector i {
    font-size: 0.8rem;
    margin-left: 4px;
}

.country-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    min-width: 200px;
    max-height: 400px;
    overflow-y: auto;
    display: none;
    margin-top: 5px;
}

.country-dropdown.show {
    display: block;
}

.country-search {
    padding: 12px 15px;
    border-bottom: 1px solid #f0f0f0;
    background: #f8f9fa;
    border-radius: 8px 8px 0 0;
}

.country-search-input {
    width: 100%;
    border: none;
    outline: none;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 0.9rem;
    background: white;
    border: 1px solid #ddd;
}

.country-search-input:focus {
    border-color: #1E887E;
    box-shadow: 0 0 0 2px rgba(30, 136, 126, 0.1);
}

.country-option {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    border-bottom: 1px solid #f0f0f0;
}

.country-option:last-child {
    border-bottom: none;
}

.country-option:hover {
    background-color: #f8f9fa;
}

.country-option .flag {
    font-size: 1.2rem;
    margin-right: 10px;
    min-width: 20px;
}

.country-option .code {
    font-weight: bold;
    color: #333;
    margin-right: 10px;
    min-width: 40px;
}

.country-option .name {
    color: #666;
    font-size: 0.9rem;
}

.phone-group {
    position: relative;
}

.phone-input-field {
    border: none;
    border-radius: 0;
    flex: 1;
    padding-left: 15px;
    height: 60px;
    box-sizing: border-box;
    min-width: 0;
    flex-shrink: 1;
}

.cta-button {
    background: linear-gradient(45deg, #E91E63, #FF4081);
    border: none;
    border-radius: 8px;
    padding: 18px 30px;
    font-size: 1.1rem;
    font-weight: bold;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
    width: 100%;
    height: 60px;
    margin-top: 20px;
    box-sizing: border-box;
    white-space: normal;
    overflow: visible;
    min-width: 0;
    flex-shrink: 0;
}

.cta-button:hover {
    background: linear-gradient(45deg, #C2185B, #E91E63);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
    color: white;
}

.opportunity-text {
    font-size: 1rem;
    opacity: 0.9;
    margin-top: 25px;
    position: relative;
    z-index: 2;
    line-height: 1.5;
}

/* Introduction Section */
.introduction-section {
    background: white;
    padding: 80px 0;
}

.section-title {
    color: #1E887E;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 40px;
}

.intro-text p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #333;
}

.intro-text strong {
    color: #1E887E;
}

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

.feature-card {
    background: #2c3e50;
    color: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    color: white;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 15px;
    line-height: 1.4;
}

.feature-card p {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Benefits Section */
.benefits-section {
    background: white;
    padding: 60px 0;
}

.benefit-card {
    background: #2c3e50;
    color: white;
    padding: 30px;
    border-radius: 12px;
    height: 100%;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-3px);
}

.benefit-card h4 {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 15px;
    line-height: 1.4;
}

.benefit-card p {
    font-size: 0.95rem;
    opacity: 0.9;
    margin: 0;
}

/* Pitch Section */
.pitch-section {
    background: white;
    padding: 80px 0;
}

.pitch-title {
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 30px;
    color: #333;
}

.pitch-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #666;
}

/* Dashboard Section */
.dashboard-section {
    background: white;
    padding: 80px 0;
}

.dashboard-intro {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 40px;
}

.dashboard-container {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 30px;
}

.dashboard-logo-panel {
    background: #1E887E;
    border-radius: 12px;
    padding: 40px 20px;
    text-align: center;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-container {
    color: white;
}

.dashboard-logo {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

.logo-container h3 {
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0;
}

.stat-card {
    background: #2c3e50;
    color: white;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    height: 100%;
}

.stat-card h5 {
    font-size: 0.9rem;
    font-weight: normal;
    margin-bottom: 10px;
    opacity: 0.8;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
}

.chart-card {
    background: #2c3e50;
    color: white;
    padding: 25px;
    border-radius: 12px;
    height: 100%;
}

.chart-card h5 {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.chart-subtitle {
    font-size: 0.8rem;
    opacity: 0.7;
    margin-bottom: 15px;
}

.chart-value {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.chart-container {
    height: 200px;
    position: relative;
}

/* Summary Section */
.summary-section {
    background: white;
    padding: 80px 0;
}

.summary-text {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: #333;
}

.decision-text {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #333;
}

.invitation-text {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #666;
}

.final-cta {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 40px;
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, #1E887E 0%, #1a7a72 100%);
    color: white;
    padding: 80px 0;
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(255,255,255,0.05) 1px, transparent 1px),
        radial-gradient(circle at 90% 80%, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 40px 40px, 60px 60px;
    opacity: 0.3;
}

.testimonials-title {
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.testimonials-subtitle {
    font-size: 1.2rem;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.testimonial-card {
    text-align: center;
    padding: 30px 20px;
    position: relative;
    z-index: 2;
}

.testimonial-avatar {
    margin-bottom: 20px;
}

.testimonial-avatar img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
}

.testimonial-name {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: white;
}

.testimonial-quote {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
    color: white;
    text-align: left;
}

.testimonial-role {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
    color: white;
}

.final-prompt {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1E887E 0%, #1a7a72 100%);
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo i {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}

.footer-logo h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0;
}

.footer-links {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .pitch-title {
        font-size: 1.8rem;
    }
    
    .testimonials-title {
        font-size: 1.8rem;
    }
    
    .dashboard-logo-panel {
        margin-bottom: 20px;
    }
    
    .stat-card {
        margin-bottom: 15px;
    }
    
    .chart-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 60px 0 40px;
    }
    
    .contact-form-section {
        padding: 40px 0;
    }
    
    .introduction-section {
        padding: 60px 0;
    }
    
    .features-section {
        padding: 40px 0;
    }
    
    .benefits-section {
        padding: 40px 0;
    }
    
    .pitch-section {
        padding: 60px 0;
    }
    
    .dashboard-section {
        padding: 60px 0;
    }
    
    .summary-section {
        padding: 60px 0;
    }
    
    .testimonials-section {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .brand-name {
        font-size: 2rem;
    }
    
    .cta-button {
        font-size: 1rem;
        padding: 12px 20px;
        height: 60px;
    }
} 