/* ArtistRadioTV — Global Styles */
:root {
    --orange: #FF6B00;
    --orange-dark: #E55D00;
    --orange-light: #FFF3EB;
    --green: #00A651;
    --green-dark: #008F45;
    --green-light: #E8F8EF;
    --white: #FFFFFF;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 1px 3px rgba(0,0,0,.08), 0 4px 12px rgba(0,0,0,.04);
    --shadow-lg: 0 4px 24px rgba(0,0,0,.08);
    --transition: .2s ease;
    --header-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-800);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: var(--orange); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--orange-dark); }
ul { list-style: none; }

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

.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    z-index: 9999;
    padding: 8px 16px;
    background: var(--orange);
    color: var(--white);
    border-radius: var(--radius-sm);
    font-weight: 600;
}
.skip-link:focus { top: 16px; }

/* HEADER */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gray-200);
    height: var(--header-h);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-h);
    gap: 16px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-900);
    font-size: 1.15rem;
    font-weight: 600;
    flex-shrink: 0;
}
.logo strong { color: var(--orange); }
.logo:hover { color: var(--gray-900); }

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

.main-nav a {
    display: block;
    padding: 8px 12px;
    color: var(--gray-600);
    font-size: .875rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}
.main-nav a:hover { color: var(--orange); background: var(--orange-light); }
.main-nav .nav-cta {
    background: var(--green);
    color: var(--white) !important;
    margin-left: 8px;
}
.main-nav .nav-cta:hover { background: var(--green-dark); color: var(--white) !important; }

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

.lang-switcher {
    display: flex;
    gap: 2px;
    background: var(--gray-100);
    border-radius: var(--radius-sm);
    padding: 3px;
}

.lang-btn {
    padding: 4px 8px;
    font-size: .75rem;
    font-weight: 600;
    color: var(--gray-500);
    border-radius: 6px;
    transition: all var(--transition);
}
.lang-btn:hover { color: var(--gray-800); }
.lang-btn.active {
    background: var(--white);
    color: var(--orange);
    box-shadow: 0 1px 3px rgba(0,0,0,.1);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--gray-800);
    border-radius: 2px;
    transition: all var(--transition);
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-size: .9375rem;
    font-weight: 600;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
    line-height: 1.4;
}
.btn-primary {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
}
.btn-primary:hover {
    background: var(--orange-dark);
    border-color: var(--orange-dark);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255,107,0,.3);
}
.btn-outline {
    background: transparent;
    color: var(--green);
    border-color: var(--green);
}
.btn-outline:hover {
    background: var(--green);
    color: var(--white);
}
.btn-block { width: 100%; }

/* SECTIONS */
main { padding-top: var(--header-h); }

.section {
    padding: 80px 0;
}
.section:nth-child(even) {
    background: var(--gray-50);
}

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 48px;
}
.section-header h2 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    color: var(--gray-900);
    letter-spacing: -.02em;
    margin-bottom: 16px;
    line-height: 1.2;
}
.section-header p {
    font-size: 1.0625rem;
    color: var(--gray-500);
    line-height: 1.7;
}

/* HERO */
.hero {
    padding: 100px 0 80px;
    background: linear-gradient(180deg, var(--white) 0%, var(--orange-light) 100%);
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 56px;
}

.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--green-light);
    color: var(--green-dark);
    font-size: .8125rem;
    font-weight: 600;
    border-radius: 100px;
    margin-bottom: 24px;
    border: 1px solid rgba(0,166,81,.2);
}

.hero h1 {
    font-size: clamp(2rem, 5.5vw, 3.25rem);
    font-weight: 900;
    color: var(--gray-900);
    letter-spacing: -.03em;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.1875rem);
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 800px;
    margin: 0 auto;
}

.stat-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 24px 16px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform var(--transition);
}
.stat-card:hover { transform: translateY(-2px); }

.stat-value {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--orange);
    line-height: 1.2;
}
.stat-label {
    display: block;
    font-size: .8125rem;
    color: var(--gray-500);
    margin-top: 4px;
    font-weight: 500;
}

/* SERVICES */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 28px 24px;
    transition: all var(--transition);
}
.service-card:hover {
    border-color: var(--orange);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.service-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    background: var(--orange-light);
    color: var(--orange);
}
.service-icon svg { width: 24px; height: 24px; }

.service-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}
.service-card p {
    font-size: .875rem;
    color: var(--gray-500);
    line-height: 1.6;
}

/* RADIOS — SOOLY-style cards */
.radios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.radios-grid-full { max-height: none; }

.radio-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    transition: all var(--transition);
    color: inherit;
    text-decoration: none;
}
.radio-card:hover {
    border-color: var(--orange);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
    color: inherit;
}
.radio-card[hidden], .radio-card.is-filter-hidden { display: none !important; }

.radio-logo {
    position: relative;
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--gray-100);
}
.radio-logo-lg { width: 96px; height: 96px; border-radius: var(--radius); }

.radio-logo-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--orange-light), var(--green-light));
}
.radio-logo-icon { font-size: 1rem; }
.radio-logo-letter { font-size: 1.125rem; font-weight: 800; color: var(--orange); }

.radio-logo-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.radio-logo-img.is-broken { display: none; }

.radio-info { flex: 1; min-width: 0; }
.radio-name {
    font-size: .9375rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.radio-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    font-size: .75rem;
    color: var(--gray-500);
    margin-bottom: 6px;
}

.radio-type-badge {
    display: inline-block;
    font-size: .6875rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 100px;
    text-transform: uppercase;
}
.radio-type-badge.is-radio { background: var(--orange-light); color: var(--orange); }
.radio-type-badge.is-tv { background: var(--green-light); color: var(--green-dark); }

.radio-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    background: var(--gray-100);
    border-radius: var(--radius);
    padding: 4px;
}
.radio-filter {
    padding: 6px 12px;
    border: none;
    background: transparent;
    font-family: var(--font);
    font-size: .8125rem;
    font-weight: 500;
    color: var(--gray-600);
    border-radius: var(--radius-sm);
    cursor: pointer;
    white-space: nowrap;
}
.radio-filter.active, .radio-filter:hover {
    background: var(--white);
    color: var(--orange);
    box-shadow: 0 1px 3px rgba(0,0,0,.08);
}

.radios-search-status { text-align: center; font-size: .875rem; margin-top: 12px; font-weight: 500; }
.radios-search-status.is-found { color: var(--green); }
.radios-search-status.is-missing { color: var(--orange); }
.section-cta { text-align: center; margin-top: 32px; }

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: .875rem;
    color: var(--gray-500);
    margin-bottom: 24px;
}
.breadcrumb a { color: var(--gray-600); }
.breadcrumb a:hover { color: var(--orange); }

.radio-detail-hero {
    padding: 100px 0 40px;
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
}
.radio-detail-card { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }
.radio-detail-info h1 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--gray-900);
    margin: 8px 0;
}
.radio-detail-meta { font-size: 1rem; color: var(--gray-500); display: flex; flex-wrap: wrap; gap: 8px; }
.monitoring-badge { color: var(--green); font-weight: 600; font-size: .875rem; margin-top: 8px; }
.station-detail-content h2, .station-detail-content h3 { color: var(--gray-900); margin: 24px 0 12px; }
.detail-list li { padding: 8px 0 8px 24px; position: relative; color: var(--gray-600); }
.detail-list li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.cta-section { background: linear-gradient(135deg, var(--orange-light) 0%, var(--green-light) 100%); }
.cta-inner { text-align: center; max-width: 640px; margin: 0 auto; }
.cta-inner h2 { font-size: 1.5rem; font-weight: 800; margin-bottom: 12px; }
.cta-inner p { color: var(--gray-600); margin-bottom: 24px; }
.cta-inner .btn { margin: 4px; }

/* STATIONS */
.stations-controls {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    flex-wrap: wrap;
    align-items: center;
}

.station-search {
    flex: 1;
    min-width: 240px;
    padding: 12px 16px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    font-family: var(--font);
    font-size: .9375rem;
    background: var(--white);
    transition: border-color var(--transition);
}
.station-search:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(255,107,0,.15);
}

.station-filters {
    display: flex;
    gap: 4px;
    background: var(--gray-100);
    border-radius: var(--radius);
    padding: 4px;
}

.filter-btn {
    padding: 8px 16px;
    border: none;
    background: transparent;
    font-family: var(--font);
    font-size: .875rem;
    font-weight: 500;
    color: var(--gray-600);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition);
}
.filter-btn.active,
.filter-btn:hover {
    background: var(--white);
    color: var(--orange);
    box-shadow: 0 1px 3px rgba(0,0,0,.08);
}

.station-count {
    font-size: .875rem;
    color: var(--gray-500);
    margin-bottom: 16px;
}

.stations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    max-height: 600px;
    overflow-y: auto;
    padding-right: 4px;
}

.stations-grid::-webkit-scrollbar { width: 6px; }
.stations-grid::-webkit-scrollbar-track { background: var(--gray-100); border-radius: 3px; }
.stations-grid::-webkit-scrollbar-thumb { background: var(--gray-300); border-radius: 3px; }

.station-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}
.station-card:hover {
    border-color: var(--green);
    box-shadow: var(--shadow);
}
.station-card.hidden { display: none; }

.station-flag { font-size: 1.5rem; flex-shrink: 0; }
.station-info { flex: 1; min-width: 0; }
.station-info h3 {
    font-size: .875rem;
    font-weight: 600;
    color: var(--gray-900);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.station-location {
    font-size: .75rem;
    color: var(--gray-500);
}

.station-type {
    font-size: .6875rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: .03em;
    flex-shrink: 0;
}
.type-radio { background: var(--orange-light); color: var(--orange); }
.type-tv { background: var(--green-light); color: var(--green-dark); }

.no-results {
    text-align: center;
    padding: 40px;
    color: var(--gray-500);
}
.hidden { display: none !important; }

/* MONITORING & DISTRIBUTION */
.country-tags, .format-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 40px;
}

.country-tag, .format-tag {
    padding: 6px 14px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 100px;
    font-size: .8125rem;
    font-weight: 500;
    color: var(--gray-700);
}
.format-tag {
    background: var(--green-light);
    border-color: rgba(0,166,81,.2);
    color: var(--green-dark);
    font-weight: 600;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-left: 4px solid var(--orange);
    border-radius: var(--radius);
    padding: 28px;
}
.feature-card-alt { border-left-color: var(--green); }

.feature-card h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}
.feature-card p {
    font-size: .9375rem;
    color: var(--gray-500);
    line-height: 1.6;
}

/* WHY US */
.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.why-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 32px;
    position: relative;
}

.why-num {
    display: inline-block;
    font-size: .8125rem;
    font-weight: 800;
    color: var(--orange);
    background: var(--orange-light);
    padding: 4px 10px;
    border-radius: 6px;
    margin-bottom: 12px;
}

.why-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}
.why-card p {
    font-size: .9375rem;
    color: var(--gray-500);
    line-height: 1.6;
}

/* PRICING */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}
.pricing-grid-3 { max-width: 1100px; margin: 0 auto; }

.plan-number {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    color: var(--orange);
    background: var(--orange-light);
    padding: 4px 10px;
    border-radius: 6px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.plan-period-label {
    font-size: .8125rem;
    color: var(--gray-500);
    margin-bottom: 16px;
    font-weight: 500;
}

.plan-features-title {
    font-size: .75rem;
    font-weight: 700;
    color: var(--gray-700);
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: 12px;
}

.price-custom {
    font-size: 1.375rem !important;
    color: var(--gray-700) !important;
}

.pricing-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 32px 24px;
    position: relative;
    transition: all var(--transition);
}
.pricing-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}
.pricing-card.popular {
    border-color: var(--orange);
    box-shadow: 0 0 0 1px var(--orange), var(--shadow-lg);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--orange);
    color: var(--white);
    font-size: .6875rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: .05em;
    white-space: nowrap;
}

.pricing-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
}
.plan-desc {
    font-size: .8125rem;
    color: var(--gray-500);
    margin-bottom: 20px;
}

.plan-price {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--gray-200);
}
.plan-price .price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--green);
}
.plan-price .period {
    font-size: .875rem;
    color: var(--gray-500);
}

.plan-features {
    margin-bottom: 24px;
}
.plan-features li {
    font-size: .875rem;
    color: var(--gray-600);
    padding: 6px 0 6px 24px;
    position: relative;
    line-height: 1.5;
}
.plan-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: 700;
}

.pricing-note {
    text-align: center;
    max-width: 720px;
    margin: 32px auto 0;
    font-size: .8125rem;
    color: var(--gray-500);
    line-height: 1.6;
    padding: 16px;
    background: var(--gray-100);
    border-radius: var(--radius);
}

/* COVERAGE */
.coverage-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.coverage-col {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 32px;
}
.coverage-col h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--orange);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--orange-light);
}
.coverage-col:last-child h3 { color: var(--green); border-bottom-color: var(--green-light); }

.coverage-col li {
    padding: 8px 0;
    font-size: .9375rem;
    color: var(--gray-700);
    border-bottom: 1px solid var(--gray-100);
}
.coverage-col li:last-child { border-bottom: none; }

/* FAQ */
.faq-list {
    max-width: 760px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    margin-bottom: 8px;
    overflow: hidden;
}
.faq-item[open] { border-color: var(--orange); }

.faq-item summary {
    padding: 20px 24px;
    font-weight: 600;
    color: var(--gray-900);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: .9375rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    font-size: 1.25rem;
    color: var(--orange);
    font-weight: 400;
    flex-shrink: 0;
    margin-left: 16px;
}
.faq-item[open] summary::after { content: '−'; }

.faq-item p {
    padding: 0 24px 20px;
    font-size: .9375rem;
    color: var(--gray-500);
    line-height: 1.7;
}

/* CONTACT */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-item {
    margin-bottom: 24px;
}
.contact-item h4 {
    font-size: .8125rem;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: 4px;
}
.contact-item a {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--gray-900);
}
.contact-item a:hover { color: var(--orange); }

.contact-form {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 32px;
}

.form-group {
    margin-bottom: 16px;
}
.form-group label {
    display: block;
    font-size: .8125rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 6px;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-size: .9375rem;
    transition: border-color var(--transition);
    background: var(--white);
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(255,107,0,.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.form-success {
    margin-top: 12px;
    padding: 12px;
    background: var(--green-light);
    color: var(--green-dark);
    border-radius: var(--radius-sm);
    font-size: .875rem;
    font-weight: 500;
    text-align: center;
}

/* FOOTER */
.site-footer {
    background: var(--gray-900);
    color: var(--gray-400);
    padding: 60px 0 24px;
}

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

.footer-logo { color: var(--white); margin-bottom: 12px; }
.footer-brand p { font-size: .875rem; line-height: 1.6; }

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    font-size: .875rem;
    font-weight: 600;
    margin-bottom: 16px;
}
.footer-links li { margin-bottom: 8px; }
.footer-links a,
.footer-contact a {
    color: var(--gray-400);
    font-size: .875rem;
}
.footer-links a:hover,
.footer-contact a:hover { color: var(--orange); }
.footer-contact p { font-size: .875rem; margin-bottom: 8px; }

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 24px;
    border-top: 1px solid var(--gray-700);
    font-size: .8125rem;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-langs {
    display: flex;
    gap: 16px;
}
.footer-langs a {
    color: var(--gray-500);
    font-size: .8125rem;
}
.footer-langs a:hover { color: var(--orange); }

/* PAGE TOP & SMART LINK CARDS */
.page-top { padding-top: 40px; }
.page-top .breadcrumb { margin-bottom: 24px; }

.home-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.home-link-card,
.service-card-link,
.faq-link-card,
.pricing-card-link {
    display: block;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 24px;
    text-decoration: none;
    color: inherit;
    transition: border-color .2s, box-shadow .2s, transform .2s;
    position: relative;
}
.home-link-card:hover,
.service-card-link:hover,
.faq-link-card:hover,
.pricing-card-link:hover {
    border-color: var(--orange);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.home-link-card h3,
.service-card-link h3,
.faq-link-card h3 {
    font-size: 1.0625rem;
    margin-bottom: 8px;
    color: var(--gray-900);
}
.home-link-card p,
.service-card-link p {
    font-size: .9375rem;
    color: var(--gray-600);
    margin: 0;
    line-height: 1.5;
}
.home-link-arrow,
.card-more {
    display: inline-block;
    margin-top: 12px;
    color: var(--orange);
    font-weight: 600;
    font-size: .875rem;
}
.service-card-link .card-more,
.faq-link-card .card-more {
    position: absolute;
    right: 24px;
    bottom: 24px;
    margin: 0;
}
.faq-link-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
}
.faq-link-card h3 { margin: 0; flex: 1; padding-right: 16px; }

.detail-page {
    max-width: 760px;
    margin: 0 auto;
}
.detail-page h1 { margin-bottom: 16px; }
.detail-lead {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 32px;
}
.detail-icon { margin-bottom: 20px; }
.detail-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 32px;
}
.section-cta { text-align: center; margin-top: 32px; }

.section-alt { background: var(--gray-50); }

.home-pr-section .home-pr-intro {
    max-width: 820px;
    margin: 0 auto;
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--gray-700);
}
.home-pr-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
}
.home-pr-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-left: 4px solid var(--orange);
    border-radius: var(--radius-lg);
    padding: 28px;
}
.home-pr-card h3 {
    font-size: 1.125rem;
    margin-bottom: 12px;
    color: var(--gray-900);
}
.home-pr-card p {
    font-size: .9375rem;
    line-height: 1.65;
    color: var(--gray-600);
    margin: 0;
}
.home-pr-keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-top: 32px;
}
.keyword-tag {
    display: inline-block;
    padding: 6px 14px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 999px;
    font-size: .8125rem;
    font-weight: 600;
    color: var(--gray-700);
}
.hero-pr .hero-content h1 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    line-height: 1.15;
}

/* APP SECTION */
.app-section { background: linear-gradient(135deg, #fff 0%, #f8faf8 100%); }
.app-inner {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 48px;
    align-items: center;
}
.app-content h2 { margin-bottom: 16px; }
.app-content p { color: var(--gray-600); line-height: 1.7; margin-bottom: 20px; }
.app-features { list-style: none; padding: 0; margin: 0 0 24px; }
.app-features li {
    padding: 8px 0 8px 28px;
    position: relative;
    color: var(--gray-700);
}
.app-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: 700;
}
.app-store-btn { min-width: 220px; }
.phone-mockup {
    background: #1a1a1a;
    border-radius: 32px;
    padding: 12px;
    box-shadow: var(--shadow-lg);
}
.phone-screen {
    background: var(--white);
    border-radius: 24px;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-weight: 700;
    color: var(--gray-800);
}
.phone-icon { font-size: 3rem; }

/* AUTH & ACCOUNT */
.auth-container { max-width: 480px; }
.auth-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-md);
}
.auth-card h1 { margin-bottom: 8px; }
.auth-card > p { color: var(--gray-600); margin-bottom: 24px; }
.auth-form .form-group { margin-bottom: 16px; }
.auth-form label { display: block; font-weight: 600; margin-bottom: 6px; font-size: .875rem; }
.auth-form input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    font-size: 1rem;
}
.auth-form small { color: var(--gray-500); font-size: .8125rem; }
.auth-switch { margin-top: 20px; text-align: center; font-size: .9375rem; }
.auth-switch a { color: var(--orange); font-weight: 600; }
.form-error { color: #c0392b; font-size: .875rem; margin-bottom: 12px; }

.account-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}
.account-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.account-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 24px;
}
.account-card h2 { font-size: 1.125rem; margin-bottom: 16px; }
.account-full { grid-column: 1 / -1; }
.account-list { list-style: none; padding: 0; margin: 0; }
.account-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-100);
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.account-empty { color: var(--gray-500); margin-bottom: 16px; }
.account-table { width: 100%; border-collapse: collapse; font-size: .9375rem; }
.account-table th, .account-table td { padding: 12px; text-align: left; border-bottom: 1px solid var(--gray-100); }
.status-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
}
.status-active { background: #e8f8ef; color: var(--green); }
.status-pending { background: #fff3e0; color: var(--orange); }
.status-expired, .status-cancelled { background: var(--gray-100); color: var(--gray-600); }

.checkout-container { max-width: 960px; }
.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}
.checkout-plan-card {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-top: 16px;
}
.checkout-price { font-size: 2rem; font-weight: 800; color: var(--green); }
.checkout-period { color: var(--gray-600); margin-bottom: 16px; }
.checkout-payment {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 28px;
}
.checkout-secure { font-size: .8125rem; color: var(--gray-500); margin-top: 12px; text-align: center; }
.checkout-success-card { text-align: center; }
.success-icon {
    width: 64px; height: 64px;
    background: var(--green);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
}
.btn-lg { padding: 16px 24px; font-size: 1.0625rem; }

.pricing-card-link {
    text-align: center;
}
.pricing-card-link .plan-number {
    display: block;
    font-size: .8125rem;
    font-weight: 700;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: 8px;
}
.pricing-card-link h3 { font-size: 1.25rem; margin-bottom: 8px; }
.plan-price-preview {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--green);
    margin: 8px 0 0;
}
.pricing-card-title-link {
    text-decoration: none;
    color: inherit;
    display: block;
}
.pricing-card-title-link:hover h2 { color: var(--orange); }
.plan-features-detail { margin-bottom: 0; }
.pricing-detail .plan-price { margin-bottom: 24px; }

/* RESPONSIVE */
@media (min-width: 769px) {
    .radios-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
    .radios-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-stats { grid-template-columns: repeat(2, 1fr); }
    .home-links-grid { grid-template-columns: repeat(2, 1fr); }
    .home-pr-grid { grid-template-columns: 1fr; }
    .app-inner { grid-template-columns: 1fr; }
    .checkout-grid { grid-template-columns: 1fr; }
    .account-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .menu-toggle { display: flex; }

    .main-nav {
        position: fixed;
        top: var(--header-h);
        left: 0; right: 0;
        background: var(--white);
        border-bottom: 1px solid var(--gray-200);
        padding: 16px;
        transform: translateY(-120%);
        opacity: 0;
        visibility: hidden;
        transition: all .3s ease;
        box-shadow: var(--shadow-lg);
    }
    .main-nav.open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    .main-nav ul {
        flex-direction: column;
        align-items: stretch;
    }
    .main-nav a {
        padding: 12px 16px;
        font-size: 1rem;
    }
    .main-nav .nav-cta { margin-left: 0; margin-top: 8px; text-align: center; }

    .section { padding: 56px 0; }
    .hero { padding: 60px 0 48px; }

    .radios-grid { grid-template-columns: 1fr; }
    .stations-grid { grid-template-columns: 1fr; max-height: 400px; }
    .features-grid,
    .why-grid,
    .coverage-grid,
    .contact-grid { grid-template-columns: 1fr; }

    .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
    .services-grid { grid-template-columns: 1fr; }
    .home-links-grid { grid-template-columns: 1fr; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .stat-card { padding: 16px 12px; }
    .stat-value { font-size: 1.375rem; }
    .footer-grid { grid-template-columns: 1fr; }
    .lang-switcher { display: none; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}
