/* =================================================================
   СОРО ТЕЛЕКОМ - Modern Website Styles
   Color Scheme Based on Original Site
   ================================================================= */

/* CSS Variables */
:root {
    --primary-green: #6da423;
    --primary-green-dark: #56831a;
    --primary-green-light: #8bc34a;
    --text-dark: #2d2d2d;
    --text-gray: #5c5c5c;
    --text-muted: #676153;
    --footer-dark: #1a1a1a;
    --footer-line: #121212;
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --border-light: #e8e8e8;
    --success-bg: #f8ffef;
    --error-bg: #fff5f5;
    --error-border: #e00;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-main: 'Onest', system-ui, -apple-system, sans-serif;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 0.5em;
}

h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.25rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p { margin-bottom: 1rem; }

a {
    color: var(--primary-green);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-green-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    padding-left: 1.5rem;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }
}

/* =================================================================
   HEADER
   ================================================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text-dark);
}

.logo img {
    height: 45px;
    width: auto;
}

.logo-text {
    display: block;
    font-size: 1rem;
}

.logo-text .green {
    color: var(--primary-green);
}

.logo-text .gray {
    color: var(--text-gray);
}

@media (min-width: 768px) {
    .logo-text {
        font-size: 1.25rem;
    }
}

.header-contacts {
    display: none;
    align-items: center;
    gap: 1.5rem;
}

@media (min-width: 992px) {
    .header-contacts {
        display: flex;
    }
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--text-dark);
}

.header-phone svg {
    width: 20px;
    height: 20px;
    color: var(--primary-green);
}

.header-email {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Navigation */
.nav {
    display: none;
}

@media (min-width: 992px) {
    .nav {
        display: flex;
        align-items: center;
        gap: 0.25rem;
    }
}

.nav-link {
    padding: 0.5rem 1rem;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    background: var(--primary-green);
    color: var(--white);
}

.nav-cta {
    margin-left: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: var(--primary-green);
    color: var(--white);
    border-radius: var(--radius-sm);
    font-weight: 600;
}

.nav-cta:hover {
    background: var(--primary-green-dark);
    color: var(--white);
}

.nav-cta-secondary {
    margin-left: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
    border-radius: var(--radius-sm);
    font-weight: 600;
}

.nav-cta-secondary:hover {
    background: var(--primary-green);
    color: var(--white);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
}

@media (min-width: 992px) {
    .menu-toggle {
        display: none;
    }
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    padding: 1.5rem;
    transform: translateX(-100%);
    transition: var(--transition);
    overflow-y: auto;
    z-index: 999;
}

.mobile-menu.active {
    transform: translateX(0);
}

@media (min-width: 992px) {
    .mobile-menu {
        display: none;
    }
}

.mobile-nav-link {
    display: block;
    padding: 1rem;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1.125rem;
    border-bottom: 1px solid var(--border-light);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--primary-green);
}

.mobile-nav-cta {
    background: var(--primary-green);
    color: var(--white);
    border-radius: var(--radius-sm);
    margin-top: 0.5rem;
    text-align: center;
    font-weight: 600;
}

.mobile-nav-cta:hover {
    background: var(--primary-green-dark);
    color: var(--white);
}

.mobile-contacts {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
}

.mobile-phone {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.mobile-email {
    color: var(--text-muted);
}

/* =================================================================
   HERO SECTION
   ================================================================= */
.hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #f0f7e6 0%, #e8f5d8 50%, #f5f9f0 100%);
    position: relative;
}

.hero-inner {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 992px) {
    .hero-inner {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: stretch;
    }
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--primary-green);
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(2.25rem, 6vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-title span {
    color: var(--primary-green);
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-buttons .btn {
    width: 100%;
}

@media (min-width: 576px) {
    .hero-buttons {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .hero-buttons .btn {
        width: auto;
    }
}

.hero-visual {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.hero-card {
    display: none;
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 380px;
}

@media (min-width: 768px) {
    .hero-visual {
        align-items: center;
    }
    
    .hero-card {
        display: block;
    }
}

@media (min-width: 992px) {
    .hero-visual {
        align-items: flex-start;
    }
}

.hero-card-title {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.hero-card-speed {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-green);
    line-height: 1;
}

.hero-card-speed small {
    font-size: 1.25rem;
    font-weight: 600;
}

.hero-card-price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-light);
}

.hero-card-price-value {
    font-size: 2rem;
    font-weight: 700;
}

.hero-card-price-period {
    color: var(--text-muted);
}

.hero-pay-btn {
    width: 100%;
    margin-top: 1.5rem;
    justify-content: center;
}

@media (min-width: 768px) {
    .hero-pay-btn {
        max-width: 380px;
    }
}

@media (min-width: 992px) {
    .hero-visual {
        height: 100%;
    }
    
    .hero-card {
        width: 380px;
    }
    
    .hero-pay-btn {
        width: 380px;
        margin-top: auto;
    }
}

/* =================================================================
   BUTTONS
   ================================================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

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

.btn-primary:hover {
    background: var(--primary-green-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(109, 164, 35, 0.4);
}

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

.btn-secondary:hover {
    border-color: var(--primary-green);
    color: var(--primary-green);
}

.btn-outline {
    background: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

.btn-outline:hover {
    background: var(--primary-green);
    color: var(--white);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* =================================================================
   SECTIONS
   ================================================================= */
.section {
    padding: 5rem 0;
}

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

.section-green {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    color: var(--white);
}

.section-green h2,
.section-green h3 {
    color: var(--white);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.125rem;
}

.section-green .section-header p {
    color: rgba(255, 255, 255, 0.85);
}

/* =================================================================
   FEATURES / ADVANTAGES
   ================================================================= */
.features-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-green-light) 0%, var(--primary-green) 100%);
    border-radius: var(--radius-sm);
    margin-bottom: 1.25rem;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    color: var(--white);
}

.feature-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

/* =================================================================
   TARIFF CARDS
   ================================================================= */
.tariffs-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .tariffs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .tariffs-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tariff-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.tariff-card:hover {
    box-shadow: var(--shadow-lg);
}

.tariff-card.featured {
    border: 2px solid var(--primary-green);
}

.tariff-card.featured::before {
    content: 'Популярный';
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--primary-green);
    color: var(--white);
    padding: 0.25rem 3rem;
    font-size: 0.75rem;
    font-weight: 600;
    transform: rotate(45deg);
}

.tariff-type {
    font-size: 0.875rem;
    color: var(--primary-green);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.tariff-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.tariff-speed {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.tariff-speed-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-green);
    line-height: 1;
}

.tariff-speed-unit {
    font-size: 1rem;
    color: var(--text-muted);
}

.tariff-price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    padding: 1rem 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 1.5rem;
}

.tariff-price-value {
    font-size: 2rem;
    font-weight: 700;
}

.tariff-price-currency {
    font-size: 1rem;
}

.tariff-price-period {
    color: var(--text-muted);
    margin-left: 0.25rem;
}

.tariff-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.tariff-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.95rem;
}

.tariff-features li::before {
    content: '✓';
    color: var(--primary-green);
    font-weight: 700;
    flex-shrink: 0;
}

.tariff-card .btn {
    width: 100%;
}

/* =================================================================
   SERVICES GRID
   ================================================================= */
.services-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.service-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-bg);
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--primary-green);
}

.service-icon svg {
    width: 32px;
    height: 32px;
    color: var(--primary-green);
    transition: var(--transition);
}

.service-card:hover .service-icon svg {
    color: var(--white);
}

.service-card h3 {
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--text-muted);
    margin: 0;
}

/* =================================================================
   NEWS SECTION
   ================================================================= */
.news-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .news-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.news-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.news-card:hover {
    box-shadow: var(--shadow-md);
}

.news-content {
    padding: 1.5rem;
}

.news-date {
    font-size: 0.875rem;
    color: var(--primary-green);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.news-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.news-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

/* =================================================================
   COVERAGE / LOCATIONS
   ================================================================= */
.locations-list {
    display: grid;
    gap: 0.75rem;
}

@media (min-width: 576px) {
    .locations-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .locations-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 992px) {
    .locations-list {
        grid-template-columns: repeat(4, 1fr);
    }
}

.location-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: var(--white);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    transition: var(--transition);
}

.location-item:hover {
    background: var(--primary-green);
    color: var(--white);
}

.location-item::before {
    content: '📍';
    font-size: 1rem;
}

/* =================================================================
   CTA SECTION
   ================================================================= */
.cta-box {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.cta-box h2 {
    margin-bottom: 1rem;
}

.cta-box .gift-icon {
    display: block;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
    line-height: 1;
}

.cta-box p {
    color: var(--text-muted);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

/* =================================================================
   CONTACT INFO
   ================================================================= */
.contact-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-info {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.contact-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-light);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-bg);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary-green);
}

.contact-text h4 {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.contact-text p {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

.contact-text a {
    color: var(--text-dark);
}

.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 400px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: none;
}

/* =================================================================
   FORMS
   ================================================================= */
.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: inherit;
    font-size: 1rem;
    border: 2px solid var(--border-light);
    border-radius: var(--radius-sm);
    background: var(--white);
    transition: var(--transition);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(109, 164, 35, 0.15);
}

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

.form-input.error,
.form-textarea.error {
    border-color: var(--error-border);
    background: var(--error-bg);
}

.form-input.success,
.form-textarea.success {
    border-color: var(--primary-green);
    background: var(--success-bg);
}

.form-hint {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

/* =================================================================
   VPN GUIDES
   ================================================================= */
.guide-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--border-light);
    padding-bottom: 0.5rem;
}

.guide-tab {
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: none;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted);
    cursor: pointer;
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
    transition: var(--transition);
}

.guide-tab:hover {
    color: var(--primary-green);
}

.guide-tab.active {
    background: var(--primary-green);
    color: var(--white);
}

.guide-content {
    display: none;
}

.guide-content.active {
    display: block;
}

.guide-step {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-light);
}

.guide-step:last-child {
    border-bottom: none;
}

.step-number {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-green);
    color: var(--white);
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
}

.step-content h4 {
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.step-content img {
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
}

/* =================================================================
   DOCUMENTS LIST
   ================================================================= */
.docs-list {
    list-style: none;
    padding: 0;
}

.docs-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--white);
    border-radius: var(--radius-sm);
    margin-bottom: 0.75rem;
    transition: var(--transition);
}

.docs-list li:hover {
    box-shadow: var(--shadow-sm);
}

.docs-list .doc-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-bg);
    border-radius: var(--radius-sm);
}

.docs-list .doc-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary-green);
}

.docs-list a {
    font-weight: 500;
    color: var(--text-dark);
}

.docs-list a:hover {
    color: var(--primary-green);
}

/* =================================================================
   FOOTER
   ================================================================= */
.footer {
    background: var(--footer-dark);
    color: rgba(255, 255, 255, 0.8);
    padding-top: 4rem;
}

.footer-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 576px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--white);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 40px;
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-heading {
    color: var(--white);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.footer-contact-item svg {
    width: 20px;
    height: 20px;
    color: var(--primary-green);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact-item a:hover {
    color: var(--white);
}

.footer-bottom {
    background: var(--footer-line);
    padding: 1.5rem 0;
    margin-top: 2rem;
}

.footer-bottom-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.footer-copy {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-legal a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-legal a:hover {
    color: var(--white);
}

.licenses {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.licenses img {
    width: 80px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.licenses a:hover img {
    border-color: var(--primary-green);
}

/* =================================================================
   ARTICLE PAGES (SEO)
   ================================================================= */
.article-content {
    max-width: 800px;
    margin: 0 auto;
}

.article-content h1 {
    margin-bottom: 1.5rem;
}

.article-content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-green);
}

.article-content h3 {
    margin-top: 1.5rem;
    color: var(--primary-green);
}

.article-content ul,
.article-content ol {
    margin-bottom: 1.5rem;
}

.article-content li {
    margin-bottom: 0.5rem;
}

.article-highlight {
    background: var(--light-bg);
    border-left: 4px solid var(--primary-green);
    padding: 1.5rem;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 2rem 0;
}

.article-cta {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    color: var(--white);
    padding: 2rem;
    border-radius: var(--radius-md);
    text-align: center;
    margin: 2rem 0;
}

.article-cta h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.article-cta p {
    opacity: 0.9;
    margin-bottom: 1rem;
}

.article-cta .btn {
    background: var(--white);
    color: var(--primary-green);
}

.article-cta .btn:hover {
    background: rgba(255, 255, 255, 0.9);
}

/* =================================================================
   PAGE HEADER
   ================================================================= */
.page-header {
    padding: 3rem 0 2rem;
    background: linear-gradient(135deg, #f0f7e6 0%, #e8f5d8 50%, #f5f9f0 100%);
}

.page-header h1 {
    margin-bottom: 0.5rem;
}

.page-description {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 600px;
}

/* =================================================================
   BREADCRUMBS
   ================================================================= */
.breadcrumbs,
.breadcrumb {
    padding: 1rem 0;
    font-size: 0.9rem;
}

.breadcrumbs-list,
.breadcrumb ol,
.breadcrumb ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumbs-list li,
.breadcrumb li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumbs-list li:not(:last-child)::after,
.breadcrumb li:not(:last-child)::after {
    content: '→';
    color: var(--text-muted);
}

.breadcrumbs-list a,
.breadcrumb a {
    color: var(--text-muted);
}

.breadcrumbs-list a:hover,
.breadcrumb a:hover {
    color: var(--primary-green);
}

.breadcrumbs-list li:last-child,
.breadcrumb li:last-child {
    color: var(--text-dark);
    font-weight: 500;
}

/* =================================================================
   TABLE STYLES
   ================================================================= */
.table-wrapper {
    overflow-x: auto;
    margin: 1.5rem 0;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.data-table th,
.data-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid var(--border-light);
}

.data-table th {
    background: var(--primary-green);
    color: var(--white);
    font-weight: 600;
}

.data-table tr:nth-child(even) {
    background: var(--light-bg);
}

.data-table tr:hover {
    background: rgba(109, 164, 35, 0.1);
}

/* =================================================================
   UTILITIES
   ================================================================= */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-green { color: var(--primary-green); }
.text-muted { color: var(--text-muted); }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.py-1 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-2 { padding-top: 1rem; padding-bottom: 1rem; }
.py-3 { padding-top: 1.5rem; padding-bottom: 1.5rem; }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }

/* Page offset for fixed header */
main {
    padding-top: 70px;
}

/* =================================================================
   ANIMATIONS
   ================================================================= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }

/* =================================================================
   MODAL / LIGHTBOX
   ================================================================= */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    max-width: 90%;
    max-height: 90%;
}

.modal-content img {
    border-radius: var(--radius-sm);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* =================================================================
   LOGIN DIALOG
   ================================================================= */
.login-dialog {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    max-width: 400px;
    width: 90%;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.login-dialog.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.login-dialog h3 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.login-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-muted);
}

.login-hint {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

/* =================================================================
   PRINT STYLES
   ================================================================= */
@media print {
    .header,
    .footer,
    .mobile-menu,
    .btn,
    .cta-box {
        display: none !important;
    }
    
    main {
        padding-top: 0;
    }
    
    body {
        font-size: 12pt;
    }
}

