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

        body {
            font-family: 'Georgia', 'Times New Roman', serif;
            line-height: 1.8;
            color: #1A1C2C;
            background: white;
            font-size: 18px;
        }

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

        /* Header */
        header {
            background: white;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            box-shadow: 0 2px 15px rgba(26, 28, 44, 0.15);
            border-bottom: 3px solid #D4AF37;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }

        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
        }

        .logo-text {
            font-size: 32px;
            font-weight: 700;
            color: #1A1C2C;
            letter-spacing: -0.5px;
        }

        .logo-separator {
            margin: 0 12px;
            color: #D4AF37;
            font-weight: 300;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 35px;
        }

        .nav-links a {
            text-decoration: none;
            color: #1A1C2C;
            font-weight: 600;
            font-size: 16px;
            transition: color 0.3s;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        }

        .nav-links a:hover {
            color: #D4AF37;
        }

        .cta-nav {
            background: #1A1C2C;
            color: #FDF7EF;
            padding: 12px 24px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            transition: all 0.3s;
        }

        .cta-nav:hover {
            background: #D4AF37;
            color: #1A1C2C;
            transform: translateY(-1px);
        }

        /* Mobile Menu Toggle */
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            color: #1A1C2C;
            font-size: 24px;
            cursor: pointer;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #1A1C2C 0%, #2C2F47 100%);
            color: #FDF7EF;
            padding: 140px 0 120px;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 100px;
            background: white;
            border-radius: 50% 50% 0 0 / 100% 100% 0 0;
            transform: scaleX(1.5);
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 900px;
            margin: 0 auto;
        }

        .hero h1 {
            font-size: 68px;
            font-weight: 400;
            margin-bottom: 15px;
            letter-spacing: -1px;
            line-height: 1.1;
        }

        .tagline {
            font-size: 28px;
            margin-bottom: 35px;
            color: #D4AF37;
            font-style: italic;
            font-weight: 300;
        }

        .hero-description {
            font-size: 22px;
            margin-bottom: 50px;
            color: #FDF7EF;
            line-height: 1.5;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            opacity: 0.95;
        }

        .hero-cta {
            display: flex;
            gap: 25px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            padding: 18px 35px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 700;
            font-size: 18px;
            transition: all 0.3s;
            border: 3px solid transparent;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            min-width: 200px;
            text-align: center;
            display: inline-block;
        }

        .btn-primary {
            background: #D4AF37;
            color: #1A1C2C;
        }

        .btn-primary:hover {
            background: #B8941F;
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
        }

        .btn-secondary {
            background: #FDF7EF;
            color: #1A1C2C;
            border: 3px solid #FDF7EF;
        }

        .btn-secondary:hover {
            background: #D4AF37;
            color: #1A1C2C;
            border-color: #D4AF37;
        }

        /* Value Proposition Section */
        .value-prop {
            background: white;
            padding: 80px 0;
        }

        .value-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            margin-top: 50px;
            align-items: start;
        }

        .value-card {
            padding: 40px 30px;
            border-radius: 12px;
            border-left: 4px solid #D4AF37;
            background: #FDF7EF;
        }

        .value-card h3 {
            font-size: 32px;
            margin-bottom: 20px;
            color: #1A1C2C;
            font-weight: 600;
        }

        .value-card p {
            font-size: 18px;
            color: #1A1C2C;
            opacity: 0.85;
            line-height: 1.6;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        }

        /* What We Solve Section */
        .what-we-solve {
            background: #FDF7EF;
            padding: 80px 0;
        }

        .problems-solutions {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            margin-top: 50px;
        }

        .problems, .solutions {
            padding: 40px 30px;
            border-radius: 12px;
        }

        .problems {
            background: #1A1C2C;
            color: #FDF7EF;
        }

        .solutions {
            background: white;
            border-left: 4px solid #D4AF37;
        }

        .problems h3, .solutions h3 {
            font-size: 28px;
            margin-bottom: 25px;
            font-weight: 600;
        }

        .problems h3 {
            color: #FDF7EF;
        }

        .solutions h3 {
            color: #1A1C2C;
        }

        .problem-list, .solution-list {
            list-style: none;
        }

        .problem-list li, .solution-list li {
            padding: 8px 0;
            font-size: 16px;
            line-height: 1.5;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            position: relative;
            padding-left: 25px;
        }

        .problem-list li::before {
            content: "✗";
            position: absolute;
            left: 0;
            color: #D4AF37;
            font-weight: bold;
        }

        .solution-list li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #D4AF37;
            font-weight: bold;
        }

        /* Services Overview */
        .services-overview {
            background: white;
            padding: 80px 0;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 50px;
        }

        .service-card {
            background: #FDF7EF;
            padding: 30px 25px;
            border-radius: 10px;
            text-align: center;
            transition: all 0.3s;
            border: 2px solid transparent;
        }

        .service-card:hover {
            border-color: #D4AF37;
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(212, 175, 55, 0.15);
        }

        .service-icon {
            width: 60px;
            height: 60px;
            background: #D4AF37;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 24px;
        }

        .service-card h4 {
            font-size: 20px;
            margin-bottom: 15px;
            color: #1A1C2C;
            font-weight: 600;
        }

        .service-card p {
            font-size: 14px;
            color: #1A1C2C;
            opacity: 0.8;
            line-height: 1.5;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        }

        /* Physical Card Section */
        .physical-card-section {
            background: #1A1C2C;
            color: #FDF7EF;
            padding: 80px 0;
            text-align: center;
        }

        .card-highlight {
            background: #D4AF37;
            color: #1A1C2C;
            padding: 40px;
            border-radius: 15px;
            max-width: 600px;
            margin: 40px auto;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
        }

        .card-highlight h4 {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .card-highlight p {
            font-size: 16px;
            margin-bottom: 20px;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        }

        .card-features {
            list-style: none;
            text-align: left;
            max-width: 400px;
            margin: 0 auto;
        }

        .card-features li {
            padding: 5px 0;
            font-size: 14px;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            position: relative;
            padding-left: 20px;
        }

        .card-features li::before {
            content: "✓";
            position: absolute;
            left: 0;
            font-weight: bold;
        }

        /* Check-in System */
        .checkin-section {
            background: white;
            padding: 80px 0;
        }

        .checkin-visual {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 50px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .checkin-step {
            text-align: center;
            flex: 1;
            max-width: 150px;
            display: flex;
            flex-direction: column;
            align-items: center;
            min-height: 140px;
        }

        .step-circle {
            width: 80px;
            height: 80px;
            background: #D4AF37;
            color: #1A1C2C;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 15px;
            flex-shrink: 0;
        }

        .checkin-step h4 {
            font-size: 14px;
            margin-bottom: 8px;
            color: #1A1C2C;
            font-weight: 600;
            text-align: center;
            line-height: 1.2;
            min-height: 32px;
            display: flex;
            align-items: center;
        }

        .checkin-step p {
            font-size: 11px;
            color: #1A1C2C;
            opacity: 0.8;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            line-height: 1.3;
            text-align: center;
            flex-grow: 1;
        }

        .arrow {
            font-size: 24px;
            color: #D4AF37;
            margin: 0 10px;
        }

        /* Section Titles */
        .section-title {
            font-size: 48px;
            font-weight: 400;
            text-align: center;
            margin-bottom: 20px;
            color: #1A1C2C;
            letter-spacing: -0.5px;
            line-height: 1.2;
        }

        .section-subtitle {
            font-size: 20px;
            text-align: center;
            color: #1A1C2C;
            opacity: 0.8;
            max-width: 700px;
            margin: 0 auto;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            line-height: 1.6;
        }

        /* Final CTA */
        .final-cta {
            background: #1A1C2C;
            color: #FDF7EF;
            padding: 80px 0;
            text-align: center;
        }

        .final-cta h2 {
            font-size: 42px;
            margin-bottom: 20px;
            font-weight: 400;
            line-height: 1.2;
        }

        .final-cta p {
            font-size: 20px;
            margin-bottom: 40px;
            opacity: 0.9;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            margin-bottom: 40px;
        }

        /* Footer */
        footer {
            background: #1A1C2C;
            color: #FDF7EF;
            text-align: center;
            padding: 40px 0;
            border-top: 3px solid #D4AF37;
        }

        .footer-tagline {
            font-style: italic;
            margin-bottom: 15px;
            font-size: 18px;
            color: #A89CB0;
        }

        .footer-contact {
            color: #FDF7EF;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            font-size: 16px;
        }

        .footer-contact strong {
            color: #D4AF37;
        }

        /* Animation styles */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

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

        /* Page Header */
        .page-header {
            background: linear-gradient(135deg, #1A1C2C 0%, #2C2F47 100%);
            color: #FDF7EF;
            padding: 140px 0 100px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .page-header::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 80px;
            background: white;
            border-radius: 50% 50% 0 0 / 100% 100% 0 0;
            transform: scaleX(1.5);
        }

        .page-header .container {
            position: relative;
            z-index: 2;
        }

        .page-header h1 {
            font-size: 52px;
            font-weight: 400;
            margin-bottom: 25px;
            letter-spacing: -1px;
            line-height: 1.1;
        }

        .page-header p {
            font-size: 22px;
            opacity: 0.9;
            max-width: 700px;
            margin: 0 auto;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            line-height: 1.5;
        }

        /* Process Section */
        .process-section {
            padding: 100px 0;
            background: white;
        }

        .process-steps {
            margin-top: 70px;
        }

        .step {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            margin-bottom: 100px;
            max-width: 1000px;
            margin-left: auto;
            margin-right: auto;
        }

        .step:last-child {
            margin-bottom: 0;
        }

        .step:nth-child(even) {
            grid-template-columns: 1fr 1fr;
            direction: rtl;
        }

        .step:nth-child(even) * {
            direction: ltr;
        }

        .step-visual {
            background: linear-gradient(135deg, #FDF7EF 0%, #F5EEDF 100%);
            padding: 50px 40px;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(26, 28, 44, 0.08);
            border: 3px solid #D4AF37;
            position: relative;
        }

        .step-number {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, #D4AF37, #B8941F);
            color: #1A1C2C;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 36px;
            font-weight: bold;
            margin: 0 auto 25px;
            box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
        }

        .step-icon {
            font-size: 64px;
            margin: 25px 0;
            filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
        }

        .step-content {
            padding: 20px 0;
        }

        .step-content h3 {
            font-size: 32px;
            margin-bottom: 25px;
            color: #1A1C2C;
            font-weight: 600;
            line-height: 1.2;
        }

        .step-content p {
            font-size: 18px;
            line-height: 1.7;
            color: #1A1C2C;
            opacity: 0.85;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            margin-bottom: 30px;
        }

        .step-features {
            list-style: none;
            background: #FDF7EF;
            padding: 25px;
            border-radius: 12px;
            border-left: 4px solid #D4AF37;
        }

        .step-features li {
            padding: 10px 0;
            font-size: 16px;
            color: #1A1C2C;
            opacity: 0.8;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            position: relative;
            padding-left: 30px;
            line-height: 1.4;
        }

        .step-features li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #D4AF37;
            font-weight: bold;
            font-size: 18px;
        }

        /* Service Categories */
        .service-categories {
            background: #FDF7EF;
            padding: 100px 0;
        }

        .categories-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 35px;
            margin-top: 70px;
        }

        .category-card {
            background: white;
            padding: 40px 30px;
            border-radius: 16px;
            box-shadow: 0 8px 25px rgba(26, 28, 44, 0.1);
            transition: all 0.3s ease;
            border: 2px solid transparent;
            height: 100%;
        }

        .category-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(26, 28, 44, 0.15);
            border-color: #D4AF37;
        }

        .category-card h4 {
            font-size: 24px;
            margin-bottom: 18px;
            color: #1A1C2C;
            font-weight: 600;
            border-bottom: 3px solid #D4AF37;
            padding-bottom: 12px;
        }

        .category-card p {
            font-size: 16px;
            color: #1A1C2C;
            opacity: 0.8;
            margin-bottom: 20px;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            line-height: 1.6;
        }

        .category-examples {
            list-style: none;
            background: #FDF7EF;
            padding: 20px;
            border-radius: 8px;
        }

        .category-examples li {
            padding: 6px 0;
            font-size: 14px;
            color: #1A1C2C;
            opacity: 0.7;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            font-style: italic;
            position: relative;
            padding-left: 20px;
        }

        .category-examples li::before {
            content: "•";
            position: absolute;
            left: 0;
            color: #D4AF37;
            font-weight: bold;
        }

        /* Security Highlights */
        .security-highlights {
            background: white;
            padding: 100px 0;
        }

        .security-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            margin-top: 70px;
        }

        .security-card {
            background: linear-gradient(135deg, #1A1C2C 0%, #2C2F47 100%);
            color: #FDF7EF;
            padding: 45px 35px;
            border-radius: 16px;
            text-align: left;
            position: relative;
            overflow: hidden;
        }

        .security-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 6px;
            background: linear-gradient(90deg, #D4AF37, #B8941F);
        }

        .security-card h4 {
            font-size: 22px;
            margin-bottom: 18px;
            color: #D4AF37;
            font-weight: 600;
        }

        .security-card p {
            font-size: 16px;
            line-height: 1.6;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            opacity: 0.9;
        }

        /* Physical Transparency */
        .physical-transparency {
            background: linear-gradient(135deg, #D4AF37 0%, #B8941F 100%);
            color: #1A1C2C;
            padding: 100px 0;
        }

        .transparency-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            margin-top: 70px;
            align-items: center;
        }

        .card-mockup {
            text-align: center;
        }

        .card-visual {
            background: white;
            padding: 50px 40px;
            border-radius: 20px;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
            border: 3px solid #1A1C2C;
            transform: rotate(-2deg);
            transition: transform 0.3s ease;
        }

        .card-visual:hover {
            transform: rotate(0deg) scale(1.02);
        }

        .card-visual h4 {
            font-size: 24px;
            margin-bottom: 15px;
            color: #1A1C2C;
            font-weight: 700;
        }

        .card-visual p {
            font-size: 16px;
            color: #1A1C2C;
            opacity: 0.7;
            margin-bottom: 25px;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        }

        .card-details {
            text-align: left;
        }

        .detail-item {
            padding: 12px 0;
            font-size: 14px;
            color: #1A1C2C;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            border-bottom: 1px solid #FDF7EF;
            position: relative;
            padding-left: 25px;
        }

        .detail-item::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #D4AF37;
            font-weight: bold;
        }

        .card-benefits h4 {
            font-size: 28px;
            margin-bottom: 25px;
            color: #1A1C2C;
            font-weight: 600;
        }

        .benefit-list {
            list-style: none;
        }

        .benefit-list li {
            padding: 12px 0;
            font-size: 18px;
            color: #1A1C2C;
            opacity: 0.9;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            position: relative;
            padding-left: 30px;
            line-height: 1.5;
        }

        .benefit-list li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #1A1C2C;
            font-weight: bold;
            font-size: 20px;
        }

        /* Getting Started */
        .getting-started {
            background: white;
            padding: 100px 0;
        }

        .start-steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-top: 70px;
            position: relative;
        }

        .start-steps::before {
            content: '';
            position: absolute;
            top: 30px;
            left: 12.5%;
            right: 12.5%;
            height: 4px;
            background: linear-gradient(90deg, #D4AF37, #B8941F);
            z-index: 1;
        }

        .start-step {
            text-align: center;
            padding: 40px 25px;
            background: #FDF7EF;
            border-radius: 16px;
            border: 2px solid transparent;
            transition: all 0.3s ease;
            position: relative;
            z-index: 2;
        }

        .start-step:hover {
            border-color: #D4AF37;
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(212, 175, 55, 0.2);
        }

        .start-number {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #D4AF37, #B8941F);
            color: #1A1C2C;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            font-weight: bold;
            margin: 0 auto 25px;
            box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
        }

        .start-step h4 {
            font-size: 20px;
            margin-bottom: 15px;
            color: #1A1C2C;
            font-weight: 600;
        }

        .start-step p {
            font-size: 15px;
            color: #1A1C2C;
            opacity: 0.8;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            line-height: 1.5;
        }

        /* CTA Buttons */
        .cta-buttons {
            display: flex;
            gap: 30px;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 20px;
        }

        /* Active nav link */
        .nav-links a.active {
            color: #D4AF37;
            position: relative;
        }

        .nav-links a.active::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            right: 0;
            height: 3px;
            background: #D4AF37;
            border-radius: 2px;
        }

        /* Pricing Overview */
        .pricing-overview {
            padding: 100px 0;
            background: white;
        }

        .pricing-toggle {
            display: flex;
            justify-content: center;
            margin: 50px 0 70px;
        }

        .toggle-container {
            display: flex;
            align-items: center;
            gap: 20px;
            background: #FDF7EF;
            padding: 20px 30px;
            border-radius: 50px;
            border: 2px solid #D4AF37;
        }

        .toggle-label {
            font-size: 18px;
            font-weight: 600;
            color: #1A1C2C;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        }

        .pricing-switch {
            position: relative;
            width: 60px;
            height: 32px;
            background: #A89CB0;
            border: none;
            border-radius: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .pricing-switch.active {
            background: #D4AF37;
        }

        .switch-slider {
            position: absolute;
            top: 4px;
            left: 4px;
            width: 24px;
            height: 24px;
            background: white;
            border-radius: 50%;
            transition: all 0.3s ease;
            box-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }

        .pricing-switch.active .switch-slider {
            transform: translateX(28px);
        }

        .lifetime-badge {
            background: linear-gradient(135deg, #D4AF37, #B8941F);
            color: #1A1C2C;
            padding: 6px 12px;
            border-radius: 12px;
            font-size: 12px;
            font-weight: 700;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        }

        /* Pricing Grid */
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
            margin-top: 50px;
            max-width: 1400px;
            margin-left: auto;
            margin-right: auto;
        }

        .pricing-card {
            background: white;
            border-radius: 20px;
            padding: 30px 20px;
            box-shadow: 0 8px 25px rgba(26, 28, 44, 0.1);
            border: 3px solid transparent;
            transition: all 0.3s ease;
            position: relative;
            display: flex;
            flex-direction: column;
            height: 100%;
            min-width: 280px;
        }

        .pricing-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(26, 28, 44, 0.15);
            border-color: #D4AF37;
        }

        .pricing-card.featured {
            border-color: #D4AF37;
            box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
            position: relative;
        }

        .pricing-card.featured:hover {
            transform: translateY(-8px);
        }

        .plan-badge {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, #D4AF37, #B8941F);
            color: #1A1C2C;
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 700;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
        }

        .plan-header {
            text-align: center;
            margin-bottom: 30px;
        }

        .plan-name {
            font-size: 28px;
            font-weight: 600;
            margin-bottom: 15px;
            color: #1A1C2C;
        }

        .plan-price {
            margin-bottom: 15px;
        }

        .price-amount {
            font-size: 48px;
            font-weight: 700;
            color: #D4AF37;
            line-height: 1;
        }

        .price-period {
            font-size: 18px;
            color: #1A1C2C;
            opacity: 0.7;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        }

        .plan-description {
            font-size: 16px;
            color: #1A1C2C;
            opacity: 0.8;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            line-height: 1.5;
        }

        .plan-features {
            flex-grow: 1;
            margin-bottom: 30px;
        }

        .feature-category h4 {
            font-size: 18px;
            margin-bottom: 20px;
            color: #1A1C2C;
            font-weight: 600;
            border-bottom: 2px solid #D4AF37;
            padding-bottom: 8px;
        }

        .feature-list {
            list-style: none;
        }

        .feature-list li {
            padding: 10px 0;
            font-size: 15px;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            position: relative;
            padding-left: 30px;
            line-height: 1.4;
        }

        .feature-list li.included {
            color: #1A1C2C;
        }

        .feature-list li.included::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #D4AF37;
            font-weight: bold;
            font-size: 16px;
        }

        .feature-list li.excluded {
            color: #A89CB0;
        }

        .feature-list li.excluded::before {
            content: "✗";
            position: absolute;
            left: 0;
            color: #A89CB0;
            font-weight: bold;
            font-size: 16px;
        }

        .feature-list li.limitation {
            color: #1A1C2C;
            opacity: 0.7;
            font-style: italic;
        }

        .feature-list li.limitation::before {
            content: "⚠";
            position: absolute;
            left: 0;
            color: #D4AF37;
            font-weight: bold;
            font-size: 16px;
        }

        .plan-cta {
            margin-top: auto;
        }

        .btn-outline {
            background: transparent;
            color: #1A1C2C;
            border: 3px solid #1A1C2C;
        }

        .btn-outline:hover {
            background: #1A1C2C;
            color: #FDF7EF;
        }

        /* Free Plan Styling */
        .free-plan {
            background: linear-gradient(135deg, #FDF7EF 0%, #F5EEDF 100%);
        }

        .free-plan .plan-name {
            color: #1A1C2C;
        }

        .free-plan .price-amount {
            color: #1A1C2C;
        }

        /* Essentials Plan Styling */
        .essentials-plan {
            background: white;
        }

        /* Legacy Plan Styling */
        .legacy-plan {
            background: linear-gradient(135deg, #FDF7EF 0%, #F9F2E3 100%);
            border-color: #D4AF37;
        }

        /* Eternal Plan Styling */
        .eternal-plan {
            background: linear-gradient(135deg, #1A1C2C 0%, #2C2F47 100%);
            color: #FDF7EF;
        }

        .eternal-plan .plan-name,
        .eternal-plan .plan-description,
        .eternal-plan .feature-category h4 {
            color: #FDF7EF;
        }

        .eternal-plan .feature-list li.included {
            color: #FDF7EF;
        }

        .eternal-plan .price-amount {
            color: #D4AF37;
        }

        .eternal-plan .price-period {
            color: #FDF7EF;
            opacity: 0.8;
        }

        /* Plan Comparison */
        .plan-comparison {
            padding: 100px 0;
            background: #FDF7EF;
        }

        .comparison-table {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(26, 28, 44, 0.1);
            margin-top: 50px;
        }

        .table-header {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
            background: #1A1C2C;
            color: #FDF7EF;
            font-weight: 600;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        }

        .feature-column,
        .plan-column {
            padding: 20px 15px;
            text-align: center;
            font-size: 16px;
        }

        .feature-column {
            text-align: left;
            font-size: 18px;
        }

        .featured-column {
            background: #D4AF37;
            color: #1A1C2C;
        }

        .feature-group {
            border-bottom: 1px solid #FDF7EF;
        }

        .group-header {
            background: #FDF7EF;
            padding: 15px;
            font-weight: 600;
            font-size: 18px;
            color: #1A1C2C;
            border-bottom: 2px solid #D4AF37;
        }

        .feature-row {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
            border-bottom: 1px solid #FDF7EF;
        }

        .feature-row:last-child {
            border-bottom: none;
        }

        .feature-name {
            padding: 15px;
            text-align: left;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            color: #1A1C2C;
        }

        .feature-value {
            padding: 15px;
            text-align: center;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            color: #1A1C2C;
            font-size: 14px;
        }

        .feature-value.excluded {
            color: #A89CB0;
            font-style: italic;
        }

        /* Pricing FAQ */
        .pricing-faq {
            padding: 100px 0;
            background: white;
        }

        .faq-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin-top: 50px;
        }

        .faq-item {
            background: #FDF7EF;
            padding: 30px;
            border-radius: 12px;
            border-left: 4px solid #D4AF37;
        }

        .faq-item h4 {
            font-size: 20px;
            margin-bottom: 15px;
            color: #1A1C2C;
            font-weight: 600;
        }

        .faq-item p {
            font-size: 16px;
            color: #1A1C2C;
            opacity: 0.85;
            line-height: 1.6;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        }

        /* Hidden utility class */
        .hidden {
            display: none !important;
        }

        /* Mobile Responsive Design */
        @media (max-width: 1024px) {
            .value-grid,
            .problems-solutions {
                gap: 40px;
            }

            .services-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
            }

            .categories-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }

            .security-grid {
                gap: 30px;
            }

            .step {
                gap: 60px;
                margin-bottom: 80px;
            }

            .pricing-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
            }

            .table-header,
            .feature-row {
                grid-template-columns: 2fr 0.8fr 0.8fr 0.8fr 0.8fr;
            }

            .feature-column,
            .plan-column,
            .feature-name,
            .feature-value {
                padding: 12px 8px;
                font-size: 14px;
            }

            .feature-column {
                font-size: 16px;
            }
        }

        @media (max-width: 768px) {
            .nav-links,
            .cta-nav {
                display: none;
            }

            .mobile-menu-toggle {
                display: block;
            }

            .hero {
                padding: 120px 0 80px;
            }

            .hero h1 {
                font-size: 42px;
            }

            .tagline {
                font-size: 22px;
            }

            .hero-description {
                font-size: 18px;
            }

            .section-title {
                font-size: 32px;
            }

            .section-subtitle {
                font-size: 18px;
            }

            /* Stack grids vertically on mobile */
            .value-grid,
            .problems-solutions {
                grid-template-columns: 1fr;
                gap: 30px;
            }

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

            .checkin-visual {
                flex-direction: column;
                gap: 30px;
            }

            .arrow {
                transform: rotate(90deg);
                margin: 15px 0;
            }

            .value-card h3 {
                font-size: 28px;
            }

            .problems h3,
            .solutions h3 {
                font-size: 24px;
            }

            .hero-cta {
                flex-direction: column;
                align-items: center;
                gap: 15px;
            }

            .btn {
                width: 100%;
                max-width: 280px;
            }

            /* Reduce padding on mobile */
            .value-prop,
            .what-we-solve,
            .services-overview,
            .physical-card-section,
            .checkin-section,
            .final-cta {
                padding: 60px 0;
            }

            /* How It Works Mobile */
            .page-header {
                padding: 120px 0 80px;
            }

            .page-header h1 {
                font-size: 36px;
            }

            .page-header p {
                font-size: 18px;
            }

            .step {
                grid-template-columns: 1fr !important;
                gap: 40px;
                margin-bottom: 60px;
                direction: ltr;
            }

            .step:nth-child(even) * {
                direction: ltr;
            }

            .step-content h3 {
                font-size: 26px;
            }

            .step-content p {
                font-size: 16px;
            }

            .transparency-content {
                grid-template-columns: 1fr;
                gap: 50px;
            }

            .categories-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            .security-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            .start-steps {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            .start-steps::before {
                display: none;
            }

            .process-section,
            .service-categories,
            .security-highlights,
            .physical-transparency,
            .getting-started {
                padding: 80px 0;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
                gap: 20px;
            }

            .cta-buttons .btn {
                width: 100%;
                max-width: 300px;
            }

            /* Pricing Mobile - FIXED */
            .pricing-grid {
                display: grid !important;
                grid-template-columns: 1fr !important;
                gap: 20px !important;
            }

            .pricing-card {
                width: 100% !important;
                max-width: none !important;
                min-width: auto !important;
                padding: 25px 20px;
            }

            .plan-name {
                font-size: 24px;
            }

            .price-amount {
                font-size: 36px;
            }

            .toggle-container {
                padding: 15px 20px;
                gap: 15px;
            }

            .toggle-label {
                font-size: 16px;
            }

            .lifetime-badge {
                font-size: 10px;
                padding: 4px 8px;
            }

            .comparison-table {
                display: none;
            }

            .faq-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            .faq-item {
                padding: 25px 20px;
            }

            .pricing-overview,
            .plan-comparison,
            .pricing-faq {
                padding: 80px 0;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 36px;
            }

            .section-title {
                font-size: 28px;
            }

            .value-card,
            .problems,
            .solutions {
                padding: 30px 20px;
            }

            .card-highlight {
                padding: 30px 20px;
                margin: 30px auto;
            }

            .container {
                padding: 0 15px;
            }

            /* How It Works Mobile Small */
            .page-header h1 {
                font-size: 32px;
            }

            .step-visual {
                padding: 40px 30px;
            }

            .step-number {
                width: 80px;
                height: 80px;
                font-size: 28px;
            }

            .step-icon {
                font-size: 48px;
            }

            .category-card,
            .security-card {
                padding: 30px 25px;
            }

            .card-visual {
                padding: 40px 30px;
            }

            /* Pricing Mobile Small */
            .pricing-card {
                padding: 20px 15px;
            }

            .plan-badge {
                font-size: 12px;
                padding: 6px 15px;
            }

            .feature-list li {
                font-size: 14px;
                padding: 8px 0;
            }

            .toggle-container {
                flex-direction: column;
                gap: 10px;
                padding: 20px;
                text-align: center;
            }

            .pricing-switch {
                order: -1;
            }
        }
        /* New CSS needed for updated Riva pricing page */

/* Service Definitions Section */
.service-definitions {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

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

.definition-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.definition-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.definition-card h4 {
    color: #1e293b;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    border-bottom: 2px solid #3b82f6;
    padding-bottom: 0.5rem;
}

.definition-card p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Enhanced comparison table for new features */
.feature-group:nth-child(6) {
    /* Riva Path group styling */
    border-top: 2px solid #10b981;
}

.feature-group:nth-child(9) {
    /* Support group styling */
    border-top: 2px solid #8b5cf6;
    background: #faf5ff;
}

/* Feature value enhancements for better clarity */
.feature-value.excluded {
    color: #ef4444;
    font-style: italic;
}

.feature-value:not(.excluded) {
    color: #059669;
    font-weight: 500;
}

/* Plan card enhancements for new features */
.plan-features .limitation {
    color: #f59e0b;
    font-style: italic;
}

.plan-features .limitation::before {
    content: "⏳ ";
    margin-right: 0.25rem;
}

/* Responsive adjustments for definitions grid */
@media (max-width: 768px) {
    .definitions-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .definition-card {
        padding: 1rem;
    }
    
    .definition-card h4 {
        font-size: 1.1rem;
    }
}

/* Enhanced feature list styling for better readability */
.feature-list li.included::before {
    content: "✅ ";
    margin-right: 0.5rem;
}

.feature-list li.excluded::before {
    content: "❌ ";
    margin-right: 0.5rem;
}

.feature-list li.limitation::before {
    content: "⏳ ";
    margin-right: 0.5rem;
}

/* Improved spacing for feature categories */
.feature-category h4 {
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 600;
    color: #374151;
}

/* Better visual hierarchy for plan descriptions */
.plan-description {
    font-size: 0.95rem;
    color: #6b7280;
    margin-top: 0.5rem;
    line-height: 1.4;
}

/* Enhanced pricing display */
.price-amount {
    font-weight: 700;
    color: #1e293b;
}

.price-period {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 400;
}
/* Security Page Main Section */
.security-section {
    background: white;
    padding: 100px 0;
}

.compliance-section {
    background: #FDF7EF;
    padding: 100px 0;
}

.compliance-list {
    max-width: 800px;
    margin: 40px auto 0;
    list-style: none;
    padding: 0;
}

.compliance-list li {
    font-size: 16px;
    line-height: 1.7;
    color: #1A1C2C;
    padding-left: 30px;
    margin-bottom: 20px;
    position: relative;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.compliance-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #10B981; /* Tailwind green-500 */
    font-weight: bold;
}
