/* ===== VARIABLES ===== */
:root {
    --primary: #131921;
    --primary-light: #232f3e;
    --accent: #FF9900;
    --accent-hover: #e68a00;
    --accent-light: #FFF3E0;
    --success: #4caf50;
    --star: #FFA41C;
    --text: #0F1111;
    --text-light: #565959;
    --text-muted: #888;
    --bg: #f5f5f5;
    --bg-white: #ffffff;
    --border: #e0e0e0;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ===== RESET ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font);
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul { list-style: none; }

/* ===== UTILITY ===== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.highlight {
    color: var(--accent);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font);
}

.btn-primary {
    background: var(--accent);
    color: var(--primary);
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 153, 0, 0.4);
}

.btn-secondary {
    background: var(--primary);
    color: #fff;
}

.btn-secondary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--primary);
    color: #ccc;
    font-size: 0.8rem;
    padding: 8px 0;
}

.top-bar .container {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.top-bar span {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ===== HEADER ===== */
.header {
    background: var(--bg-white);
    border-bottom: 3px solid var(--accent);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    padding-bottom: 12px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent);
}

.logo-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
    display: block;
    line-height: 1.2;
}

.logo-tagline {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 400;
}

.nav {
    display: flex;
    gap: 8px;
}

.nav .nav-link {
    padding: 10px 20px;
    font-weight: 500;
    color: var(--text);
    border-radius: 50px;
    transition: var(--transition);
    font-size: 0.95rem;
}

.nav .nav-link:hover {
    background: var(--accent-light);
    color: var(--accent);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2.5px;
    background: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-nav {
    display: none;
    flex-direction: column;
    background: var(--bg-white);
    border-top: 1px solid var(--border);
    padding: 16px 24px;
}

.mobile-nav .nav-link {
    padding: 12px 0;
    font-weight: 500;
    border-bottom: 1px solid var(--border);
}

.mobile-nav.active {
    display: flex;
}

/* ===== HERO ===== */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: #b8b8b8;
    margin-bottom: 36px;
    line-height: 1.7;
}

.hero-shapes .shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
    background: var(--accent);
}

.shape-1 {
    width: 500px; height: 500px;
    top: -150px; right: -100px;
}

.shape-2 {
    width: 300px; height: 300px;
    bottom: -80px; right: 200px;
}

.shape-3 {
    width: 200px; height: 200px;
    bottom: 40px; left: -60px;
}

/* ===== TRUST BAR ===== */
.trust-bar {
    background: var(--bg-white);
    padding: 32px 0;
    border-bottom: 1px solid var(--border);
}

.trust-bar-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    justify-content: center;
}

.trust-icon {
    font-size: 2rem;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-light);
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.trust-item strong {
    font-size: 0.95rem;
    color: var(--text);
}

.trust-item p {
    font-size: 0.8rem;
    color: var(--text-light);
    margin: 0;
}

/* ===== SECTION COMMON ===== */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 550px;
    margin: 0 auto;
}

/* ===== FILTER BAR ===== */
.filter-bar {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    border: 2px solid var(--border);
    background: var(--bg-white);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font);
    color: var(--text);
}

.filter-btn:hover,
.filter-btn.active {
    border-color: var(--accent);
    background: var(--accent);
    color: var(--primary);
}

/* ===== PRODUCTS SECTION ===== */
.products-section {
    padding: 80px 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
}

/* ===== PRODUCT CARD ===== */
.product-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
    position: relative;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent);
}

.product-card .badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--accent);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 50px;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-image-wrap {
    position: relative;
    background: #fafafa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    min-height: 260px;
    overflow: hidden;
}

.product-image-wrap img {
    max-height: 220px;
    object-fit: contain;
    transition: var(--transition);
}

.product-card:hover .product-image-wrap img {
    transform: scale(1.05);
}

.product-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-desc {
    font-size: 0.88rem;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.stars {
    display: flex;
    gap: 1px;
}

.star {
    color: var(--star);
    font-size: 1rem;
}

.star.empty {
    color: #ddd;
}

.star.half {
    position: relative;
    color: #ddd;
}

.star.half::before {
    content: "★";
    position: absolute;
    left: 0;
    color: var(--star);
    overflow: hidden;
    width: 50%;
}

.rating-score {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text);
}

.rating-count {
    font-size: 0.82rem;
    color: var(--text-light);
}

.product-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 8px;
}

.product-price {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
}

.product-price .currency {
    font-size: 0.95rem;
    vertical-align: super;
}

.prime-badge {
    background: var(--primary);
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.product-cta {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px;
    background: var(--accent);
    color: var(--primary);
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-family: var(--font);
    margin-bottom: 16px;
}

.product-cta:hover {
    background: var(--accent-hover);
    box-shadow: 0 4px 15px rgba(255, 153, 0, 0.4);
}

/* Reviews Accordion */
.reviews-toggle {
    width: 100%;
    background: none;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 10px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--font);
}

.reviews-toggle:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.reviews-toggle .arrow {
    transition: var(--transition);
    font-size: 0.7rem;
}

.reviews-toggle.active .arrow {
    transform: rotate(180deg);
}

.reviews-container {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.reviews-container.open {
    max-height: 600px;
    overflow-y: auto;
}

.review-item {
    padding: 14px 0;
    border-bottom: 1px solid #f0f0f0;
}

.review-item:last-child {
    border-bottom: none;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.review-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--accent);
    flex-shrink: 0;
}

.review-name {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text);
}

.review-stars {
    font-size: 0.75rem;
    color: var(--star);
    margin-left: auto;
}

.review-text {
    font-size: 0.82rem;
    color: var(--text-light);
    line-height: 1.6;
    padding-left: 40px;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--primary);
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.8;
}

.about-list li {
    padding: 8px 0;
    font-weight: 500;
    color: var(--text);
    font-size: 0.95rem;
}

.about-image {
    display: flex;
    justify-content: center;
}

.about-image img {
    max-width: 350px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* ===== NEWSLETTER ===== */
.newsletter {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
}

.newsletter-inner {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter h2 {
    color: #fff;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.newsletter p {
    color: #aaa;
    margin-bottom: 32px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 480px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border: none;
    border-radius: 50px;
    font-size: 0.95rem;
    font-family: var(--font);
    outline: none;
}

.newsletter-form input:focus {
    box-shadow: 0 0 0 3px rgba(255, 153, 0, 0.3);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--primary);
    color: #ccc;
    padding-top: 60px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 16px;
    border: 2px solid var(--accent);
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 320px;
}

.footer-links h4 {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-links a {
    display: block;
    padding: 6px 0;
    font-size: 0.88rem;
    color: #999;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 6px;
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: #777;
}

.affiliate-disclosure {
    margin-top: 8px;
    font-size: 0.75rem !important;
    color: #555 !important;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--accent);
    color: var(--primary);
    border: none;
    border-radius: 50%;
    font-size: 1.4rem;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card {
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}

.product-card:nth-child(1) { animation-delay: 0.05s; }
.product-card:nth-child(2) { animation-delay: 0.1s; }
.product-card:nth-child(3) { animation-delay: 0.15s; }
.product-card:nth-child(4) { animation-delay: 0.2s; }
.product-card:nth-child(5) { animation-delay: 0.25s; }
.product-card:nth-child(6) { animation-delay: 0.3s; }
.product-card:nth-child(7) { animation-delay: 0.35s; }
.product-card:nth-child(8) { animation-delay: 0.4s; }
.product-card:nth-child(9) { animation-delay: 0.45s; }
.product-card:nth-child(10) { animation-delay: 0.5s; }
.product-card:nth-child(11) { animation-delay: 0.55s; }
.product-card:nth-child(12) { animation-delay: 0.6s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .trust-bar-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav { display: none; }

    .mobile-menu-btn { display: flex; }

    .hero-title { font-size: 2.2rem; }
    .hero { padding: 60px 0 50px; }

    .section-title { font-size: 1.6rem; }

    .products-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }

    .trust-bar-inner {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .trust-item {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .top-bar .container {
        flex-direction: column;
        gap: 4px;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-title { font-size: 1.8rem; }

    .logo-title { font-size: 1.1rem; }

    .logo-img { width: 40px; height: 40px; }

    .product-image-wrap { min-height: 200px; padding: 16px; }

    .product-image-wrap img { max-height: 180px; }
}

/* ===== SCROLLBAR ===== */
.reviews-container::-webkit-scrollbar {
    width: 4px;
}

.reviews-container::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 4px;
}

.reviews-container::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 4px;
}

/* ===== NO PRODUCTS MESSAGE ===== */
.no-products {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-light);
}

.no-products .icon {
    font-size: 4rem;
    margin-bottom: 16px;
}

.no-products h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--text);
}

/* ===== PAGE HERO (Sub-pages) ===== */
.page-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 70px 0 50px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.page-hero-title {
    font-size: 2.6rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}

.page-hero-subtitle {
    color: #aaa;
    font-size: 1.05rem;
}

/* ===== LEGAL PAGES ===== */
.legal-section {
    padding: 60px 0 80px;
}

.legal-container {
    max-width: 860px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: 40px;
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--accent-light);
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text);
    margin-top: 24px;
    margin-bottom: 10px;
}

.legal-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-content ul,
.legal-content ol {
    padding-left: 24px;
    margin-bottom: 20px;
}

.legal-content ul {
    list-style: disc;
}

.legal-content ol {
    list-style: decimal;
}

.legal-content li {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 8px;
}

.text-link {
    color: var(--accent);
    font-weight: 600;
    transition: var(--transition);
    text-decoration: underline;
    text-decoration-color: transparent;
}

.text-link:hover {
    text-decoration-color: var(--accent);
}

/* ===== DISCLOSURE HIGHLIGHT ===== */
.disclosure-highlight {
    background: var(--accent-light);
    border-left: 4px solid var(--accent);
    padding: 24px 28px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin-bottom: 32px;
}

.disclosure-highlight p {
    color: var(--text);
    font-size: 1rem;
    margin-bottom: 0;
}

/* ===== ABOUT PAGE ===== */
.about-hero-block {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border);
}

.about-hero-img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent);
}

.about-hero-block h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 4px;
}

.about-tagline {
    color: var(--text-light);
    font-size: 0.95rem;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 32px 0;
}

.value-card {
    background: var(--bg);
    border-radius: var(--radius-md);
    padding: 28px;
    text-align: center;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.value-card:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.value-icon {
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.value-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.value-card p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.6;
}

.how-it-works {
    counter-reset: step;
    list-style: none !important;
    padding-left: 0 !important;
}

.how-it-works li {
    position: relative;
    padding: 16px 16px 16px 56px;
    margin-bottom: 12px;
    background: var(--bg);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
}

.how-it-works li::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background: var(--accent);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-form-wrap h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.contact-form-wrap > p {
    color: var(--text-light);
    margin-bottom: 28px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-family: var(--font);
    transition: var(--transition);
    background: var(--bg-white);
    color: var(--text);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(255, 153, 0, 0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-submit {
    align-self: flex-start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 28px;
    transition: var(--transition);
}

.contact-info-card:hover {
    border-color: var(--accent);
}

.contact-info-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.contact-info-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.contact-info-card p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 8px;
}

.social-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-link {
    padding: 8px 18px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--accent);
    color: var(--primary);
    border-color: var(--accent);
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 60px 0 80px;
    background: var(--bg-white);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 960px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 28px;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-sm);
}

.faq-item h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.faq-item p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ===== RESPONSIVE (Sub-pages) ===== */
@media (max-width: 768px) {
    .page-hero-title { font-size: 1.8rem; }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .about-values {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .about-hero-block {
        flex-direction: column;
        text-align: center;
    }
}
