:root {
            --primary: 0 84% 45%;
            --primary-foreground: 0 0% 100%;
            --secondary: 0 60% 95%;
            --secondary-foreground: 0 84% 35%;
            --background: 0 0% 100%;
            --foreground: 0 0% 10%;
            --muted: 0 10% 96%;
            --muted-foreground: 0 0% 45%;
            --accent: 0 84% 50%;
            --border: 0 20% 90%;
            --card: 0 0% 100%;
            --card-foreground: 0 0% 10%;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Be Vietnam Pro', sans-serif;
            background-color: hsl(var(--background));
            color: hsl(var(--foreground));
            line-height: 1.6;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }
        
        /* Header */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }
        
        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            text-decoration: none;
        }
        
        .logo-icon {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--accent)));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 800;
            font-size: 1.25rem;
        }
        
        .logo-text {
            display: flex;
            flex-direction: column;
        }
        
        .logo-text span:first-child {
            font-weight: 700;
            font-size: 1.25rem;
            color: hsl(var(--primary));
        }
        
        .logo-text span:last-child {
            font-size: 0.75rem;
            color: hsl(var(--muted-foreground));
        }
        
        .nav {
            display: none;
        }
        
        @media (min-width: 1024px) {
            .nav {
                display: flex;
                gap: 2rem;
            }
        }
        
        .nav a {
            text-decoration: none;
            color: hsl(var(--foreground));
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .nav a:hover {
            color: hsl(var(--primary));
        }
        
        .header-actions {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        
        .phone-link {
            display: none;
            align-items: center;
            gap: 0.5rem;
            color: hsl(var(--primary));
            font-weight: 600;
            text-decoration: none;
        }
        
        @media (min-width: 768px) {
            .phone-link {
                display: flex;
            }
        }
        
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.75rem 1.5rem;
            border-radius: 9999px;
            font-weight: 600;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.3s;
            border: none;
        }
        
        .btn-primary {
            background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--accent)));
            color: white;
            box-shadow: 0 4px 15px hsla(var(--primary), 0.4);
        }
        
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px hsla(var(--primary), 0.5);
        }
        
        .btn-outline {
            background: transparent;
            border: 2px solid hsl(var(--primary));
            color: hsl(var(--primary));
        }
        
        .btn-outline:hover {
            background: hsl(var(--primary));
            color: white;
        }
        
        .btn-lg {
            padding: 1rem 2rem;
            font-size: 1.125rem;
        }
        
        /* Hero Section */
        .hero {
            padding-top: 120px;
            padding-bottom: 4rem;
            background: linear-gradient(135deg, hsl(var(--secondary)) 0%, white 50%, hsl(var(--muted)) 100%);
            min-height: 100vh;
            display: flex;
            align-items: center;
        }
        
        .hero-grid {
            display: grid;
            gap: 3rem;
            align-items: center;
        }
        
        @media (min-width: 1024px) {
            .hero-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: hsl(var(--secondary));
            color: hsl(var(--primary));
            padding: 0.5rem 1rem;
            border-radius: 9999px;
            font-weight: 600;
            font-size: 0.875rem;
            margin-bottom: 1.5rem;
            animation: fadeIn 0.6s ease-out;
        }
        
        .hero h1 {
            font-size: 2.5rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            animation: fadeIn 0.6s ease-out 0.1s both;
        }
        
        @media (min-width: 768px) {
            .hero h1 {
                font-size: 3.5rem;
            }
        }
        
        .hero h1 span {
            background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--accent)));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .hero-desc {
            font-size: 1.125rem;
            color: hsl(var(--muted-foreground));
            margin-bottom: 2rem;
            animation: fadeIn 0.6s ease-out 0.2s both;
        }
        
        .hero-features {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-bottom: 2rem;
            animation: fadeIn 0.6s ease-out 0.3s both;
        }
        
        .hero-feature {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: hsl(var(--foreground));
            font-weight: 500;
        }
        
        .hero-feature svg {
            color: hsl(var(--primary));
        }
        
        .hero-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-bottom: 3rem;
            animation: fadeIn 0.6s ease-out 0.4s both;
        }
        
        .hero-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            padding: 1.5rem;
            background: white;
            border-radius: 1rem;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            animation: fadeIn 0.6s ease-out 0.5s both;
        }
        
        .stat {
            text-align: center;
        }
        
        .stat-value {
            font-size: 1.5rem;
            font-weight: 800;
            color: hsl(var(--primary));
        }
        
        @media (min-width: 768px) {
            .stat-value {
                font-size: 2rem;
            }
        }
        
        .stat-label {
            font-size: 0.75rem;
            color: hsl(var(--muted-foreground));
        }
        
        .hero-image{
  position: relative;

  /* GIỮ KÍCH THƯỚC NHƯ PLACEHOLDER CŨ */
  aspect-ratio: 4 / 3;

  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.hero-img{
  width: 100%;
  height: 100%;           /* QUAN TRỌNG */
  object-fit: cover;
  display: block;
}

        
        .hero-image-placeholder {
            aspect-ratio: 4/3;
            background: linear-gradient(135deg, hsl(var(--secondary)), hsl(var(--muted)));
            border-radius: 1.5rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: hsl(var(--muted-foreground));
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
        }
        
        .hero-image-placeholder svg {
            width: 80px;
            height: 80px;
            margin-bottom: 1rem;
        }
        
        .price-badge {
            position: absolute;
            top: -1rem;
            right: -1rem;
            background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--accent)));
            color: white;
            padding: 1rem 1.5rem;
            border-radius: 1rem;
            box-shadow: 0 10px 30px hsla(var(--primary), 0.4);
            animation: pulse 2s infinite;
        }
        
        .price-badge span:first-child {
            display: block;
            font-size: 0.75rem;
        }
        
        .price-badge span:last-child {
            font-size: 1.25rem;
            font-weight: 800;
        }
        
        /* Section Common */
        .section {
            padding: 5rem 0;
        }
        
        .section-alt {
            background: hsl(var(--muted));
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .section-title span {
            display: inline-block;
            background: hsl(var(--secondary));
            color: hsl(var(--primary));
            padding: 0.25rem 1rem;
            border-radius: 9999px;
            font-size: 0.875rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }
        
        .section-title h2 {
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 1rem;
        }
        
        @media (min-width: 768px) {
            .section-title h2 {
                font-size: 2.5rem;
            }
        }
        
        .section-title p {
            color: hsl(var(--muted-foreground));
            max-width: 600px;
            margin: 0 auto;
        }
        
        /* About Section */
        .about-grid {
            display: grid;
            gap: 3rem;
        }
        
        @media (min-width: 1024px) {
            .about-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        
        .about-card {
            background: white;
            padding: 2rem;
            border-radius: 1rem;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        }
        
        .about-card h3 {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .about-card h3 svg {
            color: hsl(var(--primary));
        }
        
        .about-list {
            list-style: none;
        }
        
        .about-list li {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            padding: 0.75rem 0;
            border-bottom: 1px solid hsl(var(--border));
        }
        
        .about-list li:last-child {
            border-bottom: none;
        }
        
        .about-list svg {
            color: hsl(var(--primary));
            flex-shrink: 0;
            margin-top: 0.25rem;
        }
        
        /* Location Section */
        .location-grid {
            display: grid;
            gap: 2rem;
        }
        
        @media (min-width: 1024px) {
            .location-grid {
                grid-template-columns: 1fr 1.5fr;
            }
        }
        
        .location-features {
            display: grid;
            gap: 1rem;
        }
        
        .location-feature {
            background: white;
            padding: 1.25rem;
            border-radius: 0.75rem;
            display: flex;
            align-items: center;
            gap: 1rem;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            transition: all 0.3s;
        }
        
        .location-feature:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        }
        
        .location-feature-icon {
            width: 48px;
            height: 48px;
            background: hsl(var(--secondary));
            border-radius: 0.75rem;
            display: flex;
            align-items: center;
            justify-content: center;
            color: hsl(var(--primary));
        }
        
        .location-feature h4 {
            font-weight: 600;
            margin-bottom: 0.25rem;
        }
        
        .location-feature p {
            font-size: 0.875rem;
            color: hsl(var(--muted-foreground));
        }
        
        .map-placeholder {
            background: hsl(var(--muted));
            border-radius: 1rem;
            min-height: 400px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: hsl(var(--muted-foreground));
            border: 2px dashed hsl(var(--border));
        }
        
        .map-placeholder svg {
            width: 60px;
            height: 60px;
            margin-bottom: 1rem;
        }
        
        /* Floor Plans */
        .floor-plans-grid {
            display: grid;
            gap: 1.5rem;
        }
        
        @media (min-width: 768px) {
            .floor-plans-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (min-width: 1024px) {
            .floor-plans-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        .floor-plan-card {
            background: white;
            border-radius: 1rem;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            transition: all 0.3s;
            position: relative;
        }
        
        .floor-plan-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 30px rgba(0,0,0,0.12);
        }
        
        .floor-plan-badge {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: hsl(var(--primary));
            color: white;
            padding: 0.25rem 0.75rem;
            border-radius: 9999px;
            font-size: 0.75rem;
            font-weight: 600;
        }
        
        .floor-plan-image {
            height: 160px;
            background: linear-gradient(135deg, hsl(var(--secondary)), hsl(var(--muted)));
            display: flex;
            align-items: center;
            justify-content: center;
            color: hsl(var(--muted-foreground));
        }
        
        .floor-plan-content {
            padding: 1.5rem;
        }
        
        .floor-plan-content h3 {
            font-weight: 700;
            margin-bottom: 0.5rem;
        }
        
        .floor-plan-content .size {
            color: hsl(var(--muted-foreground));
            font-size: 0.875rem;
            margin-bottom: 1rem;
        }
        
        .floor-plan-features {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }
        
        .floor-plan-features span {
            background: hsl(var(--muted));
            padding: 0.25rem 0.5rem;
            border-radius: 0.25rem;
            font-size: 0.75rem;
        }
        
        .floor-plan-price {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 1rem;
            border-top: 1px solid hsl(var(--border));
        }
        
        .floor-plan-price .label {
            font-size: 0.875rem;
            color: hsl(var(--muted-foreground));
        }
        
        .floor-plan-price .value {
            font-weight: 700;
            color: hsl(var(--primary));
        }
        
        /* Amenities */
        .amenities-grid {
            display: grid;
            gap: 2rem;
        }
        
        @media (min-width: 1024px) {
            .amenities-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        
        .amenities-category {
            background: white;
            padding: 2rem;
            border-radius: 1rem;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        }
        
        .amenities-category h3 {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            color: hsl(var(--primary));
        }
        
        .amenities-list {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }
        
        .amenity-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.75rem;
            background: hsl(var(--muted));
            border-radius: 0.5rem;
        }
        
        .amenity-item svg {
            color: hsl(var(--primary));
        }
        
        /* Pricing */
        .pricing-grid {
            display: grid;
            gap: 2rem;
        }
        
        @media (min-width: 1024px) {
            .pricing-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        
        .pricing-card {
            background: white;
            padding: 2rem;
            border-radius: 1rem;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        }
        
        .pricing-card.featured {
            background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--accent)));
            color: white;
        }
        
        .pricing-card h3 {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .pricing-card .price-range {
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
        }
        
        .pricing-card .price-note {
            font-size: 0.875rem;
            opacity: 0.8;
            margin-bottom: 1.5rem;
        }
        
        .pricing-list {
            list-style: none;
        }
        
        .pricing-list li {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            padding: 0.5rem 0;
        }
        
        .pricing-list svg {
            flex-shrink: 0;
            margin-top: 0.25rem;
        }
        
        /* Timeline */
        .timeline {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .timeline::before {
            content: '';
            position: absolute;
            left: 20px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: hsl(var(--border));
        }
        
        @media (min-width: 768px) {
            .timeline::before {
                left: 50%;
                transform: translateX(-50%);
            }
        }
        
        .timeline-item {
            position: relative;
            padding-left: 60px;
            padding-bottom: 2rem;
        }
        
        @media (min-width: 768px) {
            .timeline-item {
                padding-left: 0;
                padding-right: 0;
            }
            
            .timeline-item:nth-child(odd) {
                padding-right: calc(50% + 30px);
                text-align: right;
            }
            
            .timeline-item:nth-child(even) {
                padding-left: calc(50% + 30px);
            }
        }
        
        .timeline-dot {
            position: absolute;
            left: 12px;
            width: 18px;
            height: 18px;
            background: hsl(var(--primary));
            border-radius: 50%;
            border: 3px solid white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }
        
        @media (min-width: 768px) {
            .timeline-dot {
                left: 50%;
                transform: translateX(-50%);
            }
        }
        
        .timeline-dot.current {
            animation: pulse 2s infinite;
        }
        
        .timeline-content {
            background: white;
            padding: 1.5rem;
            border-radius: 0.75rem;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
        }
        
        .timeline-content h4 {
            font-weight: 700;
            margin-bottom: 0.5rem;
        }
        
        .timeline-content .date {
            font-size: 0.875rem;
            color: hsl(var(--primary));
            font-weight: 600;
            margin-bottom: 0.5rem;
        }
        
        .timeline-content p {
            font-size: 0.875rem;
            color: hsl(var(--muted-foreground));
        }
        
        .timeline-status {
            display: inline-block;
            padding: 0.25rem 0.75rem;
            border-radius: 9999px;
            font-size: 0.75rem;
            font-weight: 600;
            margin-top: 0.5rem;
        }
        
        .timeline-status.current {
            background: hsl(var(--secondary));
            color: hsl(var(--primary));
        }
        
        .timeline-status.upcoming {
            background: hsl(var(--muted));
            color: hsl(var(--muted-foreground));
        }
        
        /* Contact */
        .contact-grid {
            display: grid;
            gap: 2rem;
        }
        
        @media (min-width: 1024px) {
            .contact-grid {
                grid-template-columns: 1fr 1.2fr;
            }
        }
        
        .contact-info {
            display: grid;
            gap: 1rem;
        }
        
        .contact-card {
            background: white;
            padding: 1.5rem;
            border-radius: 0.75rem;
            display: flex;
            align-items: center;
            gap: 1rem;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            transition: all 0.3s;
        }
        
        .contact-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.12);
        }
        
        .contact-card-icon {
            width: 56px;
            height: 56px;
            background: hsl(var(--secondary));
            border-radius: 0.75rem;
            display: flex;
            align-items: center;
            justify-content: center;
            color: hsl(var(--primary));
        }
        
        .contact-card h4 {
            font-size: 0.875rem;
            color: hsl(var(--muted-foreground));
            margin-bottom: 0.25rem;
        }
        
        .contact-card p {
            font-weight: 600;
            color: hsl(var(--foreground));
        }
        
        .contact-form-card {
            background: white;
            padding: 2rem;
            border-radius: 1rem;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        }
        
        .contact-form-card h3 {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }
        
        .contact-form-card > p {
            color: hsl(var(--muted-foreground));
            margin-bottom: 1.5rem;
        }
        
        .form-group {
            margin-bottom: 1rem;
        }
        
        .form-group label {
            display: block;
            font-weight: 500;
            margin-bottom: 0.5rem;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.75rem 1rem;
            border: 1px solid hsl(var(--border));
            border-radius: 0.5rem;
            font-family: inherit;
            font-size: 1rem;
            transition: border-color 0.3s;
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: hsl(var(--primary));
        }
        
        .form-group textarea {
            resize: vertical;
            min-height: 100px;
        }
        
        /* Footer */
        .footer {
            background: hsl(var(--foreground));
            color: white;
            padding: 4rem 0 2rem;
        }
        
        .footer-grid {
            display: grid;
            gap: 2rem;
            margin-bottom: 3rem;
        }
        
        @media (min-width: 768px) {
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (min-width: 1024px) {
            .footer-grid {
                grid-template-columns: 1.5fr 1fr 1fr 1fr;
            }
        }
        
        .footer-brand h3 {
            font-size: 1.5rem;
            font-weight: 800;
            color: hsl(var(--primary));
            margin-bottom: 1rem;
        }
        
        .footer-brand p {
            color: rgba(255,255,255,0.7);
            margin-bottom: 1.5rem;
        }
        
        .footer-section h4 {
            font-weight: 700;
            margin-bottom: 1rem;
        }
        
        .footer-section ul {
            list-style: none;
        }
        
        .footer-section li {
            margin-bottom: 0.5rem;
        }
        
        .footer-section a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-section a:hover {
            color: hsl(var(--primary));
        }
        
        .footer-bottom {
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            text-align: center;
            color: rgba(255,255,255,0.5);
            font-size: 0.875rem;
        }
        
        /* Floating Buttons */
        .floating-buttons {
            position: fixed;
            bottom: 1.5rem;
            right: 1.5rem;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            z-index: 999;
        }
        
        .floating-btn {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            transition: all 0.3s;
        }
        
        .floating-btn:hover {
            transform: scale(1.1);
        }
        
        .floating-btn.zalo {
            background: #0068ff;
            color: white;
        }
        
        .floating-btn.phone {
            background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--accent)));
            color: white;
            animation: pulse 2s infinite;
        }
        
        /* Popup */
        .popup-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.6);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 2000;
            padding: 1rem;
        }
        
        .popup-overlay.active {
            display: flex;
        }
        
        .popup {
            background: white;
            border-radius: 1rem;
            max-width: 480px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            animation: scaleIn 0.3s ease-out;
        }
        
        .popup-header {
            background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--accent)));
            color: white;
            padding: 1.5rem;
            text-align: center;
            position: relative;
        }
        
        .popup-close {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: rgba(255,255,255,0.2);
            border: none;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            color: white;
            cursor: pointer;
            font-size: 1.25rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .popup-header h3 {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }
        
        .popup-header p {
            font-size: 0.875rem;
            opacity: 0.9;
        }
        
        .popup-body {
            padding: 1.5rem;
        }
        
        .popup-benefits {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
        }
        
        .popup-benefit {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            background: hsl(var(--secondary));
            color: hsl(var(--primary));
            padding: 0.25rem 0.75rem;
            border-radius: 9999px;
            font-size: 0.75rem;
            font-weight: 500;
        }
        
        .popup-success {
            text-align: center;
            padding: 2rem;
        }
        
        .popup-success svg {
            width: 64px;
            height: 64px;
            color: #22c55e;
            margin-bottom: 1rem;
        }
        
        .popup-success h4 {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }
        
        .popup-success p {
            color: hsl(var(--muted-foreground));
        }
        
        /* Mobile Menu */
        .mobile-menu-btn {
            display: flex;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
        }
        
        @media (min-width: 1024px) {
            .mobile-menu-btn {
                display: none;
            }
        }
        
        .mobile-menu {
            display: none;
            position: fixed;
            top: 80px;
            left: 0;
            right: 0;
            background: white;
            padding: 1rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .mobile-menu.active {
            display: block;
        }
        
        .mobile-menu a {
            display: block;
            padding: 0.75rem 1rem;
            text-decoration: none;
            color: hsl(var(--foreground));
            font-weight: 500;
            border-radius: 0.5rem;
            transition: all 0.3s;
        }
        
        .mobile-menu a:hover {
            background: hsl(var(--secondary));
            color: hsl(var(--primary));
        }
        
        /* Animations */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes scaleIn {
            from {
                opacity: 0;
                transform: scale(0.9);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }
        
        @keyframes pulse {
            0%, 100% {
                box-shadow: 0 0 0 0 hsla(var(--primary), 0.4);
            }
            50% {
                box-shadow: 0 0 0 15px hsla(var(--primary), 0);
            }
        }
        
        /* Scroll Animation */
        .fade-up {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease-out;
        }
        
        .fade-up.visible {
            opacity: 1;
            transform: translateY(0);
        }
