/* PRACOWNIKA PRAWO - NOWY DESIGN */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #212121;
    background: #fafafa;
}

/* === TYPOGRAFIA === */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    color: #1a1a1a;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; margin-bottom: 1.5rem; }
h3 { font-size: 1.5rem; margin-bottom: 1rem; }
h4 { font-size: 1.2rem; margin-bottom: 0.8rem; }

p {
    margin-bottom: 1rem;
    color: #424242;
}

a {
    color: #c62828;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* === HERO SEKCJA === */
.hero {
    background: linear-gradient(135deg, #b71c1c 0%, #e53935 100%);
    color: white;
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background-image: repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255,255,255,.1) 35px, rgba(255,255,255,.1) 70px);
}

.hero-content {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.95);
    color: #c62828;
    padding: 8px 24px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 2px solid white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.hero-title {
    margin-bottom: 2rem;
}

.hero-line1 {
    display: block;
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
    color: white;
}

.hero-line2 {
    display: block;
    font-size: 4rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -2px;
    color: white;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
    margin-top: 0.5rem;
}

.hero-warning {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 2rem auto;
    opacity: 0.95;
    color: white;
}

.hero-cta {
    display: inline-block;
    background: white;
    color: #c62828;
    padding: 16px 48px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(0,0,0,0.3);
    text-decoration: none;
}

/* === NAWIGACJA === */
.modern-nav {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    flex-wrap: wrap;
}

.nav-item {
    display: inline-block;
    padding: 20px 24px;
    color: #424242;
    font-weight: 500;
    position: relative;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: #c62828;
    transform: translateX(-50%);
}

.nav-item:hover::after,
.nav-item.active::after {
    width: 80%;
}

.nav-item:hover {
    color: #c62828;
    text-decoration: none;
}

.nav-item.critical {
    background: #c62828;
    color: white;
    margin-left: 10px;
    border-radius: 4px;
}

.nav-item.critical:hover {
    background: #b71c1c;
}

/* === CONTAINER === */
.main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

section {
    margin-bottom: 80px;
    scroll-margin-top: 80px;
}

/* === DANGER ZONE === */
.danger-zone {
    background: white;
    border-radius: 12px;
    padding: 48px;
    box-shadow: 0 10px 40px rgba(198,40,40,0.1);
    border: 2px solid #ffcdd2;
    position: relative;
    overflow: hidden;
}

.danger-zone::before {
    content: '⚠️';
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 120px;
    opacity: 0.05;
}

.danger-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 2rem;
}

.danger-icon {
    font-size: 3rem;
}

.danger-header h2 {
    color: #c62828;
    margin: 0;
}

.danger-title {
    font-size: 1.8rem;
    color: #b71c1c;
    margin-bottom: 2rem;
    font-weight: 700;
}

.consequence-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-bottom: 3rem;
}

.consequence-card {
    background: #fff5f5;
    padding: 24px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #ffcdd2;
    position: relative;
}

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

.consequence-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.consequence-card h4 {
    color: #c62828;
    margin-bottom: 0.5rem;
}

.consequence-card p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}

/* === YOUR RIGHTS === */
.your-rights {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    padding: 36px;
    border-radius: 8px;
    margin-top: 2rem;
}

.rights-title {
    font-size: 1.5rem;
    color: #2e7d32;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.rights-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.right-item {
    text-align: center;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.right-item .check {
    font-size: 2rem;
    color: #4caf50;
    margin-bottom: 0.5rem;
    display: block;
}

.right-item strong {
    display: block;
    color: #2e7d32;
    margin-bottom: 0.5rem;
}

.right-item p {
    font-size: 0.9rem;
    margin: 0;
}

/* === LEGAL BADGE === */
.legal-badge {
    display: inline-block;
    background: #263238;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 0.85rem;
    margin-top: 1.5rem;
}

.legal-badge a {
    color: #4fc3f7;
    font-weight: 600;
}

.legal-badge span {
    color: #ffd54f;
    font-weight: bold;
}

/* === MODERN SECTION === */
.modern-section {
    background: white;
    padding: 48px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-subtitle {
    color: #757575;
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

/* === CARDS === */
.modern-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.modern-card {
    background: #f8f9fa;
    padding: 32px;
    border-radius: 8px;
    border-left: 4px solid #2196f3;
    position: relative;
}

.modern-card:hover {
    transform: translateX(4px);
    box-shadow: 0 6px 24px rgba(0,0,0,0.1);
}

.card-icon {
    font-size: 2rem;
    color: #2196f3;
    margin-bottom: 1rem;
}

.modern-card h3 {
    color: #1976d2;
    margin-bottom: 1rem;
}

.modern-list {
    list-style: none;
    padding: 0;
}

.modern-list li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
}

.modern-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: bold;
}

.card-footer {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #e0e0e0;
    font-size: 0.85rem;
    color: #757575;
}

.law-link {
    color: #1976d2;
    font-weight: 500;
    cursor: pointer;
}

.law-link:hover {
    color: #1565c0;
}

/* === L4 SECTION === */
.l4-section {
    background: #f5f5f5;
    padding: 48px;
    border-radius: 12px;
}

.l4-protection {
    background: white;
    padding: 36px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.protection-main {
    display: flex;
    align-items: center;
    gap: 32px;
    background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
    color: white;
    padding: 36px;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.protection-icon {
    font-size: 4rem;
}

.protection-content h3 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
}

.highlight {
    background: rgba(255,255,255,0.2);
    padding: 2px 8px;
    border-radius: 4px;
}

.protection-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.detail-card {
    padding: 24px;
    border-radius: 8px;
    border: 2px solid;
}

.detail-card.green {
    background: #e8f5e9;
    border-color: #4caf50;
}

.detail-card.yellow {
    background: #fff8e1;
    border-color: #ffc107;
}

.detail-card h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

.detail-card li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
}

.detail-card li::before {
    content: '•';
    position: absolute;
    left: 8px;
    color: #4caf50;
    font-weight: bold;
}

.myth-buster {
    display: flex;
    align-items: center;
    gap: 24px;
    background: #ffebee;
    padding: 24px;
    border-radius: 8px;
    border: 2px solid #ef5350;
    margin-top: 2rem;
}

.myth-icon {
    font-size: 2.5rem;
}

.myth-buster h4 {
    color: #c62828;
    margin-bottom: 0.5rem;
}

/* === VACATION CARDS === */
.vacation-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.vacation-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.vacation-card.basic {
    border-top: 4px solid #9c27b0;
}

.vacation-card.urgent {
    border-top: 4px solid #f44336;
}

.vacation-card.notice {
    border-top: 4px solid #2196f3;
}

.vacation-header {
    padding: 24px;
    background: #fafafa;
    display: flex;
    align-items: center;
    gap: 16px;
}

.vacation-icon {
    font-size: 2rem;
}

.vacation-header h3 {
    margin: 0;
}

.vacation-content {
    padding: 24px;
}

.vacation-item {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 1rem;
}

.days {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1976d2;
}

.label {
    font-size: 0.95rem;
    color: #666;
}

.vacation-list {
    list-style: none;
    padding: 0;
}

.vacation-list li {
    padding: 6px 0;
}

.vacation-note {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e0e0e0;
    font-size: 0.85rem;
    color: #757575;
}

.vacation-law {
    display: inline-block;
    background: #37474f;
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    margin-top: 0.5rem;
}

/* === TERMINATION COMPARISON === */
.termination-comparison {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.termination-option {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.termination-option.best {
    border-top: 4px solid #4caf50;
}

.termination-option.worst {
    border-top: 4px solid #f44336;
}

.termination-option.bad {
    border-top: 4px solid #ff9800;
}

.termination-option.neutral {
    border-top: 4px solid #9e9e9e;
}

.option-header {
    padding: 24px;
    background: #fafafa;
}

.option-header h3 {
    margin: 0;
    font-size: 1.1rem;
}

.option-benefits {
    padding: 24px;
}

.benefit {
    color: #2e7d32;
    padding: 8px 0;
    font-size: 0.95rem;
}

.benefit::before {
    content: '✓ ';
    font-weight: bold;
}

.penalty {
    color: #c62828;
    padding: 8px 0;
    font-size: 0.95rem;
}

.penalty::before {
    content: '✗ ';
    font-weight: bold;
}

.mixed {
    color: #f57c00;
    padding: 8px 0;
    font-size: 0.95rem;
}

.mixed::before {
    content: '• ';
    font-weight: bold;
}

/* === GOLDEN RULES === */
.golden-rules {
    background: linear-gradient(135deg, #37474f 0%, #263238 100%);
    color: white;
    padding: 48px;
    border-radius: 12px;
}

.rules-header {
    text-align: center;
    margin-bottom: 3rem;
}

.rules-header h2 {
    color: white;
    margin-bottom: 0.5rem;
}

.rules-header p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
}

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

.rule {
    display: flex;
    gap: 20px;
    background: rgba(255,255,255,0.08);
    padding: 24px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.rule-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%);
    color: #263238;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.rule-content h4 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.rule-content p {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    margin: 0;
}

/* === HELP SECTION === */
.help-section {
    background: white;
    padding: 48px;
    border-radius: 12px;
}

.help-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.help-card {
    background: white;
    padding: 36px;
    border-radius: 8px;
    text-align: center;
    border: 2px solid #e0e0e0;
    position: relative;
    overflow: hidden;
}

.help-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.help-card.pip::before {
    background: #2196f3;
}

.help-card.court::before {
    background: #ff9800;
}

.help-card.union::before {
    background: #4caf50;
}

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

.help-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.help-card h3 {
    margin-bottom: 1rem;
}

.help-phone {
    display: inline-block;
    background: #2196f3;
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.help-phone:hover {
    background: #1976d2;
    text-decoration: none;
    transform: scale(1.05);
}

.deadline {
    display: inline-block;
    background: #f44336;
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.free {
    color: #4caf50;
    font-weight: bold;
    font-size: 1.1rem;
}

/* === FOOTER === */
.modern-footer {
    background: linear-gradient(135deg, #263238 0%, #37474f 100%);
    color: white;
    text-align: center;
    padding: 48px 20px;
    margin-top: 80px;
}

.footer-content p {
    margin: 0.5rem 0;
    font-size: 1rem;
}

.footer-law {
    color: #ffd54f;
    font-weight: 600;
}

.footer-disclaimer {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    font-size: 0.85rem;
    opacity: 0.8;
}

/* === POPUP MODAL === */
.popup-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.popup-modal.active {
    display: flex;
}

.popup-content {
    background: white;
    padding: 48px;
    border-radius: 12px;
    max-width: 650px;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.popup-close {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 2rem;
    cursor: pointer;
    background: none;
    border: none;
    color: #757575;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-close:hover {
    background: #f5f5f5;
    color: #212121;
}

.popup-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid #e0e0e0;
}

.popup-icon {
    font-size: 2.5rem;
    color: #1976d2;
}

.popup-title {
    margin: 0;
    font-size: 1.6rem;
    color: #212121;
}

.popup-article {
    font-size: 0.9rem;
    color: #757575;
}

.popup-body {
    line-height: 1.8;
    color: #424242;
}

.popup-body h4 {
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #212121;
}

.popup-body ul {
    margin-left: 24px;
    margin-bottom: 1rem;
}

.popup-body li {
    margin-bottom: 0.5rem;
}

.popup-footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e0e0e0;
    text-align: center;
    font-size: 0.85rem;
    color: #757575;
}

/* === SOS BUTTON === */
.sos-button {
    position: fixed;
    bottom: 32px;
    right: 32px;
    background: linear-gradient(135deg, #f44336 0%, #e53935 100%);
    color: white;
    border: none;
    border-radius: 50%;
    width: 88px;
    height: 88px;
    font-size: 1.8rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(244,67,54,0.4);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.sos-button:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(244,67,54,0.5);
}

.sos-button span {
    display: block;
    font-size: 0.7rem;
    margin-top: 4px;
    letter-spacing: 1px;
}

/* === SOS MODAL === */
.sos-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.sos-modal.active {
    display: flex;
}

.sos-content {
    background: white;
    padding: 48px;
    border-radius: 12px;
    max-width: 550px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.sos-header {
    text-align: center;
    margin-bottom: 2rem;
}

.sos-header h2 {
    color: #f44336;
    margin-bottom: 0.5rem;
    font-size: 2rem;
}

.sos-options {
    display: grid;
    gap: 16px;
}

.sos-option {
    background: #fafafa;
    padding: 24px;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
}

.sos-option:hover {
    border-color: #2196f3;
    background: #e3f2fd;
    transform: translateX(4px);
}

.sos-option h3 {
    margin-bottom: 0.5rem;
    color: #212121;
}

.sos-option p {
    font-size: 0.9rem;
    color: #757575;
    margin: 0;
}

.sos-close {
    background: #757575;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
    margin-top: 1.5rem;
    font-size: 1rem;
}

.sos-close:hover {
    background: #616161;
}

/* === TEMPLATE MODAL === */
.template-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 2001;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.template-modal.active {
    display: flex;
}

.template-content {
    background: white;
    padding: 48px;
    border-radius: 12px;
    max-width: 750px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.template-header {
    margin-bottom: 1.5rem;
}

.template-header h3 {
    margin-bottom: 0.5rem;
    color: #212121;
}

.template-text {
    background: #f5f5f5;
    padding: 24px;
    border-radius: 6px;
    white-space: pre-wrap;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    border: 1px solid #e0e0e0;
}

.template-actions {
    display: flex;
    gap: 12px;
}

.btn-copy {
    background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    flex: 1;
    font-size: 1rem;
    font-weight: 500;
}

.btn-copy:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76,175,80,0.3);
}

.btn-back {
    background: #757575;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    flex: 1;
    font-size: 1rem;
    font-weight: 500;
}

.btn-back:hover {
    background: #616161;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .termination-comparison {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-line2 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 20px;
    }
    
    .hero-line1 {
        font-size: 1.8rem;
    }
    
    .hero-line2 {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        gap: 40px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .rights-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .termination-comparison {
        grid-template-columns: 1fr;
    }
    
    .help-cards {
        grid-template-columns: 1fr;
    }
    
    .protection-main {
        flex-direction: column;
        text-align: center;
    }
    
    .nav-container {
        flex-direction: column;
        padding: 0;
    }
    
    .nav-item {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #f5f5f5;
    }
    
    .nav-item::after {
        display: none;
    }
    
    .nav-item.active {
        background: #ffebee;
        color: #c62828;
    }
    
    .sos-button {
        width: 72px;
        height: 72px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.2rem; }
    
    .hero-line1 {
        font-size: 1.5rem;
    }
    
    .hero-line2 {
        font-size: 2rem;
        letter-spacing: -1px;
    }
    
    .rights-grid-4 {
        grid-template-columns: 1fr;
    }
    
    .consequence-cards {
        grid-template-columns: 1fr;
    }
    
    .protection-details {
        grid-template-columns: 1fr;
    }
    
    .rules-grid {
        grid-template-columns: 1fr;
    }
    
    .modern-cards {
        grid-template-columns: 1fr;
    }
    
    .vacation-cards {
        grid-template-columns: 1fr;
    }
}