/* AI Contact Card Enhancements */
.ai-contact-cards {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    margin: 3rem auto 3rem auto;
    max-width: 400px;
    width: 100%;
}
.ai-card-gradient {
    background: linear-gradient(135deg, #23243a 0%, #1a1b2f 60%, #ff6b35 100%);
    border: none;
    box-shadow: 0 4px 32px rgba(255,107,53,0.12), 0 1.5px 8px #23243a;
    color: #fff;
    border-radius: 1.5rem;
    padding: 2rem 1.5rem;
    min-width: 220px;
    max-width: 320px;
    text-align: center;
    position: relative;
    transition: transform 0.2s cubic-bezier(.4,2,.3,1), box-shadow 0.2s;
}
.ai-card-gradient:hover {
    transform: translateY(-8px) scale(1.04);
    box-shadow: 0 8px 40px rgba(255,107,53,0.18), 0 2px 12px #23243a;
}
.ai-icon-glow {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
}
.ai-icon-glow i {
    font-size: 2.5rem;
    color: #ff6b35;
    text-shadow: 0 0 16px #ff6b35, 0 0 32px #fff3e6;
    filter: drop-shadow(0 0 8px #ff6b35);
}
@media (max-width: 900px) {
    .ai-contact-cards {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    .ai-card-gradient {
        max-width: 95vw;
        min-width: 0;
        padding: 1.5rem 1rem;
    }
}
/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: var(--black-primary);
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 212, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 107, 53, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(136, 68, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -2;
    animation: aiAmbient 20s ease-in-out infinite;
}

@keyframes aiAmbient {
    0%, 100% { opacity: 1; }
    33% { opacity: 0.7; }
    66% { opacity: 0.9; }
}

/* AI Neural Network Background */
.ai-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    opacity: 0.3;
}

.neural-network {
    position: absolute;
    width: 100%;
    height: 100%;
}

.neural-node {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--ai-cyan);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--ai-cyan);
    animation: neuralPulse 3s ease-in-out infinite;
}

@keyframes neuralPulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.5); }
}

.neural-connection {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--ai-cyan), transparent);
    animation: dataFlow 4s linear infinite;
}

@keyframes dataFlow {
    0% { opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { opacity: 0; }
}

/* AI-Themed Color Variables */
:root {
    --primary-orange: #ff6b35;
    --primary-orange-dark: #e55a2e;
    --primary-orange-light: #ff8555;
    --accent-orange: #ffa366;
    
    /* AI Theme Colors */
    --ai-cyan: #00d4ff;
    --ai-blue: #0088ff;
    --ai-purple: #8844ff;
    --ai-green: #00ff88;
    --neon-pink: #ff0088;
    --electric-blue: #00ccff;
    
    --black-primary: #0a0a0a;
    --black-secondary: #0f0f23;
    --black-tertiary: #1a1a2e;
    --black-ai: #16213e;
    
    --gray-light: #f5f5f5;
    --gray-medium: #999999;
    --gray-dark: #333333;
    
    --white: #ffffff;
    --white-90: rgba(255, 255, 255, 0.9);
    --white-80: rgba(255, 255, 255, 0.8);
    --white-60: rgba(255, 255, 255, 0.6);
    
    --gradient-orange: linear-gradient(135deg, #ff6b35 0%, #ffa366 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0a0a0a 100%);
    --gradient-ai: linear-gradient(135deg, #00d4ff 0%, #0088ff 50%, #8844ff 100%);
    --gradient-neural: linear-gradient(45deg, #00ccff, #ff0088, #00ff88, #ff6b35);
    
    --shadow-light: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 8px 25px rgba(0, 0, 0, 0.3);
    --shadow-heavy: 0 20px 40px rgba(0, 0, 0, 0.5);
    --shadow-neon: 0 0 30px rgba(0, 212, 255, 0.5);
    
    --border-radius: 12px;
    --border-radius-large: 20px;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s ease-out;
    --transition-glow: all 0.4s ease-in-out;
}

/* AI-Enhanced Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    position: relative;
}

h1 { 
    font-size: clamp(2.5rem, 5vw, 4rem);
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}
h2 { 
    font-size: clamp(2rem, 4vw, 3rem);
    text-shadow: 0 0 15px rgba(255, 107, 53, 0.3);
}
h3 { 
    font-size: clamp(1.5rem, 3vw, 2rem);
    text-shadow: 0 0 10px rgba(136, 68, 255, 0.3);
}
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: var(--white-80);
}

.gradient-text {
    background: var(--gradient-neural);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 4s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.ai-title {
    position: relative;
    display: inline-block;
}

.ai-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-ai);
    animation: scanLine 2s ease-in-out infinite;
}

@keyframes scanLine {
    0%, 100% { transform: scaleX(0); opacity: 0; }
    50% { transform: scaleX(1); opacity: 1; }
}

.glitch-effect {
    position: relative;
    color: var(--white);
}

.glitch-effect::before,
.glitch-effect::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch-effect::before {
    animation: glitchTop 0.3s infinite;
    clip-path: polygon(0 0, 100% 0, 100% 33%, 0 33%);
    color: var(--ai-cyan);
}

.glitch-effect::after {
    animation: glitchBottom 0.3s infinite;
    clip-path: polygon(0 67%, 100% 67%, 100% 100%, 0 100%);
    color: var(--neon-pink);
}

@keyframes glitchTop {
    2%, 64% { transform: translate(2px, -2px); }
    4%, 60% { transform: translate(-2px, 2px); }
    62% { transform: translate(13px, -1px) skew(-13deg); }
}

@keyframes glitchBottom {
    2%, 64% { transform: translate(-2px, 0); }
    4%, 60% { transform: translate(-2px, 0); }
    62% { transform: translate(-22px, 5px) skew(21deg); }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
    line-height: 1;
}

.btn-primary {
    background: var(--gradient-orange);
    color: var(--white);
    box-shadow: var(--shadow-medium);
}

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

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

.btn-secondary:hover {
    border-color: var(--primary-orange);
    color: var(--primary-orange);
    background: rgba(255, 107, 53, 0.1);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.cta-button {
    background: var(--gradient-orange);
    color: var(--white) !important;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    font-weight: 500;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(0, 212, 255, 0.3);
    box-shadow: 0 2px 20px rgba(0, 212, 255, 0.1);
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gradient-ai);
    animation: scanLine 3s ease-in-out infinite;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo {
    height: 40px;
    width: auto;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-orange);
}

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

.nav-link {
    color: var(--white-80);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-orange);
    transition: var(--transition);
}

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

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

.bar {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 100px 0 50px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 2;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

.hero-description {
    font-size: 1.25rem;
    color: var(--white-80);
    margin-bottom: 2rem;
    max-width: 500px;
}

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

.hero-stats {
    display: flex;
    gap: 2rem;
}

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

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-orange);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--white-60);
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    position: relative;
    z-index: 2;
}

.app-screenshot {
    max-width: 300px;
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-heavy);
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.floating-elements {
    position: absolute;
    inset: 0;
}

.floating-card {
    position: absolute;
    background: var(--black-secondary);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: var(--border-radius);
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    animation: float 6s ease-in-out infinite;
    box-shadow: var(--shadow-medium);
}

.floating-card i {
    color: var(--primary-orange);
}

.card-1 {
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: -10%;
    animation-delay: 2s;
}

.card-3 {
    bottom: 10%;
    left: 10%;
    animation-delay: 4s;
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    background: var(--gradient-orange);
    filter: blur(100px);
    opacity: 0.1;
    animation: pulse 8s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    top: -200px;
    left: -200px;
}

.orb-2 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    right: -150px;
    animation-delay: 2s;
}

.orb-3 {
    width: 500px;
    height: 500px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 4s;
}

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

/* Section Styles */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary-orange);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

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

.section-description {
    font-size: 1.125rem;
    color: var(--white-80);
    max-width: 600px;
    margin: 0 auto;
}

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

/* Featured App Section */
.featured-app {
    background: var(--black-secondary);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.app-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.app-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-orange);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.app-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.app-description {
    font-size: 1.125rem;
    color: var(--white-80);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.app-features {
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature i {
    color: var(--primary-orange);
    font-size: 1.25rem;
    margin-top: 0.25rem;
    min-width: 1.25rem;
}

.feature h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--white);
}

.feature p {
    color: var(--white-80);
    font-size: 0.875rem;
    margin: 0;
}

.app-pricing {
    background: var(--black-tertiary);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.price-tag {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-orange);
}

.price-label {
    color: var(--white-80);
    font-size: 1rem;
}

.price-note {
    color: var(--white-60);
    font-size: 0.875rem;
    margin: 0;
}

.download-buttons {
    display: flex;
    gap: 1rem;
}

.app-screenshots {
    text-align: center;
    margin: 2rem 0;
}

.screenshot-carousel {
    position: relative;
    height: 500px;
    max-width: 300px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
}

.screenshot {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: var(--transition);
}

.screenshot.active {
    opacity: 1;
}

.screenshot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-fit: contain;
    object-position: center;
    border-radius: var(--border-radius-large);
    background: var(--black-secondary);
}

.screenshot-nav {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding: 0.5rem;
}

.nav-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid var(--white-40);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.nav-dot.active {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
    transform: scale(1.2);
}

.nav-dot:hover {
    border-color: var(--primary-orange);
    background: rgba(255, 107, 53, 0.3);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--black-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-large);
    padding: 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    border-color: var(--primary-orange);
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.service-card.featured {
    border-color: var(--primary-orange);
    background: linear-gradient(135deg, var(--black-secondary) 0%, rgba(255, 107, 53, 0.05) 100%);
}

.service-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-orange);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-orange);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--white);
}

.service-card p {
    color: var(--white-80);
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
}

.service-features li {
    color: var(--white-80);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-weight: bold;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-highlights {
    margin: 2rem 0;
}

.highlight {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.highlight i {
    color: var(--primary-orange);
    font-size: 1.25rem;
    margin-top: 0.25rem;
    min-width: 1.25rem;
}

.highlight h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--white);
}

.highlight p {
    color: var(--white-80);
    font-size: 0.875rem;
    margin: 0;
}

.about-companies {
    margin-top: 2rem;
}

.about-companies h4 {
    color: var(--white);
    margin-bottom: 1rem;
}

.company-logos {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.company {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.company img {
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius);
}

.company span {
    font-size: 0.875rem;
    color: var(--white-80);
    text-align: center;
}

.tech-stack {
    background: var(--black-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-large);
    padding: 2rem;
}

.tech-category {
    margin-bottom: 2rem;
}

.tech-category:last-child {
    margin-bottom: 0;
}

.tech-category h4 {
    color: var(--primary-orange);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.tech-icons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.tech-icons i {
    font-size: 2rem;
    color: var(--white-80);
    transition: var(--transition);
    cursor: pointer;
}

.tech-icons i:hover {
    color: var(--primary-orange);
    transform: scale(1.1);
}

/* Contact Section */
.contact {
    background: var(--black-secondary);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    background: var(--black-primary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition);
}

.contact-card:hover {
    border-color: var(--primary-orange);
    transform: translateY(-2px);
}

.contact-card i {
    font-size: 2rem;
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.contact-card h4 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.contact-card p {
    color: var(--white-80);
    margin-bottom: 1rem;
}

.contact-link {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.contact-link:hover {
    color: var(--primary-orange-light);
}

.contact-form {
    background: var(--black-primary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-large);
    padding: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: var(--white);
    font-weight: 500;
    font-size: 0.875rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--black-secondary);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    padding: 0.75rem;
    color: var(--white);
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.char-counter {
    font-size: 0.75rem;
    color: var(--white-60);
    text-align: right;
    margin-top: 0.25rem;
}

.form-notice {
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: var(--border-radius);
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.form-notice p {
    color: var(--white-80);
    font-size: 0.875rem;
    margin: 0;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.form-notice i {
    color: var(--primary-orange);
    margin-top: 0.125rem;
}

.form-group label::after {
    content: none;
}

.form-group label[for="name"]::after,
.form-group label[for="email"]::after,
.form-group label[for="service"]::after,
.form-group label[for="message"]::after {
    content: " *";
    color: var(--primary-orange);
}

/* Footer */
.footer {
    background: var(--black-primary);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

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

.footer-description {
    color: var(--white-80);
    margin-bottom: 1.5rem;
    max-width: 300px;
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--black-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    color: var(--white-80);
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    border-color: var(--primary-orange);
    color: var(--primary-orange);
    transform: translateY(-2px);
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: var(--white-80);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.875rem;
}

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

.footer-contact {
    color: var(--white-80);
}

.footer-contact p {
    margin: 0.25rem 0;
    font-size: 0.925rem;
}

.footer-contact p:first-child {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.footer-contact i {
    color: var(--primary-orange);
    margin-right: 0.5rem;
    width: 16px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--white-60);
    font-size: 0.875rem;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--gradient-orange);
    border: none;
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
    box-shadow: var(--shadow-medium);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal.show {
    display: flex;
}

.modal-content {
    background: var(--black-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-large);
    max-width: 500px;
    width: 100%;
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
}

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

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    color: var(--white-60);
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--primary-orange);
}

.modal-header {
    padding: 2rem 2rem 0;
    text-align: center;
}

.modal-header i {
    font-size: 3rem;
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.modal-header h3 {
    color: var(--white);
    margin-bottom: 0;
}

.modal-body {
    padding: 1rem 2rem 2rem;
}

.modal-body p {
    text-align: center;
    color: var(--white-80);
    margin-bottom: 2rem;
}

.download-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.download-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--black-primary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    text-decoration: none;
    color: var(--white);
    transition: var(--transition);
}

.download-option:hover:not(.coming-soon) {
    border-color: var(--primary-orange);
    background: rgba(255, 107, 53, 0.05);
}

.download-option.coming-soon {
    opacity: 0.5;
    cursor: not-allowed;
}

.download-option i {
    font-size: 2rem;
    color: var(--primary-orange);
}

.download-option h4 {
    color: var(--white);
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.download-option p {
    color: var(--white-80);
    margin: 0;
    font-size: 0.875rem;
}

.installation-note {
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: var(--border-radius);
    padding: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.installation-note i {
    color: var(--primary-orange);
    margin-top: 0.25rem;
    font-size: 1.125rem;
}

.installation-note p {
    color: var(--white-80);
    margin: 0;
    font-size: 0.875rem;
    text-align: left;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--black-primary);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 2rem 0;
        transition: var(--transition);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

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

    .nav-toggle {
        display: flex;
    }

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

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

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

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

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

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

    .app-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

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

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

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
    }

    .company-logos {
        justify-content: center;
    }

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

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

    section {
        padding: 60px 0;
    }

    .hero {
        padding: 80px 0 40px;
    }

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

    .hero-description {
        font-size: 1rem;
    }

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

    .btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.875rem;
    }

    .btn-large {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }

    .app-screenshot {
        max-width: 250px;
        border-radius: 16px;
    }
    
    .screenshot-carousel {
        height: 400px;
        max-width: 220px;
    }
    
    .screenshot img {
        object-fit: cover;
    }

    .floating-card {
        font-size: 0.75rem;
        padding: 0.75rem;
    }

    .doseworx-section {
        padding: 4rem 0;
    }

    .doseworx-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .doseworx-card.featured {
        transform: none;
    }

    .doseworx-card.featured:hover {
        transform: translateY(-10px);
    }

    .doseworx-cta {
        padding: 2rem 1rem;
        margin-top: 2rem;
    }

    .doseworx-cta h3 {
        font-size: 1.5rem;
    }

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

    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }

    .app-showcase-simple {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .app-download-simple {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .contact-quick {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .contact-item {
        font-size: 0.925rem;
    }
}

/* DoseWorx Section */
.doseworx-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--black-primary) 0%, var(--black-secondary) 100%);
    position: relative;
    overflow: hidden;
}

.doseworx-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 107, 53, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.doseworx-content {
    position: relative;
    z-index: 2;
}

.doseworx-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.doseworx-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: var(--border-radius-large);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.doseworx-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 107, 53, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.doseworx-card:hover::before {
    opacity: 1;
}

.doseworx-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-orange);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.doseworx-card.featured {
    border-color: var(--primary-orange);
    background: rgba(255, 107, 53, 0.1);
    transform: scale(1.05);
}

.doseworx-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-orange);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.doseworx-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-orange), #ff8533);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    font-size: 2rem;
    color: var(--white);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.doseworx-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.doseworx-card p {
    color: var(--white-80);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.feature-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.feature-list li {
    color: var(--white-80);
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.925rem;
}

.feature-list li::before {
    content: '✓';
    color: var(--primary-orange);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.doseworx-cta {
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: var(--border-radius-large);
    padding: 3rem 2rem;
    text-align: center;
    margin-top: 3rem;
}

.doseworx-cta h3 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 700;
}

.doseworx-cta p {
    color: var(--white-80);
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Simple ReminderGuru Section */
.reminderguru-app {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.02);
}

.app-showcase-simple {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.app-info-simple h3 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 700;
}

.app-info-simple p {
    color: var(--white-80);
    font-size: 1.125rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.app-features-simple {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-simple {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--white-80);
}

.feature-simple i {
    color: var(--primary-orange);
    font-size: 1.125rem;
    width: 20px;
}

.app-download-simple {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-orange);
}

.app-visual-simple {
    text-align: center;
}

.app-visual-simple .app-screenshot {
    max-width: 280px;
    width: 100%;
    height: auto;
}

/* Tablet Styles */
@media (min-width: 769px) and (max-width: 1024px) {
    .app-screenshot {
        max-width: 280px;
        border-radius: 18px;
    }
    
    .screenshot-carousel {
        height: 450px;
        max-width: 260px;
    }
    
    .screenshot img {
        object-fit: cover;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .back-to-top,
    .floating-elements,
    .hero-bg {
        display: none;
    }

    body {
        color: #000;
        background: #fff;
    }

    .hero {
        min-height: auto;
        padding: 2rem 0;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    :root {
        --primary-orange: #ff8800;
        --black-primary: #000000;
        --white: #ffffff;
    }
}

/* Logo-Based Split Landing Page */
.logo-split-landing {
    min-height: 100vh;
    display: flex;
    position: relative;
    overflow: hidden;
}

.logo-half {
    width: 50%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s ease;
}

.platinum-side {
    background: radial-gradient(ellipse at center, #2a2a2a 0%, #1a1a1a 70%, #0a0a0a 100%);
}

.doseworx-side {
    background: radial-gradient(ellipse at center, #1a3a4a 0%, #0f2030 70%, #0a0a0a 100%);
}

.logo-half:hover {
    transform: scale(1.05);
    z-index: 10;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    max-width: 400px;
    width: 100%;
    padding: 2rem;
}

.logo-button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 260px;
    height: 260px;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 3px solid transparent;
}

.platinum-logo-btn {
    background: linear-gradient(45deg, #f8f8f8, #ffffff);
    border-color: var(--primary-orange);
}

.doseworx-logo-btn {
    background: radial-gradient(circle, #001122 0%, #003366 100%);
    border-color: #00ccff;
}

.logo-button:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.platinum-logo-btn:hover {
    box-shadow: 0 30px 80px rgba(255, 107, 53, 0.4);
    border-color: #ff8533;
}

.doseworx-logo-btn:hover {
    box-shadow: 0 30px 80px rgba(0, 204, 255, 0.4);
    border-color: #66ddff;
}

.main-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    transition: all 0.3s ease;
}

.logo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.logo-content {
    text-align: center;
    padding: 2rem;
}

.platinum-placeholder {
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    border: 3px solid #ddd;
}

.platinum-placeholder .logo-content h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.platinum-placeholder .logo-content p {
    font-size: 1.2rem;
    color: #4169E1;
    font-weight: 600;
    margin-bottom: 1rem;
}

.platinum-placeholder .logo-content span {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    display: block;
    border-top: 2px solid #ff6b35;
    padding-top: 0.5rem;
    margin-top: 1rem;
}

.doseworx-placeholder {
    background: radial-gradient(circle at center, #001122 0%, #003366 50%, #000 100%);
    position: relative;
    overflow: hidden;
}

.doseworx-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 200, 255, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 150, 255, 0.2) 0%, transparent 50%);
    animation: pulse 4s ease-in-out infinite;
}

.ai-icon {
    display: inline-block;
    background: linear-gradient(45deg, #00ccff, #0099cc);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    box-shadow: 0 0 20px rgba(0, 204, 255, 0.5);
}

.doseworx-placeholder .logo-content h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(0, 204, 255, 0.5);
}

.doseworx-placeholder .logo-content p {
    font-size: 1rem;
    color: #00ccff;
    font-weight: 500;
    margin-bottom: 1rem;
}

.doseworx-placeholder .logo-content span {
    font-size: 0.9rem;
    color: #aaa;
    font-style: italic;
    display: block;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.logo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.logo-button:hover .logo-overlay {
    transform: translateY(0);
}

.logo-overlay h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-align: center;
}

.logo-overlay p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    margin: 0;
}

.side-contact {
    text-align: center;
    opacity: 0.8;
}

.side-contact p {
    color: var(--white-80);
    font-size: 0.9rem;
    margin: 0.5rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.platinum-side .side-contact i {
    color: var(--primary-orange);
}

.doseworx-side .side-contact i {
    color: #00ccff;
}

.central-brand {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 20;
    text-align: center;
}

.brand-separator {
    width: 3px;
    height: 200px;
    background: linear-gradient(to bottom, 
        var(--primary-orange) 0%, 
        #ffffff 50%, 
        #00ccff 100%);
    margin: 0 auto 2rem;
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.main-title {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 1.5rem 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
}

.main-title h1 {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(45deg, var(--primary-orange), #ffffff, #00ccff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.main-title span {
    color: var(--white-80);
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .logo-split-landing {
        flex-direction: column;
        align-items: center;
    }
    
    .logo-half {
        width: 100%;
        min-height: 50vh;
        padding: 1.5rem 1rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .logo-half:hover {
        transform: scale(1.02);
    }
    
    .logo-button {
        width: 220px;
        height: 220px;
    }
    
    .main-title h1 {
        font-size: 2rem;
    }
    
    .main-title {
        padding: 1rem 1.5rem;
    }
    
    .central-brand {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        z-index: 10;
        order: -1;
        padding: 1rem 0;
        margin-bottom: 1rem;
    }
    
    .brand-separator {
        display: none;
    }
}

.landing-logo {
    display: block;
    max-width: 80%;
    max-height: 180px;
    width: auto;
    height: auto;
    border-radius: 12px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-button:hover .landing-logo {
    transform: scale(1.05);
}

.selection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.selection-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.selection-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 107, 53, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.selection-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    border-color: var(--primary-orange);
}

.selection-card:hover::before {
    opacity: 1;
}

.selection-card.doseworx-software:hover {
    border-color: #28a745;
}

.card-header {
    margin-bottom: 2rem;
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-orange), #ff8533);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
}

.doseworx-icon {
    background: linear-gradient(135deg, #28a745, #20c997) !important;
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3) !important;
}

.selection-card:hover .card-icon {
    transform: scale(1.1);
}

.card-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.card-header p {
    color: var(--white-80);
    font-size: 1.125rem;
    margin: 0;
}

.card-content {
    margin-bottom: 2rem;
}

.service-highlights {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-bottom: 2rem;
}

.service-highlights li {

.doseworx-software .service-highlights li i {
    color: #28a745;
}

.card-stats {
    display: flex;
    justify-content: space-around;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.card-stats .stat {
    text-align: center;
}

.card-stats .stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    display: block;
}

.card-stats .stat-label {
    font-size: 0.875rem;
    color: var(--white-60);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-action {
    margin-top: 1.5rem;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    width: 100%;
    justify-content: center;
}

.doseworx-btn {
    background: linear-gradient(135deg, #28a745, #20c997) !important;
    border-color: #28a745;
}

.doseworx-btn:hover {
    background: linear-gradient(135deg, #20c997, #28a745) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
}

.landing-bg {
    position: absolute;
    inset: 0;
}

.landing-bg .gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    animation: float 8s ease-in-out infinite;
}

.landing-bg .orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--primary-orange) 0%, transparent 70%);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.landing-bg .orb-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #28a745 0%, transparent 70%);
    bottom: 20%;
    right: 10%;
    animation-delay: 4s;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .landing-title {
        font-size: 2.5rem;
    }
    
    .landing-description {
        font-size: 1.125rem;
    }
    
    .selection-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .selection-card {
        padding: 2rem;
    }
    
    .card-stats {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Focus styles for accessibility */
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--primary-orange);
    outline-offset: 2px;
}

/* Terms Modal Styles - Ultra Compact */
.terms-modal-content {
    max-width: 400px;
    max-height: 50vh;
    width: 90vw;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
}

.terms-modal-content .modal-header {
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.terms-modal-content .modal-header h3 {
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.modal-subtitle {
    color: var(--white-60);
    font-size: 0.95rem;
    margin: 0;
}

.terms-scroll-area {
    max-height: 150px;
    overflow-y: auto;
    padding: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 0.5rem;
    font-size: 0.8rem;
}

.terms-section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.terms-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.terms-section h4 {
    color: var(--primary-orange);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
}

.terms-section p {
    color: var(--white-80);
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.terms-section ul {
    list-style: none;
    margin-left: 0;
}

.terms-section li {
    color: var(--white-70);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
}

.terms-section li::before {
    content: '•';
    color: var(--primary-orange);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.terms-acceptance {
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    flex-shrink: 0;
}

.acceptance-checkboxes {
    margin-bottom: 0.5rem;
    padding: 0.5rem;
    border: 2px solid rgba(255, 107, 53, 0.3);
}

.checkbox-label {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    cursor: pointer;
    position: relative;
    padding-left: 1.75rem;
    color: #ffffff;
    line-height: 1.3;
    font-size: 0.85rem;
    font-weight: 500;
    min-height: 1.25rem;
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark {
    position: absolute;
    left: 0;
    top: 2px;
    height: 18px;
    width: 18px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.checkbox-label:hover .checkmark {
    border-color: var(--primary-orange);
    background-color: rgba(255, 107, 53, 0.1);
}

.checkbox-label input:checked ~ .checkmark {
    background-color: var(--primary-orange);
    border-color: var(--primary-orange);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 5px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-label input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-label a {
    color: var(--primary-orange);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.checkbox-label a:hover {
    border-bottom-color: var(--primary-orange);
}

.terms-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 2px solid rgba(255, 107, 53, 0.3);
}

.terms-actions .btn {
    min-width: 120px;
    padding: 0.75rem 1.25rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.legal-notice {
    margin-top: 0.25rem;
    padding: 0.25rem;
    background: rgba(255, 107, 53, 0.05);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 3px;
    display: flex;
    align-items: flex-start;
    gap: 0.25rem;
}

.legal-notice i {
    color: var(--primary-orange);
    margin-top: 2px;
    flex-shrink: 0;
}

.legal-notice small {
    color: var(--white-70);
    line-height: 1.2;
    font-size: 0.7rem;
}

.download-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
    color: #28a745;
    font-size: 0.9rem;
    font-weight: 500;
}

.download-status i {
    font-size: 1rem;
}

.support-info {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    text-align: center;
}

.support-info p {
    color: var(--white-70);
    margin: 0;
    font-size: 0.9rem;
}

.support-info a {
    color: var(--primary-orange);
    text-decoration: none;
}

.support-info a:hover {
    text-decoration: underline;
}

/* Custom scrollbar for terms area */
.terms-scroll-area::-webkit-scrollbar {
    width: 6px;
}

.terms-scroll-area::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.terms-scroll-area::-webkit-scrollbar-thumb {
    background: var(--primary-orange);
    border-radius: 3px;
}

.terms-scroll-area::-webkit-scrollbar-thumb:hover {
    background: #ff5722;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .terms-modal-content {
        width: 95vw;
        max-height: 85vh;
    }
    
    .terms-modal-content .modal-header {
        padding: 1rem;
    }
    
    .terms-scroll-area {
        padding: 0.75rem;
        max-height: 200px;
    }
    
    .terms-acceptance {
        padding: 1rem;
    }
    
    .acceptance-checkboxes {
        padding: 0.75rem;
        margin-bottom: 1rem;
    }
    
    .terms-actions {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        margin-top: 0.75rem;
    }
    
    .terms-actions .btn {
        width: 100%;
        max-width: 250px;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .checkbox-label {
        font-size: 0.85rem;
        padding-left: 1.75rem;
        margin-bottom: 0.75rem;
    }
    
    .checkmark {
        height: 16px;
        width: 16px;
    }
    
    .checkmark:after {
        left: 4px;
        top: 1px;
        width: 3px;
        height: 7px;
    }
    
    .legal-notice {
        padding: 0.5rem;
    }
    
    .legal-notice small {
        font-size: 0.7rem;
    }
}