
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            line-height: 1.6;
            color: #1a1a1a;
            background: #ffffff;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        nav.container {
            border-radius: 50px;
            padding: 15px 30px;
            width: auto;
        }

        /* Header */
        header {
            position: absolute;
            width: auto;
            top: 30px;
            right: 30px;
            z-index: 1000;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 30px;
        }

        .logo-author {
            font-family: 'Noto Serif Hentaigana', sans-serif;
            font-size: 20px;
            font-weight: 500;
            color: #fff;
            display: flex;
            align-items: center;
            gap: 12px;
            letter-spacing: 0.05em;
            text-align: center;

        }

        .logo-image {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            object-fit: cover;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
            margin-left: 20px;
        }

        .nav-links a {
            text-decoration: none;
            color: rgba(26, 26, 26, 0.8);
            transition: color 0.3s ease;
            font-weight: 500;
        }

        .nav-links a:hover {
            color: #1a1a1a;
        }

        /* Status Indicator */
        .status-indicator {
            position: absolute;
            width: auto;
            top: 30px;
            left: 30px;
            z-index: 1000;
            border-radius: 50px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 30px;
        }

        .breathing-dot {
            width: 12px;
            height: 12px;
            background: #10b981;
            border-radius: 50%;
            animation: breathe 2s ease-in-out infinite;
            margin-right: 20px;
        }

        .status-text {
            font-family: 'Noto Serif Hentaigana', sans-serif;
            color: #fff;
            font-weight: 500;
            font-size: 18px;
            letter-spacing: -0.01em;
            word-spacing: -0.2em;
        }

        @keyframes breathe {
            0%, 100% {
                transform: scale(1);
                opacity: 0.8;
            }
            50% {
                transform: scale(1.3);
                opacity: 1;
            }
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
            color: #ffffff;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(1px);
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px) rotate(0deg);
            }
            33% {
                transform: translateY(-20px) rotate(1deg);
            }
            66% {
                transform: translateY(10px) rotate(-1deg);
            }
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            animation: fadeInUp 1s ease;
            border-radius: 20px;
            padding: 40px;
        }

        .hero h1 {
            font-family: 'Playfair', serif;
            font-size: clamp(3rem, 8vw, 6rem);
            font-weight: 800;
            margin-bottom: 20px;
            line-height: 1.2;
            color: #ffffff;
            text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
            letter-spacing: -0.02em;
        }

        .hero p {
            font-family: 'Inter', sans-serif;
            font-size: 1.2rem;
            margin-bottom: 40px;
            color: rgba(255, 255, 255, 0.95);
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
            font-weight: 400;
            line-height: 1.6;
        }

        .cta-button {
            display: inline-block;
            padding: 15px 40px;
            background: rgba(255, 255, 255, 0.2);
            color: white;
            text-decoration: none;
            border-radius: 12px;
            transition: all 0.3s ease;
            font-weight: 600;
            border: 1px solid rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(10px);
        }

        .cta-button:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        }

        /* Track Record Section */
        .track-record {
            position: absolute;
            bottom: 60px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 80px;
            z-index: 3;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            padding: 30px 50px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        }

        .track-item {
            text-align: center;
            color: #ffffff;
        }

        .track-number {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1;
            margin-bottom: 8px;
            text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
            letter-spacing: -0.02em;
        }

        .track-label {
            font-size: 1rem;
            font-weight: 400;
            opacity: 0.9;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
            letter-spacing: 0.02em;
            white-space: nowrap;
        }

        /* Toggle Icon */
        .toggle-icon {
            position: absolute;
            top: 0;
            left: -70px;
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            color: #ffffff;
            z-index: 10;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        }

        .toggle-icon:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: scale(1.1);
        }

        .toggle-icon.visible {
            opacity: 1;
            visibility: visible;
        }

        /* Pricing Cards Overlay */
        .pricing-cards-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 5;
            opacity: 0;
            visibility: hidden;
            transition: all 0.5s ease;
        }

        .pricing-cards-overlay::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(1px);
        }

        .pricing-cards-overlay.visible {
            opacity: 1;
            visibility: visible;
        }

        .pricing-cards-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            max-width: 1200px;
            position: relative;
            z-index: 2;
            transform: translateY(30px);
            transition: transform 0.5s ease;
            align-items: stretch;
            perspective: 1000px;
        }

        .pricing-cards-overlay.visible .pricing-cards-container {
            transform: translateY(0);
        }

        .pricing-overlay-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 40px;
            color: #ffffff;
            text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
            letter-spacing: -0.02em;
            text-align: center;
            grid-column: 1 / -1;
            position: relative;
            padding-left: 70px;
        }

        /* Hero Content Transitions */
        .hero-content {
            transition: all 0.5s ease;
        }

        .hero-content.hidden {
            opacity: 0;
            transform: translateY(-30px);
            pointer-events: none;
        }

        .track-record {
            transition: all 0.5s ease;
        }

        .track-record.hidden {
            opacity: 0;
            transform: translateY(30px);
            pointer-events: none;
        }

        /* Sections */
        .section {
            padding: 100px 0;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 60px;
            color: #1a1a1a;
        }

        #pricing .section-title {
            color: #ffffff;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
        }

        /* Services */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .service-card {
            background: #ffffff;
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid rgba(0, 0, 0, 0.04);
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
        }

        .service-icon {
            width: 60px;
            height: 60px;
            background: #3b82f6;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            font-size: 24px;
            color: white;
        }

        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #1a1a1a;
        }

        .service-card p {
            color: #6b7280;
            line-height: 1.6;
        }

        /* Portfolio */
        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 60px;
        }

        .portfolio-item {
            background: #ffffff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            transition: transform 0.3s ease;
            border: 1px solid rgba(0, 0, 0, 0.04);
        }

        .portfolio-item:hover {
            transform: translateY(-5px);
        }

        .portfolio-image {
            height: 200px;
            background: #f1f5f9;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: #94a3b8;
        }

        .portfolio-content {
            padding: 30px;
        }

        .portfolio-item h3 {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: #1a1a1a;
        }

        .portfolio-item p {
            color: #6b7280;
            font-size: 0.9rem;
        }

        /* Pricing */
        #pricing {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
            position: relative;
        }

        #pricing::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.2);
            backdrop-filter: blur(1px);
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            max-width: 800px;
            margin: 60px auto 0;
            position: relative;
            z-index: 2;
        }

        .pricing-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            padding: 50px 40px;
            border-radius: 20px;
            text-align: center;
            position: relative;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: #ffffff;
            display: flex;
            flex-direction: column;
            height: 700px;
            overflow: hidden;
            transform-style: preserve-3d;
        }

        .pricing-cards-container:hover .pricing-card:not(:hover) {
            transform: scale(0.92) translateY(15px);
            opacity: 0.85;
            filter: blur(0.5px);
        }

        .pricing-card:nth-child(1):hover {
            transform: scale(1.05) translateY(-10px) rotateY(-8deg);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            z-index: 10;
            border-color: rgba(255, 255, 255, 0.4);
        }

        .pricing-card:nth-child(2):hover {
            transform: scale(1.05) translateY(-10px) rotateY(0deg);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            z-index: 10;
            border-color: rgba(255, 255, 255, 0.4);
        }

        .pricing-card:nth-child(3):hover {
            transform: scale(1.05) translateY(-10px) rotateY(8deg);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            z-index: 10;
            border-color: rgba(255, 255, 255, 0.4);
        }

        .pricing-card:hover .popular-badge {
            transform: translateX(-50%) scale(1.1);
            box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
        }

        .pricing-card.featured {
            background: rgba(0, 0, 0, 0.3);
            color: white;
            transform: scale(1.02);
            border: 1px solid rgba(255, 255, 255, 0.3);
            position: relative;
        }

        .popular-badge {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, #10b981, #059669);
            color: white;
            padding: 6px 16px;
            border-radius: 15px;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
            z-index: 1000;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            max-width: 90%;
        }

        .pricing-card h3 {
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: #ffffff;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
            flex-shrink: 0;
        }

        .pricing-card .price {
            font-size: 3rem;
            font-weight: 800;
            margin: 20px 0;
            color: #ffffff;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
            flex-shrink: 0;
        }

        .pricing-features {
            list-style: none;
            margin: 30px 0;
            flex-grow: 1;
            overflow-y: auto;
            max-height: 300px;
        }

        .pricing-features li {
            padding: 8px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.9);
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .pricing-card.featured .pricing-features li {
            border-bottom-color: rgba(255, 255, 255, 0.2);
            color: rgba(255, 255, 255, 0.95);
        }

        .pricing-button {
            display: inline-block;
            padding: 15px 40px;
            background: rgba(255, 255, 255, 0.2);
            color: white;
            text-decoration: none;
            border-radius: 12px;
            transition: all 0.3s ease;
            font-weight: 600;
            margin-top: auto;
            border: 1px solid rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(10px);
            width: fit-content;
            margin-left: auto;
            margin-right: auto;
        }

        .pricing-card.featured .pricing-button {
            background: rgba(255, 255, 255, 0.3);
            color: #ffffff;
            border: 1px solid rgba(255, 255, 255, 0.4);
        }

        .pricing-button:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
            background: rgba(255, 255, 255, 0.3);
        }

        .pricing-card.featured .pricing-button:hover {
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
            background: rgba(255, 255, 255, 0.4);
        }

        .pricing-card:hover .pricing-features li {
            transform: translateX(5px);
            transition: transform 0.3s ease;
        }

        .pricing-card:hover .price {
            transform: scale(1.1);
            transition: transform 0.3s ease;
        }

        /* Footer */
        footer {
            background: #1a1a1a;
            color: white;
            text-align: center;
            padding: 60px 0;
        }

        .footer-content h3 {
            font-size: 2rem;
            margin-bottom: 20px;
        }

        .footer-content p {
            margin-bottom: 30px;
            opacity: 0.8;
        }

        .footer-button {
            display: inline-block;
            padding: 15px 40px;
            background: #3b82f6;
            color: white;
            text-decoration: none;
            border-radius: 8px;
            transition: all 0.3s ease;
            font-weight: 600;
        }

        .footer-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in {
            animation: fadeInUp 0.8s ease;
        }

                 /* Responsive Design */
         
         /* Hide track record on screens less than 1024px */
         @media (max-width: 1023px) {
             .track-record {
                 display: none !important;
             }
         }
         
         /* Hide container and status indicator on screens less than 768px */
         @media (max-width: 767px) {
             .container {
                 display: none !important;
             }
             
             .status-indicator {
                 display: none !important;
             }
         }
         
         /* Hide track record when viewport height is less than 732px */
         @media (max-height: 731px) {
             .track-record {
                 display: none !important;
             }
         }
         
         /* Large Desktop (1200px and up) */
        @media (min-width: 1200px) {
            .pricing-cards-container {
                max-width: 1400px;
                gap: 50px;
            }
            
            .hero h1 {
                font-size: 7rem;
            }
            
            .track-record {
                gap: 100px;
                padding: 40px 60px;
            }
        }
        
        /* Desktop (992px - 1199px) */
        @media (max-width: 1199px) and (min-width: 992px) {
            .pricing-cards-container {
                gap: 30px;
            }
            
            .hero h1 {
                font-size: 5rem;
            }
        }
        
        /* Tablet Landscape (768px - 991px) */
        @media (max-width: 991px) and (min-width: 768px) {
            .nav-links {
                display: none;
            }
            
            .hero h1 {
                font-size: 4rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            .track-record {
                gap: 50px;
                padding: 25px 40px;
                bottom: 50px;
            }
            
            .track-number {
                font-size: 3rem;
            }
            
            .pricing-cards-container {
                grid-template-columns: repeat(3, 1fr);
                gap: 25px;
                max-width: 900px;
            }
            
            .pricing-card {
                padding: 40px 30px;
                height: 650px;
            }
            
                         .pricing-overlay-title {
                 font-size: 3rem;
                 padding-left: 60px;
             }
            
                         .toggle-icon {
                 width: 48px;
                 height: 48px;
                 left: -60px;
             }
        }
        
        /* Tablet Portrait (481px - 767px) */
        @media (max-width: 767px) and (min-width: 481px) {
            .nav-links {
                display: none;
            }
            
            header {
                top: 20px;
                right: 20px;
            }
            
            .status-indicator {
                top: 20px;
                left: 20px;
                padding: 12px 25px;
            }
            
            .status-text {
                font-size: 16px;
            }
            
            .hero h1 {
                font-size: 3.5rem;
            }
            
            .hero p {
                font-size: 1.1rem;
                margin-bottom: 30px;
            }
            
            .hero-content {
                padding: 30px;
                max-width: 600px;
            }
            
            .track-record {
                flex-direction: row;
                gap: 40px;
                padding: 25px 35px;
                bottom: 50px;
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .track-number {
                font-size: 2.8rem;
            }
            
            .track-label {
                font-size: 0.95rem;
            }
            
            .pricing-cards-container {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
                padding: 0 30px;
            }
            
            .pricing-card {
                height: auto;
                min-height: 580px;
                padding: 35px 25px;
            }
            
            .pricing-features {
                max-height: 250px;
            }
            
                         .pricing-overlay-title {
                 font-size: 2.8rem;
                 margin-bottom: 35px;
                 padding-left: 55px;
             }
            
                         .toggle-icon {
                 width: 45px;
                 height: 45px;
                 left: -55px;
             }
            
            .pricing-card.featured {
                transform: none;
            }
            
            .pricing-cards-container:hover .pricing-card:not(:hover) {
                transform: none;
                opacity: 1;
                filter: none;
            }
            
            .pricing-card:nth-child(1):hover,
            .pricing-card:nth-child(2):hover,
            .pricing-card:nth-child(3):hover {
                transform: scale(1.02) translateY(-5px);
                box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
            }
        }
        
        /* Mobile Large (375px - 480px) */
        @media (max-width: 480px) and (min-width: 376px) {
            .nav-links {
                display: none;
            }
            
            header {
                top: 15px;
                right: 15px;
            }
            
            .status-indicator {
                top: 15px;
                left: 15px;
                padding: 10px 20px;
            }
            
            .status-text {
                font-size: 14px;
            }
            
            .breathing-dot {
                width: 10px;
                height: 10px;
                margin-right: 15px;
            }
            
            .hero h1 {
                font-size: 2.8rem;
            }
            
            .hero p {
                font-size: 1rem;
                margin-bottom: 25px;
            }
            
            .hero-content {
                padding: 25px;
                max-width: 100%;
            }
            
            .track-record {
                flex-direction: column;
                gap: 25px;
                padding: 20px 25px;
                bottom: 30px;
                width: 90%;
            }
            
            .track-number {
                font-size: 2.2rem;
            }
            
            .track-label {
                font-size: 0.85rem;
            }
            
            .pricing-cards-container {
                grid-template-columns: 1fr;
                gap: 20px;
                padding: 0 20px;
            }
            
            .pricing-card {
                height: auto;
                min-height: 550px;
                padding: 30px 20px;
            }
            
            .pricing-features {
                max-height: 200px;
            }
            
                         .pricing-overlay-title {
                 font-size: 2.2rem;
                 margin-bottom: 25px;
                 padding-left: 50px;
             }
            
                         .toggle-icon {
                 width: 40px;
                 height: 40px;
                 left: -50px;
             }
            
            .pricing-card.featured {
                transform: none;
            }
            
            .pricing-cards-container:hover .pricing-card:not(:hover) {
                transform: none;
                opacity: 1;
                filter: none;
            }
            
            .pricing-card:nth-child(1):hover,
            .pricing-card:nth-child(2):hover,
            .pricing-card:nth-child(3):hover {
                transform: scale(1.01) translateY(-3px);
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            }
        }
        
        /* Mobile Small (320px - 375px) */
        @media (max-width: 375px) {
            .nav-links {
                display: none;
            }
            
            header {
                top: 10px;
                right: 10px;
            }
            
            .status-indicator {
                top: 10px;
                left: 10px;
                padding: 8px 15px;
            }
            
            .status-text {
                font-size: 12px;
            }
            
            .breathing-dot {
                width: 8px;
                height: 8px;
                margin-right: 12px;
            }
            
            .logo-author {
                font-size: 16px;
                gap: 8px;
            }
            
            .logo-image {
                width: 20px;
                height: 20px;
            }
            
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .hero p {
                font-size: 0.9rem;
                margin-bottom: 20px;
            }
            
            .hero-content {
                padding: 20px;
                max-width: 100%;
            }
            
            .cta-button {
                padding: 12px 30px;
                font-size: 0.9rem;
            }
            
            .track-record {
                flex-direction: column;
                gap: 20px;
                padding: 15px 20px;
                bottom: 25px;
                width: 95%;
            }
            
            .track-number {
                font-size: 1.8rem;
            }
            
            .track-label {
                font-size: 0.8rem;
            }
            
            .pricing-cards-container {
                grid-template-columns: 1fr;
                gap: 15px;
                padding: 0 15px;
            }
            
            .pricing-card {
                height: auto;
                min-height: 500px;
                padding: 25px 15px;
            }
            
            .pricing-card h3 {
                font-size: 1.3rem;
            }
            
            .pricing-card .price {
                font-size: 2.5rem;
            }
            
            .pricing-features {
                max-height: 180px;
            }
            
            .pricing-features li {
                font-size: 0.9rem;
                padding: 6px 0;
            }
            
            .pricing-button {
                padding: 12px 25px;
                font-size: 0.9rem;
            }
            
                         .pricing-overlay-title {
                 font-size: 1.8rem;
                 margin-bottom: 20px;
                 padding-left: 45px;
             }
            
                         .toggle-icon {
                 width: 35px;
                 height: 35px;
                 left: -45px;
             }
            
            .pricing-card.featured {
                transform: none;
            }
            
            .pricing-cards-container:hover .pricing-card:not(:hover) {
                transform: none;
                opacity: 1;
                filter: none;
            }
            
            .pricing-card:nth-child(1):hover,
            .pricing-card:nth-child(2):hover,
            .pricing-card:nth-child(3):hover {
                transform: scale(1.01) translateY(-2px);
                box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
            }

        }

        @media (max-width: 649px) {
            .status-indicator {
                position: fixed;
                right: 0;
                bottom: 0;

            }

            .container {
                position: fixed;
                right: 322px;
                top: 0;
            }
        }
        
        /* Extra Small Mobile (below 320px) */
        @media (max-width: 319px) {
            .hero h1 {
                font-size: 1.8rem;
            }
            
            .hero p {
                font-size: 0.8rem;
            }
            
            .track-record {
                padding: 12px 15px;
                gap: 15px;
            }
            
            .track-number {
                font-size: 1.5rem;
            }
            
            .track-label {
                font-size: 0.75rem;
            }
            
            .pricing-card {
                padding: 20px 12px;
                min-height: 450px;
            }
            
            .pricing-card h3 {
                font-size: 1.1rem;
            }
            
            .pricing-card .price {
                font-size: 2rem;
            }
            
                         .pricing-overlay-title {
                 font-size: 1.5rem;
                 padding-left: 40px;
             }
        }
        
        /* Landscape orientation adjustments for mobile */
        @media (max-height: 500px) and (orientation: landscape) {
            .hero {
                height: 100vh;
                padding: 20px 0;
            }
            
            .hero-content {
                padding: 20px;
            }
            
            .hero h1 {
                font-size: 2.5rem;
                margin-bottom: 10px;
            }
            
            .hero p {
                font-size: 0.9rem;
                margin-bottom: 20px;
            }
            
            .track-record {
                bottom: 20px;
                padding: 15px 25px;
                gap: 30px;
            }
            
            .track-number {
                font-size: 2rem;
            }
            
            .track-label {
                font-size: 0.8rem;
            }
        }

        /* Smooth scrolling */
        html {
            scroll-behavior: smooth;
        }
