/* ========================================
   1. CSS CUSTOM PROPERTIES
   ======================================== */
:root {
    --primary: #4A90D9;
    --primary-light: #E8F4FD;
    --primary-dark: #2E6DB4;
    --accent: #5BA0E0;
    --gradient: linear-gradient(135deg, #4A90D9 0%, #6BB5F5 50%, #48C6EF 100%);
    --gradient-dark: linear-gradient(135deg, #2E6DB4 0%, #4A90D9 100%);
    --text: #1A202C;
    --text-light: #718096;
    --white: #FFFFFF;
    --bg: #F7FBFF;
    --shadow: 0 4px 20px rgba(74, 144, 217, 0.12);
    --shadow-hover: 0 12px 40px rgba(74, 144, 217, 0.25);
    --glass: rgba(255, 255, 255, 0.7);
}

/* ========================================
   2. RESET & BASE
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Nunito', sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* ========================================
   3. KEYFRAME ANIMATIONS
   ======================================== */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

@keyframes floatSlow {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(3deg); }
}

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

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

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes blobMove {
    0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    25% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
    50% { border-radius: 50% 60% 30% 60% / 40% 70% 60% 30%; }
    75% { border-radius: 60% 30% 60% 40% / 70% 40% 50% 60%; }
}

@keyframes blink {
    50% { border-color: transparent; }
}

/* ========================================
   4. REUSABLE UTILITIES
   ======================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Gradient text - reusable */
.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 34px;
    border-radius: 30px;
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: 0 4px 20px rgba(74, 144, 217, 0.35);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(74, 144, 217, 0.5);
}

.btn-outline {
    background: var(--glass);
    color: var(--primary-dark);
    border: 2px solid rgba(74, 144, 217, 0.3);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(74, 144, 217, 0.3);
}

.btn-submit {
    width: 100%;
    padding: 16px;
    font-size: 1.05rem;
    background: var(--gradient);
    color: white;
    box-shadow: 0 4px 20px rgba(74, 144, 217, 0.3);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(74, 144, 217, 0.45);
}

/* Scroll reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* Staggered reveal delays */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* Section base padding */
section {
    padding: 110px 0;
}

/* Section header - reusable */
.section-header {
    text-align: center;
    margin-bottom: 65px;
}

.section-header--left {
    text-align: left;
    margin-bottom: 20px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(74, 144, 217, 0.08);
    border: 1px solid rgba(74, 144, 217, 0.15);
    color: var(--primary);
    padding: 7px 20px;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 800;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-header p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.08rem;
}

.section-header--left p {
    margin: 0;
}

/* Color utilities */
.text-primary {
    color: var(--primary);
}

.text-red {
    color: #E53E3E;
}

/* ========================================
   5. NAVBAR
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 15px 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(74, 144, 217, 0.08);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.95);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.6rem;
    font-weight: 900;
    text-decoration: none;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.logo span {
    -webkit-text-fill-color: var(--text);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 700;
    font-size: 0.92rem;
    transition: all 0.3s;
    position: relative;
}

.nav-links a:not(.btn-nav)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2.5px;
    background: var(--gradient);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.nav-links a:not(.btn-nav):hover::after {
    width: 100%;
}

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

.nav-links .btn-nav {
    background: var(--gradient);
    color: white;
    padding: 11px 26px;
    border-radius: 25px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(74, 144, 217, 0.3);
}

.nav-links .btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(74, 144, 217, 0.45);
    color: white;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text);
    background: none;
    border: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
}

/* ========================================
   6. HERO
   ======================================== */
.hero {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    background: linear-gradient(160deg, #FFFFFF 0%, var(--primary-light) 30%, #D6ECFF 60%, #E8F4FD 100%);
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
}

/* Animated blobs */
.hero .blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.25;
    animation: blobMove 8s ease-in-out infinite;
    will-change: border-radius;
}

.hero .blob-1 {
    width: 500px;
    height: 500px;
    background: var(--primary);
    top: -10%;
    right: -10%;
}

.hero .blob-2 {
    width: 350px;
    height: 350px;
    background: #48C6EF;
    bottom: -5%;
    left: -5%;
    animation-delay: -4s;
}

.hero .blob-3 {
    width: 200px;
    height: 200px;
    background: #6BB5F5;
    top: 50%;
    left: 40%;
    animation-delay: -2s;
}

.hero .container {
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
    animation: slideUp 0.8s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(74, 144, 217, 0.1);
    border: 1px solid rgba(74, 144, 217, 0.2);
    color: var(--primary-dark);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 28px;
    backdrop-filter: blur(10px);
}

.hero-badge i {
    font-size: 0.75rem;
    animation: pulse 2s ease-in-out infinite;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text);
    letter-spacing: -1px;
}

.hero-highlight {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--gradient);
    opacity: 0.2;
    border-radius: 4px;
}

.hero p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin: 0 auto 38px;
    max-width: 540px;
    line-height: 1.8;
}

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

/* Typing animation */
.typing-wrapper {
    display: inline-block;
    vertical-align: bottom;
    text-align: center;
}

.typing-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    border-right: 3px solid var(--primary);
    padding-right: 4px;
    animation: blink 0.8s step-end infinite;
    white-space: nowrap;
}

/* Live counter badge */
.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.2);
    color: #128C7E;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-top: 20px;
    max-width: 100%;
    flex-wrap: wrap;
    justify-content: center;
}

.live-badge .live-dot {
    width: 8px;
    height: 8px;
    background: #25D366;
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
}

/* Hero stat cards */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 650px;
    margin: 50px auto 0;
    animation: slideUp 0.8s ease-out 0.3s both;
}

.stat-card {
    background: var(--glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 24px 16px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.6);
    box-shadow: 0 8px 32px rgba(74, 144, 217, 0.1);
    transition: all 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.stat-icon {
    font-size: 1.4rem;
    margin-bottom: 8px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 900;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 700;
    margin-top: 4px;
}

/* ========================================
   7. TRUST BAR
   ======================================== */
.trust-bar {
    background: white;
    padding: 28px 0;
    border-bottom: 1px solid rgba(74, 144, 217, 0.06);
    overflow: hidden;
}

.trust-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-weight: 700;
    font-size: 0.95rem;
}

.trust-item i {
    font-size: 1.3rem;
    color: var(--primary);
}

/* ========================================
   8. ABOUT
   ======================================== */
.about {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-image {
    position: relative;
    overflow: hidden;
}

.about-image-main {
    background: var(--gradient);
    border-radius: 28px;
    padding: 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-image-main::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 50%);
    animation: gradientMove 6s ease-in-out infinite;
    background-size: 200% 200%;
}

.about-image-main i {
    font-size: 7rem;
    color: rgba(255,255,255,0.9);
    position: relative;
    z-index: 1;
}

.about-floating-card {
    position: absolute;
    background: white;
    border-radius: 16px;
    padding: 16px 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: floatSlow 5s ease-in-out infinite;
}

.about-floating-card.card-1 {
    top: -15px;
    right: -20px;
    animation-delay: 0s;
}

.about-floating-card.card-2 {
    bottom: -15px;
    left: -20px;
    animation-delay: -2.5s;
}

.floating-card-icon {
    width: 42px;
    height: 42px;
    background: var(--primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.1rem;
}

.floating-card-title {
    font-weight: 800;
    font-size: 0.9rem;
    color: var(--text);
}

.floating-card-subtitle {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 600;
}

.about-content h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: var(--text);
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 30px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: var(--bg);
    border-radius: 14px;
    transition: all 0.3s;
}

.about-feature:hover {
    background: var(--primary-light);
    transform: translateX(5px);
}

.about-feature i {
    color: var(--primary);
    font-size: 1.1rem;
    width: 20px;
    flex-shrink: 0;
}

.about-feature span {
    font-weight: 700;
    color: var(--text);
    font-size: 0.9rem;
}

/* ========================================
   9. SERVICES
   ======================================== */
.services {
    background: var(--bg);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(74, 144, 217, 0.2), transparent);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(340px, 100%), 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    border-radius: 24px;
    padding: 45px 35px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(74, 144, 217, 0.06);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(74, 144, 217, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(30%, -30%);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.service-icon {
    width: 75px;
    height: 75px;
    background: var(--gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}

.service-card h3 {
    font-size: 1.35rem;
    margin-bottom: 15px;
    color: var(--text);
    font-weight: 800;
}

.service-card > p {
    color: var(--text-light);
    margin-bottom: 22px;
    line-height: 1.75;
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
}

.service-features li {
    padding: 8px 0;
    color: var(--text);
    font-size: 0.95rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-features li i {
    color: var(--primary);
    font-size: 0.8rem;
    width: 22px;
    height: 22px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ========================================
   10. PRICING
   ======================================== */
.pricing {
    background: var(--white);
    position: relative;
}

.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 45px;
}

.pricing-tab {
    padding: 12px 28px;
    border-radius: 25px;
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    font-weight: 800;
    cursor: pointer;
    border: 2px solid #EDF2F7;
    background: white;
    color: var(--text-light);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pricing-tab.active {
    background: var(--gradient);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(74, 144, 217, 0.3);
}

.pricing-tab:hover:not(.active) {
    border-color: var(--primary);
    color: var(--primary);
}

.pricing-table-wrap {
    max-width: 900px;
    margin: 0 auto;
    display: none;
}

.pricing-table-wrap.active {
    display: block;
    animation: slideUp 0.5s ease-out;
}

.pricing-table-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(74, 144, 217, 0.1);
    box-shadow: var(--shadow);
}

.pricing-table-header {
    background: var(--gradient);
    padding: 28px 35px;
    display: flex;
    align-items: center;
    gap: 16px;
    color: white;
}

.pricing-table-header--facebook {
    background: linear-gradient(135deg, #1877F2, #42A5F5);
}

.pricing-table-header i {
    font-size: 2rem;
    opacity: 0.9;
}

.pricing-table-header h3 {
    font-size: 1.3rem;
    font-weight: 800;
}

.pricing-table-header p {
    font-size: 0.88rem;
    opacity: 0.85;
    margin-top: 2px;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    word-wrap: break-word;
}

.pricing-table thead th {
    padding: 16px 20px;
    text-align: left;
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    background: #F8FAFC;
    border-bottom: 2px solid #EDF2F7;
}

.pricing-table thead th:last-child {
    text-align: right;
}

.pricing-table tbody tr {
    transition: all 0.3s;
}

.pricing-table tbody tr:hover {
    background: var(--primary-light);
}

.pricing-table tbody td {
    padding: 18px 20px;
    border-bottom: 1px solid #F0F4F8;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
}

.pricing-table tbody td:last-child {
    text-align: right;
    font-weight: 800;
    color: var(--primary-dark);
    white-space: nowrap;
}

.pricing-item-name {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-item-name i {
    color: var(--primary);
    width: 18px;
}

.pricing-item-desc {
    font-size: 0.82rem;
    color: var(--text-light);
    font-weight: 600;
    margin-top: 3px;
    padding-left: 28px;
}

.pricing-table-footer {
    padding: 22px 35px;
    background: #F8FAFC;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.pricing-note {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pricing-note i {
    color: var(--primary);
}

.pricing-note-box {
    margin-top: 30px;
    background: var(--primary-light);
    border-radius: 18px;
    padding: 25px 30px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    border: 1px solid rgba(74, 144, 217, 0.15);
}

.pricing-note-box i {
    color: var(--primary);
    font-size: 1.3rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.pricing-note-box p {
    color: var(--text);
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1.7;
}

/* ========================================
   11. PROCESS
   ======================================== */
.process {
    background: linear-gradient(160deg, var(--primary-light) 0%, #D6ECFF 50%, #E8F4FD 100%);
    position: relative;
    overflow: hidden;
}

.process::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(74, 144, 217, 0.06);
    border-radius: 50%;
    top: -100px;
    right: -100px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent), #48C6EF);
    border-radius: 2px;
    opacity: 0.3;
}

.step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    color: white;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    margin: 0 auto 22px;
    box-shadow: 0 8px 25px rgba(74, 144, 217, 0.3);
    transition: all 0.4s;
}

.step:hover .step-number {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(74, 144, 217, 0.4);
}

.step h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text);
    font-weight: 800;
}

.step p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ========================================
   12. TESTIMONIALS
   ======================================== */
.testimonials {
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: 25px;
}

.testimonial-card {
    background: var(--bg);
    border-radius: 24px;
    padding: 35px;
    position: relative;
    border: 1px solid rgba(74, 144, 217, 0.06);
    transition: all 0.4s ease;
}

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

.testimonial-card .quote-icon {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 2.5rem;
    color: var(--primary);
    opacity: 0.1;
}

.testimonial-stars {
    color: #FBBF24;
    margin-bottom: 18px;
    font-size: 0.95rem;
    letter-spacing: 2px;
}

.testimonial-card > p {
    color: var(--text);
    font-style: italic;
    margin-bottom: 25px;
    line-height: 1.8;
    font-size: 0.98rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    background: var(--gradient);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 900;
    font-size: 1.2rem;
}

.testimonial-name {
    font-weight: 800;
    color: var(--text);
    font-size: 0.95rem;
}

.testimonial-role {
    font-size: 0.82rem;
    color: var(--text-light);
    font-weight: 600;
}

/* ========================================
   13. WHY CHOOSE US
   ======================================== */
.why-us {
    background: var(--bg);
    overflow: hidden;
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    table-layout: fixed;
    word-wrap: break-word;
}

.comparison-table thead th {
    padding: 18px 20px;
    font-size: 0.9rem;
    font-weight: 800;
    text-align: center;
    border-bottom: 2px solid #EDF2F7;
}

.comparison-table thead th:first-child {
    background: #F8FAFC;
    text-align: left;
}

.comparison-table thead th:nth-child(2) {
    background: var(--gradient);
    color: white;
}

.comparison-table thead th:nth-child(3) {
    background: #F8FAFC;
    color: var(--text-light);
}

.comparison-table tbody td {
    padding: 16px 20px;
    font-size: 0.92rem;
    font-weight: 600;
    text-align: center;
    background: white;
    border-bottom: 1px solid #F0F4F8;
}

.comparison-table tbody td:first-child {
    text-align: left;
    color: var(--text);
    font-weight: 700;
}

.comparison-table tbody td:nth-child(2) {
    color: var(--primary-dark);
    font-weight: 800;
    background: rgba(74, 144, 217, 0.03);
}

.comparison-table tbody td:nth-child(3) {
    color: var(--text-light);
}

.comparison-check {
    color: #25D366;
    font-weight: 800;
}

.comparison-cross {
    color: #E53E3E;
    font-weight: 800;
}

.why-us-benefits {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 22px;
    background: white;
    border-radius: 18px;
    border: 1px solid rgba(74, 144, 217, 0.06);
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow);
    border-color: rgba(74, 144, 217, 0.15);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-light);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary);
    flex-shrink: 0;
}

.benefit-card h4 {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 4px;
    color: var(--text);
}

.benefit-card p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ========================================
   14. FAQ
   ======================================== */
.faq {
    background: var(--bg);
}

.faq-list {
    max-width: 750px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 18px;
    margin-bottom: 14px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    border: 1px solid rgba(74, 144, 217, 0.06);
    transition: border-color 0.35s ease, box-shadow 0.35s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(74, 144, 217, 0.1);
}

.faq-item.active {
    border-color: rgba(74, 144, 217, 0.2);
    box-shadow: 0 6px 24px rgba(74, 144, 217, 0.12);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 24px 28px;
    font-family: 'Nunito', sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text);
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-toggle {
    width: 36px;
    height: 36px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.35s ease, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.faq-toggle i {
    color: var(--primary);
    font-size: 0.8rem;
    transition: color 0.35s ease;
}

.faq-item.active .faq-toggle {
    background: var(--gradient);
    transform: rotate(180deg);
}

.faq-item.active .faq-toggle i {
    color: white;
}

.faq-answer {
    overflow: hidden;
    transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: grid;
    grid-template-rows: 0fr;
}

.faq-item.active .faq-answer {
    grid-template-rows: 1fr;
}

.faq-answer-inner {
    overflow: hidden;
}

.faq-answer-inner p {
    padding: 0 28px 24px;
    color: var(--text-light);
    line-height: 1.8;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.35s ease 0.1s, transform 0.35s ease 0.1s;
}

.faq-item.active .faq-answer-inner p {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   15. CTA BANNER
   ======================================== */
.cta-banner {
    background: var(--gradient);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 50%);
    animation: gradientMove 8s ease-in-out infinite;
    background-size: 200% 200%;
}

.cta-banner h2 {
    color: white;
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.cta-banner p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin-bottom: 35px;
    position: relative;
    z-index: 1;
}

.cta-banner .btn {
    background: white;
    color: var(--primary-dark);
    font-weight: 800;
    position: relative;
    z-index: 1;
}

.cta-banner .btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* ========================================
   16. CONTACT
   ======================================== */
.contact {
    background: var(--white);
    position: relative;
}

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

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 800;
}

.contact-info > p {
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: var(--text);
    padding: 20px 22px;
    background: var(--bg);
    border-radius: 18px;
    transition: all 0.4s ease;
    border: 1px solid transparent;
}

.contact-method:hover {
    background: white;
    border-color: rgba(74, 144, 217, 0.2);
    transform: translateX(8px);
    box-shadow: var(--shadow);
}

.contact-method i {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    color: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-method .method-label {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 600;
}

.contact-method .method-value {
    font-weight: 800;
    font-size: 1.05rem;
    overflow-wrap: break-word;
    word-break: break-word;
}

/* Contact form */
.contact-form {
    background: var(--bg);
    padding: 42px;
    border-radius: 28px;
    border: 1px solid rgba(74, 144, 217, 0.06);
}

.contact-form h3 {
    font-size: 1.3rem;
    margin-bottom: 28px;
    font-weight: 800;
}

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

.form-group label {
    display: block;
    font-weight: 800;
    font-size: 0.88rem;
    margin-bottom: 8px;
    color: var(--text);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #E2E8F0;
    border-radius: 14px;
    font-family: 'Nunito', sans-serif;
    font-size: 16px; /* Prevents iOS auto-zoom on focus */
    font-weight: 600;
    transition: all 0.3s;
    background: white;
    color: var(--text);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(74, 144, 217, 0.1);
}

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

.form-group textarea.textarea-short {
    height: 80px;
}

/* ========================================
   17. FOOTER
   ======================================== */
.footer {
    background: #1A202C;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand .logo {
    font-size: 1.5rem;
    margin-bottom: 18px;
    display: inline-block;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand .logo span {
    -webkit-text-fill-color: #A0AEC0;
}

.footer-brand p {
    color: #718096;
    font-size: 0.92rem;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #A0AEC0;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1.1rem;
}

.footer-social a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.footer h4 {
    margin-bottom: 22px;
    font-size: 1rem;
    font-weight: 800;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #718096;
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-links a i.fa-chevron-right {
    font-size: 0.7rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #4A5568;
    font-size: 0.85rem;
    font-weight: 600;
}

/* ========================================
   18. FLOATING CONTACT & BACK TO TOP
   ======================================== */
.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
}

.float-btn {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.float-btn::before {
    content: attr(data-tooltip);
    position: absolute;
    right: 68px;
    background: #1A202C;
    color: white;
    padding: 8px 14px;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s;
    pointer-events: none;
}

.float-btn:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.float-btn:hover {
    transform: scale(1.12) translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
}

.float-btn.zalo {
    background: linear-gradient(135deg, #0068FF, #00A5FF);
    box-shadow: 0 4px 15px rgba(0, 104, 255, 0.35);
}

.float-btn.messenger {
    background: linear-gradient(135deg, #00B2FF, #006AFF);
    box-shadow: 0 4px 15px rgba(0, 106, 255, 0.35);
}

.float-btn.phone {
    background: linear-gradient(135deg, #25D366, #128C7E);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
    animation: pulse 2s ease-in-out infinite;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 48px;
    height: 48px;
    background: var(--gradient);
    color: white;
    border: none;
    border-radius: 14px;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 998;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(74, 144, 217, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(74, 144, 217, 0.4);
}

/* ========================================
   19. QUICK ORDER MODAL
   ======================================== */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
    animation: scaleIn 0.3s ease-out;
}

.modal {
    background: white;
    border-radius: 24px;
    padding: 35px;
    max-width: 450px;
    width: 100%;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: none;
    border: none;
    font-size: 1.3rem;
    cursor: pointer;
    color: var(--text-light);
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.modal-close:hover {
    background: var(--bg);
    color: var(--text);
}

.modal h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 6px;
}

.modal-subtitle {
    font-size: 0.88rem;
    color: var(--text-light);
    margin-bottom: 25px;
    font-weight: 600;
}

/* ========================================
   20. ACCESSIBILITY
   ======================================== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .reveal, .reveal-left, .reveal-right {
        opacity: 1;
        transform: none;
    }
}

/* ========================================
   21. RESPONSIVE - 992px
   ======================================== */
@media (max-width: 992px) {
    .hero h1 { font-size: 2.8rem; }

    .hero-stats {
        grid-template-columns: repeat(4, 1fr);
        gap: 14px;
        max-width: 550px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .about-floating-card.card-1 {
        right: 10px;
        top: -10px;
    }

    .about-floating-card.card-2 {
        left: 10px;
        bottom: -10px;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps::before {
        display: none;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* ========================================
   22. RESPONSIVE - 768px
   ======================================== */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: -20px;
        right: -20px;
        width: auto;
        background: rgba(255,255,255,0.98);
        -webkit-backdrop-filter: blur(20px);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 25px 20px;
        box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        gap: 12px;
        border-radius: 0 0 20px 20px;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }

    .hero {
        padding-top: 100px;
        padding-bottom: 40px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        max-width: 360px;
        margin-top: 35px;
    }

    section {
        padding: 70px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

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

    .section-header p {
        font-size: 0.95rem;
    }

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

    .service-card {
        padding: 30px 24px;
    }

    .trust-content {
        gap: 15px 25px;
        justify-content: center;
        padding: 0 10px;
    }

    .trust-item {
        font-size: 0.85rem;
    }

    .hero .blob { display: none; }

    .stat-card {
        padding: 20px 12px;
    }

    .about-floating-card {
        display: none;
    }

    .about-image-main {
        padding: 35px;
    }

    .about-image-main i {
        font-size: 5rem;
    }

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

    .testimonial-card {
        padding: 25px;
    }

    .contact-method .method-value {
        font-size: 0.92rem;
        word-break: break-all;
    }

    .floating-contact {
        bottom: 20px;
        right: 15px;
        gap: 10px;
    }

    .float-btn {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
        border-radius: 14px;
    }

    .float-btn::before {
        display: none;
    }

    .back-to-top {
        width: 44px;
        height: 44px;
        bottom: 20px;
        left: 15px;
        font-size: 1rem;
    }

    .cta-banner {
        padding: 60px 0;
    }

    .cta-banner h2 {
        font-size: 1.6rem;
    }

    .cta-banner p {
        font-size: 0.95rem;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
    }

    .comparison-table thead th,
    .comparison-table tbody td {
        padding: 12px 10px;
        font-size: 0.8rem;
    }
}

/* ========================================
   23. RESPONSIVE - 600px
   ======================================== */
@media (max-width: 600px) {
    .pricing-table thead { display: none; }
    .pricing-table tbody tr {
        display: block;
        padding: 18px 20px;
        border-bottom: 2px solid #EDF2F7;
    }
    .pricing-table tbody td {
        display: block;
        padding: 4px 0;
        border-bottom: none;
        text-align: left !important;
    }
    .pricing-table tbody td:first-child {
        margin-bottom: 8px;
    }
    .pricing-table tbody td:nth-child(2) {
        font-size: 0.85rem;
        color: var(--text-light);
    }
    .pricing-table tbody td:last-child {
        font-size: 1.1rem;
        margin-top: 4px;
    }
    .pricing-item-desc {
        padding-left: 0;
    }
    .pricing-table-header {
        padding: 20px;
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    .pricing-table-header h3 {
        font-size: 1.1rem;
    }
    .pricing-table-footer {
        flex-direction: column;
        align-items: stretch;
        padding: 18px 20px;
        gap: 12px;
    }
    .pricing-table-footer .btn {
        justify-content: center;
    }
    .pricing-tabs {
        flex-wrap: wrap;
        justify-content: center;
    }
    .pricing-note-box {
        padding: 18px;
        flex-direction: column;
        gap: 10px;
    }
}

/* ========================================
   24. RESPONSIVE - 480px
   ======================================== */
@media (max-width: 480px) {
    .container {
        padding: 0 14px;
    }

    section {
        padding: 50px 0;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 0.95rem;
    }

    .hero-stats {
        gap: 10px;
        max-width: 320px;
        margin-top: 30px;
    }

    .stat-card {
        padding: 16px 10px;
        border-radius: 16px;
    }

    .stat-value {
        font-size: 1.4rem;
    }

    .stat-icon {
        font-size: 1.1rem;
    }

    .process-steps {
        grid-template-columns: 1fr 1fr;
        gap: 18px;
    }

    .step-number {
        width: 55px;
        height: 55px;
        font-size: 1.2rem;
    }

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

    .hero-buttons .btn {
        justify-content: center;
        width: 100%;
        max-width: 320px;
    }

    .contact-form {
        padding: 22px;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 13px 16px;
        font-size: 16px; /* Prevents iOS auto-zoom */
    }

    .faq-question {
        padding: 20px 18px;
        font-size: 0.95rem;
        gap: 12px;
    }

    .faq-answer-inner p {
        padding: 0 18px 20px;
    }

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

    .cta-banner h2 {
        font-size: 1.4rem;
    }

    .cta-banner .btn {
        font-size: 0.9rem;
        padding: 13px 24px;
    }

    .footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        gap: 30px;
        margin-bottom: 30px;
    }

    .modal {
        padding: 25px;
        border-radius: 20px;
    }

    .comparison-table thead th:first-child,
    .comparison-table tbody td:first-child {
        width: 35%;
    }

    .comparison-table thead th,
    .comparison-table tbody td {
        padding: 10px 6px;
        font-size: 0.8rem;
        word-break: break-word;
    }

    .comparison-table thead th:nth-child(2) {
        font-size: 0.78rem;
    }
}

/* ========================================
   25. RESPONSIVE - 360px
   ======================================== */
@media (max-width: 360px) {
    .container {
        padding: 0 12px;
    }

    section {
        padding: 40px 0;
    }

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

    .hero p {
        font-size: 0.88rem;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 6px 14px;
    }

    .hero-stats {
        max-width: 280px;
        gap: 8px;
    }

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

    .section-header p {
        font-size: 0.88rem;
    }

    .pricing-tab {
        padding: 10px 14px;
        font-size: 0.85rem;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .stat-value {
        font-size: 1.2rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .faq-question {
        padding: 18px 14px;
        font-size: 0.9rem;
    }

    .faq-answer-inner p {
        padding: 0 14px 18px;
        font-size: 0.9rem;
    }

    .form-group label {
        font-size: 0.82rem;
    }

    .hero-buttons .btn {
        padding: 13px 24px;
        font-size: 0.9rem;
    }

    .service-features li {
        font-size: 0.88rem;
    }

    .floating-contact {
        bottom: 15px;
        right: 12px;
        gap: 8px;
    }

    .float-btn {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
        border-radius: 12px;
    }

    .back-to-top {
        width: 42px;
        height: 42px;
        bottom: 15px;
        left: 12px;
        font-size: 0.9rem;
    }

    .modal {
        padding: 20px;
        border-radius: 18px;
    }

    .testimonial-card {
        padding: 22px;
    }

    .service-card {
        padding: 25px 20px;
    }

    .cta-banner h2 {
        font-size: 1.2rem;
    }

    .cta-banner p {
        font-size: 0.88rem;
    }

    .trust-content {
        gap: 10px 16px;
    }

    .trust-item {
        font-size: 0.8rem;
    }
}
