* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'DM Sans', sans-serif;
            background-color: #ffffff;
            color: #0b1120;
            overflow-x: hidden;
        }
        
        .container {
            width: 100%;
            position: relative;
        }
        
        /* Navbar */
        .navbar {
            background-color: rgba(244, 247, 255, 0.9);
            height: 60px;
            border-bottom: 0.667px solid rgba(0, 0, 0, 0.07);
            position: relative;
            z-index: 1000;
        }
        
        .navbar-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 100%;
            padding: 0 100px;
            max-width: 1440px;
            margin: 0 auto;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .logo-icon {
            width: 34px;
            height: 34px;
            background-color: #00d48c;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .logo-text {
            font-family: 'Syne', sans-serif;
            font-weight: 700;
            font-size: 19px;
            color: #0b1120;
        }
        
        .nav-buttons {
            display: flex;
            gap: 10px;
            align-items: center;
        }
        
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            font-family: 'Syne', sans-serif;
            cursor: pointer;
            transition: all 0.2s;
            text-decoration: none;
        }
        
        .btn-icon {
            width: 36px;
            height: 36px;
            background-color: rgba(126, 143, 173, 0.05);
            border: 0.667px solid rgba(126, 143, 173, 0.11);
        }
        
        .btn-login {
            padding: 8px 16px;
            height: 36px;
            border: 0.667px solid rgba(0, 0, 0, 0.13);
            background-color: transparent;
            font-family: 'DM Sans', sans-serif;
            font-size: 14px;
            color: #0b1120;
        }
        
        .btn-primary {
            background-color: #00d48c;
            color: white;
            padding: 8px 20px;
            height: 36px;
            font-weight: 500;
            font-size: 14px;
            gap: 8px;
        }
        
        .btn-primary:hover {
            background-color: #00bd7a;
        }
        
        /* Hero Section */
        .hero {
            background-color: #f4f7ff;
            padding: 40px 100px;
            position: relative;
            overflow: hidden;
        }
        
        .hero-content {
            max-width: 1110px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 30px;
        }
        
        .badge {
            background-color: rgba(0, 212, 140, 0.07);
            border: 0.667px solid rgba(0, 212, 140, 0.28);
            border-radius: 100px;
            padding: 6px 30px;
            font-size: 12px;
            color: #00d48c;
            font-family: 'DM Sans', sans-serif;
            font-weight: 500;
            position: relative;
        }
        
        .badge::before {
            content: '';
            width: 6px;
            height: 6px;
            background-color: #00d48c;
            border-radius: 50%;
            position: absolute;
            left: 14px;
            top: 50%;
            transform: translateY(-50%);
            opacity: 0.94;
        }
        
        .hero-title {
            font-family: 'Lora', serif;
            font-weight: 700;
            font-size: 72px;
            line-height: 120%;
            text-align: center;
            max-width: 100%;
        }
        
        .hero-title .highlight {
            color: #00d48c;
        }
        
        .hero-description {
            font-family: 'DM Sans', sans-serif;
            font-weight: 300;
            font-size: 18.747px;
            line-height: 170%;
            color: #4a5b7a;
            text-align: center;
            max-width: 912px;
        }
        
        .hero-buttons {
            display: flex;
            gap: 30px;
            align-items: center;
        }
        
        .btn-large {
            height: 52px;
            border-radius: 14px;
            font-family: 'Syne', sans-serif;
            font-size: 15px;
            padding: 15px 30px;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            cursor: pointer;
            transition: all 0.2s;
            text-decoration: none;
        }
        
        .btn-create {
            background-color: #00d48c;
            color: white;
            font-weight: 600;
        }
        
        .btn-demo {
            background-color: rgba(0, 0, 0, 0.04);
            border: 0.667px solid rgba(0, 0, 0, 0.13);
            color: #0b1120;
            font-weight: 500;
        }
        
        .hero-features {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 12px;
            color: #9aabc5;
            font-family: 'DM Sans', sans-serif;
        }
        
        .hero-preview {
            background-color: white;
            border-radius: 20px;
            width: 640px;
            box-shadow: 0px 32px 80px 0px rgba(0, 0, 0, 0.45);
            border: 0.667px solid rgba(0, 0, 0, 0.13);
            overflow: hidden;
            margin-top: 30px;
        }
        
        .browser-bar {
            background-color: #eaeff9;
            border-bottom: 0.667px solid rgba(0, 0, 0, 0.07);
            height: 40px;
            padding: 0 16px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .browser-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
        }
        
        .dot-red { background-color: #ff5f57; }
        .dot-yellow { background-color: #febc2e; }
        .dot-green { background-color: #28c840; }
        
        .browser-url {
            background-color: #dde4f2;
            border-radius: 6px;
            padding: 0 10px;
            height: 22px;
            display: flex;
            align-items: center;
            margin-left: 8px;
            font-size: 11px;
            color: #9aabc5;
        }
        
        .preview-content {
            padding: 20px;
        }
        
        .preview-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 32px;
        }
        
        .preview-title {
            font-size: 11px;
            color: #9aabc5;
            text-transform: uppercase;
            letter-spacing: 0.77px;
            font-weight: 500;
        }
        
        .status-badge {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 12px;
            color: #00d48c;
        }
        
        .status-dot {
            width: 6px;
            height: 6px;
            background-color: #00d48c;
            border-radius: 50%;
        }
        
        .user-card {
            background-color: #eaeff9;
            border: 0.667px solid rgba(0, 0, 0, 0.07);
            border-radius: 8px;
            padding: 14px;
            display: flex;
            gap: 12px;
            align-items: center;
            margin-bottom: 12px;
        }
        
        .user-avatar {
            width: 34px;
            height: 34px;
            background-color: #00d48c;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-family: 'Syne', sans-serif;
            font-weight: 700;
            font-size: 13px;
        }
        
        .user-info h4 {
            font-size: 13px;
            font-weight: 500;
            color: #0b1120;
            margin-bottom: 2px;
        }
        
        .user-info p {
            font-size: 12px;
            color: #4a5b7a;
        }
        
        .message-alert {
            background: linear-gradient(175.86deg, rgba(0, 212, 140, 0.12) 0%, rgba(0, 212, 140, 0.04) 100%);
            border: 0.667px solid rgba(0, 212, 140, 0.2);
            border-radius: 8px;
            padding: 12px;
            display: flex;
            gap: 10px;
            align-items: center;
        }
        
        .alert-icon {
            width: 18px;
            height: 18px;
        }
        
        .alert-text {
            font-size: 12px;
        }
        
        .alert-text strong {
            color: #00d48c;
            font-weight: 700;
        }
        
        .alert-text span {
            color: #4a5b7a;
        }
        
        /* Steps Section */
        .steps-section {
            background-color: white;
            border-top: 0.667px solid rgba(0, 0, 0, 0.07);
            border-bottom: 0.667px solid rgba(0, 0, 0, 0.07);
            padding: 100px;
        }
        
        /* Max-width limits for section contents */
        .section-header, 
        .steps-grid, 
        .features-grid,
        .download-content,
        .footer-content,
        .footer-bottom {
            max-width: 1240px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .section-header {
            margin-bottom: 40px;
        }
        
        .section-tag {
            font-family: 'Lora', serif;
            font-weight: 600;
            font-size: 14px;
            color: #00d48c;
            text-transform: uppercase;
            margin-bottom: 8px;
        }
        
        .section-title {
            font-family: 'Lora', serif;
            font-weight: 600;
            font-size: 44px;
            line-height: 1.23;
            color: #0b1120;
            margin-bottom: 30px;
        }
        
        .section-description {
            font-family: 'Lora', serif;
            font-size: 18px;
            line-height: 1.44;
            color: #4a5b7a;
        }
        
        .steps-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
        }
        
        .step-card {
            background-color: white;
            border: 1px solid rgba(0, 212, 140, 0.9);
            border-radius: 8px;
            padding: 30px;
            width: 100%;
        }

        @media (min-width: 1025px) {
            .steps-grid > .step-card:nth-child(1), 
            .steps-grid > .step-card:nth-child(4) {
                width: calc(45.12% - 13.5px);
            }
            .steps-grid > .step-card:nth-child(2), 
            .steps-grid > .step-card:nth-child(3) {
                width: calc(54.88% - 16.5px);
            }
        }
        
        .step-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 10px;
        }
        
        .step-icon-badge {
            display: flex;
            flex-direction: column;
            gap: 18px;
        }
        
        .step-icon {
            width: 46px;
            height: 46px;
            background-color: rgba(0, 212, 140, 0.07);
            border: 0.667px solid rgba(0, 212, 140, 0.15);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .step-badge {
            background-color: rgba(0, 212, 140, 0.07);
            border: 0.667px solid rgba(0, 212, 140, 0.18);
            border-radius: 100px;
            padding: 2px 8px;
            font-size: 10px;
            color: #00d48c;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            width: fit-content;
        }
        
        .step-number {
            font-family: 'Lora', serif;
            font-weight: 700;
            font-size: 56px;
            color: rgba(0, 212, 140, 0.5);
        }
        
        .step-content h3 {
            font-family: 'Lora', serif;
            font-weight: 600;
            font-size: 20px;
            line-height: 1.5;
            color: #0b1120;
            margin-bottom: 5px;
        }
        
        .step-content p {
            font-family: 'Lora', serif;
            font-size: 16px;
            line-height: 1.5;
            color: #4a5b7a;
        }
        
        /* Features Section */
        .features-section {
            background-color: #f4f7ff;
            border-top: 0.667px solid rgba(0, 0, 0, 0.07);
            border-bottom: 0.667px solid rgba(0, 0, 0, 0.07);
            padding: 100px;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 68px;
        }
        
        .feature-card {
            background-color: white;
            border: 0.667px solid rgba(0, 0, 0, 0.07);
            border-radius: 20px;
            padding: 30px;
        }
        
        .feature-label {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 16px;
        }
        
        .feature-line {
            width: 20px;
            height: 1px;
            background-color: #00d48c;
        }
        
        .feature-label span {
            font-family: 'Lora', serif;
            font-weight: 700;
            font-size: 14px;
            color: #00d48c;
            text-transform: uppercase;
            letter-spacing: 1.32px;
        }
        
        .feature-icon-box {
            width: 50px;
            height: 50px;
            background-color: rgba(0, 212, 140, 0.07);
            border: 0.667px solid rgba(0, 212, 140, 0.14);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
        }
        
        .feature-card h3 {
            font-family: 'Syne', sans-serif;
            font-weight: 700;
            font-size: 20px;
            line-height: 1.5;
            color: #0b1120;
            margin-bottom: 8px;
        }
        
        .feature-card > p {
            font-family: 'Lora', serif;
            font-size: 16px;
            line-height: 1.5;
            color: #4a5b7a;
            margin-bottom: 16px;
        }
        
        .feature-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        
        .feature-list li {
            display: flex;
            align-items: center;
            gap: 8px;
            font-family: 'Lora', serif;
            font-size: 14px;
            line-height: 1.43;
            color: #4a5b7a;
        }
        
        .feature-list li::before {
            content: '';
            width: 5px;
            height: 5px;
            background-color: #00d48c;
            border-radius: 50%;
            flex-shrink: 0;
        }
        
        /* App Download Section */
        .download-section {
            background-color: white;
            border-top: 0.667px solid rgba(0, 0, 0, 0.07);
            border-bottom: 0.667px solid rgba(0, 0, 0, 0.07);
            padding: 100px;
        }
        
        .download-content {
            display: flex;
            gap: 40px;
            align-items: center;
        }
        
        .download-text {
            flex: 1;
        }
        
        .download-text h2 {
            font-family: 'Lora', serif;
            font-weight: 600;
            font-size: 44px;
            line-height: 1.23;
            color: #0b1120;
            margin-bottom: 30px;
        }
        
        .download-text p {
            font-family: 'Lora', serif;
            font-size: 18px;
            line-height: 1.44;
            color: #4a5b7a;
        }
        
        .download-buttons {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        
        .download-btn {
            width: 693px;
            max-width: 100%;
            height: 96px;
            border-radius: 14px;
            border: 0.67px solid rgba(0, 0, 0, 0.13);
            padding: 16px 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            cursor: pointer;
            transition: all 0.2s;
            text-decoration: none;
        }
        
        .download-btn.active {
            background-color: rgba(209, 250, 229, 0.4);
        }
        
        .download-btn.disabled {
            border: 0.67px dashed rgba(0, 0, 0, 0.13);
            background-color: #FFFFFF;
            opacity: 1;
            cursor: not-allowed;
        }
        
        .download-btn-content {
            display: flex;
            align-items: center;
            gap: 14px;
        }
        
        .download-icon {
            width: 44px;
            height: 44px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .download-icon.android {
            background-color: #2da44e;
        }
        
        .download-icon.ios {
            background-color: #555;
        }
        
        .download-info {
            width: 160.25px;
            height: 62.5px;
            display: flex;
            flex-direction: column;
            gap: 2px;
            justify-content: center;
        }
        
        .download-info h4 {
            font-family: 'Lora', serif;
            font-weight: 600;
            font-size: 16px;
            color: #0b1120;
            margin-bottom: 4px;
            line-height: 1.2;
        }
        
        .download-info .tag {
            font-family: 'Lora', serif;
            font-size: 12px;
            color: #9aabc5;
            text-transform: uppercase;
            letter-spacing: 0.77px;
            margin-bottom: 4px;
            line-height: 1.2;
        }
        
        .download-info p {
            font-family: 'Lora', serif;
            font-size: 12px;
            color: #4a5b7a;
            line-height: 1.2;
        }
        
        .phone-mockup {
            width: 374px;
            height: 556px;
            border-radius: 50px;
            background: linear-gradient(123.927deg, rgba(224, 231, 255, 0.5) 0%, rgba(243, 232, 255, 0.5) 100%);
            box-shadow: 0px 25px 50px 0px rgba(209, 250, 229, 0.4);
            padding: 16px;
        }
        
        .phone-screen {
            background-color: rgba(255, 255, 255, 0.4);
            height: 100%;
            border-radius: 40px;
            padding: 40px 12px 19px;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        
        .notification-card {
            background-color: white;
            border-radius: 16px;
            padding: 16px;
            box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1), 0px 1px 2px 0px rgba(0, 0, 0, 0.1);
        }
        
        .notification-card.gradient-green {
            background: linear-gradient(162.962deg, rgb(236, 253, 245) 0%, rgb(240, 253, 250) 100%);
        }
        
        .notification-card.gradient-blue {
            background: linear-gradient(166.312deg, rgb(239, 246, 255) 0%, rgb(236, 254, 255) 100%);
        }
        
        .notification-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 12px;
        }
        
        .notification-icon {
            width: 40px;
            height: 40px;
            min-width: 40px;
            flex-shrink: 0;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .notification-icon.green {
            background-color: #00d492;
        }
        
        .notification-icon.blue {
            background-color: #2b7fff;
        }
        
        .notification-content h4 {
            font-family: 'Inter', sans-serif;
            font-weight: 600;
            font-size: 14px;
            color: #1d293d;
            margin-bottom: 4px;
        }
        
        .notification-content p {
            font-family: 'Inter', sans-serif;
            font-size: 12px;
            line-height: 1.63;
            color: #62748e;
        }
        
        /* Footer */
        .footer {
            background-color: white;
            border-top: 0.667px solid rgba(0, 0, 0, 0.07);
            padding: 60px 100px;
        }
        
        .footer-content {
            display: flex;
            gap: 169px;
            margin-bottom: 48px;
        }
        
        .footer-brand {
            flex: 1;
        }
        
        .footer-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 13px;
        }
        
        .footer-logo-icon {
            width: 30px;
            height: 30px;
            background-color: #00d48c;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .footer-logo-text {
            font-family: 'Syne', sans-serif;
            font-weight: 700;
            font-size: 18px;
            color: #0b1120;
        }
        
        .footer-brand p {
            font-family: 'Lora', serif;
            font-weight: 500;
            font-size: 18px;
            line-height: 1.44;
            color: #4a5b7a;
            margin-bottom: 32px;
        }
        
        .social-links {
            display: flex;
            gap: 10px;
        }
        
        .social-icon {
            width: 36px;
            height: 36px;
            background-color: rgba(0, 0, 0, 0.04);
            border: 0.667px solid rgba(0, 0, 0, 0.13);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.2s;
        }
        
        .social-icon:hover {
            background-color: rgba(0, 212, 140, 0.1);
        }
        
        .footer-column h4 {
            font-family: 'Lora', serif;
            font-weight: 600;
            font-size: 13px;
            color: #0b1120;
            margin-bottom: 10px;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column ul li a {
            font-family: 'Lora', serif;
            font-size: 14px;
            color: #4a5b7a;
            text-decoration: none;
            transition: color 0.2s;
        }
        
        .footer-column ul li a:hover {
            color: #00d48c;
        }
        
        .footer-bottom {
            border-top: 0.667px solid rgba(0, 0, 0, 0.07);
            padding-top: 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .footer-bottom p {
            font-family: 'Lora', serif;
            font-size: 13px;
            color: #9aabc5;
        }
        
        .footer-links {
            display: flex;
            gap: 20px;
        }
        
        .footer-links a {
            font-family: 'Lora', serif;
            font-size: 13px;
            color: #9aabc5;
            text-decoration: none;
            transition: color 0.2s;
        }
        
        .footer-links a:hover {
            color: #00d48c;
        }
        
        /* Responsive */
        @media (max-width: 1280px) {
            .navbar-content,
            .steps-section,
            .features-section,
            .download-section,
            .footer {
                padding-left: 50px;
                padding-right: 50px;
            }
            
            .hero {
                padding-left: 50px;
                padding-right: 50px;
            }
        }
        
        @media (max-width: 1024px) {
            .hero-title {
                font-size: 56px;
            }
            
            .steps-grid {
                flex-direction: column;
            }
            
            .features-grid {
                grid-template-columns: 1fr;
            }
            
            .download-content {
                flex-direction: column;
            }
            
            .footer-content {
                flex-wrap: wrap;
                gap: 40px;
            }
        }
        
        @media (max-width: 768px) {
            .hero-title {
                font-size: 42px;
            }
            
            .section-title {
                font-size: 32px;
            }
            
            .navbar-content {
                padding: 0 30px;
            }
            
            .hero-buttons {
                flex-direction: column;
            }
            
            .hero-preview {
                width: 100%;
                max-width: 500px;
            }
        }