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

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

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar-separator {
    height: 80px;
    background: white;
    width: 100%;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.5rem;
    color: #F99930;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #F99930;
}

.nav-login-link {
    background: #F99930;
    color: white !important;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.nav-login-link:hover {
    background: #D87F18;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(249, 153, 48, 0.3);
}

#language-selector {
    padding: 8px 12px;
    border: 2px solid #F99930;
    border-radius: 8px;
    background: white;
    font-weight: 600;
    cursor: pointer;
    margin-left: 16px;
    color: #333;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: border-color 0.2s, box-shadow 0.2s;
}
#language-selector:focus {
    outline: 2px solid #F99930;
    border-color: #F99930;
    box-shadow: 0 0 0 2px rgba(249, 153, 48, 0.2);
}
#language-selector option {
    font-weight: 600;
    color: #333;
}

/* Mobile Navigation */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

.mobile-language-selector {
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.mobile-language-selector label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.mobile-language-selector select {
    padding: 0.5rem;
    border: 2px solid #F99930;
    border-radius: 8px;
    background: white;
    font-weight: 600;
    cursor: pointer;
    color: #333;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        z-index: 99999;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        padding-top: 4rem;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu a {
        font-size: 1.2rem;
        padding: 1rem 0;
        border-bottom: 1px solid #eee;
        width: 100%;
        text-align: center;
        color: #333;
        font-weight: 500;
        transition: color 0.3s ease;
    }
    
    .nav-menu a:hover {
        color: #F99930;
    }
    
    .nav-menu a:last-child {
        border-bottom: none;
    }
    
    .mobile-language-selector {
        display: flex;
        margin-bottom: 2rem;
        padding-bottom: 2rem;
        border-bottom: 2px solid #F99930;
        order: -1;
    }
    
    #language-selector {
        display: none;
    }
    
    .hero {
        padding: 70px 0 50px;
        min-height: auto;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .hero-logo {
        max-width: 400px;
    }
    
    .solution-content {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    line-height: 1.5;
    vertical-align: middle;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #30f999, #2dd88a);
    color: #fff;
    box-shadow: 0 4px 15px rgba(48, 249, 153, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(48, 249, 153, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #3090f9;
    border: 2px solid #3090f9;
}

.btn-secondary:hover {
    background: #3090f9;
    color: white;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #FFC247, #F99930, #d87f18);
    padding: 70px 0 60px;
    color: white;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

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

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

.hero-buttons .btn-secondary {
  background: #fff;
  color: #3090f9;
  border: 2px solid #3090f9;
  font-weight: 700;
  border-radius: 10px;
  padding: 14px 28px;
  margin-left: 12px;
  box-shadow: 0 2px 12px 0 rgba(48,144,249,0.08);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.hero-buttons .btn-secondary:hover,
.hero-buttons .btn-secondary:focus {
  background: #3090f9;
  color: #fff;
  box-shadow: 0 4px 18px 0 rgba(48,144,249,0.15);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-logo {
    width: 100%;
    max-width: 600px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}

.hero-logo:hover {
    transform: scale(1.05);
}

/* Problem Section */
.problem {
    padding: 80px 0;
    background: #f8f9fa;
}

.problem h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

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

.problem-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.problem-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.problem-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

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

/* Solution Section */
.solution {
    padding: 80px 0;
    background: white;
}

.solution h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.solution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.solution-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #F99930;
}

.solution-text ul {
    list-style: none;
    padding: 0;
}

.solution-text li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 2rem;
}

.solution-text li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #F99930;
    font-weight: bold;
    font-size: 1.2rem;
}

.screenshot {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Features Section */
.features {
    padding: 80px 0;
    background: #f8f9fa;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

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

/* Screenshots Section */
.screenshots {
    padding: 80px 0;
    background: white;
}

.screenshots h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

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

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

.screenshot-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.screenshot-img:hover {
    transform: scale(1.05);
}

.screenshot-item p {
    font-weight: 600;
    color: #333;
}

/* Video Section */
.video-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.video-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.video-container {
    max-width: 800px;
    margin: 0 auto;
}

.video-placeholder {
    background: linear-gradient(135deg, #FFC247, #F99930);
    border-radius: 12px;
    padding: 4rem 2rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.video-placeholder::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="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.video-placeholder-content {
    position: relative;
    z-index: 1;
}

.play-button {
    font-size: 4rem;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
}

.video-placeholder p {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.video-placeholder p:last-child {
    opacity: 0.8;
    font-size: 1rem;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: white;
}

.pricing h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

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

.pricing-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

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

.pricing-card.featured {
    border: 3px solid #F99930;
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #F99930;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.price {
    margin-bottom: 1rem;
}

.currency {
    font-size: 1.5rem;
    color: #F99930;
    font-weight: 600;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: #F99930;
}

.period {
    font-size: 1rem;
    color: #666;
}

.pricing-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.pricing-card li {
    padding: 0.5rem 0;
    color: #666;
}

.pricing-card li:before {
    content: "✓";
    color: #F99930;
    font-weight: bold;
    margin-right: 0.5rem;
}

.pricing-note {
    text-align: center;
    margin-top: 2rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.pricing-note p {
    color: #666;
    font-weight: 600;
}

/* Pricing Table Styles */
.pricing-table-container {
    margin: 2rem 0;
    overflow-x: auto;
}
.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    overflow: hidden;
    font-size: 1rem;
}
.pricing-table th, .pricing-table td {
    padding: 1rem 1.2rem;
    text-align: left;
    border-bottom: 1px solid #f2f2f2;
}
.pricing-table th {
    background: #FFC247;
    color: #222;
    font-weight: 700;
    font-size: 1.08em;
}
.pricing-table tr:last-child td {
    border-bottom: none;
}
.pricing-table td {
    color: #333;
    vertical-align: middle;
}
.pricing-table tr:nth-child(even) td {
    background: #fff8e6;
}
.pricing-table tr:hover td {
    background: #FFF3D1;
    transition: background 0.2s;
}
@media (max-width: 700px) {
    .pricing-table th, .pricing-table td {
        padding: 0.7rem 0.5rem;
        font-size: 0.97em;
    }
    .pricing-table-container {
        margin: 1rem 0;
    }
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #333;
}

.contact-info p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-details p {
    margin-bottom: 0.5rem;
    color: #333;
}

.contact-form {
    background: #fff;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: #fff;
    color: #333;
}

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

.form-group label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: #999;
    transition: all 0.3s ease;
    pointer-events: none;
    background: #fff;
    padding: 0 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    z-index: 10;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label,
.form-group select:focus + label,
.form-group select:not([value=""]) + label {
    top: -0.5rem;
    left: 0.5rem;
    font-size: 0.8rem;
    color: #F99930;
    font-weight: 600;
    background: #fff;
    padding: 0 0.5rem;
}

.contact-form .form-group {
    margin-bottom: 2rem;
}

.contact-form label {
    font-weight: 500;
    color: #333;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    display: block;
    position: static;
    background: transparent;
    padding: 0;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: #fff;
    color: #333;
    margin-top: 0.5rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #F99930;
    box-shadow: 0 0 0 3px rgba(249, 153, 48, 0.1);
}

/* Demo form language selector - make it wider */
.contact-form select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: #fff;
    color: #333;
    margin-top: 0.5rem;
    min-width: 200px;
}

.contact-form select:focus {
    outline: none;
    border-color: #F99930;
    box-shadow: 0 0 0 3px rgba(249, 153, 48, 0.1);
}

/* Demo form labels - make them consistent with other form labels */
.contact-form .form-group label {
    font-weight: 500;
    color: #333;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    display: block;
    position: static;
    background: transparent;
    padding: 0;
}

/* Demo form select label - make it orange when select has value or is focused */
.contact-form .form-group select:focus + label,
.contact-form .form-group select:not([value=""]) + label {
    color: #F99930;
    font-weight: 600;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn.btn-primary {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    background: linear-gradient(135deg, #FFC247, #F99930);
    color: #000;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.contact-form .btn.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(249, 153, 48, 0.3);
}

.contact-form .btn.btn-primary:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

@media (max-width: 600px) {
  .contact-form input,
  .contact-form textarea {
    font-size: 16px; /* Prevents zoom on iOS */
  }
  
  .contact-form label {
    font-size: 14px;
  }
}
/* --- END CONTACT FORM --- */

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.5rem;
    color: #F99930;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .footer-links a {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .footer-links a {
        padding: 0.5rem 0;
        border-bottom: 1px solid #555;
    }
    
    .footer-links a:last-child {
        border-bottom: none;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 70px 0 50px;
        min-height: auto;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .hero-logo {
        max-width: 400px;
    }
    
    .solution-content {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0 40px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .hero-buttons .btn-secondary {
        margin-left: 0;
        width: 100%;
        max-width: 300px;
    }
    
    .hero-logo {
        max-width: 300px;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 360px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 0.9rem;
    }
    
    .hero-logo {
        max-width: 250px;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
} 

.pricing-cta-container {
    display: flex;
    justify-content: center;
    margin: 1.5rem 0 0.5rem 0;
}
.pricing-cta-btn {
    font-size: 1.15rem;
    padding: 16px 36px;
    border-radius: 10px;
    font-weight: 700;
    background: linear-gradient(90deg, #FFC247 60%, #F99930 100%);
    color: #222;
    box-shadow: 0 2px 12px rgba(249,153,48,0.10);
    transition: background 0.2s, color 0.2s;
}
.pricing-cta-btn:hover {
    background: linear-gradient(90deg, #F99930 60%, #FFC247 100%);
    color: #000;
}
.pricing-note-flex {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}
.pricing-note-flex p {
    background: #fff8e6;
    color: #b36b00;
    padding: 0.7rem 1.5rem;
    border-radius: 8px;
    font-size: 1.04rem;
    font-weight: 500;
    box-shadow: 0 1px 6px rgba(255,194,71,0.07);
    text-align: center;
}
@media (max-width: 700px) {
    .pricing-cta-btn {
        font-size: 1rem;
        padding: 12px 18px;
    }
    .pricing-note-flex p {
        font-size: 0.97rem;
        padding: 0.5rem 0.7rem;
    }
} 

.pricing-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 2rem;
  margin: 2.5rem 0 2rem 0;
}
.pricing-card-new {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  padding: 2.2rem 1.5rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  border: 2px solid #fff8e6;
  transition: box-shadow 0.2s, border 0.2s;
}
.pricing-card-new:hover {
  box-shadow: 0 8px 32px rgba(249,153,48,0.13);
  border: 2px solid #FFC247;
}
.pricing-card-popular {
  border: 2.5px solid #FFC247;
  box-shadow: 0 8px 32px rgba(249,153,48,0.18);
}
.pricing-card-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.7rem;
}
.pricing-card-name {
  font-size: 1.35rem;
  font-weight: 700;
  color: #F99930;
  letter-spacing: 0.5px;
}
.pricing-card-badge {
  background: #FFC247;
  color: #b36b00;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 8px;
  padding: 4px 12px;
  margin-left: 0.5rem;
  box-shadow: 0 2px 8px rgba(255,194,71,0.10);
}
.pricing-card-price-row {
  display: flex;
  align-items: baseline;
  margin-bottom: 0.2rem;
}
.pricing-card-price {
  font-size: 2.2rem;
  font-weight: 800;
  color: #222;
  letter-spacing: 1px;
}
.pricing-card-period {
  font-size: 1.1rem;
  color: #888;
  margin-left: 0.3rem;
}
.pricing-card-setup, .pricing-card-limit {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.pricing-card-setup-value {
    font-weight: bold;
    color: #333;
}

.pricing-card-limit {
    font-weight: 500;
}
.pricing-card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.2rem 0;
  width: 100%;
}
.pricing-card-features li {
  font-size: 1.01rem;
  color: #333;
  margin-bottom: 0.4rem;
  padding-left: 1.2em;
  position: relative;
}
.pricing-card-features li:before {
  content: "✔";
  color: #F99930;
  position: absolute;
  left: 0;
  font-size: 1.1em;
  top: 0.1em;
}
.pricing-card-btn {
  margin-top: auto;
  width: 100%;
  font-size: 1.13rem;
  padding: 14px 0;
  border-radius: 10px;
  font-weight: 700;
  background: linear-gradient(90deg, #FFC247 60%, #F99930 100%);
  color: #222;
  box-shadow: 0 2px 12px rgba(249,153,48,0.10);
  transition: background 0.2s, color 0.2s;
  text-align: center;
  text-decoration: none;
  border: none;
  display: block;
}
.pricing-card-btn:hover {
  background: linear-gradient(90deg, #F99930 60%, #FFC247 100%);
  color: #000;
}
@media (max-width: 700px) {
  .pricing-cards-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .pricing-card-new {
    padding: 1.3rem 0.7rem 1.1rem 0.7rem;
  }
  .pricing-card-price {
    font-size: 1.5rem;
  }
} 

.pricing-toggle-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.pricing-toggle-btn {
  background: #fff8e6;
  color: #b36b00;
  border: 2px solid #FFC247;
  border-radius: 8px;
  font-size: 1.08rem;
  font-weight: 700;
  padding: 10px 28px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, border 0.18s;
  outline: none;
}
.pricing-toggle-btn.active, .pricing-toggle-btn:focus {
  background: linear-gradient(90deg, #FFC247 60%, #F99930 100%);
  color: #222;
  border: 2.5px solid #F99930;
}
.pricing-toggle-save {
  background: #F99930;
  color: #fff;
  font-size: 0.95em;
  font-weight: 700;
  border-radius: 7px;
  padding: 2px 8px;
  margin-left: 0.5em;
}
.pricing-card-save-badge {
  display: none;
  background: #F99930;
  color: #fff;
  font-size: 0.98em;
  font-weight: 700;
  border-radius: 8px;
  padding: 4px 10px;
  margin-bottom: 0.7rem;
  box-shadow: 0 2px 8px rgba(249,153,48,0.10);
}
.pricing-card-new.yearly .pricing-card-save-badge {
  display: inline-block;
}
@media (max-width: 700px) {
  .pricing-toggle-btn {
    font-size: 0.98rem;
    padding: 8px 12px;
  }
} 

.pricing-switch {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f6f6f9;
  border-radius: 2.5em;
  padding: 0.4em 0.4em;
  /* width: fit-content; */
  width: -webkit-fit-content;
  max-width: 100%;
  margin: 0 auto 2rem auto;
  box-shadow: 0 2px 12px rgba(80,80,120,0.04);
}
.switch-option {
  border: none;
  outline: none;
  background: transparent;
  font-size: 1.18rem;
  font-weight: 600;
  color: #5a4a6d;
  padding: 0.55em 2.1em;
  border-radius: 2em;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
  user-select: none;
}
.switch-option:focus {
  box-shadow: 0 0 0 2px #1ed6e4;
}
.switch-option.active {
  background: #1ed6e4;
  color: #fff;
  box-shadow: 0 2px 8px rgba(30,214,228,0.10);
}
.switch-option:not(.active):hover {
  background: #ececf6;
}
@media (max-width: 700px) {
  .pricing-switch {
    padding: 0.2em 0.2em;
  }
  .switch-option {
    font-size: 1rem;
    padding: 0.45em 1.1em;
  }
} 

.show-more-features-btn {
  display: block;
  width: 100%;
  background: linear-gradient(90deg, #ffb347 0%, #ffcc33 100%);
  color: #222;
  border: none;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  margin: 0.5rem 0 1rem 0;
  box-shadow: 0 2px 8px rgba(255, 204, 51, 0.08);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.show-more-features-btn:hover, .show-more-features-btn:focus {
  background: linear-gradient(90deg, #ffcc33 0%, #ffb347 100%);
  color: #000;
  outline: 2px solid #ffb347;
  box-shadow: 0 4px 16px rgba(255, 204, 51, 0.16);
} 

.features-main-title {
  font-size: 2.5rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 0.5rem;
  color: #222;
  letter-spacing: -1.5px;
}
.features-subtitle {
  text-align: center;
  font-size: 1.25rem;
  color: #666;
  margin-bottom: 2.5rem;
}
.section-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  letter-spacing: -1px;
  color: #222;
}
.section-subtitle {
  text-align: center;
  font-size: 1.15rem;
  color: #666;
  margin-bottom: 2.2rem;
}
.all-features-wow {
  background: #ffffff;
  border-radius: 32px;
  box-shadow: 0 8px 40px rgba(255, 204, 51, 0.10);
  padding: 3.5rem 1.5rem 3rem 1.5rem;
  margin: 4rem 0 3rem 0;
  animation: fadeInUp 0.9s;
  font-family: 'Inter', 'Poppins', Arial, sans-serif;
}
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: center;
}
.feature-card {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 4px 32px rgba(255,204,51,0.13), 0 1.5px 8px rgba(0,0,0,0.04);
  padding: 2.2rem 1.3rem 1.7rem 1.3rem;
  min-width: 240px;
  flex: 1 1 260px;
  max-width: 340px;
  backdrop-filter: blur(7px);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  opacity: 0;
  transform: translateY(40px);
  animation: cardFadeInUp 0.4s forwards;
  margin-bottom: 0;
  border-top: 5px solid #ffd600;
}
.feature-driver { border-top: 5px solid #ffd600; }
.feature-mechanic { border-top: 5px solid #4dd599; }
.feature-manager { border-top: 5px solid #4d8aff; }
.feature-extra { border-top: 5px solid #7c4dff; }
.feature-card-header {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: #222;
  letter-spacing: -0.5px;
  border-bottom: 1px solid #f2f2f2;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}
.feature-card-header > span:first-child {
  font-size: 2rem;
  /* animation: iconPop 1.2s infinite alternate cubic-bezier(.4,0,.2,1); */
  transform: scale(1.1);
}
.feature-card ul {
  list-style: disc inside;
  padding-left: 0.5em;
  font-size: 1.08rem;
  color: #222;
  line-height: 1.7;
}
.feature-card li {
  margin-bottom: 0.4em;
}
/* Feature card hover effect */
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.06);
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px);}
  to { opacity: 1; transform: translateY(0);}
}
@keyframes cardFadeInUp {
  from { opacity: 0; transform: translateY(40px);}
  to { opacity: 1; transform: translateY(0);}
}
@keyframes iconPop {
  from { transform: scale(1) rotate(-3deg); }
  to { transform: scale(1.13) rotate(5deg); }
}
@media (max-width: 1100px) {
  .features-grid { flex-direction: column; gap: 1.7rem; }
  .feature-card { max-width: 100%; }
} 
/* Modern Features Grid Styles */
.features-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.feature-box {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.feature-icon-large {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.feature-box-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.feature-box ul {
  padding-left: 1rem;
  list-style: disc;
  line-height: 1.6;
}

/* --- TESTIMONIALS CAROUSEL --- */
.testimonials-carousel {
  margin: 60px 0 40px 0;
  padding: 0;
}
.testimonials-carousel .container {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.testimonials-carousel h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 32px;
  color: #222;
  letter-spacing: 1px;
}
.carousel-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  overflow: hidden;
}

.carousel-track {
  width: 100%;
  min-height: 180px;
  display: flex;
  justify-content: center;
  align-items: stretch;
  position: relative;
}

.testimonial-bubble {
  background: linear-gradient(135deg, #fff 80%, #eaf2fb 100%);
  border-radius: 32px;
  box-shadow: 0 6px 32px 0 rgba(48,144,249,0.10), 0 1.5px 6px 0 rgba(0,0,0,0.04);
  padding: 36px 32px 28px 32px;
  margin: 0;
  min-width: 0;
  max-width: 520px;
  width: 100%;
  opacity: 0;
  transform: scale(0.98);
  transition: opacity 0.5s, transform 0.5s;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
}

.testimonial-bubble.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
  pointer-events: auto;
}
.testimonial-bubble blockquote {
  font-size: 1.25rem;
  font-weight: 500;
  color: #222;
  margin: 0 0 18px 0;
  line-height: 1.5;
  quotes: "\201C" "\201D";
}
.testimonial-bubble cite {
  display: block;
  font-size: 1rem;
  color: #3090f9;
  font-style: normal;
  font-weight: 600;
  margin-top: 8px;
  letter-spacing: 0.5px;
}
.carousel-arrow {
  background: #fff;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 1.6rem;
  color: #3090f9;
  box-shadow: 0 2px 8px rgba(48,144,249,0.10);
  cursor: pointer;
  margin: 0 12px;
  transition: background 0.2s, color 0.2s;
  z-index: 10;
}
.carousel-arrow:hover {
  background: #3090f9;
  color: #fff;
}
.carousel-dots {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  gap: 12px;
}
.carousel-dot {
  display: inline-block;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #e0e7ef;
  transition: background 0.3s, transform 0.3s;
  cursor: pointer;
}
.carousel-dot.active {
  background: #3090f9;
  transform: scale(1.18);
  box-shadow: 0 0 0 3px #eaf2fb;
}
@media (max-width: 600px) {
  .testimonials-carousel .container {
    max-width: 100%;
    padding: 0 10px;
  }
  
  .carousel-wrapper {
    max-width: 100%;
    margin: 0;
    overflow: hidden;
  }
  
  .testimonial-bubble {
    padding: 20px 16px 16px 16px;
    margin: 0;
    width: 100%;
    max-width: 100%;
    left: 0;
    right: 0;
    transform: scale(0.95);
  }
  
  .testimonial-bubble.active {
    transform: scale(1);
  }
  
  .carousel-arrow {
    width: 32px;
    height: 32px;
    font-size: 1rem;
    margin: 0 4px;
  }
  
  .testimonial-bubble blockquote {
    font-size: 1rem;
    line-height: 1.4;
  }
  
  .testimonial-bubble cite {
    font-size: 0.85rem;
  }
}
/* --- END TESTIMONIALS CAROUSEL --- */

/* --- HERO COUNTERS --- */
.hero-counters {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: -40px;
  margin-bottom: 32px;
  position: relative;
  z-index: 2;
}
.hero-counter {
  background: linear-gradient(135deg, #fff 80%, #ffe6c2 100%);
  border-radius: 24px;
  box-shadow: 0 4px 24px 0 rgba(48,144,249,0.10), 0 1.5px 6px 0 rgba(0,0,0,0.04);
  padding: 32px 38px 22px 38px;
  min-width: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.2s, transform 0.2s;
}
.hero-counter:hover {
  box-shadow: 0 8px 32px 0 rgba(48,144,249,0.18), 0 2px 8px 0 rgba(0,0,0,0.06);
  transform: translateY(-2px) scale(1.03);
}
.hero-counter-value {
  font-size: 2.8rem;
  font-weight: 800;
  color: #3090f9;
  letter-spacing: 1px;
  margin-bottom: 8px;
  font-family: 'Inter', Arial, sans-serif;
  line-height: 1.1;
}
.hero-counter-label {
  font-size: 1.1rem;
  color: #222;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-top: 2px;
}
@media (max-width: 700px) {
  .hero-counters {
    flex-direction: column;
    gap: 18px;
    margin-top: 12px;
    margin-bottom: 18px;
  }
  .hero-counter {
    min-width: 0;
    width: 90vw;
    padding: 22px 0 14px 0;
  }
  .hero-counter-value {
    font-size: 2.1rem;
  }
}
/* --- END HERO COUNTERS --- */

/* --- MODAL STYLES --- */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.modal-content {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.modal-header {
    margin-bottom: 1.5rem;
}

.modal-header h2 {
    color: #F99930;
    font-size: 1.8rem;
    font-weight: 700;
    margin-top: 1rem;
}

.modal-body {
    margin-bottom: 2rem;
}

.modal-body p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #333;
}

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

.modal-footer .btn {
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
}

@media (max-width: 600px) {
    .modal-content {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
}
/* --- END MODAL STYLES --- */

/* Currency Selector */
.currency-selector {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.currency-option {
    padding: 10px 20px;
    border: 2px solid #F99930;
    background: white;
    color: #F99930;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.currency-option:hover {
    background: #F99930;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(249, 153, 48, 0.3);
}

.currency-option.active {
    background: #F99930;
    color: white;
    box-shadow: 0 4px 12px rgba(249, 153, 48, 0.3);
}

@media (max-width: 700px) {
    .currency-selector {
        gap: 0.5rem;
    }
    
    .currency-option {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}

/* Pricing Switch */ 

 