/* ==========================================
   PLOTEX - Next Gen 3D Plot Viewing
   Modern Dark Theme with Smooth Animations
   ========================================== */

/* CSS Variables */
:root {
    --bg-primary: #000000;
    --bg-secondary: #050505;
    --bg-tertiary: #0a0a0a;
    --bg-card: #0d0d0d;
    --bg-card-hover: #111111;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --text-muted: #666666;
    /* Green Colors (from logo) */
    --green-primary: #4CAF50;
    --green-light: #7BC043;
    --green-dark: #2E7D32;
    /* Blue Colors (from logo) */
    --blue-primary: #2196F3;
    --blue-light: #42A5F5;
    --blue-dark: #1565C0;
    /* Accent colors - using green as primary */
    --accent-primary: #4CAF50;
    --accent-secondary: #7BC043;
    --accent-tertiary: #2E7D32;
    --accent-blue: #2196F3;
    --accent-glow: rgba(76, 175, 80, 0.15);
    --accent-glow-strong: rgba(76, 175, 80, 0.4);
    --accent-glow-blue: rgba(33, 150, 243, 0.15);
    /* Gradients - Green to Blue like logo */
    --gradient-primary: linear-gradient(135deg, #7BC043 0%, #4CAF50 50%, #2196F3 100%);
    --gradient-green: linear-gradient(135deg, #7BC043 0%, #4CAF50 100%);
    --gradient-blue: linear-gradient(135deg, #42A5F5 0%, #1565C0 100%);
    --gradient-logo: linear-gradient(135deg, #7BC043 0%, #4CAF50 35%, #2196F3 65%, #1565C0 100%);
    --gradient-dark: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.8) 100%);
    --border-color: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(76, 175, 80, 0.3);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 40px rgba(76, 175, 80, 0.2);
    --shadow-glow-blue: 0 0 40px rgba(33, 150, 243, 0.2);
    --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-medium: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Space Grotesk', sans-serif;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-primary);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ==========================================
   PRELOADER
   ========================================== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
}

.loader-cube {
    width: 50px;
    height: 50px;
    margin: 0 auto 1.5rem;
    position: relative;
    transform-style: preserve-3d;
    animation: rotateCube 2s infinite linear;
}

.cube-face {
    position: absolute;
    width: 50px;
    height: 50px;
    border: 2px solid var(--green-primary);
    background: rgba(76, 175, 80, 0.1);
}

.cube-face.front { transform: translateZ(25px); border-color: var(--green-light); }
.cube-face.back { transform: translateZ(-25px) rotateY(180deg); border-color: var(--blue-primary); }
.cube-face.right { transform: translateX(25px) rotateY(90deg); border-color: var(--blue-light); }
.cube-face.left { transform: translateX(-25px) rotateY(-90deg); border-color: var(--green-primary); }
.cube-face.top { transform: translateY(-25px) rotateX(90deg); border-color: var(--green-light); }
.cube-face.bottom { transform: translateY(25px) rotateX(-90deg); border-color: var(--blue-primary); }

@keyframes rotateCube {
    0% { transform: rotateX(0deg) rotateY(0deg); }
    100% { transform: rotateX(360deg) rotateY(360deg); }
}

.loader-text {
    color: var(--text-secondary);
    font-size: 0.875rem;
    letter-spacing: 2px;
}

/* ==========================================
   PARTICLE CANVAS
   ========================================== */
#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* ==========================================
   TYPOGRAPHY
   ========================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.1;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* ==========================================
   HEADER
   ========================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 2rem;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    transition: all var(--transition-medium);
}

.header.scrolled {
    padding: 0.75rem 2rem;
    background: rgba(0, 0, 0, 0.95);
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-icon {
    width: 55px;
    height: 55px;
}

.logo-icon img,
.logo-icon svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--green-primary);
}

.logo-ex {
    color: var(--blue-primary);
}

.tagline {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 2px;
    margin-top: -3px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-primary);
    transition: width var(--transition-medium);
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.cta-link {
    padding: 0.5rem 1.25rem;
    background: var(--accent-primary);
    color: var(--bg-primary);
    border-radius: var(--radius-sm);
    font-weight: 600;
}

.nav-link.cta-link::after {
    display: none;
}

.nav-link.cta-link:hover {
    background: var(--accent-secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.version {
    font-size: 0.7rem;
    color: var(--text-muted);
    padding: 0.25rem 0.5rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all var(--transition-medium);
}

.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 {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(20px);
    padding: 1.5rem;
    flex-direction: column;
    gap: 1rem;
    z-index: 999;
    transform: translateY(-100%);
    opacity: 0;
    transition: all var(--transition-medium);
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
}

.mobile-link {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-medium);
    border: none;
    outline: none;
}

.btn-primary {
    background: var(--accent-primary);
    color: var(--bg-primary);
}

.btn-primary:hover {
    background: var(--accent-secondary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    transform: translateY(-3px);
}

.btn-full {
    width: 100%;
}

.btn svg {
    transition: transform var(--transition-medium);
}

.btn:hover svg {
    transform: translateX(4px);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 2rem 4rem;
    overflow: hidden;
}

.hero-bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(0, 255, 136, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 136, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.hero-text {
    position: relative;
    z-index: 10;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--accent-primary);
    margin-bottom: 1.5rem;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 500px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-primary);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-color);
}

/* Hero Visual / Device Showcase */
.hero-visual {
    position: relative;
    z-index: 5;
}

.device-showcase {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Decorative Vectors Container */
.deco-vectors {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: visible;
}

/* Location Pins */
.deco-pin {
    position: absolute;
}

.deco-pin-1 {
    width: 40px;
    height: 60px;
    top: -10px;
    left: 10%;
    animation: pinBounce 3s ease-in-out infinite;
}

.deco-pin-2 {
    width: 28px;
    height: 42px;
    bottom: 20%;
    right: -15px;
    animation: pinBounce 3.5s ease-in-out infinite 0.5s;
}

/* 3D Cube */
.deco-cube {
    position: absolute;
}

.deco-cube-1 {
    width: 60px;
    height: 60px;
    top: 5%;
    right: 10%;
    animation: cubeRotate 15s linear infinite;
}

/* Plot outline */
.deco-plot {
    position: absolute;
}

.deco-plot-1 {
    width: 100px;
    height: 75px;
    bottom: 5%;
    left: -40px;
    animation: plotPulse 4s ease-in-out infinite;
}

/* Compass */
.deco-compass {
    position: absolute;
    width: 70px;
    height: 70px;
    top: 60%;
    right: -25px;
    animation: compassSpin 20s linear infinite;
}

/* Grid */
.deco-grid {
    position: absolute;
    width: 120px;
    height: 120px;
    bottom: -20px;
    left: 15%;
    opacity: 0.5;
    animation: gridFade 5s ease-in-out infinite;
}

/* Measurement */
.deco-measure {
    position: absolute;
    width: 100px;
    height: 25px;
    top: 15%;
    left: -30px;
    animation: measureSlide 4s ease-in-out infinite;
}

/* Road */
.deco-road {
    position: absolute;
    width: 150px;
    height: 80px;
    bottom: 30%;
    right: -60px;
    animation: roadMove 6s ease-in-out infinite;
}

/* Trees */
.deco-tree {
    position: absolute;
}

.deco-tree-1 {
    width: 30px;
    height: 38px;
    top: 35%;
    left: -20px;
    animation: treeWave 4s ease-in-out infinite;
}

.deco-tree-2 {
    width: 22px;
    height: 28px;
    top: 10%;
    right: 25%;
    animation: treeWave 5s ease-in-out infinite 1s;
}

/* Area marker */
.deco-area {
    position: absolute;
}

.deco-area-1 {
    width: 50px;
    height: 50px;
    bottom: 10%;
    right: 15%;
    animation: areaPulse 3s ease-in-out infinite;
}

/* Crosshair */
.deco-crosshair {
    position: absolute;
    width: 45px;
    height: 45px;
    top: 50%;
    left: -10px;
    animation: crosshairPulse 2s ease-in-out infinite;
}

/* Mini plots */
.deco-miniplot {
    position: absolute;
}

.deco-miniplot-1 {
    width: 24px;
    height: 24px;
    top: 25%;
    right: 5%;
    animation: miniplotFloat 4s ease-in-out infinite;
}

.deco-miniplot-2 {
    width: 18px;
    height: 18px;
    bottom: 40%;
    left: 5%;
    animation: miniplotFloat 5s ease-in-out infinite 1s;
}

/* Glow effects */
.deco-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}

.deco-glow-1 {
    width: 200px;
    height: 200px;
    background: rgba(76, 175, 80, 0.08);
    top: -50px;
    left: -50px;
}

.deco-glow-2 {
    width: 150px;
    height: 150px;
    background: rgba(33, 150, 243, 0.06);
    bottom: -30px;
    right: -30px;
}

/* Animations */
@keyframes pinBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@keyframes cubeRotate {
    0% { transform: rotate(0deg) rotateY(0deg); }
    100% { transform: rotate(360deg) rotateY(360deg); }
}

@keyframes plotPulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.05); opacity: 0.5; }
}

@keyframes compassSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes gridFade {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

@keyframes measureSlide {
    0%, 100% { transform: translateX(0); opacity: 0.4; }
    50% { transform: translateX(10px); opacity: 0.6; }
}

@keyframes roadMove {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-10px); }
}

@keyframes treeWave {
    0%, 100% { transform: rotate(-3deg); }
    50% { transform: rotate(3deg); }
}

@keyframes areaPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.15); opacity: 0.7; }
}

@keyframes crosshairPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

@keyframes miniplotFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(5deg); }
}

/* Device Glow */
.device-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180%;
    height: 180%;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.15) 0%, rgba(33, 150, 243, 0.08) 40%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

/* iPhone Style Phone Device */
.device.phone {
    position: absolute;
    width: 200px;
    top: 50%;
    z-index: 2;
}

.device.phone .device-frame {
    position: relative;
    background: linear-gradient(145deg, #e8e8e8, #c0c0c0, #a8a8a8);
    border-radius: 40px;
    padding: 12px;
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 15px 30px rgba(0, 0, 0, 0.3),
        inset 0 2px 4px rgba(255, 255, 255, 0.8),
        inset 0 -2px 4px rgba(0, 0, 0, 0.1),
        0 0 80px rgba(76, 175, 80, 0.15),
        0 0 120px rgba(33, 150, 243, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* iPhone Notch */
.device.phone .device-frame::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 25px;
    background: #1a1a1a;
    border-radius: 0 0 15px 15px;
    z-index: 10;
}

/* iPhone Side Button */
.device.phone .device-frame::after {
    content: '';
    position: absolute;
    right: -3px;
    top: 100px;
    width: 4px;
    height: 40px;
    background: linear-gradient(180deg, #d0d0d0, #a0a0a0, #d0d0d0);
    border-radius: 0 3px 3px 0;
}

.device.phone .device-screen {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    aspect-ratio: 9/19.5;
    background: #000;
    border: 3px solid #1a1a1a;
}

.device.phone .device-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Home Indicator */
.device.phone .device-screen::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
}

/* Left Phone */
.device.phone.phone-left {
    left: 50%;
    transform: translate(-115%, -50%) rotate(-12deg);
    z-index: 1;
}

/* Right Phone */
.device.phone.phone-right {
    left: 50%;
    transform: translate(15%, -50%) rotate(12deg);
    z-index: 2;
}

/* Premium Silver Frame for Left Phone */
.device.phone.phone-left .device-frame {
    background: linear-gradient(145deg, #f5f5f5, #d0d0d0, #b8b8b8);
}

/* Premium Gold/Rose Frame for Right Phone */
.device.phone.phone-right .device-frame {
    background: linear-gradient(145deg, #e8dcd0, #d4c4b8, #c8b8a8);
}

@keyframes floatPhone {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Floating Cards */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}

.float-card {
    position: absolute;
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 0.6rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.8rem;
    box-shadow: var(--shadow-md);
    white-space: nowrap;
}

.float-icon {
    width: 28px;
    height: 28px;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-primary);
    flex-shrink: 0;
}

.float-icon svg {
    width: 14px;
    height: 14px;
}

.float-value {
    font-weight: 600;
    color: var(--accent-primary);
}

.float-value.available {
    color: #00ff88;
}

.float-1 {
    top: 5%;
    left: 5%;
    animation: floatCard 4s ease-in-out infinite;
}

.float-2 {
    bottom: 10%;
    right: 5%;
    animation: floatCard 4s ease-in-out infinite 1s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 0;
    right: 0;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.75rem;
    animation: fadeInUp 1s ease forwards 1.5s;
    opacity: 0;
    width: 100%;
    text-align: center;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--text-muted);
    border-radius: 12px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--accent-primary);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

/* ==========================================
   SECTION STYLES
   ========================================== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-primary);
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================
   FEATURES SECTION - Device Centric Layout
   ========================================== */
.features {
    position: relative;
    z-index: 10;
    padding: 5rem 0 3rem;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    overflow: hidden;
}

/* Main Layout - 3 columns */
.features-device-layout {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Feature Columns */
.features-column {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.features-left .feature-item {
    flex-direction: row;
    text-align: right;
}

.features-right .feature-item {
    flex-direction: row-reverse;
    text-align: left;
}

/* Individual Feature Item */
.feature-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    position: relative;
}

.feature-content {
    flex: 1;
}

.feature-number {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-primary);
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    opacity: 0.7;
}

.feature-item h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    transition: color var(--transition-medium);
}

.feature-item p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.feature-item:hover h3 {
    color: var(--accent-primary);
}

/* Feature Icon Circle */
.feature-icon-circle {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-primary);
    transition: all var(--transition-medium);
    position: relative;
    z-index: 2;
}

.feature-icon-circle svg {
    width: 24px;
    height: 24px;
}

.feature-item:hover .feature-icon-circle {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    color: var(--bg-primary);
    box-shadow: 0 0 30px var(--accent-glow-strong);
    transform: scale(1.1);
}

/* Feature Connector Lines */
.feature-connector {
    position: relative;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--border-color), var(--accent-primary));
    opacity: 0.5;
}

.features-left .feature-connector {
    background: linear-gradient(90deg, transparent, var(--border-color), var(--accent-primary));
}

.features-right .feature-connector {
    background: linear-gradient(90deg, var(--accent-primary), var(--border-color), transparent);
}

.feature-item:hover .feature-connector {
    opacity: 1;
    background: var(--accent-primary);
}

/* Center Device */
.features-device-center {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.center-phone-frame {
    position: relative;
    background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
    border-radius: 40px;
    padding: 10px;
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    z-index: 2;
}

.center-phone-frame .phone-notch {
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 24px;
    background: #000;
    border-radius: 12px;
    z-index: 10;
}

.center-phone-frame .phone-screen {
    width: 240px;
    aspect-ratio: 9/19;
    border-radius: 32px;
    overflow: hidden;
    background: var(--bg-tertiary);
}

.center-phone-frame .phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Center Device Glow */
.center-device-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.15) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

/* Animated Ring */
.center-device-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    height: 320px;
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 50%;
    z-index: 1;
    animation: ringPulse 3s ease-in-out infinite;
}

.center-device-ring::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border: 1px solid rgba(0, 255, 136, 0.1);
    border-radius: 50%;
    animation: ringPulse 3s ease-in-out infinite 0.5s;
}

.center-device-ring::after {
    content: '';
    position: absolute;
    top: -40px;
    left: -40px;
    right: -40px;
    bottom: -40px;
    border: 1px solid rgba(0, 255, 136, 0.05);
    border-radius: 50%;
    animation: ringPulse 3s ease-in-out infinite 1s;
}

@keyframes ringPulse {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.05);
    }
}

/* Mobile Responsive Features */
@media (max-width: 1024px) {
    .features-device-layout {
        display: flex;
        flex-direction: column;
        gap: 3rem;
    }

    .features-device-center {
        order: 1;
    }

    .features-left {
        order: 2;
    }

    .features-right {
        order: 3;
    }

    .features-column {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    /* Reverse order for right column items to maintain 4,5,6 order */
    .features-right .feature-item:nth-child(1) { order: 1; }
    .features-right .feature-item:nth-child(2) { order: 2; }
    .features-right .feature-item:nth-child(3) { order: 3; }

    .feature-item {
        flex-direction: column !important;
        text-align: center !important;
        max-width: 300px;
        width: 100%;
    }

    /* Ensure icon appears first, then content in mobile for all items */
    .feature-item .feature-icon-circle {
        order: 1;
    }
    .feature-item .feature-content {
        order: 2;
    }
    .feature-item .feature-connector {
        order: 3;
    }

    .feature-connector {
        display: none;
    }

    .center-device-ring,
    .center-device-ring::before,
    .center-device-ring::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .features {
        padding: 5rem 0;
    }

    .center-phone-frame .phone-screen {
        width: 200px;
    }

    .center-phone-frame {
        border-radius: 32px;
        padding: 8px;
    }

    .center-phone-frame .phone-notch {
        width: 60px;
        height: 20px;
        top: 14px;
    }

    .center-phone-frame .phone-screen {
        border-radius: 26px;
    }

    .feature-icon-circle {
        width: 48px;
        height: 48px;
        min-width: 48px;
    }

    .feature-icon-circle svg {
        width: 20px;
        height: 20px;
    }

    .feature-item h3 {
        font-size: 1rem;
    }

    .feature-item p {
        font-size: 0.8rem;
    }
}

/* ==========================================
   SHOWCASE SECTION
   ========================================== */
.showcase {
    position: relative;
    z-index: 10;
    padding: 1rem 0 5rem;
    background: var(--bg-secondary);
}

.showcase-devices {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
}

.showcase-wrapper {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

/* Monitor - iMac Style */
.showcase-device.monitor {
    text-align: center;
}

.monitor-frame {
    background: linear-gradient(145deg, #e8e8e8, #d0d0d0);
    border-radius: 16px;
    padding: 12px 12px 35px;
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.8),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.monitor-frame::after {
    content: '';
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    background: #333;
    border-radius: 50%;
}

.monitor-screen {
    width: 500px;
    aspect-ratio: 16/10;
    border-radius: 4px;
    overflow: hidden;
    background: #000;
    border: 3px solid #000;
}

.monitor-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.monitor-stand {
    width: 100px;
    height: 70px;
    background: linear-gradient(to bottom, #d0d0d0, #b0b0b0);
    margin: 0 auto;
    clip-path: polygon(15% 0%, 85% 0%, 100% 100%, 0% 100%);
    border-left: 1px solid rgba(255, 255, 255, 0.5);
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.monitor-base {
    width: 180px;
    height: 8px;
    background: linear-gradient(145deg, #d0d0d0, #a0a0a0);
    border-radius: 4px;
    margin: 0 auto;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Tablet Showcase - iPad Style */
.showcase-device.tablet-showcase {
    text-align: center;
}

.tablet-frame {
    background: linear-gradient(145deg, #e8e8e8, #d0d0d0);
    border-radius: 20px;
    padding: 14px;
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.8),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

/* iPad Camera */
.tablet-frame::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 6px;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #333;
    border-radius: 50%;
}

.tablet-screen {
    width: 300px;
    aspect-ratio: 4/3;
    border-radius: 4px;
    overflow: hidden;
    background: #000;
    border: 3px solid #000;
}

.tablet-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Phone Showcase - iPhone Style */
.showcase-device.phone-showcase {
    text-align: center;
}

.phone-frame {
    background: linear-gradient(145deg, #e8e8e8, #d0d0d0);
    border-radius: 35px;
    padding: 10px;
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.8),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

/* iPhone Side Button */
.phone-frame::after {
    content: '';
    position: absolute;
    right: -3px;
    top: 80px;
    width: 4px;
    height: 30px;
    background: linear-gradient(180deg, #d0d0d0, #a0a0a0, #d0d0d0);
    border-radius: 0 3px 3px 0;
}

.phone-notch {
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 20px;
    background: #1a1a1a;
    border-radius: 0 0 12px 12px;
    z-index: 10;
}

.phone-screen {
    width: 160px;
    aspect-ratio: 9/19;
    border-radius: 26px;
    overflow: hidden;
    background: #000;
    border: 3px solid #1a1a1a;
}

/* Home Indicator for iPhone */
.phone-screen::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

.phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.device-label {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Showcase Features */
.showcase-features {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.showcase-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: all var(--transition-medium);
}

.showcase-feature:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.sf-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 255, 136, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-primary);
}

.sf-icon svg {
    width: 24px;
    height: 24px;
}

.sf-content h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.sf-content p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ==========================================
   TRANSFORM SECTION
   ========================================== */
.transform {
    position: relative;
    z-index: 10;
    padding: 8rem 0 2rem;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.transform-showcase {
    max-width: 1100px;
    margin: 0 auto;
}

.transform-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 3rem;
}

.transform-side {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-medium);
}

.transform-side:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.transform-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: var(--bg-tertiary);
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9rem;
}

.label-icon {
    font-size: 1.25rem;
}

.label-year {
    margin-left: auto;
    padding: 0.25rem 0.75rem;
    background: var(--bg-card);
    border-radius: 20px;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.transform-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.transform-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.transform-side:hover .transform-image img {
    transform: scale(1.05);
}

.old-stamp {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-15deg);
    padding: 0.5rem 1.5rem;
    background: rgba(255, 100, 100, 0.9);
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: var(--radius-sm);
    opacity: 0.8;
}

.new-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    background: var(--accent-primary);
    color: var(--bg-primary);
    font-weight: 700;
    font-size: 0.75rem;
    border-radius: 20px;
    letter-spacing: 1px;
}

.transform-cons,
.transform-pros {
    padding: 1.25rem 1.5rem;
}

.con-item,
.pro-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.9rem;
}

.con-item svg {
    width: 20px;
    height: 20px;
    color: #ff6b6b;
    flex-shrink: 0;
}

.pro-item svg {
    width: 20px;
    height: 20px;
    color: var(--accent-primary);
    flex-shrink: 0;
}

/* Transform Arrow */
.transform-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.arrow-line {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--accent-primary), transparent);
}

.arrow-circle {
    width: 60px;
    height: 60px;
    background: var(--accent-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-primary);
    box-shadow: var(--shadow-glow);
    animation: pulseArrow 2s infinite;
}

.arrow-circle svg {
    width: 24px;
    height: 24px;
}

@keyframes pulseArrow {
    0%, 100% { box-shadow: 0 0 0 0 var(--accent-glow-strong); }
    50% { box-shadow: 0 0 0 20px transparent; }
}

.arrow-text {
    font-size: 0.75rem;
    color: var(--accent-primary);
    font-weight: 600;
    letter-spacing: 1px;
}

/* Transform Quote */
.transform-quote {
    text-align: center;
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
}

.transform-quote blockquote {
    font-size: 1.5rem;
    font-family: var(--font-display);
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.quote-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--accent-primary);
    color: var(--bg-primary);
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 20px;
    letter-spacing: 1px;
}

/* ==========================================
   CTA SECTION
   ========================================== */
.cta-section {
    padding: 2rem 0 3rem;
    background: var(--bg-primary);
}

.cta-box {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
    background: #1a1a1a;
    border-radius: 24px;
    padding: 3.5rem 4rem;
    border: none;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.cta-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.cta-title .text-gradient {
    display: block;
    background: linear-gradient(90deg, #4ade80 0%, #22d3ee 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.7;
}

.cta-social-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cta-social-icons {
    display: flex;
    gap: 1.5rem;
}

.cta-social-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all var(--transition-medium);
}

.cta-social-btn svg {
    width: 18px;
    height: 18px;
}

.cta-social-btn.facebook {
    background: #1877F2;
    color: white;
}

.cta-social-btn.facebook:hover {
    background: #166fe5;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(24, 119, 242, 0.4);
}

.cta-social-btn.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.cta-social-btn.instagram:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(225, 48, 108, 0.4);
}

.cta-contact {
    margin-top: 2rem;
    text-align: center;
}

.cta-contact-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.cta-contact-item svg {
    width: 18px;
    height: 18px;
    color: #4ade80;
    flex-shrink: 0;
}

.cta-contact-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color var(--transition-fast);
}

.cta-contact-item a:hover {
    color: #4ade80;
}

.cta-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    max-width: 300px;
    margin-top: 1.5rem;
    padding: 1rem 2rem;
    background: #4ade80;
    color: #000000;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all var(--transition-medium);
}

.cta-whatsapp-btn svg {
    width: 20px;
    height: 20px;
    fill: #000000;
}

.cta-whatsapp-btn:hover {
    background: #22c55e;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(74, 222, 128, 0.4);
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    position: relative;
    z-index: 10;
    padding: 4rem 0 2rem;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border-color);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-logo img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
}

.footer-logo-text .brand-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.footer-logo-text .brand-tagline {
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.footer-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 300px;
}

.footer-heading {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent-primary);
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-contact-list svg {
    width: 18px;
    height: 18px;
    color: var(--accent-primary);
    flex-shrink: 0;
}

.footer-contact-list a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color var(--transition-fast);
}

.footer-contact-list a:hover {
    color: var(--accent-primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-tertiary);
    color: var(--text-secondary);
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background: var(--accent-primary);
    color: var(--bg-primary);
}

.footer-social svg {
    width: 18px;
    height: 18px;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all var(--transition-medium);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25D366;
    animation: whatsappPulse 2s infinite;
    z-index: -1;
}

@keyframes whatsappPulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* ==========================================
   REVEAL ANIMATIONS
   ========================================== */
.reveal-up,
.reveal-left,
.reveal-right {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-up {
    transform: translateY(40px);
}

.reveal-left {
    transform: translateX(-40px);
}

.reveal-right {
    transform: translateX(40px);
}

.reveal-up.active,
.reveal-left.active,
.reveal-right.active {
    opacity: 1;
    transform: translate(0);
}

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

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
@media (max-width: 1200px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        order: 2;
    }

    .hero-visual {
        order: 1;
    }

    .hero-subtitle {
        margin: 0 auto 2rem;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .device-showcase {
        height: 420px;
    }

    .device.phone {
        width: 170px;
    }

    .device.phone.phone-left {
        transform: translate(-110%, -50%) rotate(-10deg);
    }

    .device.phone.phone-right {
        transform: translate(10%, -50%) rotate(10deg);
    }

    .device.phone .device-frame::before {
        width: 70px;
        height: 22px;
    }

    .deco-pin-1 {
        width: 32px;
        height: 48px;
    }

    .deco-cube-1 {
        width: 50px;
        height: 50px;
    }

    .deco-compass {
        width: 55px;
        height: 55px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .transform-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .transform-arrow {
        flex-direction: column;
        justify-content: center;
    }

    .arrow-line {
        width: 2px;
        height: 40px;
    }

    .arrow-circle {
        width: 50px;
        height: 50px;
    }

    .arrow-circle svg {
        transform: rotate(90deg);
    }

    .monitor-screen {
        width: 400px;
    }

    .cta-box {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 3rem;
    }

    .cta-content {
        text-align: center;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .footer-brand {
        grid-column: span 2;
    }

    .venture-company {
        font-size: 1.5rem;
        letter-spacing: 4px;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 0.75rem 1rem;
    }

    .nav-links {
        display: none;
    }

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

    .mobile-menu {
        display: flex;
    }

    .version {
        display: none;
    }

    .hero {
        padding: 6rem 1rem 3rem;
        min-height: auto;
    }

    .device-showcase {
        height: 350px;
    }

    .device.phone {
        width: 140px;
    }

    .device.phone .device-frame {
        border-radius: 32px;
        padding: 10px;
    }

    .device.phone .device-screen {
        border-radius: 24px;
    }

    .device.phone .device-frame::before {
        width: 60px;
        height: 18px;
        top: 10px;
    }

    .device.phone.phone-left {
        transform: translate(-105%, -50%) rotate(-8deg);
    }

    .device.phone.phone-right {
        transform: translate(5%, -50%) rotate(8deg);
    }

    .float-card {
        display: none;
    }

    .deco-vectors {
        display: none;
    }

    .features,
    .showcase,
    .transform,
    .cta-section {
        padding: 5rem 0;
    }

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

    .showcase-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .monitor-screen {
        width: 100%;
        max-width: 350px;
    }

    .tablet-screen {
        width: 250px;
    }

    .showcase-features {
        flex-direction: column;
        align-items: center;
    }

    .cta-box {
        padding: 2rem 1.5rem;
    }

    .cta-social-icons {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.75rem;
        justify-content: center;
    }

    .cta-social-btn {
        justify-content: center;
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .cta-social-btn svg {
        width: 16px;
        height: 16px;
    }

    .cta-title {
        font-size: 1.5rem;
    }

    .cta-description {
        font-size: 0.9rem;
    }

    .cta-contact {
        margin-top: 1.5rem;
    }

    .cta-contact-title {
        font-size: 1rem;
    }

    .cta-contact-item {
        gap: 0.5rem;
        margin-bottom: 0.5rem;
    }

    .cta-contact-item a {
        font-size: 0.85rem;
    }

    .cta-contact-item svg {
        width: 16px;
        height: 16px;
    }

    .cta-whatsapp-btn {
        padding: 0.85rem 1.5rem;
        font-size: 0.9rem;
        max-width: 250px;
        margin-top: 1rem;
    }

    .cta-whatsapp-btn svg {
        width: 18px;
        height: 18px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-brand {
        grid-column: span 1;
    }

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

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .device-showcase {
        height: 300px;
    }

    .device.phone {
        width: 115px;
    }

    .device.phone .device-frame {
        border-radius: 28px;
        padding: 8px;
    }

    .device.phone .device-screen {
        border-radius: 20px;
    }

    .device.phone .device-frame::before {
        width: 50px;
        height: 14px;
        top: 8px;
        border-radius: 0 0 10px 10px;
    }

    .device.phone.phone-left {
        transform: translate(-100%, -50%) rotate(-6deg);
    }

    .device.phone.phone-right {
        transform: translate(0%, -50%) rotate(6deg);
    }

    .scroll-indicator {
        bottom: 1rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .transform-quote blockquote {
        font-size: 1.1rem;
    }

    .cta-box {
        padding: 1.5rem 1rem;
    }

    .cta-title {
        font-size: 1.25rem;
    }

    .cta-social-icons {
        gap: 0.5rem;
    }

    .cta-social-btn {
        padding: 0.4rem 0.75rem;
        font-size: 0.75rem;
        gap: 0.35rem;
    }

    .cta-social-btn svg {
        width: 14px;
        height: 14px;
    }

    .cta-whatsapp-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
        max-width: 220px;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }
}

/* ==========================================
   SCROLLBAR
   ========================================== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--bg-tertiary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-primary);
}

/* Selection */
::selection {
    background: var(--accent-primary);
    color: var(--bg-primary);
}

/* Focus styles */
*:focus-visible {
    outline: 2px solid var(--accent-primary);
    outline-offset: 2px;
}
