/* ============================================
   GSM Gestão - Landing Page para Profissionais
   ============================================ */

/* Reset & Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --primary-color: #ED2120;
    --primary-hover: #C91A19;
    --primary-light: rgba(237, 33, 32, 0.1);
    --primary-lighter: rgba(237, 33, 32, 0.05);
    
    --text-primary: #1A1A1A;
    --text-secondary: #666666;
    --text-muted: #999999;
    
    --bg-white: #FFFFFF;
    --bg-light: #F8F9FA;
    --bg-gray: #F5F5F5;
    --bg-dark: #1A1A1A;
    
    --border-color: #E0E0E0;
    --border-light: #EEEEEE;
    
    /* Shadows */
    --shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.06);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 12px 40px rgba(0, 0, 0, 0.15);
    --shadow-primary: 0 4px 20px rgba(237, 33, 32, 0.25);
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
}

/* Base Styles */
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--bg-white);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

/* Section Base */
.section {
    padding: 100px 0;
    position: relative;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--primary-light);
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.section-badge-light {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.section-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.highlight {
    color: var(--primary-color);
}

.highlight-light {
    color: #FFD4D4;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition-normal);
    border: none;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(237, 33, 32, 0.35);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

.btn-light {
    background: white;
    color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.btn-light:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-large {
    padding: 18px 36px;
    font-size: 17px;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid transparent;
    transition: var(--transition-normal);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    border-bottom-color: var(--border-light);
    box-shadow: var(--shadow-sm);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    object-fit: contain;
}

.logo-text {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
}

.logo-highlight {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition-normal);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 12px 24px;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition-normal);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: white;
    padding: 24px;
    flex-direction: column;
    gap: 16px;
    border-bottom: 1px solid var(--border-light);
    box-shadow: var(--shadow-lg);
    transform: translateY(-100%);
    opacity: 0;
    transition: var(--transition-normal);
    z-index: 999;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
}

.mobile-menu a {
    padding: 12px 0;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border-light);
}

.mobile-menu a:last-child {
    border-bottom: none;
    margin-top: 8px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 100px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    top: -30%;
    right: -15%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(237, 33, 32, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-shapes .shape {
    position: absolute;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(237, 33, 32, 0.05) 0%, transparent 50%);
    top: 20%;
    left: -5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(237, 33, 32, 0.03) 0%, transparent 50%);
    bottom: 30%;
    right: 10%;
    animation-delay: 2s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(237, 33, 32, 0.04) 0%, transparent 50%);
    top: 50%;
    left: 40%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.hero .container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--primary-light);
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 24px;
}

.hero-badge svg {
    color: var(--primary-color);
}

.hero-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 19px);
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stat-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    border-radius: var(--radius-md);
    color: var(--primary-color);
}

.stat-content {
    text-align: left;
}

.stat-number {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.1;
}

.stat-label {
    font-size: 13px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    position: relative;
    width: 300px;
    height: 600px;
    background: linear-gradient(145deg, #1A1A1A 0%, #2D2D2D 100%);
    border-radius: 40px;
    padding: 12px;
    box-shadow: var(--shadow-xl), inset 0 0 0 2px rgba(255,255,255,0.1);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #F8F9FA 0%, #FFFFFF 100%);
    border-radius: 32px;
    padding: 40px 20px 20px;
    overflow: hidden;
}

.screen-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.notification-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    animation: slideIn 0.5s ease forwards;
    opacity: 0;
    transform: translateX(-20px);
}

.notification-card.delay-1 {
    animation-delay: 0.3s;
}

.notification-card.delay-2 {
    animation-delay: 0.6s;
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.notification-icon {
    font-size: 24px;
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border-radius: var(--radius-md);
}

.notification-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.notification-text strong {
    font-size: 14px;
    color: var(--text-primary);
}

.notification-text span {
    font-size: 12px;
    color: var(--text-secondary);
}

.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    background: white;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-lg);
    font-size: 14px;
    font-weight: 600;
    animation: floatBadge 3s ease-in-out infinite;
    z-index: 5;
}

.badge-icon {
    font-size: 18px;
}

.badge-1 {
    top: -20px;
    right: 20px;
    animation-delay: 0s;
}

.badge-2 {
    bottom: 60px;
    left: -80px;
    animation-delay: 1.5s;
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ============================================
   BENEFITS SECTION
   ============================================ */
.benefits {
    background: var(--bg-light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefit-card {
    padding: 40px 32px;
    background: white;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    transition: var(--transition-normal);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.benefit-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    border-radius: var(--radius-lg);
    color: var(--primary-color);
    margin-bottom: 24px;
}

.benefit-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.benefit-description {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */
.steps-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.step-card {
    flex: 0 0 220px;
    text-align: center;
    padding: 30px 20px;
    position: relative;
}

.step-number {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: white;
    font-size: 20px;
    font-weight: 700;
    border-radius: 50%;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-primary);
}

.step-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    border-radius: var(--radius-xl);
    color: var(--primary-color);
    margin: 0 auto 20px;
}

.step-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.step-description {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.step-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--border-color);
    padding-top: 60px;
}

/* ============================================
   CATEGORIES SECTION
   ============================================ */
.categories {
    background: var(--bg-light);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

.category-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    transition: var(--transition-normal);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.category-image {
    position: absolute;
    inset: 0;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.category-card:hover .category-image img {
    transform: scale(1.1);
}

.category-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    color: white;
}

.category-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.category-demand {
    font-size: 12px;
    padding: 4px 10px;
    background: var(--primary-color);
    border-radius: var(--radius-full);
    display: inline-block;
}

.more-categories {
    text-align: center;
}

.more-categories p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.category-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.category-tag {
    padding: 10px 18px;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    transition: var(--transition-normal);
}

.category-tag:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: var(--primary-light);
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    padding: 40px;
    background: var(--bg-light);
    border-radius: var(--radius-xl);
    transition: var(--transition-normal);
}

.testimonial-card:hover {
    background: white;
    box-shadow: var(--shadow-lg);
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonial-rating span {
    color: #FFC107;
    font-size: 18px;
}

.testimonial-text {
    font-size: 16px;
    color: var(--text-primary);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 16px;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info strong {
    font-size: 16px;
    color: var(--text-primary);
}

.author-info span {
    font-size: 13px;
    color: var(--text-secondary);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: white;
    overflow: hidden;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 32px;
    line-height: 1.7;
}

.cta-benefits {
    list-style: none;
    margin-bottom: 40px;
}

.cta-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 16px;
}

.cta-benefits svg {
    color: white;
    min-width: 20px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-note {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    opacity: 0.8;
    margin-top: 20px;
}

.cta-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.app-preview {
    text-align: center;
}

.app-logo-large {
    width: 200px;
    height: 200px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    margin: 0 auto 24px;
    object-fit: contain;
    background: white;
    padding: 16px;
}

.app-badge {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.app-rating {
    font-size: 24px;
    font-weight: 700;
}

.app-downloads {
    font-size: 14px;
    opacity: 0.9;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-light);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 17px;
    font-weight: 600;
    color: var(--text-primary);
    transition: var(--transition-normal);
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-question svg {
    color: var(--text-secondary);
    transition: var(--transition-normal);
    min-width: 24px;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
    color: var(--primary-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding-bottom: 24px;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    max-width: 320px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand .logo-text {
    color: white;
}

.footer-description {
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    transition: var(--transition-normal);
}

.footer-column a:hover {
    color: white;
}

.store-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 600;
    color: white;
    transition: var(--transition-normal);
}

.store-badge:hover {
    background: rgba(255,255,255,0.2);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
}

/* ============================================
   ANIMATIONS
   ============================================ */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate="fade-left"] {
    transform: translateX(30px);
}

[data-animate].animated {
    opacity: 1;
    transform: translateY(0) translateX(0);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
    .hero .container {
        gap: 40px;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 968px) {
    .section {
        padding: 80px 0;
    }
    
    .nav-links,
    .nav-cta {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-menu {
        display: flex;
    }
    
    .hero {
        min-height: auto;
        padding: 120px 0 80px;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-visual {
        margin-top: 40px;
    }
    
    .phone-mockup {
        width: 250px;
        height: 500px;
    }
    
    .floating-badge {
        display: none;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .cta-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .cta-benefits {
        display: inline-block;
        text-align: left;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-brand {
        max-width: 100%;
        text-align: center;
    }
    
    .footer-brand .logo {
        justify-content: center;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: clamp(28px, 6vw, 36px);
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .hero-title {
        font-size: clamp(28px, 7vw, 42px);
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .benefit-card {
        padding: 32px 24px;
    }
    
    .steps-container {
        flex-direction: column;
        gap: 0;
    }
    
    .step-connector {
        transform: rotate(90deg);
        padding: 20px 0;
    }
    
    .step-card {
        flex: 0 0 auto;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .category-card {
        aspect-ratio: 1.2;
    }
    
    .cta-title {
        font-size: clamp(28px, 6vw, 36px);
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 50px 0;
    }
    
    .navbar .container {
        height: 70px;
    }
    
    .logo-img {
        width: 40px;
        height: 40px;
    }
    
    .logo-text {
        font-size: 18px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 15px;
    }
    
    .btn-large {
        padding: 16px 28px;
        font-size: 15px;
    }
    
    .phone-mockup {
        width: 220px;
        height: 440px;
    }
    
    .notification-card {
        padding: 12px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .benefit-icon {
        width: 56px;
        height: 56px;
    }
    
    .testimonial-card {
        padding: 24px;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .category-card {
        aspect-ratio: 1.5;
    }
    
    .app-logo-large {
        width: 150px;
        height: 150px;
    }
}

/* ============================================
   ENHANCED VISUAL ELEMENTS
   ============================================ */

/* Hero Image Background */
.hero-image-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero-image-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--bg-white) 0%, transparent 50%);
}

/* Floating Icons */
.floating-icons {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.floating-icon {
    position: absolute;
    font-size: 40px;
    opacity: 0.1;
    animation: floatIcon 8s ease-in-out infinite;
}

.icon-1 { top: 15%; left: 10%; animation-delay: 0s; }
.icon-2 { top: 25%; right: 15%; animation-delay: 1s; }
.icon-3 { top: 60%; left: 5%; animation-delay: 2s; }
.icon-4 { bottom: 20%; right: 25%; animation-delay: 3s; }
.icon-5 { top: 45%; left: 30%; animation-delay: 4s; }

@keyframes floatIcon {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.1; }
    50% { transform: translateY(-30px) rotate(15deg); opacity: 0.2; }
}

/* More shapes */
.shape-4 {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(237, 33, 32, 0.08) 0%, transparent 50%);
    top: 70%;
    right: 30%;
    animation-delay: 1s;
}

.shape-5 {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(237, 33, 32, 0.06) 0%, transparent 50%);
    top: 30%;
    left: 60%;
    animation-delay: 3s;
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, var(--primary-color) 0%, #FF6B6B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Pulse Animation */
.pulse-animation {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(237, 33, 32, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(237, 33, 32, 0); }
}

/* Button Glow */
.btn-glow {
    position: relative;
    overflow: hidden;
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: rotate(45deg);
    animation: btnGlow 3s linear infinite;
}

@keyframes btnGlow {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

/* Hero Trusted Section */
.hero-trusted {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border-light);
}

.hero-trusted > span {
    font-size: 13px;
    color: var(--text-muted);
    display: block;
    margin-bottom: 12px;
}

.trusted-avatars {
    display: flex;
    align-items: center;
}

.trusted-avatars img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid white;
    margin-left: -12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.trusted-avatars img:first-child {
    margin-left: 0;
}

.trusted-avatars img:hover {
    transform: translateY(-5px) scale(1.1);
    z-index: 1;
}

.more-count {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    font-size: 11px;
    font-weight: 700;
    margin-left: -12px;
    border: 3px solid white;
}

/* Hero Image Showcase */
.hero-image-showcase {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.main-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.main-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.image-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(237, 33, 32, 0.1) 100%);
}

.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    animation: floatCard 4s ease-in-out infinite;
    z-index: 10;
}

.card-1 {
    top: 10px;
    right: -50px;
    animation-delay: 0s;
}

.card-2 {
    bottom: 140px;
    left: -60px;
    animation-delay: 1s;
}

.card-3 {
    bottom: 30px;
    right: 10px;
    animation-delay: 2s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.card-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    font-size: 20px;
}

.card-icon.success {
    background: #E8F5E9;
    color: #4CAF50;
}

.card-icon.money {
    background: #FFF8E1;
}

.card-icon.rating {
    background: #FFF3E0;
}

.card-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.card-text strong {
    font-size: 14px;
    color: var(--text-primary);
}

.card-text span {
    font-size: 11px;
    color: var(--text-secondary);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: fadeInUp 1s ease 1s forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    to { opacity: 1; }
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--text-muted);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { opacity: 1; top: 8px; }
    100% { opacity: 0; top: 20px; }
}

.scroll-indicator span {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Social Proof Banner */
.social-proof-banner {
    background: var(--bg-gray);
    padding: 30px 0;
    overflow: hidden;
}

.proof-items {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.proof-item img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.proof-item span {
    font-size: 14px;
    color: var(--text-secondary);
    font-style: italic;
}

/* Benefits Banner */
.benefits-banner {
    position: relative;
    height: 250px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: 60px;
}

.banner-images {
    display: flex;
    width: 100%;
    height: 100%;
}

.banner-images img {
    flex: 1;
    width: 33.333%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.banner-images img:hover {
    flex: 1.5;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.7) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 30px;
}

.banner-overlay h3 {
    color: white;
    font-size: 24px;
    text-align: center;
}

/* Testimonials Enhanced */
.testimonials {
    position: relative;
    overflow: hidden;
}

.testimonials-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.testimonials-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(237, 33, 32, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(237, 33, 32, 0.03) 0%, transparent 50%);
}

/* Video Testimonial */
.video-testimonial {
    display: flex;
    gap: 30px;
    align-items: center;
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: 60px;
}

.video-thumbnail {
    position: relative;
    width: 400px;
    min-height: 250px;
    flex-shrink: 0;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-normal);
}

.video-overlay:hover {
    background: rgba(0,0,0,0.5);
}

.play-button {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.play-button svg {
    color: var(--primary-color);
    margin-left: 4px;
}

.video-overlay:hover .play-button {
    transform: scale(1.1);
}

.video-info {
    padding: 30px;
}

.video-info h3 {
    font-size: 24px;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.video-info p {
    color: var(--text-secondary);
}

/* Testimonial Cards Enhanced */
.testimonial-card {
    position: relative;
    padding: 30px;
    background: white;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    transition: var(--transition-normal);
    text-align: center;
}

.testimonial-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
}

.testimonial-image {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-light);
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
}

.tstat {
    text-align: center;
}

.tstat strong {
    display: block;
    font-size: 20px;
    color: var(--primary-color);
}

.tstat span {
    font-size: 12px;
    color: var(--text-muted);
}

/* More Testimonials */
.more-testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.mini-testimonial {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
}

.mini-testimonial img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.mini-testimonial p {
    font-size: 14px;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.mini-testimonial span {
    font-size: 12px;
    color: var(--text-muted);
}

/* Results Section */
.results-section {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #2D2D2D 100%);
    color: white;
}

.results-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.results-text .section-badge {
    background: rgba(237, 33, 32, 0.2);
}

.results-text .section-title {
    color: white;
}

.results-text p {
    color: rgba(255,255,255,0.7);
    font-size: 18px;
    margin-bottom: 40px;
}

.results-numbers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.result-item {
    text-align: center;
}

.result-value {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    display: inline;
}

.result-suffix {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-color);
}

.result-label {
    display: block;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    margin-top: 8px;
}

.result-image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.result-image-grid img {
    border-radius: var(--radius-lg);
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: var(--transition-normal);
}

.result-image-grid img:hover {
    transform: scale(1.05);
}

.result-image-grid .img-1 {
    grid-row: span 2;
    height: 100%;
}

/* ============================================
   RESPONSIVE UPDATES
   ============================================ */
@media (max-width: 1200px) {
    .floating-badge {
        display: none;
    }
    
    .card-1 {
        top: 10px;
        right: -20px;
    }
    
    .card-2 {
        bottom: 120px;
        left: -30px;
    }
    
    .card-3 {
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 968px) {
    .hero-image-bg {
        display: none;
    }
    
    .floating-icons {
        display: none;
    }
    
    .hero-image-showcase {
        max-width: 350px;
        margin: 0 auto;
    }
    
    .floating-card {
        display: none;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .hero-trusted {
        text-align: center;
    }
    
    .trusted-avatars {
        justify-content: center;
    }
    
    .video-testimonial {
        flex-direction: column;
    }
    
    .video-thumbnail {
        width: 100%;
        min-height: 200px;
    }
    
    .results-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .results-numbers {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .result-image-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .result-image-grid .img-1 {
        grid-row: auto;
        height: 180px;
    }
    
    .more-testimonials {
        grid-template-columns: 1fr;
    }
    
    .proof-items {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .benefits-banner {
        height: 200px;
    }
    
    .banner-overlay h3 {
        font-size: 18px;
    }
    
    .results-numbers {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .result-value {
        font-size: 36px;
    }
    
    .result-image-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card.featured {
        transform: none;
    }
    
    .proof-items {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .main-image img {
        height: 300px;
    }
    
    .trusted-avatars img,
    .more-count {
        width: 36px;
        height: 36px;
        font-size: 10px;
    }
    
    .benefits-banner {
        height: 150px;
    }
    
    .banner-images img:hover {
        flex: 1;
    }
    
    .video-info h3 {
        font-size: 18px;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
    }
}

/* Smooth scrolling for anchor links */
html {
    scroll-padding-top: 100px;
}

/* Selection color */
::selection {
    background: var(--primary-light);
    color: var(--primary-color);
}

/* Focus styles for accessibility */
a:focus,
button:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Ripple Effect */
.btn {
    position: relative;
    overflow: hidden;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: scale(0);
    animation: rippleEffect 0.6s linear;
    pointer-events: none;
}

@keyframes rippleEffect {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Image loading animation */
img {
    transition: opacity 0.3s ease;
}

img.loaded {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Benefit icon transition */
.benefit-icon {
    transition: transform 0.3s ease;
}

/* Category cards enhancement */
.category-card {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                box-shadow 0.3s ease;
}

/* Shimmer loading effect */
.shimmer {
    background: linear-gradient(90deg, 
        var(--bg-light) 0%, 
        var(--bg-white) 50%, 
        var(--bg-light) 100%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Glow effect for primary elements */
.primary-glow {
    box-shadow: 0 0 40px rgba(237, 33, 32, 0.3);
}

/* Text reveal animation */
.reveal-text {
    clip-path: inset(0 100% 0 0);
    animation: revealText 1s ease forwards;
}

@keyframes revealText {
    to { clip-path: inset(0 0 0 0); }
}

/* Bounce animation for attention */
.bounce {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-20px); }
    60% { transform: translateY(-10px); }
}

/* Gradient border effect */
.gradient-border {
    position: relative;
    background: white;
    border-radius: var(--radius-lg);
}

.gradient-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--primary-color), #FF6B6B, var(--primary-color));
    border-radius: inherit;
    z-index: -1;
    animation: gradientRotate 3s linear infinite;
}

@keyframes gradientRotate {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
}

/* Hover lift effect */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

/* Stagger animation helper */
.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }

/* Particle background effect (optional) */
.particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    opacity: 0.1;
    border-radius: 50%;
    animation: particleFloat 10s infinite;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    25% {
        transform: translateY(-100px) translateX(50px);
    }
    50% {
        transform: translateY(-50px) translateX(-30px);
    }
    75% {
        transform: translateY(-150px) translateX(20px);
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}
