
        /* ============================================
           DESIGN SYSTEM
           Đồng bộ 100% với Crowd Brand Guidelines
           ============================================ */
        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        :root {
            --primary: #FFA649;
            --primary-hover: #ff9929;
            --primary-light: rgba(255, 166, 73, 0.15);
            --primary-lighter: rgba(255, 166, 73, 0.08);
            --accent: #D4A800;
            --accent-hover: #b8920f;
            --dark: #222222;
            --secondary: #222222;
            --bg-cream: #FFF5E2;
            --text-secondary: #4C5C6C;
            --text-tertiary: #6B7280;
            --white: #FFFFFF;
            --bg: #FFF5E2;
            --border: #E1E1E1;
            --shadow: rgba(34, 34, 34, 0.1);
            --shadow-hover: rgba(34, 34, 34, 0.15);
            --shadow-card: 0 4px 24px rgba(34, 34, 34, 0.06);

            --radius-btn: 16px;
            --radius-card: 16px;
            --radius-badge: 24px;
            --radius-icon: 14px;

            --max-width: 1200px;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            color: var(--dark);
            background: var(--bg);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        button {
            font-family: inherit;
            cursor: pointer;
            border: none;
            background: none;
        }

        img {
            max-width: 100%;
            display: block;
        }

        /* ============================================
           HEADER
           ============================================ */
        .header {
            position: sticky;
            top: 0;
            z-index: 100;
            background: var(--white);
            padding: 0 24px;
            transition: box-shadow 0.3s ease;
        }

        .header.scrolled {
            box-shadow: 0 2px 20px rgba(69, 73, 76, 0.08);
        }

        .header-inner {
            max-width: var(--max-width);
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 72px;
        }

        .logo {
            font-size: 24px;
            font-weight: 700;
            color: var(--dark);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .nav {
            display: flex;
            align-items: center;
            gap: 32px;
        }

        .nav-links {
            display: flex;
            gap: 32px;
            list-style: none;
        }

        .nav-links a {
            font-size: 15px;
            font-weight: 500;
            color: var(--dark);
            transition: color 0.2s;
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .menu-toggle {
            display: none;
            width: 40px;
            height: 40px;
            align-items: center;
            justify-content: center;
        }

        /* ============================================
           BUTTONS
           ============================================ */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 12px 24px;
            border-radius: var(--radius-btn);
            font-size: 15px;
            font-weight: 600;
            transition: all 0.2s ease;
        }

        .btn:focus-visible {
            outline: 3px solid var(--primary);
            outline-offset: 2px;
        }

        .btn-primary {
            background: var(--primary);
            color: var(--dark);
        }

        .btn-primary:hover {
            background: var(--primary-hover);
            transform: translateY(-1px);
        }

        .btn-secondary {
            background: var(--white);
            color: var(--dark);
            border: 2px solid var(--border);
        }

        .btn-secondary:hover {
            border-color: var(--primary);
            background: var(--primary-lighter);
        }

        .btn-lg {
            padding: 14px 32px;
            font-size: 16px;
        }

        /* ============================================
           UTILITY
           ============================================ */
        .section-inner {
            max-width: var(--max-width);
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 48px;
        }

        .section-header h2 {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .section-header p {
            color: var(--text-secondary);
            font-size: 17px;
            max-width: 560px;
            margin: 0 auto;
        }

        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--primary);
            margin-bottom: 12px;
        }

        .section-label svg {
            width: 16px;
            height: 16px;
        }

        /* ============================================
           HERO SECTION
           ============================================ */
        .hero {
            padding: 80px 24px 100px;
            background: linear-gradient(180deg, var(--white) 0%, var(--bg) 100%);
        }

        .hero-inner {
            max-width: var(--max-width);
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .hero-content h1 {
            font-size: 48px;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 20px;
        }

        .hero-content h1 span {
            color: var(--primary);
        }

        .hero-content p {
            font-size: 18px;
            color: var(--text-secondary);
            margin-bottom: 32px;
            max-width: 480px;
            line-height: 1.7;
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            margin-bottom: 48px;
        }

        .hero-stats {
            display: flex;
            gap: 40px;
        }

        .hero-stat-number {
            font-size: 32px;
            font-weight: 700;
            color: var(--dark);
            line-height: 1;
        }

        .hero-stat-number span {
            color: var(--primary);
        }

        .hero-stat-label {
            font-size: 14px;
            color: var(--text-tertiary);
            margin-top: 4px;
        }

        /* Hero preview card */
        .hero-card {
            background: var(--white);
            border-radius: var(--radius-card);
            padding: 32px;
            box-shadow: var(--shadow-card);
            border: 1px solid var(--border);
        }

        .hero-card-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 24px;
        }

        .hero-card-header h3 {
            font-size: 14px;
            color: var(--text-tertiary);
            font-weight: 500;
            margin-bottom: 4px;
        }

        .hero-card-title {
            font-size: 20px;
            font-weight: 700;
        }

        .status-badge {
            background: var(--accent);
            color: var(--dark);
            padding: 6px 14px;
            border-radius: var(--radius-badge);
            font-size: 13px;
            font-weight: 600;
        }

        .hero-card-details {
            display: grid;
            gap: 16px;
        }

        .detail-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-bottom: 16px;
            border-bottom: 1px solid var(--border);
        }

        .detail-row:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }

        .detail-label {
            color: var(--text-tertiary);
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .detail-label svg {
            width: 16px;
            height: 16px;
            color: var(--primary);
        }

        .detail-value {
            font-weight: 600;
            font-size: 15px;
        }

        .detail-value.highlight {
            color: var(--primary);
            font-weight: 700;
        }

        /* ============================================
           USP SECTION
           ============================================ */
        .usp-section {
            padding: 80px 24px;
            background: var(--white);
        }

        .usp-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .usp-card {
            background: var(--white);
            border-radius: var(--radius-card);
            padding: 32px;
            border: 2px solid var(--border);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .usp-card:hover {
            border-color: var(--primary);
            box-shadow: 0 12px 40px var(--shadow-hover);
            transform: translateY(-4px);
        }

        .usp-card-icon {
            width: 56px;
            height: 56px;
            background: var(--primary-light);
            border-radius: var(--radius-icon);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }

        .usp-card-icon svg {
            width: 28px;
            height: 28px;
            color: var(--primary);
        }

        .usp-card-icon.accent {
            background: rgba(255, 228, 84, 0.2);
        }

        .usp-card-icon.accent svg {
            color: #D4A800;
        }

        .usp-card-icon.green {
            background: rgba(34, 197, 94, 0.12);
        }

        .usp-card-icon.green svg {
            color: #16a34a;
        }

        .usp-card h3 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .usp-card p {
            color: var(--text-secondary);
            font-size: 15px;
            line-height: 1.6;
        }

        .usp-card.featured {
            background: var(--dark);
            border-color: var(--dark);
        }

        .usp-card.featured:hover {
            border-color: var(--primary);
            box-shadow: 0 12px 40px rgba(69, 73, 76, 0.2);
        }

        .usp-card.featured h3 {
            color: var(--white);
        }

        .usp-card.featured p {
            color: rgba(255, 255, 255, 0.7);
        }

        .usp-card.featured .usp-card-icon {
            background: rgba(255, 228, 84, 0.2);
        }

        .usp-card.featured .usp-card-icon svg {
            color: var(--accent);
        }

        .badge-highlight {
            background: var(--accent);
            color: var(--dark);
            font-size: 11px;
            font-weight: 700;
            padding: 4px 10px;
            border-radius: 12px;
            text-transform: uppercase;
            display: inline-block;
            margin-bottom: 12px;
        }

        .usp-card.featured .badge-highlight {
            background: rgba(255, 228, 84, 0.25);
            color: var(--accent);
        }

        /* ============================================
           MENU CAROUSEL SECTION
           Single card + auto-rotate + prev/next + dots
           Data fetched from GAS doGet()
           ============================================ */
        .menu-section {
            padding: 80px 24px;
        }

        .carousel-wrapper {
            max-width: 600px;
            margin: 0 auto;
            position: relative;
        }

        /* Main carousel container */
        .carousel-viewport {
            overflow: hidden;
            border-radius: var(--radius-card);
            border: 2px solid var(--border);
            background: var(--white);
            transition: border-color 0.3s;
        }

        .carousel-viewport:hover {
            border-color: var(--primary);
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            will-change: transform;
        }

        .carousel-slide {
            min-width: 100%;
            flex-shrink: 0;
        }

        .carousel-slide-image {
            aspect-ratio: 16/9;
            background: linear-gradient(135deg, var(--primary-light), rgba(255, 228, 84, 0.1));
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 8px;
            position: relative;
            overflow: hidden;
        }

        .carousel-slide-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            inset: 0;
        }

        /* Placeholder khi chưa có ảnh */
        .carousel-slide-image .placeholder-icon {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
        }

        .carousel-slide-image .placeholder-icon svg {
            width: 40px;
            height: 40px;
            color: var(--text-tertiary);
            opacity: 0.4;
        }

        .carousel-slide-image .placeholder-icon span {
            font-size: 13px;
            color: var(--text-tertiary);
            font-weight: 500;
        }

        .carousel-day-badge {
            position: absolute;
            top: 14px;
            left: 14px;
            background: var(--white);
            padding: 4px 14px;
            border-radius: var(--radius-badge);
            font-size: 13px;
            font-weight: 600;
            color: var(--dark);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            z-index: 2;
        }

        .carousel-slide-body {
            padding: 24px;
        }

        .carousel-slide-body h3 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 6px;
        }

        .carousel-slide-body p {
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* Prev / Next buttons */
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: var(--white);
            border: 2px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 3;
            transition: all 0.2s;
            box-shadow: 0 4px 12px rgba(69, 73, 76, 0.1);
        }

        .carousel-btn:hover {
            border-color: var(--primary);
            background: var(--primary-lighter);
            transform: translateY(-50%) scale(1.05);
        }

        .carousel-btn svg {
            width: 20px;
            height: 20px;
            color: var(--dark);
        }

        .carousel-btn-prev {
            left: -22px;
        }

        .carousel-btn-next {
            right: -22px;
        }

        /* Dot indicators */
        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-top: 20px;
        }

        .carousel-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--border);
            border: none;
            padding: 0;
            transition: all 0.3s;
            cursor: pointer;
        }

        .carousel-dot:hover {
            background: var(--primary-hover);
        }

        .carousel-dot.active {
            background: var(--primary);
            width: 28px;
            border-radius: 5px;
        }

        /* Loading skeleton */
        .carousel-loading {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 80px 24px;
            color: var(--text-tertiary);
            font-size: 15px;
            gap: 12px;
        }

        .carousel-loading .spinner {
            width: 32px;
            height: 32px;
            border: 3px solid var(--border);
            border-top-color: var(--primary);
            border-radius: 50%;
            animation: spin 0.8s linear infinite;
        }

        @keyframes spin {
            to {
                transform: rotate(360deg);
            }
        }

        .menu-note {
            text-align: center;
            font-size: 15px;
            color: var(--text-secondary);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin-top: 32px;
        }

        .menu-note svg {
            width: 18px;
            height: 18px;
            color: var(--primary);
        }

        /* ============================================
           PROCESS SECTION
           ============================================ */
        .process-section {
            padding: 80px 24px;
            background: var(--white);
        }

        .steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            position: relative;
        }

        .steps::before {
            content: '';
            position: absolute;
            top: 40px;
            left: 12.5%;
            right: 12.5%;
            height: 2px;
            background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
        }

        .step {
            text-align: center;
            position: relative;
        }

        .step-number {
            width: 80px;
            height: 80px;
            background: var(--white);
            border: 3px solid var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
            position: relative;
            z-index: 1;
            transition: all 0.3s ease;
        }

        .step-number svg {
            width: 28px;
            height: 28px;
            color: var(--primary);
        }

        .step:hover .step-number {
            background: var(--primary);
            transform: scale(1.05);
        }

        .step:hover .step-number svg {
            color: var(--white);
        }

        .step:last-child .step-number {
            border-color: var(--accent);
        }

        .step:last-child:hover .step-number {
            background: var(--accent);
        }

        .step:last-child:hover .step-number svg {
            color: var(--dark);
        }

        .step h3 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .step p {
            color: var(--text-secondary);
            font-size: 15px;
            max-width: 240px;
            margin: 0 auto;
        }

        /* ============================================
           COMMITMENT SECTION
           ============================================ */
        .commitment-section {
            padding: 80px 24px;
        }

        .commitment-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .commitment-card {
            background: var(--dark);
            border-radius: var(--radius-card);
            padding: 40px;
            color: var(--white);
        }

        .commitment-card h3 {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 28px;
        }

        .checklist {
            list-style: none;
            display: grid;
            gap: 0;
        }

        .checklist li {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            padding: 16px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            font-size: 15px;
            line-height: 1.6;
        }

        .checklist li:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }

        .check-icon {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: rgba(255, 228, 84, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            margin-top: 1px;
        }

        .check-icon svg {
            width: 12px;
            height: 12px;
            color: var(--accent);
        }

        .commitment-content .section-header {
            text-align: left;
            margin-bottom: 32px;
        }

        .commitment-content .section-header p {
            margin: 0;
        }

        .commitment-items {
            display: grid;
            gap: 20px;
        }

        .commitment-item {
            display: flex;
            gap: 16px;
            padding: 24px;
            background: var(--white);
            border-radius: var(--radius-card);
            border: 2px solid var(--border);
            transition: all 0.3s ease;
        }

        .commitment-item:hover {
            border-color: var(--primary);
            box-shadow: 0 8px 24px var(--shadow);
        }

        .commitment-item-icon {
            width: 48px;
            height: 48px;
            border-radius: var(--radius-icon);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .commitment-item-icon svg {
            width: 24px;
            height: 24px;
        }

        .commitment-item h4 {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 4px;
        }

        .commitment-item p {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* ============================================
           DELIVERY SECTION
           ============================================ */
        .delivery-section {
            padding: 80px 24px;
            background: var(--white);
        }

        .delivery-areas {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            justify-content: center;
            margin-bottom: 32px;
        }

        .area-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 22px;
            background: var(--bg);
            border-radius: var(--radius-btn);
            font-size: 15px;
            font-weight: 600;
            color: var(--dark);
            border: 2px solid var(--border);
            transition: all 0.2s ease;
        }

        .area-tag:hover {
            border-color: var(--primary);
            background: var(--primary-lighter);
            transform: translateY(-2px);
        }

        .area-tag svg {
            width: 14px;
            height: 14px;
            color: var(--primary);
        }

        .delivery-note {
            max-width: 680px;
            margin: 0 auto;
            text-align: center;
            padding: 24px 32px;
            background: var(--bg);
            border-radius: var(--radius-card);
            border: 1px solid var(--border);
        }

        .delivery-note p {
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.7;
        }

        .delivery-note strong {
            color: var(--dark);
        }

        .freeship-badge {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            background: var(--accent);
            color: var(--dark);
            padding: 3px 12px;
            border-radius: var(--radius-badge);
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            margin-left: 4px;
        }

        /* ============================================
           FAQ SECTION
           ============================================ */
        .faq-section {
            padding: 80px 24px;
        }

        .faq-list {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            border-bottom: 1px solid var(--border);
        }

        .faq-question {
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 24px 0;
            font-size: 17px;
            font-weight: 600;
            text-align: left;
            color: var(--dark);
            transition: color 0.2s;
        }

        .faq-question:hover {
            color: var(--primary);
        }

        .faq-question:focus-visible {
            outline: 2px solid var(--primary);
            outline-offset: 4px;
        }

        .faq-icon {
            width: 24px;
            height: 24px;
            flex-shrink: 0;
            transition: transform 0.3s ease;
        }

        .faq-item[data-open="true"] .faq-icon {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .faq-item[data-open="true"] .faq-answer {
            max-height: 500px;
        }

        .faq-answer-inner {
            padding-bottom: 24px;
            color: var(--text-secondary);
            font-size: 15px;
            line-height: 1.7;
        }

        /* ============================================
           CTA SECTION
           ============================================ */
        .cta-section {
            padding: 80px 24px 120px;
            background: var(--white);
        }

        .cta-card {
            max-width: 960px;
            margin: 0 auto;
            background: var(--dark);
            border-radius: var(--radius-card);
            overflow: hidden;
            box-shadow: var(--shadow-card);
        }

        .cta-inner {
            padding: 56px;
        }

        .cta-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: start;
        }

        .cta-content h2 {
            font-size: 32px;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 16px;
            line-height: 1.25;
        }

        .cta-content > p {
            color: rgba(255, 255, 255, 0.6);
            font-size: 15px;
            line-height: 1.7;
            margin-bottom: 28px;
        }

        .cta-benefits {
            display: grid;
            gap: 12px;
        }

        .cta-benefit {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 15px;
            color: rgba(255, 255, 255, 0.8);
        }

        .cta-benefit svg {
            width: 16px;
            height: 16px;
            color: var(--accent);
            flex-shrink: 0;
        }

        /* Form */
        .cta-form {
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: var(--radius-card);
            padding: 28px;
        }

        .cta-form h3 {
            color: var(--white);
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 24px;
            text-align: center;
        }

        .form-group {
            margin-bottom: 16px;
        }

        .form-group label {
            display: block;
            font-size: 13px;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.5);
            margin-bottom: 6px;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: var(--radius-btn);
            background: rgba(255, 255, 255, 0.06);
            color: var(--white);
            font-family: 'Inter', sans-serif;
            font-size: 15px;
            transition: border-color 0.2s;
            outline: none;
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: rgba(255, 255, 255, 0.25);
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: var(--primary);
        }

        .form-group select {
            cursor: pointer;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='white'%3E%3Cpath d='M6 8L0 0h12z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 16px center;
        }

        .form-group select option {
            background: var(--dark);
            color: var(--white);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 80px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }

        .btn-submit {
            width: 100%;
            padding: 14px;
            background: var(--primary);
            color: var(--dark);
            border: none;
            border-radius: var(--radius-btn);
            font-family: 'Inter', sans-serif;
            font-size: 15px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.2s;
            margin-top: 4px;
        }

        .btn-submit:hover {
            background: var(--primary-hover);
            transform: translateY(-1px);
        }

        .btn-submit:disabled {
            opacity: 0.7;
            cursor: not-allowed;
            transform: none;
        }

        .form-note {
            text-align: center;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.35);
            margin-top: 12px;
        }

        /* ============================================
           FOOTER
           ============================================ */
        .footer {
            padding: 48px 24px;
            background: var(--dark);
            color: var(--white);
        }

        .footer-inner {
            max-width: var(--max-width);
            margin: 0 auto;
        }

        .footer-top {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 48px;
            margin-bottom: 40px;
        }

        .footer-brand p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.7;
            max-width: 260px;
            margin-top: 16px;
        }

        .footer-brand .logo {
            color: var(--white);
        }

        .footer-col h4 {
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 16px;
            color: rgba(255, 255, 255, 0.5);
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 10px;
        }

        .footer-col ul li a {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
            transition: color 0.2s;
        }

        .footer-col ul li a:hover {
            color: var(--white);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding-top: 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-copy {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.4);
        }

        .footer-socials {
            display: flex;
            gap: 12px;
        }

        .footer-socials a {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s;
        }

        .footer-socials a svg {
            width: 16px;
            height: 16px;
            color: rgba(255, 255, 255, 0.6);
        }

        .footer-socials a:hover {
            background: var(--primary);
            border-color: var(--primary);
        }

        .footer-socials a:hover svg {
            color: var(--white);
        }

        /* ============================================
           TOAST
           ============================================ */
        .toast {
            position: fixed;
            bottom: 24px;
            left: 50%;
            transform: translateX(-50%) translateY(100px);
            background: var(--dark);
            color: var(--white);
            padding: 16px 24px;
            border-radius: 12px;
            font-size: 14px;
            font-weight: 500;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
            z-index: 1000;
            opacity: 0;
            transition: all 0.3s ease;
            max-width: 90%;
            text-align: center;
        }

        .toast.show {
            transform: translateX(-50%) translateY(0);
            opacity: 1;
        }

        /* ============================================
           RESPONSIVE
           ============================================ */
        @media (max-width: 1024px) {
            .hero-inner {
                grid-template-columns: 1fr;
                gap: 48px;
            }

            .hero-content {
                text-align: center;
            }

            .hero-content p {
                margin-left: auto;
                margin-right: auto;
            }

            .hero-buttons {
                justify-content: center;
            }

            .hero-stats {
                justify-content: center;
            }

            .hero-card {
                max-width: 440px;
                margin: 0 auto;
            }

            .usp-grid {
                grid-template-columns: 1fr;
                max-width: 500px;
                margin: 0 auto;
            }

            .steps {
                grid-template-columns: repeat(2, 1fr);
                gap: 40px;
            }

            .steps::before {
                display: none;
            }

            .commitment-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .cta-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .footer-top {
                grid-template-columns: 1fr 1fr;
                gap: 32px;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .nav .btn {
                display: none;
            }

            .menu-toggle {
                display: flex;
            }

            .nav-links.active {
                display: flex;
                flex-direction: column;
                position: absolute;
                top: 72px;
                left: 0;
                right: 0;
                background: var(--white);
                padding: 24px;
                gap: 20px;
                box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            }

            .hero {
                padding: 48px 24px 64px;
            }

            .hero-content h1 {
                font-size: 32px;
            }

            .hero-content p {
                font-size: 16px;
            }

            .hero-stats {
                gap: 24px;
                flex-wrap: wrap;
            }

            .hero-stat-number {
                font-size: 24px;
            }

            .section-header h2 {
                font-size: 28px;
            }

            .steps {
                grid-template-columns: 1fr;
            }

            .cta-inner {
                padding: 32px 20px;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .footer-top {
                grid-template-columns: 1fr;
                gap: 28px;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 16px;
                text-align: center;
            }

            .carousel-btn-prev {
                left: 8px;
            }

            .carousel-btn-next {
                right: 8px;
            }
        }

        @media (max-width: 480px) {
            .hero-buttons {
                flex-direction: column;
                align-items: stretch;
            }

            .delivery-areas {
                gap: 8px;
            }

            .area-tag {
                padding: 10px 16px;
                font-size: 14px;
            }
        }
    