
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    width: 100%;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

:root {
    --bg-dark: #0A0A1A;
    --bg-card: #1a1a2e;
    --text-primary: #FFFFFF;
    --text-secondary: #B8B8D1;
    --text-muted: #8A8AA3;
    --accent-orange: #FF6B35;
    --accent-coral: #FF8B5A;
    --accent-pink: #FF6F91;
    --accent-yellow: #FFB84D;
    --accent-blue: #3B82F6;
    --accent-green: #10B981;
    --gradient-text: linear-gradient(90deg, #00D9FF 0%, #3B82F6 50%, #A855F7 100%);
    --gradient-primary: linear-gradient(135deg, #FF6B35 0%, #FF8B5A 50%, #FFB84D 100%);
    --gradient-button: linear-gradient(135deg, #FF6B35 0%, #FF6F91 50%, #FF8B5A 100%);
    --gradient-success: linear-gradient(135deg, #10B981 0%, #059669 100%);
    --border-color: rgba(255, 107, 53, 0.2);
    --glow-orange: rgba(255, 107, 53, 0.5);
}

body {
    font-family: 'Inter', sans-serif;
    background: #000000;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    width: 100%;
    max-width: 100vw;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: transparent;
}

/* Hexagon pattern background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-image: 
        radial-gradient(circle at 20px 20px, rgba(255, 107, 53, 0.03) 2px, transparent 0),
        radial-gradient(circle at 60px 60px, rgba(255, 107, 53, 0.03) 2px, transparent 0);
    background-size: 80px 80px;
    background-position: 0 0, 40px 40px;
    animation: patternShift 30s linear infinite;
}

@keyframes patternShift {
    0% { background-position: 0 0, 40px 40px; }
    100% { background-position: 80px 80px, 120px 120px; }
}

/* Gradient blobs */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: 
        radial-gradient(ellipse 700px 900px at 15% 25%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 900px 700px at 85% 75%, rgba(255, 111, 145, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 600px 800px at 50% 50%, rgba(255, 184, 77, 0.08) 0%, transparent 50%);
    animation: blobMove 15s ease-in-out infinite;
}

@keyframes blobMove {
    0%, 100% { opacity: 0.6; transform: scale(1) rotate(0deg); }
    50% { opacity: 0.9; transform: scale(1.1) rotate(5deg); }
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100vw;
    min-height: 60px;
    background: rgba(10, 10, 26, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 217, 255, 0.2);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-sizing: border-box;
   
}

.nav-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    
}

.logo-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, #00D9FF 0%, #3B82F6 50%, #A855F7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    position: relative;
    flex-shrink: 0;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.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);
}

.mobile-menu {
    display: none;
    background: #1a1a2e;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 2rem;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.mobile-menu-links .nav-link {
    color: #FFFFFF;
}

.mobile-services-wrapper {
    position: relative;
}

.mobile-services-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.mobile-services-toggle:hover {
    color: #FFFFFF;
}

.mobile-services-dropdown {
    margin-top: 0.75rem;
    margin-left: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    border-left: 2px solid rgba(255, 255, 255, 0.1);
    padding-left: 1rem;
    animation: mobileDropdownFadeIn 0.3s ease;
}

@keyframes mobileDropdownFadeIn {
    from {
        opacity: 0;
        max-height: 0;
    }
    to {
        opacity: 1;
        max-height: 500px;
    }
}

.mobile-services-item {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    display: block;
}

.mobile-services-item:hover {
    color: #FFFFFF;
    padding-left: 0.5rem;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    position: relative;
}

.nav-services-wrapper {
    position: relative;
}

.nav-services-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0;
    text-decoration: none;
    color: #FFFFFF;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-services-toggle:hover {
    color: #FFFFFF;
    text-shadow: 0 0 10px rgba(168, 85, 247, 0.6);
}

.dropdown-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
    display: inline-block;
}

.nav-services-wrapper:hover .dropdown-arrow,
.nav-services-toggle.active .dropdown-arrow {
    transform: rotate(180deg);
}

.services-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 0.75rem 0;
    min-width: 220px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 217, 255, 0.2);
    z-index: 1001;
    animation: dropdownFadeIn 0.3s ease;
    backdrop-filter: blur(20px);
    display: none;
}

.services-dropdown.active {
    display: block;
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.services-dropdown-item {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-left: 2px solid transparent;
}

.services-dropdown-item:hover {
    color: #FFFFFF;
    background: rgba(0, 217, 255, 0.1);
    border-left-color: #00D9FF;
    padding-left: 1.75rem;
}

.nav-menu a {
    text-decoration: none;
    color: #FFFFFF;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #FFFFFF;
    text-shadow: 0 0 10px rgba(168, 85, 247, 0.6);
}

.nav-cta {
    padding: 0.75rem 1.75rem;
    background: linear-gradient(90deg, #FF4444 0%, #FF6B35 50%, #FFB347 100%);
    color: white !important;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.4), 0 0 40px rgba(168, 85, 247, 0.3);
}

/* Hero Section */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 8rem 2rem 4rem;
}

.hero::before {
    content: '';
    position: absolute;
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.3) 0%, transparent 70%);
    top: -300px;
    right: -200px;
    animation: heroFloat 10s ease-in-out infinite;
    border-radius: 50%;
}

@keyframes heroFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(50px, -50px) scale(1.1); }
}

.hero-content {
    max-width: 1200px;
    position: relative;
    z-index: 10;
    text-align: center;
    width: 100%;
    padding: 0 2rem;
    box-sizing: border-box;
    margin: 0 auto;
}

.hero-alert {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 107, 53, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid var(--accent-orange);
    color: var(--accent-orange);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
    animation: alertPulse 2s ease-in-out infinite;
}

@keyframes alertPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.7); }
    50% { box-shadow: 0 0 0 15px rgba(255, 107, 53, 0); }
}

.alert-icon {
    font-size: 1.5rem;
    animation: spin 3s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-title {
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    letter-spacing: -3px;
}

.hero-title-line1 {
    display: block;
    color: var(--text-primary);
}

.hero-title-line2 {
    display: block;
    font-size: clamp(3.5rem, 8vw, 7rem);
    background: var(--gradient-button);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0.5rem 0;
}

.hero-title-line3 {
    display: block;
    color: var(--text-secondary);
    font-size: clamp(2.2rem, 5vw, 4rem);
}

.hero-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    color: var(--text-secondary);
    max-width: 1000px;
    margin: 0 auto 3rem;
    line-height: 1.7;
    font-weight: 500;
}

.hero-urgency {
    display: inline-block;
    background: rgba(255, 107, 53, 0.15);
    border-left: 4px solid var(--accent-orange);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--accent-orange);
}

.hero-cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.cta-primary {
    padding: 1.5rem 3rem;
    background: var(--gradient-button);
    color: white;
    text-decoration: none;
    font-weight: 900;
    font-size: 1.15rem;
    border-radius: 50px;
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.cta-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: width 0.6s ease, height 0.6s ease;
}

.cta-primary:hover::before {
    width: 400px;
    height: 400px;
}

.cta-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.stat-card {
    background: rgba(26, 26, 46, 0.7);
    backdrop-filter: blur(20px);
    padding: 2rem 1.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: var(--gradient-primary);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-card:hover::after {
    opacity: 1;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(255, 107, 53, 0.4);
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.75rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 600;
    line-height: 1.5;
}

/* Platform Comparison - NEW! */
.platform-section {
    padding: 6rem 2rem;
    position: relative;
    z-index: 10;
}

.section {
    padding: 4rem 2rem;
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    overflow-x: hidden;
}

.hero {
    padding-bottom: 4rem;
}

/* Animated Section Dividers */
.section-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 107, 53, 0.3) 20%, 
        rgba(255, 107, 53, 0.6) 50%, 
        rgba(255, 107, 53, 0.3) 80%, 
        transparent 100%
    );
    margin: 4rem auto;
    max-width: 1400px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    opacity: 0;
    transform: scaleX(0);
    animation: dividerReveal 0.8s ease-out forwards;
}

@keyframes dividerReveal {
    to {
        opacity: 1;
        transform: scaleX(1);
    }
}

.section-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.8), 
        transparent
    );
    animation: dividerSweep 3s ease-in-out infinite;
}

@keyframes dividerSweep {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: -100%;
    }
}

.section-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: var(--gradient-button);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.8), 0 0 40px rgba(255, 107, 53, 0.4);
    animation: dividerPulse 2s ease-in-out infinite;
}

@keyframes dividerPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 1;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.section-pretitle {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-orange);
    margin-bottom: 1rem;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 107, 53, 0.15);
    border-radius: 50px;
}

.section-title {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: -2px;
    line-height: 1.1;
}

.section-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--text-secondary);
    line-height: 1.7;
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
    width: calc(100% - 4rem);
    padding: 0 2rem;
    box-sizing: border-box;
}

.platform-card {
    background: rgba(26, 26, 46, 0.8);
    backdrop-filter: blur(20px);
    padding: 0;
    border-radius: 24px;
    border: 2px solid var(--border-color);
    overflow: hidden;
    transition: all 0.4s ease;
}

.platform-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 80px rgba(255, 107, 53, 0.4);
    border-color: var(--accent-orange);
}

.platform-header {
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.platform-header.instagram { background: linear-gradient(135deg, #833AB4, #E1306C, #FD1D1D); }
.platform-header.tiktok { background: linear-gradient(135deg, #000000, #FF0050, #00F2EA); }
.platform-header.facebook { background: linear-gradient(135deg, #1877F2, #42B72A); }

.platform-icon {
    font-size: 3rem;
    margin-bottom: 0.75rem;
}

.platform-name {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.platform-metric {
    font-size: 1rem;
    opacity: 0.9;
}

.platform-body {
    padding: 2rem;
}

.platform-strategy {
    margin-bottom: 2rem;
}

.strategy-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.strategy-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.strategy-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.strategy-icon {
    color: var(--accent-orange);
    flex-shrink: 0;
}

.platform-results {
    background: rgba(255, 107, 53, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.result-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.result-value {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-orange);
}

/* Content Calendar Visual - NEW! */
.calendar-section {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(0, 0, 0, 0));
}

.calendar-container {
    max-width: 1200px;
    margin: 0 auto;
    width: calc(100% - 4rem);
    padding: 0 2rem;
    box-sizing: border-box;
}

.calendar-week {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1rem;
    margin-bottom: 3rem;
}

.calendar-day {
    background: rgba(26, 26, 46, 0.8);
    backdrop-filter: blur(20px);
    padding: 1.5rem;
    border-radius: 16px;
    border: 2px solid var(--border-color);
    transition: all 0.4s ease;
    min-height: 180px;
    display: flex;
    flex-direction: column;
}

.calendar-day:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.3);
    border-color: var(--accent-orange);
}

.day-header {
    font-weight: 800;
    font-size: 0.9rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.post-item {
    background: rgba(255, 107, 53, 0.15);
    padding: 0.75rem;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    border-left: 3px solid var(--accent-orange);
}

.post-platform {
    font-weight: 700;
    color: var(--accent-orange);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
}

/* Viral Post Anatomy - NEW! */
.viral-post-section {
    padding: 6rem 2rem;
}

.viral-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: start;
}

.post-mockup {
    background: rgba(26, 26, 46, 0.9);
    backdrop-filter: blur(30px);
    border-radius: 24px;
    overflow: hidden;
    border: 2px solid var(--border-color);
    position: sticky;
    top: 120px;
}

.mockup-header {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mockup-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
}

.mockup-info {
    flex: 1;
}

.mockup-name {
    font-weight: 800;
    font-size: 1rem;
    color: var(--text-primary);
}

.mockup-time {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.mockup-image {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8B5A 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.mockup-engagement {
    padding: 1.5rem;
    display: flex;
    gap: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.engagement-stat {
    text-align: center;
}

.engagement-value {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--accent-orange);
}

.engagement-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.post-anatomy-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.anatomy-item {
    background: rgba(26, 26, 46, 0.8);
    backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
}

.anatomy-item:hover {
    transform: translateX(10px);
    border-color: var(--accent-orange);
    box-shadow: 0 15px 50px rgba(255, 107, 53, 0.3);
}

.anatomy-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.anatomy-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.anatomy-desc {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Problem Grid */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
    width: calc(100% - 4rem);
    padding: 0 2rem;
    box-sizing: border-box;
}

.problem-card {
    background: rgba(26, 26, 46, 0.8);
    backdrop-filter: blur(20px);
    padding: 2.5rem 2rem;
    border-radius: 24px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 2px;
    background: var(--gradient-button);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.problem-card:hover::before {
    opacity: 0.8;
}

.problem-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 80px rgba(255, 107, 53, 0.4);
}

.problem-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.problem-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.problem-desc {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.problem-cost-box {
    background: rgba(255, 107, 53, 0.15);
    border-left: 4px solid var(--accent-orange);
    padding: 1rem 1.25rem;
    border-radius: 8px;
    margin-top: 1.5rem;
}

.problem-cost {
    color: var(--accent-orange);
    font-weight: 800;
    font-size: 1.1rem;
}

/* Flash Sale Automation - NEW! */
.flash-sale-demo {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(26, 26, 46, 0.9);
    backdrop-filter: blur(30px);
    border-radius: 30px;
    padding: 3rem;
    border: 2px solid var(--border-color);
    position: relative;
}

.flash-sale-demo::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 30px;
    padding: 3px;
    background: var(--gradient-primary);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.3;
}

.trigger-flow {
    display: grid;
    gap: 2rem;
}

.flow-step {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.step-number {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.step-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.step-desc {
    color: var(--text-secondary);
    line-height: 1.6;
}

.step-time {
    margin-top: 0.75rem;
    font-weight: 700;
    color: var(--accent-orange);
    font-size: 0.9rem;
}

/* Solution Features */
.solution-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: start;
    width: calc(100% - 4rem);
    padding: 0 2rem;
    box-sizing: border-box;
}

.solution-list-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 2.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: rgba(26, 26, 46, 0.6);
    backdrop-filter: blur(20px);
    padding: 2rem 1.75rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
    position: relative;
}

.feature-item::after {
    content: '→';
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: var(--accent-orange);
    opacity: 0;
    transition: all 0.3s ease;
}

.feature-item:hover::after {
    opacity: 1;
    right: 1.5rem;
}

.feature-item:hover {
    transform: translateX(12px);
    border-color: rgba(255, 107, 53, 0.6);
    box-shadow: 0 15px 50px rgba(255, 107, 53, 0.4);
}

.feature-number {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.5rem;
}

.feature-text {
    flex: 1;
}

.feature-text strong {
    display: block;
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.feature-text p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
}

.results-showcase {
    background: rgba(26, 26, 46, 0.9);
    backdrop-filter: blur(30px);
    padding: 3rem 2.5rem;
    border-radius: 30px;
    border: 2px solid var(--border-color);
    position: sticky;
    top: 120px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
}

.results-title {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 2.5rem;
    text-align: center;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.result-box {
    padding: 2rem 1.75rem;
    border-radius: 18px;
    text-align: center;
    margin-bottom: 1.75rem;
    transition: all 0.4s ease;
}

.result-box-before {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(255, 139, 90, 0.15));
    border: 2px solid rgba(255, 107, 53, 0.4);
}

.result-box-after {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(5, 150, 105, 0.15));
    border: 2px solid rgba(16, 185, 129, 0.4);
}

.result-box:hover {
    transform: scale(1.05);
}

.result-label {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.result-box-before .result-label {
    color: rgba(255, 107, 53, 1);
}

.result-box-after .result-label {
    color: rgba(16, 185, 129, 1);
}

.result-number {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.75rem;
}

.result-box-before .result-number {
    color: var(--accent-orange);
}

.result-box-after .result-number {
    color: var(--accent-green);
}

.result-text {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.savings-highlight {
    background: var(--gradient-button);
    padding: 2.5rem 2rem;
    border-radius: 18px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.savings-label {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.savings-amount {
    font-size: 3rem;
    font-weight: 900;
    position: relative;
    z-index: 1;
}

/* Case Study */
.case-study-container {
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(26, 26, 46, 0.9);
    backdrop-filter: blur(30px);
    padding: 4rem 3.5rem;
    border-radius: 30px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
    border: 2px solid var(--border-color);
    position: relative;
    width: calc(100% - 4rem);
    box-sizing: border-box;
}

.case-study-container::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 30px;
    padding: 3px;
    background: var(--gradient-primary);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.3;
}

.case-study-badge {
    display: inline-block;
    background: linear-gradient(135deg, #FF8C42, #FFB347);
    color: white;
    padding: 0.65rem 1.75rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 800;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.case-study-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 2.5rem;
    line-height: 1.2;
}

.challenge-box {
    background: rgba(255, 107, 53, 0.15);
    backdrop-filter: blur(10px);
    padding: 3rem 2.5rem;
    border-radius: 16px;
    border-left: 5px solid var(--accent-orange);
    margin-bottom: 3rem;
    border: 1px solid rgba(255, 107, 53, 0.3);
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
}

.challenge-label {
    color: var(--accent-orange);
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
}

.challenge-text {
    color: var(--text-secondary);
    font-size: 1.25rem;
    line-height: 1.8;
    font-weight: 600;
}

.results-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.result-column {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 3rem 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.result-column:hover {
    transform: scale(1.05);
}

.result-period {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 700;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.result-percentage {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 1rem;
}

.result-percentage.before {
    color: var(--accent-orange);
}

.result-percentage.after {
    color: var(--accent-green);
}

.result-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 600;
    line-height: 1.5;
}

.annual-savings-box {
    background: var(--gradient-success);
    padding: 3.5rem 3rem;
    border-radius: 20px;
    text-align: center;
    color: white;
    width: calc(100% - 2rem);
    max-width: 100%;
    box-sizing: border-box;
    margin: 0 auto;
    box-shadow: 0 15px 50px rgba(16, 185, 129, 0.3);
}

.savings-box-label {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    opacity: 0.95;
}

.savings-box-amount {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Testimonials */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonial-card {
    background: rgba(26, 26, 46, 0.8);
    backdrop-filter: blur(20px);
    padding: 3rem 2.5rem;
    border-radius: 24px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 2rem;
    left: 2rem;
    font-size: 8rem;
    color: rgba(255, 107, 53, 0.15);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 70px rgba(255, 107, 53, 0.4);
    border-color: var(--accent-orange);
}

.testimonial-rating {
    font-size: 2rem;
    color: var(--accent-yellow);
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    color: white;
    flex-shrink: 0;
}

.author-name {
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.author-title {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Guarantee Section */
.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1300px;
    margin: 0 auto;
    width: calc(100% - 4rem);
    padding: 0 2rem;
    box-sizing: border-box;
}

.guarantee-card {
    background: rgba(26, 26, 46, 0.9);
    backdrop-filter: blur(20px);
    padding: 3rem 2.5rem;
    border-radius: 24px;
    border: 2px solid var(--border-color);
    transition: all 0.4s ease;
    text-align: center;
}

.guarantee-card:hover {
    border-color: var(--accent-orange);
    transform: translateY(-12px);
    box-shadow: 0 25px 70px rgba(255, 107, 53, 0.5);
}

.guarantee-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
}

.guarantee-title {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.guarantee-desc {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Final CTA */
.final-cta-section {
    padding: 8rem 2rem;
    text-align: center;
    position: relative;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1200px;
    height: 1200px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 6s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

.final-cta-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    width: calc(100% - 4rem);
    padding: 0 2rem;
    box-sizing: border-box;
}

.scarcity-badge {
    display: inline-block;
    background: rgba(255, 107, 53, 0.2);
    border: 2px solid var(--accent-orange);
    color: var(--accent-orange);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    animation: alertPulse 2s ease-in-out infinite;
}

.cta-title {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -2px;
}

.cta-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.7;
}

.cta-button {
    display: inline-block;
    padding: 1.75rem 3.5rem;
    background: var(--gradient-button);
    color: white;
    text-decoration: none;
    font-weight: 900;
    font-size: 1.3rem;
    border-radius: 50px;
    box-shadow: 0 10px 35px rgba(255, 107, 53, 0.35);
    transition: all 0.4s ease;
    margin-bottom: 2.5rem;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: width 0.6s ease, height 0.6s ease;
}

.cta-button:hover::before {
    width: 500px;
    height: 500px;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 18px 45px rgba(255, 107, 53, 0.45);
}

.cta-features {
    font-size: 1.2rem;
    color: var(--text-secondary);
    font-weight: 600;
    line-height: 2;
}

/* Responsive */
@media (max-width: 1024px) {
    .solution-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .results-showcase {
        position: static;
    }

    .viral-container {
        grid-template-columns: 1fr;
    }

    .post-mockup {
        position: static;
    }

    .calendar-week {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    /* Navigation */
    .nav-container {
        padding: 0.875rem 1rem;
        flex-wrap: nowrap;
        gap: 0.5rem;
        position: relative;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .logo-text {
        font-size: 1.25rem;
        flex: 1;
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .mobile-menu-toggle {
        display: flex;
        flex-shrink: 0;
        min-width: 44px;
        min-height: 44px;
        align-items: center;
        justify-content: center;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: calc(100% + 0.5rem);
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background: rgba(10, 10, 26, 0.98);
        backdrop-filter: blur(20px);
        padding: 1rem 0;
        margin-top: 0.5rem;
        border-radius: 12px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
        border: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 999;
        max-width: calc(100vw - 2rem);
        box-sizing: border-box;
        overflow: hidden;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu a {
        display: block;
        padding: 1rem 1.5rem;
        width: 100%;
        text-align: left;
    }

    /* Hero Section */
    .hero {
        padding: 4rem 1.5rem 2rem;
        min-height: auto;
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
        overflow-x: hidden;
    }

    .hero-content {
        padding: 0 0.5rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .hero-alert {
        margin-top: 2rem;
        margin-bottom: 2rem;
        font-size: 0.75rem;
        padding: 0.75rem 1.5rem;
    }

    .hero-title {
        font-size: clamp(1.75rem, 8vw, 2.5rem);
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* Section Dividers */
    .section-divider {
        margin: 3rem auto;
        max-width: calc(100% - 2rem);
    }

    .section-divider::after {
        width: 8px;
        height: 8px;
    }

    /* All Sections */
    .section {
        padding: 3rem 1.5rem;
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
        overflow-x: hidden;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .section-title {
        font-size: clamp(1.75rem, 6vw, 2.25rem);
    }

    .problem-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        width: 100%;
        max-width: 100%;
        padding: 0;
        box-sizing: border-box;
    }

    .guarantee-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        width: 100%;
        max-width: 100%;
        padding: 0;
        box-sizing: border-box;
    }

    .guarantee-card {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }

    .guarantee-icon {
        font-size: 3rem;
        margin-bottom: 1.25rem;
    }

    .guarantee-title {
        font-size: 1.4rem;
        margin-bottom: 0.875rem;
    }

    .guarantee-desc {
        font-size: 0.95rem;
        line-height: 1.6;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .problem-card {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }

    .problem-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .problem-title {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .problem-desc {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .problem-cost-box {
        padding: 1rem;
        border-radius: 12px;
        margin-top: 1rem;
    }

    .problem-cost {
        font-size: 0.9rem;
        line-height: 1.5;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .results-comparison {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .platform-section {
        padding: 3rem 1rem;
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
        overflow-x: hidden;
    }

    .platform-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        width: 100%;
        max-width: 100%;
        padding: 0;
        box-sizing: border-box;
    }

    .platform-card {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        border-radius: 20px;
    }

    .platform-header {
        padding: 1.5rem 1rem;
    }

    .platform-icon {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
    }

    .platform-name {
        font-size: 1.5rem;
        margin-bottom: 0.375rem;
    }

    .platform-metric {
        font-size: 0.9rem;
    }

    .platform-body {
        padding: 1.5rem 1rem;
    }

    .strategy-title {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .strategy-item {
        font-size: 0.9rem;
        padding: 0.5rem 0;
    }

    .platform-results {
        padding: 1.25rem 1rem;
    }

    .result-label {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }

    .result-value {
        font-size: 2rem;
    }

    .calendar-container {
        width: 100%;
        max-width: 100%;
        padding: 0;
        box-sizing: border-box;
    }

    .calendar-week {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .calendar-day {
        padding: 1.25rem 1rem;
        border-radius: 14px;
        min-height: auto;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .day-header {
        font-size: 0.85rem;
        margin-bottom: 0.875rem;
        letter-spacing: 0.5px;
    }

    .post-item {
        padding: 0.625rem 0.75rem;
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
        border-radius: 6px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .post-platform {
        font-size: 0.75rem;
        margin-bottom: 0.25rem;
    }

    /* Solution Section Mobile */
    .solution-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        width: 100%;
        max-width: 100%;
        padding: 0;
        box-sizing: border-box;
    }

    .solution-list-title {
        text-align: center;
        font-size: clamp(1.75rem, 6vw, 2.25rem);
        margin-bottom: 2rem;
    }

    .feature-list {
        gap: 1.25rem;
    }

    .feature-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.5rem 1.25rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .feature-item::after {
        display: none;
    }

    .feature-item:hover {
        transform: translateY(-5px);
    }

    .feature-number {
        margin-bottom: 1rem;
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .feature-text {
        text-align: center;
        width: 100%;
        max-width: 100%;
    }

    .feature-text strong {
        text-align: center;
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
        display: block;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .feature-text p {
        font-size: 0.9rem;
        line-height: 1.6;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .results-showcase {
        padding: 2rem 1.5rem;
        border-radius: 24px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    /* Case Study Mobile */
    .case-study-container {
        padding: 2rem 1.5rem;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }

    .case-study-badge {
        display: block;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        width: fit-content;
    }

    .case-study-title {
        text-align: center;
        font-size: clamp(1.75rem, 6vw, 2.25rem);
        margin-bottom: 2rem;
    }

    .challenge-box {
        width: 100%;
        padding: 2rem 1.5rem;
        box-sizing: border-box;
        margin-bottom: 2rem;
    }

    .challenge-label {
        text-align: center;
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .challenge-text {
        text-align: center;
        font-size: 1.05rem;
        line-height: 1.7;
    }

    .results-comparison {
        gap: 1.5rem;
        grid-template-columns: 1fr 1fr;
    }

    .result-column {
        padding: 2rem 1.5rem;
    }

    .result-percentage {
        font-size: clamp(2.5rem, 8vw, 3.5rem);
    }

    .result-desc {
        font-size: 0.95rem;
    }

    /* Annual Savings Box Mobile */
    .annual-savings-box {
        padding: 2.5rem 2rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .savings-box-label {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .savings-box-amount {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }

    /* Flash Sale Automation Mobile */
    .flash-sale-demo {
        padding: 1.5rem;
        border-radius: 20px;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }

    .trigger-flow {
        gap: 1.5rem;
    }

    .flow-step {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        order: 1;
    }

    .step-content {
        width: 100%;
        padding: 1.25rem 1.5rem;
        box-sizing: border-box;
        order: 2;
    }

    .step-title {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }

    .step-desc {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .step-time {
        font-size: 0.85rem;
        margin-top: 0.5rem;
    }

    /* Text Overflow */
    h1, h2, h3, h4, h5, h6, p, span, a, li {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
}

@media (max-width: 480px) {
    /* Extra Small Screens */
    .platform-section {
        padding: 2.5rem 0.75rem;
    }

    .platform-grid {
        gap: 1.25rem;
        padding: 0;
    }

    .platform-card {
        border-radius: 16px;
    }

    .platform-header {
        padding: 1.25rem 0.875rem;
    }

    .platform-icon {
        font-size: 2.25rem;
    }

    .platform-name {
        font-size: 1.35rem;
    }

    .platform-metric {
        font-size: 0.85rem;
    }

    .platform-body {
        padding: 1.25rem 0.875rem;
    }

    .strategy-title {
        font-size: 0.95rem;
    }

    .strategy-item {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .platform-results {
        padding: 1rem 0.875rem;
    }

    .result-label {
        font-size: 0.8rem;
    }

    .result-value {
        font-size: 1.75rem;
    }

    .problem-card {
        padding: 1.75rem 1.25rem;
        border-radius: 16px;
    }

    .problem-icon {
        font-size: 2.25rem;
        margin-bottom: 0.875rem;
    }

    .problem-title {
        font-size: 1.2rem;
        margin-bottom: 0.875rem;
    }

    .problem-desc {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .problem-cost-box {
        padding: 0.875rem 1rem;
        margin-top: 1rem;
    }

    .problem-cost {
        font-size: 0.85rem;
    }

    .solution-container {
        gap: 1.75rem;
    }

    .solution-list-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
        margin-bottom: 1.5rem;
    }

    .feature-list {
        gap: 1rem;
    }

    .feature-item {
        padding: 1.25rem 1rem;
        border-radius: 16px;
    }

    .feature-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        margin-bottom: 0.875rem;
    }

    .feature-text strong {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .feature-text p {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .results-showcase {
        padding: 1.75rem 1.25rem;
        border-radius: 20px;
    }

    .guarantee-grid {
        gap: 1.25rem;
    }

    .guarantee-card {
        padding: 1.75rem 1.25rem;
        border-radius: 16px;
    }

    .guarantee-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .guarantee-title {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }

    .guarantee-desc {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .final-cta-section {
        padding: 4rem 1rem;
    }

    .final-cta-content {
        width: 100%;
        max-width: 100%;
        padding: 0 1rem;
    }

    .final-cta-section::before {
        width: 800px;
        height: 800px;
    }

    .scarcity-badge {
        font-size: 0.8rem;
        padding: 0.625rem 1.5rem;
        margin-bottom: 1.5rem;
        letter-spacing: 1px;
    }

    .cta-title {
        font-size: clamp(1.75rem, 7vw, 3rem);
        margin-bottom: 1.25rem;
        letter-spacing: -1px;
    }

    .cta-subtitle {
        font-size: clamp(1rem, 2.5vw, 1.3rem);
        margin-bottom: 2rem;
        line-height: 1.6;
    }

    .cta-button {
        padding: 1.5rem 2rem;
        font-size: 1.1rem;
        margin-bottom: 2rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        white-space: normal;
        word-wrap: break-word;
    }

    .cta-features {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    .final-cta-section {
        padding: 3rem 0.75rem;
    }

    .final-cta-content {
        padding: 0 0.75rem;
    }

    .final-cta-section::before {
        width: 600px;
        height: 600px;
    }

    .scarcity-badge {
        font-size: 0.75rem;
        padding: 0.5rem 1.25rem;
        margin-bottom: 1.25rem;
        letter-spacing: 0.5px;
    }

    .cta-title {
        font-size: clamp(1.5rem, 6vw, 2.5rem);
        margin-bottom: 1rem;
    }

    .cta-subtitle {
        font-size: clamp(0.95rem, 2vw, 1.2rem);
        margin-bottom: 1.75rem;
    }

    .cta-button {
        padding: 1.25rem 1.75rem;
        font-size: 1rem;
        margin-bottom: 1.75rem;
    }

    .calendar-container {
        padding: 0;
    }

    .calendar-week {
        gap: 0.875rem;
        margin-bottom: 1.75rem;
    }

    .calendar-day {
        padding: 1.125rem 0.875rem;
        border-radius: 12px;
    }

    .day-header {
        font-size: 0.8rem;
        margin-bottom: 0.75rem;
    }

    .post-item {
        padding: 0.5rem 0.625rem;
        font-size: 0.75rem;
        margin-bottom: 0.375rem;
    }

    .post-platform {
        font-size: 0.7rem;
    }

    .nav-container {
        padding: 0.75rem 0.875rem;
        gap: 0.5rem;
    }

    .logo-text {
        font-size: 1.1rem;
    }

    .mobile-menu-toggle {
        padding: 0.5rem;
        min-width: 40px;
        min-height: 40px;
    }

    .mobile-menu-toggle span {
        width: 22px;
        height: 2.5px;
    }

    .nav-menu {
        padding: 0.75rem 0;
        left: 0.875rem;
        right: 0.875rem;
        max-width: calc(100vw - 1.75rem);
    }

    .nav-menu a {
        padding: 0.875rem 1rem;
        font-size: 0.9rem;
    }

    .hero {
        padding: 3.5rem 1rem 1.5rem;
    }

    .hero-alert {
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
        font-size: 0.7rem;
        padding: 0.65rem 1.25rem;
    }

    .section {
        padding: 2.5rem 1rem;
    }

    .section-divider {
        margin: 2.5rem auto;
        max-width: calc(100% - 2rem);
    }

    .section-divider::after {
        width: 6px;
        height: 6px;
    }

    /* Flash Sale Automation Extra Small */
    .flash-sale-demo {
        padding: 1.25rem;
        border-radius: 16px;
    }

    .trigger-flow {
        gap: 1.25rem;
    }

    .flow-step {
        gap: 0.875rem;
        align-items: center;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        order: 1;
    }

    .step-content {
        padding: 1rem 1.25rem;
        order: 2;
    }

    .step-title {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .step-desc {
        font-size: 0.85rem;
    }

    .step-time {
        font-size: 0.8rem;
    }

    /* Case Study Extra Small */
    .case-study-container {
        padding: 1.75rem 1.25rem;
    }

    .case-study-badge {
        font-size: 0.75rem;
        padding: 0.6rem 1.5rem;
        margin-bottom: 1.5rem;
    }

    .case-study-title {
        font-size: clamp(1.5rem, 7vw, 2rem);
        margin-bottom: 1.5rem;
    }

    .challenge-box {
        padding: 1.75rem 1.25rem;
        width: 100%;
        box-sizing: border-box;
    }

    .challenge-label {
        font-size: 0.85rem;
    }

    .challenge-text {
        font-size: 1rem;
        line-height: 1.6;
    }

    .results-comparison {
        gap: 1.25rem;
    }

    .result-column {
        padding: 1.75rem 1.25rem;
    }

    .result-percentage {
        font-size: clamp(2rem, 7vw, 3rem);
    }

    .result-period {
        font-size: 0.8rem;
    }

    .result-desc {
        font-size: 0.9rem;
    }

    /* Annual Savings Box Extra Small */
    .annual-savings-box {
        padding: 2rem 1.5rem;
    }

    .savings-box-label {
        font-size: 0.85rem;
        margin-bottom: 0.875rem;
    }

    .savings-box-amount {
        font-size: clamp(2rem, 9vw, 3.5rem);
    }
}

.footer {
    position: relative;
    background: rgba(10, 10, 26,0.85);
    color: white;
    padding: 2rem;
    text-align: center;
    padding-top: 5rem;
    padding-bottom: 3rem;

}
.section-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;

}
.highlight {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent; /* Example highlight color */
}
.footer-tagline {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #B8B8D1;
}
.footer-contact {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    color: rgba(255,255,255,0.7);
}
.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}
.social-links a {
    z-index: 10;
    color: #14039E;
    text-decoration: none;
    font-size: 1.5rem; /* Adjust for icon size */
    transition: color 0.1s ease-in-out;
    
}
.social-links a:hover {
    color: #0E1B4D; /* Example hover color; customize per icon */
}
.instagram-link:hover {
    color: rgb(244, 62, 96); /* Instagram hover */
}
.footer-copyright {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
}
/* Social icon SVGs can be styled similarly */
.social-icon {
    width: 35px;
    height: 35px;
    fill: currentColor; /* Inherits color from parent */
}
/* Hover scale effect */
.footer-social-icons {
    transition: transform 0.3s ease;
}
.footer-social-icons:hover {
    transform: scale(1.1);
    cursor: pointer;
}