/* devani-site-styles:{"backgroundColor":"#ffffff","textColor":"#1a1a1a","fontFamily":"system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif","baseFontSize":"16px","headingFontFamily":"system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif","headingColor":"#1a1a1a","linkColor":"#0066cc","containerMaxWidth":"1200px","customCss":""} */

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
}

a {
    color: #0066cc;
}

img {
    max-width: 100%;
    height: auto;
}

/* ============================================================
   Site styles merged from /templates/global.css on 2026-05-21
   as part of migrating lilassistance marketing root to
   devani_render_page. Devani chrome only loads /global-styles.css.
   ============================================================ */
/* Lil Assistance - Modern Geometric Design System */
/* CSS Reset and Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #111827;
    background: #f9fafb;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Custom Properties */
:root {
    /* Brand Colors - Golden Orange Palette */
    --brand-50: #fffbeb;
    --brand-100: #fef3c7;
    --brand-200: #fde68a;
    --brand-300: #fcd34d;
    --brand-400: #fbbf24;
    --brand-500: #f59e0b;
    --brand-600: #d97706;
    --brand-700: #b45309;
    --brand-800: #92400e;
    --brand-900: #78350f;
    
    --brand-primary: #f59e0b;
    --brand-secondary: #fbbf24;
    --brand-gradient: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    
    /* Neutral Colors */
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--gray-900);
}

h1 { font-size: 3.75rem; }
h2 { font-size: 3rem; }
h3 { font-size: 2.25rem; }
h4 { font-size: 1.875rem; }
h5 { font-size: 1.5rem; }
h6 { font-size: 1.25rem; }

@media (max-width: 768px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 2.25rem; }
    h3 { font-size: 1.875rem; }
}

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 2;
}

/* Utility Classes */
.text-gradient {
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 5rem;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.logo-img {
    height: 2rem;
    width: auto;
    transition: all 0.3s ease;
}

.logo:hover .logo-img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

@media (max-width: 768px) {
    .logo-img {
        height: 1.75rem;
    }
}

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

.nav-links a {
    position: relative;
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -0.25rem;
    left: 0;
    width: 100%;
    height: 0.125rem;
    background: var(--brand-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    border-radius: var(--radius-full);
}

.nav-links a:hover {
    color: var(--brand-primary);
}

.nav-links a:hover::after {
    transform: scaleX(1);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--radius-lg);
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-ghost {
    background: transparent;
    color: var(--gray-700);
}

.btn-ghost:hover {
    background: var(--gray-100);
    color: var(--brand-primary);
}

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

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.3s ease;
}

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

.btn-primary:hover::before {
    left: 100%;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--gray-700);
    cursor: pointer;
    padding: 0.5rem;
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 5rem;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        box-shadow: var(--shadow-xl);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
}

/* Hero Section */
.hero-section {
    padding: 8rem 0 6rem;
    background: linear-gradient(to bottom right, var(--gray-50), white);
    position: relative;
    overflow: hidden;
}

/* Ensure all direct children of sections with geometric backgrounds are above shapes */
.hero-section > *:not(.geometric-bg),
.stats-section > *:not(.geometric-bg),
.services-section > *:not(.geometric-bg),
.cta-section > *:not(.cta-particles) {
    position: relative;
    z-index: 2;
}

/* Ensure containers are always above background shapes */
.container {
    position: relative;
    z-index: 2;
}

/* Animated Background Elements */
.geometric-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.floating-shape {
    position: absolute;
    animation: float 3s ease-in-out infinite;
    z-index: 0;
}

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

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

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.hero-text {
    space-y: 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--brand-50);
    border: 1px solid var(--brand-200);
    border-radius: var(--radius-full);
    color: var(--brand-700);
    font-weight: 500;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.hero-badge:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.hero-title {
    font-size: 3.75rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-title .text-gradient {
    position: relative;
    display: inline-block;
}

.hero-title .text-gradient::after {
    content: '';
    position: absolute;
    bottom: -0.25rem;
    left: 0;
    right: 0;
    height: 0.75rem;
    background: var(--brand-100);
    border-radius: var(--radius-md);
    transform: skewX(-12deg);
}

.hero-description {
    font-size: 1.25rem;
    color: var(--gray-600);
    line-height: 1.75;
    margin-bottom: 2rem;
}

/* Package Selection */
.package-selection {
    margin-top: 2rem;
}

.package-label {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 1rem;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .package-grid {
        grid-template-columns: 1fr;
    }
}

.package-card {
    position: relative;
    padding: 1.5rem;
    background: white;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-xl);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.package-card:hover,
.package-card.popular {
    border-color: var(--brand-primary);
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.package-card .popular-badge {
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.25rem 0.75rem;
    background: var(--brand-gradient);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: var(--radius-full);
}

.package-hours {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.package-desc {
    font-size: 0.875rem;
    color: var(--gray-600);
}

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

.team-hub {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1;
}

.team-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, var(--brand-50), var(--gray-50));
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
}

.team-connections {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.connection-line {
    transition: all 0.3s ease;
}

.team-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8rem;
    height: 8rem;
    background: var(--brand-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    box-shadow: var(--shadow-2xl);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.team-center:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.team-member {
    position: absolute;
    width: 7rem;
    height: 7rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: box-shadow 0.3s ease, opacity 0.3s ease;
    z-index: 5;
    transform: translate(-50%, -50%);
    user-select: none;
}

.team-member.draggable {
    cursor: grab;
}

.team-member.draggable:active {
    cursor: grabbing;
}

.team-member.dragging {
    opacity: 0.8;
    z-index: 100;
    cursor: grabbing !important;
    box-shadow: var(--shadow-2xl);
    transition: none;
}

.team-member:not(.dragging):hover {
    transform: translate(-50%, -50%) scale(1.05);
    box-shadow: var(--shadow-xl);
}

.team-member-icon {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.team-member-role {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gray-700);
    text-align: center;
}

.team-member-status {
    font-size: 0.625rem;
    color: var(--gray-500);
}

@media (max-width: 768px) {
    .team-hub {
        max-width: 400px;
    }
    
    .team-center {
        width: 6rem;
        height: 6rem;
    }
    
    .team-member {
        width: 5.5rem;
        height: 5.5rem;
    }
    
    .team-member-role {
        font-size: 0.625rem;
    }
}

/* Stats Bar */
.stats-bar {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .stats-bar {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

.stat-group {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.stat-group:hover {
    transform: translateY(-2px);
}

.stat-avatars {
    display: flex;
}

.stat-avatar {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--gray-100);
    border: 2px solid white;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    margin-left: -0.5rem;
    transition: all 0.3s ease;
}

.stat-avatar:first-child {
    margin-left: 0;
}

.stat-group:hover .stat-avatar {
    transform: scale(1.1);
}

.stat-text {
    font-weight: 600;
    color: var(--gray-700);
}

.stat-group:hover .stat-text {
    color: var(--brand-primary);
}

.rating-stars {
    display: flex;
    gap: 0.25rem;
    color: #fbbf24;
}

/* Services Section */
.services-section {
    padding: 6rem 0;
    background: white;
    position: relative;
}

.services-section > * {
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    max-width: 42rem;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

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

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: var(--shadow-xl);
    border-color: var(--brand-primary);
}

.service-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: var(--brand-gradient);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: rotate(12deg);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.service-description {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.75;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--gray-600);
    font-size: 0.875rem;
}

.service-features li::before {
    content: "";
    width: 1rem;
    height: 1rem;
    background: var(--brand-gradient);
    border-radius: 2px;
    flex-shrink: 0;
    margin-top: 0.125rem;
    position: relative;
}

.service-features li::after {
    content: "";
    position: absolute;
    width: 0.5rem;
    height: 0.25rem;
    border-left: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(-45deg);
    left: 0.75rem;
    top: 0.875rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--brand-primary);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-link:hover {
    gap: 0.75rem;
}

/* Stats Section */
.stats-section {
    padding: 5rem 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.stats-section > * {
    position: relative;
    z-index: 2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.stat-card {
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-0.5rem);
}

.stat-icon-wrapper {
    position: relative;
    width: 5rem;
    height: 5rem;
    margin: 0 auto 1rem;
}

.stat-icon-bg {
    position: absolute;
    inset: 0;
    background: var(--brand-gradient);
    transform: rotate(45deg);
    transition: all 0.5s ease;
}

.stat-card:hover .stat-icon-bg {
    transform: rotate(225deg);
}

.stat-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-number {
    color: var(--brand-primary);
}

.stat-label {
    font-weight: 500;
    color: var(--gray-600);
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: var(--gray-900);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 0.5rem;
    height: 0.5rem;
    background: var(--brand-400);
    opacity: 0.3;
    animation: pulse 2s ease-in-out infinite;
}

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

.cta-content {
    position: relative;
    z-index: 10;
}

.cta-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

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

.cta-description {
    font-size: 1.25rem;
    color: var(--gray-300);
    max-width: 42rem;
    margin: 0 auto 3rem;
}

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

.btn-cta {
    padding: 1rem 3rem;
    font-size: 1.125rem;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--brand-500);
    color: var(--brand-500);
}

.btn-outline:hover {
    background: var(--brand-500);
    color: white;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 30px;
}

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

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.footer-section h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.footer-section p {
    color: #ccc;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-section a {
    display: block;
    color: #ccc;
    text-decoration: none;
    padding: 5px 0;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: var(--brand-400);
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #999;
    font-size: 14px;
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--brand-gradient);
    transform: translateY(-0.25rem);
}

/* Featured Image */
.featured-image {
    margin: 2rem 0;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Typography and Layout */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .stat-card {
        padding: 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    /* Container adjustments */
    .container {
        padding: 0 1rem;
    }
    
    /* Typography */
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-description {
        font-size: 1rem;
    }
    
    /* Section spacing */
    .hero-section {
        padding: 2rem 0 3rem;
    }
    
    .stats-section,
    .services-section,
    .cta-section {
        padding: 3rem 0;
    }
    
    .section-header {
        margin-bottom: 2rem;
        padding-top: 2rem;
    }
    
    /* Hero visual adjustments */
    .hero-content {
        flex-direction: column;
        gap: 3rem;
    }
    
    .hero-text,
    .hero-visual {
        max-width: 100%;
    }
    
    .team-hub {
        width: 300px;
        height: 300px;
        margin: 0 auto;
    }
    
    .team-member {
        width: 4rem !important;
        height: 4rem !important;
    }
    
    .team-member-role {
        font-size: 0.625rem !important;
    }
    
    /* Package selection */
    .package-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .package-card {
        padding: 1.5rem;
    }
    
    /* Stats grid */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-card {
        padding: 1.25rem;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    /* Services grid */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-icon {
        width: 3rem;
        height: 3rem;
    }
    
    /* Buttons */
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }
    
    .btn-cta {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
    
    .cta-buttons {
        gap: 1rem;
    }
    
    /* Navigation */
    .nav-content {
        padding: 1rem;
    }
    
    .logo-img {
        height: 1.5rem;
    }
    
    /* Keep floating shapes visible on mobile with proper z-index */
    .floating-shape {
        z-index: 0 !important;
        opacity: 0.7;
    }
    
    .geometric-bg {
        z-index: 0 !important;
    }
    
    /* Particles */
    .particle {
        width: 0.25rem;
        height: 0.25rem;
    }
}

@media (max-width: 480px) {
    /* Extra small screens */
    .hero-title {
        font-size: 1.75rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .team-hub {
        width: 250px;
        height: 250px;
    }
    
    .team-member {
        width: 3.5rem !important;
        height: 3.5rem !important;
    }
    
    /* Stats bar in hero */
    .stats-bar {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .stat-group {
        justify-content: center;
    }
}

/* Mobile-specific improvements */
@media (max-width: 768px) {
    /* Fix overflow issues */
    body {
        overflow-x: hidden;
    }
    
    /* Improve readability */
    p {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    /* Fix nav actions on mobile */
    .nav-actions {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
    
    /* Hide sign in button on mobile to save space */
    .nav-actions .btn-ghost {
        display: none;
    }
    
    /* Adjust primary button on mobile */
    .nav-actions .btn-primary {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
    
    /* Ensure mobile menu toggle is visible */
    .mobile-menu-toggle {
        display: block;
        background: var(--gray-100);
        border: 1px solid var(--gray-200);
        border-radius: var(--radius-md);
        padding: 0.5rem;
        font-size: 1.25rem;
        color: var(--gray-700);
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .mobile-menu-toggle:hover {
        background: var(--gray-200);
        color: var(--brand-primary);
    }
    
    /* Fix inline grid layouts */
    div[style*="grid-template-columns: repeat(auto-fit"] {
        grid-template-columns: 1fr !important;
    }
    
    /* Fix two-column layouts */
    div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    /* Newsletter modal responsiveness */
    #newsletter-modal > div {
        margin: 1rem !important;
        padding: 1.5rem !important;
    }
    
    /* Fix draggable elements on mobile */
    .draggable {
        touch-action: none;
    }
    
    /* Improve table/list readability */
    ul, ol {
        padding-left: 1.5rem;
    }
    
    /* Fix badge and icon sizes */
    .hero-badge {
        font-size: 0.75rem !important;
        padding: 0.5rem 1rem !important;
    }
    
    /* Reduce large inline margins/paddings */
    [style*="margin-top: 3rem"] {
        margin-top: 2rem !important;
    }
    
    [style*="margin-bottom: 3rem"] {
        margin-bottom: 2rem !important;
    }
    
    [style*="padding: 2rem"] {
        padding: 1.5rem !important;
    }
    
    /* Fix section headers */
    .section-header[style*="padding-top: 6rem"] {
        padding-top: 3rem !important;
    }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    /* Larger touch targets */
    .btn {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Remove hover effects on touch devices */
    .service-card:hover,
    .stat-card:hover,
    .package-card:hover {
        transform: none !important;
    }
}

/* Clip Path Utilities */
.clip-triangle {
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.clip-corner {
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.clip-diagonal {
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
}

.clip-arrow {
    clip-path: polygon(0% 0%, 75% 0%, 100% 50%, 75% 100%, 0% 100%);
}