* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Gilroy', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    overflow-x: hidden;
    background: #f8f9fa;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 0.875rem 0;
    border-bottom: 1px solid rgba(16, 185, 129, 0.2);
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(16, 185, 129, 0.02) 10px,
            rgba(16, 185, 129, 0.02) 20px
        );
}

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

.logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2d3436;
    text-decoration: none;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #2d3436;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #10B981;
}

.nav-links a.has-dropdown::after {
    content: '▼';
    font-size: 0.6rem;
    margin-left: 0.25rem;
    color: #636e72;
}

.cta-button {
    background: #10B981;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: inherit;
    display: inline-block;
}

.cta-button:hover {
    background: #059669;
    transform: translateY(-2px);
}

nav .cta-button {
    display: none;
}

.desktop-cta {
    display: block;
}

@media (max-width: 768px) {
    .desktop-cta {
        display: none;
    }
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1000;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #2d3436;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Coming Soon Modal */
.coming-soon-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.coming-soon-modal.active {
    display: flex;
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.modal-content {
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 480px;
    width: 100%;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(0, 0, 0, 0.05);
    transform: scale(0.95) translateY(20px);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 1;
}

.coming-soon-modal.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: #636e72;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    width: 32px;
    height: 32px;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.05);
    color: #2d3436;
}

.modal-close svg {
    width: 20px;
    height: 20px;
}

.modal-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    color: #10B981;
}

.modal-icon svg {
    width: 36px;
    height: 36px;
}

.modal-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2d3436;
    text-align: center;
    margin: 0 0 1rem 0;
    letter-spacing: -0.5px;
}

.modal-message {
    font-size: 1rem;
    color: #636e72;
    line-height: 1.6;
    text-align: center;
    margin: 0 0 2rem 0;
}

.modal-button {
    width: 100%;
    background: #10B981;
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.modal-button:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.modal-button:active {
    transform: translateY(0);
}

/* Email Subscription Modal */
.email-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10001;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.email-modal.active {
    display: flex;
    opacity: 1;
    visibility: visible;
}

.email-modal-content {
    max-width: 460px;
}

.email-modal-content.active .modal-content {
    transform: scale(1) translateY(0);
}

.email-modal-icon {
    background: rgba(16, 185, 129, 0.1);
    color: #10B981;
}

.email-modal-icon svg {
    width: 36px;
    height: 36px;
    stroke-width: 2;
}

/* Email Form Styles */
.email-form {
    margin-top: 0.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.email-input {
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    font-family: inherit;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    background: #f8f9fa;
    color: #2d3436;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.email-input:focus {
    outline: none;
    border-color: #10B981;
    background: white;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.email-input::placeholder {
    color: #b2bec3;
}

.email-input.error {
    border-color: #ef4444;
    background: #fef2f2;
}

.error-message {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: none;
    line-height: 1.4;
}

.error-message.show {
    display: block;
}

.submit-button {
    position: relative;
    min-height: 48px;
}

.submit-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
}

.button-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.button-loader .spinner {
    width: 20px;
    height: 20px;
    color: white;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.button-text {
    transition: opacity 0.3s ease;
}

.submit-button.loading .button-text {
    opacity: 0;
}

.submit-button.loading .button-loader {
    display: flex;
}

/* Success Message */
.success-message {
    margin-top: 1.5rem;
    padding: 1.25rem;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(16, 185, 129, 0.2);
    text-align: center;
}

.success-message.show {
    display: block;
}

.success-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #10B981;
    border-radius: 50%;
    color: white;
}

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

.success-message p {
    color: #059669;
    font-weight: 600;
    font-size: 0.95rem;
    margin: 0;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding: 70px 0 60px;
    background: linear-gradient(135deg, #f1f8f4 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

/* Background Grid Pattern */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(16, 185, 129, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16, 185, 129, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
}

/* Abstract Green Shapes */
.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    z-index: 1;
}

.hero-shape-1 {
    width: 600px;
    height: 600px;
    background: #10B981;
    top: -200px;
    right: -200px;
    filter: blur(80px);
}

.hero-shape-2 {
    width: 500px;
    height: 500px;
    background: #10B981;
    bottom: -150px;
    left: -150px;
    filter: blur(80px);
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Left Content Block */
.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-badges {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: -1.5rem;
    min-height: 2.5rem;
}

.desktop-badge-container {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.desktop-badge-second {
    display: none;
}

.typing-container {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #2d3436;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 120px;
}

.typing-icon {
    width: 16px;
    height: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    vertical-align: middle;
}

.typing-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.typing-text {
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
}

.typing-cursor {
    display: inline-block;
    width: 2px;
    height: 1em;
    background: #2d3436;
    margin-left: 2px;
    animation: blink 1s infinite;
    vertical-align: baseline;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #10B981;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-badge-icon {
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-badge-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.mobile-badge {
    display: none;
}

/* Premium Mobile Badges - Positioned near phone (shown on both mobile and desktop) */
.mobile-badges-container {
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 336px;
    height: 100%;
    z-index: 4;
    pointer-events: none;
}

.mobile-badge-premium {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.625rem 0.875rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.98) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 12px;
    box-shadow: 
        0 8px 32px rgba(16, 185, 129, 0.15),
        0 2px 8px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    font-size: 0.7rem;
    font-weight: 700;
    color: #2d3436;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    opacity: 0;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: auto;
    white-space: normal;
    max-width: 140px;
    line-height: 1.3;
    word-wrap: break-word;
}

/* Smaller font and wider for longer badge texts */
.mobile-badge-premium.badge-power,
.mobile-badge-premium.badge-energy {
    font-size: 0.65rem;
    letter-spacing: 0.5px;
    max-width: 160px;
    padding: 0.625rem 0.875rem;
    min-width: 0;
}

.mobile-badge-premium.badge-power .badge-text,
.mobile-badge-premium.badge-energy .badge-text {
    font-size: inherit;
    letter-spacing: inherit;
    overflow-wrap: break-word;
    word-break: break-word;
}

.mobile-badge-premium.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.mobile-badge-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, rgba(16, 185, 129, 0.03) 100%);
    border-radius: 12px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-badge-premium:hover::before {
    opacity: 1;
}

.mobile-badge-premium .badge-icon-wrapper {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    border-radius: 6px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
    position: relative;
    overflow: hidden;
}

.mobile-badge-premium .badge-icon-wrapper::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: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.mobile-badge-premium .badge-icon-wrapper svg {
    width: 12px;
    height: 12px;
    fill: white;
    position: relative;
    z-index: 1;
}

.mobile-badge-premium .badge-text {
    position: relative;
    background: linear-gradient(135deg, #2d3436 0%, #636e72 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* Badge positions relative to phone - Top left and bottom right for first image only */
.mobile-badge-premium.badge-ai {
    top: 8%;
    left: 50%;
    transform: translateX(-120%) translateY(-10px) scale(0.95);
}

.mobile-badge-premium.badge-ai.active {
    transform: translateX(-120%) translateY(0) scale(1);
}

.mobile-badge-premium.badge-iot {
    bottom: 8%;
    right: 0;
    left: auto;
    top: auto;
    transform: translateX(20%) translateY(10px) scale(0.95);
}

.mobile-badge-premium.badge-iot.active {
    transform: translateX(20%) translateY(0) scale(1);
}

/* Second Image Badge positions - Top left and bottom right */
.mobile-badge-premium.badge-power {
    top: 8%;
    left: 50%;
    transform: translateX(-120%) translateY(-10px) scale(0.95);
}

.mobile-badge-premium.badge-power.active {
    transform: translateX(-120%) translateY(0) scale(1);
}

.mobile-badge-premium.badge-energy {
    bottom: 12%;
    right: 0;
    left: auto;
    top: auto;
    transform: translateX(20%) translateY(10px) scale(0.95);
}

.mobile-badge-premium.badge-energy.active {
    transform: translateX(20%) translateY(0) scale(1);
}

        @media (max-width: 768px) {
            .typing-container {
                display: none;
            }

            .desktop-badge-second {
                display: none !important;
            }

            .hero-badges .mobile-badge {
                display: none;
            }

    .hero-visual {
        position: relative;
    }
}

/* Hero Eyebrow */
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.eyebrow-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    background: linear-gradient(135deg, rgba(254, 243, 199, 0.8) 0%, rgba(253, 224, 71, 0.6) 50%, rgba(251, 191, 36, 0.7) 100%);
    border: 1px solid rgba(245, 158, 11, 0.25);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #92400E;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.15), 0 1px 3px rgba(245, 158, 11, 0.1);
    position: relative;
    overflow: hidden;
}

.eyebrow-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transition: left 0.5s ease;
}

.eyebrow-badge:hover::before {
    left: 100%;
}

.eyebrow-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.2), 0 2px 4px rgba(245, 158, 11, 0.15);
    border-color: rgba(245, 158, 11, 0.35);
    background: linear-gradient(135deg, rgba(254, 243, 199, 0.9) 0%, rgba(253, 224, 71, 0.7) 50%, rgba(251, 191, 36, 0.8) 100%);
}

.eyebrow-badge.eyebrow-date {
    background: linear-gradient(135deg, rgba(254, 243, 199, 0.8) 0%, rgba(253, 224, 71, 0.6) 50%, rgba(251, 191, 36, 0.7) 100%);
}

.eyebrow-badge.eyebrow-platforms {
    background: linear-gradient(135deg, rgba(254, 243, 199, 0.8) 0%, rgba(253, 224, 71, 0.6) 50%, rgba(251, 191, 36, 0.7) 100%);
    gap: 0.375rem;
}

.eyebrow-icon {
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #92400E;
    transition: transform 0.3s ease;
}

.eyebrow-badge:hover .eyebrow-icon {
    transform: scale(1.1);
}

.eyebrow-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.eyebrow-icon i {
    font-size: 18px;
    line-height: 1;
    color: inherit;
}

.eyebrow-icon-android {
    color: #92400E;
}

.eyebrow-icon-ios {
    color: #92400E;
}

.eyebrow-text {
    line-height: 1;
    white-space: nowrap;
    color: #92400E;
}

.eyebrow-separator {
    color: #92400E;
    margin: 0 0.25rem;
    font-weight: 500;
    opacity: 0.7;
}

.hero-heading {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: #2d3436;
    letter-spacing: -1.5px;
}

.hero-heading .highlight {
    color: #10B981;
}

.hero-subheading {
    font-size: 1.15rem;
    color: #636e72;
    line-height: 1.7;
    font-weight: 400;
    max-width: 500px;
}

/* App Benefits */
.hero-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: rgba(16, 185, 129, 0.08);
    border-radius: 8px;
    transition: all 0.2s ease;
    border: 1px solid rgba(16, 185, 129, 0.15);
}

.benefit-item:hover {
    background: rgba(16, 185, 129, 0.12);
    border-color: rgba(16, 185, 129, 0.25);
}

.benefit-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #10B981;
    flex-shrink: 0;
}

.benefit-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.benefit-text {
    font-size: 0.85rem;
    font-weight: 500;
    color: #2d3436;
    line-height: 1.2;
    white-space: nowrap;
}

/* Stats */
.hero-stats {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2d3436;
}

.hero-benefit {
    font-size: 1rem;
    color: #636e72;
    font-weight: 400;
}

/* App Store Badges (Coming Soon) */
.app-store-badges-coming {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.app-badge-coming-soon {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #000000;
    color: white;
    padding: 1rem 1.75rem;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: visible;
    opacity: 0.65;
    cursor: default;
    pointer-events: none;
}

.badge-coming-overlay {
    position: absolute;
    top: -10px;
    right: -8px;
    z-index: 10;
}

.badge-coming-tag {
    background: #10B981;
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.4);
    white-space: nowrap;
}

.app-badge-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.app-badge-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.app-badge-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.app-badge-label {
    font-size: 0.7rem;
    opacity: 0.85;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.app-badge-name {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* Hero CTA Section */
.hero-cta-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.cta-primary-button {
    background: #10B981;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.cta-primary-button:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.cta-primary-button:active {
    transform: translateY(0);
}

.cta-helper-text {
    font-size: 0.85rem;
    color: #636e72;
    font-weight: 400;
    margin: 0;
    letter-spacing: 0.2px;
}

/* Right Content Block - Phone Mockup */
.hero-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 2rem;
    overflow: visible;
}

@media (max-width: 768px) {
    .hero-visual {
        padding-top: 0;
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .hero-visual {
        position: relative;
        overflow: visible;
    }
}

.phone-container {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 336px;
    margin: 0 auto;
    aspect-ratio: 9 / 16;
    max-height: 672px;
}

.phone-image {
    width: 100%;
    height: 100%;
    max-width: 336px;
    max-height: 672px;
    object-fit: contain;
    filter: drop-shadow(0 30px 80px rgba(0, 0, 0, 0.15));
    animation: floatPhone 6s ease-in-out infinite;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.5s ease-in-out;
    pointer-events: none;
}

.phone-image.active {
    opacity: 1;
    pointer-events: auto;
    position: relative;
}

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

/* Decorative Elements Behind Phone */
.phone-decoration {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.decoration-square {
    position: absolute;
    background: rgba(5, 150, 105, 0.2);
    border-radius: 24px;
    z-index: 1;
}

.decoration-square-1 {
    width: 400px;
    height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(15deg);
    animation: floatSquare1 8s ease-in-out infinite;
}

.decoration-square-2 {
    width: 350px;
    height: 350px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-10deg);
    background: rgba(5, 150, 105, 0.15);
    animation: floatSquare2 10s ease-in-out infinite 1s;
}

@keyframes floatSquare1 {
    0%, 100% { transform: translate(-50%, -50%) rotate(15deg) scale(1); opacity: 0.8; }
    50% { transform: translate(-50%, -50%) rotate(18deg) scale(1.05); opacity: 1; }
}

@keyframes floatSquare2 {
    0%, 100% { transform: translate(-50%, -50%) rotate(-10deg) scale(1); opacity: 0.7; }
    50% { transform: translate(-50%, -50%) rotate(-7deg) scale(1.05); opacity: 0.9; }
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.08);
    filter: blur(40px);
}

.decoration-circle-1 {
    width: 300px;
    height: 300px;
    top: -50px;
    right: -80px;
    animation: floatDecoration 8s ease-in-out infinite;
}

.decoration-circle-2 {
    width: 250px;
    height: 250px;
    bottom: -40px;
    left: -60px;
    animation: floatDecoration 10s ease-in-out infinite 1s;
}

@keyframes floatDecoration {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
    50% { transform: translate(20px, -20px) scale(1.1); opacity: 0.8; }
}

/* Sparkle Icons */
.sparkle {
    position: absolute;
    font-size: 1.5rem;
    color: #10B981;
    opacity: 0.5;
    animation: sparkle 3s ease-in-out infinite;
    z-index: 2;
}

.sparkle-1 {
    top: 5%;
    right: 10%;
    animation-delay: 0s;
}

.sparkle-2 {
    bottom: 10%;
    left: 5%;
    animation-delay: 1.5s;
}

.sparkle-3 {
    top: 30%;
    right: -5%;
    animation-delay: 0.8s;
}

.sparkle-4 {
    bottom: 30%;
    right: 8%;
    animation-delay: 2.3s;
}

@keyframes sparkle {
    0%, 100% { opacity: 0.5; transform: scale(1) rotate(0deg); }
    50% { opacity: 0.9; transform: scale(1.3) rotate(180deg); }
}

/* Pagination Dots */
.pagination-dots {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #10B981;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #10B981;
}

.dot:hover {
    transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .header-container {
        padding: 0 4rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 4rem;
    }

            .hero-visual {
                order: 2;
            }

            .hero-content {
                order: 1;
                text-align: center;
                align-items: center;
            }

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

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

    .app-store-badges-coming {
        justify-content: center;
    }

    .hero-cta-section {
        align-items: center;
    }

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

@media (max-width: 968px) {
    .header-container {
        padding: 0 3rem;
    }

    .hero-container {
        padding: 0 3rem;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 2rem;
    }

    .menu-toggle {
        display: flex;
    }

    nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(16, 185, 129, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
        padding: 2rem;
    }

    nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-links {
        flex-direction: column;
        gap: 1.5rem;
        font-size: 1rem;
        align-items: flex-start;
    }

    nav .cta-button {
        display: block;
        margin-top: 1rem;
        width: 100%;
        text-align: center;
    }

    .header-container > .cta-button {
        display: none;
    }

    .hero {
        padding: 60px 0 50px;
    }

    .hero-container {
        padding: 0 2rem;
        gap: 1.5rem;
        overflow: visible;
        display: flex;
        flex-direction: column;
    }

    .hero-badges {
        order: 1;
    }

    .hero-eyebrow {
        order: 2;
    }

    .hero-heading {
        order: 3;
    }

    .hero-visual {
        order: 4;
    }

    .hero-subheading {
        order: 5;
    }

    .hero-benefits {
        order: 6;
    }

    .app-store-badges-coming {
        order: 7;
    }

    .hero-content {
        display: contents;
        text-align: center;
        align-items: center;
    }

    /* Mobile Badges positioning adjustments */
    .mobile-badges-container {
        max-width: 288px;
    }

    .hero-heading {
        font-size: 2rem;
        text-align: center;
    }

    .hero-subheading {
        font-size: 1rem;
        text-align: center;
        max-width: 100%;
    }

    .hero-eyebrow {
        justify-content: center;
        gap: 0.5rem;
        margin-bottom: 0.75rem;
    }

    .eyebrow-badge {
        padding: 0.5rem 0.875rem;
        font-size: 0.7rem;
        letter-spacing: 0.6px;
    }

    .eyebrow-icon {
        width: 16px;
        height: 16px;
    }

    .eyebrow-icon i {
        font-size: 16px;
    }

    .app-store-badges-coming {
        justify-content: center;
        gap: 0.75rem;
    }

    .app-badge-coming-soon {
        flex: 1;
        min-width: 150px;
        max-width: 200px;
        padding: 0.875rem 1.25rem;
    }

    .badge-coming-tag {
        font-size: 0.6rem;
        padding: 0.25rem 0.5rem;
    }

    .phone-image {
        max-width: 288px;
        max-height: 576px;
    }

    .phone-container {
        max-width: 288px;
        max-height: 576px;
    }

    .hero-benefits {
        gap: 0.75rem;
        justify-content: center;
    }

    .benefit-item {
        padding: 0.45rem 0.65rem;
    }

    .app-store-badges-coming {
        justify-content: center;
    }

    .benefit-icon {
        width: 18px;
        height: 18px;
    }

    .benefit-text {
        font-size: 0.8rem;
    }

    /* Decorative Squares - Mobile */
    .decoration-square-1 {
        width: 280px;
        height: 280px;
    }

    .decoration-square-2 {
        width: 240px;
        height: 240px;
    }

    /* Sparkle Icons - Mobile */
    .sparkle {
        font-size: 1.2rem;
    }

    .sparkle-1 {
        top: 3%;
        right: 5%;
    }

    .sparkle-2 {
        bottom: 5%;
        left: 3%;
    }

    .sparkle-3 {
        top: 25%;
        right: -3%;
    }

    .sparkle-4 {
        bottom: 25%;
        right: 3%;
    }

    /* Decorative Circles - Mobile */
    .decoration-circle-1 {
        width: 200px;
        height: 200px;
        top: -30px;
        right: -50px;
    }

    .decoration-circle-2 {
        width: 180px;
        height: 180px;
        bottom: -30px;
        left: -40px;
    }

    /* Modal - Mobile */
    .modal-content {
        padding: 2rem 1.5rem;
        max-width: 100%;
        border-radius: 16px;
    }

    .modal-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 1.25rem;
    }

    .modal-icon svg {
        width: 32px;
        height: 32px;
    }

    .modal-title {
        font-size: 1.5rem;
        margin-bottom: 0.875rem;
    }

    .modal-message {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .modal-close {
        top: 1rem;
        right: 1rem;
    }

    /* Email Modal - Mobile */
    .email-input {
        font-size: 16px; /* Prevents zoom on iOS */
    }

    .form-group {
        margin-bottom: 1.25rem;
    }
}

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

    .hero-container {
        padding: 0 1.5rem;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.8rem;
    }

    .hero-heading {
        font-size: 1.75rem;
    }

    .hero-subheading {
        font-size: 0.9rem;
    }

    .hero-eyebrow {
        gap: 0.5rem;
    }

    .eyebrow-badge {
        padding: 0.45rem 0.75rem;
        font-size: 0.65rem;
        letter-spacing: 0.5px;
    }

    .eyebrow-icon {
        width: 14px;
        height: 14px;
    }

    .eyebrow-icon i {
        font-size: 14px;
    }

    .phone-image {
        max-width: 240px;
        max-height: 480px;
    }

    .phone-container {
        max-width: 240px;
        max-height: 480px;
    }

    /* Decorative Squares - Small Mobile */
    .decoration-square-1 {
        width: 220px;
        height: 220px;
    }

    .decoration-square-2 {
        width: 190px;
        height: 190px;
    }

    /* Sparkle Icons - Small Mobile */
    .sparkle {
        font-size: 1rem;
    }

    .sparkle-1 {
        top: 2%;
        right: 3%;
    }

    .sparkle-2 {
        bottom: 3%;
        left: 2%;
    }

    .sparkle-3 {
        top: 20%;
        right: -5%;
    }

    .sparkle-4 {
        bottom: 20%;
        right: 2%;
    }

    /* Decorative Circles - Small Mobile */
    .decoration-circle-1 {
        width: 150px;
        height: 150px;
        top: -20px;
        right: -30px;
    }

    .decoration-circle-2 {
        width: 130px;
        height: 130px;
        bottom: -20px;
        left: -25px;
    }

    .hero-visual {
        padding-top: 0;
        margin-bottom: 0;
    }

    /* Mobile Badges - Small screens */
    .mobile-badge-premium {
        font-size: 0.7rem;
        padding: 0.5rem 0.875rem;
        gap: 0.5rem;
    }

    .mobile-badge-premium .badge-icon-wrapper {
        width: 18px;
        height: 18px;
    }

    .mobile-badge-premium .badge-icon-wrapper svg {
        width: 10px;
        height: 10px;
    }

    .mobile-badge-premium.badge-ai {
        top: 6%;
        transform: translateX(-115%) translateY(-10px) scale(0.95);
    }

    .mobile-badge-premium.badge-ai.active {
        transform: translateX(-115%) translateY(0) scale(1);
    }

    .mobile-badge-premium.badge-iot {
        bottom: 6%;
        top: auto;
        right: 0;
        transform: translateX(15%) translateY(10px) scale(0.95);
    }

    .mobile-badge-premium.badge-iot.active {
        transform: translateX(15%) translateY(0) scale(1);
    }

    /* Second Image Badges - Mobile */
    .mobile-badge-premium.badge-power {
        top: 6%;
        transform: translateX(-115%) translateY(-10px) scale(0.95);
    }

    .mobile-badge-premium.badge-power.active {
        transform: translateX(-115%) translateY(0) scale(1);
    }

    .mobile-badge-premium.badge-energy {
        bottom: 10%;
        top: auto;
        right: 0;
        transform: translateX(15%) translateY(10px) scale(0.95);
    }

    .mobile-badge-premium.badge-energy.active {
        transform: translateX(15%) translateY(0) scale(1);
    }

    .mobile-badges-container {
        max-width: 288px;
    }

    /* Ensure badges don't overflow on very small screens */
    @media (max-width: 360px) {
        .mobile-badge-premium.badge-ai {
            transform: translateX(-110%) translateY(-10px) scale(0.95);
        }

        .mobile-badge-premium.badge-ai.active {
            transform: translateX(-110%) translateY(0) scale(1);
        }

        .mobile-badge-premium.badge-iot {
            bottom: 5%;
            transform: translateX(10%) translateY(10px) scale(0.95);
        }

        .mobile-badge-premium.badge-iot.active {
            transform: translateX(10%) translateY(0) scale(1);
        }

        .mobile-badge-premium.badge-power {
            transform: translateX(-110%) translateY(-10px) scale(0.95);
        }

        .mobile-badge-premium.badge-power.active {
            transform: translateX(-110%) translateY(0) scale(1);
        }

        .mobile-badge-premium.badge-energy {
            bottom: 8%;
            transform: translateX(10%) translateY(10px) scale(0.95);
        }

        .mobile-badge-premium.badge-energy.active {
            transform: translateX(10%) translateY(0) scale(1);
        }

        .mobile-badge-premium {
            font-size: 0.6rem;
            padding: 0.5rem 0.7rem;
            max-width: 130px;
        }

        .mobile-badge-premium.badge-power,
        .mobile-badge-premium.badge-energy {
            font-size: 0.58rem;
            padding: 0.5rem 0.65rem;
            max-width: 140px;
            letter-spacing: 0.4px;
        }
    }

    .app-store-badges-coming {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
        align-items: center;
    }

    .app-badge-coming-soon {
        width: 100%;
        max-width: 220px;
    }

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

    /* Modal - Small Mobile */
    .modal-content {
        padding: 1.75rem 1.25rem;
        border-radius: 16px;
    }

    .modal-icon {
        width: 48px;
        height: 48px;
    }

    .modal-icon svg {
        width: 28px;
        height: 28px;
    }

    .modal-title {
        font-size: 1.35rem;
    }

    .modal-message {
        font-size: 0.9rem;
    }

    .coming-soon-modal {
        padding: 1rem;
    }

    /* Email Modal - Small Mobile */
    .email-modal {
        padding: 1rem;
    }

    .email-modal-content {
        padding: 1.75rem 1.25rem;
    }

    .email-input {
        padding: 0.875rem 1rem;
        font-size: 16px; /* Prevents zoom on iOS */
    }

    .submit-button {
        min-height: 44px; /* Better touch target */
    }
}

