/* CSS Custom Properties */
:root {
    --primary-color: #10cd4d;
    --primary-dark: #A0F208;
    --secondary-color: #dc3545;
    --accent-color: #28a745;
    --text-dark: #2d3748;
    --text-muted: #6c757d;
    --text-light: #a0aec0;
    --background-white: #ffffff;
    --background-light: #f8fafc;
    --background-gradient: linear-gradient(135deg, #73ea66 0%, #764ba2 100%);
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.1);
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
}

/* Base Styles */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    padding-top: 80px;
    font-weight: 400;
    background-color: var(--background-white);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
}

h3 {
    font-size: 1.75rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    font-weight: 400;
    margin-bottom: 2rem;
}

/* Navigation */
.navbar {
    padding: 15px 0;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.logo {
    height: 35px;
    cursor: pointer;
}

.contact-info {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.navbar-nav .nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    border-radius: var(--radius-sm);
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
    background-color: rgba(28, 176, 246, 0.1);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
    min-height: 90vh;
}

.hero-section::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"><circle cx="50" cy="50" r="2" fill="%23e2e8f0" opacity="0.3"/></svg>');
    background-size: 40px 40px;
    z-index: 0;
}

.hero-content-wrapper {
    min-height: 70vh;
    align-items: center !important;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding-right: 2rem;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-cta .btn {
    width: 100%;
    max-width: 350px;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    z-index: 1;
}

.features-highlight {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2rem 1rem;
}

.feature-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--background-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.feature-item h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.feature-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.4;
}

/* Buttons */
.btn {
    border-radius: var(--radius-md);
    font-weight: 600;
    padding: 0.75rem 2rem;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
   
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:active {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    border-radius: var(--radius-md);
    border: 1px solid var(--primary-color);
    background: transparent;
    color: rgba(49, 49, 49, 0.82);
    font-size: 0.8rem;
}

/* secondaryGreen  */

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    border: 1px solid var(--primary-color);
}

.btn-secondary:active {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    border: 1px solid var(--primary-color);
}

.btn-tertiary {
    border-radius: var(--radius-md);
    border: 1px solid var(--secondary-color);
    background: transparent;
    color: rgba(49, 49, 49, 0.82);
    font-size: 0.8rem;
}

.btn-tertiary:hover {
    background: linear-gradient(135deg, var(--secondary-color) 0%, darkred 100%);
    color: white;
    border: 1px solid var(--secondary-color);
}

.btn-tertiary:active {
    background: linear-gradient(135deg, var(--secondary-color) 0%, darkred 100%);
    color: white;
    border: 1px solid var(--secondary-color);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: white;
}

.btn-outline-primary {
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: greenyellow;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* Features Overview */
.features-overview {
    background: var(--background-white);
    padding: 80px 0;
}

.feature-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--background-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.feature-card h4 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

/* Legal Section */
.legal-section {
    background: var(--background-light);
    padding: 80px 0;
}

.legal-title {
    font-size: 2.2rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    animation: slideInLeft 0.8s ease-out 0.2s both;
}

.legal-text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: var(--text-dark);
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.legal-section .btn {
    animation: slideInLeft 0.6s ease-out 0.6s both;
}

.compliance-badge {
    text-align: center;
    background: var(--background-white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--accent-color);
    animation: slideInRight 0.8s ease-out 0.3s both;
}

.compliance-badge i {
    font-size: 4rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    animation: bounceIn 1s ease-out 0.8s both;
}

.compliance-badge h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    animation: fadeInUp 0.6s ease-out 1s both;
}

.compliance-badge p {
    color: var(--text-muted);
    margin: 0;
    font-size: 1rem;
    animation: fadeInUp 0.6s ease-out 1.2s both;
}

/* Video Section */
.video-section {
    background: var(--background-white);
    padding: 80px 0;
}

.video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Product Sections */
.product-sections {
    background: var(--background-light);
    padding: 80px 0;
}

.product-sections .row {
    margin-bottom: 0;
}

.product-sections h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.product-sections p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.clickable {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.clickable:hover {
    transform: scale(1.05);
}

/* App Store Badges */
.app-stores {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.app-store-link {
    transition: transform 0.3s ease;
}

.app-store-link:hover {
    transform: translateY(-3px);
}

.app-store-badge {
    height: 60px;
    width: auto;
}

/* Pricing */
.pricing-section {
    margin: 2rem 0;
}

.pricing {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.old-price {
    font-size: 1.5rem;
    font-weight: 600;
    text-decoration: line-through;
    color: var(--text-light);
}

.new-price {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1;
}

.price-note {
    font-size: 0.9rem;
    color: var(--text-muted);
    align-self: flex-end;
    margin-bottom: 0.5rem;
}

.promotion-text {
    font-weight: 600;
    color: var(--accent-color);
    font-size: 1rem;
}

/* Pricing Section */
.pricing-section {
    background: var(--background-light);
    padding: 80px 0;
}

.price-card {
    background: var(--background-white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    height: 100%;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.price-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.price-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.price-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.featured-badge {
    position: absolute;
    top: 35px;
    right: -40px;
    background: var(--primary-color);
    color: white;
    padding: 5px 40px;
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(45deg);
    text-align: center;
}

.price-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.price-header h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.price {
    margin-bottom: 1rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price-period {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.price-note {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.4;
}

.price-features h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.price-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.price-features li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.5;
    color: var(--text-dark);
}

.price-features li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.1rem;
}

.pricing-note {
    background: var(--background-white);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    margin: 2rem 0;
    border-left: 4px solid var(--primary-color);
}

.pricing-note p {
    margin: 0.5rem 0;
    color: var(--text-muted);
}

.pricing-table {
    background: var(--background-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.pricing-table thead {
    background: var(--primary-color);
    color: white;
}

.pricing-table thead th {
    border: none;
    padding: 1rem;
    font-weight: 600;
}

.pricing-table tbody tr {
    border-bottom: 1px solid var(--border-color);
}

.pricing-table tbody tr:hover {
    background: var(--background-light);
}

.pricing-table td {
    padding: 1rem;
    vertical-align: middle;
}

/* Additional Features */
.additional-features {
    background: var(--background-white);
    padding: 80px 0;
}

.feature-detail {
    padding: 2rem;
    background: var(--background-light);
    border-radius: var(--radius-lg);
    height: 100%;
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
    animation: fadeInUp 0.6s ease-out both;
}

.feature-detail:nth-child(1) {
    animation-delay: 0.1s;
}

.feature-detail:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-detail:nth-child(3) {
    animation-delay: 0.3s;
}

.feature-detail:nth-child(4) {
    animation-delay: 0.4s;
}

.feature-detail:nth-child(5) {
    animation-delay: 0.5s;
}

.feature-detail:nth-child(6) {
    animation-delay: 0.6s;
}

.feature-detail:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-detail h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    animation: slideInLeft 0.6s ease-out 0.3s both;
}

.feature-detail p {
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
    animation: fadeInUp 0.6s ease-out 0.5s both;
}


/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero-content-wrapper {
        min-height: auto;
    }

    .hero-content {
        padding-right: 0;
        text-align: center;
        margin-bottom: 3rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .features-highlight {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem;
    }

    .feature-item {
        padding: 1rem;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .btn-lg {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }

    .hero-cta {
        align-items: center;
    }

    .hero-cta .btn {
        width: 100%;
        max-width: 300px;
    }

    .feature-card {
        padding: 2rem 1rem;
    }

    .compliance-badge {
        padding: 2rem 1.5rem;
        margin-top: 2rem;
    }

    .pricing {
        justify-content: center;
        text-align: center;
    }

    .new-price {
        font-size: 2.5rem;
    }

    .app-stores {
        justify-content: center;
    }

   
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .feature-card h4 {
        font-size: 1.2rem;
    }

    .legal-title {
        font-size: 1.75rem;
    }

    .compliance-badge i {
        font-size: 3rem;
    }

    .compliance-badge h3 {
        font-size: 1.5rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.95);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200px 0;
    }
    100% {
        background-position: calc(200px + 100%) 0;
    }
}

/* Hero Animations */
.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.hero-title {
    animation: slideInLeft 0.8s ease-out 0.2s both;
}

.hero-subtitle {
    animation: slideInLeft 0.8s ease-out 0.4s both;
}

.hero-cta {
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-visual {
    animation: slideInRight 0.8s ease-out 0.3s both;
}

.feature-item {
    animation: bounceIn 0.6s ease-out both;
}

.feature-item:nth-child(1) {
    animation-delay: 0.8s;
}

.feature-item:nth-child(2) {
    animation-delay: 1s;
}

.feature-item:nth-child(3) {
    animation-delay: 1.2s;
}

.feature-item:nth-child(4) {
    animation-delay: 1.4s;
}

/* Feature Cards Animations */
.feature-card {
    animation: fadeInUp 0.6s ease-out both;
}

.feature-card:nth-child(1) {
    animation-delay: 0.1s;
}

.feature-card:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.3s;
}

/* Button Hover Animations */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent
    );
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

/* Pricing Cards Animation */
.price-card {
    animation: fadeInUp 0.6s ease-out both;
}

.price-card:nth-child(1) {
    animation-delay: 0.1s;
}

.price-card:nth-child(2) {
    animation-delay: 0.2s;
}

.price-card:nth-child(3) {
    animation-delay: 0.3s;
}


/* Compliance Badge Animation */
.compliance-badge {
    animation: pulse 2s ease-in-out infinite;
}

/* Loading Animation for Images */
.img-fluid {
    transition: all 0.3s ease;
}

.img-fluid:hover {
    transform: scale(1.02);
}

/* Section Reveal Animation */
.section-title {
    animation: fadeInUp 0.8s ease-out both;
}

.section-subtitle {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Product Sections Animations */
.product-sections .row:nth-child(1) h2 {
    animation: slideInLeft 0.8s ease-out 0.3s both;
}

.product-sections .row:nth-child(1) p {
    animation: slideInLeft 0.6s ease-out 0.5s both;
}

.product-sections .row:nth-child(1) .btn {
    animation: slideInLeft 0.6s ease-out 0.7s both;
}

.product-sections .row:nth-child(1) img {
    animation: slideInRight 0.8s ease-out 0.4s both;
}

.product-sections .row:nth-child(2) h2 {
    animation: slideInRight 0.8s ease-out 0.3s both;
}

.product-sections .row:nth-child(2) p {
    animation: slideInRight 0.6s ease-out 0.5s both;
}

.product-sections .row:nth-child(2) .btn {
    animation: slideInRight 0.6s ease-out 0.7s both;
}

.product-sections .row:nth-child(2) .app-stores {
    animation: slideInRight 0.6s ease-out 0.9s both;
}

.product-sections .row:nth-child(2) img {
    animation: slideInLeft 0.8s ease-out 0.4s both;
}

.product-sections .row:nth-child(3) h2 {
    animation: slideInLeft 0.8s ease-out 0.3s both;
}

.product-sections .row:nth-child(3) p {
    animation: slideInLeft 0.6s ease-out 0.5s both;
}

.product-sections .row:nth-child(3) .pricing-section {
    animation: slideInLeft 0.6s ease-out 0.7s both;
}

.product-sections .row:nth-child(3) img {
    animation: slideInRight 0.8s ease-out 0.4s both;
}

.product-sections .row:nth-child(4) h2 {
    animation: slideInRight 0.8s ease-out 0.3s both;
}

.product-sections .row:nth-child(4) p {
    animation: slideInRight 0.6s ease-out 0.5s both;
}

.product-sections .row:nth-child(4) .video-wrapper {
    animation: slideInLeft 0.8s ease-out 0.4s both;
}

/* Video Wrapper Animation */
.video-wrapper {
    animation: fadeInUp 0.8s ease-out both;
    transition: transform 0.3s ease;
}

.video-wrapper:hover {
    transform: scale(1.02);
}

/* Pricing Table Animation */
.pricing-table tbody tr {
    animation: fadeInUp 0.4s ease-out both;
}

.pricing-table tbody tr:nth-child(1) { animation-delay: 0.1s; }
.pricing-table tbody tr:nth-child(2) { animation-delay: 0.15s; }
.pricing-table tbody tr:nth-child(3) { animation-delay: 0.2s; }
.pricing-table tbody tr:nth-child(4) { animation-delay: 0.25s; }
.pricing-table tbody tr:nth-child(5) { animation-delay: 0.3s; }
.pricing-table tbody tr:nth-child(6) { animation-delay: 0.35s; }
.pricing-table tbody tr:nth-child(7) { animation-delay: 0.4s; }
.pricing-table tbody tr:nth-child(8) { animation-delay: 0.45s; }

/* Navigation Animation */
.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles */
.btn:focus,
.nav-link:focus,
.clickable:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Subpage Styles */

/* Hero Simple */
.hero-simple {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
}

.hero-simple .hero-title {
    color: white;
    margin-bottom: 1rem;
}

.hero-simple .hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

/* Contact Page Styles */
.contact-section {
    padding: 80px 0;
    background: var(--background-light);
}

.contact-form-wrapper {
    background: var(--background-white);
    padding: 3rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    margin-bottom: 2rem;
}

.contact-form-wrapper h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.contact-info-wrapper {
    background: var(--background-white);
    padding: 3rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    height: fit-content;
}

.contact-info-wrapper h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.contact-info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-icon {
    background: var(--primary-color);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-details h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-details p {
    color: var(--text-muted);
    margin: 0.25rem 0;
}

.support-options {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.support-options h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.support-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.support-option i {
    color: var(--accent-color);
    font-size: 1.5rem;
    width: 30px;
    text-align: center;
}

.support-option h4 {
    color: var(--text-dark);
    margin: 0 0 0.25rem 0;
    font-size: 1rem;
}

.support-option p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.9rem;
}

.support-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}

.support-link:hover {
    text-decoration: underline;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--background-white);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: var(--background-light);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--accent-color);
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.faq-item p {
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Privacy Page Styles */
.privacy-content {
    padding: 80px 0;
    background: var(--background-white);
}

.privacy-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-section {
    margin-bottom: 3rem;
}

.privacy-section h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border-color);
}

.privacy-section h3 {
    color: var(--text-dark);
    font-size: 1.3rem;
    margin: 2rem 0 1rem 0;
}

.privacy-section p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.privacy-section ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.privacy-section li {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.contact-info {
    background: var(--background-light);
    padding: 1rem;
    border-radius: var(--radius-md);
}

.last-updated {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

/* Features Section for Subpages */
.features-section {
    padding: 80px 0;
    background: var(--background-white);
}

.feature-box {
    background: var(--background-light);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    background: var(--primary-color);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

.feature-box h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-box p {
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* How it Works */
.how-it-works {
    padding: 80px 0;
    background: var(--background-light);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
    background: var(--background-white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
}

.step-number {
    background: var(--accent-color);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    font-weight: 700;
}

.step h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.step p {
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Browser Compatibility */
.compatibility-section {
    padding: 80px 0;
    background: var(--background-white);
}

.browsers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.browser-item {
    text-align: center;
    padding: 2rem;
    background: var(--background-light);
    border-radius: var(--radius-lg);
    transition: transform 0.3s ease;
}

.browser-item:hover {
    transform: translateY(-5px);
}

.browser-item i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.browser-item h4 {
    color: var(--text-dark);
    margin: 0;
    font-size: 1.1rem;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    text-align: center;
}

.cta-content h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* Mobile App Specific Styles */
.app-stores {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.store-badge {
    height: 60px;
    transition: transform 0.3s ease;
}

.store-badge:hover {
    transform: scale(1.05);
}

.store-badge-large {
    height: 80px;
}

.screenshots-section {
    padding: 80px 0;
    background: var(--background-light);
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.screenshot-item {
    background: var(--background-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.screenshot-item:hover {
    transform: translateY(-5px);
}

.screenshot-placeholder {
    padding: 3rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
}

.screenshot-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.screenshot-placeholder h4 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.screenshot-placeholder p {
    margin: 0;
    opacity: 0.9;
    font-size: 0.9rem;
}

/* Requirements Section */
.requirements-section {
    padding: 80px 0;
    background: var(--background-white);
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.requirement-item {
    background: var(--background-light);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    border-top: 4px solid var(--accent-color);
}

.requirement-icon {
    margin-bottom: 1.5rem;
}

.requirement-icon i {
    font-size: 4rem;
    color: var(--primary-color);
}

.requirement-item h3 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.requirement-item ul {
    text-align: left;
    list-style: none;
    padding: 0;
}

.requirement-item li {
    color: var(--text-muted);
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    padding-left: 1.5rem;
}

.requirement-item li:before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.requirement-item li:last-child {
    border-bottom: none;
}

/* Download Section */
.download-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    text-align: center;
}

.download-content h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.download-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.download-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.download-stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Inquiry Page Styles */
.inquiry-section {
    padding: 80px 0;
    background: var(--background-light);
}

.inquiry-form-wrapper {
    background: var(--background-white);
    padding: 3rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.inquiry-form-wrapper h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.form-description {
    color: var(--text-muted);
    margin-bottom: 3rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.form-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.form-section:last-child {
    border-bottom: none;
    margin-bottom: 2rem;
}

.form-section h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-section h3 i {
    color: var(--accent-color);
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.radio-label input[type="radio"] {
    width: auto;
    margin: 0;
}

.inquiry-info {
    background: var(--background-white);
    padding: 3rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    height: fit-content;
}

.inquiry-info h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.process-step:last-child {
    border-bottom: none;
    margin-bottom: 2rem;
}

.step-icon {
    background: var(--accent-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.step-content p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.inquiry-contact {
    background: var(--background-light);
    padding: 2rem;
    border-radius: var(--radius-md);
    margin-bottom: 2rem;
}

.inquiry-contact h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.inquiry-contact p {
    color: var(--text-muted);
    margin: 0.5rem 0;
}

.inquiry-contact .phone,
.inquiry-contact .email {
    color: var(--text-dark);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.inquiry-contact i {
    color: var(--accent-color);
}

.testimonial {
    background: var(--primary-color);
    color: white;
    padding: 2rem;
    border-radius: var(--radius-md);
    text-align: center;
}

.testimonial blockquote {
    font-style: italic;
    margin: 0 0 1rem 0;
    font-size: 1rem;
    line-height: 1.5;
}

.testimonial cite {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* WebPromo Page Specific Styles */
.feature-box {
    background: var(--background-white);
    padding: 3rem 2rem;
    margin: 2rem auto;
    border-radius: var(--radius-xl);
    border-left: 4px solid var(--primary-color);
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    text-align: center;
    animation: fadeInUp 0.6s ease-out both;
    max-width: 1000px;
    width: 90%;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.feature-box .feature-icon {
    background: var(--primary-color);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
}

.feature-box h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.feature-box h2 {
    color: var(--text-dark);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.feature-box p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.webapp-button {
    margin-top: 2rem;
}

.marketing-section {
    background: var(--background-light);
    padding: 3rem 2rem;
    margin: 3rem auto;
    border-radius: var(--radius-xl);
    text-align: center;
    border: none;
    box-shadow: var(--shadow-lg);
    max-width: 1000px;
    width: 90%;
}

.marketing-section.cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
}

.marketing-section.cta h2,
.marketing-section.cta p {
    color: white;
}

.marketing-section ul {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    text-align: left;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.marketing-section li {
    margin: 1rem 0;
    font-weight: 500;
    padding-left: 1.5rem;
    position: relative;
}

.marketing-section li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.marketing-section.cta li::before {
    color: white;
}

/* Responsive adjustments for subpages */
@media (max-width: 768px) {
    .feature-box {
        padding: 2rem 1.5rem;
        margin: 1.5rem 0;
    }

    .feature-box h1 {
        font-size: 2rem;
    }

    .feature-box h2 {
        font-size: 1.5rem;
    }

    .marketing-section {
        padding: 2rem 1.5rem;
    }
}

/* Print styles */
@media print {
    .navbar,
   

    body {
        padding-top: 0;
    }

    .hero-section {
        background: white;
    }

    .btn {
        border: 1px solid var(--text-dark);
        background: white !important;
        color: var(--text-dark) !important;
    }
}