/* Global Styles */
:root {
    --primary-color: #5b36a2;
    --primary-dark: #4a2b85;
    --gradient-start: #5808fb;
    --gradient-end: #9929ea;
    --text-primary: #2e2e2e;
    --text-secondary: #333333;
    --text-light: #9894a3;
    --bg-light: #f4f0ff;
    --bg-dark: #0b0c13;
    --white: #ffffff;
    --border-radius: 21px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    height: 100%;
}

body {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
    position: relative;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

input,
textarea,
select,
button {
    font-family: inherit;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 160px;
    width: 100%;
}

@media (max-width: 1200px) {
    .container {
        padding: 0 60px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
        max-width: 100%;
    }
    
    body {
        font-size: 16px;
        min-width: 320px;
    }
    
    .header {
        height: 64px;
        width: 100%;
    }
    
    .nav {
        padding: 0 16px;
    }
    
    .nav-menu {
        top: 64px;
    }
    
    .logo img {
        height: 32px;
        width: auto;
    }
}

/* Header */
.header {
    position: sticky;
    top: 0;
    background: var(--white);
    box-shadow: 0 1px 8px rgba(46, 33, 74, 0.08);
    z-index: 1000;
    height: 80px;
    display: flex;
    align-items: center;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    width: 100%;
}

.logo img {
    display: block;
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 48px;
    margin: 0;
    flex: 1;
    justify-content: center;
}

.nav-menu a {
    color: #181818;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5;
    transition: var(--transition);
    padding: 0;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-color);
}

.nav-menu .has-dropdown {
    display: flex;
    align-items: center;
    gap: 2px;
    position: relative;
}

.nav-menu .has-dropdown .dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 2px;
    cursor: pointer;
}

.nav-menu .has-dropdown .dropdown-arrow {
    width: 12px;
    height: 12px;
    color: #181818;
    transition: transform 0.3s ease;
}

.nav-menu .has-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.nav-menu .has-dropdown.active .dropdown-trigger {
    background: linear-gradient(270deg, #9929EA 0%, #5808FB 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu .has-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: calc(100% + 28px);
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    border: 1px solid rgba(46, 33, 74, 0.1);
    border-radius: 24px;
    box-shadow: 0px 4px 20px 0px rgba(46, 33, 74, 0.12);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s ease, transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%) translateY(-10px);
    z-index: 1000;
    min-width: max-content;
    width: auto;
}

/* 下拉菜单顶部箭头指示器 */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 8px solid white;
    filter: drop-shadow(0px -2px 4px rgba(46, 33, 74, 0.08));
}

/* 下拉菜单顶部分隔线 */
.dropdown-menu::after {
    content: '';
    position: absolute;
    top: 0;
    left: 32px;
    right: 32px;
    height: 1px;
    background: #eee;
}

.nav-menu .has-dropdown:hover .dropdown-menu,
.nav-menu .has-dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Products Dropdown */
.products-dropdown {
    width: auto;
    max-width: 980px;
    min-width: 780px;
  
    padding: 28px 0 24px;
}

.dropdown-content {
    padding: 0 28px;
}

.dropdown-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 4px;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: #f7f6fa;
    border: none;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    min-height: 90px;
}

.dropdown-item:hover {
    background: #eeecf5;
    transform: translateY(-2px);
    box-shadow: 0px 4px 16px rgba(153, 41, 234, 0.1);
}

.dropdown-item .item-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.06);
}

.dropdown-item .item-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 4px;
}

.dropdown-item .item-info {
    flex: 1;
    min-width: 0;
}

.dropdown-item .item-info h4 {
    font-family: 'SF Pro', sans-serif;
    font-weight: 600;
    font-size: 17px;
    line-height: 1.3;
    color: #1a1a1a;
    margin: 0 0 6px 0;
    transition: color 0.25s ease;
}

.dropdown-item:hover .item-info h4 {
    color: #5808fb;
}

.dropdown-item .item-info p {
    font-family: 'SF Pro', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    color: #6b6b6b;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.dropdown-item .item-arrow {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    opacity: 0.4;
    transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1), transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.dropdown-item:hover .item-arrow {
    opacity: 1;
    transform: translateY(-50%) translateX(4px);
}

.view-all-link {
    display: block;
    text-align: center;
    margin-top: 20px;
    padding: 16px 0 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 15px;
    line-height: 1.5;
    background: linear-gradient(270deg, #9929EA 0%, #5808FB 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    transition: all 0.25s ease;
    border-top: 1px solid #ebebeb;
}

.view-all-link:hover {
    opacity: 0.7;
    letter-spacing: 0.3px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 30px;
}

.search-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
}

.search-btn svg {
    color: #181818;
}

.btn-shop {
    width: 73px;
    height: 31px;
    background: linear-gradient(111.326deg, #FF5555 1.147%, #6025F5 100%), linear-gradient(270deg, #9929EA 0%, #5808FB 100%);
    border: none;
    border-radius: 6px;
    color: #F0F0F0;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.btn-shop:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.btn-login {
    width: 73px;
    height: 31px;
    background: transparent;
    border: 1px solid #9929EA;
    border-radius: 6px;
    background: linear-gradient(270deg, #9929EA 0%, #5808FB 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.btn-login:hover {
    background: linear-gradient(270deg, #9929EA 0%, #5808FB 100%);
    -webkit-text-fill-color: #F0F0F0;
    border-color: transparent;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
}

@media (max-width: 1024px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        gap: 0;
        padding: 0;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transition: max-height 0.3s ease-in-out, opacity 0.3s ease, visibility 0.3s ease;
        z-index: 999;
        -webkit-overflow-scrolling: touch;
    }
    
    .nav-menu.active {
        max-height: 80vh;
        opacity: 1;
        visibility: visible;
        padding: 20px;
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-menu a {
        display: block;
        padding: 16px 12px;
        font-size: 16px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .nav-actions {
        gap: 8px;
    }
    
    /* Mobile Dropdown Styles */
    .dropdown-menu {
        position: static;
        transform: none;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
        box-shadow: none;
        border-radius: 16px;
        border: none;
        padding: 0;
        margin-top: 12px;
        background: #f7f6fa;
    }
    
    .dropdown-menu::before,
    .dropdown-menu::after {
        display: none;
    }
    
    .nav-menu .has-dropdown.active .dropdown-menu {
        max-height: 900px;
        padding: 16px 0;
    }
    
    .products-dropdown {
        width: 100%;
        min-width: auto;
        padding: 0;
    }
    
    .dropdown-content {
        padding: 0 16px;
    }
    
    .dropdown-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 0;
    }
    
    .dropdown-item {
        padding: 16px 18px;
        border-radius: 16px;
        min-height: auto;
    }
    
    .dropdown-item .item-icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }
    
    .dropdown-item .item-info h4 {
        font-size: 16px;
    }
    
    .dropdown-item .item-info p {
        font-size: 13px;
        -webkit-line-clamp: 1;
    }
    
    .dropdown-item .item-arrow {
        width: 20px;
        height: 20px;
        right: 16px;
    }
    
    .view-all-link {
        margin-top: 16px;
        padding: 12px 0 0;
        font-size: 14px;
    }
    
    .btn-login {
        width: 65px;
        height: 28px;
        font-size: 11px;
    }
    
    .search-btn {
        width: 24px;
        height: 24px;
    }
    
    .search-btn svg {
        width: 20px;
        height: 20px;
    }
}

/* Buttons */
.btn {
    padding: 12px 32px;
    border-radius: 7.5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    touch-action: manipulation;
    user-select: none;
    -webkit-user-select: none;
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(270deg, var(--gradient-end), var(--gradient-start));
    color: var(--white);
    box-shadow: 0 4px 20px rgba(88, 8, 251, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(88, 8, 251, 0.4);
}

.btn-gradient {
    background: linear-gradient(117.33deg, #35ffd0 0%, #20bdff 48.997%, #866eff 98.471%);
    color: var(--white);
    box-shadow: 0 24px 36px rgba(84, 167, 255, 0.3);
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 28px 40px rgba(84, 167, 255, 0.4);
}

.btn-outline {
    background: linear-gradient(270deg, rgba(153, 41, 234, 0.05), rgba(88, 8, 251, 0.05));
    border: 1px solid var(--gradient-end);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: linear-gradient(270deg, rgba(153, 41, 234, 0.1), rgba(88, 8, 251, 0.1));
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background: linear-gradient(180deg, rgba(244, 240, 255, 0.3) 0%, transparent 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-light);
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
    font-size: 21px;
    font-weight: 500;
    color: var(--text-secondary);
}

.hero-title {
    font-size: 44px;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 32px;
}

.hero-features {
    list-style: none;
    margin-bottom: 32px;
}

.hero-features li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.hero-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
}

.platform-support {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
    font-size: 15px;
    color: var(--text-secondary);
}

.platform-icons {
    display: flex;
    gap: 12px;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    opacity: 0.7;
}

.hero-pagination {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}

.dot {
    width: 36px;
    height: 9px;
    background: #600cf9;
    opacity: 0.15;
    border-radius: 75px;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    opacity: 1;
}

@media (max-width: 768px) {
    .hero {
        padding: 40px 0;
        min-height: auto;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 28px;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 15px;
    }
    
    .hero-image img {
        max-width: 100%;
        height: auto;
    }
}

/* Products Section */
.products {
    padding: 80px 0;
    background: #f8f9fa;
}

.products-carousel {
    position: relative;
    padding: 0 80px;
}

.products-slider {
    display: flex;
    gap: 32px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.products-slider::-webkit-scrollbar {
    display: none;
}

.product-card-new {
    flex: 0 0 calc(33.333% - 22px);
    min-width: 380px;
    background: var(--white);
    border-radius: 24px;
    padding: 40px 32px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.product-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    opacity: 0.08;
    z-index: 0;
    border-radius: 24px 24px 0 0;
}

.product-pink::before {
    background: linear-gradient(135deg, #ff6b9d 0%, #ffa8c5 100%);
}

.product-green::before {
    background: linear-gradient(135deg, #4ade80 0%, #86efac 100%);
}

.product-cyan::before {
    background: linear-gradient(135deg, #06b6d4 0%, #67e8f9 100%);
}

.product-card-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.product-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.product-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
}

.product-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-name {
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
}

.product-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

.product-description {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

.product-visual {
    background: #f3f4f6;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    position: relative;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-feature-badge {
    position: absolute;
    top: 24px;
    left: 24px;
    background: white;
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 180px;
}

.badge-logo {
    width: 100px;
    height: auto;
    margin-bottom: 8px;
}

.badge-text {
    font-size: 11px;
    line-height: 1.4;
    color: var(--text-primary);
    font-weight: 600;
}

.product-unlock-badge {
    position: absolute;
    top: 24px;
    left: 24px;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 200px;
    text-align: center;
}

.unlock-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.4;
    margin-bottom: 16px;
}

.unlock-title span {
    font-weight: 400;
}

.unlock-icons {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 12px;
}

.unlock-icon-item {
    width: 48px;
    height: 48px;
    background: #f0fdf4;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
}

.unlock-icon-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.unlock-features {
    font-size: 11px;
    color: var(--text-secondary);
}

.product-erase-badge {
    position: absolute;
    top: 24px;
    left: 24px;
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 200px;
}

.erase-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.4;
    margin-bottom: 16px;
}

.erase-features {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
}

.erase-features li {
    font-size: 13px;
    color: var(--text-secondary);
    padding: 4px 0;
}

.erase-check {
    width: 40px;
    height: 40px;
    background: #dcfce7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #16a34a;
    margin: 0 auto;
}

.product-screenshot {
    max-width: 280px;
    height: auto;
    margin-left: auto;
    display: block;
}

.btn-try-now {
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: var(--text-primary);
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
}

.btn-try-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(251, 191, 36, 0.4);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.carousel-btn:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.carousel-btn.prev {
    left: 20px;
}

.carousel-btn.next {
    right: 20px;
}

.carousel-btn svg {
    display: block;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.carousel-dot {
    width: 40px;
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
}

.carousel-dot:hover {
    background: #d1d5db;
}

.carousel-dot.active:hover {
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
}

@media (max-width: 1200px) {
    .product-card-new {
        flex: 0 0 calc(50% - 16px);
    }
}

@media (max-width: 768px) {
    .products-carousel {
        padding: 0 20px;
    }
    
    .product-card-new {
        flex: 0 0 100%;
        min-width: 100%;
    }
    
    .carousel-btn {
        display: none;
    }
    
    .product-screenshot {
        max-width: 200px;
    }
}

.product-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.product-header img {
    border-radius: 5px;
}

.product-header h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
}

.product-desc {
    font-size: 16px;
    color: var(--text-secondary);
    opacity: 0.7;
    margin-bottom: 16px;
}

.product-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.product-link:hover {
    gap: 12px;
}

.product-link::after {
    content: '→';
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.carousel-btn:hover {
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: -80px;
}

.carousel-btn.next {
    right: -80px;
}

.carousel-counter {
    text-align: center;
    margin-top: 32px;
    font-size: 27px;
    font-weight: 600;
    color: var(--text-primary);
}

@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .carousel-btn.prev {
        left: -40px;
    }
    
    .carousel-btn.next {
        right: -40px;
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .carousel-btn {
        display: none;
    }
}

/* Video Section */
.video-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.video-section h2 {
    font-size: 40px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 48px;
    color: var(--text-primary);
}

.video-wrapper {
    position: relative;
    border-radius: 36px;
    overflow: hidden;
    margin-bottom: 60px;
    max-width: 1065px;
    margin-left: auto;
    margin-right: auto;
}

.video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.video-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.stats {
    display: flex;
    justify-content: center;
    gap: 120px;
    position: relative;
}

.stats::before,
.stats::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 1.5px;
    height: 45px;
    background: var(--text-primary);
    opacity: 0.4;
    border-radius: 36px;
}

.stats::before {
    left: 33%;
}

.stats::after {
    right: 33%;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 48px;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.stat-item p {
    font-size: 24px;
    font-weight: 500;
    color: var(--text-primary);
    opacity: 0.4;
}

@media (max-width: 768px) {
    .stats {
        flex-direction: column;
        gap: 40px;
    }
    
    .stats::before,
    .stats::after {
        display: none;
    }
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--bg-light);
    border-radius: var(--border-radius);
    padding: 32px;
}

.testimonial-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.testimonial-header img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-header h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
}

.rating {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
    justify-content: center;
}

.star {
    width: 20px;
    height: 20px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23e5e7eb"><path d="M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z"/></svg>') no-repeat center;
    background-size: contain;
}

.star.filled {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23fbbf24"><path d="M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z"/></svg>') no-repeat center;
    background-size: contain;
}

.testimonial-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
    text-align: center;
}

@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials .carousel-btn {
        display: none;
    }
}

.rating {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.star {
    width: 32px;
    height: 32px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%239894a3" stroke-width="2"><path d="M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z"/></svg>');
    background-size: contain;
}

.star.filled {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%235b36a2"><path d="M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z"/></svg>');
}

.testimonial-card p {
    font-size: 18px;
    line-height: 1.5;
    color: var(--text-secondary);
}

@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.faq-section h2 {
    font-size: 40px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-primary);
}

.faq-layout {
    display: grid;
    grid-template-columns: 480px 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.faq-image img {
    width: 100%;
    height: auto;
    border-radius: 42px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.faq-item {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
}

.faq-header {
    padding: 24px 56px;
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    position: relative;
}

.faq-header h3 {
    flex: 1;
    font-size: 27px;
    font-weight: 600;
    color: var(--text-primary);
}

.faq-toggle {
    width: 24px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
}

.faq-toggle::before,
.faq-toggle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--text-primary);
    transition: var(--transition);
}

.faq-toggle::before {
    width: 24px;
    height: 3px;
}

.faq-toggle::after {
    width: 3px;
    height: 24px;
}

.faq-item.active .faq-toggle::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 56px;
}

.faq-item.active .faq-content {
    max-height: 1000px;
    padding: 0 56px 24px;
}

.faq-content::before {
    content: '';
    display: block;
    height: 1px;
    background: var(--text-light);
    margin-bottom: 24px;
}

.faq-content ul {
    list-style: none;
}

.faq-content li {
    padding: 8px 0;
    font-size: 18px;
    color: var(--white);
}

.faq-item.active {
    background: linear-gradient(135deg, #9f6df2, #9f6df2);
}

.faq-item.active .faq-header h3,
.faq-item.active .faq-content li {
    color: var(--white);
}

.faq-item.active .faq-toggle::before,
.faq-item.active .faq-toggle::after {
    background: var(--white);
}

.scroll-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-4px);
}

@media (max-width: 1024px) {
    .faq-layout {
        grid-template-columns: 1fr;
    }
    
    .faq-image {
        max-width: 480px;
        margin: 0 auto;
    }
}

/* CTA Banner */
.cta-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, #4fc3d0, #20bdff);
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
    margin: 0;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('images/banner-pattern.svg') center/cover;
    opacity: 0.3;
    pointer-events: none;
}

.cta-banner .container {
    position: relative;
    z-index: 1;
}

.cta-banner h2 {
    font-size: 36px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.cta-banner p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: var(--white);
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 242px 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand img {
    width: 100%;
    height: auto;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--white);
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 14px;
}

.footer-column a {
    color: var(--white);
    opacity: 0.4;
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-column a:hover {
    opacity: 1;
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.social-links a {
    opacity: 1;
}

.newsletter h4 {
    font-size: 14.25px;
    font-weight: 700;
    margin-bottom: 16px;
}

.newsletter-form {
    display: flex;
    gap: 9px;
}

.newsletter-form input {
    flex: 1;
    background: #1a1c29;
    border: none;
    border-radius: 3px;
    padding: 8px 12px;
    color: var(--white);
    font-size: 12px;
}

.newsletter-form input::placeholder {
    color: var(--white);
    opacity: 0.6;
}

.newsletter-form button {
    background: rgba(239, 239, 239, 0.1);
    border: none;
    border-radius: 3px;
    padding: 8px 16px;
    color: var(--white);
    font-size: 12px;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: rgba(239, 239, 239, 0.2);
}

.footer-bottom {
    text-align: center;
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
}

.payment-methods img {
    height: 36px;
    width: auto;
}

.copyright {
    font-size: 12px;
    opacity: 0.6;
    color: var(--white);
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .payment-methods {
        flex-wrap: wrap;
    }
}

/* Products Store Page */
.products-store {
    padding: 80px 0;
}

.products-store h2 {
    font-size: 40px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-primary);
}

.products-grid-full {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 28px;
}

.product-card-detail {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.product-card-detail:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.product-pricing {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.price-current {
    font-size: 40px;
    font-weight: 600;
    color: var(--text-primary);
}

.price-original {
    font-size: 20px;
    color: var(--text-secondary);
    opacity: 0.5;
    text-decoration: line-through;
}

.product-download {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    font-size: 14px;
    color: var(--text-secondary);
}

.product-actions {
    display: flex;
    gap: 16px;
}

.product-actions .btn {
    flex: 1;
}

@media (max-width: 1024px) {
    .products-grid-full {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .products-grid-full {
        grid-template-columns: 1fr;
    }
}

/* Sales FAQ Section */
.sales-faq {
    padding: 80px 0;
    background: var(--bg-light);
}

.sales-faq h2 {
    font-size: 40px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-primary);
}

.sales-faq .faq-list {
    max-width: 1065px;
    margin: 0 auto;
}

.faq-icon {
    width: 28px;
    height: 28px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
}

/* Responsive Typography */
@media (max-width: 768px) {
    h1,
    .hero-title {
        font-size: 32px !important;
    }
    
    h2 {
        font-size: 28px !important;
    }
    
    h3 {
        font-size: 20px !important;
    }
    
    .btn {
        padding: 10px 24px;
        font-size: 14px;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-1 {
    margin-top: 8px;
}

.mt-2 {
    margin-top: 16px;
}

.mt-3 {
    margin-top: 24px;
}

.mb-1 {
    margin-bottom: 8px;
}

.mb-2 {
    margin-bottom: 16px;
}

.mb-3 {
    margin-bottom: 24px;
}

/* ===================================
   New Homepage Design Styles
   =================================== */

/* Hero New Section */
.hero-new {
    position: relative;
    /* background: #f2f3f6; */
    padding: 0;
    height: 71vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: linear-gradient(122deg, rgba(245, 228, 255, 1) 3.88%, rgba(249, 255, 238, 1) 49.62%, rgba(206, 221, 255, 1) 100.96%);
    opacity: 0.4; */
}

.hero-content-new {
    position: relative;
    /* display: grid; */
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text-new {
    max-width: 660px;
}
.hero-background{
	
	background-size:cover;
	background-position: center;
	background-repeat: no-repeat;
}
.hero-title-new {
    font-size: 42px;
    font-weight: 900;
    line-height: 1.125;
    background: linear-gradient(90deg, #9400d3, #4b0082);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
    max-width: 660px;
}

.hero-description {
    font-size: 16px;
    line-height: 1.572;
    color: rgba(51, 51, 51, 0.9);
    margin-bottom: 20px;
	max-width: 660px;
}

.hero-quote {
    font-size: 16px;
    font-weight: 600;
    font-style: italic;
    line-height: 1.572;
    color: rgba(151, 0, 178, 0.9);
    margin-bottom: 32px;
	max-width: 660px;
}

.btn-explore {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(270deg, #9929ea, #5808fb);
    color: white;
    padding: 14px 32px;
    border-radius: 7.5px;
    font-size: 18px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.btn-explore:hover {
    transform: translateY(-2px);
}

.hero-image-new {
    position: relative;
    filter: drop-shadow(0px 8px 0px rgba(0, 0, 0, 0.05)) drop-shadow(0px 4px 28px rgba(0, 0, 0, 0.15));
}

/* Who We Are Section */
.who-we-are {
    margin: 64px 0 0;
    background: #fff;
    text-align: center;
    height: 428px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.who-we-are .container {
    max-width: 1080px;
}

.who-we-are h2 {
    font-size: 38px;
    font-weight: 600;
    line-height: 1.2;
    color: #2e2e2e;
    margin-bottom: 24px;
}

.who-we-are .section-subtitle {
    font-size: 16px;
    font-weight: 600;
    font-style: italic;
    line-height: 1.572;
    color: #2e2e2e;
    opacity: 0.8;
    margin-bottom: 40px;
}

.who-content {
    max-width: 1080px;
    margin: 0 auto;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    color: #2e2e2e;
}

.who-content p {
    margin-bottom: 16px;
}

.who-content strong {
    color: #8e01cc;
    font-weight: bold;
}

/* What We Offer Section */
.what-we-offer {
    padding: 40px 0 64px;
    background: #fff;
    height: 978px;
}

.what-we-offer h2 {
    font-size: 38px;
    font-weight: 600;
    line-height: 1.2;
    color: #2e2e2e;
    text-align: center;
    margin-bottom: 24px;
}

.what-we-offer .section-description {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    color: #2e2e2e;
    opacity: 0.8;
    text-align: center;
    max-width: 834px;
    margin: 0 auto 104px;
}

.products-grid-new {
    display: flex;
    gap: 32px;
    margin-bottom: 48px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    padding: 0 4px;
    justify-content: center;
}

.products-grid-new::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.product-card-large {
    background: #fff;
    border-radius: 22px;
    overflow: visible;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    min-width: 448px;
    max-width: 448px;
    height: 566px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    position: relative;
}

.product-card-large:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.product-image-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.product-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.product-logo {
    width: 32px;
    height: 32px;
    border-radius: 5px;
}

.product-name {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.product-subtitle {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.35;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.product-features {
    list-style: none;
    padding: 0;
    flex: 1;
}

.product-features li {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 10px;
    padding-left: 0;
}

.carousel-navigation {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.carousel-btn-round {
    width: 38px;
    height: 38px;
    background: #f4f0ff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.carousel-btn-round:hover {
    transform: scale(1.1);
}

/* Why Choose Goooch Section */
.why-choose-goooch {
    position: relative;
    padding: 0;
    overflow: hidden;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-bg {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1000px;
    height: 320px;
    background: linear-gradient(108deg, #88aaf9 0%, #9c71e0 100%);
    border-radius: 64px;
}

.why-choose-goooch .container {
    position: relative;
    text-align: center;
}

.why-choose-goooch h2 {
    font-size: 38px;
    font-weight: 600;
    line-height: 1.2;
    color: white;
    text-shadow: 0px 2px 0px rgba(0, 0, 0, 0.05);
    margin-bottom: 24px;
}

.why-description {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.8;
    color: white;
    text-shadow: 0px 2px 0px rgba(0, 0, 0, 0.05);
    max-width: 834px;
    margin: 0 auto;
}

/* Powerful Features Section */
/* Powerful Features Section */
.powerful-features {
    padding: 84px 0;
    background: #fff;
    min-height: 1152px;
}

.powerful-features h2 {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 38px;
    font-weight: 600;
    line-height: 1.2;
    color: #2e2e2e;
    text-align: center;
    margin-bottom: 127px;
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 48px;
    margin-bottom: 212px;
    position: relative;
}

.feature-row:last-child {
    margin-bottom: 0;
}

.feature-row.reverse {
    flex-direction: row-reverse;
}

.feature-content {
    flex: 1;
    max-width:62%;
    /* max-width: 580px; */
}

.feature-content h3 {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 41px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #2e2e2e;
    opacity: 0.8;
    margin-bottom: 0;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.feature-list li .bullet {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 900;
    flex-shrink: 0;
}

.feature-image {
    flex: 1;
    max-width: 492px;
    height: 324px;
    position: relative;
    overflow: visible;
}

/* Feature 1: Location Changer Styles */
.feature-row:first-child .feature-image {
    background: none;
    padding: 0;
}

.feature-bg-gradient {
    position: absolute;
    top: 24px;
    right: 0;
    width: 492px;
    height: 324px;
    background: linear-gradient(135deg, rgba(251, 237, 150, 0.3) 0%, rgba(171, 236, 214, 0.3) 100%);
    border-radius: 12px;
}

.feature-image .main-image {
    position: absolute;
    bottom: -9px;
    right: -83px;
    width: 630px;
    height: 343px;
    object-fit: contain;
    z-index: 2;
}

.feature-image .feature-icon {
    position: absolute;
    left: 311px;
    top: 244px;
    width: 71px;
    height: 71px;
    box-shadow: 0.584px 2.334px 2.334px 0px rgba(211, 198, 252, 0.5);
    border-radius: 50%;
    z-index: 3;
}

/* Feature 2: Unlock Android Styles */
.feature-bg-unlock {
    position: absolute;
    top: 0;
    left: 0;
    width: 492px;
    height: 434px;
    background: linear-gradient(90deg, rgba(251, 237, 150, 0.3) 0%, rgba(171, 236, 214, 0.3) 100%);
    border-radius: 12px;
}

.unlock-feature {
    height: 434px !important;
}

.phone-mockup {
    position: absolute;
    left: 168px;
    top: 64px;
    width: 154px;
    height: 312px;
    background: linear-gradient(180deg, #2ec47d 0%, #b2e27e 100%);
    border: 4.62px solid #000;
    border-radius: 18.48px;
    box-shadow: 0px 0px 0px 2.31px #a8cf89;
    overflow: hidden;
    z-index: 2;
}

.phone-screen {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 80px;
}

.unlock-icon-wrapper {
    margin-bottom: 16px;
}

.unlock-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: white;
    text-align: center;
    line-height: 1.4;
    margin: 0;
}

.lock-patterns {
    position: absolute;
}

.lock-patterns .pattern-icon {
    position: absolute;
    left: 52px;
    top: 28px;
    width: 72px;
    height: 72px;
    opacity: 0.8;
}

.lock-patterns .fingerprint-icon {
    position: absolute;
    left: 347px;
    top: 179px;
    width: 82px;
    height: 82px;
    background: linear-gradient(180deg, #2ec47d 0%, #b2e27e 100%);
    border-radius: 50%;
    padding: 11px;
    box-shadow: 0 4px 12px rgba(46, 196, 125, 0.3);
}

.lock-patterns .pin-icon {
    position: absolute;
    right: 92px;
    top: 16px;
    width: 79px;
    height: 79px;
}

/* Empowering Freedom Section */
.empowering-freedom {
    padding: 60px 0 0;
    background: #f2ebff;
    height: 633px;
}

.empowering-freedom h2 {
    font-size: 38px;
    font-weight: 600;
    line-height: 1.2;
    color: #2e2e2e;
    text-align: center;
    margin-bottom: 40px;
}

.empowering-freedom .section-description {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    color: #2e2e2e;
    opacity: 0.9;
    text-align: center;
    max-width: 834px;
    margin: 0 auto 129px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 84px;
    max-width: 1300px;
    margin: 0 auto;
}

.stat-card {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 600;
    color: #4b0082;
    margin-bottom: 16px;
    line-height: normal;
}

.stat-label {
    font-size: 24px;
    font-weight: 500;
    color: #4b0082;
    margin-bottom: 24px;
    line-height: normal;
}

.stat-description {
    font-size: 16px;
    line-height: 1.4;
    color: #333;
    opacity: 0.6;
}

/* Testimonials New Section */
.testimonials-new {
    padding: 56px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
    height: 640px;
}

.testimonials-new h2 {
    font-size: 38px;
    font-weight: 600;
    line-height: 1.2;
    color: #2e2e2e;
    text-align: center;
    margin-bottom: 126px;
}

.testimonials-grid-new {
    display: flex;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    /* padding: 0 60px; */
    padding: 0 3%;
}

.testimonials-grid-new::-webkit-scrollbar {
    display: none;
}

.testimonial-card-new {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    min-width: 360px;
    max-width: 360px;
    flex-shrink: 0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.testimonial-card-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.65;
    color: #555;
    margin-bottom: 28px;
    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-author img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.author-info h3 {
    font-size: 18px;
    font-weight: 600;
    color: #2e2e2e;
    margin-bottom: 8px;
}

.rating {
    display: flex;
    gap: 3px;
}

.star {
    width: 16px;
    height: 16px;
    background: #ddd;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.star.filled {
    background: linear-gradient(135deg, #ffd700 0%, #ffa500 100%);
}

.carousel-btn-left,
.carousel-btn-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(153, 41, 234, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(4px);
}

.carousel-btn-left {
    left: 0;
}

.carousel-btn-right {
    right: 0;
}

.carousel-btn-left:hover,
.carousel-btn-right:hover {
    background: rgba(153, 41, 234, 1);
    transform: translateY(-50%) scale(1.08);
}

.carousel-btn-left:active,
.carousel-btn-right:active {
    transform: translateY(-50%) scale(0.95);
}

/* FAQ New Section */
.faq-section-new {
    padding: 40px 0 64px;
    background: #fff;
    position: relative;
    min-height: 600px;
}

.faq-subtitle {
    font-size: 16px;
    font-weight: 600;
    font-style: italic;
    line-height: 1.572;
    color: #2e2e2e;
    opacity: 0.8;
    text-align: center;
    margin-bottom: 24px;
}

.faq-section-new h2 {
    font-size: 40px;
    font-weight: 600;
    color: #2e2e2e;
    text-align: center;
    margin-bottom: 32px;
    line-height: normal;
}

.faq-description {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.5;
    color: #2e2e2e;
    opacity: 0.9;
    text-align: center;
    max-width: 712px;
    margin: 0 auto 68px;
}

.faq-columns {
    display: grid;
    grid-template-columns: repeat(2, 558px);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto 40px;
    justify-content: center;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.faq-item-new {
    background: #f5f3f9;
    border-radius: 5px;
    overflow: hidden;
    transition: background 0.3s ease;
    min-height: 78px;
}

.faq-item-new.active {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    background: none;
    border: none;
    font-size: 18px;
    font-weight: 600;
    color: #1b1139;
    opacity: 0.88;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 78px;
    line-height: 1.3;
}

.faq-question:hover {
    background: rgba(0, 0, 0, 0.02);
}

.faq-question svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item-new.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 24px;
}

.faq-item-new.active .faq-answer {
    max-height: 500px;
    padding: 0 24px 24px 24px;
}

.faq-answer p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

.scroll-to-top-new {
    position: fixed;
    right: 30px;
    bottom: 100px;
    width: 48px;
    height: 48px;
    background: none;
    border: none;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
    z-index: 1000;
}

.scroll-to-top-new.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top-new:hover {
    transform: translateY(-5px) scale(1.05);
}

.scroll-to-top-new:active {
    transform: translateY(-3px) scale(0.98);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .hero-content-new {
        grid-template-columns: 1fr;
        /* text-align: center; */
    }
    
    .hero-text-new {
        max-width: 100%;
    }
    
    .products-grid-new {
        grid-template-columns: 1fr;
    }
    
    .feature-row {
        grid-template-columns: 1fr;
    }
    
    .feature-row.reverse {
        direction: ltr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .testimonials-grid-new {
        grid-template-columns: 1fr;
    }
    
    .faq-columns {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title-new {
        font-size: 32px;
    }
    
    .what-we-offer h2,
    .why-choose-goooch h2,
    .powerful-features h2,
    .empowering-freedom h2,
    .testimonials-new h2 {
        font-size: 28px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .stat-label {
        font-size: 20px;
    }
    
    .carousel-btn-left,
    .carousel-btn-right {
        width: 48px;
        height: 48px;
    }
}

/* ==================== Product Page Styles ==================== */

/* Products Hero Section */
/* Product Page Hero Section */
.product-hero {
    background: linear-gradient(135deg, #f5f3f9 0%, #f2ebff 100%);
    padding: 60px 0;
    min-height: 700px;
    display: flex;
    align-items: center;
}

.product-hero-wrapper {
    position: relative;
    width: 100%;
}

.hero-carousel-container {
    width: 100%;
    position: relative;
    min-height: 580px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), 
                visibility 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    margin: 0;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
    pointer-events: auto;
    /* transform: translateX(0); */
}

.product-hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 1;
}

.product-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    background: none;
    padding: 0;
    border-radius: 0;
}

.product-hero .badge-icon {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.product-hero .hero-badge span {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 21px;
    font-weight: 500;
    color: #2c3855;
}

.product-hero .hero-title-gradient {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 44px;
    font-weight: 900;
    line-height: 1.125;
    color: #5b36a2;
    margin-bottom: 24px;
}

.product-hero .hero-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.product-hero .hero-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.6;
}

.product-hero .feature-dot {
    width: 8px;
    height: 8px;
    background: #5b36a2;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 7px;
}

.product-hero .hero-feature-list p {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.572;
    color: rgba(51, 51, 51, 0.9);
    margin: 0;
}

.product-hero .hero-feature-list strong {
    font-weight: 700;
    color: #5b36a2;
}

.product-hero .btn-try-now {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: 154.5px;
    height: 51px;
    background: linear-gradient(135deg, #9929ea 0%, #5808fb 100%);
    color: white;
    border: none;
    border-radius: 7.5px;
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

.product-hero .btn-try-now::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 ease;
}

.product-hero .btn-try-now:hover::before {
    left: 100%;
}

.product-hero .btn-try-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(88, 8, 251, 0.4);
}

.product-hero .btn-try-now:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(88, 8, 251, 0.3);
}

.product-hero .btn-try-now svg {
    width: 18px;
    height: 18px;
}

.product-hero .platform-availability {
    display: flex;
    align-items: center;
    gap: 16px;
}

.product-hero .availability-label {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #333;
}

.product-hero .platform-icons-list {
    display: flex;
    align-items: center;
    gap: 30px;
}

.product-hero .platform-icons-list img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.product-hero-image {
    flex: 0 0 658px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-hero-image > img {
    width: 658px;
    height: 500px;
    object-fit: contain;
    opacity: 0.7;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.hero-slide.active .product-hero-image > img {
    animation: slideImageIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes slideImageIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 0.7;
        transform: translateX(0);
    }
}

.hero-floating-badge {
    position: absolute;
    bottom: 35px;
    right: 35px;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #9929ea 0%, #5808fb 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(88, 8, 251, 0.4);
    z-index: 2;
    transition: transform 0.3s ease;
}

.hero-floating-badge:hover {
    transform: scale(1.1) rotate(5deg);
}

.hero-slide.active .hero-floating-badge {
    animation: floatBadge 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
}

@keyframes floatBadge {
    from {
        opacity: 0;
        transform: scale(0.5) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.hero-floating-badge span {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: white;
}

.hero-carousel-dots {
    position: relative;
    display: flex;
    gap: 12px;
    margin-top: 40px;
    justify-content: center;
}

.hero-carousel-dots .dot {
    width: 36px;
    height: 9px;
    background: #600cf9;
    opacity: 0.15;
    border-radius: 75px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.hero-carousel-dots .dot::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #600cf9;
    transition: width 0.3s ease;
}

.hero-carousel-dots .dot:hover {
    opacity: 0.35;
    transform: scaleY(1.2);
}

.hero-carousel-dots .dot.active {
    background: #600cf9;
    opacity: 1;
    transform: scaleX(1.15);
}

/* Products Store Section */
.products-store {
    padding: 100px 0;
    background: #fdfdfd;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header h2 {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 40px;
    font-weight: 600;
    line-height: 1.2;
    color: #2e2e2e;
    margin-bottom: 16px;
}

.section-header .section-subtitle {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(51, 51, 51, 0.75);
    max-width: 700px;
    margin: 0 auto;
}

.products-grid-full {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 32px;
}

.product-card-detail {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-card-detail:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(88, 8, 251, 0.15);
}

.product-card-detail .product-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #f5f3f9 0%, #e8e3ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-card-detail .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card-detail .product-info {
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}

.product-card-detail .product-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.product-card-detail .product-header img {
    width: 28px;
    height: 28px;
    border-radius: 6px;
}

.product-card-detail .product-header h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2e2e2e;
    margin: 0;
}

.product-card-detail .product-desc {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(46, 46, 46, 0.75);
    margin: 0;
    min-height: 48px;
}

.product-card-detail .product-pricing {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.product-card-detail .price-current {
    font-size: 28px;
    font-weight: 700;
    color: #4b0082;
}

.product-card-detail .price-original {
    font-size: 18px;
    font-weight: 400;
    color: rgba(46, 46, 46, 0.4);
    text-decoration: line-through;
}

.product-card-detail .product-download {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.product-card-detail .product-download span {
    font-size: 14px;
    color: rgba(46, 46, 46, 0.6);
    font-weight: 500;
}

.product-card-detail .platform-icons {
    display: flex;
    gap: 8px;
}

.product-card-detail .platform-icons img {
    width: 18px;
    height: 18px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.product-card-detail .platform-icons img:hover {
    opacity: 1;
}

.product-card-detail .product-actions {
    display: flex;
    gap: 12px;
    margin-top: auto;
}

.product-card-detail .btn {
    flex: 1;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
}

.product-card-detail .btn-gradient {
    background: linear-gradient(270deg, #9929EA 0%, #5808FB 100%);
    color: white;
}

.product-card-detail .btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(88, 8, 251, 0.3);
}

.product-card-detail .btn-outline {
    background: transparent;
    border: 1.5px solid #9929EA;
    color: #9929EA;
}

.product-card-detail .btn-outline:hover {
    background: linear-gradient(270deg, #9929EA 0%, #5808FB 100%);
    color: white;
    border-color: transparent;
}

/* Sales FAQ Section */
.sales-faq {
    padding: 100px 0;
    background: #f5f3f9;
    position: relative;
}

.sales-faq .section-header {
    margin-bottom: 48px;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.faq-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 28px;
    cursor: pointer;
    user-select: none;
}

.faq-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #9929EA 0%, #5808FB 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.faq-header h3 {
    flex: 1;
    font-size: 18px;
    font-weight: 600;
    color: #2e2e2e;
    margin: 0;
}

.faq-toggle {
    width: 24px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
}

.faq-toggle::before,
.faq-toggle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 2px;
    background: #9929EA;
    transition: transform 0.3s ease;
}

.faq-toggle::before {
    transform: translate(-50%, -50%);
}

.faq-toggle::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.active .faq-toggle::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-content {
    max-height: 500px;
    padding: 0 28px 24px 80px;
}

.faq-content p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(46, 46, 46, 0.75);
    margin: 0;
}

/* Responsive Styles for Product Page */
@media (max-width: 1200px) {
    .products-grid-full {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
        gap: 24px;
    }
    
    .hero-stats {
        gap: 48px;
    }
}

@media (max-width: 768px) {
	.hero-description{
		max-width: 65%;
	}
	.product-card-large{
		height: auto;
	}
	.what-we-offer{
		height: auto;
	}
	.products-grid-new{
		margin-bottom: 0;
	}
	.hero-new{
		max-height: 65vh;
	}
    .product-hero {
        padding: 40px 0;
        min-height: auto;
    }
    
    .product-hero-wrapper {
        flex-direction: column;
        gap: 30px;
    }
    
    .hero-carousel-container {
        min-height: auto;
    }
    
    .hero-slide {
        position: relative;
        flex-direction: column;
        gap: 30px;
    }
    
    .hero-slide.active {
        position: relative;
    }
    
    .product-hero-content {
        max-width: 100%;
        text-align: center;
    }
    
    .product-hero .hero-badge {
        justify-content: center;
    }
    
    .product-hero .hero-title-gradient {
        font-size: 32px;
    }
    
    .product-hero .hero-feature-list {
        text-align: left;
    }
    
    .hero-feature-list li {
        gap: 10px;
    }
    
    .hero-feature-list p {
        font-size: 14px;
    }
    
    .platform-availability {
        justify-content: center;
        flex-direction: column;
        gap: 12px;
    }
    
    .platform-icons-list {
        gap: 20px;
    }
    
    .product-hero-image {
        flex: 0 0 auto;
        width: 100%;
    }
    
    .product-hero-image > img {
        width: 100%;
        height: auto;
        max-width: 400px;
    }
    
    .hero-floating-badge {
        width: 50px;
        height: 50px;
    }
    
    .hero-floating-badge span {
        font-size: 16px;
    }
    
    .hero-carousel-dots {
        justify-content: center;
        margin-top: 30px;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .section-header .section-subtitle {
        font-size: 16px;
    }
    
    .products-grid-full {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .products-store,
    .sales-faq {
        padding: 60px 0;
    }
    
    .faq-item.active .faq-content {
        padding: 0 20px 20px 64px;
    }
    
    /* Additional Homepage Sections */
    .hero {
        min-height: 500px;
        padding: 60px 0 40px;
    }
    
    .hero-content h1 {
        font-size: 28px;
        line-height: 1.2;
        margin-bottom: 16px;
    }
    
    .hero-content p {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .hero-cta .btn-primary {
        width: 100%;
        justify-content: center;
    }
    
    .hero-image {
        margin-top: 32px;
    }
    
    .who-we-are {
        min-height: auto;
        margin: 60px 0;
    }
    
    .who-we-are h2 {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .who-we-are .description {
        font-size: 15px;
        padding: 0 16px;
    }
    
    .who-we-are .highlight {
        font-size: 14px;
    }
    
    .what-we-offer {
        min-height: auto;
        padding: 60px 0;
    }
    
    .what-we-offer h2 {
        font-size: 28px;
    }
    
    .what-we-offer .section-subtitle {
        font-size: 15px;
        padding: 0 16px;
    }
    
    .products-showcase {
        padding: 0 16px;
    }
    
    .product-card {
        max-width: 100%;
    }
    
    .product-card h3 {
        font-size: 18px;
    }
    
    .product-card .product-description {
        font-size: 14px;
    }
    
    .why-choose {
        min-height: auto;
        padding: 60px 0;
    }
    
    .why-choose h2 {
        font-size: 28px;
    }
    
    .why-choose p {
        font-size: 15px;
        padding: 0 16px;
    }
    
    /* Powerful Features Section */
    .powerful-features {
        min-height: auto;
        padding: 60px 0;
    }
    
    .powerful-features h2 {
        font-size: 28px;
        margin-bottom: 48px;
    }
    
    .feature-row {
        flex-direction: column;
        gap: 32px;
        margin-bottom: 60px;
    }
    
    .feature-row.reverse {
        flex-direction: column;
    }
    
    .feature-content {
        max-width: 100%;
        padding: 0 16px;
    }
    
    .feature-content h3 {
        font-size: 22px;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .feature-list li {
        font-size: 14px;
    }
    
    .feature-image {
        max-width: 100%;
        height: auto;
        padding: 0 16px;
    }
    
    .feature-bg-gradient,
    .feature-bg-unlock {
        width: 100%;
        height: 250px;
    }
    
    .feature-image .main-image {
        width: 100%;
        height: auto;
        position: relative;
        right: 0;
        bottom: 0;
    }
    
    .phone-mockup {
        transform: scale(0.8);
        left: 50%;
        margin-left: -77px;
    }
    
    .lock-patterns .pattern-icon,
    .lock-patterns .fingerprint-icon,
    .lock-patterns .pin-icon {
        transform: scale(0.7);
    }
    
    /* Empowering Freedom Section */
    .empowering-freedom {
        min-height: auto;
        padding: 60px 0;
		height: auto;
    }
    
    .empowering-freedom h2 {
        font-size: 28px;
    }
    
    .empowering-freedom .section-description {
        font-size: 15px;
        padding: 0 16px;
        margin-bottom: 48px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 48px;
        padding: 0 16px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .stat-label {
        font-size: 20px;
    }
    
    .stat-description {
        font-size: 14px;
    }
    
    /* Testimonials Section */
    .testimonials-new {
        min-height: auto;
        padding: 60px 0;
        height: auto;
    }
    
    .testimonials-new h2 {
        font-size: 28px;
        margin-bottom: 48px;
    }
    
    .testimonials-grid-new {
        flex-direction: column;
        gap: 20px;
        padding: 0 16px;
        overflow-x: visible;
    }
    
    .testimonial-card-new {
        width: 100%;
        min-width: 100%;
        max-width: 100%;
    }
    
    .testimonial-text {
        font-size: 14px;
    }
    
    .carousel-btn-left,
    .carousel-btn-right {
        width: 48px;
        height: 48px;
        display: none;
    }
    
    /* FAQ Section */
    .faq-section {
        min-height: auto;
        padding: 60px 0;
    }
    
    .faq-section h2 {
        font-size: 28px;
    }
    
    .faq-subtitle {
        font-size: 14px;
    }
    
    .faq-description {
        font-size: 15px;
        padding: 0 16px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 0 16px;
    }
    
    .faq-card {
        padding: 16px;
    }
    
    .faq-question {
        font-size: 16px;
    }
    
    /* Footer */
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 32px;
    }
    
    .footer-brand img {
        width: 180px;
        height: auto;
    }
    
    .footer-links {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    
    .footer-column h4 {
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    .footer-column ul li {
        margin-bottom: 8px;
    }
    
    .footer-column a {
        font-size: 13px;
    }
    
    .social-links {
        gap: 16px;
    }
    
    .social-links img {
        width: 18px;
        height: 18px;
    }
    
    .newsletter h4 {
        font-size: 13px;
    }
    
    .newsletter-form input {
        font-size: 11px;
        padding: 8px 10px;
    }
    
    .newsletter-form button {
        font-size: 11px;
        padding: 8px 12px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        padding-top: 24px;
    }
    
    .payment-methods {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }
    
    .payment-methods img {
        width: 48px;
        height: auto;
    }
    
    .copyright {
        font-size: 11px;
        text-align: center;
    }
    
    /* Support Page */
    .support-hero {
        min-height: auto;
        padding: 60px 0 40px;
    }
    
    .support-hero h1 {
        font-size: 28px;
    }
    
    .support-hero p {
        font-size: 15px;
    }
    
    .support-categories {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 0 16px;
    }
    
    .guide-container {
        flex-direction: column;
    }
    
    .guide-sidebar {
        position: relative;
        width: 100%;
        max-height: none;
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
    
    .guide-sidebar-title {
        font-size: 18px;
    }
    
    .guide-nav a {
        font-size: 14px;
        padding: 10px 16px;
    }
    
    .guide-main {
        padding: 0 16px;
    }
    
    .guide-section-title {
        font-size: 24px;
    }
    
    .guide-content-detail h3 {
        font-size: 18px;
    }
    
    .guide-content-detail h4 {
        font-size: 16px;
    }
    
    /* Contact Page */
    .contact-hero {
        min-height: auto;
        padding: 60px 0 40px;
    }
    
    .contact-hero h1 {
        font-size: 28px;
    }
    
    .contact-content {
        flex-direction: column;
    }
    
    .contact-form,
    .contact-info {
        max-width: 100%;
        padding: 0 16px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 16px;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 14px;
    }
    
    /* News Page */
    .news-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 0 16px;
    }
    
    .news-card h3 {
        font-size: 18px;
    }
    
    .news-card p {
        font-size: 14px;
    }
    
    /* Product Page Carousel */
    .products-hero {
        padding: 60px 0;
    }
    
    /* Product Page Carousel */
    .products-hero {
        padding: 60px 0;
    }
    
    /* Scroll to Top Button */
    .scroll-to-top {
        width: 44px;
        height: 44px;
        right: 16px;
        bottom: 16px;
    }
    
    .scroll-to-top svg {
        width: 20px;
        height: 20px;
    }
    
    .scroll-to-top-new {
        width: 44px;
        height: 44px;
        right: 16px;
        bottom: 80px;
    }
    
    /* FAQ Section */
    .faq-section-new {
        padding: 30px 0 40px;
        min-height: auto;
    }
    
    .faq-section-new h2 {
        font-size: 28px;
        margin-bottom: 24px;
    }
    
    .faq-subtitle {
        font-size: 14px;
        margin-bottom: 16px;
    }
    
    .faq-description {
        font-size: 16px;
        padding: 0 16px;
    }
    
    /* CTA Banner */
    .cta-banner {
        padding: 50px 0;
    }
    
    .cta-banner h2 {
        font-size: 28px;
        margin-bottom: 12px;
    }
    
    .cta-banner p {
        font-size: 16px;
        margin-bottom: 24px;
        padding: 0 16px;
    }
    
    /* Search */
    .search-container input {
        font-size: 14px;
        padding: 12px 40px 12px 16px;
    }
}

/* Extra Small Devices (phones, less than 576px) */
@media (max-width: 576px) {
    .container {
        padding: 0 12px;
    }
    
    .header {
        height: 56px;
    }
    
    .nav-menu {
        top: 56px;
    }
    
    .hero {
        padding: 32px 0;
        min-height: auto;
    }
    
    .hero-content h1,
    .hero-title {
        font-size: 24px;
        line-height: 1.3;
    }
    
    .powerful-features h2,
    .empowering-freedom h2,
    .testimonials-new h2,
    .faq-section h2,
    .what-we-offer h2,
    .who-we-are h2,
    .why-choose h2 {
        font-size: 24px;
        line-height: 1.3;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .feature-content h3 {
        font-size: 20px;
    }
    
    .btn {
        padding: 14px 24px;
        font-size: 15px;
        width: 100%;
        max-width: 100%;
    }
    
    .product-card-new {
        min-width: 280px;
        padding: 24px 20px;
    }
}

/* iPhone Specific Optimizations */
@media only screen and (max-width: 428px) {
    /* iPhone 14 Pro Max, 14 Plus, 13 Pro Max, 12 Pro Max */
    .header {
        height: 56px;
        position: sticky;
        top: 0;
    }
    
    .nav-menu {
        top: 56px;
    }
    
    .logo img {
        height: 28px;
        width: auto;
    }
    
    /* Fix iOS Safari input zoom */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    textarea,
    select {
        font-size: 16px !important;
    }
    
    /* Prevent horizontal scroll */
    body {
        width: 100%;
        overflow-x: hidden;
    }
    
    .container {
        width: 100%;
        max-width: 100%;
        padding: 0 16px;
    }
    
    /* Hero section */
    .hero {
        padding: 32px 0;
    }
    
    .hero-content h1 {
        font-size: 26px;
        line-height: 1.3;
        margin-bottom: 12px;
    }
    
    /* Features */
    .powerful-features h2,
    .empowering-freedom h2,
    .testimonials-new h2 {
        font-size: 26px;
        margin-bottom: 32px;
    }
    
    .feature-row {
        gap: 24px;
        margin-bottom: 40px;
    }
    
    .testimonial-card-new {
        padding: 20px 16px;
        min-width: 100%;
    }
    
    .testimonial-text {
        font-size: 15px;
        line-height: 1.6;
    }
    
    /* Buttons */
    .btn-primary,
    .btn-secondary {
        min-height: 48px;
        font-size: 16px;
    }
    
    /* Footer */
    .footer {
        padding: 32px 0 16px;
    }
    
    .footer-brand img {
        height: auto;
        max-width: 160px;
    }
}

/* Landscape mode for mobile devices */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding: 32px 0;
    }
    
    .header {
        height: 48px;
    }
    
    .powerful-features,
    .empowering-freedom,
    .testimonials-new {
        padding: 40px 0;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    /* Increase touch targets */
    .btn,
    .nav-links a,
    .btn-login,
    .search-btn {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Prevent text selection on buttons */
    button,
    .btn {
        -webkit-tap-highlight-color: transparent;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        user-select: none;
    }
    
    /* Smooth scrolling */
    html {
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }
}

/* Safe area insets for iPhone notch */
@supports (padding: max(0px)) {
    body {
        padding-top: env(safe-area-inset-top);
        padding-bottom: env(safe-area-inset-bottom);
    }
    
    .header {
        padding-left: max(16px, env(safe-area-inset-left));
        padding-right: max(16px, env(safe-area-inset-right));
        top: env(safe-area-inset-top);
    }
    
    .nav-menu {
        top: calc(64px + env(safe-area-inset-top));
    }
    
    .container {
        padding-left: max(16px, env(safe-area-inset-left));
        padding-right: max(16px, env(safe-area-inset-right));
    }
    
    .footer {
        padding-bottom: max(20px, env(safe-area-inset-bottom));
    }
}

/* iOS Safari specific fixes */
@supports (-webkit-touch-callout: none) {
    /* Fix for iOS Safari viewport units */
    .hero {
        min-height: -webkit-fill-available;
    }
    
    /* Fix position fixed elements */
    .header {
        position: -webkit-sticky;
        position: sticky;
    }
    
    /* Prevent rubber band scrolling issues */
    body {
        position: relative;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Fix input styling in iOS */
    input,
    textarea,
    select {
        -webkit-appearance: none;
        border-radius: 0;
    }
    
    input[type="submit"],
    input[type="button"],
    button {
        -webkit-appearance: none;
        border-radius: 8px;
    }
}

/* Fix for older iPhones (iPhone 6/7/8) */
@media only screen and (max-width: 375px) {
    .container {
        padding: 0 12px;
    }
    
    .hero-content h1 {
        font-size: 22px;
    }
    
    .powerful-features h2,
    .empowering-freedom h2,
    .testimonials-new h2 {
        font-size: 22px;
    }
    
    .product-card-new {
        min-width: 260px;
        padding: 20px 16px;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 14px;
    }
}

/* Fix for iPhone SE and smaller */
@media only screen and (max-width: 320px) {
    .container {
        padding: 0 10px;
    }
    
    .hero-content h1 {
        font-size: 20px;
    }
    
    .powerful-features h2,
    .empowering-freedom h2,
    .testimonials-new h2 {
        font-size: 20px;
    }
    
    .nav-actions .btn-login {
        font-size: 10px;
        padding: 6px 10px;
    }
}

/* Product Hero Responsive Styles */
@media (max-width: 1024px) {
    .product-hero {
        padding: 40px 0;
        min-height: 600px;
    }
    
    .hero-carousel-container {
        min-height: 480px;
    }
    
    .hero-slide {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .product-hero-content {
        max-width: 100%;
    }
    
    .product-hero .hero-title-gradient {
        font-size: 36px;
    }
    
    .product-hero-image {
        flex: 0 0 auto;
    }
    
    .product-hero-image > img {
        width: 100%;
        max-width: 500px;
        height: auto;
    }
}

@media (max-width: 768px) {
    .product-hero {
        padding: 30px 0;
        min-height: auto;
    }
    
    .hero-carousel-container {
        min-height: auto;
    }
    
    .hero-slide {
        gap: 24px;
        padding: 20px 0;
    }
    
    .product-hero .hero-badge {
        gap: 6px;
        margin-bottom: 12px;
    }
    
    .product-hero .badge-icon {
        width: 24px;
        height: 24px;
    }
    
    .product-hero .hero-badge span {
        font-size: 18px;
    }
    
    .product-hero .hero-title-gradient {
        font-size: 28px;
        line-height: 1.2;
        margin-bottom: 20px;
    }
    
    .product-hero .hero-feature-list {
        margin-bottom: 20px;
        gap: 12px;
    }
    
    .product-hero .hero-feature-list p {
        font-size: 14px;
    }
    
    .product-hero .btn-try-now {
        width: 150px;
        height: 46px;
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .product-hero .platform-availability {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .product-hero .platform-icons-list {
        gap: 20px;
    }
    
    .product-hero-image > img {
        max-width: 100%;
        width: 100%;
        height: auto;
    }
    
    .hero-floating-badge {
        width: 56px;
        height: 56px;
        bottom: 20px;
        right: 20px;
    }
    
    .hero-floating-badge span {
        font-size: 16px;
    }
    
    .hero-floating-badge svg {
        width: 20px;
        height: 20px;
    }
    
    .hero-carousel-dots {
        margin-top: 30px;
        gap: 8px;
    }
    
    .hero-carousel-dots .dot {
        width: 28px;
        height: 7px;
    }
    
    .products-grid-full {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .product-hero .hero-title-gradient {
        font-size: 24px;
    }
    
    .product-hero .hero-feature-list p {
        font-size: 13px;
    }
    
    .product-hero .btn-try-now {
        width: 150px;
        height: 42px;
        font-size: 15px;
    }
    
    .hero-floating-badge {
        width: 48px;
        height: 48px;
        bottom: 15px;
        right: 15px;
    }
    
    .hero-floating-badge span {
        font-size: 14px;
    }
}
