       * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #10b981;
            --secondary: #059669;
            --accent: #34d399;
            --dark: #1e293b;
            --light: #f0fdf4;
            --glass: rgba(255, 255, 255, 0.1);
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            line-height: 1.6;
            color: var(--dark);
            overflow-x: hidden;
            background: var(--light);
        }

        /* Navbar - Ultra Modern */
        .navbar {
            position: fixed;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            width: 95%;
            max-width: 1200px;
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
            padding: 1rem 2rem;
            z-index: 1000;
            border-radius: 100px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .navbar.scrolled {
            top: 10px;
            padding: 0.8rem 2rem;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: transform 0.3s ease;
        }

        .logo:hover {
            transform: scale(1.05);
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2.5rem;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            transition: width 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .auth-buttons {
            display: flex;
            gap: 1rem;
        }

        .btn-login, .btn-register {
            padding: 0.7rem 1.8rem;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            text-decoration: none;
        }

        .btn-login {
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
        }

        .btn-login:hover {
            background: var(--primary);
            color: white !important;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
        }

        .btn-register {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: white;
            border: 2px solid transparent;
            box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
        }

        .btn-register:hover {
            color: white !important;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
        }

        .mobile-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
        }

        .mobile-toggle span {
            width: 25px;
            height: 2px;
            background: var(--primary);
            border-radius: 3px;
            transition: all 0.3s ease;
        }

        /* Hero - Premium Design */
        .hero {
            margin-top: 0;
            min-height: 100vh;
            padding: 10rem 2rem 8rem;
            background: linear-gradient(135deg, #10b981 0%, #059669 50%, #34d399 100%);
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
            animation: gradientShift 10s ease infinite;
        }

        .paw-pattern {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 1;
        }

        .paw {
            position: absolute;
            font-size: 2.5rem;
            color: rgba(255, 255, 255, 0.2);
            opacity: 0.15;
            animation: pawFloat 8s ease-in-out infinite;
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
        }

        @keyframes pawWiggle {
            0%, 100% { transform: translateX(60px) rotate(-10deg); }
            50% { transform: translateX(60px) rotate(-5deg); }
        }

        .paw:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; animation-duration: 7s; }
        .paw:nth-child(2) { top: 15%; left: 30%; animation-delay: 1s; animation-duration: 9s; }
        .paw:nth-child(3) { top: 25%; left: 50%; animation-delay: 2s; animation-duration: 8s; }
        .paw:nth-child(4) { top: 20%; left: 70%; animation-delay: 3s; animation-duration: 10s; }
        .paw:nth-child(5) { top: 30%; left: 85%; animation-delay: 4s; animation-duration: 7.5s; }
        .paw:nth-child(6) { top: 45%; left: 15%; animation-delay: 0.5s; animation-duration: 8.5s; }
        .paw:nth-child(7) { top: 50%; left: 40%; animation-delay: 1.5s; animation-duration: 9.5s; }
        .paw:nth-child(8) { top: 55%; left: 65%; animation-delay: 2.5s; animation-duration: 7s; }
        .paw:nth-child(9) { top: 60%; left: 90%; animation-delay: 3.5s; animation-duration: 8s; }
        .paw:nth-child(10) { top: 70%; left: 25%; animation-delay: 4.5s; animation-duration: 9s; }
        .paw:nth-child(11) { top: 75%; left: 55%; animation-delay: 0.8s; animation-duration: 10s; }
        .paw:nth-child(12) { top: 80%; left: 80%; animation-delay: 1.8s; animation-duration: 7.5s; }
        .paw:nth-child(13) { top: 35%; left: 5%; animation-delay: 2.8s; animation-duration: 8.5s; }
        .paw:nth-child(14) { top: 40%; left: 95%; animation-delay: 3.8s; animation-duration: 9.5s; }
        .paw:nth-child(15) { top: 65%; left: 8%; animation-delay: 4.8s; animation-duration: 8s; }
        .paw:nth-child(16) { top: 85%; left: 45%; animation-delay: 1.3s; animation-duration: 7s; }

        .fox {
            position: absolute;
            bottom: 15%;
            left: 10%;
            z-index: 1;
        }

        @keyframes pawFloat {
            0%, 100% { 
                opacity: 0.1;
                transform: translateY(0) scale(1) rotate(0deg);
            }
            25% {
                opacity: 0.25;
                transform: translateY(-20px) scale(1.1) rotate(10deg);
            }
            50% { 
                opacity: 0.3;
                transform: translateY(-10px) scale(1.15) rotate(-10deg);
            }
            75% {
                opacity: 0.2;
                transform: translateY(-15px) scale(1.05) rotate(5deg);
            }
        }

        @keyframes gradientShift {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.8; }
        }

        .hero-content {
            max-width: 900px;
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .hero-badge {
            display: inline-block;
            padding: 0.8rem 2rem;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 50px;
            color: white;
            font-weight: 600;
            font-size: 0.95rem;
            margin-bottom: 2rem;
            animation: fadeInDown 0.8s ease;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        }

        .hero h1 {
            font-size: 4rem;
            font-weight: 900;
            color: white;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            animation: fadeInUp 1s ease;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }

        .hero-subtitle {
            font-size: 1.4rem;
            color: rgba(255, 255, 255, 0.95);
            margin-bottom: 1rem;
            font-weight: 300;
            animation: fadeInUp 1.2s ease;
        }

        .hero-description {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 3rem;
            font-weight: 400;
            animation: fadeInUp 1.4s ease;
        }

        .hero-cta {
        padding: 1rem 5rem;
        background: white;
        color: var(--primary);
        border: none;
        border-radius: 25px;
        font-size: 1.1rem;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        animation: fadeInUp 1.6s ease;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
        position: relative;
        overflow: hidden;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        display: inline-flex;
        text-align: center;
        }

        .hero-cta .Icons {
            width: 50px;
            height: 50px;
        }

        .hero-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s;
        }

        .hero-cta:hover::before {
            left: 100%;
        }

        .hero-cta:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
        }

        /* Walking Pets Animation - REMOVED */
        
        /* Modal Overlay */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(8px);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* Modal Container */
        .modal {
            background: white;
            border-radius: 30px;
            width: 100%;
            max-width: 600px;
            max-height: 90vh;
            overflow-y: auto;
            box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
            transform: translateY(50px) scale(0.9);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            scrollbar-width: none; /* Firefox */
            -ms-overflow-style: none; /* IE and Edge */
        }

        .modal::-webkit-scrollbar {
            width: 0px;
            display: none;
        }

        .modal-overlay.active .modal {
            transform: translateY(0) scale(1);
        }

        /* Modal Header */
        .modal-header {
            background: linear-gradient(135deg, var(--primary), var(--accent));
           /* border-radius: 30px 30px 0 0; */
            text-align: center;
            position: relative;
            color: white;
        }

        .modal-close {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            color: white;
            font-size: 1.2rem;
        }

        .modal-close:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: rotate(90deg);
        }
/*
        .modal-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }
*/

        .modal-header h2 {
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
        }

        .modal-header p {
            font-size: 1rem;
            opacity: 0.95;
        }

        /* Modal Body */
        .modal-body {
            padding: 2.5rem;
        }

        .Icons-Form {
            width: 75px;
            height: 75px;
            margin-top: 2rem;
        }

        .form-group {
            margin-bottom: 1.8rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.8rem;
            font-weight: 600;
            color: var(--dark);
            font-size: 0.95rem;
        }

        .form-group label i {
            color: var(--primary);
            margin-right: 0.5rem;
        }

        .form-group input,
        .form-group select {
            width: 100%;
            padding: 1rem 1.5rem;
            border: 2px solid #e2e8f0;
            border-radius: 15px;
            font-family: inherit;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: white;
        }

        .form-group input:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
        }

        /* Location Group */
        .location-group {
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            gap: 1rem;
            align-items: end;
        }

        .location-arrow {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: 50%;
            color: white;
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
        }

        /* Pet Type Cards */
        .pet-type-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 1rem;
        }

        .pet-type-card {
            padding: 1.5rem 1rem;
            border: 2px solid #e2e8f0;
            border-radius: 20px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            background: white;
        }

        .pet-type-card:hover {
            border-color: var(--primary);
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(16, 185, 129, 0.15);
        }

        .pet-type-card.selected {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-color: var(--primary);
            color: white;
        }

        .pet-type-card i {
            font-size: 2.5rem;
            margin-bottom: 0.5rem;
            display: block;
        }

        .pet-type-card span {
            font-weight: 600;
            font-size: 0.95rem;
        }

        /* Submit Button */
        .submit-btn {
            width: 100%;
            padding: 1.2rem;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: white;
            border: none;
            border-radius: 15px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.4s ease;
            box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.8rem;
            margin-top: 2rem;
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(16, 185, 129, 0.4);
        }

        .submit-btn:active {
            transform: translateY(-1px);
        }

        /* Demo Button */
        .demo-btn {
            padding: 1rem 3rem;
            background: white;
            color: var(--primary);
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
        }

        .demo-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .modal {
                margin: 1rem;
                max-height: 85vh;
            }

            .modal-header {
                padding: 2rem 1.5rem;
            }

            .modal-body {
                padding: 1.5rem;
            }

            .location-group {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .location-arrow {
                transform: rotate(90deg);
                margin: 0 auto;
            }

            .pet-type-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .modal-header h2 {
                font-size: 1.5rem;
            }
        }


        /* Scroll to Top Button */
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 55px;
            height: 55px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            border: none;
            border-radius: 50%;
            font-size: 1.5rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
        }

        .scroll-top.visible {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .scroll-top:hover {
            transform: translateY(-8px) scale(1.1);
            box-shadow: 0 12px 35px rgba(16, 185, 129, 0.4);
        }

        .scroll-top:active {
            transform: translateY(-5px) scale(1.05);
        }

        /* Partnership Section */
        .partnership {
            padding: 8rem 2rem;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            position: relative;
            overflow: hidden;
        }

        .partnership::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            animation: pulse 15s infinite;
        }

        .partnership-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: white;
        }

        .partnership-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }

        .partnership-card {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            padding: 3rem 2rem;
            border-radius: 25px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.4s ease;
            cursor: pointer;
        }

        .partnership-card:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
        }

        .partnership-icon {
            margin-bottom: 1.5rem;
        }

        .partnership-card h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .partnership-card p {
            font-size: 1rem;
            opacity: 0.95;
            line-height: 1.8;
            margin-bottom: 2rem;
        }

        .partnership-btn {
            padding: 1rem 2.5rem;
            background: white;
            color: var(--primary);
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .partnership-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        /* API Integration Section */
        .api-section {
            padding: 8rem 2rem;
            background: white;
        }

        .api-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .api-card {
            background: linear-gradient(135deg, #f0fdf4, white);
            padding: 2.5rem;
            border-radius: 25px;
            border: 2px solid #d1fae5;
            transition: all 0.4s ease;
            text-align: center;
        }

        .api-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(16, 185, 129, 0.15);
            border-color: var(--primary);
        }

        .api-card h3 {
            font-size: 1.5rem;
            color: var(--dark);
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .api-card p {
            color: #64748b;
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .api-badge {
            display: inline-block;
            padding: 0.5rem 1rem;
            background: var(--primary);
            color: white;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-stats {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-top: 4rem;
            margin-bottom: 2rem;
            animation: fadeInUp 1.8s ease;
            flex-wrap: wrap;
            position: relative;
            z-index: 2;
        }

        .stat-item {
            text-align: center;
            padding: 2rem;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            min-width: 150px;
            flex: 1;
            max-width: 200px;
            transition: all 0.3s ease;
        }

        .stat-item:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.25);
        }

        .stat-item h3 {
            font-size: 2.5rem;
            margin-bottom: 0.5rem;
            color: white;
            font-weight: 800;
        }

        .stat-item p {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 500;
        }

        /* Features - Soft & Premium */
        .features {
            padding: 8rem 2rem;
            background: var(--light);
            position: relative;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            font-size: 3rem;
            margin-bottom: 1rem;
            color: var(--dark);
            font-weight: 800;
            background: linear-gradient(135deg, var(--dark), var(--primary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: #64748b;
            margin-bottom: 4rem;
            font-weight: 400;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2.5rem;
        }

        .feature-card {
            background: white;
            padding: 3rem 2.5rem;
            border-radius: 30px;
            text-align: center;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            border: 1px solid rgba(0, 0, 0, 0.05);
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: 0;
        }

        .feature-card:hover::before {
            opacity: 0.05;
        }

        .feature-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 60px rgba(99, 102, 241, 0.15);
        }

        .feature-icon {
            font-size: 4rem;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 1;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s ease;
        }

        .feature-icon lord-icon {
            width: 80px;
            height: 80px;
        }

        .feature-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--dark);
            font-weight: 700;
            position: relative;
            z-index: 1;
        }

        .feature-card p {
            color: #64748b;
            line-height: 1.8;
            font-size: 1rem;
            position: relative;
            z-index: 1;
        }

        /* How It Works - Premium */
        .how-it-works {
            padding: 8rem 2rem;
            background: white;
            position: relative;
        }

        .steps {
            display: flex;
            justify-content: space-between;
            gap: 3rem;
            margin-top: 4rem;
            flex-wrap: wrap;
        }

        .step {
            flex: 1;
            min-width: 280px;
            text-align: center;
            padding: 3rem 2rem;
            position: relative;
            background: linear-gradient(135deg, #f8fafc, #f1f5f9);
            border-radius: 30px;
            transition: all 0.4s ease;
        }

        .step:hover {
            background: white;
            box-shadow: 0 20px 60px rgba(99, 102, 241, 0.1);
            transform: translateY(-10px);
        }

        .step-number {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: white;
            border-radius: 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: 900;
            margin: 0 auto 2rem;
            box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
            transition: all 0.3s ease;
        }

        .step:hover .step-number {
            transform: rotate(10deg) scale(1.1);
        }

        .step h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--dark);
            font-weight: 700;
        }

        .step p {
            color: #64748b;
            line-height: 1.8;
            font-size: 1rem;
        }

        /* App Section - Ultra Premium */
        .app-section {
            padding: 8rem 2rem;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .app-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            animation: pulse 15s infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1) rotate(0deg); }
            50% { transform: scale(1.2) rotate(180deg); }
        }

        .app-content {
            position: relative;
            z-index: 2;
        }

        .app-buttons {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-top: 3rem;
            flex-wrap: wrap;
        }

        .app-button {
            padding: 1.2rem 2.5rem;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            color: var(--primary);
            border-radius: 20px;
            text-decoration: none;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 1rem;
            transition: all 0.4s ease;
            border: 1px solid rgba(255, 255, 255, 0.3);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .app-button:hover {
            transform: translateY(-8px) scale(1.05);
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
            background: white;
        }

        /* FAQ - Modern & Clean with Paw Icons */
        .faq {
            padding: 8rem 2rem;
            background: var(--light);
        }

        .faq-item {
            background: white;
            margin-bottom: 1.5rem;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            border: 1px solid rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            box-shadow: 0 8px 30px rgba(16, 185, 129, 0.1);
            border-color: rgba(16, 185, 129, 0.2);
        }

        .faq-question {
            padding: 2rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            color: var(--dark);
            transition: all 0.3s ease;
            font-size: 1.1rem;
        }

        .faq-question:hover {
            color: var(--primary);
        }

        /* Pati İkonu Stili */
        .faq-icon {
            width: 35px;
            height: 35px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
            flex-shrink: 0;
        }

        .faq-item.active .faq-icon {
            transform: rotate(180deg) scale(1.1);
            background: linear-gradient(135deg, var(--accent), var(--primary));
            box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
        }

        .faq-item:hover .faq-icon {
            transform: scale(1.05);
        }

        /* Cevap Bölümü - Yumuşak Animasyon */
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            padding: 0 2rem;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            color: #64748b;
            line-height: 1.8;
            opacity: 0;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
            padding: 0 2rem 2rem;
            opacity: 1;
        }
        
        /* Mobile Responsive */
        @media (max-width: 768px) {
            .faq-question {
                padding: 1.5rem;
                font-size: 1rem;
            }

            .faq-answer {
                padding: 0 1.5rem;
            }

            .faq-item.active .faq-answer {
                padding: 0 1.5rem 1.5rem;
            }

            .faq-icon {
                width: 30px;
                height: 30px;
                font-size: 1rem;
            }

            .faq-more-btn {
                padding: 0.9rem 2.5rem;
                font-size: 0.95rem;
            }
        }

        /* Footer - Modern & Clean */
        .footer {
            background: linear-gradient(135deg, #1e293b, #334155);
            color: white;
            padding: 4rem 2rem 2rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-section h3 {
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, white, #94a3b8);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 700;
        }

        .footer-section a {
            display: block;
            color: #94a3b8;
            text-decoration: none;
            margin-bottom: 0.8rem;
            transition: all 0.3s ease;
            font-size: 0.95rem;
        }

        .footer-section a:hover {
            color: white;
            transform: translateX(5px);
        }

        .footer-section p {
            color: #94a3b8;
            line-height: 1.8;
            font-size: 0.95rem;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .social-links a {
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .social-links a:hover {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            transform: translateY(-5px) rotate(10deg);
            box-shadow: 0 10px 20px rgba(99, 102, 241, 0.3);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #94a3b8;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .navbar {
                width: 90%;
                padding: 1rem 1.5rem;
                border-radius: 50px;
            }

            .mobile-toggle {
                display: flex;
            }

            .nav-links {
                position: fixed;
                top: 90px;
                left: 50%;
                transform: translateX(-50%);
                flex-direction: column;
                background: rgba(255, 255, 255, 0.95);
                backdrop-filter: blur(20px);
                width: 90%;
                padding: 2rem;
                box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
                transition: all 0.4s ease;
                align-items: center;
                border-radius: 30px;
                opacity: 0;
                pointer-events: none;
                gap: 1rem;
            }

            .nav-links.active {
                opacity: 1;
                pointer-events: all;
            }

            .auth-buttons {
                flex-direction: column;
                width: 100%;
                gap: 0.8rem;
            }

            .btn-login, .btn-register {
                width: 100%;
                text-align: center;
            }

            .hero {
                padding: 8rem 1.5rem 4rem;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero-subtitle, .hero-description {
                font-size: 1rem;
            }

            .hero-stats {
                flex-direction: column;
                gap: 1.5rem;
                padding: 0 1rem;
            }

            .stat-item {
                max-width: 100%;
            }

            .section-title {
                font-size: 2rem;
            }

            .steps {
                flex-direction: column;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }
        }