/* =====================================================
   TELUR PREMIUM — Main Stylesheet
   ===================================================== */

:root {
    --orange: #E85D04;
    --orange-light: #F4A261;
    --orange-dark: #CC4E00;
    --green: #2D6A4F;
    --green-light: #40916C;
    --green-dark: #1B4332;
    --peach: #F4A261;
    --bg: #FAFAFA;
    --bg-card: #FFFFFF;
    --text: #1A1A2E;
    --text-light: #555;
    --text-muted: #888;
    --border: #E5E5E5;
    --shadow: 0 2px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 20px;
    --transition: 0.3s ease;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    --container: 1200px;
}

/* Reset */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { font-family: var(--font-body); font-size: 16px; line-height: 1.7; color: var(--text); background: var(--bg); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ========== HEADER ========== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    gap: 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--text);
    flex-shrink: 0;
}

.logo-icon { font-size: 1.5rem; }
.logo-text strong { color: var(--orange); }

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

.nav-link {
    padding: 6px 12px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-light);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: var(--orange);
    background: rgba(232, 93, 4, 0.08);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.lang-switch {
    padding: 5px 10px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-light);
    letter-spacing: 1px;
    transition: var(--transition);
}

.lang-switch:hover { border-color: var(--orange); color: var(--orange); }

.btn-sm { padding: 8px 14px; font-size: 0.85rem; }

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 12px 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    border-top: 1px solid var(--border);
}

.mobile-menu.open { display: flex; }

.mobile-link {
    padding: 12px 16px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text);
    border-radius: var(--radius-sm);
}

.mobile-link:hover,
.mobile-link.active { color: var(--orange); background: rgba(232, 93, 4, 0.06); }

.mobile-menu-actions {
    display: flex;
    gap: 10px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

.mobile-menu-actions .btn { flex: 1; justify-content: center; }

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-wa { background: var(--green); color: #fff; }
.btn-wa:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 4px 16px rgba(45,106,79,0.3); }

.btn-orange { background: var(--orange); color: #fff; }
.btn-orange:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 4px 16px rgba(232,93,4,0.3); }

.btn-outline { background: transparent; border: 2px solid var(--orange); color: var(--orange); }
.btn-outline:hover { background: var(--orange); color: #fff; }

.btn-white { background: #fff; color: var(--orange); }
.btn-white:hover { background: #f0f0f0; transform: translateY(-2px); }

.btn-lg { padding: 16px 32px; font-size: 1.1rem; border-radius: var(--radius-lg); }

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.mobile-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

/* ========== SECTIONS ========== */
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }

.section-header { text-align: center; margin-bottom: 48px; }

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text);
}

.section-header p {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 560px;
    margin: 0 auto;
}

/* ========== HERO ========== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: grid;
    grid-template-columns: 42% 1fr;
    overflow: hidden;
}

.hero-text-col {
    display: flex;
    align-items: center;
    background: #0d0805;
    padding: 0 48px 0 64px;
    position: relative;
    z-index: 2;
}

.hero-text-col::after {
    content: '';
    position: absolute;
    top: 0;
    right: -40px;
    width: 80px;
    height: 100%;
    background: linear-gradient(to right, #0d0805 0%, transparent 100%);
    z-index: 3;
    pointer-events: none;
}

.hero-text-inner {
    width: 100%;
    max-width: 440px;
    color: #fff;
}

.hero-video-col {
    position: relative;
    overflow: hidden;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    background:
        radial-gradient(ellipse 80% 70% at 60% 50%, transparent 40%, rgba(13,8,5,0.35) 100%),
        linear-gradient(to right,
            #0d0805 0%,
            rgba(13,8,5,0.7) 15%,
            rgba(13,8,5,0.2) 35%,
            transparent 55%);
}

.hero-video-col::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 45%;
    background: linear-gradient(to top,
        rgba(13,8,5,0.6) 0%,
        rgba(13,8,5,0.2) 40%,
        transparent 100%);
    z-index: 2;
    pointer-events: none;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 40% center;
    filter: brightness(1.12) saturate(1.25) contrast(1.08);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(232,93,4,0.15);
    color: var(--orange-light);
    padding: 8px 18px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 22px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    border: 1px solid rgba(232,93,4,0.25);
}

.hero-text-inner h1 {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 0;
    letter-spacing: -0.5px;
}

.hero-text-inner h1 span {
    display: block;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
    margin-top: 8px;
    letter-spacing: 0;
    background: linear-gradient(90deg, var(--orange-light), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text-inner .subtitle {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255,255,255,0.72);
    margin-top: 20px;
    margin-bottom: 32px;
    max-width: 380px;
    line-height: 1.7;
}

.hero-badges {
    display: flex;
    gap: 10px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.hero-badge-item {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(8px);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    border: 1px solid rgba(255,255,255,0.08);
    transition: background var(--transition), border-color var(--transition);
}

.hero-badge-item:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(244,162,97,0.2);
}

.hero-badge-item .icon { font-size: 0.95rem; }

.hero-visual { display: none; }

/* ========== USP CARDS ========== */
.usp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.usp-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid transparent;
}

.usp-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(232,93,4,0.12);
}

.usp-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 16px;
}

.usp-icon.fresh { background: rgba(45,106,79,0.1); }
.usp-icon.omega { background: rgba(232,93,4,0.1); }
.usp-icon.safe { background: rgba(244,162,97,0.15); }

.usp-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

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

/* ========== PRODUCT CARDS ========== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.product-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid transparent;
    position: relative;
}

.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.product-card.featured { border: 2px solid var(--orange); }

.product-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--orange);
    color: #fff;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.product-img {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    position: relative;
    overflow: hidden;
}

.product-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(to top, var(--bg-card), transparent);
}

.product-body { padding: 20px 24px 24px; }

.product-body h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.product-features {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 20px;
}

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

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

/* ========== COMPARISON TABLE ========== */
.comparison-section {
    background: linear-gradient(135deg, #FFF5EB 0%, #FFFFFF 100%);
}

.comparison-table {
    max-width: 760px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.comparison-table table { width: 100%; border-collapse: collapse; }

.comparison-table th,
.comparison-table td {
    padding: 14px 20px;
    text-align: center;
    font-size: 0.9rem;
}

.comparison-table thead th {
    background: var(--green);
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
}

.comparison-table thead th:first-child { background: var(--green-dark); }

.comparison-table tbody tr:nth-child(even) { background: #F9F9F9; }

.comparison-table tbody td:first-child { text-align: left; font-weight: 500; }

.comparison-table .highlight { color: var(--orange); font-weight: 700; }

/* ========== ABOUT ========== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.about-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-placeholder {
    width: 100%;
    height: 360px;
    background: linear-gradient(135deg, var(--green), var(--green-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: rgba(255,255,255,0.5);
}

.about-content h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-content .mission {
    background: rgba(45,106,79,0.08);
    border-left: 4px solid var(--green);
    padding: 16px 20px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
    color: var(--green-dark);
    font-weight: 500;
    margin-top: 20px;
}

/* ========== PROCESS STEPS ========== */
.process-steps {
    display: flex;
    gap: 20px;
    margin-top: 48px;
    flex-wrap: wrap;
    justify-content: center;
}

.process-step {
    flex: 1;
    min-width: 160px;
    max-width: 200px;
    text-align: center;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '→';
    position: absolute;
    right: -14px;
    top: 28px;
    font-size: 1.3rem;
    color: var(--orange);
}

.step-number {
    width: 52px;
    height: 52px;
    background: var(--orange);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 auto 12px;
}

.process-step h4 {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
}

/* ========== ADVANTAGE ========== */
.advantage-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.advantage-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

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

.advantage-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    flex-shrink: 0;
}

.advantage-icon.green { background: rgba(45,106,79,0.1); }
.advantage-icon.orange { background: rgba(232,93,4,0.1); }
.advantage-icon.peach { background: rgba(244,162,97,0.15); }

.advantage-text h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.advantage-text p { color: var(--text-light); font-size: 0.9rem; line-height: 1.7; }

/* ========== GALLERY ========== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    position: relative;
    aspect-ratio: 4/3;
}

.gallery-item-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: rgba(255,255,255,0.8);
    transition: var(--transition);
}

.gallery-item:nth-child(odd) .gallery-item-placeholder { background: linear-gradient(135deg, var(--green), var(--green-light)); }
.gallery-item:nth-child(even) .gallery-item-placeholder { background: linear-gradient(135deg, var(--orange), var(--orange-light)); }

.gallery-item:hover .gallery-item-placeholder { transform: scale(1.05); }

.gallery-item-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: #fff;
    padding: 16px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* ========== TESTIMONIALS ========== */
.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testi-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.testi-stars {
    color: #F4A261;
    font-size: 1rem;
    margin-bottom: 14px;
    letter-spacing: 2px;
}

.testi-card blockquote {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 18px;
    font-style: italic;
}

.testi-author { display: flex; align-items: center; gap: 12px; }

.testi-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--peach);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--orange-dark);
    flex-shrink: 0;
}

.testi-name { font-weight: 600; font-size: 0.85rem; }
.testi-location { font-size: 0.75rem; color: var(--text-muted); }

/* ========== BLOG ========== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.blog-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.blog-thumb {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: rgba(255,255,255,0.8);
}

.blog-card:nth-child(1) .blog-thumb { background: linear-gradient(135deg, #E85D04, #F4A261); }
.blog-card:nth-child(2) .blog-thumb { background: linear-gradient(135deg, #2D6A4F, #40916C); }
.blog-card:nth-child(3) .blog-thumb { background: linear-gradient(135deg, #F4A261, #E85D04); }

.blog-body { padding: 18px 20px 20px; }

.blog-date { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 6px; }

.blog-body h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.4;
}

.blog-body p { font-size: 0.85rem; color: var(--text-light); margin-bottom: 14px; }

.blog-body .read-more { color: var(--orange); font-weight: 600; font-size: 0.85rem; }
.blog-body .read-more:hover { text-decoration: underline; }

/* ========== FAQ ========== */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.faq-list { display: flex; flex-direction: column; gap: 10px; }

.faq-item {
    background: var(--bg-card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 16px 18px;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text);
}

.faq-question::after {
    content: '+';
    font-size: 1.2rem;
    color: var(--orange);
    transition: var(--transition);
    flex-shrink: 0;
    margin-left: 12px;
}

.faq-item.open .faq-question::after { content: '−'; }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p { padding: 0 18px 16px; color: var(--text-light); font-size: 0.9rem; line-height: 1.7; }

/* ========== CONTACT FORM ========== */
.contact-box {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow);
}

.contact-box h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

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

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 4px;
    color: var(--text-light);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 14px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: var(--transition);
    background: var(--bg);
}

.form-group input:focus,
.form-group textarea:focus { outline: none; border-color: var(--orange); background: #fff; }

.form-group textarea { resize: vertical; min-height: 90px; }

/* ========== CTA BANNER ========== */
.cta-banner {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    color: #fff;
    text-align: center;
    padding: 56px 24px;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -15%;
    width: 280px;
    height: 280px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
}

.cta-banner h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
}

.cta-banner p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 24px;
    position: relative;
}

.cta-banner .btn { position: relative; }

/* ========== FOOTER ========== */
.site-footer {
    background: var(--text);
    color: #ccc;
    padding: 56px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 36px;
}

.footer-brand .logo { color: #fff; margin-bottom: 14px; }
.footer-brand .logo-text strong { color: var(--orange-light); }

.footer-brand p { font-size: 0.85rem; line-height: 1.7; margin-bottom: 18px; }

.social-links { display: flex; gap: 10px; }

.social-links a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
}

.social-links a:hover { background: var(--orange); color: #fff; }

.footer-col h4 {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 18px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 8px; }

.footer-col ul li a { font-size: 0.85rem; }
.footer-col ul li a:hover { color: var(--orange-light); }

.contact-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.85rem; }
.contact-list li svg { flex-shrink: 0; margin-top: 3px; color: var(--orange-light); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 18px 0;
    text-align: center;
    font-size: 0.8rem;
}

/* ========== FLOATING WA ========== */
.floating-wa {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: var(--green);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(45,106,79,0.4);
    z-index: 999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.floating-wa:hover { transform: scale(1.1); background: var(--green-dark); }

@keyframes pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(45,106,79,0.4); }
    50% { box-shadow: 0 4px 30px rgba(45,106,79,0.6); }
}

/* ========== UTILITIES ========== */
.text-center { text-align: center; }
.mt-48 { margin-top: 48px; }
.mt-32 { margin-top: 32px; }
.mb-24 { margin-bottom: 24px; }

/* ========== CONTACT SECTION IN FAQ ========== */
.contact-divider {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.contact-divider h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    margin-bottom: 14px;
    color: var(--text);
}

.contact-divider .contact-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-divider .contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
}

.contact-divider .contact-list li svg {
    flex-shrink: 0;
    color: var(--green);
}

.contact-divider .contact-list li a {
    color: var(--text);
}

.contact-divider .contact-list li a:hover {
    color: var(--orange);
}

.contact-divider .contact-list li .wa-link {
    color: var(--green);
    font-weight: 600;
}

.hero-mini {
    min-height: 40vh;
    align-items: center;
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 50%, var(--green-light) 100%);
}

.hero-mini .hero-video-col { display: none; }

.hero-mini .hero-text-col::after { display: none; }

.hero-mini .hero-text-col {
    grid-column: 1 / -1;
    padding: 0;
    justify-content: center;
    text-align: center;
}

.hero-mini .hero-text-inner {
    max-width: 100%;
}

.hero-mini .hero-text-inner h1 {
    font-size: 2.2rem;
}

.hero-mini .hero-text-inner .subtitle {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-mini .hero-badges {
    justify-content: center;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .main-nav { display: none; }
    .mobile-toggle { display: flex; }

    .hero { grid-template-columns: 50% 1fr; }
    .hero-text-col { padding-left: 48px; }
    .hero-text-inner h1 { font-size: 2.6rem; }
    .hero-text-inner h1 span { font-size: 1.35rem; }

    .about-grid,
    .advantage-grid,
    .faq-grid { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 768px) {
    .header-inner { height: 56px; }
    .mobile-menu { top: 56px; }

    .hero {
        grid-template-columns: 1fr;
        min-height: 100vh;
        position: relative;
    }

    .hero-video-col {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
    }

    .hero-video-overlay {
        background:
            radial-gradient(ellipse 80% 70% at 50% 50%, rgba(13,8,5,0.3) 0%, rgba(13,8,5,0.6) 100%),
            linear-gradient(to top, rgba(13,8,5,0.85) 0%, rgba(13,8,5,0.4) 40%, rgba(13,8,5,0.5) 100%);
    }

    .hero-video-col::after {
        height: 100%;
        background: linear-gradient(to top,
            rgba(13,8,5,0.9) 0%,
            rgba(13,8,5,0.5) 30%,
            rgba(13,8,5,0.4) 60%,
            rgba(13,8,5,0.5) 100%);
    }

    .hero-text-col {
        position: relative;
        z-index: 2;
        background: transparent;
        padding: 0 24px 56px;
        align-items: flex-end;
        min-height: 100vh;
    }

    .hero-text-col::after { display: none; }

    .hero-text-inner { max-width: 100%; }
    .hero-text-inner h1 { font-size: 2rem; }
    .hero-text-inner h1 span { font-size: 1.15rem; }
    .hero-text-inner .subtitle { font-size: 0.95rem; line-height: 1.6; max-width: 100%; }
    .hero-badge { font-size: 0.65rem; padding: 5px 14px; }
    .hero-badges { gap: 8px; margin-top: 24px; }
    .hero-badge-item { padding: 6px 12px; font-size: 0.75rem; }
    .section { padding: 48px 0; }
    .section-header h2 { font-size: 1.6rem; }

    .usp-grid,
    .product-grid,
    .testi-grid,
    .blog-grid,
    .gallery-grid { grid-template-columns: 1fr; }

    .process-steps { flex-direction: column; align-items: center; }

    .process-step::after {
        content: '\2193';
        position: static;
        display: block;
        margin: 6px 0;
    }

    .advantage-card { flex-direction: column; text-align: center; }

    .cta-banner { padding: 40px 20px; }
    .cta-banner h2 { font-size: 1.4rem; }

    .hero-badges { flex-direction: column; align-items: flex-start; }
    .lang-switch { display: none; }
}

@media (max-width: 480px) {
    .hero-text-inner h1 { font-size: 1.7rem; }
    .hero-text-inner h1 span { font-size: 1.05rem; }
    .hero-text-inner .subtitle { font-size: 0.9rem; }
    .btn-lg { padding: 12px 22px; font-size: 0.9rem; }
    .comparison-table th,
    .comparison-table td { padding: 10px 12px; font-size: 0.8rem; }
}
