/* ===================================
   POSHTECH SOLUTIONS - MAIN STYLESHEET
   Edit colors, fonts, and styles here
   =================================== */

/* === COLOR VARIABLES - Edit these to change site colors === */
:root {
    --primary-blue: #0B3D91;
    --accent-orange: #FF6A00;
    --dark-text: #222222;
    --muted-text: #6B7280;
    --light-bg: #F6F7F9;
    --white: #FFFFFF;
    --gradient-start: #0B3D91;
    --gradient-end: #274CAF;
}

/* === RESET & BASE STYLES === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    background: var(--light-bg);
}

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

/* === HEADER === */
.header {
    background: var(--primary-blue);
    color: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

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

.logo-icon {
    width: 45px;
    height: 45px;
    color: var(--accent-orange);
    stroke-width: 2;
}

.logo-image {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.logo-text h1 {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
}

.logo-text p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
}

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

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 8px 0;
}

.nav-link:hover {
    color: var(--accent-orange);
}

.nav-link.active {
    color: var(--accent-orange);
    border-bottom: 2px solid var(--accent-orange);
}

/* === DROPDOWN MENU === */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    overflow: hidden;
    z-index: 1000;
    margin-top: 8px;
}

.dropdown-content a {
    color: var(--dark-text);
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    transition: background 0.3s ease;
}

.dropdown-content a:hover {
    background: var(--light-bg);
    color: var(--accent-orange);
}

.dropdown-content a.active {
    background: var(--accent-orange);
    color: var(--white);
}

.nav-dropdown:hover .dropdown-content {
    display: block;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: 0.3s;
}

@media (max-width: 768px) {
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary-blue);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        align-items: flex-start;
    }

    .nav.active {
        display: flex;
    }

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

    /* Mobile dropdown */
    .nav-dropdown {
        width: 100%;
    }

    .dropdown-content {
        position: static;
        display: none;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.1);
        margin-top: 8px;
        width: 100%;
    }

    .nav-dropdown.active .dropdown-content {
        display: block;
    }

    .dropdown-content a {
        color: var(--white);
        padding: 10px 20px;
    }

    .dropdown-content a:hover {
        background: rgba(255, 255, 255, 0.1);
    }

    .dropdown-content a.active {
        background: var(--accent-orange);
    }
}

/* === HERO SECTION === */
.hero {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    color: var(--white);
    padding: 100px 0;
    position: relative;
}

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

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

.hero-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero-description {
    font-size: 20px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* === BUTTONS === */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--accent-orange);
    color: var(--white);
}

.btn-primary:hover {
    background: #E85A00;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 106, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-blue);
}

.btn-small {
    padding: 10px 20px;
    font-size: 14px;
}

/* === STATISTICS SECTION === */
.stats {
    background: var(--white);
    padding: 48px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    text-align: center;
}

.stat-value {
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-orange);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: var(--muted-text);
}

section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 48px;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 16px;
}

.section-description {
    font-size: 18px;
    color: var(--muted-text);
}

.about {
    background: var(--light-bg);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.card {
    background: var(--white);
    padding: 32px;
    border-radius: 12px;
    border-top: 4px solid var(--accent-orange);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.card-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 12px;
}

.card-text {
    color: var(--muted-text);
    line-height: 1.8;
}

.products {
    background: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.product-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.product-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: linear-gradient(to top, rgba(11, 61, 145, 0.8), transparent);
    display: flex;
    align-items: flex-end;
}

.product-icon {
    width: 40px;
    height: 40px;
    color: var(--accent-orange);
    stroke-width: 2;
}

.product-content {
    padding: 24px;
}

.product-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 12px;
}

.product-description {
    color: var(--muted-text);
    line-height: 1.8;
    margin-bottom: 16px;
}

.markets {
    background: var(--light-bg);
}

.markets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.market-item {
    background: var(--white);
    padding: 32px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.market-item:hover {
    border-color: var(--accent-orange);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.market-icon {
    width: 48px;
    height: 48px;
    color: var(--primary-blue);
    stroke-width: 2;
    margin: 0 auto 12px;
    transition: color 0.3s ease;
}

.market-item:hover .market-icon {
    color: var(--accent-orange);
}

.market-item h4 {
    font-size: 16px;
    color: var(--dark-text);
}

.additional-markets {
    background: var(--white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.additional-markets h3 {
    font-size: 24px;
    color: var(--primary-blue);
    margin-bottom: 16px;
}

.markets-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
}

.markets-list ul {
    list-style: none;
}

.markets-list li {
    padding: 8px 0;
    color: var(--muted-text);
    position: relative;
    padding-left: 24px;
}

.markets-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-orange);
    font-weight: bold;
}

.contact {
    background: var(--primary-blue);
    color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 32px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-card-wide {
    grid-column: span 2;
}

.contact-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
}

.contact-icon svg {
    width: 100%;
    height: 100%;
    color: var(--accent-orange);
    stroke-width: 2;
}

.contact-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--white);
}

.contact-card p {
    color: rgba(255, 255, 255, 0.9);
    margin: 4px 0;
}

.footer {
    background: var(--dark-text);
    color: var(--muted-text);
    padding: 32px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-nav {
    display: flex;
    gap: 24px;
}

.footer-nav a {
    color: var(--muted-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

@media (max-width: 768px) {
    .hero-title { font-size: 36px; }
    .section-title { font-size: 32px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .cards-grid, .products-grid, .markets-grid { grid-template-columns: 1fr; }
    .contact-card-wide { grid-column: span 1; }
    .footer-content { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .hero { padding: 60px 0; }
    .hero-title { font-size: 28px; }
    section { padding: 48px 0; }
    .stat-value { font-size: 36px; }
    .btn { width: 100%; text-align: center; }
    .stats-grid { grid-template-columns: 1fr; }
}

/* === BREADCRUMB === */
.breadcrumb {
    background: var(--light-bg);
    padding: 16px 0;
    font-size: 14px;
}

.breadcrumb a {
    color: var(--primary-blue);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--accent-orange);
}

.breadcrumb span {
    color: var(--muted-text);
}

/* === PRODUCT PAGES === */
.product-hero {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.product-hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
}

.product-hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.product-details {
    padding: 80px 0;
    background: var(--white);
}

.product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.product-image-large {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.product-image-large img {
    width: 100%;
    height: auto;
    display: block;
}

.product-info h2 {
    font-size: 32px;
    color: var(--primary-blue);
    margin-bottom: 16px;
}

.product-intro {
    font-size: 18px;
    line-height: 1.8;
    color: var(--muted-text);
    margin-bottom: 32px;
}

.features-list {
    margin-bottom: 32px;
}

.features-list h3 {
    font-size: 24px;
    color: var(--primary-blue);
    margin-bottom: 16px;
}

.features-list ul {
    list-style: none;
    padding: 0;
}

.features-list li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    color: var(--dark-text);
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-orange);
    font-weight: bold;
    font-size: 18px;
}

.product-types {
    background: var(--light-bg);
    padding: 80px 0;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.type-card {
    background: var(--white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.type-card h3 {
    font-size: 20px;
    color: var(--primary-blue);
    margin-bottom: 12px;
}

.type-card p {
    color: var(--muted-text);
    margin-bottom: 12px;
}

.type-card ul {
    list-style: none;
    padding: 0;
    margin-top: 16px;
}

.type-card li {
    padding: 4px 0;
    color: var(--muted-text);
    font-size: 14px;
}

.featured-product {
    background: var(--light-bg);
    padding: 80px 0;
}

.featured-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 48px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.featured-content h2 {
    font-size: 32px;
    color: var(--primary-blue);
    margin-bottom: 16px;
}

.featured-specs {
    margin-top: 32px;
}

.featured-specs h3 {
    font-size: 24px;
    color: var(--primary-blue);
    margin-bottom: 16px;
}

.applications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.app-card {
    background: var(--white);
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.app-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.app-card h4 {
    font-size: 18px;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.app-card p {
    color: var(--muted-text);
    font-size: 14px;
}

.cta-section {
    background: var(--primary-blue);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.9);
}

.btn-large {
    padding: 18px 48px;
    font-size: 18px;
}

/* === HOW IT WORKS === */
.how-it-works {
    padding: 80px 0;
    background: var(--white);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.step-card {
    text-align: center;
    padding: 32px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--accent-orange);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-card h3 {
    font-size: 22px;
    color: var(--primary-blue);
    margin-bottom: 12px;
}

.step-card p {
    color: var(--muted-text);
    line-height: 1.6;
}

/* === SPECIFICATIONS === */
.specifications {
    padding: 80px 0;
    background: var(--light-bg);
}

.spec-table table {
    width: 100%;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.spec-table th {
    background: var(--primary-blue);
    color: var(--white);
    padding: 16px;
    text-align: left;
    font-weight: 600;
}

.spec-table td {
    padding: 16px;
    border-bottom: 1px solid var(--light-bg);
    color: var(--dark-text);
}

.spec-table tr:last-child td {
    border-bottom: none;
}

.spec-table tr:hover {
    background: var(--light-bg);
}

/* === COMPLIANCE === */
.compliance-section {
    padding: 80px 0;
    background: var(--white);
}

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

.compliance-badge {
    background: var(--primary-blue);
    color: var(--white);
    padding: 48px;
    border-radius: 12px;
    text-align: center;
}

.compliance-badge h3 {
    font-size: 48px;
    margin-bottom: 16px;
}

.compliance-info h4 {
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.compliance-info ul {
    list-style: none;
    padding: 0;
}

.compliance-info li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
}

.compliance-info li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-orange);
    font-weight: bold;
}

/* === SERVICES === */
.services-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.service-card {
    background: var(--white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--accent-orange);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.service-card h3 {
    font-size: 22px;
    color: var(--primary-blue);
    margin-bottom: 12px;
}

.service-card p {
    color: var(--muted-text);
    line-height: 1.6;
}

/* === CONTACT PAGE === */
.contact-hero {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.contact-hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.contact-hero p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.contact-info-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.contact-info-card {
    background: var(--white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.contact-info-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
}

.contact-info-icon svg {
    width: 100%;
    height: 100%;
    color: var(--accent-orange);
    stroke-width: 2;
}

.contact-info-card h3 {
    font-size: 22px;
    color: var(--primary-blue);
    margin-bottom: 16px;
}

.contact-info-card p {
    color: var(--muted-text);
    margin: 4px 0;
}

.contact-info-card a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-card a:hover {
    color: var(--accent-orange);
}

.emergency-note {
    color: var(--accent-orange);
    font-weight: 600;
    margin-top: 16px !important;
}

/* === CONTACT FORM === */
.contact-form-section {
    padding: 80px 0;
    background: var(--white);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.contact-form-container h2,
.map-container h2 {
    font-size: 32px;
    color: var(--primary-blue);
    margin-bottom: 16px;
}

.contact-form {
    margin-top: 32px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--light-bg);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
}

/* === MAP === */
.map-container {
    position: sticky;
    top: 100px;
}

.map-embed {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-top: 24px;
}

.map-note {
    margin-top: 16px;
    padding: 16px;
    background: var(--light-bg);
    border-radius: 8px;
    font-size: 14px;
    color: var(--muted-text);
}

/* === RESPONSIVE FOR NEW PAGES === */
@media (max-width: 768px) {
    .product-layout {
        grid-template-columns: 1fr;
    }

    .product-hero-title {
        font-size: 32px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .compliance-content {
        grid-template-columns: 1fr;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .map-container {
        position: static;
    }
}

/* === PAGE HERO === */
.page-hero {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    color: var(--white);
    padding: 100px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
}

/* === PRODUCTS PAGE === */
.products-overview {
    padding: 80px 0;
    background: var(--white);
}

.intro-section {
    max-width: 900px;
    margin: 0 auto 48px;
    text-align: center;
}

.product-features h4 {
    font-size: 16px;
    color: var(--primary-blue);
    margin: 16px 0 8px;
}

.product-features ul {
    list-style: none;
    padding: 0;
}

.product-features li {
    padding: 4px 0;
    padding-left: 20px;
    position: relative;
    color: var(--muted-text);
    font-size: 14px;
}

.product-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-orange);
    font-size: 20px;
}

.additional-products {
    padding: 80px 0;
    background: var(--light-bg);
}

.additional-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.additional-card {
    background: var(--white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.additional-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.additional-card h3 {
    font-size: 22px;
    color: var(--primary-blue);
    margin-bottom: 12px;
}

.additional-card p {
    color: var(--muted-text);
    line-height: 1.6;
}

/* === MARKETS PAGE === */
.markets-intro {
    padding: 80px 0;
    background: var(--white);
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.markets-detailed {
    padding: 80px 0;
    background: var(--light-bg);
}

.markets-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.market-detail-card {
    background: var(--white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.market-detail-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.market-icon-large {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
}

.market-icon-large svg {
    width: 100%;
    height: 100%;
    color: var(--accent-orange);
    stroke-width: 2;
}

.market-detail-card h3 {
    font-size: 24px;
    color: var(--primary-blue);
    margin-bottom: 12px;
}

.market-detail-card > p {
    color: var(--muted-text);
    line-height: 1.8;
    margin-bottom: 16px;
}

.market-applications {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid var(--light-bg);
}

.market-applications strong {
    color: var(--primary-blue);
    font-size: 14px;
    display: block;
    margin-bottom: 8px;
}

.market-applications ul {
    list-style: none;
    padding: 0;
}

.market-applications li {
    padding: 4px 0;
    padding-left: 20px;
    position: relative;
    color: var(--muted-text);
    font-size: 14px;
}

.market-applications li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-orange);
    font-weight: bold;
}

.why-choose-section {
    padding: 80px 0;
    background: var(--white);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.why-card {
    text-align: center;
    padding: 32px;
}

.why-card h3 {
    font-size: 22px;
    color: var(--primary-blue);
    margin-bottom: 12px;
}

.why-card p {
    color: var(--muted-text);
    line-height: 1.6;
}

/* === RESPONSIVE FOR NEW PAGES === */
@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 32px;
    }

    .additional-grid {
        grid-template-columns: 1fr;
    }

    .markets-detail-grid {
        grid-template-columns: 1fr;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
    }
}