/* ============================================
   Taikos 98 — Hot Desk Landing Page
   Mobile-first, warm neutrals, clean modern
   ============================================ */

/* CSS Custom Properties */
:root {
    --accent: #e67700;
    --accent-hover: #cc6a00;
    --accent-light: #fff3e0;
    --cream: #faf8f5;
    --cream-dark: #f5f0ea;
    --white: #ffffff;
    --grey-50: #f9f9f8;
    --grey-100: #f0eeec;
    --grey-200: #e4e1de;
    --grey-300: #d1ccc7;
    --grey-500: #8a827a;
    --grey-700: #4a4540;
    --grey-900: #1a1816;
    --text: #2d2926;
    --text-light: #6b6560;
    --success: #2d7d46;
    --border: #e8e4e0;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.06);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.08);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    background: var(--cream);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input, textarea, select {
    font-family: inherit;
    font-size: 1rem;
}

/* Container */
.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   Language Toggle
   ============================================ */
.lang-toggle {
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 1001;
    display: flex;
    gap: 4px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-sm);
    padding: 3px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.lang-btn {
    padding: 6px 12px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--grey-500);
    border-radius: 4px;
    transition: var(--transition);
    letter-spacing: 0.02em;
}

.lang-btn.active {
    background: var(--grey-900);
    color: var(--white);
}

.lang-btn:not(.active):hover {
    color: var(--text);
    background: var(--grey-100);
}

/* ============================================
   Navigation
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: var(--transition);
    padding: 16px 0;
}

.nav.scrolled {
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(16px);
    box-shadow: var(--shadow-sm);
    padding: 10px 0;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--white);
    transition: var(--transition);
}

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

.logo-icon {
    font-size: 1.3rem;
    line-height: 1;
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
    z-index: 1002;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
    border-radius: 2px;
}

.nav.scrolled .nav-toggle span {
    background: var(--text);
}

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

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

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

.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    list-style: none;
    padding: 80px 32px 32px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transition: right 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.nav-menu.open {
    right: 0;
}

.nav-menu a {
    display: block;
    padding: 12px 0;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

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

.nav-cta {
    background: var(--accent) !important;
    color: var(--white) !important;
    text-align: center;
    border-radius: var(--radius-sm);
    margin-top: 12px;
    border-bottom: none !important;
    padding: 14px !important;
    font-weight: 600 !important;
}

.nav-cta:hover {
    background: var(--accent-hover) !important;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    padding-bottom: 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(26, 24, 22, 0.88) 0%,
        rgba(26, 24, 22, 0.5) 40%,
        rgba(26, 24, 22, 0.15) 70%,
        rgba(26, 24, 22, 0.05) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1140px;
    padding: 0 20px;
    color: var(--white);
}

.hero-content h1 {
    font-size: clamp(1.8rem, 5.5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    max-width: 680px;
}

.hero-subtext {
    font-size: clamp(1rem, 2.2vw, 1.15rem);
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 28px;
    max-width: 560px;
    font-weight: 300;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.hero-trust {
    font-size: 0.85rem;
    opacity: 0.75;
    max-width: 480px;
    line-height: 1.5;
    font-weight: 300;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-decoration: none;
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(230, 119, 0, 0.3);
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(230, 119, 0, 0.35);
}

.btn-secondary {
    background: rgba(255,255,255,0.15);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(4px);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.25);
}

.btn-full {
    width: 100%;
    padding: 16px 28px;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.scroll-indicator span {
    display: block;
    width: 24px;
    height: 36px;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 12px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 8px;
    background: rgba(255,255,255,0.6);
    border-radius: 2px;
    animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.6; top: 6px; }
    50% { opacity: 1; top: 14px; }
}

/* ============================================
   Sections General
   ============================================ */
.section {
    padding: 64px 0;
}

.section-title {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: var(--grey-900);
    letter-spacing: -0.02em;
}

/* ============================================
   Privalumai Section
   ============================================ */
.privalumai {
    background: var(--cream);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.feature-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--grey-300);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 16px;
    line-height: 1;
}

.feature-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--grey-900);
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ============================================
   Kainos Section
   ============================================ */
.kainos {
    background: var(--white);
}

.kainos-note {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 28px;
    font-size: 0.95rem;
}

.pricing-toggle {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 32px;
}

.toggle-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: var(--radius-md);
    border: 2px solid var(--border);
    color: var(--text-light);
    transition: var(--transition);
}

.toggle-btn.active {
    background: var(--grey-900);
    color: var(--white);
    border-color: var(--grey-900);
}

.toggle-btn:not(.active):hover {
    border-color: var(--grey-500);
    color: var(--text);
}

.pricing-table-wrapper {
    overflow-x: auto;
    margin-bottom: 24px;
    -webkit-overflow-scrolling: touch;
}

.pricing-table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.pricing-table th {
    padding: 16px 20px;
    text-align: left;
    font-weight: 600;
    color: var(--grey-500);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-bottom: 2px solid var(--grey-200);
}

.pricing-table td {
    padding: 18px 20px;
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
}

.pricing-table tbody tr {
    transition: var(--transition);
}

.pricing-table tbody tr:hover {
    background: var(--grey-50);
}

.pricing-table tbody tr.popular {
    background: var(--accent-light);
    border-left: 3px solid var(--accent);
}

.pricing-table tbody tr.popular:hover {
    background: #ffe8cc;
}

.col-yearly {
    display: none;
}

.col-yearly.active {
    display: table-cell;
}

.col-monthly:not(.active) {
    display: none;
}

.period {
    font-size: 0.8rem;
    color: var(--grey-500);
    font-weight: 400;
}

.badge-popular {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 4px 10px;
    border-radius: 20px;
    margin-right: 8px;
    vertical-align: middle;
}

.badge-free {
    display: inline-block;
    background: var(--success);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 12px;
    margin-left: 6px;
    vertical-align: middle;
}

.text-muted {
    color: var(--grey-500);
    font-weight: 400;
}

.savings-note {
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 24px;
    padding: 16px;
    background: var(--cream);
    border-radius: var(--radius-md);
}

.competitor-line {
    text-align: center;
    font-size: 0.85rem;
    color: var(--grey-500);
    padding: 16px;
    border-top: 1px solid var(--border);
    line-height: 1.6;
}

/* ============================================
   Galerija Section
   ============================================ */
.galerija {
    background: var(--cream);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.03);
}

/* ============================================
   Vieta Section
   ============================================ */
.vieta {
    background: var(--white);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.location-card {
    padding: 24px;
    background: var(--cream);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.location-icon {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.location-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--grey-900);
}

.location-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

.location-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 300px;
    border: 1px solid var(--border);
}

.location-map iframe {
    width: 100%;
    height: 300px;
    display: block;
}

/* ============================================
   D.U.K. Section
   ============================================ */
.duk {
    background: var(--cream);
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    background: var(--white);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: var(--transition);
}

.accordion-item:hover {
    border-color: var(--grey-300);
}

.accordion-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text);
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
}

.accordion-header:hover {
    background: var(--grey-50);
}

.accordion-icon {
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--accent);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-item.active .accordion-body {
    max-height: 300px;
    padding: 0 24px 20px;
}

.accordion-body p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ============================================
   Kontaktai Section (Conversion)
   ============================================ */
.kontaktai {
    background: linear-gradient(135deg, var(--grey-900) 0%, #2d2926 100%);
    color: var(--white);
    padding: 72px 0;
}

.kontaktai .section-title {
    color: var(--white);
    text-align: left;
    margin-bottom: 12px;
}

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

.contact-subtitle {
    color: rgba(255,255,255,0.75);
    font-size: 1rem;
    margin-bottom: 32px;
    line-height: 1.6;
    font-weight: 300;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.contact-row {
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
    transition: var(--transition);
    padding: 8px 0;
}

.contact-row:hover {
    color: var(--white);
}

.contact-icon {
    font-size: 1.2rem;
    line-height: 1;
    width: 28px;
    text-align: center;
}

.contact-trust {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.7);
}

.trust-item span:first-child {
    color: var(--accent);
    font-weight: 700;
    font-size: 1rem;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 32px 24px;
    box-shadow: var(--shadow-lg);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--grey-700);
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 14px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 1rem;
    color: var(--text);
    background: var(--grey-50);
    transition: var(--transition);
    -webkit-appearance: none;
    appearance: none;
}

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

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

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b6560' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.captcha-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    align-items: end;
}

.captcha-group label {
    grid-column: 1;
    font-size: 0.95rem;
    color: var(--text);
    font-weight: 600;
}

.captcha-group input {
    grid-column: 2;
}

.form-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--grey-500);
    margin-top: 4px;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--grey-900);
    color: rgba(255,255,255,0.7);
    padding: 48px 0 24px;
    font-size: 0.9rem;
}

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

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-brand .logo-icon {
    font-size: 1.5rem;
}

.footer-brand .logo-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
}

.footer h4 {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.footer a {
    display: block;
    color: rgba(255,255,255,0.6);
    padding: 4px 0;
    transition: var(--transition);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.45);
}

/* ============================================
   Toast Notification
   ============================================ */
.toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(120px);
    background: var(--grey-900);
    color: var(--white);
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: var(--shadow-lg);
    z-index: 2000;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    pointer-events: none;
}

.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

/* ============================================
   Responsive — Tablet (640px+)
   ============================================ */
@media (min-width: 640px) {
    .container {
        padding: 0 28px;
    }
    
    .section {
        padding: 80px 0;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-item-large {
        grid-column: span 2;
        aspect-ratio: 16/9;
    }
    
    .gallery-item-wide {
        grid-column: span 2;
        aspect-ratio: 16/9;
    }
    
    .contact-grid {
        gap: 60px;
    }
    
    .contact-form-wrapper {
        padding: 40px 36px;
    }
    
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
    
    .nav-menu {
        width: 320px;
        padding-top: 90px;
    }
}

/* ============================================
   Responsive — Desktop (1024px+)
   ============================================ */
@media (min-width: 1024px) {
    .container {
        padding: 0 32px;
    }
    
    .section {
        padding: 100px 0;
    }
    
    /* Navigation */
    .nav-toggle {
        display: none;
    }
    
    .nav-menu {
        position: static;
        width: auto;
        height: auto;
        flex-direction: row;
        align-items: center;
        background: none;
        box-shadow: none;
        padding: 0;
        gap: 8px;
    }
    
    .nav-menu a {
        padding: 8px 14px;
        font-size: 0.88rem;
        border-bottom: none;
        color: rgba(255,255,255,0.9);
        border-radius: var(--radius-sm);
    }
    
    .nav-menu a:hover {
        color: var(--white);
        background: rgba(255,255,255,0.1);
    }
    
    .nav.scrolled .nav-menu a {
        color: var(--text);
    }
    
    .nav.scrolled .nav-menu a:hover {
        color: var(--accent);
        background: var(--grey-50);
    }
    
    .nav-cta {
        margin-top: 0;
        margin-left: 8px;
        padding: 10px 20px !important;
    }
    
    .nav.scrolled .nav-cta {
        color: var(--white) !important;
    }
    
    /* Hero */
    .hero {
        align-items: center;
        padding-bottom: 0;
    }
    
    .hero-content {
        padding-top: 80px;
    }
    
    .hero-ctas {
        gap: 16px;
    }
    
    /* Features */
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
    
    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
    }
    
    .gallery-item-large {
        grid-column: span 2;
        grid-row: span 2;
        aspect-ratio: auto;
    }
    
    .gallery-item-wide {
        grid-column: span 2;
        aspect-ratio: auto;
    }
    
    .gallery-item {
        aspect-ratio: 1;
    }
    
    /* Location */
    .location-grid {
        grid-template-columns: 1fr 1.5fr;
        gap: 48px;
        align-items: start;
    }
    
    .location-map {
        min-height: 400px;
    }
    
    .location-map iframe {
        height: 400px;
    }
    
    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr 1.2fr;
        gap: 80px;
        align-items: start;
    }
    
    .kontaktai {
        padding: 100px 0;
    }
    
    /* Pricing */
    .pricing-table {
        font-size: 1rem;
    }
    
    .pricing-table th,
    .pricing-table td {
        padding: 20px 24px;
    }
}

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

/* ============================================
   Focus Styles (Accessibility)
   ============================================ */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* ============================================
   Print Styles
   ============================================ */
@media print {
    .nav, .lang-toggle, .hero-bg, .scroll-indicator, .footer {
        display: none !important;
    }
    
    .hero {
        min-height: auto;
        background: var(--white);
        color: var(--text);
        padding: 40px 0;
    }
    
    .section {
        padding: 30px 0;
        page-break-inside: avoid;
    }
}
