/*
Theme Name: CheapBulkSocial Static HTML Integration
Theme URI: http://cheapbulksocial.com/cheapbulksocial-static-html
Description: Static HTML integration theme
Author: CompuuutaGeek
Version: 1.0
*/

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #FFFFFF;
    background-color: #0F0F23;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Enhanced Text Visibility */
h1, h2, h3, h4, h5, h6 {
    color: #FFFFFF;
    font-weight: 700;
    text-rendering: optimizeLegibility;
}

p, span, div, a, li {
    color: #CBD5E1;
    text-rendering: optimizeLegibility;
}

strong, b {
    color: #FFFFFF;
    font-weight: 600;
}

small {
    color: #94A3B8;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Policy Page Styles */
.policy-page {
    padding: 120px 0 60px;
    min-height: 80vh;
}

.policy-header {
    text-align: center;
    margin-bottom: 60px;
}

.policy-header h1 {
    font-size: 48px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.policy-header p {
    font-size: 18px;
    color: #94A3B8;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-section {
    margin-bottom: 48px;
    padding: 32px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(102, 126, 234, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.policy-section h2 {
    font-size: 28px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(102, 126, 234, 0.3);
}

.policy-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #E5E7EB;
    margin-bottom: 16px;
}

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

.policy-section li {
    font-size: 16px;
    line-height: 1.7;
    color: #CBD5E1;
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

.policy-section li:before {
    content: "▸";
    color: #667eea;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.policy-section li strong {
    color: #FFFFFF;
    font-weight: 600;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 16px;
}

h1 {
    font-size: 64px;
    line-height: 1.2;
}

h2 {
    font-size: 40px;
}

h3 {
    font-size: 24px;
    line-height: 1.4;
}

p {
    margin-bottom: 16px;
}

.gradient-text {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Header */
.header {
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(102, 126, 234, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: all 0.3s ease;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 45px;
    height: auto;
    filter: drop-shadow(0 2px 8px rgba(102, 126, 234, 0.3));
}

.logo-text h1 {
    font-size: 28px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.logo-text .tagline {
    font-size: 14px;
    color: #9CA3AF;
    font-weight: 500;
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: #E5E7EB;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.25s ease;
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: #667eea;
    background-color: rgba(102, 126, 234, 0.1);
}

.nav-dropdown {
    position: relative;
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 8px;
}

.dropdown-trigger svg {
    transition: transform 0.25s ease;
}

.nav-dropdown:hover .dropdown-trigger svg {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(15, 15, 35, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    min-width: 600px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.25s ease;
    border: 1px solid rgba(102, 126, 234, 0.2);
    padding: 20px;
    z-index: 1000;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-section {
    display: inline-block;
    width: calc(20% - 12px);
    vertical-align: top;
    margin-right: 15px;
    margin-bottom: 10px;
}

.dropdown-section:last-child {
    margin-right: 0;
}

.dropdown-section h4 {
    color: #667eea;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(102, 126, 234, 0.3);
}

.dropdown-section a {
    display: block;
    padding: 8px 12px;
    color: #E5E7EB;
    text-decoration: none;
    font-size: 14px;
    border-radius: 6px;
    transition: all 0.25s ease;
    margin-bottom: 4px;
}

.dropdown-section a:hover {
    background-color: rgba(102, 126, 234, 0.15);
    color: #667eea;
    transform: translateX(4px);
}

/* Mobile Dropdown */
.mobile-dropdown {
    margin-bottom: 8px;
}

.mobile-dropdown-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    color: #E5E7EB;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.25s ease;
}

.mobile-dropdown-header:hover {
    background-color: rgba(102, 126, 234, 0.1);
}

.mobile-dropdown-header svg {
    transition: transform 0.25s ease;
}

.mobile-dropdown.open .mobile-dropdown-header svg {
    transform: rotate(180deg);
}

.mobile-dropdown-content {
    display: none;
    margin-left: 20px;
    margin-top: 8px;
}

.mobile-dropdown.open .mobile-dropdown-content {
    display: block;
}

.mobile-dropdown-content .nav-link {
    padding: 8px 16px;
    margin-bottom: 4px;
}

.mobile-dropdown-content .dropdown-section {
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(102, 126, 234, 0.2);
}

.mobile-dropdown-content .dropdown-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.mobile-dropdown-content .dropdown-section h5 {
    color: #667eea;
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 8px 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.admin-link {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    text-decoration: none;
    padding: 10px 12px;
    border-radius: 8px;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.admin-link:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
}

.cart-btn {
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    padding: 10px;
    border-radius: 8px;
    transition: all 0.25s ease;
    color: #E5E7EB;
}

.cart-btn:hover {
    background-color: rgba(102, 126, 234, 0.1);
    color: #667eea;
}

.cart-count {
    position: absolute;
    top: 2px;
    right: 2px;
    background: linear-gradient(135deg, #f093fb, #f5576c);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: #E5E7EB;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.25s ease;
}

.mobile-menu-btn:hover {
    background-color: rgba(102, 126, 234, 0.1);
    color: #667eea;
}

.nav-mobile {
    display: none;
    background: rgba(15, 15, 35, 0.98);
    padding: 20px 0;
    border-top: 1px solid rgba(102, 126, 234, 0.2);
}

.nav-mobile .nav-link {
    display: block;
    padding: 12px 0;
    border-radius: 0;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0F0F23 0%, #1a1a3a 50%, #2d1b69 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(102, 126, 234, 0.1) 0%, transparent 50%);
}

.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    color: rgba(102, 126, 234, 0.3);
    animation: float 6s ease-in-out infinite;
    animation-delay: var(--delay);
}

.floating-icon:nth-child(1) {
    top: 20%;
    left: 10%;
}

.floating-icon:nth-child(2) {
    top: 60%;
    right: 15%;
}

.floating-icon:nth-child(3) {
    bottom: 30%;
    left: 20%;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(5deg); }
    50% { transform: translateY(-10px) rotate(-5deg); }
    75% { transform: translateY(-30px) rotate(3deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.3);
    color: #667eea;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 32px;
    animation: pulse 2s infinite;
}

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

.hero-title {
    font-size: clamp(40px, 5vw, 72px);
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 20px;
    color: #D1D5DB;
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: #667eea;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    color: #9CA3AF;
    font-weight: 500;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 64px;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.cta-button.primary {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.5);
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.trust-indicators {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(102, 126, 234, 0.2);
    transition: all 0.3s ease;
}

.trust-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.trust-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.trust-text {
    flex: 1;
}

.trust-title {
    display: block;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 4px;
}

.trust-desc {
    font-size: 14px;
    color: #9CA3AF;
}

/* Platform Showcase */
.platforms-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a3a 0%, #2d1b69 100%);
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 48px;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 16px;
}

.section-subtitle {
    text-align: center;
    font-size: 20px;
    color: #D1D5DB;
    margin-bottom: 64px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 64px;
}

.platform-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.platform-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.platform-card:hover::before {
    opacity: 1;
}

.platform-card:hover {
    transform: translateY(-8px);
    border-color: rgba(102, 126, 234, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.platform-image {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    border-radius: 16px;
    object-fit: cover;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
}

.platform-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 12px;
}

.platform-card p {
    color: #D1D5DB;
    margin-bottom: 24px;
    line-height: 1.5;
}

.platform-stats {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid rgba(102, 126, 234, 0.2);
}

.platform-stats span {
    font-size: 14px;
    color: #667eea;
    font-weight: 600;
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0F0F23 0%, #1a1a3a 100%);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-bottom: 64px;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 800;
    color: white;
    margin: 0 auto 24px;
    position: relative;
    z-index: 2;
}

.step-content h3 {
    font-size: 24px;
    color: #FFFFFF;
    margin-bottom: 16px;
}

.step-content p {
    color: #D1D5DB;
    line-height: 1.6;
}

.process-guarantee {
    text-align: center;
    background: rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 16px;
    padding: 40px;
    max-width: 600px;
    margin: 0 auto;
}

.guarantee-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 16px;
}

.guarantee-badge svg {
    width: 20px;
    height: 20px;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a3a 0%, #2d1b69 50%, #0F0F23 100%);
}

.service-category {
    margin-bottom: 80px;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.category-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    object-fit: cover;
}

.category-info {
    flex: 1;
}

.category-title {
    font-size: 32px;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.category-description {
    color: #D1D5DB;
    font-size: 16px;
    margin: 0;
}

.category-badge {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(102, 126, 234, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-card.featured {
    border-color: #f093fb;
    background: rgba(240, 147, 251, 0.05);
}

.service-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, #f093fb, #f5576c);
    color: white;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.service-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.service-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.service-title {
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0;
}

.service-description {
    color: #D1D5DB;
    margin-bottom: 20px;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.feature {
    font-size: 14px;
    color: #9CA3AF;
}

.service-pricing {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.price {
    font-size: 28px;
    font-weight: 800;
    color: #667eea;
}

.price-unit {
    color: #9CA3AF;
    font-size: 16px;
}

.min-order {
    margin-left: auto;
    font-size: 14px;
    color: #6B7280;
}

.order-btn {
    width: 100%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.order-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
}

/* Package Selection Styles */
.package-selection {
    margin: 20px 0;
    padding: 15px;
    background: rgba(102, 126, 234, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(102, 126, 234, 0.2);
    position: relative;
    z-index: 2;
}

.package-selection h4 {
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 8px;
}

.package-option {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.package-option:hover {
    border-color: #667eea;
    background: rgba(102, 126, 234, 0.1);
    transform: translateY(-1px);
}

.package-option.selected {
    border-color: #667eea;
    background: rgba(102, 126, 234, 0.2);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.package-quantity {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 4px;
}

.package-price {
    display: block;
    font-size: 12px;
    color: #9CA3AF;
}

.show-more-services {
    text-align: center;
    margin: 64px 0;
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(102, 126, 234, 0.5);
    color: #667eea;
    padding: 12px 32px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline:hover {
    background: rgba(102, 126, 234, 0.1);
    border-color: #667eea;
}

.more-services {
    animation: fadeIn 0.5s ease;
}

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

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0F0F23 0%, #1a1a3a 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: rgba(102, 126, 234, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.testimonial-rating {
    margin-bottom: 20px;
}

.star {
    color: #fbbf24;
    font-size: 18px;
    margin-right: 2px;
}

.testimonial-text {
    color: #D1D5DB;
    font-style: italic;
    margin-bottom: 24px;
    line-height: 1.6;
}

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

.author-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
}

.author-name {
    display: block;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 4px;
}

.author-title {
    font-size: 14px;
    color: #9CA3AF;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a3a 0%, #2d1b69 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.feature-card {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: 16px;
    padding: 40px 32px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(102, 126, 234, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: white;
}

.feature-card h3 {
    font-size: 24px;
    color: #FFFFFF;
    margin-bottom: 16px;
}

.feature-card p {
    color: #D1D5DB;
    line-height: 1.6;
    margin: 0;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0F0F23 0%, #1a1a3a 100%);
    padding: 80px 0 40px;
    border-top: 1px solid rgba(102, 126, 234, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 48px;
    margin-bottom: 48px;
}

.footer-section h3 {
    color: #FFFFFF;
    margin-bottom: 24px;
}

.footer-section h4 {
    color: #FFFFFF;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-section p {
    color: #D1D5DB;
    margin-bottom: 24px;
}

.footer-logo {
    width: 40px;
    height: auto;
    margin-bottom: 16px;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section ul li a {
    color: #D1D5DB;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #667eea;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #667eea;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: rgba(102, 126, 234, 0.2);
    transform: translateY(-2px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid rgba(102, 126, 234, 0.2);
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: #9CA3AF;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: #9CA3AF;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #667eea;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #1a1a3a;
    border-radius: 16px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    border: 1px solid rgba(102, 126, 234, 0.3);
}

.modal-content.large {
    max-width: 800px;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
    border-bottom: 1px solid rgba(102, 126, 234, 0.2);
}

.modal-header h3 {
    color: #FFFFFF;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    color: #9CA3AF;
    font-size: 24px;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 4px;
    border-radius: 4px;
}

.modal-close:hover {
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.1);
}

.modal-body {
    padding: 32px;
}

.modal-footer {
    display: flex;
    gap: 16px;
    justify-content: flex-end;
    padding: 24px 32px;
    border-top: 1px solid rgba(102, 126, 234, 0.2);
}

/* Form Styles */
.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    color: #FFFFFF;
    font-weight: 600;
    margin-bottom: 8px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Enhanced readability for form text */
.form-group input,
.form-group select,
.form-group textarea {
    color: #FFFFFF;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9CA3AF;
    opacity: 0.8;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 8px;
    color: #FFFFFF;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group small {
    display: block;
    color: #9CA3AF;
    font-size: 14px;
    margin-top: 6px;
}

/* Button Styles */
.btn-primary {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #9CA3AF;
    border: 1px solid rgba(156, 163, 175, 0.3);
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    color: #FFFFFF;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.05);
}

.btn-success {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-success:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.4);
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100%;
    background: #1a1a3a;
    border-left: 1px solid rgba(102, 126, 234, 0.2);
    z-index: 1001;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.open {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    border-bottom: 1px solid rgba(102, 126, 234, 0.2);
}

.cart-header h3 {
    color: #FFFFFF;
    margin: 0;
}

.cart-close {
    background: none;
    border: none;
    color: #9CA3AF;
    font-size: 24px;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 4px;
    border-radius: 4px;
}

.cart-close:hover {
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.1);
}

.cart-items {
    flex: 1;
    padding: 24px;
    overflow-y: auto;
}

.cart-footer {
    padding: 24px;
    border-top: 1px solid rgba(102, 126, 234, 0.2);
}

.cart-total {
    margin-bottom: 16px;
    text-align: center;
    color: #FFFFFF;
    font-size: 18px;
}

.checkout-btn {
    width: 100%;
}

/* Animations */
.animate-in {
    animation: slideInUp 0.6s ease forwards;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

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

    .hero-title {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-stats {
        gap: 24px;
    }

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

    .cta-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .trust-indicators {
        grid-template-columns: 1fr;
    }

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

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

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

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

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

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

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

    .cart-sidebar {
        width: 100%;
        right: -100%;
    }

    .modal-content {
        width: 95%;
        margin: 20px;
    }

    .modal-header,
    .modal-body,
    .modal-footer {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 36px;
    }

    .section-title {
        font-size: 36px;
    }

    .category-header {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .category-title {
        font-size: 28px;
    }

    .service-card,
    .platform-card,
    .feature-card,
    .testimonial-card {
        padding: 24px;
    }
}
/* Free Trial Page Styles */
.free-trial-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #0F0F23 0%, #1a1a3a 50%, #2D1B69 100%);
    overflow: hidden;
}

.free-trial-features {
    display: flex;
    gap: 32px;
    margin: 40px 0;
    justify-content: center;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    padding: 16px 24px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.feature-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.feature span {
    color: #FFFFFF;
    font-weight: 500;
}

.whatsapp-action {
    margin-top: 48px;
    text-align: center;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 20px 40px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.3);
    border: 2px solid transparent;
}

.whatsapp-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 48px rgba(37, 211, 102, 0.4);
    background: linear-gradient(135deg, #128C7E, #25D366);
    color: white;
    text-decoration: none;
}

.free-trial-btn {
    background: linear-gradient(135deg, #25D366, #128C7E) !important;
    color: white !important;
    border: 2px solid transparent !important;
}

.free-trial-btn:hover {
    background: linear-gradient(135deg, #128C7E, #25D366) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.3);
}

.trial-process {
    padding: 80px 0;
    background: #F8FAFC;
}

.trial-benefits {
    padding: 80px 0;
    background: white;
}

.benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.benefit-item {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
}

.benefit-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.benefit-text h3 {
    font-size: 20px;
    color: #1F2937;
    margin-bottom: 8px;
}

.benefit-text p {
    color: #6B7280;
    line-height: 1.6;
    margin: 0;
}

.benefits-image {
    text-align: center;
}

.trial-image {
    max-width: 300px;
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 64px rgba(0, 0, 0, 0.1);
}

.upgrade-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #F8FAFC 0%, #E5E7EB 100%);
}

.upgrade-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.upgrade-card {
    background: white;
    padding: 40px 32px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.upgrade-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 64px rgba(0, 0, 0, 0.15);
    border-color: #667eea;
}

.upgrade-card.featured {
    border-color: #667eea;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #F59E0B;
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.upgrade-card h3 {
    font-size: 24px;
    color: #1F2937;
    margin-bottom: 16px;
}

.upgrade-card.featured h3 {
    color: white;
}

.upgrade-price {
    font-size: 32px;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 16px;
}

.upgrade-card.featured .upgrade-price {
    color: white;
}

.upgrade-card p {
    color: #6B7280;
    margin-bottom: 32px;
    line-height: 1.6;
}

.upgrade-card.featured p {
    color: rgba(255, 255, 255, 0.9);
}

.upgrade-btn {
    display: inline-block;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 14px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.upgrade-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.3);
    text-decoration: none;
    color: white;
}

.upgrade-card.featured .upgrade-btn {
    background: white;
    color: #667eea;
}

.upgrade-card.featured .upgrade-btn:hover {
    background: #F8FAFC;
    color: #667eea;
}

@media (max-width: 768px) {
    .free-trial-features {
        flex-direction: column;
        gap: 16px;
    }
    
    .feature {
        justify-content: center;
    }
    
    .whatsapp-btn {
        padding: 16px 24px;
        font-size: 16px;
    }
    
    .benefits-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .benefit-item {
        margin-bottom: 24px;
    }
    
    .upgrade-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}
/* Services Page Styles */
.services-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #0F0F23 0%, #1a1a3a 50%, #2D1B69 100%);
    overflow: hidden;
}

.services-categories {
    padding: 80px 0;
    background: #F8FAFC;
}

.service-category {
    margin-bottom: 80px;
    background: white;
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.service-category:last-child {
    margin-bottom: 0;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 40px;
    padding-bottom: 24px;
    border-bottom: 2px solid #E5E7EB;
}

.category-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    object-fit: cover;
}

.category-info {
    flex: 1;
}

.category-title {
    font-size: 28px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 8px;
}

.category-description {
    color: #6B7280;
    font-size: 16px;
    margin: 0;
}

.category-badge {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.service-card {
    background: white;
    border: 2px solid #E5E7EB;
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 64px rgba(0, 0, 0, 0.15);
    border-color: #667eea;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.service-title {
    font-size: 20px;
    font-weight: 600;
    color: #1F2937;
    margin: 0;
}

.service-price {
    font-size: 18px;
    font-weight: 700;
    color: #667eea;
}

.price-unit {
    font-size: 14px;
    font-weight: 400;
    color: #6B7280;
}

.service-description {
    color: #6B7280;
    margin-bottom: 24px;
    line-height: 1.6;
}

.service-features {
    margin-bottom: 32px;
}

.feature {
    font-size: 14px;
    color: #059669;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.order-btn {
    width: 100%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 16px 24px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.order-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.3);
}

#order-modal {
    z-index: 1000;
}

.modal-body form {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 8px;
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #667eea;
}

.form-group small {
    color: #6B7280;
    font-size: 12px;
    margin-top: 4px;
    display: block;
}

.order-summary {
    background: #F8FAFC;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    padding: 20px;
    margin: 24px 0;
}

.order-summary h4 {
    margin: 0 0 16px 0;
    color: #1F2937;
    font-size: 18px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.summary-item span:last-child {
    font-weight: 600;
    color: #1F2937;
}

.form-actions {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

.btn-secondary {
    flex: 1;
    background: #6B7280;
    color: white;
    border: none;
    padding: 16px 24px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #4B5563;
}

.btn-primary {
    flex: 2;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 16px 24px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.3);
}

@media (max-width: 768px) {
    .service-category {
        padding: 24px;
        margin-bottom: 40px;
    }
    
    .category-header {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .service-header {
        flex-direction: column;
        gap: 12px;
    }
    
    .form-actions {
        flex-direction: column;
    }
}
/* Payment Page Styles */
.payment-section {
    min-height: 80vh;
    padding: 80px 0;
    background: #F8FAFC;
}

.payment-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.order-details {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    height: fit-content;
}

.order-summary-card {
    background: #F8FAFC;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    padding: 24px;
    margin-top: 24px;
}

.order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #E5E7EB;
}

.order-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.item-label {
    font-weight: 600;
    color: #6B7280;
}

.item-value {
    font-weight: 600;
    color: #1F2937;
    text-align: right;
}

.item-value.price-highlight {
    color: #667eea;
    font-size: 18px;
}

.item-value.link {
    color: #667eea;
    word-break: break-all;
}

.payment-methods {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.payment-options {
    margin: 32px 0;
}

.payment-option {
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-option:hover {
    border-color: #667eea;
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.1);
}

.payment-option.selected {
    border-color: #667eea;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.payment-option.selected .payment-header h3,
.payment-option.selected p {
    color: white;
}

.payment-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}

.payment-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: bold;
}

.payment-header h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1F2937;
    margin: 0;
}

.payment-option p {
    color: #6B7280;
    margin: 0;
}

.payment-details {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #E5E7EB;
}

.payment-details h4 {
    color: #1F2937;
    margin-bottom: 16px;
}

.crypto-methods {
    margin-bottom: 16px;
}

.crypto-method {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    padding: 12px;
    background: white;
    border-radius: 8px;
}

.crypto-name {
    font-weight: 600;
    min-width: 100px;
}

.crypto-address {
    flex: 1;
    font-family: monospace;
    background: #F3F4F6;
    padding: 6px 8px;
    border-radius: 4px;
    font-size: 12px;
}

.copy-btn {
    background: #667eea;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
}

.copy-btn:hover {
    background: #5a67d8;
}

.payment-note {
    color: #6B7280;
    font-size: 14px;
    margin: 12px 0;
}

.order-id {
    font-weight: 600;
    color: #667eea;
}

.email-instructions {
    background: #F8FAFC;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 16px;
}

.email-address,
.email-subject,
.email-amount {
    margin-bottom: 8px;
    font-size: 14px;
}

.payment-actions {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

.btn-secondary {
    flex: 1;
    background: #6B7280;
    color: white;
    border: none;
    padding: 16px 24px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-secondary:hover {
    background: #4B5563;
    color: white;
    text-decoration: none;
}

.btn-primary {
    flex: 2;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 16px 24px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.3);
}

/* Success Modal */
.success-icon {
    font-size: 48px;
    text-align: center;
    margin-bottom: 20px;
}

.success-modal h4 {
    color: #1F2937;
    margin-bottom: 16px;
    text-align: center;
}

.next-steps {
    margin: 24px 0;
}

.next-steps h5 {
    color: #1F2937;
    margin-bottom: 12px;
}

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

.next-steps li {
    padding: 8px 0;
    color: #6B7280;
    position: relative;
    padding-left: 24px;
}

.next-steps li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10B981;
    font-weight: bold;
}

.contact-info {
    background: #F8FAFC;
    padding: 16px;
    border-radius: 8px;
    margin: 24px 0;
}

.contact-info p {
    margin: 4px 0;
    font-size: 14px;
    color: #6B7280;
}

@media (max-width: 768px) {
    .payment-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .order-details,
    .payment-methods {
        padding: 24px;
    }
    
    .payment-actions {
        flex-direction: column;
    }
    
    .crypto-method {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .crypto-address {
        font-size: 10px;
    }
}