/* Fade-in animation for tool cards */
.fade-in {
    opacity: 0;
    animation: fadeInUp 0.9s cubic-bezier(0.4,0,0.2,1) 0.1s forwards;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.98);
    }
    80% {
        opacity: 1;
        transform: translateY(-6px) scale(1.01);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
/* Tool Card Styles */
.tool-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(37, 99, 235, 0.07), 0 1.5px 6px rgba(0,0,0,0.04);
    padding: 2rem 1.25rem 1.5rem 1.25rem;
    transition: transform 0.25s, box-shadow 0.25s;
    position: relative;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.tool-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.13), 0 2px 8px rgba(0,0,0,0.08);
    z-index: 2;
}

.tool-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #2563eb 60%, #5b9df4 100%);
    color: #fff;
    font-size: 1.7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.13);
    animation: toolIconFloat 2.5s ease-in-out infinite;
    transition: background 0.3s, box-shadow 0.3s;
}

.tool-card:hover .tool-icon {
    background: linear-gradient(135deg, #1d4ed8 60%, #2563eb 100%);
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.18);
}

@keyframes toolIconFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px) scale(1.08);
    }
}

.tool-card .fw-bold {
    font-size: 1.08rem;
    color: #222;
}

.tool-card p {
    font-size: 0.98rem;
    color: #6b7280;
    margin-bottom: 0;
    margin-top: 0.5rem;
}

/* Responsive for tool cards */
@media (max-width: 991px) {
    .tool-card {
        padding: 1.5rem 1rem 1.25rem 1rem;
        min-height: 160px;
    }
    .tool-icon {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
    }
}
@media (max-width: 576px) {
    .tool-card {
        padding: 1.1rem 0.75rem 1rem 0.75rem;
        min-height: 120px;
    }
    .tool-icon {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }
}
:root {
    --primary-blue: #2563eb;
    --dark-bg: #1f1f1f;
    --dark-footer: #0a0a0a;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background-color: #f8f9fa;
    overflow-x: hidden;
}

/* Header Styles */
.navbar {
    background-color: var(--primary-blue);
    padding: 0.75rem 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    color: white !important;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.navbar-brand i {
    font-size: 1.2rem;
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.3);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.nav-link {
    color: white !important;
    margin: 0 0.75rem;
    font-size: 0.813rem;
    font-weight: 500;
    text-transform: uppercase;
    transition: opacity 0.3s;
    letter-spacing: 0.5px;
}

.nav-link:hover {
    opacity: 0.8;
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-tools {
    background-color: white;
    color: var(--primary-blue);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.btn-tools:hover {
    background-color: #f0f0f0;
    transform: translateY(-1px);
}

.btn-login {
    background-color: white;
    color: var(--primary-blue);
    border: none;
    padding: 0.5rem 1.25rem;
    border-radius: 5px;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-login:hover {
    background-color: #f0f0f0;
    transform: translateY(-1px);
}

.btn-trial {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    padding: 0.5rem 1.25rem;
    border-radius: 5px;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s;
}

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

/* Hero Section */
.hero-section {
    padding: 3rem 1.5rem;
    background-color: #ffffff;
}

.login-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

/* Enhance input group icon and field focus styles */
.input-group .input-group-text {
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
    color: #6b7280;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.input-group:focus-within .input-group-text,
.input-group .form-control:focus+.input-group-text,
.input-group .input-eye:focus {
    color: var(--primary-blue);
    border-color: var(--primary-blue);
    background: #eaf1fe;
}

.input-group .form-control:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.08);
}

.input-group .input-eye {
    cursor: pointer;
    transition: color 0.2s;
}

.input-group .input-eye:hover {
    color: var(--primary-blue);
}

.login-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.login-title .register {
    color: var(--primary-blue);
}

.login-subtitle {
    color: #6b7280;
    font-size: 0.938rem;
    margin-bottom: 1.5rem;
}

.social-btn {
    border: 1px solid #e5e7eb;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    background: white;
    width: 100%;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    transition: all 0.3s;
    font-size: 0.938rem;
    font-weight: 500;
    cursor: pointer;
}

.social-btn:hover {
    background-color: #f9fafb;
    border-color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.divider {
    text-align: center;
    margin: 1.5rem 0;
    position: relative;
    font-size: 0.875rem;
    color: #6b7280;
}

.divider::before,
.divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 42%;
    height: 1px;
    background-color: #e5e7eb;
}

.divider::before {
    left: 0;
}

.divider::after {
    right: 0;
}

.input-group {
    margin-bottom: 1rem;
}

.input-group-text {
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
    border-right: none;
    color: #6b7280;
}

.form-control {
    padding: 0.75rem 1rem;
    border-radius: 0 6px 6px 0;
    border: 1px solid #e5e7eb;
    border-left: none;
    font-size: 0.938rem;
}

.form-control::placeholder {
    color: #9ca3af;
}

.form-control:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    outline: none;
}

.input-group:focus-within .input-group-text {
    border-color: var(--primary-blue);
}

.form-check-input:checked {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.form-check-label {
    font-size: 0.875rem;
    color: #374151;
}

.btn-primary-custom {
    background-color: var(--primary-blue);
    border: none;
    padding: 0.875rem;
    border-radius: 6px;
    width: 100%;
    color: white;
    font-weight: 600;
    font-size: 0.938rem;
    margin-top: 0.5rem;
    transition: all 0.3s;
}

.btn-primary-custom:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.illustration-card {
    background: linear-gradient(135deg, #5b9df4 0%, #4a8deb 100%);
    border-radius: 25px;
    padding: 3rem 2rem;
    position: relative;
    overflow: visible;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Background decorative shape */
.illustration-card::before {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 0;
}

.file-icon {
    position: absolute;
    background: white;
    border-radius: 12px;
    padding: 0.75rem 1rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.file-icon:hover {
    transform: scale(1.05);
}

.file-main {
    width: 240px;
    height: 280px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.file-pdf {
    top: 15%;
    right: 12%;
    animation: float 3s ease-in-out infinite;
}

.file-ppt {
    top: 35%;
    right: 5%;
    animation: float 3.5s ease-in-out infinite;
    animation-delay: 0.5s;
}

.file-doc {
    top: 55%;
    right: 8%;
    animation: float 4s ease-in-out infinite;
    animation-delay: 1s;
}

.file-xls {
    bottom: 20%;
    left: 12%;
    animation: float 3.2s ease-in-out infinite;
    animation-delay: 1.5s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.scissors-icon {
    position: absolute;
    bottom: 42%;
    left: 18%;
    font-size: 2.5rem;
    color: white;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.2));
}

.heart-icon {
    position: absolute;
    bottom: 32%;
    left: 12%;
    font-size: 1.5rem;
    color: #FF6B9D;
    background: white;
    padding: 0.625rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.illustration-text {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 100%;
    padding: 0 2rem;
}

.illustration-text p {
    color: white;
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Footer Styles */
footer {
    background-color: #2d2d2d;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-brand {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.footer-brand i {
    margin-right: 0.5rem;
}

footer h6 {
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.813rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #ffffff;
}

footer a {
    color: #b0b0b0;
    text-decoration: none;
    display: block;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    transition: color 0.3s;
}

footer a:hover {
    color: white;
}

.footer-links {
    margin-bottom: 2rem;
}

.newsletter-section {
    background-color: transparent;
    padding: 0;
    border-radius: 0;
}

.newsletter-section h6 {
    margin-bottom: 0.5rem;
    font-size: 0.813rem;
}

.newsletter-section p {
    font-size: 0.938rem;
    color: white;
    margin-bottom: 1rem;
}

.newsletter-form {
    max-width: 500px;
}

.newsletter-input {
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    border: none;
    background-color: white;
    color: #333;
    font-size: 0.875rem;
}

.newsletter-input::placeholder {
    color: #999;
}

.newsletter-input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

.btn-subscribe {
    background-color: var(--primary-blue);
    border: none;
    border-radius: 50px;
    padding: 0.75rem 2rem;
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
    white-space: nowrap;
    transition: all 0.3s;
}

.btn-subscribe:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

.footer-divider {
    border-color: #444;
    margin: 2.5rem 0;
    opacity: 0.5;
}

.footer-bottom {
    padding-top: 1rem;
}

.language-btn {
    background-color: transparent;
    border: 1px solid #555;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.875rem;
    transition: all 0.3s;
}

.language-btn:hover {
    border-color: #999;
    background-color: rgba(255, 255, 255, 0.05);
}

.language-btn i {
    margin-right: 0.5rem;
}

.copyright-text {
    font-size: 0.875rem;
    color: #b0b0b0;
    margin: 0;
}

.social-icons {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

.social-icons a {
    color: #b0b0b0;
    font-size: 1.25rem;
    transition: all 0.3s;
    display: inline-block;
}

.social-icons a:hover {
    color: white;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 991px) {
    .navbar-actions {
        margin-top: 1rem;
        justify-content: center;
        width: 100%;
    }

    .navbar-nav {
        text-align: center;
        margin: 1rem 0;
    }

    .nav-link {
        padding: 0.5rem 0;
    }

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

/* Signup illustration animation */
.signup-illustration-animate {
    animation: signupFadeInFloat 2s cubic-bezier(0.4, 0, 0.2, 1) 0s 1, signupFloat 4s ease-in-out 2s infinite;
}

@keyframes signupFadeInFloat {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.98);
    }

    60% {
        opacity: 1;
        transform: translateY(-10px) scale(1.02);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes signupFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 2rem 1rem;
    }

    .login-card {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .login-title {
        font-size: 1.5rem;
    }

    .illustration-card {
        min-height: 350px;
        margin-top: 2rem;
        padding: 2rem;
    }

    .file-main {
        width: 180px;
        height: 220px;
    }

    .scissors-icon {
        font-size: 2rem;
    }

    .newsletter-form {
        max-width: 100%;
    }

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

    .footer-links>div {
        text-align: center;
    }

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

    .footer-bottom .col-md-4 {
        margin-bottom: 1.5rem;
    }

    .copyright-text {
        text-align: center !important;
    }

    .language-btn {
        width: 100%;
    }

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

@media (max-width: 576px) {
    .social-btn {
        font-size: 0.875rem;
        padding: 0.625rem;
    }

    .btn-subscribe {
        width: 100%;
        margin-top: 0.5rem;
    }

    .newsletter-form {
        flex-direction: column !important;
    }

    .newsletter-input {
        width: 100%;
    }
}
 .fade-in {
      opacity: 0;
      animation: fadeInUp 0.9s cubic-bezier(0.4, 0, 0.2, 1) 0.1s forwards;
    }

    @keyframes fadeInUp {
      0% {
        opacity: 0;
        transform: translateY(30px) scale(0.98);
      }

      80% {
        opacity: 1;
        transform: translateY(-6px) scale(1.01);
      }

      100% {
        opacity: 1;
        transform: translateY(0) scale(1);
      }
    }

    /* Tool Card Styles */
    .tool-card {
      background: #fff;
      border-radius: 18px;
      box-shadow: 0 2px 16px rgba(37, 99, 235, 0.07), 0 1.5px 6px rgba(0, 0, 0, 0.04);
      padding: 2rem 1.25rem 1.5rem 1.25rem;
      transition: transform 0.25s, box-shadow 0.25s;
      position: relative;
      min-height: 180px;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: flex-start;
    }

    .tool-card:hover {
      transform: translateY(-6px) scale(1.03);
      box-shadow: 0 8px 32px rgba(37, 99, 235, 0.13), 0 2px 8px rgba(0, 0, 0, 0.08);
      z-index: 2;
    }

    .tool-icon {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      background: linear-gradient(135deg, #2563eb 60%, #5b9df4 100%);
      color: #fff;
      font-size: 1.7rem;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 8px rgba(37, 99, 235, 0.13);
      animation: toolIconFloat 2.5s ease-in-out infinite;
      transition: background 0.3s, box-shadow 0.3s;
    }

    .tool-card:hover .tool-icon {
      background: linear-gradient(135deg, #1d4ed8 60%, #2563eb 100%);
      box-shadow: 0 4px 16px rgba(37, 99, 235, 0.18);
    }

    @keyframes toolIconFloat {

      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-10px) scale(1.08);
      }
    }
/* All-in-One Tools Section */
.tools-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.75rem;
}

.tools-main-subtitle {
    font-size: 1.063rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

/* Tools Filter Tabs */
.tools-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.tool-tab {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 50px;
    padding: 0.625rem 1.5rem;
    font-size: 0.938rem;
    font-weight: 500;
    color: #374151;
    cursor: pointer;
    transition: all 0.3s;
}

.tool-tab:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

.tool-tab.active {
    background: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
}

/* Service Cards */
.service-card {
    background: white;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.12);
}

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 2rem;
    color: white;
}

/* Service Icon Colors */
.service-icon-word {
    background: linear-gradient(135deg, #2b579a 0%, #3b6fb6 100%);
}

.service-icon-excel {
    background: linear-gradient(135deg, #217346 0%, #2d9558 100%);
}

.service-icon-ppt {
    background: linear-gradient(135deg, #d24726 0%, #e85a3a 100%);
}

.service-icon-merge {
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
}

.service-icon-edit {
    background: linear-gradient(135deg, #06b6d4 0%, #22d3ee 100%);
}

.service-icon-compress {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
}

.service-icon-jpg {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
}

.service-icon-sign {
    background: linear-gradient(135deg, #ec4899 0%, #f472b6 100%);
}

.service-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.75rem;
}

.service-desc {
    font-size: 0.938rem;
    color: #6b7280;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-arrow {
    color: var(--primary-blue);
    font-size: 1.75rem;
    transition: all 0.3s;
    text-decoration: none;
}

.service-arrow:hover {
    color: #1d4ed8;
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 768px) {
    .tools-main-title {
        font-size: 1.75rem;
    }

    .tools-tabs {
        gap: 0.5rem;
    }

    .tool-tab {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }

    .service-card {
        padding: 1.5rem 1rem;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
    }
}
    .tool-card .fw-bold {
      font-size: 1.08rem;
      color: #222;
    }

    .tool-card p {
      font-size: 0.98rem;
      color: #6b7280;
      margin-bottom: 0;
      margin-top: 0.5rem;
    }

    /* Responsive for tool cards */
    @media (max-width: 991px) {
      .tool-card {
        padding: 1.5rem 1rem 1.25rem 1rem;
        min-height: 160px;
      }

      .tool-icon {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
      }
    }

    @media (max-width: 576px) {
      .tool-card {
        padding: 1.1rem 0.75rem 1rem 0.75rem;
        min-height: 120px;
      }

      .tool-icon {
        width: 32px;
        height: 32px;
        font-size: 1rem;
      }
    }
/* Why Choose Section */
.why-choose-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.5rem;
}

.why-choose-badge {
    display: inline-block;
    background: var(--primary-blue);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
}

/* Why Card */
.why-card {
    background: white;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    height: 100%;
    text-align: center;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.15);
}

/* Why Icon */
.why-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: white;
}

.why-icon-people {
    background: linear-gradient(135deg, #ef4444 0%, #f87171 100%);
}

.why-icon-business {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
}

.why-icon-support {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
}

.why-icon-partners {
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
}

.why-icon-security {
    background: linear-gradient(135deg, #06b6d4 0%, #22d3ee 100%);
}

.why-icon-fast {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
}

/* Why Badge */
.why-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #dc2626;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.why-badge-yellow {
    background: #f59e0b;
}

.why-badge-blue {
    background: #3b82f6;
}

/* Why Title */
.why-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.75rem;
}

/* Why Description */
.why-desc {
    font-size: 0.938rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .why-choose-title {
        font-size: 1.75rem;
    }

    .why-choose-badge {
        font-size: 0.875rem;
        padding: 0.625rem 1.5rem;
    }

    .why-card {
        padding: 1.5rem 1rem;
    }

    .why-icon {
        width: 80px;
        height: 80px;
    }

    .why-icon svg {
        width: 36px;
        height: 36px;
    }
}
    :root {
      --primary-blue: #2563eb;
      --dark-bg: #1f1f1f;
      --dark-footer: #0a0a0a;
    }

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

    body {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
      background-color: #f8f9fa;
      overflow-x: hidden;
    }

    /* Header Styles */
    .navbar {
      background-color: var(--primary-blue);
      padding: 0.75rem 1.5rem;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .navbar-brand {
      color: white !important;
      font-weight: 700;
      font-size: 1rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .navbar-brand i {
      font-size: 1.2rem;
    }

    .navbar-toggler {
      border-color: rgba(255, 255, 255, 0.3);
    }

    .navbar-toggler-icon {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }

    .nav-link {
      color: white !important;
      margin: 0 0.75rem;
      font-size: 0.813rem;
      font-weight: 500;
      text-transform: uppercase;
      transition: opacity 0.3s;
      letter-spacing: 0.5px;
    }

    .nav-link:hover {
      opacity: 0.8;
    }

    .navbar-actions {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .btn-tools {
      background-color: white;
      color: var(--primary-blue);
      border: none;
      padding: 0.5rem 1rem;
      border-radius: 5px;
      font-size: 0.875rem;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      transition: all 0.3s;
    }

    .btn-tools:hover {
      background-color: #f0f0f0;
      transform: translateY(-1px);
    }

    .btn-login {
      background-color: white;
      color: var(--primary-blue);
      border: none;
      padding: 0.5rem 1.25rem;
      border-radius: 5px;
      font-size: 0.875rem;
      font-weight: 600;
      transition: all 0.3s;
    }

    .btn-login:hover {
      background-color: #f0f0f0;
      transform: translateY(-1px);
    }

    .btn-trial {
      background-color: transparent;
      color: white;
      border: 2px solid white;
      padding: 0.5rem 1.25rem;
      border-radius: 5px;
      font-size: 0.875rem;
      font-weight: 600;
      transition: all 0.3s;
    }

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

    /* Hero Section */
    .hero-section {
      background: linear-gradient(135deg, #ffffff 0%, #f3f4f6 100%);
      padding: 5rem 1.5rem;
      overflow: hidden;
    }

    .hero-section .container {
      max-width: 1200px;
    }

    .hero-content {
      text-align: left;
    }

    .hero-title {
      font-size: 3.5rem;
      font-weight: 700;
      margin-bottom: 1.5rem;
      color: #111827;
      line-height: 1.2;
    }

    .hero-title .text-primary {
      color: var(--primary-blue) !important;
      display: block;
    }

    .hero-subtitle {
      font-size: 1.125rem;
      color: #374151;
      margin-bottom: 2.5rem;
      max-width: 500px;
      line-height: 1.6;
    }

    .btn-hero {
      background-color: var(--primary-blue);
      color: white;
      border: none;
      padding: 1rem 2.5rem;
      border-radius: 8px;
      font-size: 1rem;
      font-weight: 600;
      transition: all 0.3s;
      display: inline-block;
      text-decoration: none;
      box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    }

    .btn-hero:hover {
      background-color: #1d4ed8;
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
      color: white;
    }

    .hero-illustration {
      position: relative;
      animation: heroFloat 3s ease-in-out infinite;
    }

    .hero-illustration img {
      width: 100%;
      height: auto;
      max-width: 600px;
      filter: drop-shadow(0 20px 40px rgba(37, 99, 235, 0.15));
    }

    @keyframes heroFloat {

      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-15px);
      }
    }

    .hero-illustration img {
      width: 100%;
      height: auto;
      border-radius: 20px;
      box-shadow: 0 20px 60px rgba(37, 99, 235, 0.15);
    }

    /* Section Styles */
    .section {
      padding: 4rem 1.5rem;
    }

    .section-sm {
      padding: 3rem 1.5rem;
    }

    .section-title {
      font-size: 2rem;
      font-weight: 700;
      color: #111827;
      margin-bottom: 0.5rem;
      text-align: center;
    }

    .section-subtitle {
      font-size: 1rem;
      color: #6b7280;
      margin-bottom: 3rem;
      text-align: center;
    }

    /* Feature Cards */
    .feature-card {
      background: white;
      border-radius: 12px;
      padding: 1.5rem;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
      transition: all 0.3s;
      height: 100%;
    }

    .feature-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 20px rgba(37, 99, 235, 0.1);
    }

    .badge-soft {
      background-color: #eff6ff;
      color: var(--primary-blue);
      font-size: 0.875rem;
      font-weight: 500;
      border-radius: 50px;
    }

    /* Logo Strip */
    .logo-strip {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1rem;
      margin-top: 1rem;
    }

    .logo-pill {
      background: white;
      border: 1px solid #e5e7eb;
      border-radius: 50px;
      padding: 0.5rem 1.5rem;
      font-size: 0.875rem;
      font-weight: 500;
      color: #6b7280;
    }

    /* Company Logos Grid */
    .company-logos-grid {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      gap: 2rem 3rem;
      max-width: 1200px;
      margin: 0 auto;
      align-items: center;
    }

    .company-logo {
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s;
      cursor: pointer;
    }

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

    .company-logo:hover img {
      opacity: 0.9 !important;
    }

    @media (max-width: 1200px) {
      .company-logos-grid {
        grid-template-columns: repeat(5, 1fr);
      }
    }

    @media (max-width: 768px) {
      .company-logos-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem 2rem;
      }
    }

    @media (max-width: 480px) {
      .company-logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem 1rem;
      }
    }

    /* Mobile Band */
    .mobile-band {
      background: linear-gradient(135deg, var(--primary-blue) 0%, #1d4ed8 100%);
      border-radius: 20px;
      color: white;
    }

    .mobile-band h3 {
      font-size: 2rem;
      font-weight: 700;
    }

    .mobile-band p {
      color: rgba(255, 255, 255, 0.9);
    }

    /* Pricing Cards */
    .plan {
      background: white;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
      transition: all 0.3s;
      height: 100%;
    }

    .plan:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 32px rgba(37, 99, 235, 0.15);
    }

    .plan-head {
      background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
      padding: 2rem;
      text-align: center;
    }

    .plan-price {
      font-size: 3rem;
      font-weight: 700;
      color: var(--primary-blue);
    }

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

    .plan li {
      padding: 0.5rem 0;
      color: #6b7280;
      font-size: 0.938rem;
    }

    .plan li::before {
      content: "✓";
      color: var(--primary-blue);
      font-weight: bold;
      margin-right: 0.5rem;
    }

    /* FAQ */
    .faq-item {
      background: white;
      border: 1px solid #e5e7eb;
      border-radius: 12px;
      overflow: hidden;
    }

    .accordion-button {
      background: white;
      color: #111827;
      font-weight: 600;
      padding: 1.25rem;
    }

    .accordion-button:not(.collapsed) {
      background: #eff6ff;
      color: var(--primary-blue);
    }

    .accordion-button:focus {
      box-shadow: none;
      border-color: var(--primary-blue);
    }

    .faq-item-simple {
      transition: all 0.3s;
      cursor: pointer;
    }

    .faq-item-simple:hover {
      transform: translateX(5px);
      box-shadow: 0 2px 8px rgba(37, 99, 235, 0.1);
    }

    /* Tool Links */
    .tool-link {
      color: #374151;
      text-decoration: none;
      font-size: 0.938rem;
      display: flex;
      align-items: center;
      gap: 0.75rem;
      padding: 0.5rem 0;
      transition: all 0.3s;
    }

    .tool-link:hover {
      color: var(--primary-blue);
      transform: translateX(5px);
    }

    .tool-link-icon {
      width: 32px;
      height: 32px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .tool-link-icon i {
      font-size: 1rem;
    }

    /* Testimonials */
    .testimonial-card {
      border: 1px solid #e5e7eb;
    }

    .testimonial-text {
      position: relative;
    }

    .testimonial-avatar {
      transition: transform 0.3s;
    }

    .testimonial-avatar:hover {
      transform: scale(1.1);
    }

    /* Footer Styles */
    footer {
      background-color: #2d2d2d;
      color: white;
      padding: 4rem 0 2rem;
    }

    .footer-brand {
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: 1rem;
      color: white;
    }

    .footer-brand i {
      margin-right: 0.5rem;
    }

    footer h6 {
      font-weight: 600;
      margin-bottom: 1rem;
      font-size: 0.813rem;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      color: #ffffff;
    }

    footer a {
      color: #b0b0b0;
      text-decoration: none;
      display: block;
      margin-bottom: 0.75rem;
      font-size: 0.875rem;
      transition: color 0.3s;
    }

    footer a:hover {
      color: white;
    }

    .footer-links {
      margin-bottom: 2rem;
    }

    .newsletter-section {
      background-color: transparent;
      padding: 0;
      border-radius: 0;
    }

    .newsletter-section h6 {
      margin-bottom: 0.5rem;
      font-size: 0.813rem;
    }

    .newsletter-section p {
      font-size: 0.938rem;
      color: white;
      margin-bottom: 1rem;
    }

    .newsletter-form {
      max-width: 500px;
    }

    .newsletter-input {
      border-radius: 50px;
      padding: 0.75rem 1.5rem;
      border: none;
      background-color: white;
      color: #333;
      font-size: 0.875rem;
    }

    .newsletter-input::placeholder {
      color: #999;
    }

    .newsletter-input:focus {
      outline: none;
      box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
    }

    .btn-subscribe {
      background-color: var(--primary-blue);
      border: none;
      border-radius: 50px;
      padding: 0.75rem 2rem;
      color: white;
      font-weight: 600;
      font-size: 0.875rem;
      white-space: nowrap;
      transition: all 0.3s;
    }

    .btn-subscribe:hover {
      background-color: #1d4ed8;
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
    }

    .footer-divider {
      border-color: #444;
      margin: 2.5rem 0;
      opacity: 0.5;
    }

    .footer-bottom {
      padding-top: 1rem;
    }

    .language-btn {
      background-color: transparent;
      border: 1px solid #555;
      color: white;
      padding: 0.5rem 1rem;
      border-radius: 6px;
      font-size: 0.875rem;
      transition: all 0.3s;
    }

    .language-btn:hover {
      border-color: #999;
      background-color: rgba(255, 255, 255, 0.05);
    }

    .language-btn i {
      margin-right: 0.5rem;
    }

    .copyright-text {
      font-size: 0.875rem;
      color: #b0b0b0;
      margin: 0;
    }

    .social-icons {
      display: flex;
      justify-content: flex-end;
      gap: 1rem;
    }

    .social-icons a {
      color: #b0b0b0;
      font-size: 1.25rem;
      transition: all 0.3s;
      display: inline-block;
      margin-bottom: 0 !important;
    }

    .social-icons a:hover {
      color: white;
      transform: translateY(-3px);
    }

    /* Responsive Design */
    @media (max-width: 991px) {
      .hero-section {
        padding: 4rem 1.5rem;
      }

      .hero-content {
        text-align: center;
      }

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

      .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
      }

      .hero-illustration {
        margin-top: 2rem;
      }
    }

    @media (max-width: 768px) {
      .hero-section {
        padding: 3rem 1rem;
      }

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

      .section-title {
        font-size: 1.5rem;
      }

      .mobile-band h3 {
        font-size: 1.5rem;
      }

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

      .footer-links>div {
        text-align: center;
      }

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

      .footer-bottom .col-md-4 {
        margin-bottom: 1.5rem;
      }

      .copyright-text {
        text-align: center !important;
      }

      .language-btn {
        width: 100%;
      }

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

    @media (max-width: 576px) {
      .btn-subscribe {
        width: 100%;
        margin-top: 0.5rem;
      }

      .newsletter-form {
        flex-direction: column !important;
      }

      .newsletter-input {
        width: 100%;
      }

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

      .hero-subtitle {
        font-size: 1rem;
      }
    }
    /* Testimonials Section */
.testimonials-section {
    background-color: #ffffff;
    padding: 5rem 1.5rem;
}

.testimonial-label {
    font-size: 0.813rem;
    font-weight: 600;
    color: #6b7280;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.testimonial-main-badge {
    display: inline-block;
    background: var(--primary-blue);
    color: white;
    padding: 0.875rem 2.5rem;
    border-radius: 8px;
    font-size: 1.25rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* Testimonial Wrapper */
.testimonial-wrapper {
    background: white;
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    position: relative;
}

/* Quote Icon */
.testimonial-quote-icon {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

/* Star Rating */
.testimonial-stars {
    color: #fbbf24;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 0.25rem;
}

/* Testimonial Content */
.testimonial-content {
    font-size: 1.063rem;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Client Info */
.testimonial-client {
    margin-bottom: 2.5rem;
}

.client-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.25rem;
}

.client-role {
    font-size: 0.938rem;
    color: #6b7280;
}

/* Navigation */
.testimonial-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.testimonial-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #e5e7eb;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1.125rem;
    color: #6b7280;
}

.testimonial-nav-btn:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
    background: #eff6ff;
}

/* Avatars */
.testimonial-avatars {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.testimonial-avatar-item {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #e5e7eb;
    transition: all 0.3s;
    cursor: pointer;
}

.testimonial-avatar-item:hover {
    transform: scale(1.1);
}

.testimonial-avatar-item.testimonial-avatar-active {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

.testimonial-avatar-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive */
@media (max-width: 768px) {
    .testimonials-section {
        padding: 3rem 1rem;
    }

    .testimonial-main-badge {
        font-size: 1rem;
        padding: 0.75rem 2rem;
    }

    .testimonial-wrapper {
        padding: 2rem 1.5rem;
    }

    .testimonial-quote-icon svg {
        width: 40px;
        height: 40px;
    }

    .testimonial-content {
        font-size: 0.938rem;
    }

    .testimonial-navigation {
        flex-direction: column;
        gap: 1.5rem;
    }

    .testimonial-nav-btn {
        width: 35px;
        height: 35px;
    }

    .testimonial-avatars {
        order: -1;
    }

    .testimonial-avatar-item {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 576px) {
    .testimonial-avatar-item {
        width: 40px;
        height: 40px;
    }

    .testimonial-avatars {
        gap: 0.5rem;
    }
}
/* Company Logos Section */
.company-section {
    background-color: #f8f9fa;
    padding: 4rem 1.5rem;
}

.company-section-title {
    font-size: 1.375rem;
    font-weight: 600;
    color: #111827;
    text-align: center;
    margin-bottom: 3rem;
}

/* Company Grid */
.company-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 3rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.company-item {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    cursor: pointer;
    min-height: 40px;
}

.company-item:hover {
    transform: scale(1.05);
}

.company-item img {
    max-height: 32px;
    width: auto;
    opacity: 0.6;
    transition: opacity 0.3s;
    filter: grayscale(100%);
}

.company-item:hover img {
    opacity: 0.9;
    filter: grayscale(0%);
}

/* Company Text */
.company-text {
    color: #6b7280;
    font-size: 1rem;
    font-weight: 500;
    white-space: nowrap;
}

.company-text-spaced {
    letter-spacing: 2px;
}

.company-text-sm {
    font-size: 0.875rem;
}

/* Specific adjustments for different logos */
.company-item:nth-child(6) img {
    /* Harvard - taller */
    max-height: 40px;
}

.company-item:nth-child(8) img {
    /* Nestle - taller */
    max-height: 36px;
}

.company-item:nth-child(4) img,
.company-item:nth-child(10) img,
.company-item:nth-child(13) img {
    /* Microsoft, Walmart, FedEx - slightly smaller */
    max-height: 28px;
}

/* Responsive */
@media (max-width: 1200px) {
    .company-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 2.5rem 2rem;
    }
}

@media (max-width: 768px) {
    .company-section {
        padding: 3rem 1rem;
    }

    .company-section-title {
        font-size: 1.125rem;
        margin-bottom: 2rem;
    }

    .company-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem 1.5rem;
    }

    .company-item img {
        max-height: 28px;
    }

    .company-text {
        font-size: 0.875rem;
    }
}

@media (max-width: 576px) {
    .company-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem 1rem;
    }

    .company-item img {
        max-height: 24px;
    }

    .company-text {
        font-size: 0.813rem;
    }

    .company-text-sm {
        font-size: 0.75rem;
    }
}
/* File Upload Section */
.upload-section {
    background: #ffffff;
    padding: 5rem 1.5rem;
}

.upload-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.upload-subtitle {
    font-size: 1.063rem;
    color: #6b7280;
    margin-bottom: 0;
}

/* Upload Area */
.upload-area {
    max-width: 900px;
    margin: 0 auto;
}

/* Dropzone */
.upload-dropzone {
    border: 3px dashed var(--primary-blue);
    border-radius: 20px;
    padding: 4rem 2rem;
    text-align: center;
    background: #f8f9fa;
    transition: all 0.3s;
    position: relative;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.upload-dropzone:hover {
    background: #eff6ff;
    border-color: #1d4ed8;
}

.upload-dropzone.dragover {
    background: #dbeafe;
    border-color: #1d4ed8;
    transform: scale(1.02);
}

/* Upload Icon */
.upload-icon {
    position: relative;
    margin-bottom: 2rem;
    color: var(--primary-blue);
}

.upload-folder-icon {
    position: absolute;
    bottom: -20px;
    right: -10px;
    color: var(--primary-blue);
}

/* File Badge */
.file-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: var(--primary-blue);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    display: none;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    animation: slideInRight 0.4s ease-out;
}

.file-badge.show {
    display: flex;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Upload Text */
.upload-text {
    font-size: 1.125rem;
    color: #374151;
    margin-bottom: 0;
}

.upload-link {
    color: var(--primary-blue);
    text-decoration: underline;
    cursor: pointer;
    font-weight: 600;
    transition: color 0.3s;
}

.upload-link:hover {
    color: #1d4ed8;
}

/* File Upload Section - Exact Match */
.upload-section {
    background: #ffffff;
    padding: 5rem 1.5rem;
}

.upload-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.upload-subtitle {
    font-size: 1.063rem;
    color: #374151;
    margin-bottom: 0;
}

/* Main Container */
.upload-main-container {
    max-width: 900px;
    margin: 0 auto;
}

/* Dropzone - Dashed Border Box */
.upload-dropzone {
    border: 3px dashed var(--primary-blue);
    border-radius: 16px;
    padding: 4rem 2rem;
    text-align: center;
    background: #ffffff;
    transition: all 0.3s;
    position: relative;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.upload-dropzone:hover {
    background: #f8fafc;
}

.upload-dropzone.dragover {
    background: #eff6ff;
    border-color: #1d4ed8;
}

/* Icon Wrapper */
.upload-icon-wrapper {
    position: relative;
    margin-bottom: 1rem;
}

.folder-base-icon {
    color: var(--primary-blue);
}

.upload-circle-badge {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 58px;
    height: 58px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(37, 99, 235, 0.4);
}

/* File Name Badge */
.file-name-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: var(--primary-blue);
    color: white;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* Drag Drop Text */
.drag-drop-text {
    font-size: 1.063rem;
    color: #111827;
    margin-bottom: 0;
}

.browser-file-link {
    color: var(--primary-blue);
    text-decoration: underline;
    cursor: pointer;
    font-weight: 600;
    transition: color 0.3s;
}

.browser-file-link:hover {
    color: #1d4ed8;
}

.file-input-hidden {
    display: none;
}

/* URL Section */
.url-section {
    margin-top: 0;
}

.url-section-label {
    font-size: 1rem;
    color: #111827;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: left;
}

.url-input-wrapper {
    display: flex;
    gap: 1rem;
}

.url-input-field {
    flex: 1;
    padding: 0.875rem 1.5rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 0.938rem;
    transition: all 0.3s;
    background: white;
}

.url-input-field:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.url-input-field::placeholder {
    color: #9ca3af;
}

.url-upload-btn {
    background: var(--primary-blue);
    color: white;
    border: none;
    padding: 0.875rem 2.5rem;
    border-radius: 8px;
    font-size: 0.938rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.url-upload-btn:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .upload-section {
        padding: 3rem 1rem;
    }

    .upload-title {
        font-size: 1.75rem;
    }

    .upload-subtitle {
        font-size: 0.938rem;
    }

    .upload-dropzone {
        padding: 3rem 1.5rem;
        min-height: 250px;
    }

    .folder-base-icon {
        width: 75px;
        height: 75px;
    }

    .upload-circle-badge {
        width: 34px;
        height: 34px;
        bottom: 6px;
    }

    .upload-circle-badge svg {
        width: 18px;
        height: 18px;
    }

    .file-name-badge {
        position: static;
        margin-bottom: 1.5rem;
        font-size: 0.813rem;
        padding: 0.625rem 1.25rem;
    }

    .drag-drop-text {
        font-size: 0.938rem;
    }

    .url-input-wrapper {
        flex-direction: column;
    }

    .url-upload-btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .upload-dropzone {
        padding: 2rem 1rem;
    }

    .folder-base-icon {
        width: 65px;
        height: 65px;
    }

    .upload-circle-badge {
        width: 50px;
        height: 50px;
    }

    .upload-circle-badge svg {
        width: 26px;
        height: 26px;
    }

    .file-name-badge {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }
}
/* Upload Progress Section */
.upload-progress-section {
    background: #ffffff;
    padding: 5rem 1.5rem;
}

.progress-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.progress-subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 0;
}

/* Progress Container */
.progress-container {
    max-width: 900px;
    margin: 0 auto;
}

/* Progress Box */
.progress-box {
    border: 3px dashed var(--primary-blue);
    border-radius: 16px;
    padding: 4rem 2rem;
    text-align: center;
    background: #ffffff;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

/* Circular Progress */
.circular-progress-wrapper {
    position: relative;
    margin-bottom: 2rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.circular-progress {
    transform: rotate(0deg);
}

.progress-circle {
    transition: stroke-dashoffset 0.5s ease;
}

/* Progress Percentage */
.progress-percentage {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 700;
    color: var(--primary-blue);
}

.percentage-number {
    font-size: 2rem;
}

.percentage-symbol {
    font-size: 1.25rem;
}

/* Uploading Text */
.uploading-text {
    font-size: 1.125rem;
    color: #111827;
    font-weight: 600;
    margin-bottom: 2rem;
}

/* Cancel Button */
.cancel-upload-btn {
    background: var(--primary-blue);
    color: white;
    border: none;
    padding: 0.875rem 2.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cancel-upload-btn:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* URL Section */
.url-section-progress {
    margin-top: 0;
}

.url-label-progress {
    font-size: 1rem;
    color: #111827;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: left;
}

.url-input-group-progress {
    display: flex;
    gap: 1rem;
}

.url-input-progress {
    flex: 1;
    padding: 0.875rem 1.5rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 0.938rem;
    transition: all 0.3s;
    background: white;
}

.url-input-progress:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.url-input-progress::placeholder {
    color: #9ca3af;
}

.upload-btn-progress {
    background: var(--primary-blue);
    color: white;
    border: none;
    padding: 0.875rem 2.5rem;
    border-radius: 8px;
    font-size: 0.938rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.upload-btn-progress:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .upload-progress-section {
        padding: 3rem 1rem;
    }

    .progress-title {
        font-size: 1.75rem;
    }

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

    .progress-box {
        padding: 3rem 1.5rem;
        min-height: 300px;
    }

    .circular-progress {
        width: 100px;
        height: 100px;
    }

    .percentage-number {
        font-size: 1.75rem;
    }

    .uploading-text {
        font-size: 1rem;
    }

    .cancel-upload-btn {
        padding: 0.75rem 2rem;
        font-size: 0.938rem;
    }

    .url-input-group-progress {
        flex-direction: column;
    }

    .upload-btn-progress {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .progress-box {
        padding: 2rem 1rem;
    }

    .circular-progress {
        width: 90px;
        height: 90px;
    }

    .percentage-number {
        font-size: 1.5rem;
    }

    .percentage-symbol {
        font-size: 1rem;
    }
}
/* Testimonials Section */
.testimonials-section {
    background: #ffffff;
    padding: 5rem 1.5rem;
}

/* Header with Illustration */
.testimonials-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 4rem;
    gap: 2rem;
}

.header-illustration img {
    max-width: 220px;
    height: auto;
}

.header-content {
    flex: 1;
    text-align: center;
}

.testimonials-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.testimonials-subtitle {
    font-size: 1.125rem;
    color: #111827;
}

.header-icons-floating {
    position: relative;
    width: 200px;
    height: 200px;
    flex-shrink: 0;
}

.header-icons-floating .file-icon {
    position: absolute;
}

/* Floating icon positions - scattered pattern */
.floating-icon-1 {
    top: 20px;
    left: 20px;
}

.floating-icon-2 {
    top: 10px;
    right: 20px;
}

.floating-icon-3 {
    top: 90px;
    left: 40px;
}

.floating-icon-4 {
    bottom: 20px;
    right: 40px;
}

/* File icon colors - using your existing .file-icon class */
.icon-doc {
    background: #3b82f6;
    color: white;
}

.icon-pdf {
    background: #ef4444;
    color: white;
}

.icon-ppt {
    background: #f59e0b;
    color: white;
}

.icon-xls {
    background: #10b981;
    color: white;
}

/* Section Label */
.section-label {
    text-align: center;
    margin-bottom: 1.5rem;
}

.label-line {
    display: inline-block;
    width: 40px;
    height: 3px;
    background: var(--primary-blue);
    margin-right: 0.75rem;
    vertical-align: middle;
}

.label-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
    vertical-align: middle;
}

.main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    text-align: center;
    margin-bottom: 3rem;
}

/* Testimonials Slider */
.testimonials-slider {
    position: relative;
    overflow: visible;
    padding: 0 60px;
}

.testimonials-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease;
}

/* Testimonial Card */
.testimonial-card {
    min-width: calc(33.333% - 1.35rem);
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.15);
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 4px solid #f3f4f6;
    background: #e5e7eb;
}

.testimonial-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.25rem;
}

.testimonial-role {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.star {
    color: #fbbf24;
    font-size: 1.25rem;
}

.testimonial-text {
    font-size: 0.938rem;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.read-more-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    color: #111827;
    transition: all 0.3s;
    padding: 0;
}

.read-more-btn:hover {
    color: var(--primary-blue);
    transform: scale(1.1);
}

.read-more-btn svg {
    display: block;
}

/* Slider Buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 2px solid #e5e7eb;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
    color: #111827;
}

.slider-btn:hover {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: white;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .testimonials-header {
        flex-wrap: wrap;
        justify-content: center;
    }

    .header-illustration {
        order: 1;
        width: 100%;
        text-align: center;
    }

    .header-content {
        order: 2;
        width: 100%;
    }

    .header-icons-floating {
        order: 3;
        width: 100%;
        height: 150px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 2rem;
    }

    .floating-icon-1 {
        top: 0;
        left: 10%;
    }

    .floating-icon-2 {
        top: 0;
        right: 10%;
    }

    .floating-icon-3 {
        bottom: 0;
        left: 25%;
    }

    .floating-icon-4 {
        bottom: 0;
        right: 25%;
    }

    .testimonial-card {
        min-width: calc(50% - 1rem);
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 3rem 1rem;
    }

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

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

    .main-title {
        font-size: 1.75rem;
    }

    .testimonials-slider {
        padding: 0 50px;
    }

    .testimonial-card {
        min-width: 100%;
        padding: 2rem;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 576px) {
    .testimonials-header {
        margin-bottom: 2rem;
    }

    .header-illustration img {
        max-width: 150px;
    }

    .testimonials-title {
        font-size: 1.75rem;
    }

    .main-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .testimonials-slider {
        padding: 0 35px;
    }

    .testimonial-card {
        padding: 1.5rem;
    }
}
/* Download Complete Section */
.download-complete-section {
    background: #ffffff;
    padding: 5rem 1.5rem;
}

.download-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.75rem;
}

.download-subtitle {
    font-size: 1.063rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.back-to-files-btn {
    background: var(--primary-blue);
    color: white;
    border: none;
    padding: 0.875rem 2.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.back-to-files-btn:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* Progress Steps */
.progress-steps {
    max-width: 800px;
    margin: 3rem auto 2rem;
    background: var(--primary-blue);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.step-line {
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 3px;
    background: white;
    transform: translateY(-50%);
    z-index: 1;
}

.step-item {
    position: relative;
    z-index: 2;
}

.step-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    border: 4px solid white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.step-item.completed .step-circle {
    background: white;
}

.step-item.active .step-circle {
    background: white;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.3);
}

/* Download File Card */
.download-file-card {
    max-width: 800px;
    margin: 0 auto 1.5rem;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.file-preview {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.file-icon-preview {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.file-name-text {
    font-size: 1.063rem;
    font-weight: 600;
    color: #111827;
}

.download-again-btn {
    background: var(--primary-blue);
    color: white;
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-size: 0.938rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.download-again-btn:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* Convert More Section */
.convert-more-section {
    max-width: 800px;
    margin: 0 auto 2rem;
    background: var(--primary-blue);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.convert-more-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.convert-more-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
}

.convert-more-hint {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
}

.convert-more-btn {
    background: white;
    color: var(--primary-blue);
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-size: 0.938rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.convert-more-btn:hover {
    background: #f3f4f6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Info Notes */
.download-info {
    max-width: 800px;
    margin: 0 auto 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.info-bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-blue);
    margin-top: 0.5rem;
    flex-shrink: 0;
}

.info-text {
    font-size: 0.938rem;
    color: #374151;
    margin: 0;
    line-height: 1.6;
}

/* Note Section */
.download-note {
    max-width: 800px;
    margin: 0 auto;
}

.note-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.75rem;
}

/* Responsive */
@media (max-width: 768px) {
    .download-complete-section {
        padding: 3rem 1rem;
    }

    .download-title {
        font-size: 1.75rem;
    }

    .download-subtitle {
        font-size: 0.938rem;
    }

    .back-to-files-btn {
        padding: 0.75rem 2rem;
        font-size: 0.938rem;
    }

    .progress-steps {
        padding: 1rem 1.5rem;
    }

    .step-circle {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .download-file-card {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.25rem;
    }

    .file-preview {
        width: 100%;
    }

    .download-again-btn {
        width: 100%;
        justify-content: center;
    }

    .convert-more-section {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .convert-more-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .download-title {
        font-size: 1.5rem;
    }

    .step-line {
        left: 15%;
        right: 15%;
    }

    .step-circle {
        width: 35px;
        height: 35px;
        font-size: 0.938rem;
    }

    .file-icon-preview {
        width: 50px;
        height: 50px;
    }

    .file-icon-preview svg {
        width: 30px;
        height: 30px;
    }
}
 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background: #f8f9fa;
        }

        :root {
            --blue-primary: #4285f4;
            --blue-dark: #1d4ed8;
        }

        /* Pricing Cards Section */
        .price-cards-wrapper {
            background: white;
            padding: 5rem 2rem 3rem;
        }

        .price-header-section {
            text-align: center;
            margin-bottom: 2rem;
        }

        .price-label {
            font-size: 0.875rem;
            color: #666;
            margin-bottom: 0.5rem;
        }

        .price-main-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #202124;
            margin-bottom: 1.5rem;
        }

        .price-main-title .highlight-text {
            color: var(--blue-primary);
        }

        .price-toggle-wrapper {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .price-toggle-btn {
            padding: 0.5rem 1.5rem;
            border: none;
            border-radius: 20px;
            font-size: 0.938rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s;
        }

        .price-toggle-btn.active-toggle {
            background: var(--blue-primary);
            color: white;
        }

        .price-toggle-btn:not(.active-toggle) {
            background: #e8f0fe;
            color: #666;
        }

        .price-subscribe-text {
            font-size: 0.938rem;
            color: #666;
            margin-top: 0.5rem;
        }

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

        .price-card-item {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
            position: relative;
        }

        .price-card-item:hover {
            transform: translateY(-8px);
        }

        .popular-badge {
            position: absolute;
            top: 16px;
            right: 16px;
            background: white;
            color: #202124;
            padding: 0.375rem 0.875rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        }

        .price-card-header {
            background: linear-gradient(135deg, var(--blue-primary) 0%, var(--blue-dark) 100%);
            padding: 2.5rem 2rem;
            text-align: center;
            position: relative;
        }

        .price-amount-circle {
            width: 120px;
            height: 120px;
            background: rgba(255, 255, 255, 0.25);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            border: 4px solid rgba(255, 255, 255, 0.3);
        }

        .price-amount-text {
            font-size: 2.5rem;
            font-weight: 700;
            color: white;
        }

        .card-plan-name {
            font-size: 1.75rem;
            font-weight: 700;
            color: white;
            margin-bottom: 0.5rem;
        }

        .card-plan-subtitle {
            font-size: 0.938rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 1rem;
        }

        .card-billing-info {
            font-size: 0.875rem;
            color: rgba(255, 255, 255, 0.85);
        }

        .price-card-body {
            padding: 2rem;
        }

        .card-continue-btn {
            width: 100%;
            padding: 0.875rem;
            background: var(--blue-primary);
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            margin-bottom: 2rem;
            transition: all 0.3s;
        }

        .card-continue-btn:hover {
            background: var(--blue-dark);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(66, 133, 244, 0.3);
        }

        .card-features-list {
            list-style: none;
        }

        .card-feature-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 1rem;
            font-size: 0.938rem;
            color: #202124;
        }

        .feature-check-icon {
            width: 20px;
            height: 20px;
            background: var(--blue-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 0.75rem;
            flex-shrink: 0;
        }

        /* Comparison Table Section */
        .comparison-table-section {
            background: white;
            padding: 3rem 1.5rem;
        }

        .table-container-wrapper {
            max-width: 1200px;
            margin: 0 auto 4rem;
            overflow-x: auto;
            background: white;
            border-radius: 16px;
            border: 1px solid #e5e7eb;
        }

        .features-comparison-table {
            width: 100%;
            border-collapse: collapse;
        }

        .features-comparison-table thead th {
            padding: 1.25rem 1rem;
            border-bottom: 2px solid #e5e7eb;
            background: #f8f9fa;
            font-weight: 600;
            color: #202124;
            font-size: 0.938rem;
        }

        .table-feature-col {
            text-align: left;
            padding-left: 1.5rem;
        }

        .table-plan-col {
            width: 25%;
            text-align: center;
        }

        .features-comparison-table tbody tr {
            border-bottom: 1px solid #e5e7eb;
        }

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

        .table-feature-name {
            padding: 1rem 1.5rem;
            font-weight: 500;
            color: #374151;
            font-size: 0.875rem;
        }

        .table-plan-val {
            padding: 1rem;
            text-align: center;
            font-size: 0.875rem;
            color: #6b7280;
        }

        .check-icon {
            color: #10b981;
            font-size: 1.125rem;
            font-weight: 700;
        }

        /* Cancel Subscription Section */
        .cancel-section-wrapper {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
            background: white;
            padding: 3rem 2rem;
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }

        .cancel-section-heading {
            font-size: 1.75rem;
            font-weight: 700;
            color: #202124;
            margin-bottom: 0.75rem;
        }

        .cancel-section-description {
            font-size: 1rem;
            color: #666;
            margin-bottom: 2.5rem;
        }

        .cancel-reasons-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            margin-bottom: 2.5rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .cancel-reason-option {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            text-align: left;
            font-size: 0.938rem;
            color: #202124;
            font-weight: 500;
        }

        .cancel-check-circle {
            width: 24px;
            height: 24px;
            border: 2px solid #ddd;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .cancel-check-circle::before {
            content: '✓';
            font-size: 0.875rem;
            color: #666;
        }

        .cancel-submit-btn {
            background: var(--blue-primary);
            color: white;
            border: none;
            padding: 1rem 3rem;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            margin-top: 1rem;
        }

        .cancel-submit-btn:hover {
            background: var(--blue-dark);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(66, 133, 244, 0.3);
        }

        /* Responsive */
        @media (max-width: 992px) {
            .price-cards-grid {
                grid-template-columns: 1fr;
                max-width: 500px;
            }

            .comparison-table-section {
                padding: 3rem 1rem;
            }

            .comparison-main-heading {
                font-size: 2rem;
            }

            .table-container-wrapper {
                overflow-x: scroll;
            }

            .features-comparison-table {
                min-width: 700px;
            }
        }

        @media (max-width: 768px) {
            .price-main-title {
                font-size: 2rem;
            }

            .comparison-main-heading {
                font-size: 1.75rem;
            }

            .cancel-reasons-grid {
                grid-template-columns: 1fr;
            }

            .cancel-section-wrapper {
                padding: 2rem 1.5rem;
            }

            .cancel-section-heading {
                font-size: 1.5rem;
            }
        }

        @media (max-width: 576px) {
            .price-main-title {
                font-size: 1.5rem;
            }

            .price-amount-circle {
                width: 100px;
                height: 100px;
            }

            .price-amount-text {
                font-size: 2rem;
            }

            .card-plan-name {
                font-size: 1.5rem;
            }
        }
        /* Billing Management Section */
.billing-manage-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.billing-main-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #202124;
    text-align: center;
    margin-bottom: 2rem;
}

.billing-highlight {
    color: #4285f4;
}

.order-review-label {
    font-size: 1.25rem;
    font-weight: 600;
    color: #4285f4;
    margin-bottom: 1.5rem;
}

.billing-info-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem 2rem;
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    transition: all 0.3s;
}

.billing-info-card:hover {
    border-color: #4285f4;
    box-shadow: 0 4px 12px rgba(66, 133, 244, 0.1);
}

.billing-card-left {
    flex: 1;
}

.billing-card-label {
    font-size: 1.063rem;
    font-weight: 600;
    color: #202124;
    margin-bottom: 0.5rem;
}

.billing-card-description {
    font-size: 0.938rem;
    color: #666;
    line-height: 1.5;
}

.billing-card-right {
    text-align: right;
}

.billing-plan-name {
    font-size: 1.063rem;
    font-weight: 600;
    color: #202124;
    margin-bottom: 0.5rem;
}

.billing-price-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #202124;
    margin-bottom: 0.5rem;
}

.billing-change-link {
    color: #4285f4;
    text-decoration: none;
    font-size: 0.938rem;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.3s;
}

.billing-change-link:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .billing-manage-section {
        padding: 2rem 1rem;
    }

    .billing-main-heading {
        font-size: 2rem;
    }

    .billing-info-card {
        flex-direction: column;
        gap: 1rem;
    }

    .billing-card-right {
        text-align: left;
    }
}

@media (max-width: 576px) {
    .billing-main-heading {
        font-size: 1.75rem;
    }

    .billing-info-card {
        padding: 1.25rem 1.5rem;
    }

    .billing-card-label {
        font-size: 1rem;
    }

    .billing-price-text {
        font-size: 1.25rem;
    }
}
/* Payment Method Section */
.payment-method-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

.payment-section-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #4285f4;
    margin-bottom: 1.5rem;
}

.payment-method-container {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Payment Option Wrapper */
.payment-option-wrapper {
    padding: 1.25rem 1.5rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    cursor: pointer;
    transition: all 0.3s;
}

.payment-option-wrapper:hover {
    border-color: #4285f4;
}

.payment-radio {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #4285f4;
}

.payment-option-label {
    font-size: 1rem;
    font-weight: 500;
    color: #202124;
    cursor: pointer;
    flex: 1;
}

/* Card Form Wrapper */
.payment-card-form-wrapper {
    background: linear-gradient(135deg, #4285f4 0%, #5a9dff 100%);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 1rem;
}

/* Payment Type Tabs */
.payment-type-tabs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.payment-tab-btn {
    background: white;
    border: none;
    padding: 1rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.938rem;
    font-weight: 500;
    color: #202124;
    cursor: pointer;
    transition: all 0.3s;
}

.payment-tab-btn:hover {
    background: #f8f9fa;
}

.payment-tab-btn.active-payment-tab {
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.payment-tab-btn svg {
    width: 20px;
    height: 20px;
}

/* Secure Checkout Info */
.secure-checkout-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 0.938rem;
    margin-bottom: 1.5rem;
}

.secure-checkout-info svg {
    width: 16px;
    height: 16px;
}

/* Payment Form Grid */
.payment-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.payment-input-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.payment-input-group.full-width-input {
    grid-column: 1 / -1;
}

.payment-input-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: white;
}

.payment-input-field,
.payment-select-field {
    padding: 0.875rem 1rem;
    border: none;
    border-radius: 8px;
    font-size: 0.938rem;
    color: #202124;
    background: white;
    width: 100%;
}

.payment-input-field:focus,
.payment-select-field:focus {
    outline: 2px solid #1d4ed8;
}

.payment-input-with-icon {
    position: relative;
}

.card-brand-icon,
.cvc-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

.payment-select-field {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23202124' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 3rem;
    cursor: pointer;
}

/* Terms Text */
.payment-terms-text {
    font-size: 0.813rem;
    color: white;
    line-height: 1.5;
}

/* Payment Processor Info */
.payment-processor-info {
    font-size: 0.875rem;
    color: #666;
    text-align: center;
    margin-bottom: 1rem;
}

.stripe-link {
    color: #4285f4;
    text-decoration: none;
    font-weight: 500;
}

.stripe-link:hover {
    text-decoration: underline;
}

/* PayPal Option */
.paypal-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.paypal-logo {
    margin-left: auto;
}

/* Responsive */
@media (max-width: 768px) {
    .payment-method-section {
        padding: 1rem;
    }

    .payment-method-container {
        padding: 1rem;
    }

    .payment-card-form-wrapper {
        padding: 1.5rem;
    }

    .payment-type-tabs {
        grid-template-columns: 1fr;
    }

    .payment-form-grid {
        grid-template-columns: 1fr;
    }

    .payment-input-group.full-width-input {
        grid-column: 1;
    }
}

@media (max-width: 576px) {
    .payment-section-title {
        font-size: 1.125rem;
    }

    .payment-option-wrapper {
        padding: 1rem;
    }

    .payment-card-form-wrapper {
        padding: 1.25rem;
    }

    .payment-tab-btn {
        font-size: 0.875rem;
        padding: 0.875rem;
    }

    .payment-input-field,
    .payment-select-field {
        padding: 0.75rem;
        font-size: 0.875rem;
    }
}
/* Billing Info Form Section */
.billing-info-form-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

.billing-info-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #4285f4;
    margin-bottom: 0.5rem;
}

.billing-info-subtitle {
    font-size: 0.938rem;
    color: #202124;
    margin-bottom: 2rem;
}

/* Billing Form */
.billing-info-form {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.billing-form-group {
    margin-bottom: 1.25rem;
}

.billing-form-group.full-width-field {
    width: 100%;
}

.billing-form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

/* Form Inputs */
.billing-form-input,
.billing-form-select {
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 0.938rem;
    color: #202124;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    transition: all 0.3s;
    font-family: inherit;
}

.billing-form-input::placeholder {
    color: #202124;
}

.billing-form-input:focus,
.billing-form-select:focus {
    outline: none;
    border-color: #4285f4;
    box-shadow: 0 0 0 3px rgba(66, 133, 244, 0.1);
}

.billing-form-input:hover,
.billing-form-select:hover {
    border-color: #9ca3af;
}

/* Select Dropdown */
.billing-form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='%23202124' d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 3rem;
    cursor: pointer;
    color: #202124;
}

.billing-form-select option {
    color: #202124;
}

/* Submit Button */
.billing-submit-btn {
    width: 100%;
    padding: 1.125rem 2rem;
    font-size: 1.063rem;
    font-weight: 600;
    color: white;
    background: #4285f4;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 1rem;
}

.billing-submit-btn:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(66, 133, 244, 0.3);
}

.billing-submit-btn:active {
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .billing-info-form-section {
        padding: 1.5rem 1rem;
    }

    .billing-info-form {
        padding: 1.5rem;
    }

    .billing-form-row {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}

@media (max-width: 576px) {
    .billing-info-title {
        font-size: 1.125rem;
    }

    .billing-info-subtitle {
        font-size: 0.875rem;
    }

    .billing-info-form {
        padding: 1.25rem;
    }

    .billing-form-input,
    .billing-form-select {
        padding: 0.875rem 1rem;
        font-size: 0.875rem;
    }

    .billing-submit-btn {
        padding: 1rem;
        font-size: 1rem;
    }
}

/* --- Conversion Upload UI (tool-specific views) --- */
.upload-dropzone-fixed {
    min-height: 340px;
    height: 340px;
    overflow: hidden;
    padding-top: 8rem;
}

.upload-hidden {
    display: none;
}

.upload-progress-box,
.upload-result-box,
.upload-error-box {
    width: 100%;
    max-width: 420px;
    padding: 2rem 1.75rem;
    background: #fff;
    border: 2px dashed var(--primary-blue, #2563eb);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    margin: 0 auto;
    flex-shrink: 0;
}

.upload-progress-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.25rem;
}

.upload-progress-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #111827;
}

.upload-progress-detail {
    font-size: 0.85rem;
    color: #6b7280;
    margin-top: 0.25rem;
}

.upload-progress-bar-wrap {
    width: 100%;
    max-width: 320px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.upload-progress-bar-track {
    flex: 1;
    height: 10px;
    background: #e5e7eb;
    border-radius: 999px;
    overflow: hidden;
}

.upload-progress-bar-fill {
    height: 100%;
    background: #2563eb;
    border-radius: 999px;
    width: 0%;
    transition: width 0.2s ease;
}

.upload-progress-bar-track.state-converting .upload-progress-bar-fill {
    animation: upload-progress-pulse 1.2s ease-in-out infinite;
}

@keyframes upload-progress-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.upload-progress-bar-pct {
    font-size: 0.9rem;
    font-weight: 600;
    color: #374151;
    min-width: 2.5rem;
}

.upload-cancel-btn {
    padding: 0.6rem 1.75rem;
    background: #2563eb;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.95rem;
}

.upload-cancel-btn:hover {
    background: #1d4ed8;
    color: #fff;
}

.upload-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.5rem;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    background: #2563eb;
    color: #fff;
    font-size: 0.95rem;
}

.upload-download-btn:hover {
    background: #1d4ed8;
    color: #fff;
}

.upload-result-box {
    margin-top: 0;
    position: relative;
}

.upload-result-box .upload-result-title {
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1.25rem;
}

.upload-result-close {
    position: absolute;
    top: 0.25rem;
    right: 0.25rem;
    background: none;
    border: none;
    font-size: 1.75rem;
    line-height: 1;
    color: #6b7280;
    cursor: pointer;
    padding: 0 0.25rem;
}

.upload-result-close:hover {
    color: #111827;
}

.compress-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, visibility 0.2s;
}

.compress-modal.show {
    opacity: 1;
    visibility: visible;
}

.compress-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

.compress-modal-dialog {
    position: relative;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    max-width: 624px;
    width: 100%;
    max-height: 90vh;
    overflow: auto;
}

.compress-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.compress-modal-title {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 600;
    color: #111827;
}

.compress-modal-close {
    background: none;
    border: none;
    font-size: 1.75rem;
    line-height: 1;
    color: #6b7280;
    cursor: pointer;
    padding: 0 0.25rem;
}

.compress-modal-close:hover {
    color: #111827;
}

.compress-modal-body {
    padding: 1.5rem;
}

.compress-modal-card {
    padding: 1rem 1.25rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    margin-bottom: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.compress-modal-card:last-child {
    margin-bottom: 0;
}

.compress-modal-card .label {
    font-weight: 600;
    color: #111827;
}

.compress-modal-formats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.compress-format-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.75rem;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    background: #2563eb;
    color: #fff;
}

.compress-format-btn .compress-format-icon {
    flex-shrink: 0;
}

.compress-format-btn:hover {
    background: #1d4ed8;
    color: #fff;
}

.compress-format-btn.loading {
    pointer-events: none;
    opacity: 0.85;
}

.compress-format-btn.loading .compress-format-icon {
    display: none;
}

.compress-format-btn .compress-format-spinner {
    display: none;
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: compress-spin 0.6s linear infinite;
    flex-shrink: 0;
}

.compress-format-btn.loading .compress-format-spinner {
    display: inline-block;
}

@keyframes compress-spin {
    to { transform: rotate(360deg); }
}
