/* CSS VARIABLES */
:root {
    --primary: #2271B3;
    --primary-dark: #1b5b91;
    --accent: #9DB1CC;
    --highlight: #49678D;
    --bg-light: #F0F5FB;
    --text-dark: #1a2a3a;
    --text-muted: #5a6c7f;
    --white: #ffffff;
    --border: #dbe4ef;

    --font-sans: 'Inter', sans-serif;
    --font-serif: 'Playfair Display', serif;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 24px;
    --radius-full: 9999px;

    --shadow-sm: 0 2px 8px rgba(34, 113, 179, 0.08);
    --shadow-md: 0 4px 16px rgba(34, 113, 179, 0.12);
    --shadow-lg: 0 12px 32px rgba(34, 113, 179, 0.15);
    
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--accent) var(--bg-light);
}

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    color: var(--primary);
    line-height: 1.2;
}

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

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

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

.section {
    padding: 80px 0;
}

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

.text-center { text-align: center; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.text-muted { color: var(--text-muted); }
.text-primary { color: var(--primary); }
.playfair { font-family: var(--font-serif); }
.w-full { width: 100%; }

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--accent);
    border-radius: 3px;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 500;
    font-family: var(--font-sans);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

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

.btn-text {
    background: transparent;
    color: var(--highlight);
    padding: 8px 16px;
}
.btn-text:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}
.btn-sm {
    padding: 8px 16px;
    font-size: 0.875rem;
}

/* HEADER */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(219, 228, 239, 0.5);
    transition: var(--transition);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
}

.logo-icon {
    height: 36px;
    width: 36px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger .bar {
    width: 25px;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

/* HERO SECTION */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

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

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.7) 50%, rgba(255,255,255,0.1) 100%);
}

.hero-content {
    max-width: 600px;
    margin: 0;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: var(--text-dark);
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* TIMELINE (How to start) */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 24px;
    height: calc(100% - 48px);
    width: 2px;
    background: var(--accent);
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    position: relative;
}

.timeline-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: bold;
    z-index: 1;
    flex-shrink: 0;
    box-shadow: 0 0 0 6px var(--bg-light);
}

.timeline-content {
    margin-left: 24px;
    padding-top: 12px;
}

.timeline-content h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
}

/* MINI PRICE CARDS */
.mini-price-cards {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.mini-card {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
    min-width: 200px;
    border: 1px solid var(--border);
    transition: var(--transition);
}

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

.mini-card.highlight {
    border-color: var(--primary);
    background: rgba(34, 113, 179, 0.03);
}

.mini-card h4 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--text-muted);
}

.mini-card .price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary);
}

.mini-card .price span {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: normal;
}

/* FORMS */
.inline-form {
    display: flex;
    gap: 16px;
    max-width: 833px;
    margin: 0 auto;
    background: var(--white);
    padding: 16px;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-md);
}

.inline-form input {
    flex: 1;
    border: 1px solid var(--border);
    padding: 12px 20px;
    border-radius: var(--radius-full);
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
}

.inline-form input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(34, 113, 179, 0.1);
}

.inline-form .btn {
    flex-shrink: 0;
}

/* SLIDER */
.slider-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.slider-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 500px;
}

.slide {
    min-width: 100%;
    position: relative;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 40px 24px 24px;
    font-size: 1.25rem;
    text-align: center;
    font-family: var(--font-serif);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.7);
    color: var(--primary);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: white;
    color: var(--primary-dark);
}

.slider-btn.prev { left: 16px; }
.slider-btn.next { right: 16px; }

.slider-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: white;
    transform: scale(1.2);
}

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

.accordion-item {
    margin-bottom: 16px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

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

.accordion-header:hover {
    color: var(--primary);
}

.accordion-header .icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.accordion-header.active .icon {
    transform: rotate(45deg);
    color: var(--primary);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: var(--white);
}

.accordion-content p {
    padding: 0 24px 24px;
    color: var(--text-muted);
}

/* CIRCULAR ABOUT */
.about-circular-layout {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-center-img {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 8px solid var(--white);
    position: relative;
    z-index: 2;
}

.about-center-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-text-content {
    position: absolute;
    width: 100%;
    height: 100%;
}

.about-text-item {
    position: absolute;
    width: 250px;
    background: var(--white);
    padding: 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    z-index: 1;
    transition: var(--transition);
}

.about-text-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    z-index: 3;
}

.about-text-item h4 {
    margin-bottom: 8px;
    font-size: 1.25rem;
}

.about-text-item p {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.top-left { top: 10%; left: 0; }
.top-right { top: 10%; right: 0; }
.bottom-left { bottom: 10%; left: 0; }
.bottom-right { bottom: 10%; right: 0; }

.about-desc {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.125rem;
    font-style: italic;
    color: var(--highlight);
}

/* SCHEDULE TABLE */
.table-responsive {
    overflow-x: auto;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.schedule-table th, .schedule-table td {
    padding: 20px 24px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.schedule-table th {
    background: var(--primary);
    color: var(--white);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
}

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

.schedule-table tbody tr:hover {
    background-color: var(--bg-light);
}

.badge {
    background: var(--accent);
    color: var(--white);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
}

/* PRICES */
.price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    align-items: start;
}

.price-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    box-shadow: var(--shadow-md);
    position: relative;
    border: 1px solid var(--border);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.price-card.popular {
    border: 2px solid var(--primary);
    transform: scale(1.05);
    background: linear-gradient(to bottom, #ffffff, var(--bg-light));
}

.price-card.popular:hover {
    transform: scale(1.05) translateY(-5px);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 4px 16px;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: bold;
    white-space: nowrap;
}

.price-card-header {
    text-align: center;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.price-card-header h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.price-value {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary);
    font-family: var(--font-serif);
}

.price-subtitle {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.price-features {
    list-style: none;
    margin-bottom: 32px;
    flex-grow: 1;
}

.price-features li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.price-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.price-card .btn {
    width: 100%;
    margin-top: auto;
}

/* CALCULATOR */
.calc-container {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.calc-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.calc-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.range-slider {
    width: 100%;
    height: 6px;
    background: var(--border);
    border-radius: 3px;
    outline: none;
    -webkit-appearance: none;
}

.range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-weight: normal;
}

.calc-result {
    background: var(--bg-light);
    padding: 32px;
    border-radius: var(--radius-md);
    text-align: center;
    border: 2px dashed var(--accent);
}

.calc-price {
    font-size: 3.5rem;
    font-family: var(--font-serif);
    color: var(--primary);
    font-weight: bold;
    margin: 16px 0;
}

.calc-savings {
    color: #28a745;
    font-weight: 600;
    min-height: 24px;
}

/* SELLING TEXT */
.pure-text-section {
    background: var(--white);
    padding: 100px 0;
}

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

.text-content-narrow h2 {
    font-size: 2.5rem;
}

.text-content-narrow p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

/* BENEFITS */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.benefit-item {
    background: var(--white);
    padding: 32px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
}

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

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    display: inline-block;
}

.benefit-item h4 {
    margin-bottom: 12px;
    font-size: 1.25rem;
}

/* YOGA FOCUSES */
.focus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

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

.focus-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.focus-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.focus-content {
    padding: 24px;
}

.focus-content h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.focus-content p {
    color: var(--text-muted);
    margin-bottom: 16px;
    font-size: 0.9rem;
    min-height: 66px;
}

/* FOOTER */
.footer {
    background-color: var(--text-dark);
    color: rgba(255,255,255,0.7);
    padding-top: 80px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

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

.footer h4 {
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 1.125rem;
    margin-bottom: 20px;
}

.footer-links, .footer-contact {
    list-style: none;
}

.footer-links li, .footer-contact li {
    margin-bottom: 12px;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 24px 0;
    font-size: 0.875rem;
}

/* MODAL */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    width: 90%;
    max-width: 500px;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.modal.show .modal-content {
    transform: scale(1);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-muted);
}

.vertical-form .form-group {
    margin-bottom: 20px;
}

.vertical-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.vertical-form input[type="text"],
.vertical-form input[type="tel"],
.vertical-form input[type="email"] {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: inherit;
    transition: var(--transition);
}

.vertical-form input:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(34, 113, 179, 0.1);
}

.radio-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* COOKIE BANNER */
.cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 -4px 16px rgba(0,0,0,0.1);
    padding: 24px;
    z-index: 1500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    transition: bottom 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.cookie-banner.show {
    bottom: 0;
}

.cookie-content p {
    font-size: 0.9rem;
    color: var(--text-dark);
}

.cookie-content a {
    color: var(--primary);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

/* ANIMATIONS */
.scroll-anim {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
}

.scroll-anim.in-view {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }

.fade-in-up {
    animation: fadeInUp 1s ease-out forwards;
    opacity: 0;
}

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

/* MEDIA QUERIES */
@media (max-width: 1024px) {
    .about-circular-layout {
        flex-direction: column;
        gap: 40px;
    }
    .about-text-content {
        position: relative;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        height: auto;
    }
    .about-text-item {
        position: relative;
        width: 100%;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
    }
    .hero h1 { font-size: 3rem; }
}

@media (max-width: 768px) {
    .nav {
        position: absolute;
        top: 80px;
        left: -100%;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        align-items: center;
        padding: 40px 0;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        transition: 0.3s ease;
    }
    
    .nav.active { left: 0; }
    
    .nav-list {
        flex-direction: column;
        align-items: center;
    }
    
    .hamburger { display: flex; }
    
    .calc-container { grid-template-columns: 1fr; }
    
    .inline-form { flex-direction: column; border-radius: var(--radius-md); }
    .inline-form input { border-radius: var(--radius-sm); }
    
    .cookie-banner {
        flex-direction: column;
        text-align: center;
    }
    
    .slider-wrapper { height: 400px; }
    .price-card.popular { transform: none; }
    .price-card.popular:hover { transform: translateY(-10px); }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2.25rem; }
    .section { padding: 50px 0; }
    .about-text-content { grid-template-columns: 1fr; }
    .timeline::before { left: 20px; }
    .timeline-icon { width: 40px; height: 40px; font-size: 1.25rem; }
    .timeline-content { margin-left: 16px; }
    .slider-wrapper { height: 300px; }
}
