/* 
   CREATEIFY.CC - Premium Stylesheet
   Theme: Sleek Dark / Tech Neon Gradient (Glassmorphism)
   Fonts: Google Fonts - Prompt & Inter
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Prompt:wght@300;400;500;600;700&display=swap');

:root {
    --bg-dark: #070814;
    --bg-card: rgba(15, 18, 36, 0.7);
    --bg-card-hover: rgba(22, 26, 52, 0.85);
    --border-color: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(124, 58, 237, 0.4);
    
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --text-dim: #64748b;
    
    --color-primary: #7c3aed; /* Purple */
    --color-secondary: #06b6d4; /* Cyan */
    --color-success: #10b981; /* Green */
    --color-warning: #f59e0b; /* Gold/Amber */
    --color-info: #3b82f6; /* Blue */
    --color-danger: #ef4444;
    
    --grad-purple: linear-gradient(135deg, #a78bfa, #7c3aed);
    --grad-blue: linear-gradient(135deg, #60a5fa, #3b82f6);
    --grad-cyan: linear-gradient(135deg, #22d3ee, #06b6d4);
    --grad-gold: linear-gradient(135deg, #fbbf24, #d97706);
    --grad-green: linear-gradient(135deg, #34d399, #059669);
    --grad-hero: linear-gradient(135deg, #1e1b4b, #0f172a);
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
}

/* Base Settings */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: 'Prompt', 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: #1e293b;
    border-radius: 5px;
    border: 2px solid var(--bg-dark);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary);
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    letter-spacing: -0.02em;
}

.text-gradient-purple {
    background: var(--grad-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-blue {
    background: var(--grad-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-gold {
    background: var(--grad-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-green {
    background: var(--grad-green);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Layout Containers */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
    background: rgba(7, 8, 20, 0.75);
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    padding: 0.8rem 0;
    background: rgba(7, 8, 20, 0.9);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

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

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
}

.logo-icon {
    width: 42px;
    height: 42px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
}

.logo-text span {
    color: #facc15; /* Yellow cc */
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    transition: var(--transition-fast);
    font-size: 1rem;
    position: relative;
    padding: 0.5rem 0;
}

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

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

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

.nav-cta {
    background: var(--grad-purple);
    color: var(--text-main);
    padding: 0.75rem 1.8rem;
    border-radius: 99px;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.5);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: none;
    border: none;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background-color: var(--text-main);
    border-radius: 3px;
    transition: var(--transition-fast);
}

/* Hero & Slider Section */
.hero-slider-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.slider-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), visibility 1s;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(7, 8, 20, 0.95) 30%, rgba(7, 8, 20, 0.7) 60%, rgba(7, 8, 20, 0.4) 100%);
    z-index: 3;
}

.slide-content-wrapper {
    position: relative;
    z-index: 4;
    height: 100%;
    display: flex;
    align-items: center;
}

.slide-info {
    max-width: 650px;
    transform: translateY(30px);
    opacity: 0;
    transition: transform 0.8s ease 0.4s, opacity 0.8s ease 0.4s;
}

.slide.active .slide-info {
    transform: translateY(0);
    opacity: 1;
}

.slide-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 99px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.slide.slide-1 .slide-tag { color: var(--color-secondary); }
.slide.slide-2 .slide-tag { color: var(--color-info); }
.slide.slide-3 .slide-tag { color: var(--color-success); }

.slide-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.slide-title span {
    display: block;
}

.slide-desc {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.slide-actions {
    display: flex;
    gap: 1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2rem;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--grad-purple);
    color: var(--text-main);
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.6);
}

.btn-outline {
    background: transparent;
    color: var(--text-main);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 40px;
    right: 5%;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.slider-dots {
    display: flex;
    gap: 0.6rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition-fast);
}

.dot.active {
    background: var(--color-primary);
    transform: scale(1.3);
    box-shadow: 0 0 10px var(--color-primary);
}

.slider-arrow {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-main);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Section Header styling */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-primary);
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
    display: inline-block;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-desc {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-muted);
}

/* Feature Highlights */
.features-section {
    padding: 8rem 0;
    background: linear-gradient(to bottom, var(--bg-dark), #0c0e22);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: transparent;
    transition: var(--transition-fast);
}

.feature-card:hover {
    transform: translateY(-8px);
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.feature-card.f-1:hover::before { background: var(--grad-purple); }
.feature-card.f-2:hover::before { background: var(--grad-blue); }
.feature-card.f-3:hover::before { background: var(--grad-green); }
.feature-card.f-4:hover::before { background: var(--grad-gold); }

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.f-1 .feature-icon-wrapper { background: rgba(124, 58, 237, 0.1); color: #a78bfa; }
.f-2 .feature-icon-wrapper { background: rgba(59, 130, 246, 0.1); color: #60a5fa; }
.f-3 .feature-icon-wrapper { background: rgba(16, 185, 129, 0.1); color: #34d399; }
.f-4 .feature-icon-wrapper { background: rgba(217, 119, 6, 0.1); color: #fbbf24; }

.feature-card-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.feature-card-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Packages Section */
.packages-section {
    padding: 8rem 0;
    background: linear-gradient(to bottom, #0c0e22, #070814);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.package-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
    position: relative;
}

.package-card:hover {
    transform: translateY(-10px);
    border-color: var(--border-hover);
    box-shadow: 0 20px 50px rgba(124, 58, 237, 0.15);
}

.package-card.highlighted {
    border-color: var(--color-primary);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.15);
}

.package-card.highlighted::before {
    content: 'RECOMMENDED';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--grad-purple);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.3rem 1.2rem;
    border-radius: 99px;
    letter-spacing: 1px;
}

.package-card.gold-border {
    border-color: var(--color-warning);
}
.package-card.gold-border.highlighted::before {
    content: 'SYSTEM PRO';
    background: var(--grad-gold);
}

.package-header {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
}

.package-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.package-title {
    font-size: 1.5rem;
    font-weight: 700;
}

.package-badge {
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: 99px;
    font-weight: 600;
}

.badge-purple { background: rgba(167, 139, 250, 0.15); color: #c084fc; }
.badge-blue { background: rgba(96, 165, 250, 0.15); color: #60a5fa; }
.badge-gold { background: rgba(251, 191, 36, 0.15); color: #fbbf24; }
.badge-green { background: rgba(52, 211, 153, 0.15); color: #34d399; }

.package-price-wrap {
    margin-top: 1rem;
}

.price-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: block;
}

.price-value {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
}

.price-value span {
    font-size: 1.25rem;
    font-weight: 500;
    font-family: 'Prompt', sans-serif;
    color: var(--text-muted);
    margin-left: 0.3rem;
}

.package-features {
    list-style: none;
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.package-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.package-features li svg {
    flex-shrink: 0;
    margin-top: 3px;
}

.package-features li.included svg {
    color: var(--color-success);
}

.package-features li.included {
    color: var(--text-main);
}

.package-btn {
    width: 100%;
}

/* Wide / Special Application Package Card */
.application-package-box {
    margin-top: 3rem;
    background: linear-gradient(135deg, rgba(16, 18, 35, 0.9) 0%, rgba(8, 20, 36, 0.9) 100%);
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: 24px;
    padding: 3.5rem;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3.5rem;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.application-package-box::after {
    content: '';
    position: absolute;
    right: -100px;
    bottom: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.app-box-content {
    position: relative;
    z-index: 2;
}

.app-box-visual {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.app-grid-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
}

.app-badge-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition-fast);
}

.app-badge-item:hover {
    background: rgba(16, 185, 129, 0.08);
    border-color: rgba(16, 185, 129, 0.25);
    transform: translateY(-3px);
}

.app-badge-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(16, 185, 129, 0.1);
    color: #34d399;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.app-badge-name {
    font-weight: 500;
    font-size: 0.95rem;
}

/* Contact Section */
.contact-section {
    padding: 8rem 0;
    background: #060711;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: stretch;
}

.contact-info-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2.5rem 0;
}

.contact-method-item {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
}

.contact-method-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(124, 58, 237, 0.1);
    color: #a78bfa;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-method-detail h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.contact-method-detail p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.contact-method-detail a {
    color: var(--color-secondary);
    text-decoration: none;
    transition: var(--transition-fast);
}

.contact-method-detail a:hover {
    text-decoration: underline;
}

/* LINE Connect Box */
.line-connect-box {
    background: rgba(6, 182, 212, 0.05);
    border: 1px dashed rgba(6, 182, 212, 0.25);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.line-qr-svg {
    width: 110px;
    height: 110px;
    background: #fff;
    padding: 6px;
    border-radius: 8px;
    flex-shrink: 0;
}

.line-info-text h5 {
    font-size: 1.1rem;
    color: #34d399; /* Green Line-ish vibe */
    margin-bottom: 0.4rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.line-info-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Contact Form Card */
.contact-form-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 3.5rem;
    position: relative;
}

.form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
}

.form-control {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.9rem 1.2rem;
    color: var(--text-main);
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition-fast);
    outline: none;
    width: 100%;
}

.form-control:focus {
    border-color: var(--color-primary);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 10px rgba(124, 58, 237, 0.2);
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2394a3b8'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.2rem center;
    background-size: 1.2rem;
    padding-right: 3rem;
}

select.form-control option {
    background-color: #0d0f22;
    color: var(--text-main);
}

.submit-btn {
    width: 100%;
    justify-content: center;
    margin-top: 1rem;
    font-size: 1.05rem;
}

/* Toast Message Notification */
.toast-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.toast {
    background: #0f172a;
    border-left: 4px solid var(--color-primary);
    color: var(--text-main);
    padding: 1.2rem 2rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    gap: 1rem;
    transform: translateY(20px);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.toast.success {
    border-left-color: var(--color-success);
}

.toast.error {
    border-left-color: var(--color-danger);
}

/* Footer Section */
.footer {
    border-top: 1px solid var(--border-color);
    padding: 4rem 0 2rem;
    background: #04050d;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.footer-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.footer-link a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.footer-link a:hover {
    color: var(--text-main);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    color: var(--text-dim);
    font-size: 0.85rem;
}

.footer-brand-desc {
    max-width: 300px;
    color: var(--text-muted);
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

/* Micro-animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.floating-icon {
    animation: float 4s ease-in-out infinite;
}

/* Responsive Web Layouts */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto 3rem;
    }
    
    .application-package-box {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2.5rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .slide-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .navbar .container {
        height: 70px;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: #070814;
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 4rem;
        gap: 2rem;
        transition: var(--transition-smooth);
        border-top: 1px solid var(--border-color);
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    /* Toggle animations */
    .menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .form-group-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .slide-title {
        font-size: 2.2rem;
    }
    
    .slide-desc {
        font-size: 1rem;
    }
    
    .slide-actions {
        flex-direction: column;
    }
    
    .footer-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .contact-info-card, .contact-form-card {
        padding: 2rem;
    }
    
    .line-connect-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* Package Visual Containers */
.package-visual {
    width: 100%;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    overflow: hidden;
}

/* Visual 1: 5 Pages Cascading */
.visual-5pages-wrapper {
    position: relative;
    width: 120px;
    height: 100px;
}

.page-layer {
    position: absolute;
    width: 70px;
    height: 50px;
    background: rgba(16, 18, 35, 0.9);
    border: 1.5px solid rgba(167, 139, 250, 0.4);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: #a78bfa;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: var(--transition-smooth);
}

.page-layer:nth-child(1) { top: 0; left: 0; z-index: 1; opacity: 0.4; }
.page-layer:nth-child(2) { top: 10px; left: 12px; z-index: 2; opacity: 0.6; }
.page-layer:nth-child(3) { top: 20px; left: 24px; z-index: 3; opacity: 0.8; }
.page-layer:nth-child(4) { top: 30px; left: 36px; z-index: 4; opacity: 0.9; }
.page-layer:nth-child(5) { 
    top: 40px; 
    left: 48px; 
    z-index: 5; 
    background: linear-gradient(135deg, #7c3aed, #2563eb); 
    border-color: #a78bfa; 
    color: #fff;
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.4);
}

.package-card:hover .page-layer:nth-child(1) { transform: translate(-8px, -8px); opacity: 0.6; }
.package-card:hover .page-layer:nth-child(2) { transform: translate(-4px, -4px); opacity: 0.8; }
.package-card:hover .page-layer:nth-child(4) { transform: translate(4px, 4px); }
.package-card:hover .page-layer:nth-child(5) { transform: translate(8px, 8px) scale(1.05); }

/* Visual 2: WordPress Mini Dashboard */
.visual-wp-wrapper {
    position: relative;
    width: 140px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mini-laptop {
    width: 100px;
    height: 60px;
    background: #1e293b;
    border: 3px solid #475569;
    border-radius: 6px;
    position: relative;
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}

.mini-laptop-screen {
    width: 100%;
    height: 100%;
    background: #0f172a;
    border-radius: 3px;
    overflow: hidden;
    padding: 4px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.mini-wp-header {
    height: 6px;
    background: #1e293b;
    border-radius: 1px;
}

.mini-wp-content {
    flex-grow: 1;
    display: flex;
    gap: 4px;
}

.mini-wp-sidebar {
    width: 15px;
    background: #1e293b;
    border-radius: 1px;
}

.mini-wp-main {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.mini-wp-chart {
    flex-grow: 1;
    background: rgba(37, 99, 235, 0.2);
    border-radius: 2px;
    display: flex;
    align-items: flex-end;
    padding: 2px;
    gap: 2px;
}

.mini-wp-bar {
    flex-grow: 1;
    background: #3b82f6;
    border-radius: 1px;
}

.mini-wp-bar:nth-child(1) { height: 40%; }
.mini-wp-bar:nth-child(2) { height: 70%; }
.mini-wp-bar:nth-child(3) { height: 90%; }

.mini-laptop-base {
    width: 120px;
    height: 6px;
    background: #64748b;
    border-radius: 0 0 8px 8px;
    position: absolute;
    bottom: -6px;
    left: -10px;
}

.wp-floating-logo {
    position: absolute;
    top: -10px;
    right: 5px;
    width: 36px;
    height: 36px;
    background: #1d4ed8;
    border-radius: 50%;
    border: 2px solid var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    animation: float 4s ease-in-out infinite;
}

/* Visual 3: WordPress Pro Crown Badge */
.visual-pro-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pro-badge-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: radial-gradient(circle, #271f0c 0%, #1e1505 100%);
    border: 2px solid #fbbf24;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 25px rgba(251, 191, 36, 0.25);
    position: relative;
    animation: float 4s ease-in-out infinite;
}

.pro-crown {
    color: #fbbf24;
    width: 32px;
    height: 32px;
    margin-bottom: 2px;
}

.pro-badge-text {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fbbf24;
    letter-spacing: 2px;
    font-family: 'Inter', sans-serif;
}

.pro-stars {
    display: flex;
    gap: 2px;
    margin-top: 2px;
}

.pro-star {
    width: 8px;
    height: 8px;
    fill: #fbbf24;
}

/* Visual 4: Web Application Showcase (Inside wide box) */
.visual-webapp-wrapper {
    position: relative;
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.01);
    border-radius: 12px;
    border: 1px dashed rgba(255,255,255,0.05);
    padding: 1rem 0;
}

.mini-phone {
    width: 65px;
    height: 105px;
    background: #1e293b;
    border: 2.5px solid #475569;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 8px 16px rgba(0,0,0,0.4);
    overflow: hidden;
    padding: 3px;
    display: flex;
    flex-direction: column;
    gap: 3px;
    transition: var(--transition-smooth);
}

.mini-phone:nth-child(1) {
    transform: rotate(-10deg) translateX(15px);
    z-index: 1;
}

.mini-phone:nth-child(2) {
    transform: rotate(5deg) translateX(-15px);
    z-index: 2;
    border-color: #34d399;
    box-shadow: 0 10px 25px rgba(52, 211, 153, 0.2);
}

.application-package-box:hover .mini-phone:nth-child(1) {
    transform: rotate(-18deg) translateX(5px) translateY(-5px);
}

.application-package-box:hover .mini-phone:nth-child(2) {
    transform: rotate(10deg) translateX(-5px) translateY(-5px) scale(1.05);
}

.mini-phone-screen {
    width: 100%;
    height: 100%;
    background: #0f172a;
    border-radius: 8px;
    padding: 4px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    overflow: hidden;
}

.mini-phone-header {
    height: 4px;
    background: #1e293b;
    border-radius: 1px;
}

.mini-phone-bubble {
    height: 8px;
    width: 80%;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
}

.mini-phone:nth-child(2) .mini-phone-bubble.active {
    background: rgba(52, 211, 153, 0.2);
    border-left: 2px solid #34d399;
    width: 90%;
}

.mini-phone-list {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.mini-phone-item {
    height: 6px;
    background: rgba(255,255,255,0.03);
    border-radius: 1px;
}

/* Card Graphic Images */
.card-graphic-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.package-card:hover .card-graphic-img,
.application-package-box:hover .card-graphic-img {
    transform: scale(1.08);
}

/* FAQ Section Styles */
.faq-section {
    padding: 8rem 0;
    background: linear-gradient(to bottom, #070814, #0b0c1e);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: var(--border-hover);
    box-shadow: 0 5px 15px rgba(124, 58, 237, 0.1);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 1.5rem 2rem;
    color: var(--text-main);
    font-family: inherit;
    font-size: 1.1rem;
    font-weight: 500;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    outline: none;
}

.faq-question span {
    padding-right: 1.5rem;
}

.faq-arrow {
    transition: transform 0.3s ease;
    color: var(--text-muted);
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
    color: var(--color-primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background: rgba(255, 255, 255, 0.01);
}

.faq-answer p {
    padding: 0 2rem 1.8rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.faq-answer strong {
    color: var(--text-main);
}

