/* ==========================================================================
   1. VARIABLES & THEME SETUP
   ========================================================================== */
:root {
    /* --- Brand Colors --- */
    --emerald-deep: #022c20;
    --emerald-main: #084734;
    --lime-neon: #cef17b;
    --lime-soft: #e2f5b4;
    --white: #ffffff;
    
    /* --- Theme Colors (Light Default) --- */
    --bg-main: #ffffff;
    --bg-soft: #f8fafc;
    --bg-card: #ffffff;
    --text-main: #0a1f18;
    --text-muted: #5c6b64;
    --border-color: rgba(0,0,0,0.08);
    --input-bg: #f4f6f8;
    
    /* --- Navigation --- */
    --nav-scrolled-bg: rgba(255, 255, 255, 0.9);
    --nav-text: rgba(255,255,255,0.8);
    --nav-scrolled-text: #0a1f18;

    /* --- Shadows & Effects --- */
    --shadow-card: 0 10px 30px rgba(0,0,0,0.05);
    --shadow-hover: 0 20px 40px rgba(0,0,0,0.08);
    --ease-smooth: cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* --- Dark Mode Overrides --- */
[data-theme="dark"] {
    --bg-main: #021a14;
    --bg-soft: #05261d;
    --bg-card: #083328;
    --text-main: #e2e8f0;
    --text-muted: #94a3b8;
    --border-color: rgba(255,255,255,0.1);
    --input-bg: #0b4032;
    --nav-scrolled-bg: rgba(2, 26, 20, 0.9);
    --nav-scrolled-text: #e2e8f0;
    --shadow-card: 0 10px 30px rgba(0,0,0,0.2);
}

/* ==========================================================================
   2. RESET & GLOBAL UTILITIES
   ========================================================================== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: 'Plus Jakarta Sans', sans-serif;
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* --- Utilities --- */
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.pt-0 { padding-top: 0 !important; }
.mt-4 { margin-top: 2rem !important; }
.bg-soft { background-color: var(--bg-soft); }
.bg-dark { background-color: var(--emerald-deep); }
.center-text { text-align: center; }
.text-lime { color: var(--lime-neon); }
.text-white { color: var(--white); }
.text-muted-light { color: rgba(255, 255, 255, 0.6); }
.bawahbanget { margin-bottom: 1.5rem; }
.atas { margin-top: 1.5rem; }

.text-gradient {
    background: linear-gradient(135deg, var(--lime-neon), var(--white));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.noise-overlay {
    position: fixed; inset: 0; z-index: 9999; opacity: 0.4; pointer-events: none;
    background: url('data:image/svg+xml;utf8,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noise"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noise)" opacity="0.05"/%3E%3C/svg%3E');
}

/* ==========================================================================
   3. GLOBAL COMPONENTS (Buttons, Inputs, Checkbox)
   ========================================================================== */

/* --- Buttons --- */
.btn-nav, .btn-primary-glow, .btn-submit, .btn-dark, .btn-outline-light, .view-project-btn, .btn-primary {
    border-radius: 100px; font-weight: 700; text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    display: inline-flex; align-items: center; justify-content: center; cursor: pointer; border: none;
}
.btn-nav { padding: 10px 24px; background: var(--lime-neon); color: var(--emerald-deep); }
.btn-nav:hover { transform: scale(1.05); }

.btn-primary-glow {
    background: var(--lime-neon); color: var(--emerald-deep); padding: 16px 36px; border-radius: 12px;
    box-shadow: 0 0 30px rgba(206, 241, 123, 0.3);
}
.btn-primary-glow:hover { transform: translateY(-5px); box-shadow: 0 10px 40px rgba(206, 241, 123, 0.5); }

.btn-submit, .btn-primary { background: var(--emerald-deep); color: white; padding: 16px 40px; border-radius: 12px; }
.btn-submit:hover, .btn-primary:hover { background: var(--emerald-main); }
[data-theme="dark"] .btn-submit, [data-theme="dark"] .btn-primary { background: var(--lime-neon); color: var(--emerald-deep); }

.full-width { width: 100%; display: block; text-align: center; }
.btn-outline-light { border: 1px solid rgba(255,255,255,0.2); color: white; padding: 14px 0; border-radius: 12px; }
.btn-outline-light:hover { background: white; color: var(--emerald-deep); }
.btn-dark { background: var(--emerald-deep); color: white; padding: 14px 0; border-radius: 12px;}
.btn-dark:hover { background: #000; }

.btn-text {
    font-weight: 700; color: var(--text-main); 
    display: inline-flex; align-items: center; gap: 10px;
    transition: gap 0.3s; text-decoration: none; cursor: pointer;
}
.btn-text:hover { gap: 15px; color: var(--emerald-main); }
[data-theme="dark"] .btn-text:hover { color: var(--lime-neon); }

/* --- Inputs & Forms --- */
input, select, textarea {
    width: 100%; padding: 14px 16px; border-radius: 12px;
    border: 1px solid var(--border-color); background: var(--input-bg);
    color: var(--text-main); font-family: inherit; font-size: 0.95rem;
    outline: none; transition: 0.3s;
}
input:focus, select:focus, textarea:focus {
    background: var(--bg-card); border-color: var(--emerald-main);
    box-shadow: 0 4px 15px rgba(8, 71, 52, 0.1);
}
[data-theme="dark"] input:focus { border-color: var(--lime-neon); }

/* --- Custom Checkbox & Terms Style --- */
.form-options { display: flex; justify-content: space-between; align-items: center; margin-bottom: 25px; }
.custom-checkbox {
    display: flex; align-items: center; position: relative;
    padding-left: 30px; margin-bottom: 0; cursor: pointer;
    font-size: 0.9rem; font-weight: 500; color: var(--text-muted);
    user-select: none; line-height: 1.4;
}
.custom-checkbox input { position: absolute; opacity: 0; cursor: pointer; height: 0; width: 0; }
.checkmark {
    position: absolute; top: 50%; left: 0; transform: translateY(-50%);
    height: 20px; width: 20px;
    background-color: var(--bg-soft);
    border: 1px solid var(--border-color);
    border-radius: 6px; transition: all 0.2s ease;
}
.terms-box .checkmark { top: 0; transform: translateY(2px); }

.custom-checkbox:hover input ~ .checkmark { border-color: var(--emerald-main); }
.custom-checkbox input:checked ~ .checkmark { background-color: var(--emerald-main); border-color: var(--emerald-main); }
.checkmark:after {
    content: ""; position: absolute; display: none;
    left: 7px; top: 3px; width: 5px; height: 10px;
    border: solid white; border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.custom-checkbox input:checked ~ .checkmark:after { display: block; }

.text-link { color: var(--emerald-main); text-decoration: none; font-weight: 700; transition: 0.3s; }
.text-link:hover { text-decoration: underline; }

/* Checkbox Dark Mode */
[data-theme="dark"] .custom-checkbox { color: var(--text-muted); }
[data-theme="dark"] .custom-checkbox input:checked ~ .checkmark { background-color: var(--lime-neon); border-color: var(--lime-neon); }
[data-theme="dark"] .custom-checkbox .checkmark:after { border-color: var(--emerald-deep); }
[data-theme="dark"] .text-link { color: var(--lime-neon); }


/* ==========================================================================
   4. LAYOUT (Navbar, Footer, Logo)
   ========================================================================== */

/* --- Navbar --- */
.navbar {
    position: fixed; top: 0; width: 100%; z-index: 1000; padding: 24px 0;
    transition: all 0.4s ease; background: transparent;
}
.navbar.scrolled {
    background: var(--nav-scrolled-bg); backdrop-filter: blur(12px);
    padding: 16px 0; border-bottom: 1px solid var(--border-color);
}
.nav-container { display: flex; align-items: center; justify-content: space-between; }
.nav-right-wrapper { display: flex; align-items: center; gap: 24px; } 
.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; }

.nav-link { color: var(--nav-text); text-decoration: none; font-weight: 500; transition: 0.3s; }
.navbar.scrolled .nav-link { color: var(--nav-scrolled-text); }
.nav-link:hover { color: var(--lime-neon); }
.navbar.scrolled .nav-link:hover { color: var(--emerald-main); }
[data-theme="dark"] .nav-link:hover { color: var(--lime-neon); }

/* --- Logo (Used in Nav & Footer) --- */
.logo, .footer-logo { 
    font-weight: 800; font-size: 1.5rem; color: var(--white); 
    text-decoration: none; transition: 0.3s;
    display: flex; align-items: center; gap: 12px; 
}
.logo-img {
    width: 40px; height: 40px; border-radius: 8px; object-fit: cover;
    background-color: var(--white); 
}
.logo .dot, .footer-logo .dot { color: var(--lime-neon); }

/* Navbar Logo Scrolled State */
.navbar.scrolled .logo { color: var(--nav-scrolled-text); }
[data-theme="dark"] .navbar.scrolled .logo { color: var(--white); }

/* --- Menu & User Dropdown --- */
.theme-btn, .profile-icon-btn {
    background: transparent; border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%; width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; color: var(--white); transition: 0.3s;
}
.navbar.scrolled .theme-btn, .navbar.scrolled .profile-icon-btn { 
    border-color: var(--border-color); color: var(--text-main); 
}
[data-theme="dark"] .navbar.scrolled .theme-btn { color: var(--white); border-color: rgba(255,255,255,0.2); }

.icon-sun { display: none; } 
[data-theme="dark"] .icon-sun { display: block; }
[data-theme="dark"] .icon-moon { display: none; }

.user-profile-wrapper { position: relative; display: flex; align-items: center; }
.user-dropdown {
    display: none; position: absolute; top: 50px; right: 0;
    background: var(--bg-card); min-width: 150px;
    box-shadow: var(--shadow-card); border-radius: 10px; padding: 10px 0;
    border: 1px solid var(--border-color); z-index: 1001;
}
.user-dropdown.active { display: block; }
.user-info { padding: 0 15px 10px; font-weight: bold; border-bottom: 1px solid var(--border-color); }
.dropdown-link { display: block; padding: 8px 15px; text-decoration: none; color: var(--text-muted); transition: 0.2s; }
.dropdown-link:hover { background: var(--bg-soft); color: var(--emerald-main); }
.text-red { color: #e74c3c; }

/* --- Hamburger Menu --- */
.hamburger { 
    display: none; cursor: pointer; z-index: 1100; margin-left: 15px;
}
.bar { 
    display: block; width: 25px; height: 3px; margin: 5px auto; 
    transition: all 0.3s ease-in-out; background-color: var(--white); border-radius: 2px;
}
.navbar.scrolled .bar { background-color: var(--nav-scrolled-text); }
[data-theme="dark"] .navbar.scrolled .bar { background-color: var(--white); }

/* Hamburger Active State */
.hamburger.active .bar:nth-child(2) { opacity: 0; }
.hamburger.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* --- Footer --- */
.footer { background-color: #011c14; color: #e2e8f0; padding: 80px 0 30px; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 60px; margin-bottom: 60px; }
.footer-logo { margin-bottom: 20px; }

.footer-col h4 { color: var(--lime-neon); margin-bottom: 20px; }
.footer-col ul { list-style: none; }
.footer-col ul li a { color: rgba(255,255,255,0.7); text-decoration: none; transition: 0.3s; display: block; margin-bottom: 10px; }
.footer-col ul li a:hover { color: var(--lime-neon); padding-left: 5px; }

.social-links { display: flex; gap: 15px; margin-top: 20px; }
.social-icon { width: 40px; height: 40px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; justify-content: center; align-items: center; color: white; text-decoration: none; transition: 0.3s; }
.social-icon:hover { background: var(--lime-neon); color: var(--emerald-deep); }

.newsletter-form { display: flex; position: relative; margin-top: 15px; }
.newsletter-form input { padding-right: 50px; background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.1); color: white; }
.newsletter-form button { position: absolute; right: 5px; top: 5px; bottom: 5px; width: 40px; background: var(--lime-neon); color: var(--emerald-deep); border: none; border-radius: 8px; cursor: pointer; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 30px; text-align: center; font-size: 0.85rem; opacity: 0.6; display: flex; justify-content: space-between; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: inherit; text-decoration: none; }


/* ==========================================================================
   5. PAGE SECTIONS & SPECIFICS
   ========================================================================== */

/* --- Hero Sections --- */
.hero, .page-hero {
    position: relative; background: var(--emerald-deep); color: var(--white);
    padding-top: 150px; padding-bottom: 100px;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center; overflow: hidden;
}
.hero { min-height: 100vh; padding-top: 80px; }
.project-hero { padding-bottom: 120px; } 

.hero-title { font-size: clamp(3rem, 6vw, 5.5rem); line-height: 1.05; font-weight: 800; margin-bottom: 24px; }
.hero-desc { font-size: 1.25rem; opacity: 0.7; max-width: 600px; margin: 0 auto 40px; }
.badge-pill { 
    display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.08); 
    border: 1px solid rgba(255,255,255,0.1); padding: 8px 16px; border-radius: 50px; 
    font-size: 0.85rem; color: var(--lime-neon); margin-bottom: 30px; 
}
.indicator { width: 8px; height: 8px; background: var(--lime-neon); border-radius: 50%; box-shadow: 0 0 10px var(--lime-neon); }

.hero-actions { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.trusted-by { display: flex; align-items: center; gap: 12px; font-size: 0.9rem; color: rgba(255,255,255,0.6); margin-top: 10px; }
.client-avatars { display: flex; align-items: center; }
.avt {
    width: 32px; height: 32px; border-radius: 50%;
    background: var(--white); border: 2px solid var(--emerald-deep);
    color: var(--emerald-deep); font-weight: 800; font-size: 0.75rem;
    display: flex; align-items: center; justify-content: center;
    margin-left: -10px; position: relative;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
.avt:first-child { margin-left: 0; z-index: 3; }
.avt:nth-child(2) { z-index: 2; }
.avt:nth-child(3) { z-index: 1; }

/* Aurora Animation */
.aurora-bg { position: absolute; inset: 0; filter: blur(80px); opacity: 0.6; pointer-events: none; }
.aurora-blob { position: absolute; border-radius: 50%; animation: float 10s infinite alternate; }
.blob-1 { width: 500px; height: 500px; background: var(--emerald-main); top: -10%; left: -10%; }
.blob-2 { width: 400px; height: 400px; background: var(--lime-neon); bottom: 10%; right: -5%; opacity: 0.4; }
.blob-3 { width: 300px; height: 300px; background: #0b3d2e; top: 40%; left: 40%; }
@keyframes float { to { transform: translate(30px, -30px) scale(1.1); } }

/* --- About & Bento Grid --- */
.about-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-visual { position: relative; height: 500px; }
.visual-card.main-img { width: 90%; height: 100%; background: #022c20 url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?w=800') center/cover; border-radius: 24px; position: relative; }
.overlay-gradient { position: absolute; inset: 0; background: linear-gradient(to top, rgba(2, 44, 32, 0.8), transparent); border-radius: 24px; }
.card-label { position: absolute; top: 20px; left: 20px; background: rgba(255,255,255,0.1); backdrop-filter: blur(5px); padding: 5px 15px; border-radius: 50px; font-size: 0.8rem; color: white; border: 1px solid rgba(255,255,255,0.2); }
.visual-card.float-stat { position: absolute; bottom: 40px; right: 0; background: var(--bg-card); padding: 20px 30px; border-radius: 16px; box-shadow: var(--shadow-card); display: flex; align-items: center; gap: 15px; border-left: 4px solid var(--lime-neon); }
.icon-wrap { font-size: 1.5rem; }

.lead-text { font-size: 1.15rem; font-weight: 600; margin-bottom: 20px; }
.stats-row { display: flex; gap: 30px; margin-bottom: 40px; border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); padding: 20px 0; }
.stat-box { display: flex; flex-direction: column; }
.stat-box .num { font-size: 2.5rem; font-weight: 800; color: var(--emerald-main); line-height: 1; }
[data-theme="dark"] .stat-box .num { color: var(--lime-neon); }
.highlight-marker { position: relative; display: inline-block; z-index: 1; }
.highlight-marker::after { content: ''; position: absolute; bottom: 2px; left: 0; width: 100%; height: 8px; background: var(--lime-neon); opacity: 0.6; z-index: -1; }

/* Bento Specifics */
.intro-bento { display: grid; grid-template-columns: 1.5fr 1fr 1fr; grid-template-rows: auto auto; gap: 24px; max-width: 1100px; margin: 0 auto; }
.bento-card { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 24px; padding: 36px; transition: 0.3s; position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: space-between; }
.bento-card:hover { transform: translateY(-5px); border-color: var(--lime-neon); }

.main-narrative { grid-column: 1 / 2; grid-row: 1 / 3; }
.stat-lime { grid-column: 2 / 4; background: var(--lime-neon); color: var(--emerald-deep); display: flex; flex-direction: row; align-items: center; gap: 24px; }
.stat-dark { grid-column: 2 / 3; background: var(--emerald-deep); color: white; }

.solution-box { grid-column: 3 / 4; background: linear-gradient(135deg, var(--bg-soft) 0%, var(--bg-card) 100%); position: relative; overflow: hidden; }
.solution-content { position: relative; z-index: 2; }
.solution-icon { 
    position: absolute; bottom: -20px; right: -20px; width: 100px; height: 100px; 
    color: var(--emerald-main); opacity: 0.1; transform: rotate(-15deg); transition: 0.4s ease;
}
.bento-card:hover .solution-icon { transform: rotate(0) scale(1.1); opacity: 0.2; }
.solution-icon svg { width: 100%; height: 100%; }

.bento-tag { font-size: 0.75rem; font-weight: 700; color: var(--emerald-main); letter-spacing: 0.1em; margin-bottom: 20px; display: block; }
[data-theme="dark"] .bento-tag { color: var(--lime-neon); }
.bento-divider { height: 1px; background: var(--border-color); margin: 24px 0; width: 100%; }
.small-note { font-size: 0.9rem !important; font-style: italic; opacity: 0.8; }
.bento-card h2 { font-size: 2.2rem; line-height: 1.1; margin-bottom: 20px; color: var(--text-main); }
.stat-lime h3 { font-size: 3rem; margin: 0; }
.stat-dark h3 { font-size: 2.5rem; margin: 15px 0 5px; color: var(--lime-neon); }

.bento-icon-box { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.dark-icon { background: rgba(0,0,0,0.1); } .lime-icon { background: rgba(255,255,255,0.1); color: var(--lime-neon); }

/* --- Partner Logos --- */
.partner-section { padding: 60px 0; border-bottom: 1px solid var(--border-color); overflow: hidden; }
.partner-title { text-align: center; font-size: 0.9rem; font-weight: 600; text-transform: uppercase; color: var(--text-muted); margin-bottom: 40px; }
.logo-slider { position: relative; max-width: 1000px; margin: 0 auto; overflow: hidden; }
.logo-track { display: flex; width: max-content; animation: scrollLogos 30s linear infinite; gap: 60px; }
.logo-item img { height: 40px; filter: grayscale(100%) opacity(0.6); transition: 0.3s; }
.logo-item img:hover { filter: grayscale(0%) opacity(1); }
@keyframes scrollLogos { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* --- Timeline --- */
.timeline-container { position: relative; max-width: 1000px; margin: 60px auto 0; padding: 20px 0; }
.timeline-line { position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; background: var(--border-color); transform: translateX(-50%); }
.timeline-item { width: 50%; margin-bottom: 50px; position: relative; padding-right: 50px; text-align: right; }
.timeline-item.right { margin-left: 50%; padding-left: 50px; padding-right: 0; text-align: left; }
.timeline-marker { position: absolute; top: 0; right: -25px; width: 50px; height: 50px; background: var(--bg-main); border: 3px solid var(--emerald-main); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; z-index: 2; transition: all 0.3s ease; }
[data-theme="dark"] .timeline-marker { border-color: var(--lime-neon); }

.timeline-item:hover .timeline-marker { background: var(--lime-neon); border-color: var(--emerald-deep); transform: scale(1.1); color: var(--emerald-deep); }
.timeline-item.right .timeline-marker { left: -25px; right: auto; }
.timeline-content { background: var(--bg-card); padding: 30px; border-radius: 16px; border: 1px solid var(--border-color); box-shadow: var(--shadow-card); position: relative; transition: transform 0.3s ease, border-color 0.3s; }
.timeline-item:hover .timeline-content { transform: translateY(-5px); border-color: var(--lime-neon); }

.timeline-content::before { content: ''; position: absolute; top: 20px; right: -10px; width: 20px; height: 20px; background: var(--bg-card); transform: rotate(45deg); border-top: 1px solid var(--border-color); border-right: 1px solid var(--border-color); }
.timeline-item.right .timeline-content::before { left: -10px; right: auto; border-right: none; border-top: none; border-bottom: 1px solid var(--border-color); border-left: 1px solid var(--border-color); }
.highlight-step { background: var(--emerald-deep); color: white; }
.highlight-step h4 { color: var(--lime-neon); }
.highlight-step::before { background: var(--emerald-deep); border-color: transparent; }

/* --- Pricing --- */
.pricing-wrapper { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 50px; }
.pricing-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); padding: 40px; border-radius: 20px; color: white; transition: 0.3s; }
[data-theme="dark"] .pricing-card { background: var(--bg-card); }
.pricing-card:hover { transform: translateY(-10px); }
.pricing-card.featured { background: var(--lime-neon); color: var(--emerald-deep); border: none; transform: scale(1.05); position: relative; }

/* Pricing Price Style */
.pricing-card .price { 
    font-size: 3.5rem; font-weight: 800; margin-bottom: 30px;
    display: flex; align-items: baseline; justify-content: center; gap: 8px;
    line-height: 1; color: var(--white);
}
.pricing-card .price .freq {
    font-size: 1rem; font-weight: 500; color: rgba(255,255,255,0.6);
    text-transform: uppercase; letter-spacing: 1px;
}

/* Featured Price Text Color */
.pricing-card.featured .price { color: var(--emerald-deep); }
.pricing-card.featured .price .freq { color: rgba(2, 44, 32, 0.6); }

.features-list { list-style: none; margin-bottom: 30px; }
.features-list li { margin-bottom: 12px; display: flex; gap: 10px; }
.features-list li::before { content: "✓"; color: var(--lime-neon); }
.pricing-card.featured .features-list li::before { color: var(--emerald-deep); }
.tag { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--emerald-deep); color: var(--lime-neon); padding: 4px 12px; border-radius: 50px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; }

/* --- Portfolio Grid (Home/Project) --- */
.portfolio-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 30px; }
.project-card { cursor: pointer; }
.project-thumb { height: 300px; border-radius: 20px; margin-bottom: 20px; display: flex; align-items: flex-end; padding: 20px; position: relative; overflow: hidden; transition: transform 0.4s ease; }
.project-card:hover .project-thumb { transform: scale(0.98); }

.project-cat { background: white; padding: 8px 16px; border-radius: 50px; font-size: 0.8rem; font-weight: 700; color: var(--text-main); box-shadow: var(--shadow-card); }
.project-info h5 { font-size: 1.5rem; margin-bottom: 8px; color: var(--text-main); }
.project-info p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 15px; }
.link-arrow { color: var(--emerald-main); font-weight: 700; font-size: 0.9rem; text-decoration: none; }
[data-theme="dark"] .link-arrow { color: var(--lime-neon); }

/* --- FAQ --- */
.split-layout-faq { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: start; }
.accordion-item { background: var(--bg-card); border-radius: 12px; margin-bottom: 15px; border: 1px solid var(--border-color); overflow: hidden; }
.accordion-header { width: 100%; padding: 20px 24px; background: transparent; border: none; display: flex; justify-content: space-between; align-items: center; font-weight: 600; cursor: pointer; color: var(--text-main); }
.accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; background: var(--bg-soft); }
.accordion-content p { padding: 20px 24px; color: var(--text-muted); }
.accordion-header.active { color: var(--emerald-main); }
[data-theme="dark"] .accordion-header.active { color: var(--lime-neon); }

/* --- Values Grid (About) --- */
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 30px; margin-top: 40px; }
.value-card { background: var(--bg-card); padding: 30px; border-radius: 20px; border: 1px solid var(--border-color); transition: 0.3s; }
.value-card:hover { transform: translateY(-5px); border-color: var(--lime-neon); }
.v-icon-box { width: 60px; height: 60px; background: var(--bg-soft); border-radius: 16px; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; color: var(--emerald-deep); }
[data-theme="dark"] .v-icon-box { background: rgba(255,255,255,0.05); color: var(--lime-neon); }
[data-theme="dark"] .v-icon-box svg { stroke: var(--lime-neon); }

/* --- Visi Misi (About) --- */
.vision-mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 50px; }
.vm-card { padding: 50px; border-radius: 32px; position: relative; overflow: hidden; transition: transform 0.3s ease; }
.vm-card:hover { transform: translateY(-8px); }
.vm-card.dark { background: var(--emerald-deep); color: white; box-shadow: 0 20px 50px rgba(0,0,0,0.3); }
.vm-card.light { background: var(--bg-card); border: 1px solid var(--border-color); color: var(--text-main); box-shadow: var(--shadow-card); }
.vm-icon { margin-bottom: 30px; padding: 15px; border-radius: 16px; width: fit-content; }
.vm-card.dark .vm-icon { background: rgba(255,255,255,0.1); color: var(--lime-neon); }
.vm-card.light .vm-icon { background: var(--bg-soft); color: var(--emerald-deep); }
.vm-card h3 { font-size: 2rem; margin-bottom: 20px; }
.vm-card p { font-size: 1.05rem; line-height: 1.7; opacity: 0.9; }
.mission-list { list-style: none; margin-top: 20px; }
.mission-list li { margin-bottom: 15px; display: flex; gap: 12px; align-items: center; }
.mission-list li::before { content: ""; width: 8px; height: 8px; background: var(--emerald-main); border-radius: 50%; display: block; }
.vm-card.dark .mission-list li::before { background: var(--lime-neon); }

/* --- Standard Section (About) --- */
.standard-wrapper { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: center; }
.standard-grid { display: flex; flex-direction: column; gap: 24px; }
.standard-card { display: flex; gap: 24px; padding: 24px; background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 16px; transition: 0.3s; }
.standard-card:hover { background: rgba(255,255,255,0.08); border-color: var(--lime-neon); }
.std-icon { width: 50px; height: 50px; background: rgba(206, 241, 123, 0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--lime-neon); flex-shrink: 0; }
.std-content h4 { color: white; font-size: 1.2rem; margin-bottom: 5px; }
.std-content p { color: rgba(255,255,255,0.6); font-size: 0.95rem; }

/* --- Market Grid (About) --- */
.market-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }
.market-item { background: var(--bg-card); padding: 30px 20px; border-radius: 16px; text-align: center; border: 1px solid var(--border-color); transition: 0.3s; }
.market-item:hover { transform: translateY(-5px); border-color: var(--emerald-main); }
.m-icon-box { width: 56px; height: 56px; background: var(--bg-soft); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin: 0 auto 15px; }

/* --- Team Grid (About) --- */
.team-grid-premium { display: flex; flex-wrap: wrap; justify-content: center; gap: 40px; margin-top: 60px; }
.team-card-pro { width: 260px; position: relative; }
.card-inner { background: var(--bg-card); border-radius: 24px; padding: 20px; box-shadow: var(--shadow-card); border: 1px solid var(--border-color); transition: 0.4s; overflow: hidden; }
.team-card-pro:hover .card-inner { transform: translateY(-15px); border-color: var(--lime-neon); }
.img-box { width: 100%; height: 220px; border-radius: 16px; background: var(--bg-soft); position: relative; overflow: hidden; margin-bottom: 20px; }
.avatar-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 3rem; color: var(--emerald-deep); background: linear-gradient(45deg, var(--bg-soft), var(--white)); }
.social-overlay { position: absolute; bottom: -50px; left: 0; width: 100%; padding: 15px; background: rgba(2, 44, 32, 0.8); display: flex; justify-content: center; gap: 15px; transition: bottom 0.4s ease; }
.team-card-pro:hover .social-overlay { bottom: 0; }
.social-overlay a { color: var(--lime-neon); font-weight: bold; text-decoration: none; }
.decorative-line { width: 40px; height: 3px; background: var(--border-color); margin: 0 auto; transition: 0.3s; }
.team-card-pro:hover .decorative-line { width: 80px; background: var(--lime-neon); }

/* Team Image Object Fit */
.team-img {
    width: 100%; height: 100%; object-fit: cover; object-position: top center;
    transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.team-card-pro:hover .team-img { transform: scale(1.1); }

/* Team Role Color */
.team-role {
    color: var(--emerald-main); font-weight: 700; font-size: 0.9rem;
    margin-top: 5px; margin-bottom: 15px; transition: color 0.3s ease;
}
[data-theme="dark"] .team-role { color: var(--lime-neon); }

/* --- Marquee (Project) --- */
.tech-marquee-wrapper { background: rgba(0,0,0,0.2); padding: 15px 0; overflow: hidden; position: absolute; bottom: 0; width: 100%; border-top: 1px solid rgba(255,255,255,0.1); mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent); }
.tech-marquee { display: flex; width: max-content; animation: marquee 30s linear infinite; }
.tech-marquee span { color: rgba(255,255,255,0.4); margin: 0 40px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.15em; display: flex; align-items: center; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* --- Impact Grid (Project) --- */
.impact-grid { 
    background: var(--bg-card); border: 1px solid var(--border-color); 
    border-radius: 20px; padding: 40px; 
    display: flex; justify-content: space-around; align-items: center; 
    transform: translateY(-50px); box-shadow: var(--shadow-card); 
    margin-bottom: -50px; position: relative; z-index: 10; 
}
.impact-item { text-align: center; }
.impact-num { display: block; font-size: 2.5rem; font-weight: 800; color: var(--emerald-main); }
[data-theme="dark"] .impact-num { color: var(--lime-neon); }
.impact-divider { width: 1px; height: 50px; background: var(--border-color); }

/* --- Controls (Project) --- */
.controls-header { display: flex; justify-content: space-between; align-items: center; gap: 20px; margin-bottom: 40px; flex-wrap: wrap; }
.search-box { position: relative; width: 100%; max-width: 350px; }
.search-box input { padding-left: 50px; border-radius: 50px; }
.search-icon { position: absolute; left: 20px; top: 50%; transform: translateY(-50%); color: var(--text-muted); }
.portfolio-filter { display: flex; gap: 10px; flex-wrap: wrap; }
.filter-btn { padding: 10px 24px; border-radius: 50px; border: 1px solid var(--border-color); background: var(--bg-card); color: var(--text-muted); cursor: pointer; transition: 0.3s; }
.filter-btn.active, .filter-btn:hover { background: var(--emerald-deep); color: var(--lime-neon); border-color: var(--emerald-deep); }
[data-theme="dark"] .filter-btn.active { background: var(--lime-neon); color: var(--emerald-deep); }

/* --- Gallery Grid (Project) --- */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); gap: 40px; }
.gallery-card.pro-card { background: transparent; border: none; }
.gallery-card.pro-card:hover { transform: translateY(-10px); }
.gallery-thumb { height: 260px; border-radius: 20px; position: relative; overflow: hidden; border: 1px solid var(--border-color); box-shadow: var(--shadow-card); }
.card-status { position: absolute; top: 15px; left: 15px; background: rgba(255,255,255,0.9); padding: 6px 12px; border-radius: 50px; font-size: 0.75rem; font-weight: 700; color: black; z-index: 2; }
.thumb-overlay { position: absolute; inset: 0; background: rgba(2, 44, 32, 0.7); display: flex; align-items: center; justify-content: center; opacity: 0; transition: 0.3s; }
.gallery-card:hover .thumb-overlay { opacity: 1; }
.view-project-btn { background: var(--lime-neon); color: var(--emerald-deep); padding: 12px 28px; border-radius: 50px; font-weight: 700; transform: translateY(20px); transition: 0.3s; cursor: pointer; }
.gallery-card:hover .view-project-btn { transform: translateY(0); }
.gallery-info { padding: 20px 5px; }
.info-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 10px; }
.arrow-icon { width: 30px; height: 30px; background: var(--bg-soft); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: 0.3s; }
.gallery-card:hover .arrow-icon { background: var(--emerald-main); color: white; transform: rotate(45deg); }
.tech-stack-mini { display: flex; gap: 15px; margin-top: 15px; font-size: 0.85rem; color: var(--text-muted); font-weight: 600; }
.ts-dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; margin-right: 5px; }
.color-1 { background: #e0f2fe; } .color-2 { background: #dcfce7; } .color-3 { background: #fef9c3; } .color-4 { background: #fee2e2; }

.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1); }
.gallery-card:hover .gallery-thumb img { transform: scale(1.1); }

/* --- Empty State (Project Not Found) --- */
.empty-state {
    grid-column: 1 / -1; text-align: center; padding: 80px 20px;
    background: var(--bg-soft); border-radius: 24px; border: 2px dashed var(--border-color);
    display: none; flex-direction: column; align-items: center; justify-content: center;
    animation: fadeIn 0.5s ease;
}
.empty-icon { font-size: 4rem; margin-bottom: 20px; opacity: 0.5; animation: float 3s ease-in-out infinite; }
.empty-state h3 { font-size: 1.5rem; color: var(--text-main); margin-bottom: 10px; font-weight: 700; }
.empty-state p { color: var(--text-muted); margin-bottom: 30px; max-width: 400px; margin-left: auto; margin-right: auto; line-height: 1.6; }
[data-theme="dark"] .empty-state { background: rgba(255,255,255,0.02); border-color: rgba(255,255,255,0.1); }

/* --- CTA Box --- */
.cta-box-dark { background: var(--emerald-deep); border-radius: 30px; padding: 60px; position: relative; overflow: hidden; color: white; display: flex; justify-content: space-between; align-items: center; }
.cta-content { z-index: 2; max-width: 600px; }
.cta-content h2 { font-size: 2.5rem; color: var(--lime-neon); margin-bottom: 15px; }
.cta-content p { color: rgba(255,255,255,0.8); font-size: 1.1rem; margin-bottom: 30px; line-height: 1.6; }
.cta-actions { display: flex; align-items: center; gap: 20px; }
.link-light { color: white; text-decoration: none; font-weight: 600; }
.cta-deco { position: absolute; right: -50px; bottom: -50px; width: 300px; height: 300px; }

/* --- Modal --- */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.8); z-index: 9999; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: 0.3s; backdrop-filter: blur(5px); }
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal-content { background: var(--bg-card); width: 90%; max-width: 900px; border-radius: 24px; position: relative; overflow: hidden; transform: scale(0.9); transition: 0.3s; display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--border-color); }
.modal-overlay.active .modal-content { transform: scale(1); }
.close-modal { position: absolute; top: 20px; right: 20px; background: var(--bg-soft); border: none; width: 40px; height: 40px; border-radius: 50%; font-size: 1.5rem; cursor: pointer; z-index: 10; display: flex; align-items: center; justify-content: center; }
.close-modal:hover { background: #ff4d4d; color: white; }
.modal-body { display: contents; }
.modal-image-col { background: var(--bg-soft); padding: 30px; display: flex; align-items: center; justify-content: center; min-height: 400px; }
.modal-thumb { width: 100%; height: 100%; border-radius: 16px; object-fit: cover; box-shadow: 0 10px 40px rgba(0,0,0,0.2); }
.modal-text-col { padding: 40px; display: flex; flex-direction: column; }
.modal-category { font-size: 0.8rem; font-weight: 700; color: var(--lime-neon); background: var(--emerald-deep); padding: 6px 12px; border-radius: 50px; align-self: flex-start; margin-bottom: 15px; }
.modal-text-col h2 { font-size: 2rem; margin-bottom: 5px; color: var(--text-main); }
.client-name { font-size: 0.95rem; color: var(--text-muted); font-weight: 500; }
.divider { height: 1px; background: var(--border-color); margin: 20px 0; }
.modal-desc { font-size: 1rem; line-height: 1.6; color: var(--text-main); margin-bottom: 20px; flex-grow: 1; }
.modal-tech h4 { font-size: 0.9rem; color: var(--emerald-main); margin-bottom: 5px; text-transform: uppercase; }
.modal-tech p { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 30px; font-family: monospace; }

/* --- Shop Layout --- */
.shop-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; align-items: start; }
.market-controls { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; margin-bottom: 40px; }
.market-search { position: relative; width: 100%; max-width: 400px; }
.market-search input { padding-left: 45px; border-radius: 50px; }
.market-filter { display: flex; gap: 10px; }
.m-filter { padding: 8px 20px; border-radius: 50px; border: 1px solid var(--border-color); background: var(--bg-card); color: var(--text-muted); cursor: pointer; transition: 0.3s; }
.m-filter.active { background: var(--emerald-deep); color: var(--lime-neon); }
.code-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 30px; }
.code-card { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 16px; overflow: hidden; transition: 0.3s; display: flex; flex-direction: column; }
.code-card:hover { transform: translateY(-5px); border-color: var(--lime-neon); box-shadow: var(--shadow-card); }
.code-thumb { height: 200px; position: relative; background: var(--bg-soft); }
.version-badge { position: absolute; top: 10px; left: 10px; background: rgba(0,0,0,0.6); color: white; padding: 4px 10px; border-radius: 4px; font-size: 0.75rem; font-weight: 700; }
.thumb-actions { position: absolute; inset: 0; background: rgba(0,0,0,0.4); display: flex; align-items: center; justify-content: center; opacity: 0; transition: 0.3s; }
.code-card:hover .thumb-actions { opacity: 1; }
.preview-btn { background: white; color: black; padding: 10px 20px; border-radius: 50px; text-decoration: none; font-weight: 700; font-size: 0.9rem; }
.code-info { padding: 20px; flex-grow: 1; display: flex; flex-direction: column; }
.code-head { display: flex; justify-content: space-between; margin-bottom: 10px; }
.code-head h3 { font-size: 1.1rem; color: var(--text-main); margin: 0; }
.rating { font-size: 0.85rem; color: #fbbf24; }
.short-desc { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 15px; flex-grow: 1; }
.code-tech { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.tech-pill { font-size: 0.7rem; padding: 4px 8px; border-radius: 4px; font-weight: 700; }
.tech-pill.laravel { background: #FF2D201A; color: #FF2D20; }
.tech-pill.flutter { background: #02569B1A; color: #02569B; }
.tech-pill.react { background: #61DAFB1A; color: #00A6D6; }
.code-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 15px; border-top: 1px solid var(--border-color); }
.price-block .amount { font-size: 1.1rem; font-weight: 800; color: var(--emerald-main); }
[data-theme="dark"] .price-block .amount { color: var(--lime-neon); }
.add-cart-btn { background: var(--emerald-deep); color: white; padding: 8px 16px; border-radius: 8px; border: none; cursor: pointer; transition: 0.3s; }
.add-cart-btn.added { background: var(--bg-soft); color: var(--text-muted); }

/* Cart Sidebar */
.cart-sidebar-wrapper { position: relative; height: 100%; }
.cart-sidebar { position: sticky; top: 100px; background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 20px; padding: 24px; box-shadow: var(--shadow-card); }
.cart-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
#cartCount { background: #ef4444; color: white; padding: 2px 8px; border-radius: 10px; font-size: 0.75rem; }
.cart-items { max-height: 300px; overflow-y: auto; margin-bottom: 20px; }
.cart-item-box { display: flex; justify-content: space-between; align-items: center; padding: 10px; border-radius: 8px; background: var(--bg-soft); margin-bottom: 10px; }
.c-remove { background: none; border: none; color: #ef4444; cursor: pointer; font-size: 1.2rem; }
.cart-summary { border-top: 1px dashed var(--border-color); padding-top: 15px; margin-bottom: 20px; }
.summary-row { display: flex; justify-content: space-between; font-weight: 700; color: var(--text-main); }
.cart-trust { margin-top: 20px; font-size: 0.75rem; color: var(--text-muted); text-align: center; display: flex; flex-direction: column; gap: 5px; }

/* Shop Pagination */
.pagination {
    display: flex; justify-content: center; align-items: center; gap: 10px;
    margin-top: 60px; padding-top: 30px; border-top: 1px solid var(--border-color);
}
.page-btn {
    width: 45px; height: 45px; border-radius: 12px;
    border: 1px solid var(--border-color); background: var(--bg-card);
    color: var(--text-main); font-weight: 700; font-size: 1rem;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    margin-top: 1rem; margin-right: 0.5rem;
}
.page-btn:hover {
    border-color: var(--emerald-main); transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.page-btn.active {
    background: var(--emerald-deep); color: var(--lime-neon);
    border-color: var(--emerald-deep); box-shadow: 0 5px 20px rgba(2, 44, 32, 0.2);
}
.page-btn i, .page-btn svg { font-size: 0.9rem; }

[data-theme="dark"] .page-btn:hover { border-color: var(--lime-neon); }
[data-theme="dark"] .page-btn.active {
    background: var(--lime-neon); color: var(--emerald-deep);
    border-color: var(--lime-neon); box-shadow: 0 0 15px rgba(206, 241, 123, 0.2);
}

/* --- Contact Page --- */
.contact-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: start; }
.contact-cards { display: flex; flex-direction: column; gap: 20px; margin-bottom: 40px; margin-top: 30px; }

.c-card { background: var(--bg-card); border: 1px solid var(--border-color); padding: 20px; border-radius: 16px; display: flex; align-items: center; gap: 20px; text-decoration: none; cursor: pointer; transition: 0.3s; position: relative; overflow: hidden; }
.c-card:hover { border-color: var(--emerald-main); transform: translateX(5px); }

.detail-row { 
    background: var(--bg-card); border: 1px solid var(--border-color); 
    padding: 20px; border-radius: 16px; display: flex; gap: 20px; 
    align-items: center; transition: 0.3s;
}
.detail-row:hover { border-color: var(--emerald-main); }

.c-icon-box { width: 50px; height: 50px; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.c-icon-box.whatsapp { background: #dcfce7; color: #16a34a; }
.c-icon-box.email { background: #e0f2fe; color: #0284c7; }
.detail-row .c-icon-box { background: var(--bg-soft); color: var(--emerald-main); }

.c-text h5 { margin: 0 0 5px 0; color: var(--text-main); font-weight: 700; }
.c-text p { margin: 0; font-size: 0.95rem; color: var(--text-muted); line-height: 1.5; }
.c-status { font-size: 0.75rem; color: var(--text-muted); background: var(--bg-soft); padding: 2px 8px; border-radius: 4px; }
.c-arrow { margin-left: auto; color: var(--text-muted); }

.info-details { display: flex; flex-direction: column; gap: 20px; }
.form-box { background: var(--bg-card); border: 1px solid var(--border-color); padding: 40px; border-radius: 24px; box-shadow: var(--shadow-card); }
.input-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.map-wrapper { height: 450px; border-radius: 24px; overflow: hidden; border: 1px solid var(--border-color); }
.map-wrapper iframe { filter: grayscale(100%); transition: 0.5s; }
.map-wrapper:hover iframe { filter: grayscale(0%); }

/* --- Auth Page --- */
.auth-body { margin: 0; padding: 0; overflow-x: hidden; min-height: 100vh; background: var(--bg-main); }
.split-screen-container { display: grid; grid-template-columns: 45% 55%; min-height: 100vh; width: 100%; }
.split-visual { background: var(--emerald-deep); position: relative; padding: 60px; display: flex; flex-direction: column; justify-content: center; color: white; overflow: hidden; }
.split-visual::before { content: ''; position: absolute; inset: 0; background: url('https://images.unsplash.com/photo-1618005182384-a83a8bd57fbe?auto=format&fit=crop&w=1000&q=80') center/cover; opacity: 0.3; mix-blend-mode: overlay; }
.visual-logo { position: absolute; top: 40px; left: 60px; font-size: 1.5rem; font-weight: 800; color: white; text-decoration: none; z-index: 5; }
.visual-content { position: relative; z-index: 2; max-width: 450px; }
.v-tag { background: rgba(255,255,255,0.1); padding: 6px 12px; border-radius: 50px; font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase; border: 1px solid rgba(255,255,255,0.2); display: inline-block; margin-bottom: 20px; color: var(--lime-neon); }
.split-visual h1 { font-size: 3.5rem; line-height: 1.1; margin-bottom: 20px; }
.v-stats { display: flex; gap: 40px; align-items: center; border-top: 1px solid rgba(255,255,255,0.2); padding-top: 30px; margin-top: 50px; }
.stat-item h3 { font-size: 2rem; margin: 0; color: var(--lime-neon); }
.stat-line { width: 1px; height: 40px; background: rgba(255,255,255,0.2); }
.split-form { background: var(--bg-main); display: flex; align-items: center; justify-content: center; position: relative; padding: 40px; }
.form-center-wrapper { width: 100%; max-width: 450px; }
.mobile-back { display: none; }
.auth-header { margin-bottom: 40px; }
.auth-header h2 { font-size: 2.2rem; color: var(--text-main); margin-bottom: 10px; }
.auth-slide { display: none; animation: slideUp 0.5s ease; }
.auth-slide.active { display: block; }
@keyframes slideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; margin-bottom: 8px; color: var(--text-main); }
.input-lg { padding: 16px 20px; font-size: 1rem; border-radius: 12px; width: 100%; border: 1px solid var(--border-color); background: var(--bg-soft); color: var(--text-main); }
.forgot-link, .auth-footer a { color: var(--emerald-main); text-decoration: none; font-weight: 700; }
.auth-footer { text-align: center; margin-top: 20px; color: var(--text-muted); }
.otp-container { display: flex; gap: 15px; justify-content: center; margin-bottom: 30px; }
.otp-box { width: 60px; height: 60px; font-size: 2rem; text-align: center; font-weight: 700; border-radius: 12px; border: 1px solid var(--border-color); background: var(--bg-soft); color: var(--emerald-main); }


/* ==========================================================================
   6. ANIMATIONS
   ========================================================================== */
.fade-up, .reveal-on-scroll { opacity: 0; transform: translateY(30px); transition: all 0.8s var(--ease-smooth); }
.visible { opacity: 1; transform: translateY(0); }
.delay-100 { transition-delay: 0.1s; } .delay-200 { transition-delay: 0.2s; } .delay-300 { transition-delay: 0.3s; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }


/* ==========================================================================
   7. RESPONSIVE MEDIA QUERIES (Mobile)
   ========================================================================== */
@media (max-width: 900px) {
    /* Nav */
    .nav-links { display: none; }
    
    .nav-links.active { 
        display: flex; flex-direction: column; position: absolute; 
        top: 100%; left: 0; width: 100%; 
        background: var(--bg-card); /* Background Putih (Card) */
        padding: 30px; box-shadow: var(--shadow-card); 
        border-top: 1px solid var(--border-color);
    }

    /* --- FIX: Paksa Warna Link Mobile Agar Terlihat --- */
    .nav-links .nav-link {
        color: var(--text-main) !important; /* Pastikan teks gelap/hitam */
        display: block; padding: 12px 0; font-size: 1.1rem;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-links li:last-child .nav-link { border-bottom: none; }

    .nav-links .nav-link:hover {
        color: var(--emerald-main) !important; padding-left: 10px;
    }

    .nav-links .btn-nav {
        width: 100%; text-align: center; margin-top: 20px;
        display: block; background: var(--emerald-deep);
        color: var(--lime-neon) !important;
    }

    .hamburger { display: block; margin-left: auto; }
    
    /* Layouts */
    .intro-bento, .pricing-wrapper, .split-screen-container, .footer-top, .contact-layout, .about-wrapper, .standard-wrapper, .vision-mission-grid, .market-grid, .shop-layout { grid-template-columns: 1fr; }
    
    .split-layout-faq { grid-template-columns: 1fr; gap: 30px; }
    .input-grid { grid-template-columns: 1fr; gap: 15px; }
    .form-box { padding: 24px; }
    .main-narrative { grid-column: auto; padding: 24px; }
    .bento-card h2 { font-size: 1.8rem; }
    .hero-title, .split-visual h1 { font-size: 2.5rem; }
    .stat-lime, .stat-dark, .solution-box { grid-column: auto; }
    .timeline-line { left: 30px; }
    .timeline-item, .timeline-item.right { width: 100%; padding-left: 80px; padding-right: 0; text-align: left; margin-left: 0; }
    .timeline-marker { left: 5px; right: auto; }
    .timeline-item.right .timeline-marker { left: 5px; }
    .timeline-content::before { left: -10px !important; right: auto !important; border-width: 0 0 1px 1px !important; }
    .modal-content { grid-template-columns: 1fr; max-height: 80vh; overflow-y: auto; }
    .modal-image-col { min-height: 250px; }
    .modal-text-col { padding: 24px; }
    .cart-sidebar-wrapper { order: -1; margin-bottom: 30px; }
    .split-visual { display: none; }
    .split-form { padding-top: 80px; align-items: flex-start; }
    .mobile-back { display: block; position: absolute; top: 30px; left: 30px; color: var(--text-muted); text-decoration: none; font-weight: 600; }
    .otp-container { gap: 10px; }
    .otp-box { width: 50px; height: 50px; font-size: 1.5rem; }
    .footer-bottom { flex-direction: column; gap: 15px; }
    .pricing-card .price { font-size: 3rem; }
}

/* =========================================
   Modern Hero Grid & Glassmorphism
   ========================================= */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    width: 100%;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Glass Card Style */
.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 24px;
    width: 100%;
    max-width: 350px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.glass-badge {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background: linear-gradient(135deg, var(--theme-color-1), var(--theme-color-2));
    padding: 10px 20px;
    border-radius: 30px;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    z-index: 3;
}

/* Mac OS Window Header */
.glass-header {
    display: flex;
    gap: 6px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.dot-mac { width: 12px; height: 12px; border-radius: 50%; }
.dot-mac.red { background: #ff5f56; }
.dot-mac.yellow { background: #ffbd2e; }
.dot-mac.green { background: #27c93f; }

/* Fake Code Style */
.code-line { font-family: 'Courier New', Courier, monospace; font-size: 0.9rem; color: #a3a3a3; line-height: 1.6; }
.code-keyword { color: #ff7b72; }
.code-var { color: #79c0ff; }
.code-string { color: #a5d6ff; }
.code-func { color: #d2a8ff; }
.code-bool { color: #ff7b72; }
.indent { margin-left: 20px; }
.mt-2 { margin-top: 10px; }

/* Mini Chart Style */
.align-center { text-align: center; }
.mini-chart { display: flex; align-items: flex-end; justify-content: center; gap: 8px; height: 60px; margin-top: 20px; }
.bar { width: 15px; background: linear-gradient(to top, var(--theme-color-1), var(--theme-color-2)); border-radius: 3px; }
.bar-1 { height: 30%; } .bar-2 { height: 50%; } .bar-3 { height: 70%; } .bar-4 { height: 100%; animation: growBar 2s ease-out infinite alternate; }

/* Icons Style */
.integration-icons { display: flex; flex-direction: column; gap: 15px; }
.icon-circle { background: rgba(255,255,255,0.05); padding: 15px; border-radius: 12px; color: white; border: 1px solid rgba(255,255,255,0.05); text-align: center; font-weight: 600; transition: transform 0.3s ease; }
.icon-circle:hover { transform: translateX(10px); border-color: var(--theme-color-1); }

/* Floating Animations */
.float-anim-1 { animation: floating 6s ease-in-out infinite; }
.float-anim-2 { animation: floating 5s ease-in-out infinite reverse; }

@keyframes floating {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}
@keyframes growBar {
    0% { height: 70%; }
    100% { height: 100%; }
}

/* Responsive Tablet & Mobile */
@media (max-width: 992px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-content { display: flex; flex-direction: column; align-items: center; }
    .hero-desc { margin: 1.5rem auto; }
    .hero-visual { margin-top: 30px; }
}
/* =========================================
   Modern Dynamic Carousel Styles
   ========================================= */
:root {
    --theme-color-1: #4F46E5; /* Default warna 1 */
    --theme-color-2: #06B6D4; /* Default warna 2 */
}

/* Transisi mulus pada Aurora Blobs */
.dynamic-blob {
    transition: background 1.5s ease-in-out;
}
.blob-1.dynamic-blob { background: var(--theme-color-1); }
.blob-2.dynamic-blob { background: var(--theme-color-2); }
.blob-3.dynamic-blob { background: var(--theme-color-1); opacity: 0.6; }

/* Transisi pada Teks Gradient & Indikator Pill */
.dynamic-text {
    background: linear-gradient(90deg, var(--theme-color-1), var(--theme-color-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 1.5s ease;
}
.dynamic-indicator {
    background: linear-gradient(90deg, var(--theme-color-1), var(--theme-color-2));
    box-shadow: 0 0 10px var(--theme-color-1);
    transition: all 1.5s ease;
}

/* Base Carousel Slide */
.hero { position: relative; overflow: hidden; display: flex; align-items: center; min-height: 100vh; }
.hero-carousel { width: 100%; position: relative; }
.carousel-slide {
    position: absolute;
    top: 0; left: 0; width: 100%;
    opacity: 0; visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
}
.carousel-slide.active {
    opacity: 1; visibility: visible; position: relative;
}

/* Progress Bar Indikator ala Agensi Modern */
.modern-indicators {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.progress-item {
    width: 60px; /* Panjang garis */
    height: 4px; /* Ketebalan garis */
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.progress-bar {
    width: 0%;
    height: 100%;
    background: #fff; /* Warna isi progress bar */
    border-radius: 4px;
}

/* Animasi progress bar hanya jalan saat item aktif */
.progress-item.active .progress-bar {
    animation: fillProgress 5s linear forwards;
}

@keyframes fillProgress {
    0% { width: 0%; }
    100% { width: 100%; }
}
/* =========================================
   ULTRA MODERN UPGRADES
   ========================================= */

/* 1. Cyber Grid Overlay Pattern */
.hero::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    /* Pola titik-titik halus futuristik */
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 1; /* Di atas aurora, di bawah konten */
    pointer-events: none;
}

/* 2. Cinematic Staggered Entrance Animations
   Kita timpa animasi fade-up lama khusus untuk di dalam carousel aktif */

/* Keadaan awal elemen sebelum slide aktif */
.carousel-slide .hero-title,
.carousel-slide .hero-desc,
.carousel-slide .hero-actions,
.carousel-slide .badge-pill {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Saat slide AKTIF, elemen muncul berurutan (staggered) */
.carousel-slide.active .badge-pill {
    opacity: 1; transform: translateY(0); transition-delay: 0.3s;
}
.carousel-slide.active .hero-title {
    opacity: 1; transform: translateY(0); transition-delay: 0.5s;
}
.carousel-slide.active .hero-desc {
    opacity: 1; transform: translateY(0); transition-delay: 0.7s;
}
.carousel-slide.active .hero-actions {
    opacity: 1; transform: translateY(0); transition-delay: 0.9s;
}


/* 3. Persiapan 3D Tilt Effect pada Visual Kanan */
.hero-visual {
    /* Memberikan perspektif 3D pada container */
    perspective: 1000px;
    transform-style: preserve-3d;
}

.glass-card {
    /* Menghapus animasi floating lama agar tidak bentrok dengan 3D Tilt */
    animation: none !important; 
    /* Transisi halus saat mouse keluar dari card */
    transition: transform 0.2s ease-out;
    /* Bayangan yang lebih dramatis */
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

/* Efek mengkilap saat di-hover (opsional, tambah keren) */
.glass-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.1) 45%, rgba(255,255,255,0.2) 50%, transparent 54%);
    filter: blur(4px);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    border-radius: 20px;
}
.hero-visual:hover .glass-card::after {
    opacity: 1;
}

/* Mempercantik tampilan "Fake Code" di Slide 1 */
.code-line {
    font-family: 'Fira Code', 'Consolas', monospace; /* Font coding yang lebih bagus */
    font-size: 0.85rem;
    border-left: 2px solid transparent;
    padding-left: 5px;
}
/* Baris aktif diberi highlight warna tema */
.carousel-slide.active .code-line.mt-2 {
    border-left-color: var(--theme-color-1);
    background: linear-gradient(90deg, rgba(255,255,255,0.05), transparent);
    transition: all 1s ease 1s; /* Delay munculnya highlight */
}

/* =========================================
   CONTACT HERO: PREMIUM DEEP GREEN
   ========================================= */

.contact-hero-green {
    position: relative;
    min-height: 40vh; /* Tetap compact/pendek */
    padding: 130px 0 60px 0; 
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* Gradasi Hijau Zamrud Gelap ke Hijau Hutan */
    background: linear-gradient(135deg, #022C22 0%, #064E3B 100%);
    overflow: hidden;
}

/* Pendaran Cahaya Halus (Abstract Glow) */
.green-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
    pointer-events: none;
}
.glow-1 {
    top: -20%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: rgba(52, 211, 153, 0.25); /* Mint green glow */
}
.glow-2 {
    bottom: -30%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(16, 185, 129, 0.2); /* Emerald green glow */
}

/* Penyesuaian Z-Index agar teks di atas efek glow */
.hero-content-center {
    position: relative;
    z-index: 5;
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Badges Hijau Transparan (Glassmorphism ringan) */
.contact-badges {
    display: flex;
    gap: 12px;
    margin-bottom: 25px;
}
.badge-emerald {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    /* Warna kotak transparan bernuansa hijau */
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(52, 211, 153, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #D1FAE5; /* Teks hijau sangat muda */
    backdrop-filter: blur(8px);
}
.pulse-dot-lime {
    width: 8px; height: 8px;
    background-color: #34D399; /* Hijau menyala */
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.6);
    animation: pulseLime 2s infinite;
}
@keyframes pulseLime {
    0% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.6); }
    70% { box-shadow: 0 0 0 6px rgba(52, 211, 153, 0); }
    100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); }
}

/* Tipografi - Kontras Tinggi */
.compact-title-green {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 18px;
    color: #F8FAFC; /* Putih bersih */
}
/* Teks Aksen dengan Warna Hijau Neon/Lime yang Stand Out */
.text-highlight-lime {
    color: #34D399; 
    text-shadow: 0 0 20px rgba(52, 211, 153, 0.3); /* Sedikit efek menyala */
}

.compact-subtitle-green {
    font-size: 1.05rem;
    color: #A7F3D0; /* Hijau pastel untuk deskripsi agar tidak terlalu mencolok */
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Animasi Muncul Halus */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    animation: simpleFadeUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }

@keyframes simpleFadeUp {
    to { opacity: 1; transform: translateY(0); }
}



/* =========================================
   1. GOLDEN RATIO VARIABLES
   ========================================= */
:root {
    /* Base Ratio */
    --phi: 1.618;
    
    /* Base Font Size (16px) */
    --text-base: 1rem; 
    
    /* Golden Typography Scale */
    /* Menggunakan pembagian/perkalian 1.618 dan akar dari 1.618 (1.272) untuk variasi ukuran yang tidak terlalu ekstrem */
    --text-sm: calc(var(--text-base) / 1.272);          /* ~12px */
    --text-md: calc(var(--text-base) * var(--phi));     /* ~26px (h4, h5) */
    --text-lg: calc(var(--text-md) * 1.272);            /* ~33px (h3) */
    --text-xl: calc(var(--text-base) * var(--phi) * var(--phi)); /* ~42px (h2) */
    --text-xxl: calc(var(--text-xl) * 1.272);           /* ~53px (h1 hero mobile) */
    --text-xxxl: calc(var(--text-xl) * var(--phi));     /* ~68px (h1 hero desktop) */

    /* Golden Spacing Scale */
    --space-xs: calc(1rem / var(--phi));                /* ~0.618rem */
    --space-sm: 1rem;                                   /* 1rem */
    --space-md: calc(1rem * var(--phi));                /* ~1.618rem */
    --space-lg: calc(1rem * var(--phi) * var(--phi));   /* ~2.618rem */
    --space-xl: calc(var(--space-lg) * var(--phi));     /* ~4.236rem */
    --space-xxl: calc(var(--space-xl) * var(--phi));    /* ~6.854rem */

    /* Layout Constraints */
    --container-width: 1200px;
}

/* =========================================
   2. GLOBAL TYPOGRAPHY & RESET
   ========================================= */
body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: var(--text-base);
    line-height: var(--phi); /* Line height sempurna menggunakan Golden Ratio */
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

h1, .hero-title {
    font-size: var(--text-xxxl);
    line-height: 1.2;
    margin-bottom: var(--space-md);
}

h2 {
    font-size: var(--text-xl);
    line-height: 1.3;
    margin-bottom: var(--space-md);
}

h3 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-sm);
}

h4, h5 {
    font-size: var(--text-md);
    margin-bottom: var(--space-xs);
}

p, .lead-text, .body-text {
    margin-bottom: var(--space-md);
}

/* =========================================
   3. LAYOUT & CONTAINERS
   ========================================= */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.section {
    /* Padding atas bawah menggunakan skala besar */
    padding: var(--space-xl) 0; 
}

/* =========================================
   4. GOLDEN RATIO GRID SECTIONS (DESKTOP)
   ========================================= */
/* Hero Section: Teks mengambil proporsi lebih besar (62%) dan visual (38%) */
.hero-grid {
    display: grid;
    grid-template-columns: var(--phi) 1fr; 
    align-items: center;
    gap: var(--space-lg);
    min-height: 80vh;
    padding-top: var(--space-xl);
}

/* About Section: Visual kiri (38%), Konten Kanan (62%) */
.about-wrapper {
    display: grid;
    grid-template-columns: 1fr var(--phi);
    align-items: center;
    gap: var(--space-xl);
}

/* FAQ Section: Teks kiri (38%), Akordion Kanan (62%) */
.split-layout-faq {
    display: grid;
    grid-template-columns: 1fr var(--phi);
    align-items: start;
    gap: var(--space-xl);
}

/* Portfolio & Pricing Grid (Menyesuaikan ruang kosong) */
.pricing-wrapper, .portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

/* Komponen Kecil: Jarak tombol, label, badge */
.badge-pill {
    margin-bottom: var(--space-sm);
    padding: var(--space-xs) var(--space-sm);
}

.hero-actions {
    margin-top: var(--space-lg);
}

.btn {
    padding: var(--space-xs) var(--space-md);
    font-size: var(--text-base);
}

/* =========================================
   5. RESPONSIVE DESIGN (MOBILE & TABLET)
   ========================================= */
@media (max-width: 992px) {
    /* Menyesuaikan jarak agar tidak terlalu lebar di tablet */
    :root {
        --space-xl: calc(1rem * var(--phi) * var(--phi)); /* Turun 1 tingkat */
        --space-xxl: calc(var(--space-lg) * var(--phi));
    }
    
    .hero-grid, .about-wrapper, .split-layout-faq {
        grid-template-columns: 1fr; /* Ubah ke 1 kolom */
        text-align: center;
    }

    .about-wrapper .about-visual, 
    .split-layout-faq .faq-text {
        margin-bottom: var(--space-lg);
    }
    
    .pricing-wrapper, .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Penyesuaian ukuran font dinamis untuk Mobile */
    :root {
        --text-xxxl: var(--text-xxl); /* Hero title mengecil di HP */
        --text-xl: var(--text-lg);
    }

    .section {
        padding: var(--space-lg) 0;
    }

    .pricing-wrapper, .portfolio-grid {
        grid-template-columns: 1fr; /* 1 kolom penuh di HP */
        gap: var(--space-md);
    }

    .hero-title {
        font-size: var(--text-xxl);
    }
}