:root {
            --primary: #0066ff;
            --primary-hover: #0052cc;
            --primary-light: #e6f0ff;
            --accent: #00f5d4;
            --accent-dark: #7b2cbf;
            --text-main: #1e293b;
            --text-muted: #64748b;
            --bg-light: #f8fafc;
            --bg-white: #ffffff;
            --border-color: #e2e8f0;
            --shadow-sm: 0 2px 4px rgba(0,0,0,0.02);
            --shadow-md: 0 4px 20px rgba(0,0,0,0.05);
            --shadow-lg: 0 10px 30px rgba(0,0,0,0.08);
            --radius-sm: 6px;
            --radius-md: 12px;
            --radius-lg: 20px;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        /* Base Reset */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
            color: var(--text-main);
            background-color: var(--bg-light);
            line-height: 1.6;
        }
        body {
            overflow-x: hidden;
        }
        a {
            color: inherit;
            text-decoration: none;
            transition: var(--transition);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        ul, ol {
            list-style: none;
        }

        /* Structure Container */
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Typography */
        h1, h2, h3, h4 {
            font-weight: 700;
            color: #0f172a;
            line-height: 1.3;
        }
        .section-title-wrapper {
            text-align: center;
            margin-bottom: 50px;
        }
        .section-title-wrapper h2 {
            font-size: 2rem;
            margin-bottom: 12px;
            position: relative;
            display: inline-block;
            padding-bottom: 8px;
        }
        .section-title-wrapper h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            border-radius: 2px;
        }
        .section-title-wrapper p {
            color: var(--text-muted);
            font-size: 1.1rem;
        }

        /* Navigation Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background-color: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border-color);
            transition: var(--transition);
        }
        header.scrolled {
            box-shadow: var(--shadow-md);
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 70px;
        }
        .logo-area {
            font-weight: 800;
            font-size: 1.5rem;
            background: linear-gradient(135deg, var(--primary), var(--accent-dark));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 24px;
        }
        .nav-link {
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--text-main);
        }
        .nav-link:hover {
            color: var(--primary);
        }
        .nav-btn {
            background: linear-gradient(135deg, var(--primary), #00d2ff);
            color: #fff;
            padding: 8px 20px;
            border-radius: 30px;
            font-weight: 600;
            box-shadow: 0 4px 15px rgba(0, 102, 255, 0.2);
        }
        .nav-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 102, 255, 0.3);
            color: #fff;
        }
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--text-main);
        }

        /* Hero Section (No Images Allowed) */
        .hero-section {
            padding: 160px 0 100px;
            background: radial-gradient(circle at 80% 20%, rgba(0, 245, 212, 0.1) 0%, transparent 50%),
                        radial-gradient(circle at 10% 80%, rgba(123, 44, 191, 0.08) 0%, transparent 50%),
                        #ffffff;
            position: relative;
            text-align: center;
        }
        .hero-badge {
            display: inline-block;
            padding: 6px 16px;
            background-color: var(--primary-light);
            color: var(--primary);
            font-weight: 600;
            font-size: 0.85rem;
            border-radius: 30px;
            margin-bottom: 24px;
            letter-spacing: 1px;
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        .hero-section h1 {
            font-size: 3rem;
            font-weight: 800;
            max-width: 900px;
            margin: 0 auto 24px;
            background: linear-gradient(135deg, #0f172a 30%, var(--primary) 70%, var(--accent-dark) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .hero-desc {
            font-size: 1.25rem;
            color: var(--text-muted);
            max-width: 750px;
            margin: 0 auto 36px;
        }
        .hero-ctas {
            display: flex;
            justify-content: center;
            gap: 16px;
            margin-bottom: 48px;
            flex-wrap: wrap;
        }
        .btn-main {
            background: linear-gradient(135deg, var(--primary), var(--accent-dark));
            color: #fff;
            padding: 14px 32px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 1.05rem;
            box-shadow: 0 10px 25px rgba(0, 102, 255, 0.25);
            transition: var(--transition);
        }
        .btn-main:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(0, 102, 255, 0.35);
            color: #fff;
        }
        .btn-secondary {
            background-color: var(--bg-light);
            border: 1px solid var(--border-color);
            color: var(--text-main);
            padding: 14px 32px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 1.05rem;
            transition: var(--transition);
        }
        .btn-secondary:hover {
            background-color: var(--border-color);
            transform: translateY(-3px);
        }
        .hero-highlights {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            max-width: 1000px;
            margin: 60px auto 0;
            border-top: 1px solid var(--border-color);
            padding-top: 40px;
        }
        .highlight-item h3 {
            font-size: 2.2rem;
            color: var(--primary);
            margin-bottom: 6px;
        }
        .highlight-item p {
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        /* Standard Section */
        section {
            padding: 90px 0;
            border-bottom: 1px solid var(--border-color);
        }
        .bg-white-section {
            background-color: var(--bg-white);
        }

        /* About Us Section */
        .about-grid {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 48px;
            align-items: center;
        }
        .about-content h3 {
            font-size: 1.8rem;
            margin-bottom: 18px;
            color: #0f172a;
        }
        .about-text {
            color: var(--text-muted);
            margin-bottom: 24px;
            font-size: 1.05rem;
        }
        .about-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
        .about-feature-card {
            background-color: var(--bg-light);
            padding: 20px;
            border-radius: var(--radius-md);
            border-left: 4px solid var(--primary);
        }
        .about-feature-card h4 {
            margin-bottom: 8px;
            font-size: 1.1rem;
        }
        .about-feature-card p {
            font-size: 0.9rem;
            color: var(--text-muted);
        }
        .about-visual {
            background: linear-gradient(135deg, #00c6ff, #0072ff);
            border-radius: var(--radius-lg);
            padding: 40px;
            color: #fff;
            box-shadow: var(--shadow-lg);
        }
        .visual-stat-box {
            border-bottom: 1px solid rgba(255,255,255,0.2);
            padding-bottom: 20px;
            margin-bottom: 20px;
        }
        .visual-stat-box:last-child {
            border-bottom: none;
            padding-bottom: 0;
            margin-bottom: 0;
        }
        .visual-stat-box h5 {
            font-size: 2.5rem;
            font-weight: 800;
        }
        .visual-stat-box p {
            font-size: 0.95rem;
            opacity: 0.9;
        }

        /* Services Grid (Card Layouts) */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 28px;
        }
        .service-card {
            background-color: var(--bg-white);
            border-radius: var(--radius-md);
            padding: 32px;
            border: 1px solid var(--border-color);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            opacity: 0;
            transition: var(--transition);
        }
        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
        }
        .service-card:hover::before {
            opacity: 1;
        }
        .service-icon-wrap {
            width: 50px;
            height: 50px;
            background-color: var(--primary-light);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            color: var(--primary);
            font-size: 1.5rem;
            font-weight: 700;
        }
        .service-card h3 {
            font-size: 1.35rem;
            margin-bottom: 12px;
        }
        .service-card p {
            color: var(--text-muted);
            font-size: 0.95rem;
            margin-bottom: 20px;
            flex-grow: 1;
        }
        .service-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 15px;
        }
        .service-tag {
            background-color: var(--bg-light);
            color: var(--text-muted);
            padding: 4px 10px;
            border-radius: 4px;
            font-size: 0.8rem;
        }

        /* Tabbed Flow Section */
        .tab-controls {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }
        .tab-btn {
            background-color: var(--bg-white);
            border: 1px solid var(--border-color);
            padding: 10px 24px;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }
        .tab-btn.active, .tab-btn:hover {
            background-color: var(--primary);
            color: #fff;
            border-color: var(--primary);
        }
        .tab-pane {
            display: none;
            animation: fadeIn 0.5s ease;
        }
        .tab-pane.active {
            display: block;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .flow-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }
        .flow-step-card {
            background-color: var(--bg-white);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md);
            padding: 24px;
            position: relative;
        }
        .flow-step-num {
            font-size: 3rem;
            font-weight: 800;
            color: rgba(0, 102, 255, 0.1);
            position: absolute;
            top: 10px;
            right: 20px;
        }
        .flow-step-card h4 {
            margin-bottom: 12px;
            margin-top: 10px;
        }
        .flow-step-card p {
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        /* Solutions Panel */
        .solutions-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 32px;
        }
        .solution-card {
            background-color: var(--bg-light);
            border-radius: var(--radius-lg);
            padding: 32px;
            border: 1px solid var(--border-color);
            display: flex;
            gap: 20px;
            transition: var(--transition);
        }
        .solution-card:hover {
            box-shadow: var(--shadow-md);
            background-color: var(--bg-white);
        }
        .sol-icon {
            font-size: 2rem;
            line-height: 1;
        }
        .sol-info h3 {
            margin-bottom: 10px;
            font-size: 1.25rem;
        }
        .sol-info p {
            color: var(--text-muted);
            font-size: 0.95rem;
        }

        /* Comparison Table */
        .table-responsive {
            overflow-x: auto;
            background-color: var(--bg-white);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-md);
            border: 1px solid var(--border-color);
        }
        table {
            width: 100%;
            border-collapse: collapse;
            text-align: left;
        }
        th, td {
            padding: 18px 24px;
            border-bottom: 1px solid var(--border-color);
        }
        th {
            background-color: #f1f5f9;
            font-weight: 700;
            color: #0f172a;
        }
        tr:last-child td {
            border-bottom: none;
        }
        .badge-score {
            display: inline-block;
            background: linear-gradient(135deg, #00f5d4, #00b4d8);
            color: #0f172a;
            font-weight: 700;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
        }
        .rating-star {
            color: #f59e0b;
            font-size: 1.1rem;
        }

        /* Token Price Board */
        .token-price-wrapper {
            background-color: #0f172a;
            color: #fff;
            padding: 40px;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-lg);
        }
        .token-price-wrapper h3 {
            color: #fff;
            margin-bottom: 30px;
            text-align: center;
        }
        .token-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 20px;
        }
        .token-card {
            background-color: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: var(--radius-md);
            padding: 24px;
            text-align: center;
            transition: var(--transition);
        }
        .token-card:hover {
            background-color: rgba(255,255,255,0.1);
            transform: translateY(-5px);
        }
        .token-card h4 {
            color: var(--accent);
            margin-bottom: 8px;
            font-size: 1.2rem;
        }
        .token-card .price {
            font-size: 1.8rem;
            font-weight: 800;
            margin: 12px 0;
            color: #fff;
        }
        .token-card .desc {
            font-size: 0.8rem;
            color: rgba(255,255,255,0.6);
        }

        /* Media Display Zone (With required image placeholders) */
        .media-showcase-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        .media-box {
            border-radius: var(--radius-md);
            overflow: hidden;
            background-color: var(--bg-white);
            border: 1px solid var(--border-color);
            box-shadow: var(--shadow-sm);
        }
        .media-box img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            transition: var(--transition);
        }
        .media-box:hover img {
            transform: scale(1.05);
        }
        .media-box-body {
            padding: 20px;
        }
        .media-box-body h4 {
            font-size: 1.1rem;
            margin-bottom: 8px;
        }
        .media-box-body p {
            color: var(--text-muted);
            font-size: 0.85rem;
        }

        /* FAQ Accordion */
        .faq-accordion {
            max-width: 800px;
            margin: 0 auto;
        }
        .faq-item {
            background-color: var(--bg-white);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md);
            margin-bottom: 16px;
            overflow: hidden;
            transition: var(--transition);
        }
        .faq-header {
            padding: 20px 24px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            user-select: none;
            background-color: var(--bg-white);
        }
        .faq-header::after {
            content: '+';
            font-size: 1.5rem;
            color: var(--primary);
            transition: var(--transition);
        }
        .faq-item.active .faq-header::after {
            transform: rotate(45deg);
        }
        .faq-body {
            padding: 0 24px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out, padding 0.3s ease-out;
            color: var(--text-muted);
            font-size: 0.95rem;
        }
        .faq-item.active .faq-body {
            padding: 0 24px 20px;
            max-height: 300px;
        }

        /* Testimonials Slider */
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
        }
        .testimonial-card {
            background-color: var(--bg-white);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md);
            padding: 32px;
            box-shadow: var(--shadow-sm);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        .testi-text {
            font-style: italic;
            color: var(--text-main);
            margin-bottom: 24px;
            font-size: 0.95rem;
        }
        .testi-user {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .testi-avatar {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background-color: var(--primary-light);
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
        }
        .testi-info h5 {
            font-size: 0.95rem;
            margin-bottom: 2px;
        }
        .testi-info p {
            color: var(--text-muted);
            font-size: 0.8rem;
        }

        /* Contact & Form Section */
        .contact-layout {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 48px;
        }
        .form-card {
            background-color: var(--bg-white);
            border-radius: var(--radius-lg);
            padding: 40px;
            border: 1px solid var(--border-color);
            box-shadow: var(--shadow-md);
        }
        .form-card h3 {
            margin-bottom: 24px;
            font-size: 1.5rem;
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            font-size: 0.9rem;
        }
        .form-control {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid var(--border-color);
            border-radius: var(--radius-sm);
            background-color: var(--bg-light);
            color: var(--text-main);
            font-size: 0.95rem;
            transition: var(--transition);
        }
        .form-control:focus {
            outline: none;
            border-color: var(--primary);
            background-color: var(--bg-white);
            box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.15);
        }
        textarea.form-control {
            resize: vertical;
            min-height: 120px;
        }
        .submit-btn {
            width: 100%;
            background: linear-gradient(135deg, var(--primary), var(--accent-dark));
            color: #fff;
            border: none;
            padding: 14px;
            border-radius: var(--radius-sm);
            font-weight: 700;
            font-size: 1.05rem;
            cursor: pointer;
            transition: var(--transition);
        }
        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }
        .contact-info-panel {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        .info-list-card {
            background-color: var(--bg-white);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md);
            padding: 30px;
            margin-bottom: 30px;
        }
        .info-item {
            margin-bottom: 20px;
            display: flex;
            gap: 16px;
        }
        .info-item:last-child {
            margin-bottom: 0;
        }
        .info-icon {
            font-size: 1.5rem;
            color: var(--primary);
        }
        .info-details h5 {
            font-size: 0.95rem;
            color: var(--text-muted);
            margin-bottom: 4px;
        }
        .info-details p {
            font-weight: 600;
            font-size: 1.05rem;
        }
        .qr-codes-container {
            background-color: var(--bg-white);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md);
            padding: 30px;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            text-align: center;
        }
        .qr-box img {
            width: 100px;
            height: 100px;
            margin: 0 auto 12px;
            display: block;
            border: 1px solid var(--border-color);
            padding: 4px;
            border-radius: 4px;
        }
        .qr-box p {
            font-size: 0.85rem;
            font-weight: 600;
        }

        /* Articles / Knowledge Base */
        .articles-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 28px;
        }
        .article-card {
            background-color: var(--bg-white);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md);
            padding: 24px;
            transition: var(--transition);
        }
        .article-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
        }
        .article-card .tag {
            background-color: var(--primary-light);
            color: var(--primary);
            font-size: 0.75rem;
            font-weight: 600;
            padding: 4px 8px;
            border-radius: 4px;
            display: inline-block;
            margin-bottom: 16px;
        }
        .article-card h3 {
            font-size: 1.2rem;
            margin-bottom: 12px;
        }
        .article-card p {
            color: var(--text-muted);
            font-size: 0.9rem;
            margin-bottom: 20px;
        }
        .article-card a {
            color: var(--primary);
            font-weight: 600;
            font-size: 0.9rem;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .article-card a:hover {
            text-decoration: underline;
        }

        /* Floating Widgets */
        .floating-box {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 999;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .float-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: var(--bg-white);
            box-shadow: var(--shadow-lg);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition);
            border: 1px solid var(--border-color);
            font-size: 1.2rem;
        }
        .float-btn:hover {
            background-color: var(--primary);
            color: #fff;
            transform: scale(1.1);
        }
        .float-btn.primary-btn {
            background-color: var(--primary);
            color: #fff;
            border: none;
        }
        .float-btn.primary-btn:hover {
            background-color: var(--primary-hover);
        }
        .qr-popup {
            position: absolute;
            bottom: 70px;
            right: 0;
            background-color: var(--bg-white);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md);
            padding: 16px;
            box-shadow: var(--shadow-lg);
            display: none;
            text-align: center;
            width: 160px;
        }
        .qr-popup img {
            width: 120px;
            height: 120px;
            margin-bottom: 8px;
        }
        .qr-popup p {
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--text-main);
        }

        /* Footer */
        footer {
            background-color: #0f172a;
            color: #94a3b8;
            padding: 60px 0 30px;
            font-size: 0.9rem;
            border-top: none;
        }
        footer a {
            color: #cbd5e1;
        }
        footer a:hover {
            color: var(--primary);
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-col h4 {
            color: #fff;
            margin-bottom: 20px;
            font-size: 1.05rem;
        }
        .footer-col ul {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .footer-col p {
            margin-bottom: 16px;
            line-height: 1.8;
        }
        .footer-logo {
            margin-bottom: 20px;
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 20px;
            border-top: 1px solid #1e293b;
            border-bottom: 1px solid #1e293b;
            padding: 24px 0;
            margin-bottom: 24px;
        }
        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 16px;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .hero-section h1 { font-size: 2.5rem; }
            .flow-grid { grid-template-columns: repeat(2, 1fr); }
            .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
            .media-showcase-grid { grid-template-columns: repeat(2, 1fr); }
            .solutions-grid { grid-template-columns: 1fr; }
        }
        @media (max-width: 768px) {
            .menu-toggle { display: block; }
            .nav-menu {
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background-color: var(--bg-white);
                flex-direction: column;
                padding: 24px;
                gap: 16px;
                border-bottom: 1px solid var(--border-color);
                box-shadow: var(--shadow-md);
                display: none;
            }
            .nav-menu.active { display: flex; }
            .hero-section { padding: 120px 0 70px; }
            .hero-section h1 { font-size: 2rem; }
            .hero-highlights { grid-template-columns: repeat(2, 1fr); gap: 20px 10px; }
            .about-grid { grid-template-columns: 1fr; }
            .contact-layout { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr; gap: 30px; }
            .media-showcase-grid { grid-template-columns: 1fr; }
            .testimonial-grid { grid-template-columns: 1fr; }
        }