/* Modern Wellness Design - MITI Construction Edition */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@400;500;600&display=swap');

:root {
    --primary: #1e3a5f;
    --primary-light: #2c5282;
    --primary-dark: #0f172a;
    --accent: #d4af37;
    --accent-light: #f0d878;
    --bg: #f8fafc;
    --bg-alt: #f1f5f9;
    --white: #ffffff;
    --text: #1e293b;
    --text-light: #64748b;
    --border: #e2e8f0;
    --success: #10b981;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

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

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
}

h1, h2, h3, h4 { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; }

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

/* Top Announcement Bar */
.announcement-bar {
    background: var(--primary-dark);
    color: white;
    padding: 12px 0;
    font-size: 0.9rem;
    border-bottom: 3px solid var(--accent);
}

.announcement-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.announcement-left {
    display: flex;
    gap: 24px;
}

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

.announcement-item strong {
    color: var(--accent);
}

/* Header */
.header {
    background: var(--white);
    padding: 20px 0;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 12px rgba(30, 58, 95, 0.3);
}

.brand-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-dark);
}

.brand-tagline {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 500;
}

.header-contact {
    text-align: right;
}

.header-phone {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
}

.header-email {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 800;
}

.hero-description {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 16px;
    align-items: center;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: var(--primary-dark);
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.5);
    background: var(--accent-light);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Section Headers */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 48px;
}

.section-tag {
    display: inline-block;
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.875rem;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 16px;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.125rem;
}

/* Products Grid */
.products-section {
    padding: 80px 0;
    background: var(--bg-alt);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.product-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.product-card.featured {
    border: 2px solid var(--accent);
    position: relative;
}

.product-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--accent);
    color: var(--primary-dark);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.product-image {
    height: 180px;
    background: linear-gradient(135deg, var(--bg-alt) 0%, var(--bg) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    border-bottom: 1px solid var(--border);
}

.product-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 1.25rem;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.product-description {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 16px;
    flex: 1;
}

.product-features {
    list-style: none;
    margin-bottom: 20px;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 6px;
}

.product-features li::before {
    content: '✓';
    color: var(--success);
    font-weight: 700;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.product-price {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary);
}

.product-select-btn {
    background: var(--bg-alt);
    color: var(--primary);
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

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

/* Features Section */
.features-section {
    padding: 80px 0;
    background: var(--white);
}

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

.feature-item {
    text-align: center;
    padding: 32px 24px;
    background: var(--bg);
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.feature-item:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px;
    box-shadow: 0 8px 16px rgba(30, 58, 95, 0.2);
}

.feature-title {
    font-size: 1.125rem;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.feature-text {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* How it Works */
.process-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--bg-alt) 0%, var(--white) 100%);
}

.process-steps {
    display: flex;
    gap: 24px;
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '→';
    position: absolute;
    right: -20px;
    top: 40px;
    color: var(--accent);
    font-size: 24px;
    font-weight: 700;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--white);
    border: 3px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin: 0 auto 20px;
    box-shadow: var(--shadow);
}

.step-title {
    font-size: 1.25rem;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.step-description {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Why Phone Section */
.phone-explanation {
    background: var(--primary);
    color: white;
    padding: 60px 0;
    margin: 40px 0;
}

.phone-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.phone-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.phone-content p {
    opacity: 0.9;
    margin-bottom: 24px;
    line-height: 1.7;
}

.phone-benefits {
    list-style: none;
}

.phone-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.phone-benefits li::before {
    content: '✓';
    width: 24px;
    height: 24px;
    background: var(--accent);
    color: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
}

.phone-visual {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.phone-icon {
    font-size: 80px;
    margin-bottom: 20px;
}

.phone-highlight {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--bg-alt);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.faq-question {
    padding: 20px 24px;
    background: var(--white);
    font-weight: 700;
    color: var(--primary-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
}

.faq-answer {
    padding: 0 24px 20px;
    color: var(--text-light);
    line-height: 1.7;
}

/* Order Section */
.order-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: white;
}

.order-section .section-title {
    color: white;
}

.order-section .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.order-container {
    max-width: 700px;
    margin: 0 auto;
}

.order-form {
    background: var(--white);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow-xl);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s;
    font-family: inherit;
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

.product-selection {
    margin-bottom: 32px;
}

.product-selection-title {
    font-size: 1.125rem;
    color: var(--primary-dark);
    margin-bottom: 16px;
    font-weight: 700;
}

.product-options {
    display: grid;
    gap: 12px;
}

.product-option {
    display: flex;
    align-items: center;
    padding: 16px;
    border: 2px solid var(--border);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
    background: var(--bg);
}

.product-option:hover {
    border-color: var(--accent);
    background: var(--white);
}

.product-option.selected {
    border-color: var(--accent);
    background: rgba(212, 175, 55, 0.05);
}

.product-option input {
    margin-right: 12px;
    width: 20px;
    height: 20px;
    accent-color: var(--primary);
}

.product-option-info {
    flex: 1;
}

.product-option-name {
    font-weight: 600;
    color: var(--primary-dark);
    display: block;
}

.product-option-desc {
    font-size: 0.875rem;
    color: var(--text-light);
}

.product-option-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.submit-button {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    color: var(--primary-dark);
    border: none;
    border-radius: 12px;
    font-size: 1.125rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.5);
}

.form-note {
    text-align: center;
    margin-top: 16px;
    color: var(--text-light);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Disclaimer */
.disclaimer-box {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-left: 4px solid var(--accent);
    padding: 24px;
    border-radius: 0 12px 12px 0;
    margin: 48px auto;
    max-width: 900px;
}

.disclaimer-box strong {
    color: var(--primary-dark);
    display: block;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.disclaimer-box p {
    color: var(--text);
    margin: 0;
    line-height: 1.7;
}

/* Footer */
.footer {
    background: var(--primary-dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
}

.footer-brand {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-about {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 24px;
}

.company-info-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    padding: 20px;
}

.company-info-box h4 {
    color: var(--accent);
    margin-bottom: 12px;
    font-size: 1rem;
}

.company-info-box p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 0.9rem;
    margin: 0;
}

.footer-title {
    color: var(--accent);
    font-size: 1.125rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .process-steps {
        flex-direction: column;
    }
    .process-step:not(:last-child)::after {
        display: none;
    }
    .phone-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 640px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .announcement-content {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    .header-content {
        flex-direction: column;
        gap: 16px;
    }
    .hero-cta {
        flex-direction: column;
    }
    .order-form {
        padding: 24px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}
