        :root {
            --primary: #0066FF;
            --primary-dark: #0050CB;
            --primary-light: #DAE1FF;
            --surface: #F8F9FA;
            --surface-container: #F3F4F5;
            --surface-container-high: #E7E8E9;
            --text-main: #191C1D;
            --text-secondary: #424656;
            --white: #FFFFFF;
            --radius-sm: 0.125rem;
            --radius-md: 0.25rem;
            --radius-lg: 0.5rem;
            --radius-xl: 0.75rem;
            --container-max: 1280px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: Google Sans, sans-serif;
            background-color: var(--surface);
            color: var(--text-main);
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
        }

        .scroll-smooth {
            scroll-behavior: smooth;
        }

        .material-symbols-outlined {
            font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
            vertical-align: middle;
        }
		

        /* Layout Helpers */
        .container {
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(12px);
            z-index: 1000;
            box-shadow: 0 1px 2px rgba(0,0,0,0.05);
        }

        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 72px;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 900;
            color: var(--primary);
            text-decoration: none;
            /*letter-spacing: -0.05em;*/
			background-image: url(../images/logo.svg);
			background-repeat: no-repeat;
			width: 250px;
			height: 40px;
        }

        nav {
            display: none;
        }

        @media (min-width: 768px) {
            nav {
                display: flex;
                gap: 2rem;
            }
        }

        nav a {
            text-decoration: none;
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--text-secondary);
            transition: color 0.2s;
			border-bottom: 2px solid transparent;
			padding-bottom: 4px;
			position: relative;
        }
		nav a:hover{
			color: var(--primary);
		}
		
        nav a.active {
            color: var(--primary);
            border-bottom: 2px solid var(--primary);
        }
		

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.5rem 3rem;
            border-radius: 0.5rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
            border: none;
            text-decoration: none;
        }

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

        .btn-primary:hover {
            background-color: var(--primary-dark);
            box-shadow: 0 10px 15px -3px rgba(0, 102, 255, 0.2);
        }

        .btn-large {
            padding: 1rem 4rem;
            font-size: 1.125rem;
            font-weight: 700;
        }

        /* Hero */
        .hero {
            padding-top: 160px;
            padding-bottom: 80px;
        }

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

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

        .badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--surface-container-high);
            padding: 0.25rem 0.75rem;
            border-radius: 100px;
            font-size: 0.75rem;
            font-weight: 600;
            color: #832600;
            margin-bottom: 2rem;
        }

        .dot {
            width: 8px;
            height: 8px;
            background: #A33200;
            border-radius: 50%;
        }

        h1 {
            font-size: 3rem;
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            letter-spacing: -0.02em;
        }

        @media (min-width: 768px) {
            h1 {
                font-size: 3.75rem;
            }
        }

        h1 span {
            color: var(--primary);
        }

        .hero p {
            font-size: 1.25rem;
            color: var(--text-secondary);
            margin-bottom: 2rem;
            max-width: 480px;
        }

        .version-info {
            font-size: 0.875rem;
            color: var(--text-secondary);
            margin-top: 1rem;
            font-weight: 500;
        }

        /* Mockup */
        .mockup-container {
            position: relative;
        }

        .mockup-glow {
            position: absolute;
            inset: -1rem;
            background: rgba(179, 197, 255, 0.3);
            filter: blur(48px);
            border-radius: 50%;
        }

        .window {
            position: relative;
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(194, 198, 216, 0.15);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        }

        .window-header {
            background: var(--surface-container-high);
            padding: 0.5rem 1rem;
            display: flex;
            align-items: center;
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }

        .window-controls {
            display: flex;
            gap: 0.5rem;
            margin-right: 1rem;
        }

        .control {
            width: 12px;
            height: 12px;
            border-radius: 50%;
        }

        .window-title {
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--text-secondary);
        }

        .window-content {
            padding: 1.5rem;
            background: var(--white);
        }

        .list-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
        }

        .list-header h3 {
            font-size: 1rem;
            font-weight: 700;
        }

        .list-header p {
            font-size: 0.625rem;
            color: var(--primary);
        }

        .btn-scan {
            background: rgba(0, 102, 255, 0.1);
            color: var(--primary);
            font-size: 0.75rem;
            font-weight: 700;
            padding: 0.375rem 0.75rem;
            border-radius: var(--radius-md);
        }

        .network-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.75rem;
            border-radius: var(--radius-md);
            margin-bottom: 0.75rem;
        }

        .network-item.alt {
            background: var(--surface-container);
        }

        .network-info {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .network-name {
            font-size: 0.875rem;
            font-weight: 500;
        }

        .password-blur {
            filter: blur(4px);
            user-select: none;
            font-family: Google Sans;
            font-size: 0.75rem;
        }

        /* Banner */
        .trust-banner {
            background: var(--surface-container);
            padding: 2.5rem 0;
        }

        .trust-inner {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 3rem;
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            color: var(--text-secondary);
        }

        .trust-item .material-symbols-outlined {
            color: var(--primary);
            font-size: 1.875rem;
        }

        .trust-item span:not(.material-symbols-outlined) {
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        /* Features */
        .features {
            padding: 6rem 0;
        }

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

        .feature-card {
            padding: 2rem;
            background: var(--white);
            border-radius: var(--radius-xl);
            border: 1px solid rgba(194, 198, 216, 0.2);
            transition: transform 0.3s;
        }

        .feature-card:hover {
            transform: translateY(-4px);
        }

        .feature-icon {
            width: 48px;
            height: 48px;
            background: var(--primary-light);
            border-radius: var(--radius-lg);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }

        .feature-icon .material-symbols-outlined {
            color: var(--primary);
            font-size: 1.5rem;
        }

        .feature-card h3 {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
        }

        .feature-card p {
            color: var(--text-secondary);
            font-size: 0.875rem;
        }

        /* Steps */
        .steps {
            background: var(--surface-container);
            padding: 6rem 0;
        }

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

        .section-header h2 {
            font-size: 2.5rem;
            font-weight: 900;
            margin-bottom: 1rem;
        }

        .steps-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
        }

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

        .step-number {
            width: 64px;
            height: 64px;
            background: var(--primary);
            color: var(--white);
            border-radius: 0.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 900;
            margin: 0 auto 1.5rem;
            box-shadow: 0 10px 15px -3px rgba(0, 102, 255, 0.2);
        }

        .step-item h3 {
            font-size: 1.125rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .step-item p {
            font-size: 0.875rem;
            color: var(--text-secondary);
        }

        /* FAQ */
        .faq {
            max-width: 800px;
            margin: 0 auto;
            padding: 6rem 1.5rem;
        }

        details {
            background: var(--surface-container);
            border-radius: var(--radius-xl);
            margin-bottom: 1rem;
            overflow: hidden;
        }

        summary {
            list-style: none;
            padding: 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-weight: 700;
            font-size: 1.125rem;
        }

        summary::-webkit-details-marker {
            display: none;
        }

        .faq-content {
            padding: 0 1.5rem 1.5rem;
            color: var(--text-secondary);
            font-size: 0.875rem;
        }
		.faq-content span {
			font-style: italic;
		}

        /* CTA */
        .cta {
            padding-bottom: 6rem;
        }

        .cta-box {
            background: var(--primary);
            border-radius: 1.5rem;
            padding: 2rem 1.5rem;
            text-align: center;
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .cta-glow {
            position: absolute;
            top: 0;
            right: 0;
            width: 256px;
            height: 256px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            filter: blur(48px);
            margin-top: -4rem;
            margin-right: -4rem;
        }

        .cta-box h2 {
            font-size: 2.25rem;
            font-weight: 900;
            margin-bottom: 1.5rem;
        }

        .cta-box p {
            font-size: 1.125rem;
            max-width: 800px;
            margin: 0 auto 2.5rem;
            opacity: 0.9;
        }

        .btn-white {
            background: var(--white);
            color: var(--primary);
            padding: 1rem 2.5rem;
            font-size: 1.25rem;
            font-weight: 900;
        }

        .btn-white:hover {
            background: var(--surface);
        }

        /* Footer */
        footer {
            background: #F8FAFC;
            border-top: 1px solid #E2E8F0;
            padding: 3rem 0;
        }

        .footer-inner {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            align-items: center;
            justify-content: space-between;
        }

        @media (min-width: 768px) {
            .footer-inner {
                flex-direction: row;
            }
        }

        .footer-logo {
            font-weight: 700;
            color: #0F172A;
        }
        
		.footer-logo img{
			padding-right: 5px;
			vertical-align: middle;
		}
        .footer-links {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
            justify-content: center;
        }

        .footer-links a {
            font-size: 0.875rem;
            color: #64748B;
            text-decoration: none;
            font-weight: 500;
        }

        .footer-links a:hover {
            text-decoration: underline;
        }

        .copyright {
            font-size: 0.875rem;
            color: #64748B;
        }