/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1f1f1f;
    background-color: #fefefe;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(0deg, rgba(255, 250, 235, 0.6), rgba(255, 240, 194, 0.6));
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.nav-logo .logo {
    height: 32px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: #1f1f1f;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #ff6b35;
}

.nav-dropdown {
    position: relative;
}

.dropdown-toggle::after {
    content: '▼';
    font-size: 10px;
    margin-left: 6px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 8px 0;
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
}

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

.dropdown-item {
    display: block;
    padding: 8px 16px;
    color: #1f1f1f;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.2s ease;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
}

.nav-cta {
    background: #ff6b35;
    color: white !important;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: background-color 0.2s ease;
}

.nav-cta:hover {
    background: #e55a2b;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #ff8a50 0%, #ff6b35 25%, #e55a2b 50%, #cc4125 75%, #b8371f 100%);
    z-index: -2;
}

.hero-background::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><path d="M0,400 L0,300 Q150,250 300,280 T600,260 T900,290 T1200,270 L1200,400 Z" fill="%23000" opacity="0.3"/><path d="M0,400 L0,320 Q200,270 400,300 T800,280 T1200,310 L1200,400 Z" fill="%23000" opacity="0.2"/><path d="M0,400 L0,340 Q300,290 600,320 T1200,300 L1200,400 Z" fill="%23000" opacity="0.1"/></svg>') center bottom/cover no-repeat;
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: #fffaeb;
    margin-bottom: 16px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #fffaeb;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-search {
    position: relative;
    max-width: 500px;
    margin: 0 auto 32px;
}

.search-input {
    width: 100%;
    padding: 16px 50px 16px 20px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.search-input::placeholder {
    color: #666;
}

.search-btn {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: #ff6b35;
    border: none;
    border-radius: 4px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.search-btn:hover {
    background: #e55a2b;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: rgba(255, 255, 255, 0.2);
    color: #fffaeb;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: #fffaeb;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

/* Partners Section */
.partners {
    padding: 60px 0;
    background: #f8f9fa;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    align-items: center;
}

.partner-logo {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: #666;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.partner-logo:hover {
    opacity: 1;
}

/* Features Preview */
.features-preview {
    padding: 100px 0;
    background: white;
}

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

.feature-card {
    text-align: center;
    padding: 40px 20px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1f1f1f;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: #f8f9fa;
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #1f1f1f;
    margin-bottom: 16px;
    line-height: 1.2;
}

.cta-content p {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 40px;
}

.cta-actions .btn-primary {
    background: #ff6b35;
    color: white;
    border: none;
    padding: 16px 32px;
    font-size: 16px;
}

.cta-actions .btn-primary:hover {
    background: #e55a2b;
}

/* Value Props */
.value-props {
    padding: 100px 0;
    background: white;
}

.value-grid {
    display: grid;
    gap: 60px;
}

.value-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.value-icon {
    color: #ff6b35;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.value-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1f1f1f;
}

.value-content p {
    color: #666;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #1f1f1f;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-section ul li a:hover {
    color: #ff6b35;
}

.contact-info p {
    margin-bottom: 8px;
    color: #ccc;
}

.contact-info a {
    color: #ff6b35;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .value-item {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Pricing Page Styles */
.pricing-page {
    padding-top: 70px;
}

.pricing-hero {
    background: linear-gradient(135deg, #ff8a50 0%, #ff6b35 25%, #e55a2b 50%, #cc4125 75%, #b8371f 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.pricing-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.pricing-hero p {
    font-size: 1.25rem;
    opacity: 0.9;
}

.pricing-tabs {
    background: #f8f9fa;
    padding: 40px 0;
    border-bottom: 1px solid #e9ecef;
}

.tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.tab-btn {
    background: white;
    border: 1px solid #ddd;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s ease;
}

.tab-btn.active {
    background: #ff6b35;
    color: white;
    border-color: #ff6b35;
}

.currency-toggle {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.currency-btn {
    background: #fff;
    border: 1px solid #ddd;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s ease;
}

.currency-btn.active {
    background: #1f1f1f;
    color: white;
    border-color: #1f1f1f;
}

.pricing-cards {
    padding: 80px 0;
    background: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card.popular {
    background: #fff8f0;
    border-color: #ff6b35;
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff6b35;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.card-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1f1f1f;
}

.card-header p {
    color: #666;
    font-size: 14px;
    margin-bottom: 24px;
}

.card-price {
    margin-bottom: 32px;
}

.card-price .price {
    font-size: 3rem;
    font-weight: 700;
    color: #1f1f1f;
}

.card-price .period {
    font-size: 1rem;
    color: #666;
    margin-left: 4px;
}

.card-features ul {
    list-style: none;
    text-align: left;
    margin-bottom: 32px;
}

.card-features li {
    padding: 8px 0;
    color: #1f1f1f;
    font-size: 14px;
}

.card-cta {
    width: 100%;
    background: #1f1f1f;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.card-cta:hover {
    background: #333;
}

.pricing-card.popular .card-cta {
    background: #ff6b35;
}

.pricing-card.popular .card-cta:hover {
    background: #e55a2b;
}

.pricing-calculator {
    background: #f8f9fa;
    padding: 80px 0;
}

.calculator-card {
    background: white;
    border-radius: 12px;
    padding: 40px;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.calculator-card h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1f1f1f;
}

.calculator-card > p {
    color: #666;
    margin-bottom: 32px;
}

.calculator-form {
    text-align: left;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: #1f1f1f;
}

.form-group input[type="range"] {
    width: 100%;
    margin-bottom: 8px;
}

.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
}

.calculator-result {
    background: #f8f9fa;
    padding: 24px;
    border-radius: 8px;
    margin: 24px 0;
    text-align: center;
}

.result-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.result-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff6b35;
}

.pricing-features {
    padding: 80px 0;
    background: white;
}

.pricing-features h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 60px;
    color: #1f1f1f;
}

.features-table {
    overflow-x: auto;
}

.features-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.features-table th,
.features-table td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid #e9ecef;
}

.features-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #1f1f1f;
}

.features-table td {
    color: #666;
}

.features-table tr:last-child td {
    border-bottom: none;
}

.nav-link.active {
    color: #ff6b35;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

/* Success message styles */
.success-message {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 8px;
    padding: 40px;
    text-align: center;
    margin: 40px 0;
}

.success-content h3 {
    color: #155724;
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.success-content p {
    color: #155724;
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.popular {
        transform: none;
    }
    
    .tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .features-table {
        font-size: 14px;
    }
    
    .features-table th,
    .features-table td {
        padding: 12px 8px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-content {
        padding: 0 16px;
    }
    
    .nav-container {
        padding: 0 16px;
    }
    
    .pricing-hero h1 {
        font-size: 2rem;
    }
    
    .calculator-card {
        padding: 24px;
    }
    
    .card-price .price {
        font-size: 2rem;
    }
}

/* Contact Page Styles */
.contact-page {
    padding-top: 70px;
}

.contact-hero {
    background: linear-gradient(135deg, #ff8a50 0%, #ff6b35 25%, #e55a2b 50%, #cc4125 75%, #b8371f 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.contact-hero p {
    font-size: 1.25rem;
    opacity: 0.9;
}

.contact-form-section {
    padding: 80px 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1f1f1f;
}

.contact-info > p {
    color: #666;
    margin-bottom: 40px;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.contact-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: #1f1f1f;
}

.contact-content p {
    color: #666;
    line-height: 1.5;
}

.contact-content a {
    color: #ff6b35;
    text-decoration: none;
}

.contact-content a:hover {
    text-decoration: underline;
}

.business-hours h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1f1f1f;
}

.business-hours p {
    color: #666;
    line-height: 1.6;
}

.contact-form-container {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 6px;
    color: #1f1f1f;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b35;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.submit-btn {
    background: #ff6b35;
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.submit-btn:hover {
    background: #e55a2b;
}

.contact-cta {
    background: #f8f9fa;
    padding: 80px 0;
    text-align: center;
}

.contact-cta h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1f1f1f;
}

.contact-cta > p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
}

.cta-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px;
    max-width: 600px;
    margin: 0 auto;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

/* Features Page Styles */
.features-page {
    padding-top: 70px;
}

.features-hero {
    background: linear-gradient(135deg, #ff8a50 0%, #ff6b35 25%, #e55a2b 50%, #cc4125 75%, #b8371f 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.features-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.features-hero p {
    font-size: 1.25rem;
    opacity: 0.9;
}

.features-overview {
    padding: 100px 0;
    background: white;
}

.features-grid-large {
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.feature-card-large {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.feature-card-large.reverse {
    direction: rtl;
}

.feature-card-large.reverse > * {
    direction: ltr;
}

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

.feature-icon-large {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.feature-content-large h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1f1f1f;
}

.feature-content-large p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 24px;
}

.feature-benefits {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
}

.feature-benefits li {
    color: #1f1f1f;
    font-weight: 500;
    font-size: 14px;
}

.features-detailed {
    padding: 100px 0;
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 60px;
    color: #1f1f1f;
}

.features-comparison {
    padding: 100px 0;
    background: white;
}

.comparison-table {
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.comparison-table th,
.comparison-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid #e9ecef;
}

.comparison-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #1f1f1f;
}

.comparison-table td {
    color: #666;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table td:nth-child(3) {
    color: #ff6b35;
    font-weight: 600;
}

.features-cta {
    background: #f8f9fa;
    padding: 80px 0;
    text-align: center;
}

.features-cta h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1f1f1f;
}

.features-cta p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-actions .btn-primary {
    background: #ff6b35;
    color: white;
    border: none;
    padding: 16px 32px;
    font-size: 16px;
}

.cta-actions .btn-primary:hover {
    background: #e55a2b;
}

.cta-actions .btn-secondary {
    background: white;
    color: #1f1f1f;
    border: 1px solid #ddd;
    padding: 16px 32px;
    font-size: 16px;
}

.cta-actions .btn-secondary:hover {
    background: #f8f9fa;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-container {
        padding: 24px;
    }
    
    .feature-card-large {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .feature-card-large.reverse {
        direction: ltr;
    }
    
    .feature-benefits {
        grid-template-columns: 1fr;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .comparison-table {
        font-size: 14px;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 12px 8px;
    }
}

/* Product Page Styles */
.product-page {
    padding-top: 70px;
}

.product-hero {
    background: linear-gradient(135deg, #ff8a50 0%, #ff6b35 25%, #e55a2b 50%, #cc4125 75%, #b8371f 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.product-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.product-hero p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 40px;
}

.product-overview {
    padding: 100px 0;
    background: white;
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.overview-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1f1f1f;
}

.overview-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
}

.key-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
}

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

.benefit-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 8px;
}

.benefit-text {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.process-diagram {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.process-step {
    display: flex;
    gap: 20px;
    align-items: center;
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: #1f1f1f;
}

.step-content p {
    font-size: 14px;
    color: #666;
}

.product-advantages {
    padding: 100px 0;
    background: #f8f9fa;
}

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

.advantage-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}

.advantage-card:hover {
    transform: translateY(-4px);
}

.advantage-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0 auto 20px;
}

.advantage-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1f1f1f;
}

.advantage-card p {
    color: #666;
    line-height: 1.6;
}

.product-technology {
    padding: 100px 0;
    background: white;
}

.technology-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.technology-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1f1f1f;
}

.technology-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
}

.tech-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.tech-feature h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: #1f1f1f;
}

.tech-feature p {
    font-size: 14px;
    color: #666;
}

.tech-diagram {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tech-layer {
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    color: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.layer-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.layer-description {
    font-size: 14px;
    opacity: 0.9;
}

.product-integrations {
    padding: 100px 0;
    background: #f8f9fa;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 60px;
}

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

.integration-category {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.integration-category h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1f1f1f;
    text-align: center;
}

.integration-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 12px;
}

.integration-item {
    background: #f8f9fa;
    padding: 8px 12px;
    border-radius: 6px;
    text-align: center;
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.product-cta {
    background: white;
    padding: 80px 0;
    text-align: center;
}

.product-cta h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1f1f1f;
}

.product-cta p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
}

/* About Page Styles */
.about-page {
    padding-top: 70px;
}

.about-hero {
    background: linear-gradient(135deg, #ff8a50 0%, #ff6b35 25%, #e55a2b 50%, #cc4125 75%, #b8371f 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.about-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.about-hero p {
    font-size: 1.25rem;
    opacity: 0.9;
}

.about-story {
    padding: 100px 0;
    background: white;
}

.story-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.story-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1f1f1f;
}

.story-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.story-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-card {
    background: #f8f9fa;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
}

.stat-card .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 4px;
}

.stat-card .stat-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.about-mission {
    padding: 100px 0;
    background: #f8f9fa;
}

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

.mission-item {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0 auto 20px;
}

.mission-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1f1f1f;
}

.mission-item p {
    color: #666;
    line-height: 1.6;
}

.about-team {
    padding: 100px 0;
    background: white;
}

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

.team-member {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
}

.member-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
}

.member-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: #1f1f1f;
}

.member-title {
    font-size: 14px;
    color: #ff6b35;
    font-weight: 600;
    margin-bottom: 12px;
}

.member-bio {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.about-culture {
    padding: 100px 0;
    background: #f8f9fa;
}

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

.culture-item {
    background: white;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.culture-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1f1f1f;
}

.culture-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.about-cta {
    background: white;
    padding: 80px 0;
    text-align: center;
}

.about-cta h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1f1f1f;
}

.about-cta p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .overview-grid,
    .technology-grid,
    .story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .integrations-grid {
        grid-template-columns: 1fr;
    }
    
    .story-stats {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* Legal Pages Styles */
.legal-page {
    padding-top: 70px;
}

.legal-hero {
    background: linear-gradient(135deg, #ff8a50 0%, #ff6b35 25%, #e55a2b 50%, #cc4125 75%, #b8371f 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.legal-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.legal-hero p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.legal-content {
    padding: 80px 0;
    background: white;
}

.legal-document {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.legal-document h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 40px 0 16px 0;
    color: #1f1f1f;
}

.legal-document h2:first-child {
    margin-top: 0;
}

.legal-document p {
    color: #666;
    margin-bottom: 16px;
}

.legal-document ul {
    margin: 16px 0;
    padding-left: 20px;
}

.legal-document li {
    color: #666;
    margin-bottom: 8px;
}

.contact-details {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.contact-details p {
    margin: 0;
    color: #1f1f1f;
}

.contact-details a {
    color: #ff6b35;
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .legal-document {
        padding: 0 20px;
    }
    
    .legal-hero h1 {
        font-size: 2rem;
    }
}
