/* --- Enhanced Mobile Optimization (Agent 2024-06) --- */
@media screen and (max-width: 600px) {
    html, body {
        font-size: 16px;
        overflow-x: hidden;
    }
    .container {
        padding: 0 8px;
        max-width: 100vw;
    }
    .navbar {
        height: 56px;
    }
    .nav-container {
        height: 56px;
        padding: 0 8px;
    }
    .nav-logo a {
        font-size: 1.2rem;
    }
    .nav-toggle {
        padding: 6px;
    }
    .nav-menu {
        top: 56px;
        padding: 1.2rem 0;
    }
    .nav-menu .nav-link {
        font-size: 1rem;
        padding: 0.8rem 1rem;
    }
    .hero {
        padding: 80px 0 40px;
        min-height: 80vh;
    }
    .hero-container {
        gap: 1.2rem;
        padding: 0 4px;
    }
    .hero-title {
        font-size: 1.3rem;
        margin-bottom: 0.7rem;
    }
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1rem;
        padding: 0 0.2rem;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 0.7rem;
        padding: 0;
    }
    .hero-buttons .btn {
        min-width: 120px;
        font-size: 0.95rem;
        padding: 12px 10px;
    }
    .hero-logo {
        max-width: 140px;
        max-height: 140px;
        margin-bottom: 1rem;
    }
    .about {
        padding: 30px 0;
    }
    .about-content {
        gap: 1rem;
    }
    .services {
        padding: 30px 0;
    }
    .services-grid {
        gap: 1rem;
        padding: 0;
    }
    .service-card {
        min-height: unset;
        padding: 1rem 0.5rem;
        border-radius: 10px;
    }
    .service-card h3 {
        font-size: 1.1rem;
    }
    .service-card p {
        font-size: 0.8rem;
    }
    .service-card .btn-primary {
        font-size: 0.85rem !important;
        padding: 12px 4px !important;
        min-height: 40px;
    }
    .app-logo-img {
        max-width: 60px;
        max-height: 60px;
    }
    .analysis {
        padding: 30px 0;
    }
    .analysis-content {
        gap: 1rem;
    }
    .contact {
        padding: 30px 0;
    }
    .contact-form {
        padding: 1rem 0.5rem;
        border-radius: 10px;
    }
    .footer {
        padding: 1rem 0 0.5rem;
    }
    .footer-content {
        gap: 0.5rem;
    }
    .footer-section {
        padding: 0.5rem 0;
    }
    .footer-section h3, .footer-section h4 {
        font-size: 1rem;
    }
    .footer-section p, .footer-section ul li a {
        font-size: 0.8rem;
    }
    .footer-bottom {
        padding-top: 0.5rem;
        margin-top: 0.3rem;
    }
    .footer-bottom p {
        font-size: 0.7rem;
    }
    section {
        padding: 20px 0;
    }
    h1 {
        font-size: 1.3rem;
    }
    h2 {
        font-size: 1.1rem;
    }
    h3 {
        font-size: 1rem;
    }
    p, li {
        font-size: 0.85rem;
    }
    .share-float {
        right: 6px;
        bottom: 6px;
    }
    .share-icon {
        width: 38px;
        height: 38px;
    }
    .share-menu {
        min-width: 120px;
        right: -10px;
        bottom: 44px;
    }
}
/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* DraftKings Color Theme */
    --dk-black: #1a1a1a;
    --dk-orange: #ff6b35;
    --dk-orange-light: #ff8533;
    --dk-orange-dark: #e55d00;
    --dk-white: #ffffff;
    --dk-gray-light: #f5f5f5;
    --dk-gray-medium: #666666;
    --dk-gray-dark: #333333;
    --dk-text-secondary: #666666;
    --dk-text-hover: #e55d00;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--dk-gray-dark);
    background-color: #0a0a0a;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--dk-white);
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 1rem;
    color: var(--dk-gray-light);
}

li {
    color: var(--dk-gray-light);
}

a {
    color: var(--dk-orange);
    text-decoration: none;
}

a:hover {
    color: var(--dk-orange-light);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: var(--dk-orange);
    color: var(--dk-white);
}

.btn-primary:hover {
    background: var(--dk-orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 108, 0, 0.3);
}

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

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

/* Contact Form Mailto Buttons */
.contact-form a.btn-primary:hover {
    background: var(--dk-orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--dk-black);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--dk-orange);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.nav-logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dk-orange);
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

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

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: width 0.3s ease;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.nav-toggle:hover {
    background-color: rgba(255, 107, 53, 0.1);
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--dk-orange);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(10px);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--dk-white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--dk-gray-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.hero-logo {
    max-width: 400px;
    max-height: 400px;
    width: auto;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(255, 107, 53, 0.3));
    transition: all 0.3s ease;
    /* Comprehensive all-sides edge blending with multiple gradient layers */
    mask: 
        /* Radial fade from center outward */
        radial-gradient(ellipse 85% 80% at center, black 35%, rgba(0,0,0,0.95) 50%, rgba(0,0,0,0.8) 65%, rgba(0,0,0,0.5) 75%, rgba(0,0,0,0.25) 85%, transparent 95%),
        /* Top edge fade */
        linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.3) 10%, rgba(0,0,0,0.7) 25%, black 40%, black 100%),
        /* Bottom edge fade */
        linear-gradient(to top, transparent 0%, rgba(0,0,0,0.3) 10%, rgba(0,0,0,0.7) 25%, black 40%, black 100%),
        /* Left edge fade */
        linear-gradient(to right, transparent 0%, rgba(0,0,0,0.3) 10%, rgba(0,0,0,0.7) 25%, black 40%, black 100%),
        /* Right edge fade */
        linear-gradient(to left, transparent 0%, rgba(0,0,0,0.3) 10%, rgba(0,0,0,0.7) 25%, black 40%, black 100%);
    -webkit-mask: 
        radial-gradient(ellipse 85% 80% at center, black 35%, rgba(0,0,0,0.95) 50%, rgba(0,0,0,0.8) 65%, rgba(0,0,0,0.5) 75%, rgba(0,0,0,0.25) 85%, transparent 95%),
        linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.3) 10%, rgba(0,0,0,0.7) 25%, black 40%, black 100%),
        linear-gradient(to top, transparent 0%, rgba(0,0,0,0.3) 10%, rgba(0,0,0,0.7) 25%, black 40%, black 100%),
        linear-gradient(to right, transparent 0%, rgba(0,0,0,0.3) 10%, rgba(0,0,0,0.7) 25%, black 40%, black 100%),
        linear-gradient(to left, transparent 0%, rgba(0,0,0,0.3) 10%, rgba(0,0,0,0.7) 25%, black 40%, black 100%);
    mask-composite: intersect;
    -webkit-mask-composite: source-in;
}

.hero-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 25px 50px rgba(255, 107, 53, 0.4));
}

/* Enhanced all-sides background glow for seamless blending */
.hero-logo-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 160%;
    height: 160%;
    background: 
        /* Central glow */
        radial-gradient(ellipse 50% 40% at center, rgba(255, 107, 53, 0.12) 0%, transparent 70%),
        /* Extended outer glow */
        radial-gradient(ellipse 80% 70% at center, rgba(255, 107, 53, 0.06) 0%, transparent 80%),
        /* Background transition layer */
        radial-gradient(ellipse 100% 90% at center, rgba(10, 10, 10, 0.4) 0%, rgba(10, 10, 10, 0.7) 60%, #0a0a0a 85%);
    z-index: -1;
    border-radius: 50%;
    filter: blur(3px);
}

/* Comprehensive edge transition layer */
.hero-logo-container::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 130%;
    height: 130%;
    background: 
        /* Top fade */
        linear-gradient(to bottom, #0a0a0a 0%, rgba(10, 10, 10, 0.8) 15%, transparent 35%),
        /* Bottom fade */
        linear-gradient(to top, #0a0a0a 0%, rgba(10, 10, 10, 0.8) 15%, transparent 35%),
        /* Left fade */
        linear-gradient(to right, #0a0a0a 0%, rgba(10, 10, 10, 0.8) 15%, transparent 35%),
        /* Right fade */
        linear-gradient(to left, #0a0a0a 0%, rgba(10, 10, 10, 0.8) 15%, transparent 35%),
        /* Corner fades */
        radial-gradient(ellipse at top left, #0a0a0a 0%, rgba(10, 10, 10, 0.6) 20%, transparent 40%),
        radial-gradient(ellipse at top right, #0a0a0a 0%, rgba(10, 10, 10, 0.6) 20%, transparent 40%),
        radial-gradient(ellipse at bottom left, #0a0a0a 0%, rgba(10, 10, 10, 0.6) 20%, transparent 40%),
        radial-gradient(ellipse at bottom right, #0a0a0a 0%, rgba(10, 10, 10, 0.6) 20%, transparent 40%);
    z-index: -1;
    border-radius: 50%;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    color: var(--dk-white);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--dk-gray-light);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 80px 0;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text h3 {
    color: var(--dk-white);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.about-text h3:first-child {
    margin-top: 0;
}

.about-text ul {
    list-style: none;
    padding-left: 0;
}

.about-text li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--dk-gray-light);
}

.about-text li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--dk-orange);
    font-weight: bold;
}

.about-stats {
    background: linear-gradient(135deg, var(--dk-orange) 0%, var(--dk-black) 100%);
    padding: 2rem;
    border-radius: 16px;
    color: white;
    text-align: center;
}

.stat-item {
    margin-bottom: 2rem;
}

.stat-item:last-child {
    margin-bottom: 0;
}

.stat-item h4 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(10px);
}

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

.service-card {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 53, 0.2);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

/* App Logo Styles */
.app-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
    height: 120px;
}

.app-logo-img {
    max-width: 100px;
    max-height: 100px;
    width: auto;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.app-logo-img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Uniform Service Cards */
.service-card {
    display: flex;
    flex-direction: column;
    min-height: 400px;
    height: auto;
}

.service-card h3 {
    color: var(--dk-white);
    margin-bottom: 1rem;
}

/* App Summary and Details */
.app-summary {
    font-size: 1rem;
    color: var(--dk-gray-light);
    margin-bottom: 1rem;
    flex-grow: 0;
}

.app-details {
    margin: 1rem 0;
    flex-grow: 1;
}

.toggle-details {
    background: none;
    border: none;
    color: var(--dk-orange);
    cursor: pointer;
    font-size: 0.9rem;
    padding: 0.5rem 0;
    text-decoration: underline;
    margin-bottom: 1rem;
}

.toggle-details:hover {
    color: var(--dk-text-hover);
}

.btn-link {
    background: transparent;
    border: none;
    color: var(--dk-orange);
    text-decoration: underline;
    cursor: pointer;
}

.btn-link:hover {
    color: var(--dk-text-hover);
}

/* Ensure download button stays at bottom */
.service-card .btn-primary {
    margin-top: auto;
}

.service-card p {
    color: var(--dk-gray-light);
    line-height: 1.6;
}

/* Analysis Section */
.analysis {
    padding: 80px 0;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
}

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

.analysis-card {
    background: rgba(40, 40, 40, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 53, 0.3);
    padding: 2rem;
    border-radius: 16px;
    border-left: 4px solid var(--dk-orange);
}

.analysis-card h3 {
    color: var(--dk-white);
    margin-bottom: 1rem;
}

.analysis-card p {
    color: var(--dk-gray-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.read-more {
    color: var(--dk-orange);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: var(--dk-text-hover);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(10px);
}

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

.contact-info h3 {
    color: var(--dk-white);
    margin-bottom: 2rem;
}

.contact-item {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 107, 53, 0.2);
    color: var(--dk-gray-light);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item strong {
    color: var(--dk-white);
    margin-right: 0.5rem;
}

.contact-form {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 53, 0.2);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--dk-white);
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 8px;
    font-size: 1rem;
    background: rgba(10, 10, 10, 0.8);
    color: var(--dk-white);
    transition: border-color 0.3s ease;
}

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

.form-group input::placeholder,
.form-group textarea::placeholder,
.form-group select::placeholder {
    color: rgba(245, 245, 245, 0.6);
}

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

/* Footer */
.footer {
    background: var(--dk-black);
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-section p {
    color: #a0aec0;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section ul li a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--dk-orange);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 107, 53, 0.3);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: var(--dk-gray-light);
    margin: 0;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--dk-black);
        width: 100%;
        text-align: center;
        transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        border-top: 1px solid var(--dk-orange);
        z-index: 1000;
        backdrop-filter: blur(10px);
    }

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

    .nav-menu li {
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255, 107, 53, 0.1);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu .nav-link {
        color: var(--dk-white);
        font-size: 1.1rem;
        padding: 1rem 2rem;
        display: block;
        transition: all 0.3s ease;
        border-radius: 8px;
        margin: 0 1rem;
    }

    .nav-menu .nav-link:hover {
        background-color: rgba(255, 107, 53, 0.1);
        color: var(--dk-orange);
        transform: translateX(10px);
    }

    .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-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
        padding: 0 1rem;
    }

    .hero-buttons .btn {
        min-width: 200px;
        padding: 14px 24px;
        font-size: 1rem;
    }

    .hero-logo {
        max-width: 280px;
        max-height: 280px;
        margin-bottom: 2rem;
    }

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

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }

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

    .contact-form {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .contact-form h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .contact-form p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    /* Mobile mailto button grid optimization */
    .contact-form div[style*="grid"] {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }

    .contact-form a.btn-primary {
        width: 100% !important;
        max-width: none !important;
        padding: 16px 20px !important;
        font-size: 1rem !important;
        margin-bottom: 0.5rem;
        text-align: center !important;
        display: block !important;
    }

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

    /* Enhanced mobile typography */
    h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    h2 {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    h3 {
        font-size: 1.5rem;
        line-height: 1.4;
        margin-bottom: 0.8rem;
    }

    p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }

    .container {
        padding: 0 20px;
    }

    /* Section spacing */
    section {
        padding: 60px 0;
    }

    /* Footer mobile optimization */
    .footer {
        padding: 2rem 0 1rem;
    }

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

    .footer-section {
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255, 107, 53, 0.2);
    }

    .footer-section:last-child {
        border-bottom: none;
    }

    .footer-section h3,
    .footer-section h4 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .footer-section p {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 0.8rem;
    }

    .footer-section ul li {
        margin-bottom: 0.8rem;
    }

    .footer-section ul li a {
        font-size: 0.95rem;
        padding: 0.3rem 0;
        display: inline-block;
    }

    .footer-bottom {
        padding-top: 1.5rem;
        margin-top: 1rem;
    }

    .footer-bottom p {
        font-size: 0.85rem;
    }

    .analysis-content {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .container {
        padding: 0 15px;
    }
}

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

    .hero-subtitle {
        font-size: 1rem;
        padding: 0 0.5rem;
        margin-bottom: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        padding: 0 1rem;
    }

    .hero-logo {
        max-width: 250px;
        max-height: 250px;
        margin-bottom: 1.5rem;
    }

    .btn {
        width: 100%;
        max-width: 250px;
        padding: 14px 20px;
        font-size: 1rem;
    }

    .service-card,
    .contact-form {
        padding: 1.5rem 1rem;
        margin-bottom: 1.5rem;
    }

    .service-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .service-card p {
        font-size: 0.85rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }

    .contact-form a.btn-primary {
        padding: 14px 16px !important;
        font-size: 0.95rem !important;
        margin-bottom: 0.8rem;
    }

    /* Service card button optimization for small screens */
    .service-card .btn-primary {
        width: 100% !important;
        max-width: none !important;
        padding: 16px 8px !important;
        font-size: 0.85rem !important;
        line-height: 1.3;
        margin-top: 1rem;
        word-wrap: break-word;
        hyphens: auto;
        text-align: center;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Enhanced small screen typography */
    h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

    h2 {
        font-size: 1.7rem;
        line-height: 1.3;
        margin-bottom: 0.8rem;
    }

    h3 {
        font-size: 1.3rem;
        line-height: 1.4;
        margin-bottom: 0.6rem;
    }

    p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }

    .container {
        padding: 0 15px;
    }

    /* Tighter section spacing for small screens */
    section {
        padding: 40px 0;
    }

    /* Footer small screen optimization */
    .footer {
        padding: 1.5rem 0 0.8rem;
    }

    .footer-content {
        gap: 1rem;
    }

    .footer-section {
        padding: 0.8rem 0;
    }

    .footer-section h3,
    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }

    .footer-section p {
        font-size: 0.85rem;
        margin-bottom: 0.6rem;
    }

    .footer-section ul li {
        margin-bottom: 0.6rem;
    }

    .footer-section ul li a {
        font-size: 0.9rem;
    }

    .footer-bottom {
        padding-top: 1rem;
        margin-top: 0.8rem;
    }

    .footer-bottom p {
        font-size: 0.8rem;
    }

    .service-card h3 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }

    .service-card p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }

    .service-card .btn-primary {
        width: 100%;
        max-width: none;
        padding: 14px 20px;
        font-size: 1rem;
        margin-top: 1rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .hero-logo {
        max-width: 250px;
        max-height: 250px;
    }
}

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

.service-card,
.analysis-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling enhancement */
section {
    scroll-margin-top: 80px;
}

/* Floating Share Button */
.share-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1000;
}

.share-icon {
    width: 56px;
    height: 56px;
    background: var(--dk-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
}

.share-icon:hover {
    background: var(--dk-orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.6);
}

.share-icon span {
    font-size: 1.5rem;
}

.share-menu {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 16px;
    padding: 1rem;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.share-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.share-menu-header {
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 107, 53, 0.2);
}

.share-menu-header h4 {
    color: var(--dk-white);
    font-size: 1rem;
    margin: 0;
    text-align: center;
}

.share-options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.share-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    color: var(--dk-white);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.share-option:hover {
    background: rgba(255, 107, 53, 0.2);
    color: var(--dk-orange);
    transform: translateX(5px);
}

.share-emoji {
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

/* Mobile optimization for share button */
@media screen and (max-width: 768px) {
    .share-float {
        right: 15px;
        bottom: 15px;
    }
    
    .share-icon {
        width: 52px;
        height: 52px;
    }
    
    .share-icon span {
        font-size: 1.4rem;
    }
    
    .share-menu {
        min-width: 180px;
        right: -10px;
    }
}

@media screen and (max-width: 480px) {
    .share-float {
        right: 10px;
        bottom: 10px;
    }
    
    .share-icon {
        width: 48px;
        height: 48px;
    }
    
    .share-icon span {
        font-size: 1.3rem;
    }
    
    .share-menu {
        min-width: 160px;
        right: -20px;
        bottom: 60px;
    }
    
    .share-option {
        padding: 0.6rem;
        font-size: 0.85rem;
    }
}

/* Google Play Store Links */
.service-card a[href*="play.google.com"] {
    transition: all 0.3s ease;
    border-radius: 4px;
    padding: 0.5rem;
    margin: 0 auto;
}

.service-card a[href*="play.google.com"]:hover {
    color: var(--dk-orange) !important;
    background: rgba(255, 107, 53, 0.1);
    text-decoration: none !important;
    transform: translateY(-1px);
}

/* Mobile optimization for Play Store links */
@media screen and (max-width: 768px) {
    .service-card a[href*="play.google.com"] {
        font-size: 0.8rem !important;
        padding: 0.4rem;
    }
}

@media screen and (max-width: 480px) {
    .service-card a[href*="play.google.com"] {
        font-size: 0.75rem !important;
        padding: 0.3rem;
    }
}