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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #fff;
}

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

/* Navigation Styles */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #000;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #000;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #000;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #000 0%, #2d2d2d 100%);
    color: white;
    overflow: hidden;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.btn {
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    border: 2px solid transparent;
}

.btn-primary {
    background: #fff;
    color: #000;
    border-color: #fff;
}

.btn-primary:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background: white;
    color: #333;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #000;
    border-color: #000;
}

.btn-outline:hover {
    background: #000;
    color: white;
    transform: translateY(-2px);
}

.hero-image {
    text-align: center;
    animation: fadeInRight 1s ease-out 0.6s both;
}

.phones-image {
    max-width: 100%;
    height: auto;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    color: #6a6a6a;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    background: #f8fafc;
}

.about-text h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #000;
}

.about-text p {
    font-size: 1.1rem;
    color: #6a6a6a;
    margin-bottom: 20px;
}

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

.feature-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

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

.feature-item i {
    font-size: 3rem;
    color: #000;
    margin-bottom: 20px;
}

.feature-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #000;
}

.feature-item p {
    color: #6a6a6a;
}

/* Apps Section */
.apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

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

.app-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.app-icon {
    margin-bottom: 25px;
}

.app-icon img {
    width: 80px;
    height: 80px;
    border-radius: 20px;
}

.app-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #000;
}

.app-card p {
    color: #6a6a6a;
    margin-bottom: 25px;
    line-height: 1.6;
}

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

.app-features li {
    padding: 8px 0;
    color: #3a3a3a;
}

.app-features i {
    color: #000;
    margin-right: 10px;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.download-btn img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

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

/* Pricing Section */
.pricing {
    background: #f8fafc;
}

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

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.pricing-card.featured {
    border: 2px solid #000;
    transform: scale(1.02);
}

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

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #000;
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
}

.pricing-header {
    text-align: center;
    margin-bottom: 25px;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 5px;
}

.pricing-tagline {
    color: #6a6a6a;
    font-size: 0.95rem;
}

.pricing-amount {
    text-align: center;
    margin-bottom: 10px;
}

.pricing-amount .currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: #000;
    vertical-align: top;
}

.pricing-amount .price {
    font-size: 3.5rem;
    font-weight: 700;
    color: #000;
    line-height: 1;
}

.pricing-amount .period {
    font-size: 1rem;
    color: #6a6a6a;
}

.pricing-savings {
    text-align: center;
    margin-bottom: 25px;
}

.pricing-savings .original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 0.95rem;
    margin-right: 10px;
}

.pricing-savings .savings-amount {
    background: #dcfce7;
    color: #166534;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-features {
    list-style: none;
    margin: 25px 0;
    flex-grow: 1;
}

.pricing-features li {
    padding: 10px 0;
    color: #3a3a3a;
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-features li i {
    color: #000;
    font-size: 0.9rem;
    width: 18px;
}

.pricing-features li i.fa-star {
    color: #f59e0b;
}

.pricing-addon {
    background: #f8fafc;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 25px;
    text-align: center;
}

.pricing-addon p {
    color: #3a3a3a;
    font-size: 0.95rem;
    margin: 0;
}

.pricing-addon i {
    color: #6a6a6a;
    margin-right: 5px;
}

.pricing-btn {
    width: 100%;
    text-align: center;
}

.pricing-footer {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.pricing-trial {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 20px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.pricing-trial i {
    font-size: 2rem;
    color: #000;
}

.pricing-trial h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 3px;
}

.pricing-trial p {
    color: #6a6a6a;
    font-size: 0.9rem;
    margin: 0;
}

.pricing-note {
    text-align: center;
}

.pricing-note p {
    color: #6a6a6a;
    font-size: 0.9rem;
    margin: 0;
}

.pricing-note i {
    margin-right: 5px;
}

.pricing-condition {
    text-align: center;
    margin-bottom: 20px;
    padding: 12px 15px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 10px;
    border: 1px solid #bae6fd;
}

.pricing-condition p {
    color: #0369a1;
    font-size: 0.95rem;
    margin: 0;
}

.pricing-promise {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    padding: 25px 30px;
    border-radius: 15px;
    border: 1px solid #86efac;
    margin-bottom: 30px;
}

.pricing-promise i {
    font-size: 2.5rem;
    color: #16a34a;
}

.pricing-promise h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #14532d;
}

.pricing-promise p {
    color: #166534;
    font-size: 0.95rem;
    margin: 0;
}

.pricing-how-it-works {
    text-align: center;
}

.pricing-how-it-works h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.pricing-how-it-works .steps {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.pricing-how-it-works .step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    max-width: 180px;
}

.pricing-how-it-works .step-number {
    width: 40px;
    height: 40px;
    background: #000;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.pricing-how-it-works .step p {
    color: #3a3a3a;
    font-size: 0.95rem;
    margin: 0;
    text-align: center;
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

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

    .pricing-amount .price {
        font-size: 3rem;
    }

    .pricing-trial {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .pricing-promise {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .pricing-how-it-works .steps {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }
}

/* Testimonials Section */
.testimonials {
    background: white;
}

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

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

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

.testimonial-content p {
    font-style: italic;
    color: #3a3a3a;
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author-info h4 {
    font-weight: 600;
    color: #000;
    margin-bottom: 5px;
}

.author-info span {
    color: #6a6a6a;
    font-size: 0.9rem;
}

.rating i {
    color: #000;
    margin-right: 2px;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #000 0%, #2d2d2d 100%);
    color: white;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: #f8fafc;
    color: #111827;
    padding: 60px 0 20px;
    border-top: 1px solid #e5e7eb;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo .logo {
    height: 40px;
    width: auto;
}

.footer-logo .logo-text {
    color: #0f172a;
}

.footer-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #0f172a;
}

.footer-section p {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 20px;
}

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

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

.footer-section ul li a {
    color: #1f2937;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #e5e7eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111827;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #111827;
    color: #f8fafc;
    transform: translateY(-2px);
}

.contact-info p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info i {
    width: 20px;
    color: #6b7280;
}

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

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 10px 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .apps-grid {
        grid-template-columns: 1fr;
    }

    .app-card {
        padding: 30px 20px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .cta h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

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

    .hero {
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    section {
        padding: 60px 0;
    }

    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    .app-card {
        padding: 25px 15px;
    }

    .download-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Contact Page Specific Styles */
.contact-hero {
    background: linear-gradient(135deg, #000 0%, #2d2d2d 100%);
    color: white;
    text-align: center;
    padding: 120px 0 80px;
}

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

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

.contact-content {
    padding: 80px 0;
}

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

.contact-info {
    background: #f8fafc;
    padding: 40px;
    border-radius: 15px;
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: #000;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact-item i {
    font-size: 1.5rem;
    color: #000;
    width: 30px;
}

.contact-item div h4 {
    font-weight: 600;
    color: #000;
    margin-bottom: 5px;
}

.contact-item div p {
    color: #6a6a6a;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: #000;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

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

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

.submit-btn {
    background: #000;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background: #2d2d2d;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-hero h1 {
        font-size: 2.5rem;
    }

    .contact-info,
    .contact-form {
        padding: 30px 20px;
    }
}

/* Careers Page Styles */
.careers-section {
    background: #f8fafc;
    padding: 80px 0;
}

.careers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 20px;
}

.career-card {
    background: white;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: 100%;
}

.career-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #000;
}

.career-list {
    padding-left: 18px;
    color: #3a3a3a;
    line-height: 1.6;
}

.career-list li {
    margin-bottom: 10px;
}

.career-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 8px 0;
}

.career-pill {
    background: #eef2ff;
    color: #111827;
    padding: 8px 12px;
    border-radius: 999px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.cta-row {
    margin-top: 32px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

@media (max-width: 768px) {
    .careers-grid {
        grid-template-columns: 1fr;
    }
}

/* Legal Pages Styles */
.legal-hero {
    background: linear-gradient(135deg, #000 0%, #2d2d2d 100%);
    color: white;
    text-align: center;
    padding: 120px 0 80px;
}

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

.legal-content {
    padding: 80px 0;
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 40px 0 20px;
    color: #000;
}

.legal-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 30px 0 15px;
    color: #000;
}

.legal-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #3a3a3a;
}

.legal-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-content li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #3a3a3a;
}

.last-updated {
    background: #f8fafc;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 40px;
    border-left: 4px solid #000;
}

.last-updated p {
    margin: 0;
    color: #6a6a6a;
    font-style: italic;
}

@media (max-width: 768px) {
    .legal-hero h1 {
        font-size: 2.5rem;
    }

    .legal-content {
        padding: 60px 20px;
    }

    .legal-content h2 {
        font-size: 1.5rem;
    }

    .legal-content h3 {
        font-size: 1.3rem;
    }
} 