/* ========================================
   VENETA LIQUOR — Custom Styles
   Plum + Amber | Vibrant Modern
   ======================================== */

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

:root {
    --plum: #6B2F5B;
    --plum-dark: #4A1D40;
    --plum-deeper: #351630;
    --plum-light: #8B4575;
    --amber: #F5A623;
    --amber-light: #F8C060;
    --amber-warm: #E8C547;
    --coral: #D4845C;
    --cream: #F8F5F2;
    --cream-dark: #EDE8E2;
    --white: #FFFFFF;
    --text-dark: #1A1A2E;
    --text-mid: #3D3D5C;
    --text-light: #6B6B8A;
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Inter', sans-serif;
    --shadow-sm: 0 2px 8px rgba(107, 47, 91, 0.08);
    --shadow-md: 0 8px 30px rgba(107, 47, 91, 0.12);
    --shadow-lg: 0 20px 60px rgba(107, 47, 91, 0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

/* Accent bar */
.accent-bar {
    height: 4px;
    background: linear-gradient(90deg, var(--plum) 0%, var(--plum) 33%, var(--amber) 33%, var(--amber) 66%, var(--coral) 66%, var(--coral) 100%);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
}

/* ========================================
   HEADER
   ======================================== */
.header {
    position: fixed;
    top: 4px;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(248, 245, 242, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(107, 47, 91, 0.08);
    transition: box-shadow 0.3s ease;
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--plum-dark);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.15rem;
    letter-spacing: 0.08em;
    line-height: 1.1;
}

.logo-accent {
    color: var(--amber);
}

.nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-mid);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: color 0.2s, background 0.2s;
}

.nav-link:hover {
    color: var(--plum);
    background: rgba(107, 47, 91, 0.06);
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--plum) !important;
    background: rgba(107, 47, 91, 0.08) !important;
    font-weight: 600 !important;
    margin-left: 8px;
}

.nav-phone:hover {
    background: var(--plum) !important;
    color: var(--white) !important;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1002;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--plum-dark);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.mobile-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

.mobile-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(248, 245, 242, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    align-items: center;
    justify-content: center;
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.mobile-nav-link {
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--plum-dark);
    letter-spacing: 0.05em;
    padding: 12px 24px;
    transition: color 0.2s;
}

.mobile-nav-link:hover {
    color: var(--amber);
}

.mobile-nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--amber);
    margin-top: 12px;
}

/* ========================================
   HERO
   ======================================== */
.hero {
    min-height: 100vh;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    background: var(--cream);
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.geo-shape {
    position: absolute;
    opacity: 0.08;
}

.geo-circle-1 {
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: var(--plum);
    top: -200px;
    right: -150px;
}

.geo-circle-2 {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: var(--amber);
    bottom: 10%;
    left: -80px;
}

.geo-circle-3 {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: var(--coral);
    top: 30%;
    left: 15%;
    opacity: 0.06;
}

.geo-triangle {
    width: 0;
    height: 0;
    border-left: 120px solid transparent;
    border-right: 120px solid transparent;
    border-bottom: 208px solid var(--plum);
    top: 15%;
    left: 5%;
    opacity: 0.04;
    transform: rotate(15deg);
}

.geo-dots {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 10%;
    background-image: radial-gradient(circle, var(--amber) 1.5px, transparent 1.5px);
    background-size: 20px 20px;
    opacity: 0.3;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(107, 47, 91, 0.08);
    border: 1px solid rgba(107, 47, 91, 0.15);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--plum);
    margin-bottom: 24px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--amber);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.3); }
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 0.95;
    color: var(--plum-dark);
    margin-bottom: 24px;
    letter-spacing: 0.02em;
}

.headline-accent {
    color: var(--amber);
    display: block;
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--text-mid);
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 36px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.25s ease;
    cursor: pointer;
    border: none;
    font-family: var(--font-body);
}

.btn-primary {
    background: var(--plum);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(107, 47, 91, 0.3);
}

.btn-primary:hover {
    background: var(--plum-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(107, 47, 91, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--plum);
    border: 2px solid rgba(107, 47, 91, 0.25);
}

.btn-secondary:hover {
    border-color: var(--plum);
    background: rgba(107, 47, 91, 0.05);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

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

.btn-lg {
    padding: 18px 36px;
    font-size: 1.05rem;
    border-radius: var(--radius-md);
}

.btn-primary:hover {
    background: var(--plum-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(107, 47, 91, 0.4);
}

/* Hero stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--plum-dark);
    letter-spacing: 0.02em;
}

.stat-label {
    font-size: 0.78rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(107, 47, 91, 0.15);
}

/* Hero visual */
.hero-visual {
    position: relative;
    height: 580px;
}

.hero-image-stack {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-img {
    position: absolute;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-img-1 {
    width: 260px;
    height: 340px;
    top: 0;
    right: 20px;
    z-index: 3;
}

.hero-img-2 {
    width: 210px;
    height: 260px;
    bottom: 60px;
    left: 0;
    z-index: 2;
}

.hero-img-3 {
    width: 180px;
    height: 220px;
    bottom: 0;
    right: 60px;
    z-index: 1;
}

.hero-float-card {
    position: absolute;
    bottom: 200px;
    right: -10px;
    z-index: 4;
    background: var(--white);
    padding: 14px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    z-index: 2;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

/* ========================================
   SECTION COMMON
   ======================================== */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.95rem;
    letter-spacing: 0.12em;
    color: var(--amber);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    color: var(--plum-dark);
    letter-spacing: 0.02em;
    line-height: 1.05;
    margin-bottom: 16px;
}

.section-sub {
    font-size: 1.05rem;
    color: var(--text-mid);
    line-height: 1.7;
}

.text-center { text-align: center; }

/* ========================================
   PRODUCTS
   ======================================== */
.products {
    padding: 100px 0 120px;
    position: relative;
    background: var(--cream);
    overflow: hidden;
}

.section-decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.decor-circle {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: var(--plum);
    opacity: 0.03;
    top: -100px;
    left: -100px;
}

.decor-rect {
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--amber);
    opacity: 0.04;
    border-radius: var(--radius-lg);
    bottom: -50px;
    right: -30px;
    transform: rotate(25deg);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(107, 47, 91, 0.06);
}

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

.product-card-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--plum);
}

.product-card:nth-child(2) .product-card-accent { background: var(--amber); }
.product-card:nth-child(3) .product-card-accent { background: var(--amber-warm); }
.product-card:nth-child(4) .product-card-accent { background: var(--coral); }

.product-icon {
    margin-bottom: 20px;
}

.product-card h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--plum-dark);
    letter-spacing: 0.04em;
    margin-bottom: 12px;
}

.product-card p {
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 20px;
}

.product-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--plum);
    background: rgba(107, 47, 91, 0.07);
    padding: 6px 14px;
    border-radius: 100px;
}

/* ========================================
   ABOUT
   ======================================== */
.about {
    padding: 100px 0;
    background: var(--white);
    overflow: hidden;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-visual {
    position: relative;
    height: 500px;
}

.about-img-main {
    width: 100%;
    height: 420px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
}

.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-img-accent {
    position: absolute;
    bottom: 0;
    right: -30px;
    width: 200px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    z-index: 3;
    border: 4px solid var(--white);
}

.about-img-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-badge {
    position: absolute;
    top: 20px;
    right: 30px;
    z-index: 4;
    background: var(--plum);
    color: var(--white);
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-md);
}

.about-content {
    max-width: 500px;
}

.about-content .section-tag {
    text-align: left;
}

.about-content .section-title {
    text-align: left;
}

.about-text {
    font-size: 1rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.value-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: rgba(107, 47, 91, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ========================================
   WHY US
   ======================================== */
.why-us {
    padding: 100px 0 80px;
    background: var(--cream);
    position: relative;
}

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

.why-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    position: relative;
    border: 1px solid rgba(107, 47, 91, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.why-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    color: rgba(107, 47, 91, 0.08);
    line-height: 1;
    margin-bottom: 16px;
}

.why-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--plum-dark);
    letter-spacing: 0.04em;
    margin-bottom: 12px;
}

.why-card p {
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.7;
}

.why-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 0 24px;
}

.divider-line {
    flex: 1;
    height: 1px;
    background: rgba(107, 47, 91, 0.12);
}

.divider-diamond {
    width: 10px;
    height: 10px;
    background: var(--amber);
    transform: rotate(45deg);
    flex-shrink: 0;
}

/* ========================================
   CTA
   ======================================== */
.cta {
    padding: 100px 0;
    background: var(--plum-dark);
    position: relative;
    overflow: hidden;
}

.cta-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
}

.cta-shape-1 {
    width: 500px;
    height: 500px;
    background: rgba(245, 166, 35, 0.08);
    top: -200px;
    right: -100px;
}

.cta-shape-2 {
    width: 300px;
    height: 300px;
    background: rgba(107, 47, 91, 0.3);
    bottom: -100px;
    left: -50px;
}

.cta-shape-3 {
    width: 120px;
    height: 120px;
    background: rgba(245, 166, 35, 0.12);
    top: 30%;
    left: 10%;
}

.cta-container {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cta-content {
    max-width: 520px;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    letter-spacing: 0.02em;
    line-height: 1.05;
    margin-bottom: 16px;
}

.cta-text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

/* ========================================
   LOCATION
   ======================================== */
.location {
    padding: 100px 0 120px;
    background: var(--cream);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

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

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(107, 47, 91, 0.06);
}

.info-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: rgba(107, 47, 91, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-card h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--plum-dark);
    letter-spacing: 0.04em;
    margin-bottom: 6px;
}

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

.info-card a {
    color: var(--plum);
    text-decoration: none;
    font-weight: 500;
}

.info-card a:hover {
    text-decoration: underline;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    font-size: 0.88rem;
}

.hours-row span:first-child {
    color: var(--text-light);
}

.hours-row span:last-child {
    font-weight: 600;
    color: var(--text-dark);
}

.map-btn {
    margin-top: 8px;
}

.location-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    min-height: 400px;
}

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

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--plum-deeper);
    color: rgba(255, 255, 255, 0.7);
    padding: 64px 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.footer-tagline {
    margin-top: 16px;
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 280px;
}

.footer-links h5,
.footer-contact h5 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--white);
    letter-spacing: 0.06em;
    margin-bottom: 16px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

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

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
}

.responsible {
    text-align: right;
}

/* ========================================
   ANIMATIONS
   ======================================== */
[data-aos] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-visible {
    opacity: 1;
    transform: translateY(0);
}

[data-aos].aos-visible:nth-child(2) { transition-delay: 0.1s; }
[data-aos].aos-visible:nth-child(3) { transition-delay: 0.2s; }
[data-aos].aos-visible:nth-child(4) { transition-delay: 0.3s; }

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-sub {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-visual {
        display: none;
    }
    
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .about-visual {
        height: 400px;
    }
    
    .about-content {
        max-width: 100%;
    }
    
    .about-content .section-tag,
    .about-content .section-title {
        text-align: center;
    }
    
    .location-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-container {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav { display: none; }
    .mobile-toggle { display: flex; }
    
    .hero {
        padding: 100px 0 80px;
        min-height: auto;
    }
    
    .hero-headline {
        font-size: clamp(2.4rem, 10vw, 3.5rem);
    }
    
    .product-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }
    
    .about-values {
        grid-template-columns: 1fr;
    }
    
    .about-visual {
        height: 320px;
    }
    
    .about-img-main {
        height: 280px;
    }
    
    .about-img-accent {
        width: 150px;
        right: -10px;
    }
    
    .cta-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-actions .btn {
        justify-content: center;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .responsible {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }
    
    .stat-divider {
        width: 40px;
        height: 1px;
    }
    
    .btn-lg {
        padding: 16px 28px;
        font-size: 0.95rem;
    }
}
