﻿/* ========================
   Rapid Impact Compactor Page Styles
   ======================== */

:root {
    --primary-blue: #0066CC;
    --light-blue: #3399FF;
    --accent-orange: #FFA500;
    --highlight-red: #E63946;
    --text-dark: #222222;
    --text-medium: #555555;
    --text-light: #777777;
    --bg-white: #FFFFFF;
    --bg-light: #F8FAFC;
    --border-color: #E5E7EB;
    --success-green: #25D366;
    --gold: #FFD700;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    font-size: 20px;
    line-height: 1.8;
    color: var(--text-dark);
    background: var(--bg-white);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

h1, h2, h3, h4 {
    line-height: 1.3;
    font-weight: 700;
}

h1 {
    font-size: 52px;
}

h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

h3 {
    font-size: 28px;
}

h4 {
    font-size: 22px;
}

.section-intro {
    text-align: center;
    font-size: 20px;
    color: var(--text-medium);
    max-width: 900px;
    margin: 0 auto 60px;
    line-height: 1.7;
}

/* Header - Same as other pages */
.header {
    background: var(--bg-white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    overflow: visible;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0;
    min-height: 70px;
    overflow: visible;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    overflow: visible;
}

.nav-menu > ul {
    display: flex;
    list-style: none;
    gap: 8px;
    align-items: center;
    margin: 0;
    padding: 0;
    overflow: visible;
}

.nav-menu > ul > li {
    position: relative;
    overflow: visible;
}

.nav-menu > ul > li > a {
    display: block;
    font-size: 19px;
    font-weight: 500;
    color: var(--text-dark);
    transition: color 0.3s;
    padding: 10px 22px;
    white-space: nowrap;
}

.nav-menu > ul > li > a:hover,
.nav-menu a[aria-current="page"] {
    color: var(--primary-blue);
}

.nav-menu a[href="javascript:void(0)"] {
    cursor: pointer;
}

.has-dropdown {
    position: relative;
    overflow: visible;
}

.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 240px;
    padding: 8px 0;
    border-radius: 6px;
    margin-top: 0;
    z-index: 100;
    max-height: none;
    overflow: visible;
}

.has-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 10px;
    background: transparent;
}

.has-dropdown:hover .dropdown {
    display: block;
}

.dropdown li {
    padding: 0;
    list-style: none;
}

.dropdown a {
    display: block;
    padding: 12px 20px;
    font-size: 18px;
    transition: background 0.2s, color 0.2s;
}

.dropdown a:hover {
    background: var(--bg-light);
    color: var(--primary-blue);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s;
}

/* Product Overview */
.product-overview {
    padding: 80px 0 100px;
    background: var(--bg-white);
}

.page-header {
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 2px solid var(--border-color);
}

.flagship-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: var(--bg-white);
    font-size: 18px;
    font-weight: 700;
    border-radius: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(255, 165, 0, 0.3);
}

.flagship-badge i {
    font-size: 18px;
}

.page-header h1 {
    color: var(--primary-blue);
    margin-bottom: 16px;
}

.page-subtitle {
    font-size: 20px;
    color: var(--text-medium);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Product Strength Highlights */
.strength-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-bottom: 80px;
}

.strength-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 32px 20px;
    background: linear-gradient(135deg, #f0f8ff 0%, #e8f4fd 100%);
    border-radius: 12px;
    border: 2px solid var(--primary-blue);
    transition: transform 0.3s, box-shadow 0.3s;
}

.strength-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.2);
}

.strength-icon {
    font-size: 40px;
    color: var(--accent-orange);
    margin-bottom: 16px;
}

.strength-data {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 8px;
    line-height: 1.2;
}

.strength-label {
    font-size: 18px;
    color: var(--text-dark);
    text-align: center;
    margin: 0;
    line-height: 1.4;
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.overview-content h2 {
    color: var(--primary-blue);
    margin-bottom: 24px;
}

.lead-text {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: var(--text-dark);
    font-weight: 500;
}

.overview-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.overview-image img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Key Features */
.key-features {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0f8ff 0%, #daeeff 50%, #b8dcff 100%);
}

.key-features h2 {
    text-align: center;
    color: var(--primary-blue);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.feature-card {
    text-align: center;
    padding: 40px 32px;
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 56px;
    color: var(--accent-orange);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.feature-card p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-dark);
    margin: 0;
}

/* Technical Specifications */
.specifications {
    padding: 100px 0;
    background: var(--bg-white);
}

.specifications h2 {
    text-align: center;
    color: var(--primary-blue);
}

.specs-table-wrapper {
    margin-top: 60px;
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-white);
    font-size: 18px;
}

.specs-table thead {
    background: linear-gradient(135deg, #0066CC 0%, #0052A3 100%);
    color: var(--bg-white);
}

.specs-table th {
    padding: 20px 16px;
    text-align: left;
    font-weight: 700;
    font-size: 18px;
    border-right: 2px solid rgba(255, 255, 255, 0.2);
}

.specs-table th:last-child {
    border-right: none;
}

.specs-table tbody tr {
    border-bottom: 1px solid var(--border-color);
    transition: background 0.2s;
}

.specs-table tbody tr:hover {
    background: var(--bg-light);
}

.specs-table tbody tr:last-child {
    border-bottom: none;
}

.specs-table td {
    padding: 18px 16px;
    text-align: left;
    border-right: 1px solid var(--border-color);
}

.specs-table td:last-child {
    border-right: none;
}

.specs-table tbody tr.clickable-row {
    cursor: pointer;
    transition: background 0.2s;
}

.specs-table tbody tr.clickable-row:hover {
    background: var(--bg-light);
}

.model-name {
    font-weight: 700;
    color: var(--primary-blue);
    font-size: 18px;
}

.model-name a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color 0.3s;
}

.specs-table tbody tr.clickable-row:hover .model-name a {
    color: var(--accent-orange);
}

.popular-model {
    background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
}

.popular-model:hover {
    background: linear-gradient(135deg, #fff3cd 0%, #ffe082 100%);
}

.table-note {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-top: 32px;
    padding: 24px;
    background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
    border-radius: 12px;
    border-left: 4px solid var(--accent-orange);
}

.table-note i {
    font-size: 24px;
    color: var(--accent-orange);
    flex-shrink: 0;
    margin-top: 2px;
}

.table-note p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-dark);
    margin: 0;
}

/* Download Brochures Section */
.download-brochures {
    margin-top: 50px;
    padding: 40px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 16px;
    border: 2px solid #bae6fd;
}

.download-header {
    text-align: center;
    margin-bottom: 35px;
}

.download-header i {
    font-size: 48px;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.download-header h3 {
    font-size: 32px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.download-header p {
    font-size: 20px;
    color: var(--text-medium);
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.download-card-btn {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 24px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    cursor: pointer;
}

.download-card-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 102, 204, 0.2);
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
}

.download-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.download-icon i {
    font-size: 28px;
    color: white;
}

.download-info {
    flex: 1;
}

.download-info h4 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 6px;
    font-weight: 600;
}

.download-info .file-size {
    font-size: 16px;
    color: var(--text-light);
}

.download-card-btn > i {
    font-size: 20px;
    color: var(--primary-blue);
    transition: transform 0.3s;
}

.download-card-btn:hover > i {
    transform: translateX(5px);
}

.download-card-btn.view-all {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    color: white;
}

.download-card-btn.view-all .download-icon {
    background: rgba(255, 255, 255, 0.2);
}

.download-card-btn.view-all .download-info h4 {
    color: white;
}

.download-card-btn.view-all .download-info .file-size {
    color: rgba(255, 255, 255, 0.9);
}

.download-card-btn.view-all > i {
    color: white;
}

.download-card-btn.view-all:hover {
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--primary-blue) 100%);
}

.download-card-btn.loader-model {
    border: 2px solid var(--accent-orange);
    background: linear-gradient(135deg, #fff8e1 0%, #ffffff 100%);
}

.download-card-btn.loader-model:hover {
    background: linear-gradient(135deg, #fff3cd 0%, #fff8e1 100%);
    border-color: var(--accent-orange);
}

.download-card-btn.loader-model .download-icon {
    background: linear-gradient(135deg, var(--accent-orange) 0%, #ff8c00 100%);
}

.download-card-btn.loader-model .download-info .file-size {
    color: var(--accent-orange);
    font-weight: 500;
}

/* Product Gallery */
.product-gallery {
    padding: 100px 0;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 50%, #90caf9 100%);
}

.product-gallery h2 {
    text-align: center;
    color: var(--primary-blue);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 32px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.gallery-caption {
    padding: 24px;
    background: var(--bg-white);
}

.gallery-caption h4 {
    font-size: 20px;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.gallery-caption p {
    font-size: 18px;
    color: var(--text-medium);
    margin: 0;
}

/* What is RIC */
.what-is-ric {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0f8ff 0%, #e8f4fd 100%);
}

.what-is-ric h2 {
    text-align: center;
    color: var(--primary-blue);
}

.ric-definition {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 60px;
}

.definition-content h3 {
    font-size: 32px;
    color: var(--primary-blue);
    margin-bottom: 24px;
}

.principle-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.principle-item {
    text-align: center;
    padding: 28px 20px;
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.principle-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0, 102, 204, 0.15);
}

.principle-icon {
    font-size: 40px;
    color: var(--accent-orange);
    margin-bottom: 16px;
}

.principle-item h4 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.principle-item p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-medium);
    margin: 0;
}

.definition-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* RIC Applications Detail */
.ric-applications-detail {
    padding: 100px 0;
    background: var(--bg-white);
}

.ric-applications-detail h2 {
    text-align: center;
    color: var(--primary-blue);
}

.use-cases-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.use-case-large {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: center;
    padding: 40px;
    background: linear-gradient(135deg, #f8fafc 0%, #f0f4f8 100%);
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.use-case-large.reverse {
    grid-template-columns: 1.2fr 1fr;
}

.use-case-large.reverse .use-case-image {
    order: 2;
}

.use-case-large.reverse .use-case-content {
    order: 1;
}

.use-case-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.use-case-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.use-case-icon {
    font-size: 48px;
    color: var(--accent-orange);
    margin-bottom: 20px;
}

.use-case-content h3 {
    font-size: 28px;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.use-case-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.use-case-content p strong {
    color: var(--primary-blue);
    font-weight: 600;
}

/* Soil Conditions */
.soil-conditions {
    padding: 100px 0;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 50%, #90caf9 100%);
}

.soil-conditions h2 {
    text-align: center;
    color: var(--primary-blue);
}

.soil-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.soil-card {
    padding: 36px 32px;
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    border-top: 4px solid;
}

.soil-card.excellent {
    border-top-color: #25D366;
}

.soil-card.good {
    border-top-color: #3399FF;
}

.soil-card.limited {
    border-top-color: #FFA500;
}

.soil-rating {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 24px;
}

.soil-card.excellent .soil-rating {
    color: #25D366;
}

.soil-card.good .soil-rating {
    color: #3399FF;
}

.soil-card.limited .soil-rating {
    color: #FFA500;
}

.soil-card h4 {
    font-size: 22px;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.soil-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.soil-card ul li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.soil-card ul li i {
    margin-top: 4px;
    flex-shrink: 0;
}

.soil-card.excellent ul li i {
    color: #25D366;
}

.soil-card.good ul li i {
    color: #3399FF;
}

.soil-card.limited ul li i {
    color: #FFA500;
}

.soil-note {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-top: 48px;
    padding: 28px 32px;
    background: var(--bg-white);
    border-radius: 12px;
    border-left: 4px solid var(--primary-blue);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.soil-note i {
    font-size: 28px;
    color: var(--primary-blue);
    flex-shrink: 0;
    margin-top: 2px;
}

.soil-note p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
    margin: 0;
}

/* Major Project Cases */
.project-cases {
    padding: 100px 0;
    background: var(--bg-white);
}

.project-cases h2 {
    text-align: center;
    color: var(--primary-blue);
}

/* Flagship Case */
.flagship-case {
    margin-bottom: 80px;
    padding: 48px;
    background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
    border-radius: 16px;
    border: 3px solid var(--gold);
    box-shadow: 0 8px 32px rgba(255, 215, 0, 0.3);
}

.flagship-badge-large {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 28px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: var(--bg-white);
    font-size: 20px;
    font-weight: 700;
    border-radius: 24px;
    margin-bottom: 32px;
    box-shadow: 0 4px 16px rgba(255, 165, 0, 0.4);
}

.flagship-badge-large i {
    font-size: 24px;
}

.case-content-large {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: center;
}

.case-text h3 {
    font-size: 36px;
    color: var(--primary-blue);
    margin-bottom: 32px;
    line-height: 1.3;
}

.case-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-orange);
    margin-bottom: 8px;
    line-height: 1.2;
}

.stat-label {
    font-size: 18px;
    color: var(--text-medium);
    line-height: 1.4;
}

.case-description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 28px;
}

.case-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    color: var(--text-dark);
}

.highlight-item i {
    color: var(--success-green);
    font-size: 20px;
    flex-shrink: 0;
}

.case-image-large {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.case-image-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Cases Grid */
.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
}

.case-card {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.case-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.case-image {
    position: relative;
    width: 100%;
    padding-top: 60%; /* 5:3 ratio (3/5 = 0.6) */
    overflow: hidden;
}

.case-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.case-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #FFA500 0%, #FF8C00 100%);
    color: var(--bg-white);
    font-size: 18px;
    font-weight: 700;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(255, 165, 0, 0.4);
}

.case-info {
    padding: 24px;
}

.case-info h4 {
    font-size: 20px;
    color: var(--primary-blue);
    margin-bottom: 12px;
    line-height: 1.4;
}

.case-location {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 12px;
}

.case-location i {
    color: var(--accent-orange);
}

.case-desc {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-dark);
    margin: 0;
}

/* Applications */
.applications {
    padding: 100px 0;
    background: var(--bg-white);
}

.applications h2 {
    text-align: center;
    color: var(--primary-blue);
}

.applications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.app-card {
    padding: 36px 28px;
    background: linear-gradient(135deg, #f0f8ff 0%, #e8f4fd 100%);
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.app-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.15);
}

.app-icon {
    font-size: 52px;
    color: var(--accent-orange);
    margin-bottom: 20px;
}

.app-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.app-card p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-dark);
    margin: 0;
}

/* Advantages */
.advantages {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0f8ff 0%, #daeeff 50%, #b8dcff 100%);
}

.advantages h2 {
    text-align: center;
    color: var(--primary-blue);
    margin-bottom: 60px;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
}

.advantage-item {
    display: flex;
    gap: 24px;
    padding: 32px;
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.advantage-item:hover {
    transform: translateX(6px);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.15);
}

.advantage-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-orange);
    flex-shrink: 0;
    width: 80px;
    text-align: center;
}

.advantage-content h3 {
    font-size: 22px;
    color: var(--primary-blue);
    margin-bottom: 12px;
}

.advantage-content p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-dark);
    margin: 0;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0066CC 0%, #0052A3 100%);
    text-align: center;
    color: var(--bg-white);
}

.cta-section h2 {
    margin-bottom: 20px;
    color: var(--bg-white);
}

.cta-section p {
    font-size: 20px;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--highlight-red);
    color: var(--bg-white);
}

.btn-primary:hover {
    background: #d32f3c;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(227, 57, 70, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--bg-white);
    border-color: var(--bg-white);
}

.btn-outline:hover {
    background: var(--bg-white);
    color: var(--primary-blue);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 50%, #90caf9 100%);
    color: var(--text-dark);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    margin-bottom: 20px;
    color: var(--primary-blue);
    font-weight: 700;
}

.footer-col p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.footer-logo img {
    max-width: 180px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--text-dark);
    font-size: 18px;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--primary-blue);
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-dark);
    font-size: 18px;
}

.contact-info i {
    color: var(--primary-blue);
    margin-top: 4px;
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(0, 102, 204, 0.2);
}

.footer-bottom p {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 8px;
}

/* Responsive Design */

/* Tablet landscape (1024px-1200px) */
@media (max-width: 1200px) and (min-width: 1025px) {
    .nav-wrapper {
        gap: 16px;
    }
    
    .nav-menu > ul {
        gap: 2px;
    }
    
    .nav-menu > ul > li > a {
        padding: 10px 12px;
        font-size: 19px;
    }
}

@media (max-width: 1024px) {
    .container {
        padding: 0 16px;
    }
    
    /* Optimize navigation for tablet */
    .nav-wrapper {
        padding: 16px 0;
        gap: 0;
    }
    
    .logo {
        margin-right: 0;
    }
    
    .logo img {
        height: 40px;
    }
    
    .nav-menu > ul {
        gap: 0;
    }
    
    .nav-menu > ul > li > a {
        padding: 10px 10px;
        font-size: 19px;
        white-space: nowrap;
    }
    
    .dropdown {
        min-width: 200px;
    }
    
    .dropdown a {
        padding: 10px 16px;
        font-size: 16px;
    }
    
    .overview-grid {
        grid-template-columns: 1fr;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .strength-highlights {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 20px;
    }
    
    .case-content-large {
        grid-template-columns: 1fr;
    }
    
    .case-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ric-definition {
        grid-template-columns: 1fr;
    }
    
    .use-case-large,
    .use-case-large.reverse {
        grid-template-columns: 1fr;
    }
    
    .use-case-large.reverse .use-case-image,
    .use-case-large.reverse .use-case-content {
        order: unset;
    }
    
    .principle-highlights {
        grid-template-columns: 1fr;
    }
}

/* Tablet portrait and mobile - Switch to mobile menu */
@media (max-width: 900px), (max-width: 1024px) and (orientation: portrait) {
    .nav-menu {
        display: block;
        position: fixed;
        top: 72px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 72px);
        height: calc(100dvh - 72px);
        background: var(--bg-white);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        transition: left 0.3s ease;
        overflow-y: auto;
        overflow-x: hidden;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu > ul {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }
    
    .nav-menu > ul > li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }
    
    .nav-menu > ul > li > a {
        padding: 18px 24px;
        font-size: 18px;
    }
    
    .dropdown {
        position: static;
        box-shadow: none;
        background: var(--bg-light);
        margin: 0;
        padding: 0;
        border-radius: 0;
        max-height: none;
        overflow: visible;
    }
    
    .dropdown a {
        padding: 14px 24px 14px 44px;
        font-size: 17px;
    }
    
    .has-dropdown:hover .dropdown {
        display: none;
    }
    
    .has-dropdown.active .dropdown {
        display: block;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    h1 {
        font-size: 40px;
    }
    
    h2 {
        font-size: 34px;
    }
    
    .features-grid,
    .applications-grid {
        grid-template-columns: 1fr;
    }
    
    .specs-table {
        font-size: 18px;
    }
    
    .specs-table th,
    .specs-table td {
        padding: 12px 10px;
    }
    
    .strength-highlights {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .strength-item {
        padding: 24px 16px;
    }
    
    .strength-data {
        font-size: 24px;
    }

    .download-brochures {
        padding: 30px 20px;
    }

    .download-header h3 {
        font-size: 26px;
    }

    .download-header p {
        font-size: 18px;
    }

    .download-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .download-card-btn {
        padding: 20px;
    }

    .download-icon {
        width: 50px;
        height: 50px;
    }

    .download-icon i {
        font-size: 24px;
    }

    .download-info h4 {
        font-size: 18px;
    }

    .download-info .file-size {
        font-size: 14px;
    }
    
    .advantage-item {
        flex-direction: column;
        text-align: center;
    }
    
    .advantage-number {
        width: 100%;
    }
    
    .flagship-case {
        padding: 32px 24px;
    }
    
    .case-text h3 {
        font-size: 28px;
    }
    
    .case-stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .case-highlights {
        grid-template-columns: 1fr;
    }
    
    .cases-grid {
        grid-template-columns: 1fr;
    }
    
    .use-case-large {
        padding: 28px 20px;
    }
    
    .use-case-image img {
        height: 300px;
    }
    
    .use-case-content h3 {
        font-size: 24px;
    }
    
    .soil-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    body {
        font-size: 18px;
    }
    
    h1 {
        font-size: 32px;
    }
    
    h2 {
        font-size: 28px;
    }
    
    .page-subtitle {
        font-size: 18px;
    }
    
    .specs-table {
        font-size: 18px;
    }
    
    .specs-table th,
    .specs-table td {
        padding: 10px 8px;
    }
    
    .flagship-case {
        padding: 24px 16px;
    }
    
    .case-text h3 {
        font-size: 24px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .stat-label {
        font-size: 18px;
    }
    
    .definition-content h3 {
        font-size: 24px;
    }
    
    .use-case-large {
        padding: 20px 16px;
    }
    
    .use-case-content h3 {
        font-size: 22px;
    }
    
    .use-case-icon {
        font-size: 36px;
    }
}
