:root {
    --primary: #801884;
    --secondary: #241724;
    --accent: #E6B942;
    --bg: #100B11;
    --surface: #281729;
    --text: #EFEAF0;
    --text-muted: #7C647F;
    --border: #54285A;
    --success: #2BA853;
    --danger: #DE3A31;
    --accent-glow: rgba(230, 185, 66, 0.15);
    --primary-glow: rgba(128, 24, 132, 0.25);
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 20px;
    --shadow: 0 4px 24px rgba(0,0,0,0.4);
    --shadow-lg: 0 12px 48px rgba(0,0,0,0.5);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: 'Noto Sans Thai', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.8;
    font-size: 16px;
    overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: #f0cd6e; }

img { max-width: 100%; height: auto; display: block; }
img.loaded { animation: fadeIn 0.5s ease; }

strong { color: var(--accent); font-weight: 700; }

h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
    font-weight: 700;
    color: var(--text);
}

h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ========== HEADER ========== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(16, 11, 17, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transition: transform var(--transition), background var(--transition);
}

.site-header.scrolled { background: rgba(16, 11, 17, 0.98); }
.site-header.hidden { transform: translateY(-100%); }

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text);
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    border-radius: 10px;
    font-weight: 900;
    font-size: 16px;
    color: var(--bg);
    letter-spacing: -1px;
}

.logo-text {
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: 1px;
    background: linear-gradient(135deg, var(--accent), #f0cd6e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.main-nav { display: none; }

@media (min-width: 992px) {
    .main-nav { display: block; }
    .hamburger { display: none !important; }
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 6px;
    align-items: center;
}

.nav-list > li > a {
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    color: var(--text);
    font-weight: 500;
    font-size: 0.92rem;
    transition: all var(--transition);
    white-space: nowrap;
}

.nav-list > li > a:hover,
.nav-list > li > a.active {
    background: var(--primary-glow);
    color: var(--accent);
}

.nav-dropdown { position: relative; }
.nav-dropdown .dropdown-toggle { display: flex; align-items: center; gap: 4px; }
.nav-dropdown .dropdown-toggle svg { transition: transform var(--transition); }
.nav-dropdown.open .dropdown-toggle svg { transform: rotate(180deg); }

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 8px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all var(--transition);
    box-shadow: var(--shadow-lg);
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 14px;
    color: var(--text);
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    transition: all var(--transition);
}

.dropdown-menu li a:hover {
    background: var(--primary-glow);
    color: var(--accent);
}

.header-actions { display: none; }
@media (min-width: 992px) { .header-actions { display: flex; } }

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn-accent {
    background: linear-gradient(135deg, var(--accent), #d4a438);
    color: var(--bg);
    box-shadow: 0 4px 20px rgba(230, 185, 66, 0.3);
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(230, 185, 66, 0.45);
    color: var(--bg);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #601462);
    color: var(--text);
    box-shadow: 0 4px 20px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(128, 24, 132, 0.4);
    color: var(--text);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
}

.btn-outline:hover {
    background: var(--accent);
    color: var(--bg);
}

.btn-block { width: 100%; }
.btn-lg { padding: 16px 36px; font-size: 1.1rem; }

/* ========== HAMBURGER ========== */
.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2.5px;
    background: var(--text);
    border-radius: 2px;
    transition: all var(--transition);
    transform-origin: center;
}

.hamburger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ========== MOBILE MENU ========== */
.mobile-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(16, 11, 17, 0.98);
    padding: 24px 20px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
}

.mobile-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.mobile-menu ul { list-style: none; }
.mobile-menu ul li { border-bottom: 1px solid var(--border); }

.mobile-menu ul li a {
    display: block;
    padding: 16px 0;
    color: var(--text);
    font-size: 1.1rem;
    font-weight: 500;
}

.mobile-menu ul li a:hover { color: var(--accent); }

.mobile-menu .btn { margin-top: 24px; }

@media (min-width: 992px) {
    .mobile-menu { display: none !important; }
}

/* ========== HERO ========== */
.hero {
    position: relative;
    padding: 140px 0 80px;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, var(--primary-glow) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, var(--accent-glow) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(128, 24, 132, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 768px) {
    .hero-content { grid-template-columns: 1fr 1fr; }
}

.hero-text h1 {
    margin-bottom: 20px;
}

.hero-text h1 span {
    display: block;
    background: linear-gradient(135deg, var(--accent), #f0cd6e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    line-height: 1.9;
}

.hero-buttons { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 16/10;
}

/* ========== SECTIONS ========== */
.section {
    padding: 80px 0;
}

.section-alt {
    background: var(--surface);
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    margin-bottom: 12px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 700px;
    margin: 0 auto;
}

.section-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--primary));
    margin: 16px auto;
    border-radius: 2px;
}

/* ========== CONTENT ========== */
.content-area {
    padding: 100px 0 60px;
}

.content-area article {
    max-width: 900px;
    margin: 0 auto;
}

.content-area h1 { margin-bottom: 16px; }
.content-area h2 { margin: 48px 0 20px; padding-top: 24px; border-top: 1px solid var(--border); }
.content-area h3 { margin: 32px 0 16px; color: var(--accent); }
.content-area p { margin-bottom: 20px; color: #d4cfd5; }
.content-area ul, .content-area ol { margin: 16px 0 24px 24px; color: #d4cfd5; }
.content-area li { margin-bottom: 8px; }

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.9rem;
}

.article-meta svg { width: 16px; height: 16px; }

.article-banner {
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 40px;
    border: 1px solid var(--border);
}

.article-banner img {
    width: 100%;
    aspect-ratio: 21/9;
    object-fit: cover;
}

/* ========== CARDS ========== */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
}

.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.card-image {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card:hover .card-image img { transform: scale(1.05); }

.card-body {
    padding: 24px;
}

.card-body h3 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.card-body h3 a {
    color: var(--text);
    transition: color var(--transition);
}

.card-body h3 a:hover { color: var(--accent); }

.card-body p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.card-body .card-link {
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* ========== FEATURE GRID ========== */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.feature-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: all var(--transition);
}

.feature-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(230, 185, 66, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    background: linear-gradient(135deg, var(--primary-glow), var(--accent-glow));
    border: 1px solid var(--border);
}

.feature-card h3 { margin-bottom: 10px; font-size: 1.1rem; }
.feature-card p { color: var(--text-muted); font-size: 0.9rem; }

/* ========== REVIEWS ========== */
.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.review-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: all var(--transition);
}

.review-card:hover { border-color: var(--primary); }

.review-stars { color: var(--accent); font-size: 1.2rem; margin-bottom: 12px; letter-spacing: 2px; }

.review-card p { color: #d4cfd5; font-size: 0.95rem; margin-bottom: 16px; line-height: 1.7; }

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--bg);
}

.review-name { font-weight: 600; font-size: 0.9rem; }

/* ========== BANNER SLIDER ========== */
.banner-section {
    overflow: hidden;
    padding: 0;
}

.banner-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 40px 20px;
    scrollbar-width: none;
}

.banner-slider::-webkit-scrollbar { display: none; }

.banner-slide {
    flex: 0 0 80%;
    max-width: 600px;
    scroll-snap-align: center;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.banner-slide img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

@media (min-width: 768px) { .banner-slide { flex: 0 0 45%; } }
@media (min-width: 1200px) { .banner-slide { flex: 0 0 32%; } }

/* ========== CTA BOX ========== */
.cta-box {
    background: linear-gradient(135deg, var(--surface), var(--secondary));
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 48px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, var(--accent-glow) 0%, transparent 70%);
    pointer-events: none;
}

.cta-box h2 { margin-bottom: 16px; position: relative; }
.cta-box p { color: var(--text-muted); margin-bottom: 28px; max-width: 600px; margin-left: auto; margin-right: auto; position: relative; }
.cta-box .btn { position: relative; }

/* ========== FORM ========== */
.form-group { margin-bottom: 20px; }

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text);
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
    font-size: 1rem;
    font-family: inherit;
    transition: all var(--transition);
    outline: none;
}

.form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

textarea.form-control { min-height: 140px; resize: vertical; }

/* ========== PROMO ========== */
.promo-list { display: grid; grid-template-columns: 1fr; gap: 24px; }

.promo-card {
    display: grid;
    grid-template-columns: 1fr;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
}

@media (min-width: 768px) { .promo-card { grid-template-columns: 280px 1fr; } }

.promo-card:hover { border-color: var(--accent); transform: translateY(-2px); }

.promo-image { aspect-ratio: 16/9; overflow: hidden; }
.promo-image img { width: 100%; height: 100%; object-fit: cover; }

.promo-body { padding: 28px; display: flex; flex-direction: column; justify-content: center; }
.promo-body h3 { margin-bottom: 12px; color: var(--accent); }
.promo-body p { color: var(--text-muted); margin-bottom: 16px; font-size: 0.95rem; }

.promo-badge {
    display: inline-flex;
    padding: 4px 14px;
    background: linear-gradient(135deg, var(--accent), #d4a438);
    color: var(--bg);
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
    width: fit-content;
}

/* ========== PARTNER LINKS ========== */
.partner-section {
    padding: 40px 0;
    text-align: center;
}

.partner-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.partner-links a {
    padding: 10px 24px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all var(--transition);
}

.partner-links a:hover {
    border-color: var(--accent);
    background: var(--accent-glow);
    color: var(--accent);
}

/* ========== CONTACT INFO ========== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) { .contact-grid { grid-template-columns: 1fr 1fr; } }

.contact-info-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-info-item:last-child { margin-bottom: 0; }

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--primary-glow);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-info-item h4 { margin-bottom: 4px; font-size: 0.95rem; }
.contact-info-item p { color: var(--text-muted); font-size: 0.9rem; }

/* ========== INTERNAL LINKS ========== */
.internal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 24px 0;
}

.internal-links a {
    padding: 8px 18px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 24px;
    color: var(--text);
    font-size: 0.85rem;
    font-weight: 500;
    transition: all var(--transition);
}

.internal-links a:hover {
    background: var(--accent);
    color: var(--bg);
    border-color: var(--accent);
}

/* ========== PAGE HEADER ========== */
.page-header {
    padding: 120px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center top, var(--primary-glow) 0%, transparent 60%);
    pointer-events: none;
}

.page-header h1 { position: relative; margin-bottom: 16px; }
.page-header p { position: relative; color: var(--text-muted); max-width: 600px; margin: 0 auto; }

/* ========== TABLE ========== */
.table-responsive { overflow-x: auto; margin: 24px 0; border-radius: var(--radius); border: 1px solid var(--border); }

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

thead th {
    background: var(--surface);
    padding: 14px 18px;
    text-align: left;
    font-weight: 600;
    color: var(--accent);
    border-bottom: 2px solid var(--border);
}

tbody td {
    padding: 12px 18px;
    border-bottom: 1px solid var(--border);
}

tbody tr:hover { background: var(--primary-glow); }

/* ========== FOOTER ========== */
.site-footer {
    background: var(--secondary);
    border-top: 1px solid var(--border);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.footer-brand p { color: var(--text-muted); font-size: 0.9rem; margin-top: 16px; line-height: 1.7; }

.footer-links h3 {
    font-size: 1rem;
    margin-bottom: 16px;
    color: var(--accent);
}

.footer-links ul { list-style: none; }

.footer-links li { margin-bottom: 10px; }

.footer-links a {
    color: var(--text-muted);
    font-size: 0.88rem;
    transition: color var(--transition);
}

.footer-links a:hover { color: var(--accent); }

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

/* ========== UTILITIES ========== */
.text-accent { color: var(--accent) !important; }
.text-center { text-align: center; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.pt-0 { padding-top: 0; }
.pb-0 { padding-bottom: 0; }

/* ========== FAQ SECTION ========== */
.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
    background: var(--surface);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    background: none;
    border: none;
    color: var(--text);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    transition: color var(--transition);
}

.faq-question:hover { color: var(--accent); }

.faq-question svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform var(--transition);
    color: var(--accent);
}

.faq-item.open .faq-question svg { transform: rotate(180deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer { max-height: 500px; }

.faq-answer-inner {
    padding: 0 24px 20px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 767px) {
    .hero { padding: 100px 0 60px; min-height: auto; }
    .section { padding: 50px 0; }
    .card-grid { grid-template-columns: 1fr; }
    .feature-grid { grid-template-columns: 1fr; }
    .review-grid { grid-template-columns: 1fr; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; }
    h1 { font-size: 1.6rem; }
    h2 { font-size: 1.3rem; }
}
