/* 
   APEX SMM PANEL - PIXEL PERFECT TARGET DESIGN
   FULLY MOBILE RESPONSIVE
*/

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    --primary: #FF0034;
    --primary-hover: #E6002E;
    --secondary: #121212;
    --white: #FFFFFF;
    --bg-light: #F8FAFC;
    --text-dark: #1A1A1A;
    --text-muted: #718096;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

body {
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.5;
    overflow-x: hidden;
}

.container {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
.heading-xl {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    color: var(--text-dark);
}

.heading-lg {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.2;
}

.heading-md {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1.3;
}

.text-red {
    color: var(--primary);
}

/* Buttons */
.btn-red {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    background-color: var(--primary);
    color: var(--white);
    text-decoration: none;
    border: none;
    font-size: 0.95rem;
    transition: var(--transition);
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(255, 0, 52, 0.2);
    white-space: nowrap;
}

.btn-red:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(255, 0, 52, 0.3);
}

.btn-dark {
    background-color: var(--secondary);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
}

.btn-outline {
    background: transparent;
    border: 1px solid #E2E8F0;
    color: var(--text-dark);
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
}

/* ============================================ */
/* HEADER STYLES */
/* ============================================ */
.header {
    background: var(--white);
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 45px;
    max-width: 100%;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.05rem;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary);
}

.header-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--text-dark);
    cursor: pointer;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    z-index: 2000;
    padding: 20px;
    overflow-y: auto;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #E2E8F0;
}

.mobile-nav-close {
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--text-dark);
    cursor: pointer;
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
}

.mobile-nav ul li {
    margin-bottom: 5px;
}

.mobile-nav ul li a {
    display: block;
    padding: 15px 20px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.mobile-nav ul li a:hover {
    background: #F8FAFC;
    color: var(--primary);
}

.mobile-nav-actions {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ============================================ */
/* HERO SECTION */
/* ============================================ */
.hero {
    padding: 60px 0;
    background-color: var(--white);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.hero-title {
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #718096;
    margin-bottom: 35px;
}

.hero-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.girl-wrapper {
    position: relative;
}

.hero-img-main {
    max-width: 100%;
    height: auto;
    border-radius: 30px;
}

/* Form Styles */
.hero-form {
    background: var(--white);
    padding: 30px;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid #F1F5F9;
}

.form-group {
    position: relative;
    margin-bottom: 15px;
}

.form-group i {
    position: absolute;
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    font-size: 1.2rem;
    z-index: 2;
}

.form-control {
    width: 100%;
    padding: 18px 18px 18px 55px;
    border: 1px solid #E2E8F0;
    border-radius: 50px;
    background: var(--white);
    outline: none;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 0, 52, 0.1);
}

.form-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    margin: 10px 15px;
    color: #718096;
}

.form-meta label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.form-meta a {
    color: #718096;
    text-decoration: none;
    transition: color 0.3s ease;
}

.form-meta a:hover {
    color: #ff0034;
}

/* ============================================ */
/* PLATFORMS SECTION */
/* ============================================ */
.platforms {
    padding: 40px 0;
    background: #F0F4F7;
    border-top: 1px solid #F1F5F9;
}

.platforms-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 0.7;
    flex-wrap: wrap;
}

.platforms-grid img {
    height: 38px;
    transition: opacity 0.3s ease;
}

.platforms-grid img:hover {
    opacity: 1;
}

/* ============================================ */
/* STATS SECTION */
/* ============================================ */
.stats-section {
    padding: 60px 0;
    background: #F8FAFC;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.stat-card {
    border-radius: 40px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-card-dark {
    background: #1A1A1A;
    padding: 40px 30px;
    color: #fff;
    height: 260px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.stat-card-red {
    background: #FF0034;
    padding: 40px 30px;
    color: #fff;
    height: 260px;
    box-shadow: 0 15px 40px rgba(255, 0, 52, 0.15);
}

.stat-card-white {
    background: #FFFFFF;
    padding: 40px 30px;
    color: #1A1A1A;
    height: 260px;
    border: 1px solid #F1F5F9;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 500;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.stat-card-white .stat-label {
    opacity: 0.7;
}

.stat-value {
    font-size: 3.2rem;
    font-weight: 900;
    letter-spacing: -1px;
    position: relative;
    z-index: 2;
}

.stat-bg-img {
    position: absolute;
    right: -5px;
    bottom: -5px;
    width: 190px;
    z-index: 1;
}

/* ============================================ */
/* ORDERS SECTION */
/* ============================================ */
.orders-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #FF0034 0%, #D4002B 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.orders-section .section-header {
    margin-bottom: 50px;
    text-align: left;
    padding: 0 5px;
}

.orders-section .section-header h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
}

.orders-section .section-header p {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.6;
    max-width: 1000px;
    margin: 0;
}

/* Premium Slider */
.premium-slider-wrapper {
    overflow: hidden;
    padding: 20px 0;
}

.premium-slider-track {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.premium-slider-page {
    flex: 0 0 100%;
    width: 100%;
}

.premium-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    padding: 0 5px;
}

.premium-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: 35px 30px;
    border-radius: 24px;
    color: #1A1A1A;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;
    height: 100%;
    text-align: left;
}

.premium-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.premium-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}

.icon-wrap {
    width: 55px;
    height: 55px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.premium-card:hover .icon-wrap {
    transform: scale(1.1) rotate(5deg);
}

.premium-badge {
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.premium-card h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.premium-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4A5568;
    font-weight: 500;
    margin: 0;
}

/* Slider Navigation */
.slider-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
}

.slider-nav-btn {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.slider-nav-btn:hover {
    background: rgba(255, 255, 255, 0.25);
}

.slider-nav-btn.prev:hover {
    transform: translateX(-5px);
}

.slider-nav-btn.next:hover {
    transform: translateX(5px);
}

/* Decorative Elements */
.orders-bg-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    filter: blur(30px);
}

/* ============================================ */
/* REGIONAL SECTION */
/* ============================================ */
.regional-section {
    padding: 100px 0;
    background: #F0F4F7;
}

.regional-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.regional-card {
    background: #fff;
    padding: 40px;
    border-radius: 30px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid #F1F5F9;
    height: 100%;
}

.regional-card:hover {
    background: var(--primary);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 0, 52, 0.2);
}

.regional-card:hover h3,
.regional-card:hover p {
    color: #fff !important;
}

.regional-card:hover .heart-icon-box {
    background: #fff !important;
}

.regional-card:hover .heart-icon-box i {
    color: var(--primary) !important;
}

.heart-icon-box {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.heart-icon-box i {
    color: #fff;
    font-size: 1.5rem;
}

/* ============================================ */
/* SUPPORT / TEAM SECTION */
/* ============================================ */
.support-section {
    padding: 100px 0;
    background: #F0F4F7;
}

.support-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.support-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.support-content h2 {
    font-size: 3.2rem;
    font-weight: 900;
    color: #151e2d;
    line-height: 1.3;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.support-content p {
    font-size: 1.05rem;
    color: #8a9bb0;
    line-height: 1.8;
    margin-bottom: 40px;
    font-weight: 500;
}

.btn-signup {
    background: linear-gradient(90deg, #ff0034 0%, #ff0055 100%);
    color: #fff;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 15px 30px rgba(255, 0, 52, 0.3);
    transition: all 0.3s ease;
}

.btn-signup:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 0, 52, 0.4);
}

.btn-signup .icon-circle {
    background: #fff;
    color: #ff0034;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

/* ============================================ */
/* FEATURES GRID SECTION */
/* ============================================ */
.features-section {
    padding: 0 0 100px 0;
    background: #F0F4F7;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    border-radius: 20px;
    padding: 45px 35px;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card-dark {
    background: #1a1d20;
    color: #fff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-card-red {
    background: #ff0034;
    color: #fff;
    box-shadow: 0 20px 40px rgba(255, 0, 52, 0.25);
}

.feature-card-white {
    background: #fff;
    color: #1a1d20;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.feature-icon {
    height: 40px;
    margin-bottom: 25px;
}

.feature-card h3 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
}

.feature-card p {
    font-size: 1.05rem;
    line-height: 1.8;
    font-weight: 500;
    margin: 0;
}

.feature-card-dark p {
    color: #8a9bb0;
}

.feature-card-red p {
    color: rgba(255, 255, 255, 0.95);
}

.feature-card-white p {
    color: #8a9bb0;
}

/* ============================================ */
/* BENEFITS SECTION */
/* ============================================ */
.benefits-section {
    padding: 100px 0;
    background: #F0F4F7;
}

.benefits-header {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 60px auto;
}

.benefits-header h2 {
    font-size: 3.2rem;
    font-weight: 900;
    color: #151e2d;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.benefits-header p {
    font-size: 1.1rem;
    color: #8a9bb0;
    line-height: 1.8;
    font-weight: 500;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefit-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
}

.benefit-icon-box {
    width: 60px;
    height: 60px;
    background: #ff0034;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 10px 20px rgba(255, 0, 52, 0.2);
}

.benefit-icon-box i {
    color: #fff;
    font-size: 1.8rem;
}

.benefit-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #151e2d;
    margin-bottom: 15px;
    line-height: 1.3;
}

.benefit-card p {
    font-size: 1rem;
    color: #8a9bb0;
    line-height: 1.7;
    font-weight: 500;
    margin: 0;
}

/* ============================================ */
/* PROMO SECTION */
/* ============================================ */
.promo-section {
    padding: 0 0 100px 0;
    background: #F0F4F7;
}

.promo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.promo-card {
    background: #fff;
    border-radius: 30px;
    padding: 45px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: transform 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.promo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.08);
}

.promo-content {
    position: relative;
    z-index: 2;
    max-width: 50%;
}

.promo-content h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.3;
}

.promo-content p {
    font-size: 1rem;
    color: #718096;
    line-height: 1.7;
    font-weight: 500;
    margin-bottom: 30px;
}

.promo-img {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 1;
    width: 45%;
    height: auto;
    max-width: none;
    object-fit: contain;
    object-position: right bottom;
}

.promo-img-yt {
    position: absolute;
    right: 20px;
    bottom: 20px;
    z-index: 1;
    width: 35%;
    height: auto;
    object-fit: contain;
}

.promo-tiktok-banner {
    background: linear-gradient(90deg, #ff0034 0%, #ff0055 100%);
    border-radius: 30px;
    padding: 45px 50px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(255, 0, 52, 0.2);
    min-height: 220px;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.promo-tiktok-banner:hover {
    transform: translateY(-5px);
}

.promo-tiktok-content {
    position: relative;
    z-index: 2;
    max-width: 55%;
    color: #fff;
}

.promo-tiktok-content h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.3;
}

.promo-tiktok-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    font-weight: 500;
    opacity: 0.95;
    margin: 0;
}

.promo-img-tiktok {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 1;
    height: 100%;
    width: auto;
    max-width: none;
    object-fit: cover;
    object-position: right center;
}

/* Payment Methods */
.payment-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
}

.payment-box {
    background: #fff;
    width: 140px;
    height: 120px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.payment-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.payment-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* ============================================ */
/* WORK PROCESS SECTION */
/* ============================================ */
.process-section {
    padding: 100px 0;
    background: #F0F4F7;
    overflow: hidden;
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
    align-items: center;
}

.process-left h4 {
    color: #ff0034;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.process-left h2 {
    font-size: 3.5rem;
    font-weight: 900;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.process-left p {
    font-size: 1.05rem;
    color: #718096;
    line-height: 1.8;
    font-weight: 500;
    margin-bottom: 40px;
}

.process-cards-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.process-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    margin-bottom: 30px;
    min-height: 240px;
}

.process-card:hover {
    transform: translateY(-5px);
}

.process-number {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 3.5rem;
    font-weight: 900;
    color: #f1f5f9;
    line-height: 1;
    z-index: 1;
}

.process-card h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.process-card p {
    font-size: 0.95rem;
    color: #718096;
    line-height: 1.6;
    font-weight: 500;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.process-arrow {
    color: #1a1a1a;
    font-size: 1.2rem;
    position: absolute;
    bottom: 35px;
    left: 30px;
}

.process-icon-box {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 70px;
    height: 70px;
    background: #ff0034;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(255, 0, 52, 0.3);
}

.process-icon-box img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.process-col-2 {
    transform: translateY(40px);
}

/* ============================================ */
/* ABOUT US SECTION */
/* ============================================ */
.about-section {
    padding: 100px 0;
    background: #F0F4F7;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    text-align: center;
}

.about-decor-circle {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 3px solid #ff0034;
    border-radius: 50%;
    right: 10%;
    top: 50%;
    z-index: 1;
}

.about-decor-triangle {
    position: absolute;
    width: 15px;
    height: 15px;
    background: #fbbf24;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    left: 5%;
    top: 60%;
    z-index: 1;
}

.about-image-wrapper img {
    max-width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
}

.about-content h2 {
    font-size: 3.5rem;
    font-weight: 900;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.about-content p {
    font-size: 1.05rem;
    color: #718096;
    line-height: 1.8;
    font-weight: 500;
    margin-bottom: 35px;
}

.about-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.about-btn {
    background: #ff0034;
    color: #fff;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 20px rgba(255, 0, 52, 0.2);
    transition: transform 0.3s ease;
}

.about-btn:hover {
    transform: translateY(-3px);
}

/* ============================================ */
/* FAQ SECTION */
/* ============================================ */
.faq-section {
    padding: 100px 0 50px 0;
    background: #F0F4F7;
}

.faq-section h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 60px;
    letter-spacing: -1px;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 40px;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.faq-item {
    background: #fff;
    border-radius: 50px;
    padding: 15px 20px 15px 35px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 70px;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.faq-question {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.faq-icon {
    width: 35px;
    height: 35px;
    background: #ff0034;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-answer {
    display: none;
    padding: 15px 30px 15px 0;
    color: #718096;
    font-size: 0.95rem;
    line-height: 1.6;
}

.faq-item.active {
    border-radius: 25px;
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 10px;
}

.faq-item.active .faq-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    display: block;
}

/* ============================================ */
/* SERVICES ACCORDION SECTION */
/* ============================================ */
.services-section {
    padding: 100px 0;
    background: #F0F4F7;
}

.services-section h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 60px;
    letter-spacing: -1px;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 40px;
}

.services-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-item {
    background: #fff;
    border-radius: 50px;
    padding: 15px 20px 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.02);
    border: 1px solid #f8fafc;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 75px;
}

.service-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.service-icon-left {
    width: 45px;
    height: 45px;
    background: #ff0034;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.service-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    text-align: center;
    flex-grow: 1;
}

.service-icon-right {
    width: 35px;
    height: 35px;
    background: #ff0034;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.service-answer {
    display: none;
    padding: 15px 30px 15px 85px;
    color: #718096;
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-item.active {
    border-radius: 25px;
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 15px;
}

.service-item.active .service-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-item.active .service-icon-right {
    transform: rotate(45deg);
}

.service-item.active .service-answer {
    display: block;
}

/* ============================================ */
/* TESTIMONIALS SECTION */
/* ============================================ */
.testimonials-section {
    padding: 100px 0;
    background: #F0F4F7;
    overflow: hidden;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.testimonial-pills-container {
    position: relative;
    height: 450px;
    width: 100%;
}

.testimonial-pill {
    background: #fff;
    border-radius: 50px;
    padding: 10px 20px 10px 10px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
    cursor: pointer;
    position: absolute;
    border: 1px solid #f8fafc;
    z-index: 2;
}

.testimonial-pill:hover {
    transform: translateY(-5px);
    z-index: 3;
}

.testimonial-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    font-weight: 800;
    font-size: 1.1rem;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info {
    display: flex;
    flex-direction: column;
}

.testimonial-name {
    font-size: 0.95rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
}

.testimonial-role {
    font-size: 0.75rem;
    color: #718096;
    font-weight: 500;
}

.testimonial-arrow {
    color: #ff0034;
    font-size: 1.1rem;
    margin-left: 10px;
}

.testimonial-content h4 {
    color: #ff0034;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.testimonial-content h2 {
    font-size: 3.5rem;
    font-weight: 900;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.testimonial-content h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.testimonial-content p {
    font-size: 1.05rem;
    color: #718096;
    line-height: 1.8;
    font-weight: 500;
    font-style: italic;
}

/* ============================================ */
/* FOOTER STYLES */
/* ============================================ */
.footer {
    background: #1a1d20;
    color: #fff;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #8a9bb0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #ff0034;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #8a9bb0;
    font-size: 0.9rem;
}

/* ============================================ */
/* ANIMATIONS */
/* ============================================ */
.animate-float {
    animation: float 4s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* ============================================ */
/* RESPONSIVE DESIGN */
/* ============================================ */

/* Large Desktop (max-width: 1200px) */
@media (max-width: 1200px) {

    .stats-grid,
    .regional-grid,
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .premium-cards-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* Tablet Landscape (max-width: 992px) */
@media (max-width: 992px) {
    .container {
        padding: 0 20px;
    }

    .heading-xl {
        font-size: 2.8rem !important;
    }

    /* Hero */
    .hero-grid {
        grid-template-columns: 1fr !important;
        text-align: center;
    }

    .hero-content {
        order: 2;
    }

    .hero-image-container {
        order: 1;
    }

    .hero-form {
        margin: 0 auto;
    }

    .hero-title br {
        display: none;
    }

    /* Header */
    .nav-menu,
    .header-actions {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    /* Stats */
    .stat-card {
        height: auto !important;
        padding: 30px 20px !important;
    }

    .stat-value {
        font-size: 2.4rem !important;
    }

    /* Orders */
    .orders-section .section-header h2 {
        font-size: 2.2rem !important;
    }

    .premium-cards-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px;
    }

    /* Support */
    .support-grid {
        grid-template-columns: 1fr !important;
        gap: 40px;
    }

    .support-content h2 {
        font-size: 2.2rem !important;
    }

    /* Features */
    .features-grid {
        grid-template-columns: 1fr !important;
    }

    /* Promo */
    .promo-grid {
        grid-template-columns: 1fr !important;
    }

    .promo-content {
        max-width: 100% !important;
        margin-bottom: 30px;
    }

    .promo-img,
    .promo-img-yt {
        position: relative !important;
        width: 60% !important;
        margin: 0 auto;
        display: block;
    }

    .promo-tiktok-content {
        max-width: 100% !important;
    }

    .promo-img-tiktok {
        position: relative !important;
        width: 80% !important;
        height: auto !important;
        margin: 20px auto 0;
        display: block;
    }

    .promo-tiktok-banner {
        flex-direction: column;
        text-align: center;
    }

    /* Process */
    .process-grid {
        grid-template-columns: 1fr !important;
        gap: 40px;
    }

    .process-cards-col {
        grid-template-columns: 1fr !important;
    }

    .process-col-2 {
        transform: translateY(0) !important;
    }

    .process-left h2 {
        font-size: 2.2rem !important;
    }

    /* About */
    .about-grid {
        grid-template-columns: 1fr !important;
        gap: 40px;
    }

    .about-content h2 {
        font-size: 2.2rem !important;
    }

    /* FAQ */
    .faq-grid {
        grid-template-columns: 1fr !important;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr !important;
    }

    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr !important;
        gap: 40px;
    }

    .testimonial-pills-container {
        height: auto !important;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .testimonial-pill {
        position: relative !important;
        top: auto !important;
        left: auto !important;
    }

    .testimonial-content {
        text-align: center;
        padding-left: 0 !important;
    }

    .testimonial-content h2 {
        font-size: 2.5rem !important;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablet Portrait (max-width: 768px) */
@media (max-width: 768px) {
    .heading-xl {
        font-size: 2.2rem !important;
    }

    .heading-lg {
        font-size: 1.8rem !important;
    }

    /* Hero */
    .hero {
        padding: 30px 0;
    }

    .hero-tag {
        font-size: 1rem;
    }

    .hero-subtitle {
        font-size: 1rem !important;
    }

    .hero-form {
        padding: 20px !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    }

    .hero-form>div:last-child {
        flex-direction: column !important;
        gap: 10px !important;
    }

    .hero-form button,
    .hero-form a {
        width: 100% !important;
        height: 50px !important;
        font-size: 0.9rem !important;
    }

    .form-meta {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    /* Stats */
    .stats-grid {
        grid-template-columns: 1fr !important;
    }

    .stat-card {
        padding: 25px !important;
    }

    /* Platforms */
    .platforms-grid {
        gap: 15px;
        justify-content: center;
    }

    .platforms-grid img {
        height: 25px !important;
    }

    /* Premium Cards */
    .premium-cards-grid {
        grid-template-columns: 1fr !important;
    }

    /* Regional */
    .regional-grid {
        grid-template-columns: 1fr !important;
    }

    /* Benefits */
    .benefits-grid {
        grid-template-columns: 1fr !important;
    }

    /* Promo */
    .promo-card {
        min-height: auto !important;
        padding: 25px !important;
    }

    .promo-content {
        text-align: center;
    }

    /* FAQ */
    .faq-item {
        border-radius: 25px;
        padding-left: 25px;
    }

    /* Services */
    .service-item {
        border-radius: 25px;
    }

    .service-answer {
        padding-left: 20px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
    }

    /* Section Spacing */
    .regional-section,
    .support-section,
    .features-section,
    .benefits-section,
    .promo-section,
    .process-section,
    .about-section,
    .faq-section,
    .services-section,
    .testimonials-section {
        padding: 60px 0;
    }
}

/* Mobile (max-width: 480px) */
@media (max-width: 480px) {
    .heading-xl {
        font-size: 1.8rem !important;
    }

    .heading-lg {
        font-size: 1.5rem !important;
    }

    .container {
        padding: 0 15px;
    }

    /* Hero */
    .hero-image-container {
        display: none;
    }

    .hero-form {
        padding: 15px !important;
        border-radius: 20px;
    }

    /* Stats */
    .stat-value {
        font-size: 1.8rem !important;
    }

    /* Orders */
    .orders-section .section-header h2 {
        font-size: 1.8rem !important;
    }

    .slider-nav-btn {
        width: 45px;
        height: 45px;
    }

    /* Support */
    .support-content h2 {
        font-size: 1.8rem !important;
    }

    .btn-signup {
        padding: 15px 30px;
        font-size: 1rem;
    }

    /* Features */
    .feature-card {
        padding: 30px 25px;
    }

    .feature-card h3 {
        font-size: 1.6rem !important;
    }

    /* Process */
    .process-left h2 {
        font-size: 1.8rem !important;
    }

    /* About */
    .about-content h2 {
        font-size: 1.8rem !important;
    }

    .about-buttons {
        flex-direction: column;
    }

    .about-btn {
        justify-content: center;
    }

    /* Testimonials */
    .testimonial-content h2 {
        font-size: 2rem !important;
    }

    /* FAQ */
    .faq-section h2 {
        font-size: 2rem !important;
    }

    /* Services */
    .services-section h2 {
        font-size: 2rem !important;
    }

    /* Payment */
    .payment-box {
        width: 100px;
        height: 90px;
        padding: 15px;
    }
}