/* CSS Design System - Garasiferwid Legalitas */

:root {
    /* Color Palette */
    --primary: #059669; /* Emerald 600 */
    --primary-dark: #047857; /* Emerald 700 */
    --primary-darker: #065f46; /* Emerald 800 */
    --primary-light: #ecfdf5; /* Emerald 50 */
    
    --accent: #d97706; /* Amber 600 */
    --accent-hover: #b45309; /* Amber 700 */
    --accent-light: #fffbeb; /* Amber 50 */
    
    --dark: #0f172a; /* Slate 900 */
    --gray-700: #334155; /* Slate 700 */
    --gray-600: #475569; /* Slate 600 */
    --gray-500: #64748b; /* Slate 500 */
    --gray-100: #f1f5f9; /* Slate 100 */
    --white: #ffffff;
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing & Borders */
    --radius-lg: 16px;
    --radius-md: 12px;
    --radius-sm: 8px;
    --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 10px 20px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Reset Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--white);
    color: var(--gray-700);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--dark);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 96px 0;
}

.bg-light {
    background-color: var(--gray-100);
}

.bg-primary {
    background-color: var(--primary-darker);
}

.text-white {
    color: var(--white);
}

.text-white-muted {
    color: rgba(255, 255, 255, 0.8);
}

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

.mt-10 { margin-top: 10px; }
.mb-30 { margin-bottom: 30px; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    border-radius: var(--radius-sm);
    transition: var(--transition-base);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(5, 150, 105, 0.4);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(5, 150, 105, 0.5);
}

.btn-accent {
    background-color: var(--accent);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(217, 119, 6, 0.4);
}

.btn-accent:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(217, 119, 6, 0.5);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.125rem;
    border-radius: var(--radius-md);
}

.btn-wa-nav {
    background-color: #25d366;
    color: var(--white);
    padding: 8px 20px;
    font-size: 0.95rem;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
}

.btn-wa-nav:hover {
    background-color: #128c7e;
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.4);
}

.btn-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

/* Header & Nav */
.main-header {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition-base);
}

.header-container {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    width: 32px;
    height: 32px;
    color: var(--primary);
}

.logo-text {
    font-family: var(--font-heading);
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-main {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--dark);
}

.logo-sub {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 2px;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--gray-600);
    transition: var(--transition-base);
    position: relative;
    padding: 8px 0;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition-base);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active-link {
    color: var(--primary);
}

.nav-link.active-link::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-toggle .bar {
    width: 28px;
    height: 3px;
    background-color: var(--dark);
    border-radius: 2px;
    transition: var(--transition-base);
}

/* Hero Section */
.hero-section {
    padding: 160px 0 96px;
    background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 50%, #fffbeb 100%);
    position: relative;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.badge {
    display: inline-flex;
    background-color: var(--primary-light);
    color: var(--primary-dark);
    padding: 6px 16px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 20px;
    border: 1px solid rgba(5, 150, 105, 0.15);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 24px;
}

.text-gradient {
    background: linear-gradient(to right, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.h-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--gray-700);
}

.h-feat-icon {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

/* Hero Visual & Mockup */
.hero-visual {
    display: flex;
    justify-content: center;
    position: relative;
}

.halal-card-mockup {
    width: 340px;
    height: 460px;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    padding: 32px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.halal-badge-badge {
    background-color: var(--primary-light);
    border: 2px solid var(--primary);
    border-radius: var(--radius-md);
    color: var(--primary-dark);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    padding: 16px;
    text-align: center;
    margin-bottom: 40px;
    box-shadow: 0 4px 10px rgba(5, 150, 105, 0.1);
}

.badge-icon {
    font-size: 1.2rem;
    margin-right: 4px;
}

.card-line {
    height: 8px;
    background-color: var(--gray-100);
    border-radius: 4px;
    margin-bottom: 16px;
}

.card-line.long { width: 100%; }
.card-line.medium { width: 75%; }
.card-line.short { width: 45%; }

/* Pulsing rings decoration */
.pulse-container {
    position: absolute;
    bottom: 60px;
    right: 60px;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pulse-dot {
    width: 20px;
    height: 20px;
    background-color: var(--primary);
    border-radius: 50%;
    z-index: 2;
}

.pulse-ring {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    animation: pulse 2s infinite ease-out;
    opacity: 0;
}

.pulse-ring.delay {
    animation-delay: 0.6s;
}

@keyframes pulse {
    0% {
        transform: scale(0.5);
        opacity: 0.8;
    }
    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

/* Sections Header */
.section-header {
    text-align: center;
    margin-bottom: 64px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-tag {
    font-family: var(--font-heading);
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--gray-600);
}

/* About Grid */
.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.about-card {
    background-color: var(--white);
    border: 1px solid var(--gray-100);
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.about-icon-container {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background-color: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.about-icon {
    width: 28px;
    height: 28px;
}

.about-card h3 {
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.about-card p {
    color: var(--gray-600);
    font-size: 0.95rem;
}

/* Keunggulan 2 Column */
.grid-2col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 64px;
    align-items: center;
}

.visual-img-placeholder {
    display: flex;
    justify-content: center;
}

.graphic-element {
    background: linear-gradient(135deg, #ffffff 0%, #ecfdf5 100%);
    border: 1px solid rgba(5, 150, 105, 0.1);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 440px;
    height: 360px;
    position: relative;
    box-shadow: var(--shadow-md);
    padding: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circular-progress {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: conic-gradient(var(--primary) 360deg, var(--gray-100) 0);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: var(--shadow-md);
}

.circular-progress::before {
    content: '';
    position: absolute;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background-color: var(--white);
}

.progress-val {
    position: relative;
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-dark);
    z-index: 1;
}

.progress-lbl {
    position: relative;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-500);
    z-index: 1;
}

.badge-item {
    position: absolute;
    background-color: var(--white);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    top: 40px;
    left: -20px;
    border: 1px solid rgba(0,0,0,0.02);
}

.badge-item.offset {
    top: auto;
    bottom: 40px;
    left: auto;
    right: -20px;
}

.badge-icon-item {
    width: 32px;
    height: 32px;
}

.badge-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.badge-icon.green {
    background-color: var(--primary-light);
    color: var(--primary);
}

.badge-icon.gold {
    background-color: var(--accent-light);
    color: var(--accent);
}

.badge-item div {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.badge-item strong {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--dark);
}

.badge-item small {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.benefit-item {
    display: flex;
    gap: 24px;
}

.b-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: rgba(5, 150, 105, 0.2);
    line-height: 1;
}

.benefit-item h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.benefit-item p {
    color: var(--gray-600);
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: stretch;
}

.pricing-card {
    background-color: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 48px 36px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition-base);
}

.pricing-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.pricing-card.highlighted {
    border: 2px solid var(--accent);
    box-shadow: var(--shadow-lg);
}

.card-badge {
    position: absolute;
    top: 20px;
    right: 36px;
    background-color: var(--accent-light);
    color: var(--accent-hover);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
    padding: 4px 12px;
    border-radius: 50px;
}

.p-title {
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.p-price {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 16px;
    line-height: 1;
}

.p-period {
    font-size: 0.9rem;
    color: var(--gray-500);
    font-weight: 500;
}

.p-desc {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin-bottom: 32px;
    min-height: 60px;
}

.p-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
    flex-grow: 1;
}

.p-features li {
    font-size: 0.925rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.p-features li.disabled {
    color: var(--gray-500);
    text-decoration: line-through;
}

.check-icon {
    color: var(--primary);
    font-weight: 700;
}

.cross-icon {
    color: #ef4444;
    font-weight: 700;
}

.note {
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-top: 12px;
    text-align: center;
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 28px;
    width: 4px;
    background-color: var(--primary-light);
}

.timeline-step {
    position: relative;
    padding-left: 80px;
    margin-bottom: 48px;
}

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

.t-step-num {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background-color: var(--primary);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(5, 150, 105, 0.3);
    border: 4px solid var(--white);
    z-index: 1;
}

.t-step-content {
    background-color: var(--white);
    padding: 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.01);
}

.t-step-content h4 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.t-step-content p {
    color: var(--gray-600);
}

/* FAQ Accordion */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition-base);
}

.faq-item:hover {
    border-color: var(--primary-light);
}

.faq-trigger {
    width: 100%;
    background: none;
    border: none;
    padding: 24px 32px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    cursor: pointer;
    gap: 20px;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary);
    transition: var(--transition-base);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: #f8fafc;
}

.faq-content p {
    padding: 0 32px 24px;
    color: var(--gray-600);
    font-size: 0.95rem;
}

.faq-item.active .faq-content {
    max-height: 300px; /* Adjust according to content length */
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-item.active {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-md);
}

/* CTA / Banner */
.cta-box {
    margin-top: 40px;
}

.cta-subtext {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 16px;
}

.badge-accent {
    background-color: rgba(217, 119, 6, 0.2);
    color: #fbbf24;
    border: 1px solid rgba(217, 119, 6, 0.3);
}

/* Footer Section */
.main-footer {
    background-color: var(--dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 40px;
    border-top: 4px solid var(--primary);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 64px;
    margin-bottom: 64px;
}

.footer-brand h4,
.footer-links h5,
.footer-contacts h5 {
    color: var(--white);
    margin-bottom: 24px;
}

.footer-brand p {
    font-size: 0.9rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.9rem;
    transition: var(--transition-base);
}

.footer-links a:hover {
    color: var(--primary-light);
    padding-left: 4px;
}

.footer-contacts p {
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    text-align: center;
    font-size: 0.85rem;
}

.footer-disclaimer {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
    max-width: 700px;
}

/* Floating WA Button */
.floating-wa {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition-base);
    animation: wa-pulse 2s infinite;
}

.floating-wa:hover {
    transform: scale(1.1);
    background-color: #128c7e;
}

.floating-wa svg {
    width: 32px;
    height: 32px;
}

@keyframes wa-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Region Grid for SEO */
.regions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.region-card {
    background-color: var(--white);
    border: 1px solid var(--gray-100);
    padding: 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.region-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.region-card h5 {
    font-size: 1.15rem;
    color: var(--primary-dark);
    margin-bottom: 16px;
    border-bottom: 2px solid var(--primary-light);
    padding-bottom: 8px;
}

.region-card p {
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* Responsive Styles */

@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.8rem;
    }
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        max-width: 500px;
        margin: 0 auto;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        max-width: 500px;
        margin: 0 auto;
    }
    .regions-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        max-width: 500px;
        margin: 0 auto;
    }
    .grid-2col {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .visual-img-placeholder {
        order: 2;
    }
}

@media (max-width: 768px) {
    .logo-main {
        font-size: 0.95rem;
        max-width: 180px;
        line-height: 1.1;
    }
    .logo-sub {
        font-size: 0.55rem;
        letter-spacing: 0.5px;
    }
    .section {
        padding: 64px 0;
    }
    .hero-section {
        padding: 120px 0 64px;
    }
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .halal-card-mockup {
        width: 100%;
        max-width: 340px;
        height: 380px;
        padding: 24px;
    }
    .halal-badge-badge {
        margin-bottom: 24px;
    }
    
    /* Navigation Drawer Menu */
    .mobile-toggle {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--white);
        padding: 40px 24px;
        border-top: 1px solid rgba(0,0,0,0.05);
        transform: translateX(-100%);
        transition: transform 0.4s ease;
        z-index: 998;
    }
    
    .main-nav.active {
        transform: translateX(0);
    }
    
    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        width: 100%;
    }
    
    .nav-link {
        font-size: 1.15rem;
        width: 100%;
        display: block;
    }
    
    .btn-wa-nav {
        width: 100%;
        padding: 12px;
        text-align: center;
        margin-top: 16px;
    }
    
    /* Mobile Toggle active state */
    .mobile-toggle.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .mobile-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    .mobile-toggle.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-actions {
        flex-direction: column;
        gap: 12px;
    }
    .timeline::before {
        left: 20px;
    }
    .timeline-step {
        padding-left: 54px;
    }
    .t-step-num {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }
    .t-step-content {
        padding: 20px;
    }
    .faq-trigger {
        padding: 20px;
        font-size: 1rem;
    }
    .faq-content p {
        padding: 0 20px 20px;
    }
    .floating-wa {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    .floating-wa svg {
        width: 26px;
        height: 26px;
    }
}
