/*

Tooplate 2142 Cloud Sync

https://www.tooplate.com/view/2142-cloud-sync

*/

@charset "utf-8";
/* CSS Document */

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

        :root {
            --primary: #6366f1;
            --primary-dark: #4f46e5;
            --secondary: #10b981;
            --background: #0f172a;
            --surface: #1e293b;
            --text: #e2e8f0;
            --text-secondary: #94a3b8;
            --accent: #f472b6;
            --gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: var(--background);
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 1rem 2rem;
            background: rgba(15, 23, 42, 0.8);
            backdrop-filter: blur(10px);
            z-index: 1000;
            transition: all 0.3s ease;
        }

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

        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

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

        .nav-links a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--text);
        }

        .cta-button {
            background: var(--primary);
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 0.5rem;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .cta-button:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(99, 102, 241, 0.3);
        }

        /* Mobile Menu */
        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            gap: 4px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 5px;
        }

        .mobile-menu-toggle span {
            display: block;
            width: 25px;
            height: 3px;
            background: var(--text);
            transition: all 0.3s ease;
            transform-origin: center;
        }

        .mobile-menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .mobile-menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        .mobile-nav {
            display: none;
            position: fixed;
            top: 60px;
            left: 0;
            right: 0;
            background: rgba(15, 23, 42, 0.98);
            backdrop-filter: blur(10px);
            padding: 2rem;
            border-top: 1px solid rgba(99, 102, 241, 0.2);
            animation: slideDown 0.3s ease;
        }

        .mobile-nav.active {
            display: block;
        }

        .mobile-nav a {
            display: block;
            color: var(--text);
            text-decoration: none;
            padding: 1rem 0;
            font-size: 1.1rem;
            border-bottom: 1px solid rgba(99, 102, 241, 0.1);
            transition: all 0.3s ease;
        }

        .mobile-nav a:hover {
            color: var(--primary);
            transform: translateX(10px);
        }

        .mobile-nav .cta-button {
            display: inline-block;
            margin-top: 1rem;
            width: 100%;
            text-align: center;
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Hero Section */
        .hero {
            padding: 8rem 2rem 4rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
            animation: pulse 20s ease-in-out infinite;
        }

        /* Rotating Background Images */
        .hero-backgrounds {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            transition: opacity 2s ease-in-out;
        }

        .hero-bg.active {
            opacity: 1;
        }

        .hero-bg::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.9));
        }

        .hero-bg:nth-child(1) {
            background-image: url('images/tooplate-cloud-sync-bg01.jpg');
        }

        .hero-bg:nth-child(2) {
            background-image: url('images/tooplate-cloud-sync-bg02.jpg');
        }

        .hero-bg:nth-child(3) {
            background-image: url('images/tooplate-cloud-sync-bg03.jpg');
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.5; }
            50% { transform: scale(1.1); opacity: 0.3; }
        }

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

        h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            background: linear-gradient(to right, #ffffff, #94a3b8);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: fadeInUp 0.8s ease-out;
        }

        .hero-subtitle {
            font-size: 1.25rem;
            color: var(--text-secondary);
            margin-bottom: 2rem;
            animation: fadeInUp 0.8s ease-out 0.2s both;
        }

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

        /* Features Section */
        .features {
            padding: 4rem 2rem;
            background: var(--surface);
        }

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

        .features-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .features-header h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .features-subtitle {
            color: var(--text-secondary);
            font-size: 1.1rem;
        }

        .features-layout {
            display: flex;
            flex-direction: column;
            gap: 3rem;
        }

        /* Two Column Features */
        .features-two-col {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }

        .features-three-col {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 2rem;
        }

        .feature-card-large {
            background: rgba(30, 41, 59, 0.5);
            border: 1px solid rgba(99, 102, 241, 0.2);
            padding: 2.5rem;
            border-radius: 1rem;
            transition: all 0.3s ease;
        }

        .feature-card-large:hover {
            transform: translateY(-5px);
            border-color: var(--primary);
            box-shadow: 0 20px 40px rgba(99, 102, 241, 0.1);
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background: var(--gradient);
            border-radius: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 2rem;
        }

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

        .feature-checklist {
            list-style: none;
            margin-top: 1.5rem;
        }

        .feature-checklist li {
            padding: 0.5rem 0;
            color: var(--text-secondary);
            position: relative;
            padding-left: 1.5rem;
        }

        .feature-checklist li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--secondary);
            font-weight: bold;
        }

        /* Four Column Features */
        .features-four-col {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
        }

        .feature-card-small {
            background: rgba(30, 41, 59, 0.3);
            border: 1px solid rgba(99, 102, 241, 0.1);
            padding: 2rem;
            border-radius: 1rem;
            text-align: center;
            transition: all 0.3s ease;
        }

        .feature-card-small:hover {
            background: rgba(99, 102, 241, 0.1);
            border-color: var(--primary);
            transform: translateY(-3px);
        }

        .feature-icon-small {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            display: inline-block;
        }

        .feature-card-small h4 {
            font-size: 1.1rem;
            margin-bottom: 0.75rem;
        }

        .feature-card-small p {
            color: var(--text-secondary);
            font-size: 0.9rem;
        }

        /* Pricing Section */
        .pricing {
            padding: 4rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .pricing-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .pricing-header h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .pricing-calculator {
            background: var(--surface);
            border-radius: 1rem;
            padding: 2rem;
            margin-bottom: 3rem;
            border: 1px solid rgba(99, 102, 241, 0.2);
        }

        .slider-container {
            margin-bottom: 2rem;
        }

        .slider-label {
            display: flex;
            justify-content: space-between;
            margin-bottom: 1rem;
        }

        .slider {
            width: 100%;
            height: 6px;
            background: rgba(99, 102, 241, 0.2);
            border-radius: 3px;
            outline: none;
            -webkit-appearance: none;
            position: relative;
        }

        .slider::-webkit-slider-thumb {
            -webkit-appearance: none;
            appearance: none;
            width: 20px;
            height: 20px;
            background: var(--primary);
            cursor: pointer;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .slider::-webkit-slider-thumb:hover {
            transform: scale(1.2);
            box-shadow: 0 0 20px rgba(99, 102, 241, 0.5);
        }

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

        .pricing-card {
            background: rgba(30, 41, 59, 0.5);
            border: 2px solid transparent;
            padding: 2rem;
            border-radius: 1rem;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .pricing-card.popular {
            border-color: var(--primary);
        }

        .pricing-card.popular::before {
            content: 'Được quan tâm';
            position: absolute;
            top: 2rem;
            right: -3rem;
            background: var(--primary);
            color: white;
            padding: 0.25rem 3rem;
            transform: rotate(45deg);
            font-size: 0.75rem;
        }

        .pricing-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary);
        }

        .plan-name {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }

        .plan-price {
            font-size: 3rem;
            font-weight: bold;
            margin-bottom: 1rem;
        }

        .plan-price span {
            font-size: 1rem;
            color: var(--text-secondary);
        }

        .plan-features {
            list-style: none;
            margin-bottom: 2rem;
        }

        .plan-features li {
            padding: 0.5rem 0;
            color: var(--text-secondary);
        }

        .plan-features li::before {
            content: '✓ ';
            color: var(--secondary);
            font-weight: bold;
        }

        /* Animated Background */
        .floating-shapes {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: -1;
        }

        .shape {
            position: absolute;
            background: rgba(99, 102, 241, 0.1);
            filter: blur(40px);
            border-radius: 50%;
            animation: float 20s infinite ease-in-out;
        }

        .shape:nth-child(1) {
            width: 300px;
            height: 300px;
            top: 10%;
            left: 10%;
            animation-delay: 0s;
        }

        .shape:nth-child(2) {
            width: 200px;
            height: 200px;
            top: 60%;
            right: 10%;
            animation-delay: 5s;
        }

        .shape:nth-child(3) {
            width: 250px;
            height: 250px;
            bottom: 10%;
            left: 30%;
            animation-delay: 10s;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) scale(1); }
            33% { transform: translate(30px, -30px) scale(1.1); }
            66% { transform: translate(-20px, 20px) scale(0.9); }
        }

        /* Responsive */
        @media (max-width: 768px) {
            h1 { font-size: 2.5rem; }
            .nav-links { display: none; }
            .pricing-cards { grid-template-columns: 1fr; }
        }

        /* About Section */
        .about {
            padding: 4rem 2rem;
            background: var(--surface);
            position: relative;
            overflow: hidden;
        }

        .about::before {
            content: '';
            position: absolute;
            top: 0;
            right: -20%;
            width: 40%;
            height: 100%;
            background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
        }

        .about-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

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

        .about-content h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .about-subtitle {
            font-size: 1.25rem;
            color: var(--text-secondary);
            margin-bottom: 3rem;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
            margin-left: auto;
            margin-right: auto;
            justify-content: center;   /* căn giữa các track nếu còn khoảng trống */
            justify-items: stretch;    /* ô kéo full theo cột */
        }

        .stat-card {
            background: rgba(99, 102, 241, 0.1);
            padding: 2rem;
            border-radius: 1rem;
            border: 1px solid rgba(99, 102, 241, 0.2);
            transition: all 0.3s ease;
        }

        .stat-card:hover {
            transform: translateY(-5px);
            background: rgba(99, 102, 241, 0.15);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: bold;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .stat-label {
            color: var(--text-secondary);
            margin-top: 0.5rem;
        }

        .about-text {
            max-width: 800px;
            margin: 0 auto;
            text-align: left;
        }

        .about-text p {
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        /* Contact Section */
        .contact {
            padding: 4rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .contact-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .contact-header h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .contact-subtitle {
            color: var(--text-secondary);
            font-size: 1.1rem;
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: start;
        }

        /* Contact Form Styling */
        .contact-form-wrapper {
            background: var(--surface);
            padding: 2.5rem;
            border-radius: 1rem;
            border: 1px solid rgba(99, 102, 241, 0.2);
        }

        .form-header {
            margin-bottom: 2rem;
        }

        .form-header h3 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }

        .form-header p {
            color: var(--text-secondary);
            font-size: 0.95rem;
        }

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

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

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--text);
            font-weight: 500;
            font-size: 0.9rem;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 0.875rem;
            background: rgba(15, 23, 42, 0.5);
            border: 1px solid rgba(99, 102, 241, 0.2);
            border-radius: 0.5rem;
            color: var(--text);
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
            background: rgba(15, 23, 42, 0.8);
        }

        .form-group textarea {
            resize: vertical;
        }

        .submit-button {
            width: 100%;
            padding: 1rem;
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 0.5rem;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 0.5rem;
        }

        .submit-button:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(99, 102, 241, 0.3);
        }

        /* Contact Info Styling */
        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .quick-contact {
            background: var(--surface);
            padding: 2rem;
            border-radius: 1rem;
            border: 1px solid rgba(99, 102, 241, 0.2);
        }

        .quick-contact h3 {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .contact-methods {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .contact-method {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem;
            background: rgba(15, 23, 42, 0.5);
            border-radius: 0.75rem;
            text-decoration: none;
            color: inherit;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }

        .contact-method:hover {
            background: rgba(99, 102, 241, 0.1);
            border-color: var(--primary);
            transform: translateX(5px);
        }

        .method-icon {
            font-size: 1.5rem;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(99, 102, 241, 0.1);
            border-radius: 0.5rem;
        }

        .method-details {
            display: flex;
            flex-direction: column;
        }

        .method-details strong {
            color: var(--text);
            font-size: 0.95rem;
        }

        .method-details span {
            color: var(--text-secondary);
            font-size: 0.85rem;
        }

        .office-locations {
            background: var(--surface);
            padding: 2rem;
            border-radius: 1rem;
            border: 1px solid rgba(99, 102, 241, 0.2);
        }

        .office-locations h3 {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .location-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1rem;
        }

        .location {
            padding: 1rem;
            background: rgba(15, 23, 42, 0.5);
            border-radius: 0.75rem;
            border-left: 3px solid var(--primary);
            transition: all 0.3s ease;
        }

        .location:hover {
            background: rgba(15, 23, 42, 0.7);
            transform: translateX(5px);
        }

        .location strong {
            color: var(--text);
            display: block;
            margin-bottom: 0.5rem;
        }

        .location p {
            color: var(--text-secondary);
            font-size: 0.85rem;
            line-height: 1.5;
        }

        /* Footer */
        .footer {
            background: var(--background);
            border-top: 1px solid rgba(99, 102, 241, 0.2);
            padding: 3rem 2rem 1rem;
            margin-top: 4rem;
        }

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

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 3fr;
            gap: 4rem;
            margin-bottom: 2rem;
        }

        .footer-brand p {
            color: var(--text-secondary);
            margin-top: 0.5rem;
        }

        .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .footer-column h4 {
            margin-bottom: 1rem;
            color: var(--text);
        }

        .footer-column a {
            display: block;
            color: var(--text-secondary);
            text-decoration: none;
            margin-bottom: 0.5rem;
            transition: color 0.3s ease;
        }

        .footer-column a:hover {
            color: var(--primary);
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(99, 102, 241, 0.1);
            color: var(--text-secondary);
        }

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

        .social-links a, .footer a, p a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .social-links a:hover, .footer a:hover, p a:hover {
            color: var(--primary);
        }

        /* Responsive Updates */
        @media (max-width: 768px) {
            h1 { font-size: 2.5rem; }
            .nav-links { display: none; }
            .mobile-menu-toggle { display: flex; }
            .pricing-cards { grid-template-columns: 1fr; }
            .stats-grid { 
                grid-template-columns: 1fr !important;
                justify-items: center;       /* card ở giữa */
                gap: 1.25rem;                /* giảm gap cho gọn */
            }
            .stat-card{
                width: 100%;
                max-width: 360px;            /* giới hạn bề rộng đẹp trên mobile */
                padding: 1.25rem;            /* giảm padding để đỡ “phình” */
            }
            .contact-content { grid-template-columns: 1fr; gap: 2rem; }
            .form-row { grid-template-columns: 1fr; }
            .footer-content { grid-template-columns: 1fr; gap: 2rem; }
            .footer-links { grid-template-columns: 1fr; }
            .footer-bottom { flex-direction: column; gap: 1rem; }
            
            /* Features Mobile */
            .feature-hero { 
                grid-template-columns: 1fr; 
                padding: 2rem;
                text-align: center;
            }
            .feature-hero-visual { display: none; }
            .features-two-col { grid-template-columns: 1fr; }
            .features-three-col { grid-template-columns: 1fr; }
            .features-four-col { 
                grid-template-columns: 1fr; 
            }
            .feature-stats { justify-content: center; }
        }


        /* ===== About CTA – Bổ sung hiệu ứng FOMO, không sửa HTML ===== */
        /* ===== ABOUT CTA – NO SHINE VERSION ===== */
        /* Căn giữa toàn bộ About CTA theo cột */
        .about-cta{
            display:flex;
            flex-direction:column;      /* chuyển từ row -> column */
            align-items:center;         /* căn giữa theo chiều ngang */
            justify-content:center;     /* căn giữa theo chiều dọc nếu có height */
            gap:10px;                   /* khoảng cách giữa nút và text */
            text-align:center;          /* căn giữa nội dung text */
            margin-top:20px;
        }

        /* Container chứa 2 nút nằm ngang, căn giữa */
        .about-cta-buttons{
            display:flex;
            gap:14px;
            flex-wrap:wrap;
            justify-content:center;     /* nút nằm giữa */
        }


        /* Nút nâng nhẹ + bóng gọn */
        .about-cta .cta-button{
            position: relative;
            display:inline-flex;
            align-items:center;
            justify-content:center;
            gap:.5rem;
            border-radius:12px;
            font-weight:700;
            letter-spacing:.2px;
            transition:transform .2s ease, box-shadow .2s ease;
            box-shadow:0 6px 16px rgba(0,0,0,.12);
        }

        .about-cta .cta-button:hover{
            transform: translateY(-2px);
            box-shadow:0 10px 20px rgba(0,0,0,.18);
        }

        /* Badge FOMO cho nút 1 */
        .about-cta a.cta-button:first-of-type::after{
            content:"🔥 Hoàn tới 98%";
            position:absolute;
            top:-10px; right:-10px;
            background:linear-gradient(135deg,#ff7a7a,#ffb36b);
            color:#111;
            font-weight:800;
            font-size:.72rem;
            padding:.28rem .5rem;
            border-radius:999px;
            box-shadow:0 6px 14px rgba(255,122,122,.35);
            animation:badgePulse 1.6s ease-in-out infinite;
        }
        @keyframes badgePulse{
            0%,100%{ transform:scale(1); filter:brightness(1); }
            50%{ transform:scale(1.06); filter:brightness(1.05); }
        }

        /* Telegram button có bóng xanh + icon ✈️ */
        .about-cta a.cta-button:nth-of-type(2){
            box-shadow:0 8px 22px rgba(42,171,238,.35); 
        }
        .about-cta a.cta-button:nth-of-type(2)::after{
            content:"✈️";
            position:relative;
            margin-left:.1rem;
            transform:translateY(1px);
            filter:drop-shadow(0 2px 2px rgba(0,0,0,.15));
        }

        /* Dòng note với chấm xanh nhấp nháy */
        .about-cta .cta-note,
        .about-cta span[style*="opacity"]{
            position:relative;
            padding-left:18px;
            font-size:.95rem;
            opacity:.85;
        }
        .about-cta .cta-note::before,
        .about-cta span[style*="opacity"]::before{
            content:"";
            position:absolute;
            left:0; top:50%;
            width:8px; height:8px;
            border-radius:50%;
            background:#22c55e;
            box-shadow:0 0 0 0 rgba(34,197,94,.6);
            transform:translateY(-50%);
            animation:ping 1.8s cubic-bezier(0,0,.2,1) infinite;
        }
        @keyframes ping{
            0%{ box-shadow:0 0 0 0 rgba(34,197,94,.6); }
            70%{ box-shadow:0 0 0 10px rgba(34,197,94,0); }
            100%{ box-shadow:0 0 0 0 rgba(34,197,94,0); }
        }

        /* Mobile tinh chỉnh */
        @media (max-width:640px){
        .about-cta{ gap:10px; }
        .about-cta .cta-button{ width:100%; }
        .about-cta a.cta-button:first-of-type::after{
            top:-8px; right:-6px;
        }
        }

        /* Giảm motion khi user chọn */
        @media (prefers-reduced-motion:reduce){
        .about-cta .cta-button,
        .about-cta a.cta-button:first-of-type::after,
        .about-cta .cta-note::before{
            animation:none!important;
            transition:none!important;
        }
        }

        /* Badge cho hero CTA */
        .hero-cta{
            position:relative;
            display:inline-block;
        }
        .hero-cta::after{
            content:"🔥 Nhận kèo mỗi ngày";
            position:absolute;
            top:-12px; right:-12px;
            background:linear-gradient(135deg,#ff7a7a,#ffb36b);
            color:#111;
            font-weight:700;
            font-size:.75rem;
            padding:.25rem .6rem;
            border-radius:999px;
            box-shadow:0 4px 12px rgba(255,122,122,.35);
            animation:badgePulse 1.6s ease-in-out infinite;
        }
        @keyframes badgePulse{
            0%,100%{ transform:scale(1); filter:brightness(1); }
            50%{ transform:scale(1.06); filter:brightness(1.05); }
        }


        /* Feedback Section */
        .feedback{
            padding: 40px 0;
            text-align: center;
        }

        .feedback-title{
            font-size: 1.8rem;
            margin-bottom: 6px;
        }

        .feedback-subtitle{
            opacity: .85;
            margin-bottom: 20px;
        }

        /* Flex box căn giữa toàn bộ ảnh */
        .feedback-wrapper{
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 16px;
        }

        /* Ảnh dọc – giữ tỷ lệ, giới hạn chiều cao */
        .feedback-wrapper img{
            max-height: 500px;       /* chiều cao tối đa cho PC */
            max-width: 100%;
            border-radius: 12px;
            box-shadow: 0 8px 20px rgba(0,0,0,.15);
            object-fit: contain;    /* giữ nguyên tỉ lệ ảnh dọc */
        }

        /* Mobile – giảm chiều cao */
        @media (max-width: 768px){
            .feedback-wrapper img{
                max-height: 320px;
            }
        }

        /* HR mờ mờ, hợp nền tối */
        .section-divider{
            border: none;
            height: 1px;
            background: linear-gradient(
                90deg,
                rgba(255,255,255,0) 0%,
                rgba(255,255,255,0.15) 50%,
                rgba(255,255,255,0) 100%
            );
            margin: 40px auto;
            max-width: 900px; /* cho cân giữa, không full width */
        }

        /* Box kết quả */
        .cb-result{
            display:grid; grid-template-columns:repeat(2, minmax(220px, 1fr));
            gap:14px; margin:16px 0 6px;
        }
        .cb-box{
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.06);
            border-radius:14px; padding:14px 16px; text-align:center;
            box-shadow: 0 8px 20px rgba(0,0,0,.12);
        }
        .cb-num{ font-size:1.8rem; font-weight:800; letter-spacing:.2px; }
        .cb-label{ opacity:.8; font-size:.95rem; }

        @media (max-width:640px){
            .cb-result{ grid-template-columns:1fr; }
        }

        /* ==== Cashback Calculator ==== */
        .cashback-form {
            display: grid;
            gap: 12px;
            max-width: 400px;
            margin: 0 auto 24px;
        }

        .cashback-form label {
            display: flex;
            flex-direction: column;
            font-weight: 600;
            font-size: 0.95rem;
            gap: 4px;
            text-align: left;
        }

        .cashback-form input {
            padding: 0.5rem 0.7rem;
            border-radius: 8px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            background: rgba(255, 255, 255, 0.05);
            color: #fff;
            font-size: 1rem;
        }

        .cashback-result {
            display: grid;
            grid-template-columns: repeat(2, minmax(160px, 1fr));
            gap: 16px;
            justify-content: center;
            margin-bottom: 32px;
        }

        .cb-box {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 14px;
            text-align: center;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        .cb-num {
            font-size: 1.6rem;
            font-weight: 700;
        }

        .cb-label {
            opacity: 0.8;
            font-size: 0.9rem;
        }

        @media (max-width: 640px) {
            .cashback-result {
                grid-template-columns: 1fr;
            }
        }

        /* ==== Pricing Cards giữ nguyên nhưng căn giữa khi nằm chung section ==== */
        .pricing-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 20px;
            margin-top: 24px;
        }

        .pricing-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .pricing-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
        }

        .pricing-card.popular {
            border-color: var(--primary, #3b82f6);
            box-shadow: 0 10px 24px rgba(59, 130, 246, 0.3);
        }

        .plan-name {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .plan-price {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .plan-price span {
            font-size: 0.85rem;
            opacity: 0.8;
        }

        .plan-features {
            list-style: none;
            padding: 0;
            margin: 0 0 16px 0;
        }

        .plan-features li {
            margin-bottom: 6px;
            opacity: 0.9;
            font-size: 0.95rem;
        }

        /* Hàng icon + nút video */
        .feature-top{
            /* display:flex;
            align-items:center;
            gap:12px;
            margin-bottom:12px;
            justify-content: space-between; */
            display:flex;
            align-items:center;
            gap:12px;
            width:100%;
        }

        .feature-top .video-btn{
            /* margin-left:auto; đảm bảo dạt phải kể cả khi có thêm phần tử khác */
            margin-left:auto;        /* đẩy nút sát phải */
            white-space:nowrap;      /* không xuống dòng */
            flex:0 1 auto;           /* cho phép co lại nếu chật */
        }

        /* Nút Video: nhỏ gọn, brand YouTube nhẹ */
        .video-btn{
            display:inline-flex;
            align-items:center;
            padding:.45rem .75rem;
            border-radius:10px;
            font-weight:700;
            text-decoration:none;
            color:#fff;
            background: rgba(255,255,255,.06);
            border:1px solid rgba(255,255,255,.12);
            transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
        }
        .video-btn:hover{
            transform: translateY(-1px);
            box-shadow: 0 8px 20px rgba(0,0,0,.18);
            background: rgba(255,255,255,.10);
        }
        /* Tuỳ chọn: nhấn mạnh màu YouTube khi hover */
        .video-btn:hover svg{ color:#ff0033; }

        /* Mobile: nếu chật thì cho xuống dòng đẹp */
        @media (max-width:640px){
            .feature-top{ flex-wrap:nowrap !important; } /* GHI ĐÈ rule wrap cũ */
            .feature-icon img{ width:56px; height:56px; } /* thu icon chút cho thoáng */
            .feature-top .video-btn{ 
                padding:.4rem .6rem; 
                font-size:.9rem; 
            }
        }

        @media (max-width:360px){
            .feature-top .video-btn{
                padding:.35rem .55rem;
                font-size:.85rem;
            }
        }







