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

:root {
    --primary-color: #FF6B35;
    --primary-dark: #E55A2B;
    --secondary-color: #FF8F65;
    --accent-color: #1A1A1A;
    --text-dark: #1A1A1A;
    --text-gray: #6b7280;
    --text-light: #9ca3af;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --shadow: 0 10px 25px -3px rgba(255, 107, 53, 0.15), 0 4px 6px -2px rgba(255, 107, 53, 0.1);
    --shadow-lg: 0 25px 50px -12px rgba(255, 107, 53, 0.25);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 14px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.btn-download {
    background: var(--text-dark);
    color: white;
    padding: 15px 25px;
    border-radius: 12px;
    text-align: left;
}

.btn-download:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.btn-download i {
    font-size: 24px;
}

.download-text {
    font-size: 12px;
    opacity: 0.8;
    display: block;
}

.store-name {
    font-size: 16px;
    font-weight: 600;
    display: block;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 18px;
    color: var(--primary-color);
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.logo-text {
    font-weight: 700;
    font-size: 18px;
    color: var(--primary-color);
}

/* FORCE LOGO ORANGE - HIGHEST PRIORITY */
.navbar .nav-logo a,
.nav-logo a,
header .nav-logo a {
    text-decoration: none !important;
    border: none !important;
    color: #FF6B35 !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}

.navbar .nav-logo a:link,
.navbar .nav-logo a:visited,
.navbar .nav-logo a:hover,
.navbar .nav-logo a:active,
.nav-logo a:link,
.nav-logo a:visited,
.nav-logo a:hover,
.nav-logo a:active,
header .nav-logo a:link,
header .nav-logo a:visited,
header .nav-logo a:hover,
header .nav-logo a:active {
    color: #FF6B35 !important;
    text-decoration: none !important;
    border: none !important;
    outline: none !important;
}

.navbar .nav-logo a .logo-text,
.nav-logo a .logo-text,
header .nav-logo a .logo-text {
    color: #FF6B35 !important;
}


.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    transition: width 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

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

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%23FF6B35" stop-opacity="0.1"/><stop offset="100%" stop-color="%23FF6B35" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="300" fill="url(%23a)"/><circle cx="800" cy="800" r="400" fill="url(%23a)"/></svg>');
    background-size: cover;
    opacity: 0.5;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 20px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 30px;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-image {
    display: flex;
    justify-content: center;
    animation: fadeInRight 1s ease-out 0.6s both;
}

/* Phone Mockup */
.phone-mockup {
    position: relative;
    transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
    transition: transform 0.3s ease;
}

.phone-mockup:hover {
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
}

.phone-frame {
    width: 280px;
    height: 560px;
    background: linear-gradient(135deg, #1f2937, #374151);
    border-radius: 30px;
    padding: 7px;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #6b7280;
    border-radius: 2px;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
}

.app-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.phone-mockup.small {
    transform: scale(0.7);
}

.phone-mockup.small .phone-frame {
    width: 200px;
    height: 400px;
    padding: 5px;
}

/* Screenshot Placeholders */
.screenshot-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.timer-placeholder {
    background: linear-gradient(135deg, #4ade80, #22c55e);
}

.templates-placeholder {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.reports-placeholder {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.placeholder-content {
    padding: 20px;
}

.placeholder-logo {
    font-size: 2rem;
    margin-bottom: 10px;
    opacity: 0.9;
}

.placeholder-content h3,
.placeholder-content h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
    opacity: 0.95;
}

.placeholder-content p {
    font-size: 0.8rem;
    opacity: 0.8;
    line-height: 1.4;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--bg-white);
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
}

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

.feature-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon i {
    font-size: 24px;
    color: white;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Screenshots Section */
.screenshots {
    padding: 100px 0;
    background: var(--bg-light);
}

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

.screenshot-item {
    text-align: center;
}

.screenshot-item h4 {
    margin-top: 20px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.download-section {
    text-align: center;
    padding: 60px 0;
    background: var(--bg-white);
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.download-section h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--text-dark);
    color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.contact-item i {
    font-size: 18px;
    color: var(--primary-color);
}

/* FORCE EMAIL BUTTON STYLES - HIGHEST PRIORITY */
.contact-details a.contact-item.email-clickable,
a.contact-item.email-clickable,
.email-clickable {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%) !important;
    color: white !important;
    text-decoration: none !important;
    padding: 20px 30px !important;
    border-radius: 15px !important;
    border: 2px solid #34495e !important;
    box-shadow: 0 6px 20px rgba(44, 62, 80, 0.4) !important;
    transition: all 0.3s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 15px !important;
    font-weight: 600 !important;
    font-size: 18px !important;
    min-width: 320px !important;
    justify-content: center !important;
    margin-bottom: 15px !important;
    outline: none !important;
}

.contact-details a.contact-item.email-clickable:hover,
a.contact-item.email-clickable:hover,
.email-clickable:hover,
.contact-details a.contact-item.email-clickable:focus,
a.contact-item.email-clickable:focus,
.email-clickable:focus,
.contact-details a.contact-item.email-clickable:active,
a.contact-item.email-clickable:active,
.email-clickable:active,
.contact-details a.contact-item.email-clickable:visited,
a.contact-item.email-clickable:visited,
.email-clickable:visited {
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 30px rgba(44, 62, 80, 0.6) !important;
    text-decoration: none !important;
    color: white !important;
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%) !important;
    border: 2px solid #4a6741 !important;
}

.contact-details a.contact-item.email-clickable i,
a.contact-item.email-clickable i,
.email-clickable i {
    font-size: 22px !important;
    color: #FF6B35 !important;
    opacity: 1 !important;
}

.contact-details a.contact-item.email-clickable span,
a.contact-item.email-clickable span,
.email-clickable span {
    font-size: 18px !important;
    font-weight: 600 !important;
    color: white !important;
}

@media (max-width: 768px) {
    .contact-details a.contact-item.email-clickable,
    a.contact-item.email-clickable,
    .email-clickable {
        min-width: 280px !important;
        padding: 18px 25px !important;
        font-size: 16px !important;
    }
    
    .contact-details a.contact-item.email-clickable i,
    a.contact-item.email-clickable i,
    .email-clickable i {
        font-size: 20px !important;
    }
    
    .contact-details a.contact-item.email-clickable span,
    a.contact-item.email-clickable span,
    .email-clickable span {
        font-size: 16px !important;
    }
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}


.contact-form {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 16px;
    color: var(--text-dark);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 30px 0;
    border-top: 1px solid #374151;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 18px;
}

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

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

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

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

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .download-buttons {
        flex-direction: column;
        align-items: center;
    }

    .screenshots-grid {
        grid-template-columns: 1fr;
        justify-items: center;
    }
    
    .screenshot-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
}

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

    .hero-title {
        font-size: 2rem;
    }

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

    .phone-mockup.small {
        transform: scale(0.6);
    }
} 