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

:root {
    --bg: #ffffff;
    --fg: #000000;
    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #e5e5e5;
    --gray-300: #d4d4d4;
    --gray-400: #a3a3a3;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-700: #404040;
    --gray-800: #262626;
    --gray-900: #171717;
    --accent: #D4AF37;
    --accent-hover: #E5C158;
    --success: #30d158;
    --radius: 12px;
    --radius-lg: 16px;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);

    --wa-bg: #ffffff;
    --wa-border: rgba(0,0,0,0.1);
    --wa-shadow: 0 20px 60px rgba(0,0,0,0.15);
    --wa-text: #111111;
    --wa-subtext: #555555;
    --wa-msg-bg: #e8f5e9;
    --wa-msg-color: #1a3a1a;
    --wa-badge-border: #ffffff;
}

[data-theme="dark"] {
    --bg: #000000;
    --fg: #ffffff;
    --gray-50: #171717;
    --gray-100: #1c1c1c;
    --gray-200: #262626;
    --gray-300: #404040;
    --gray-400: #525252;
    --gray-500: #737373;
    --gray-600: #a3a3a3;
    --gray-700: #d4d4d4;
    --gray-800: #e5e5e5;
    --gray-900: #fafafa;
    --shadow-sm: 0 1px 2px rgba(255, 255, 255, 0.04);
    --shadow: 0 4px 6px rgba(255, 255, 255, 0.07);
    --shadow-lg: 0 10px 15px rgba(255, 255, 255, 0.1);
    --shadow-xl: 0 20px 25px rgba(255, 255, 255, 0.15);
}

body {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--fg);
    line-height: 1.6;
    transition: background 0.3s ease, color 0.3s ease;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-top: 64px;
}

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

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    z-index: 9998;
    height: 64px;
}

[data-theme="dark"] .nav {
    background: rgba(10, 10, 10, 0.8);
    border-bottom-color: rgba(255, 255, 255, 0.06);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--fg);
    text-decoration: none;
    letter-spacing: -0.03em;
    transition: opacity 0.2s ease;
    display: flex;
    align-items: center;
}

.logo:hover {
    opacity: 0.7;
}

.logo img {
    height: 32px;
    width: auto;
}

.logo-dark {
    display: none;
}

.logo-light {
    display: block;
}

[data-theme="dark"] .logo-dark {
    display: block;
}

[data-theme="dark"] .logo-light {
    display: none;
}

.nav-menu {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 4px;
    align-items: center;
}

.nav-menu a {
    color: var(--gray-600);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 8px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.nav-menu a:hover {
    color: var(--fg);
    background: rgba(0, 0, 0, 0.04);
}

[data-theme="dark"] .nav-menu a {
    color: #ffffff;
}

[data-theme="dark"] .nav-menu a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}

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

.theme-toggle {
    background: var(--gray-100);
    border: 1px solid rgba(0, 0, 0, 0.06);
    color: var(--gray-600);
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.2s ease;
    width: 36px;
    height: 36px;
}

.theme-toggle:hover {
    background: var(--gray-200);
    color: var(--fg);
}

[data-theme="dark"] .theme-toggle {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

[data-theme="dark"] .theme-toggle:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.theme-toggle .sun-icon {
    display: none;
}

.theme-toggle .moon-icon {
    display: block;
}

[data-theme="dark"] .theme-toggle .sun-icon {
    display: block;
}

[data-theme="dark"] .theme-toggle .moon-icon {
    display: none;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.mobile-toggle:hover {
    background: rgba(0, 0, 0, 0.04);
}

[data-theme="dark"] .mobile-toggle:hover {
    background: rgba(255, 255, 255, 0.06);
}

.mobile-toggle span {
    width: 18px;
    height: 2px;
    background: var(--fg);
    border-radius: 2px;
    transition: 0.3s;
}

.mobile-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    background: var(--bg);
    border-right: 1px solid rgba(0, 0, 0, 0.06);
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10001;
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

[data-theme="dark"] .mobile-nav {
    border-right-color: rgba(255, 255, 255, 0.06);
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.5);
}

.mobile-nav.active {
    left: 0;
}

.mobile-nav-header {
    height: 64px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

[data-theme="dark"] .mobile-nav-header {
    border-bottom-color: rgba(255, 255, 255, 0.06);
}

.mobile-nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
    color: var(--fg);
}

.mobile-logo-wrapper {
    position: relative;
    display: inline-block;
}

.mobile-nav-logo img {
    height: 32px;
    width: auto;
}

.mobile-nav-logo .logo-light {
    display: block;
}

.mobile-nav-logo .logo-dark {
    display: none;
}

[data-theme="dark"] .mobile-nav-logo .logo-light {
    display: none;
}

[data-theme="dark"] .mobile-nav-logo .logo-dark {
    display: block;
}

.mobile-logo-version {
    position: absolute;
    bottom: -2px;
    right: -18px;
    font-size: 10px;
    font-weight: 600;
    color: var(--gray-500);
    letter-spacing: 0.02em;
}

[data-theme="dark"] .mobile-logo-version {
    color: var(--gray-600);
}

.mobile-nav-close {
    background: transparent;
    border: none;
    color: var(--fg);
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.2s ease;
    width: 36px;
    height: 36px;
}

.mobile-nav-close:hover {
    background: rgba(0, 0, 0, 0.04);
}

[data-theme="dark"] .mobile-nav-close:hover {
    background: rgba(255, 255, 255, 0.06);
}

.mobile-nav-content {
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
    overflow-y: auto;
}

.mobile-nav-content a {
    color: var(--fg);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 12px 16px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.mobile-nav-content a:hover {
    background: rgba(0, 0, 0, 0.04);
}

[data-theme="dark"] .mobile-nav-content a:hover {
    background: rgba(255, 255, 255, 0.06);
}

.mobile-nav-footer {
    padding: 24px 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    gap: 24px;
}

[data-theme="dark"] .mobile-nav-footer {
    border-top-color: rgba(255, 255, 255, 0.06);
}

.mobile-nav-contact h4,
.mobile-nav-social h4 {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gray-600);
    margin-bottom: 12px;
}

[data-theme="dark"] .mobile-nav-contact h4,
[data-theme="dark"] .mobile-nav-social h4 {
    color: var(--gray-400);
}

.mobile-nav-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-nav-contact a {
    color: var(--fg);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    transition: color 0.2s ease;
}

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

.mobile-nav-contact svg {
    flex-shrink: 0;
}

.mobile-social-links {
    display: flex;
    gap: 12px;
}

.mobile-social-links a {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--fg);
    transition: all 0.2s ease;
}

.mobile-social-links a:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-2px);
}

[data-theme="dark"] .mobile-social-links a {
    background: rgba(255, 255, 255, 0.06);
}

[data-theme="dark"] .mobile-social-links a:hover {
    background: var(--accent);
}

.hero-main {
    padding: 40px 0 40px;
    margin-top: 0;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--gray-200);
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1000px;
    height: 500px;
    background: radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

[data-theme="dark"] .hero-gradient {
    background: radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
}

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

.hero-text {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--gray-100);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-pulse {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
}

.badge-text {
    color: var(--accent);
}

.hero-text h1 {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    color: var(--fg);
}

.hero-text h1 strong {
    color: var(--accent);
    font-weight: 800;
}

.hero-text p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 520px;
}

.hero-cta {
    display: flex;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn-hero {
    padding: 12px 24px;
    background: var(--accent);
    color: white;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: none;
    cursor: pointer;
}

.btn-hero svg {
    transition: transform 0.2s;
}

.btn-hero:hover {
    background: var(--accent-hover);
    opacity: 0.9;
}

.btn-hero:hover svg {
    transform: translateX(2px);
}

.btn-secondary {
    padding: 12px 24px;
    background: transparent;
    color: var(--fg);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-secondary:hover {
    background: var(--gray-100);
    border-color: var(--gray-300);
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 24px;
}

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

.trust-number {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1;
    color: var(--fg);
}

.trust-label {
    font-size: 12px;
    color: var(--gray-500);
    font-weight: 500;
}

.trust-divider {
    width: 1px;
    height: 32px;
    background: var(--gray-200);
}

.hero-packages {
    display: grid;
    gap: 16px;
    grid-template-columns: 1fr;
}

.video-card {
    position: relative;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 2px solid var(--accent);
    border-radius: var(--radius);
    padding: 0;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
    aspect-ratio: 16/9;
    z-index: 10;
    pointer-events: auto;
    touch-action: manipulation;
    user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
}

.video-card:active {
    transform: scale(0.98);
}

.video-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
}

.video-card * {
    pointer-events: none;
    user-select: none;
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.6) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.video-play {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    transition: all 0.3s;
}

.video-card:hover .video-play {
    transform: scale(1.1);
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.5);
}

.video-play svg {
    margin-left: 4px;
}

.video-label {
    color: white;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .video-card {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.08) 100%);
}

.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.device-showcase {
    position: relative;
    width: 100%;
    height: 100%;
}

.device {
    position: absolute;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px);
    animation: deviceInitial 0.6s ease forwards;
}

.device-showcase:not(.carousel-active) .device.desktop {
    top: 120px;
    left: -20px;
    z-index: 1;
    animation-delay: 0.1s;
}

.device-showcase:not(.carousel-active) .device.tablet {
    top: 120px;
    right: 80px;
    z-index: 2;
    animation-delay: 0.3s;
}

.device-showcase:not(.carousel-active) .device.mobile {
    top: 100px;
    right: 20px;
    z-index: 3;
    animation-delay: 0.2s;
}

@keyframes deviceInitial {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.device-showcase.carousel-active .device,
.device-showcase.carousel-active .device.desktop,
.device-showcase.carousel-active .device.tablet,
.device-showcase.carousel-active .device.mobile {
    top: 50% !important;
    left: 50% !important;
    right: auto !important;
    bottom: auto !important;
    transform: translate(-50%, -50%) scale(0.85) rotateY(10deg) !important;
    opacity: 0;
    pointer-events: none;
    filter: blur(4px);
}

.device-showcase.carousel-active .device.active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1) rotateY(0deg) !important;
    filter: blur(0px);
    animation: deviceEnter 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 100;
}

@keyframes deviceEnter {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.85) rotateY(10deg);
        filter: blur(4px);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1) rotateY(0deg);
        filter: blur(0px);
    }
}

.device-frame {
    background: var(--bg);
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

[data-theme="dark"] .device-frame {
    background: var(--gray-50);
}

.device:hover .device-frame {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    border-color: var(--gray-300);
}

.device-showcase.carousel-active .device.active:hover .device-frame {
    transform: translateY(-4px);
}

.device.desktop .device-frame {
    width: 360px;
    height: 220px;
    border-radius: 12px 12px 0 0;
}

.device.tablet .device-frame {
    width: 220px;
    height: 280px;
    border-radius: 14px;
}

.device.mobile .device-frame {
    width: 160px;
    height: 320px;
    border-radius: 24px;
    border-width: 4px;
}

.device-screen {
    width: 100%;
    height: 100%;
    background: var(--gray-50);
    position: relative;
    padding: 20px;
}

[data-theme="dark"] .device-screen {
    background: var(--gray-100);
}

.device.tablet .device-screen {
    padding: 16px;
}

.device.mobile .device-screen {
    padding: 14px;
}

.screen-header {
    display: flex;
    gap: 6px;
    margin-bottom: 12px;
}

.screen-header .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gray-300);
    transition: all 0.2s;
}

.screen-header .dot:nth-child(1) {
    background: #ff5f57;
}

.screen-header .dot:nth-child(2) {
    background: #ffbd2e;
}

.screen-header .dot:nth-child(3) {
    background: #28ca42;
}

.device:hover .screen-header .dot {
    transform: scale(1.1);
}

.screen-header.mobile-header {
    margin-top: 18px;
    margin-bottom: 8px;
    gap: 4px;
    justify-content: center;
}

.screen-header.mobile-header .dot {
    width: 6px;
    height: 6px;
}

.device.tablet .screen-header {
    gap: 5px;
    margin-bottom: 10px;
}

.device.tablet .screen-header .dot {
    width: 7px;
    height: 7px;
}

.device.desktop .screen-header {
    gap: 6px;
}

.device.desktop .screen-header .dot {
    width: 8px;
    height: 8px;
}

.screen-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 20px;
    background: var(--bg);
    border-radius: 0 0 14px 14px;
    transition: all 0.3s ease;
}

[data-theme="dark"] .screen-notch {
    background: var(--gray-50);
}

.device.mobile:hover .screen-notch {
    width: 55px;
    height: 22px;
}

.screen-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 4px;
    align-items: center;
}

.device.mobile .screen-content {
    margin-top: 8px;
    gap: 8px;
}

.device.tablet .screen-content {
    gap: 10px;
    margin-top: 0;
}

.screen-logo {
    width: 56px;
    height: 56px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.screen-logo.small {
    width: 40px;
    height: 40px;
    margin-bottom: 6px;
}

.screen-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.device-showcase.carousel-active .device.active .screen-logo img {
    animation: logoFloat 3s ease-in-out infinite;
}

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

.device:hover .screen-logo img {
    transform: scale(1.05);
}

.device-showcase.carousel-active .device.active:hover .screen-logo img {
    transform: scale(1.05) translateY(-4px);
}

.logo-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 28px;
    font-family: 'Space Grotesk', sans-serif;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.screen-logo.small .logo-placeholder {
    font-size: 18px;
    border-radius: 6px;
}

.screen-brand {
    text-align: center;
    margin-bottom: 8px;
}

.brand-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--fg);
    line-height: 1.2;
    margin-bottom: 4px;
}

.device-showcase.carousel-active .brand-name {
    opacity: 0;
    transform: translateY(10px);
}

.device-showcase.carousel-active .device.active .brand-name {
    animation: fadeInUp 0.5s ease forwards;
    animation-delay: 0.3s;
}

.brand-subtitle {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 10px;
    font-weight: 500;
    color: var(--gray-600);
    line-height: 1.3;
}

.device-showcase.carousel-active .brand-subtitle {
    opacity: 0;
    transform: translateY(10px);
}

.device-showcase.carousel-active .device.active .brand-subtitle {
    animation: fadeInUp 0.5s ease forwards;
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.device.tablet .brand-name {
    font-size: 13px;
    margin-bottom: 3px;
}

.device.tablet .brand-subtitle {
    font-size: 8px;
}

.device.mobile .brand-name {
    font-size: 12px;
    margin-bottom: 2px;
}

.device.mobile .brand-subtitle {
    font-size: 7px;
}

.content-bar {
    height: 8px;
    width: 100%;
    background: var(--gray-200);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.content-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
    animation: shimmerBar 2s infinite;
    animation-delay: 0.5s;
}

.content-bar.short {
    width: 70%;
}

.device.mobile .content-bar,
.device.tablet .content-bar {
    height: 6px;
}

@keyframes shimmerBar {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.device-stand {
    width: 160px;
    height: 6px;
    background: var(--gray-200);
    margin: 0 auto;
    border-radius: 3px 3px 0 0;
    position: relative;
    transition: all 0.3s ease;
}

.device-stand::before {
    content: '';
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: var(--gray-200);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.device-stand::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 6px;
    background: var(--gray-200);
    transition: all 0.3s ease;
}

.device.desktop:hover .device-stand {
    background: var(--gray-300);
}

.device.desktop:hover .device-stand::before,
.device.desktop:hover .device-stand::after {
    background: var(--gray-300);
}

section {
    padding: 100px 0;
}

.features-main {
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
}

[data-theme="dark"] .features-main {
    background: #0a0a0a;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-badge {
    display: inline-block;
    padding: 6px 14px;
    background: var(--gray-100);
    border-radius: 16px;
    font-size: 11px;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    color: var(--fg);
}

.section-header p {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.6;
}

.features-layout {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 80px;
    align-items: start;
}

.features-text {
    position: sticky;
    top: 100px;
}

.features-text .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--gray-100);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.features-text h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    color: var(--fg);
}

.features-text p {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.6;
}

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

.feature-card {
    background: var(--bg);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="dark"] .feature-card {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

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

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--fg);
    letter-spacing: -0.01em;
}

.feature-card p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.5;
}

.how-it-works {
    background: var(--bg);
    border-bottom: 1px solid var(--gray-200);
}

.how-it-works-layout {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 80px;
    align-items: start;
}

.how-it-works-text {
    position: sticky;
    top: 100px;
}

.how-it-works-text .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--gray-100);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.how-it-works-text h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    color: var(--fg);
}

.how-it-works-text p {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.6;
}

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

.step {
    background: var(--bg);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

[data-theme="dark"] .step {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.step:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.step:hover .step-number {
    opacity: 0.4;
}

.step-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 12px;
    letter-spacing: -0.03em;
    opacity: 0.15;
    transition: opacity 0.3s;
}

.step h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--fg);
    letter-spacing: -0.01em;
}

.step p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.6;
}

.products-showcase {
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
}

[data-theme="dark"] .products-showcase {
    background: #0a0a0a;
}

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

.product-card {
    background: var(--bg);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="dark"] .product-card {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

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

.product-img {
    width: 100%;
    aspect-ratio: 16/9;
    background: var(--gray-100);
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.product-card:hover .product-img img {
    transform: scale(1.05);
}

.product-body {
    padding: 24px;
}

.product-body h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--fg);
    letter-spacing: -0.01em;
}

.product-body p {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 16px;
    font-size: 14px;
}

.product-price-text {
    color: var(--accent);
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 8px;
}

.product-campaign {
    background: var(--accent);
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
    display: inline-block;
    margin-bottom: 12px;
}

.product-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.product-link:hover {
    gap: 8px;
}

.references-section {
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
    overflow: hidden;
}

[data-theme="dark"] .references-section {
    background: #0a0a0a;
}

.references-marquee {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}

.reference-logo {
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    cursor: pointer;
    transition: transform 0.3s;
}

.reference-logo:hover {
    transform: scale(1.05);
}

.reference-logo img {
    max-width: 180px;
    max-height: 80px;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all 0.3s;
}

[data-theme="dark"] .reference-logo img {
    filter: grayscale(100%) brightness(0) invert(1);
    opacity: 0.6;
}

.reference-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

[data-theme="dark"] .reference-logo:hover img {
    filter: grayscale(0%) brightness(0) invert(1);
    opacity: 1;
}

.reference-logo span {
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-400);
}

.references-carousel-wrapper {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.references-carousel {
    display: flex;
    gap: 24px;
    animation: scrollRight 60s linear infinite;
}

.references-carousel:hover {
    animation-play-state: paused;
}

@keyframes scrollRight {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.reference-card {
    min-width: 350px;
    position: relative;
    background: var(--bg);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    cursor: pointer;
}

.reference-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(212, 175, 55, 0.3);
}

[data-theme="dark"] .reference-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.reference-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

[data-theme="dark"] .reference-badge {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.reference-badge img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.reference-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.reference-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.reference-card:hover .reference-image img {
    transform: scale(1.05);
}

.reference-info {
    padding: 20px;
    background: var(--bg);
}

.reference-info h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--fg);
    margin: 0 0 4px;
}

.reference-info p {
    font-size: 13px;
    color: var(--gray-500);
    margin: 0;
}

.image-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.2s ease;
}

.image-modal-overlay.active {
    display: flex;
}

.image-modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    animation: slideUp 0.3s ease;
}

.image-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.2s;
    z-index: 10001;
}

.image-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.image-modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.2s;
    z-index: 10001;
}

.image-modal-nav:hover {
    background: rgba(255, 255, 255, 0.2);
}

.image-modal-prev {
    left: -70px;
}

.image-modal-next {
    right: -70px;
}

.image-modal-body {
    text-align: center;
}

.image-modal-body img {
    max-width: 90vw;
    max-height: 75vh;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.image-modal-info {
    margin-top: 20px;
    color: white;
}

.image-modal-info h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 8px;
}

.image-modal-info p {
    font-size: 14px;
    opacity: 0.7;
    margin: 0;
}

.image-modal-counter {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 14px;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .image-modal-nav {
        width: 40px;
        height: 40px;
    }

    .image-modal-prev {
        left: 10px;
    }

    .image-modal-next {
        right: 10px;
    }

    .image-modal-close {
        top: 10px;
        right: 10px;
    }

    .image-modal-counter {
        bottom: 10px;
    }

    .image-modal-body img {
        max-height: 60vh;
    }
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeIn 0.2s ease;
}

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

.modal-content {
    background: var(--bg);
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    padding: 40px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
    border: 1px solid var(--gray-200);
}

[data-theme="dark"] .modal-content {
    background: #1a1a1a;
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--gray-100);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    transition: all 0.2s;
}

.modal-close:hover {
    background: var(--gray-200);
    transform: rotate(90deg);
}

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

.modal-logo {
    margin-bottom: 24px;
}

.modal-logo img {
    max-width: 200px;
    max-height: 100px;
}

.modal-body h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--fg);
}

.modal-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
    text-align: left;
}

.modal-field {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-200);
}

.modal-label {
    font-size: 14px;
    color: var(--gray-600);
    font-weight: 500;
}

.modal-value {
    font-size: 14px;
    color: var(--fg);
    font-weight: 600;
}

.modal-link {
    font-size: 14px;
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}

.modal-link:hover {
    opacity: 0.8;
}

.modal-description {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.6;
    text-align: left;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

.faq-section {
    background: var(--bg);
    border-bottom: 1px solid var(--gray-200);
}

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

.faq-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: var(--bg);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="dark"] .faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.faq-item:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-lg);
}

.faq-question {
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    color: var(--fg);
    letter-spacing: -0.01em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    user-select: none;
}

.faq-question::after {
    content: '+';
    font-size: 24px;
    font-weight: 400;
    color: var(--accent);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    color: var(--gray-600);
    line-height: 1.6;
    font-size: 15px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, margin-top 0.3s ease;
}

.faq-item.active .faq-answer {
    margin-top: 12px;
}

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

[data-theme="dark"] .cta-section {
    background: #0a0a0a;
}

.cta-layout {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 80px;
    align-items: start;
}

.cta-text {
    position: sticky;
    top: 100px;
}

.cta-text .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--gray-100);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-text h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    color: var(--fg);
}

.cta-text p {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 32px;
}

.cta-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gray-600);
    font-size: 15px;
}

.cta-feature svg {
    color: var(--accent);
    flex-shrink: 0;
}

.cta-form-wrapper {
    background: var(--bg);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 32px;
}

[data-theme="dark"] .cta-form-wrapper {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.demo-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.demo-form input {
    padding: 14px 18px;
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
    background: var(--bg);
    color: var(--fg);
    font-size: 15px;
    font-family: 'Space Grotesk', sans-serif;
    transition: all 0.2s;
}

[data-theme="dark"] .demo-form input {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.1);
}

.demo-form input::placeholder {
    color: var(--gray-500);
}

.demo-form input:focus {
    outline: none;
    border-color: var(--accent);
}

.btn-cta {
    padding: 14px 28px;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Space Grotesk', sans-serif;
}

.btn-cta:hover {
    background: #B8941F;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-cta:active {
    transform: scale(0.98);
}

.btn-cta:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.demo-form-message {
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}

.demo-form-message.success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #34d399;
}

[data-theme="dark"] .demo-form-message.success {
    background: rgba(16, 185, 129, 0.15);
    color: #6ee7b7;
    border-color: rgba(16, 185, 129, 0.3);
}

.demo-form-message.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #f87171;
}

[data-theme="dark"] .demo-form-message.error {
    background: rgba(239, 68, 68, 0.15);
    color: #fca5a5;
    border-color: rgba(239, 68, 68, 0.3);
}

.footer {
    border-top: 1px solid var(--gray-200);
    padding: 80px 0 40px;
}

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

.footer-brand {
    max-width: 350px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 40px;
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--fg);
}

.footer-col p {
    color: var(--gray-600);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.footer-col a {
    display: block;
    color: var(--gray-600);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 10px;
    transition: color 0.2s;
}

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

.footer-contact-link {
    display: flex !important;
    align-items: center;
    gap: 8px;
}

.footer-contact-link svg {
    flex-shrink: 0;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    transition: all 0.3s;
    flex-shrink: 0;
    padding: 0;
    line-height: 1;
    position: relative;
}

.social-icon svg {
    width: 20px;
    height: 20px;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

[data-theme="dark"] .social-icon {
    background: rgba(255, 255, 255, 0.05);
}

.social-icon:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--gray-200);
}

.footer-bottom p {
    color: var(--gray-500);
    font-size: 13px;
    margin-bottom: 8px;
}

.footer-bottom p:last-child {
    margin-bottom: 0;
}

.footer-credit {
    margin-top: 8px;
}

.footer-credit a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.2s;
}

.footer-credit a:hover {
    opacity: 0.8;
}

@media (max-width: 1024px) {
    .nav-menu {
        position: static;
        transform: none;
    }

    .features-layout {
        grid-template-columns: 350px 1fr;
        gap: 60px;
    }

    .how-it-works-layout {
        grid-template-columns: 350px 1fr;
        gap: 60px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-layout {
        grid-template-columns: 350px 1fr;
        gap: 60px;
    }

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

    .reference-card {
        min-width: 300px;
    }

    .reference-image {
        height: 240px;
    }

    .footer-brand {
        grid-column: 1 / -1;
        max-width: 450px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        justify-content: center;
        position: relative;
    }

    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .nav-menu {
        display: none;
    }

    .nav-actions {
        position: absolute;
        right: 24px;
    }

    .mobile-toggle {
        display: flex;
        position: absolute;
        left: 24px;
    }

    .hero-main {
        padding: 60px 0 30px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .hero-visual {
        height: 350px;
    }

    .device-showcase:not(.carousel-active) .device.desktop {
        top: 30px;
        left: 10px;
    }

    .device-showcase:not(.carousel-active) .device.tablet {
        top: 120px;
        right: 60px;
    }

    .device-showcase:not(.carousel-active) .device.mobile {
        top: 60px;
        right: 10px;
    }

    .device-showcase.carousel-active .device.desktop,
    .device-showcase.carousel-active .device.tablet,
    .device-showcase.carousel-active .device.mobile {
        top: 50% !important;
        left: 50% !important;
        right: auto !important;
    }

    .features-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .features-text {
        position: static;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .how-it-works-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .how-it-works-text {
        position: static;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

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

    .cta-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cta-text {
        position: static;
    }

    .device.desktop .device-frame {
        width: 220px;
        height: 140px;
    }

    .device.tablet .device-frame {
        width: 130px;
        height: 170px;
    }

    .device.mobile .device-frame {
        width: 90px;
        height: 180px;
    }

    .screen-logo {
        width: 32px;
        height: 32px;
    }

    .screen-logo.small {
        width: 20px;
        height: 20px;
    }

    .device.desktop .brand-name {
        font-size: 12px;
    }

    .device.desktop .brand-subtitle {
        font-size: 7px;
    }

    .device.tablet .brand-name {
        font-size: 10px;
    }

    .device.tablet .brand-subtitle {
        font-size: 6px;
    }

    .device.mobile .brand-name {
        font-size: 9px;
    }

    .device.mobile .brand-subtitle {
        font-size: 5px;
    }

    .device.desktop .screen-header .dot {
        width: 6px;
        height: 6px;
    }

    .device.tablet .screen-header .dot {
        width: 5px;
        height: 5px;
    }

    .screen-header.mobile-header .dot {
        width: 4px;
        height: 4px;
    }

    .device-stand {
        width: 100px;
    }

    .device-stand::before {
        width: 70px;
    }

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

    .trust-divider {
        display: none;
    }

    section {
        padding: 60px 0;
    }

    .features-bento {
        grid-template-columns: 1fr;
    }

    .feature-box,
    .feature-box.featured,
    .feature-box.tall {
        grid-column: span 1;
        grid-row: span 1;
    }

    .steps,
    .products-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-brand {
        max-width: 100%;
    }

    .video-card {
        z-index: 100 !important;
        position: relative;
        touch-action: manipulation !important;
        -webkit-tap-highlight-color: rgba(212, 175, 55, 0.2);
        cursor: pointer !important;
        -webkit-user-select: none;
        user-select: none;
    }

    .video-card:active {
        opacity: 0.9;
        transform: scale(0.98) !important;
    }

    .video-card:hover {
        transform: none !important;
    }

    .hero-packages .video-card {
        margin-bottom: 16px;
    }

    .references-marquee {
        overflow-x: scroll;
        overflow-y: hidden;
        flex-wrap: nowrap;
        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        margin-bottom: 32px;
        padding: 16px 0;
        margin-left: -20px;
        margin-right: -20px;
        scroll-behavior: smooth;
        scroll-snap-type: x proximity;
    }

    .references-marquee::-webkit-scrollbar {
        display: none;
    }

    .reference-logo {
        min-width: 120px;
        flex-shrink: 0;
        scroll-snap-align: center;
        padding: 12px;
        pointer-events: none;
    }

    .reference-logo:first-child {
        margin-left: 20px;
    }

    .reference-logo:last-child {
        margin-right: 20px;
    }

    .reference-logo img {
        max-width: 100px;
        max-height: 50px;
        transform: none !important;
    }

    .reference-logo:hover {
        transform: none !important;
    }

    .references-carousel-wrapper {
        overflow-x: scroll;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding: 20px 0;
        margin: 0 -20px;
        scroll-behavior: smooth;
        scroll-snap-type: x proximity;
        touch-action: pan-x;
    }

    .references-carousel-wrapper::-webkit-scrollbar {
        display: none;
    }

    .references-carousel {
        animation: none;
        flex-wrap: nowrap;
        padding: 0 20px;
        pointer-events: auto;
    }

    .reference-card {
        min-width: 300px;
        flex-shrink: 0;
        scroll-snap-align: start;
        touch-action: pan-x;
        transform: none !important;
    }

    .reference-card:hover {
        transform: none !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
    }

    .reference-card:last-child {
        margin-right: 20px;
    }

    .reference-image {
        height: 200px;
    }

    .reference-image img {
        transform: none !important;
    }

    .reference-card:hover .reference-image img {
        transform: none !important;
    }

    .reference-info {
        padding: 16px;
    }

    .reference-info h3 {
        font-size: 15px;
    }

    .reference-info p {
        font-size: 12px;
    }

    .reference-badge {
        width: 40px;
        height: 40px;
        top: 8px;
        right: 8px;
    }
}

.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
}

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

.video-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.video-modal-content {
    position: relative;
    width: 100%;
    max-width: 1200px;
    z-index: 2;
    animation: modalSlideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    transition: all 0.2s;
}

.video-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: var(--bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

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

@media (max-width: 768px) {
    .video-modal {
        padding: 16px;
        padding-top: env(safe-area-inset-top, 16px);
        padding-bottom: env(safe-area-inset-bottom, 16px);
    }

    .video-modal-close {
        top: calc(env(safe-area-inset-top, 0px) + 10px);
        right: 10px;
        width: 36px;
        height: 36px;
    }

    .video-wrapper {
        border-radius: 8px;
    }
}

.announcement-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    min-height: 44px;
    display: none;
    align-items: center;
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
    animation: slideDown 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="dark"] .announcement-bar {
    background: var(--gray-100);
    border-bottom: 1px solid var(--gray-200);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(-100%);
        opacity: 0;
    }
}

.announcement-content {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 24px;
    font-size: 13px;
    line-height: 1.5;
    letter-spacing: -0.01em;
    color: var(--gray-700);
    font-weight: 500;
    max-width: 1280px;
    margin: 0 auto;
}

.announcement-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    background: rgba(48, 209, 88, 0.1);
    border: 1px solid rgba(48, 209, 88, 0.2);
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: #16a34a;
    flex-shrink: 0;
}

.announcement-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--success);
    border-radius: 50%;
    box-shadow: 0 0 0 2px rgba(48, 209, 88, 0.2);
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

[data-theme="dark"] .announcement-content {
    color: var(--gray-900);
}

[data-theme="dark"] .announcement-badge {
    background: rgba(48, 209, 88, 0.15);
    border-color: rgba(48, 209, 88, 0.25);
    color: #4ade80;
}

[data-theme="dark"] .announcement-badge::before {
    background: #4ade80;
}

.announcement-content strong {
    font-weight: 700;
    color: var(--fg);
}

[data-theme="dark"] .announcement-content strong {
    color: var(--fg);
}

.announcement-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    margin-left: 8px;
    font-size: 12px;
    background: var(--accent);
    border-radius: 20px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 4px rgba(212, 175, 55, 0.2);
}

.announcement-link:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(212, 175, 55, 0.3);
}

[data-theme="dark"] .announcement-link {
    color: #000000;
    background: var(--accent-hover);
    box-shadow: 0 2px 4px rgba(229, 193, 88, 0.3);
}

[data-theme="dark"] .announcement-link:hover {
    background: var(--accent);
    box-shadow: 0 4px 8px rgba(212, 175, 55, 0.4);
}

.announcement-close {
    background: var(--gray-100);
    border: none;
    color: var(--gray-600);
    cursor: pointer;
    padding: 4px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
}

.announcement-close:hover {
    background: var(--gray-200);
    transform: translateY(-50%) scale(1.1);
}

.announcement-close:active {
    transform: translateY(-50%) scale(0.95);
}

[data-theme="dark"] .announcement-close {
    background: rgba(255, 255, 255, 0.1);
    color: var(--gray-400);
}

[data-theme="dark"] .announcement-close:hover {
    background: rgba(255, 255, 255, 0.15);
}

body.has-announcement-bar {
    padding-top: calc(64px + var(--announcement-height, 44px));
}

body.has-announcement-bar .nav {
    top: var(--announcement-height, 44px);
}

.popup-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.25s ease;
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
}

[data-theme="dark"] .popup-overlay {
    background: rgba(0, 0, 0, 0.7);
}

.popup-content {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-radius: 20px;
    max-width: 420px;
    width: 90%;
    max-height: 85vh;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(0, 0, 0, 0.04);
    animation: popupScale 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes popupScale {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

[data-theme="dark"] .popup-content {
    background: rgba(30, 30, 30, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
}

.popup-close {
    position: absolute;
    top: 14px;
    right: 14px;
    background: transparent;
    border: none;
    color: var(--gray-500);
    cursor: pointer;
    padding: 6px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    z-index: 1;
    width: 28px;
    height: 28px;
}

.popup-close:hover {
    background: rgba(0, 0, 0, 0.06);
    color: var(--fg);
}

.popup-close:active {
    transform: scale(0.95);
}

[data-theme="dark"] .popup-close {
    color: var(--gray-500);
}

[data-theme="dark"] .popup-close:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--fg);
}

.popup-body {
    padding: 56px 32px 32px;
    text-align: center;
    overflow-y: auto;
    max-height: calc(85vh - 56px);
}

.popup-countdown {
    margin-bottom: 24px;
}

.countdown-time {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    padding: 8px 16px;
    background: var(--gray-100);
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    color: var(--fg);
    letter-spacing: 0.02em;
    font-variant-numeric: tabular-nums;
}

.countdown-time span {
    min-width: 24px;
    text-align: center;
}

[data-theme="dark"] .countdown-time {
    background: rgba(255, 255, 255, 0.1);
}

.popup-body h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--fg);
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.popup-body p {
    font-size: 15px;
    line-height: 1.5;
    color: var(--gray-600);
    margin-bottom: 28px;
}

[data-theme="dark"] .popup-body p {
    color: var(--gray-400);
}

.popup-content-html {
    font-size: 15px;
    line-height: 1.5;
    color: var(--gray-600);
    margin-bottom: 28px;
}

.popup-content-html p {
    margin-bottom: 12px;
}

.popup-content-html p:last-child {
    margin-bottom: 0;
}

.popup-content-html strong,
.popup-content-html b {
    font-weight: 600;
    color: var(--fg);
}

.popup-content-html em,
.popup-content-html i {
    font-style: italic;
}

.popup-content-html ul,
.popup-content-html ol {
    margin: 16px 0;
    padding-left: 24px;
}

.popup-content-html li {
    margin-bottom: 8px;
}

.popup-content-html a {
    color: var(--accent);
    text-decoration: underline;
}

.popup-content-html a:hover {
    opacity: 0.8;
}

.popup-content-html h1,
.popup-content-html h2,
.popup-content-html h3,
.popup-content-html h4 {
    font-weight: 700;
    color: var(--fg);
    margin-bottom: 12px;
}

.popup-content-html h1 { font-size: 22px; }
.popup-content-html h2 { font-size: 20px; }
.popup-content-html h3 { font-size: 18px; }
.popup-content-html h4 { font-size: 16px; }

.popup-content-html img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 16px 0;
}

[data-theme="dark"] .popup-content-html {
    color: var(--gray-400);
}

.popup-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 13px 32px;
    background: var(--fg);
    color: var(--bg);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.2s;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
}

.popup-button:hover {
    transform: scale(1.02);
    opacity: 0.9;
}

.popup-button:active {
    transform: scale(0.98);
}

[data-theme="dark"] .popup-button {
    background: var(--fg);
    color: var(--bg);
}

@media (max-width: 768px) {
    body {
        padding-top: 60px;
    }

    .nav {
        height: 60px;
    }

    .announcement-bar {
        min-height: auto;
        padding: 8px 0;
    }

    .announcement-content {
        font-size: 12px;
        padding: 0 50px 0 16px;
        gap: 8px;
        flex-direction: column;
        align-items: center;
    }

    .announcement-badge {
        font-size: 10px;
        padding: 3px 8px;
        align-self: center;
    }

    .announcement-badge::before {
        width: 5px;
        height: 5px;
    }

    .announcement-content strong {
        font-size: 12px;
        font-weight: 700;
        text-align: center;
    }

    .announcement-content span {
        font-size: 12px;
        line-height: 1.4;
        text-align: center;
    }

    .announcement-link {
        padding: 5px 12px;
        font-size: 11px;
        margin-left: 0;
        margin-top: 0;
    }

    .announcement-close {
        width: 28px;
        height: 28px;
        padding: 6px;
        right: 12px;
    }

    body.has-announcement-bar {
        padding-top: calc(60px + var(--announcement-height, 0px));
    }

    body.has-announcement-bar .nav {
        top: var(--announcement-height, 0px);
    }

    .popup-content {
        width: 92%;
        border-radius: 16px;
    }

    .popup-body {
        padding: 48px 24px 28px;
    }

    .popup-countdown {
        margin-bottom: 20px;
    }

    .countdown-time {
        font-size: 16px;
        padding: 6px 12px;
    }

    .countdown-time span {
        min-width: 20px;
    }

    .popup-body h3 {
        font-size: 22px;
    }

    .popup-body p {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .popup-content-html {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .popup-content-html h1 { font-size: 20px; }
    .popup-content-html h2 { font-size: 18px; }
    .popup-content-html h3 { font-size: 16px; }
    .popup-content-html h4 { font-size: 15px; }

    .popup-button {
        padding: 12px 28px;
        font-size: 14px;
    }

    .popup-close {
        width: 26px;
        height: 26px;
        top: 12px;
        right: 12px;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        transition: none !important;
        animation: none !important;
    }
}

.products-page {
    padding: 80px 0 96px;
    min-height: 100vh;
}

.products-page .section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.products-page .section-badge {
    display: inline-block;
    padding: 6px 14px;
    background: transparent;
    color: #10b981;
    border: 1.5px solid #10b981;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

[data-theme="dark"] .products-page .section-badge {
    color: #34d399;
    border-color: #34d399;
}

.products-page .section-header h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--fg);
    margin-bottom: 12px;
}

.products-page .section-header p {
    font-size: 17px;
    line-height: 1.5;
    color: var(--gray-600);
}

[data-theme="dark"] .products-page .section-header p {
    color: var(--gray-400);
}

.featured-products {
    margin-bottom: 72px;
}

.featured-product-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    padding: 48px;
    background: var(--gray-50);
    border-radius: 16px;
    margin-bottom: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="dark"] .featured-product-card {
    background: rgba(255, 255, 255, 0.03);
}

.featured-product-card .product-img {
    width: 100%;
    aspect-ratio: 4/3;
    background: var(--bg);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.featured-product-card .product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-product-card:hover .product-img img {
    transform: scale(1.02);
}

.featured-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--accent);
    color: #000;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.featured-product-card .product-body {
    padding: 0;
}

.featured-product-card .product-body h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--fg);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.featured-product-card .product-body p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-600);
    margin-bottom: 20px;
}

[data-theme="dark"] .featured-product-card .product-body p {
    color: var(--gray-400);
}

.featured-price {
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 600;
    color: var(--fg);
}

.featured-product-card .product-link {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background: var(--fg);
    color: var(--bg);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.featured-product-card .product-link:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.products-page-empty {
    text-align: center;
    padding: 120px 0;
}

.products-page-empty p {
    font-size: 18px;
    color: var(--gray-500);
}

@media (max-width: 1024px) {
    .products-page {
        padding: 70px 0 80px;
    }

    .products-page .section-header {
        margin-bottom: 48px;
    }

    .products-page .section-header h2 {
        font-size: 30px;
    }

    .products-page .section-header p {
        font-size: 16px;
    }

    .featured-products {
        margin-bottom: 56px;
    }

    .featured-product-card {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 40px;
    }

    .featured-product-card .product-body h3 {
        font-size: 24px;
    }

    .products-page .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .products-page {
        padding: 60px 0 60px;
    }

    .products-page .section-header {
        margin-bottom: 40px;
    }

    .products-page .section-header h2 {
        font-size: 26px;
    }

    .products-page .section-header p {
        font-size: 15px;
    }

    .featured-products {
        margin-bottom: 48px;
    }

    .featured-product-card {
        padding: 32px;
        gap: 24px;
    }

    .featured-product-card .product-body h3 {
        font-size: 22px;
    }

    .featured-product-card .product-body p {
        font-size: 15px;
    }

    .featured-price {
        font-size: 18px;
    }

    .products-page .products-grid {
        grid-template-columns: 1fr;
    }
}

.product-detail-page {
    padding: 70px 0 96px;
    min-height: 100vh;
}

.product-detail-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--gray-500);
    margin-bottom: 32px;
}

.product-detail-breadcrumb a {
    color: var(--gray-500);
    text-decoration: none;
    transition: color 0.2s;
}

.product-detail-breadcrumb a:hover {
    color: var(--fg);
}

.product-detail-breadcrumb span:last-child {
    color: var(--fg);
    font-weight: 500;
}

.product-detail-header {
    margin-bottom: 48px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--gray-200);
}

[data-theme="dark"] .product-detail-header {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.product-detail-title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 24px;
}

.product-detail-badge {
    display: inline-block;
    padding: 4px 10px;
    background: var(--accent);
    color: #000;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.product-detail-header h1 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--fg);
    margin: 0;
}

.product-detail-share {
    display: flex;
    align-items: center;
    gap: 12px;
}

.product-detail-share > span {
    font-size: 13px;
    color: var(--gray-500);
    font-weight: 500;
}

.product-share-buttons {
    display: flex;
    gap: 8px;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--gray-100);
    color: var(--gray-600);
    text-decoration: none;
    transition: all 0.2s;
}

[data-theme="dark"] .share-btn {
    background: rgba(255, 255, 255, 0.05);
    color: var(--gray-400);
}

.share-btn:hover {
    background: var(--gray-200);
    color: var(--fg);
    transform: translateY(-2px);
}

[data-theme="dark"] .share-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--fg);
}

.product-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--gray-600);
}

[data-theme="dark"] .meta-item {
    color: var(--gray-400);
}

.meta-item svg {
    color: var(--gray-500);
}

.meta-item strong {
    font-weight: 600;
    color: var(--fg);
}

.btn-page-like-inline {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0;
    background: transparent;
    color: var(--gray-600);
    border: none;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

[data-theme="dark"] .btn-page-like-inline {
    color: var(--gray-400);
}

.btn-page-like-inline:hover {
    color: var(--primary);
}

[data-theme="dark"] .btn-page-like-inline:hover {
    color: var(--primary);
}

.btn-page-like-inline.liked {
    color: #f00;
}

[data-theme="dark"] .btn-page-like-inline.liked {
    color: #ff4444;
}

.btn-page-like-inline.liked svg {
    fill: currentColor;
}

.btn-page-like-inline svg {
    transition: all 0.2s ease;
}

.product-detail-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 64px;
    align-items: start;
}

.product-detail-content {
    max-width: 100%;
}

.product-detail-gallery {
    margin-bottom: 48px;
}

.product-detail-main-image {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 12px;
    overflow: hidden;
    background: var(--gray-50);
    margin-bottom: 16px;
}

[data-theme="dark"] .product-detail-main-image {
    background: rgba(255, 255, 255, 0.03);
}

.product-detail-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-detail-thumbnails {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 12px;
}

.product-thumbnail {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s;
}

.product-thumbnail:hover {
    border-color: var(--gray-300);
}

.product-thumbnail.active {
    border-color: var(--accent);
}

[data-theme="dark"] .product-thumbnail:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

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

.product-detail-description {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-700);
}

[data-theme="dark"] .product-detail-description {
    color: var(--gray-300);
}

.product-detail-description h2,
.product-detail-description h3,
.product-detail-description h4 {
    color: var(--fg);
    margin-top: 32px;
    margin-bottom: 16px;
    font-weight: 700;
    line-height: 1.3;
}

.product-detail-description h2 {
    font-size: 28px;
}

.product-detail-description h3 {
    font-size: 22px;
}

.product-detail-description h4 {
    font-size: 18px;
}

.product-detail-description p {
    margin-bottom: 20px;
}

.product-detail-description ul,
.product-detail-description ol {
    margin-left: 24px;
    margin-bottom: 20px;
}

.product-detail-description li {
    margin-bottom: 12px;
}

.product-detail-description strong {
    font-weight: 600;
    color: var(--fg);
}

.product-detail-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-detail-price-card {
    padding: 24px;
    background: var(--gray-50);
    border-radius: 12px;
    border: 1px solid var(--gray-200);
}

[data-theme="dark"] .product-detail-price-card {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.1);
}

.product-detail-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--fg);
    margin-bottom: 16px;
}

.product-detail-campaign {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: var(--accent);
    color: #000;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

.product-detail-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-product-demo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--fg);
    color: var(--bg);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}

.btn-product-demo:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.btn-product-like {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    background: transparent;
    color: var(--gray-600);
    border: 1.5px solid var(--gray-300);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
}

[data-theme="dark"] .btn-product-like {
    color: var(--gray-400);
    border-color: rgba(255, 255, 255, 0.1);
}

.btn-product-like:hover {
    background: var(--gray-50);
    border-color: var(--gray-400);
}

[data-theme="dark"] .btn-product-like:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-product-like.liked {
    background: #fee;
    border-color: #f00;
    color: #f00;
}

[data-theme="dark"] .btn-product-like.liked {
    background: rgba(255, 0, 0, 0.1);
    border-color: #ff4444;
    color: #ff4444;
}

.btn-product-like.liked svg {
    fill: currentColor;
}

.product-detail-features {
    padding: 24px;
    background: var(--gray-50);
    border-radius: 12px;
    border: 1px solid var(--gray-200);
}

[data-theme="dark"] .product-detail-features {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.1);
}

.product-detail-features h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--fg);
    margin-bottom: 16px;
}

.product-detail-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.product-detail-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--gray-700);
}

[data-theme="dark"] .product-detail-features li {
    color: var(--gray-300);
}

.product-detail-features svg {
    color: var(--accent);
    flex-shrink: 0;
}

.product-detail-back-link {
    margin-top: 64px;
    padding-top: 32px;
    border-top: 1px solid var(--gray-200);
}

[data-theme="dark"] .product-detail-back-link {
    border-top-color: rgba(255, 255, 255, 0.1);
}

.btn-product-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: transparent;
    color: var(--gray-600);
    border: 1.5px solid var(--gray-300);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

[data-theme="dark"] .btn-product-back {
    color: var(--gray-400);
    border-color: rgba(255, 255, 255, 0.1);
}

.btn-product-back:hover {
    background: var(--gray-50);
    border-color: var(--gray-400);
    color: var(--fg);
}

[data-theme="dark"] .btn-product-back:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--fg);
}

@media (max-width: 1024px) {
    .product-detail-page {
        padding: 60px 0 80px;
    }

    .product-detail-header h1 {
        font-size: 30px;
    }

    .product-detail-title-row {
        flex-direction: column;
    }

    .product-detail-share {
        align-self: flex-start;
    }

    .product-detail-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .product-detail-sidebar {
        position: static;
    }

    .product-detail-description {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .product-detail-page {
        padding: 50px 0 60px;
    }

    .product-detail-breadcrumb {
        font-size: 12px;
        margin-bottom: 24px;
    }

    .product-detail-header {
        margin-bottom: 32px;
        padding-bottom: 24px;
    }

    .product-detail-header h1 {
        font-size: 26px;
    }

    .product-detail-meta {
        gap: 16px;
    }

    .meta-item {
        font-size: 13px;
    }

    .product-detail-gallery {
        margin-bottom: 32px;
    }

    .product-detail-description h2 {
        font-size: 22px;
    }

    .product-detail-description h3 {
        font-size: 18px;
    }

    .product-detail-price {
        font-size: 20px;
    }

    .product-detail-back-link {
        margin-top: 48px;
        padding-top: 24px;
    }
}

.demo-page {
    padding: 80px 0 96px;
    min-height: 100vh;
}

.demo-page-content {
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 80px;
    align-items: start;
}

.demo-page-left {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.demo-page-header h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--fg);
    margin-bottom: 16px;
}

.demo-page-header p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--gray-600);
}

[data-theme="dark"] .demo-page-header p {
    color: var(--gray-400);
}

.demo-badge {
    display: inline-block;
    padding: 6px 14px;
    background: transparent;
    color: #10b981;
    border: 1.5px solid #10b981;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

[data-theme="dark"] .demo-badge {
    color: #34d399;
    border-color: #34d399;
}

.demo-features-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.demo-feature-item {
    display: flex;
    gap: 16px;
}

.demo-feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--accent);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.demo-feature-item h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--fg);
    margin-bottom: 4px;
}

.demo-feature-item p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.5;
}

[data-theme="dark"] .demo-feature-item p {
    color: var(--gray-400);
}

.demo-testimonial {
    padding: 32px;
    background: var(--gray-50);
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    position: relative;
}

[data-theme="dark"] .demo-testimonial {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.1);
}

.demo-testimonial-quote {
    position: absolute;
    top: 24px;
    right: 24px;
}

.demo-testimonial p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-700);
    margin-bottom: 20px;
    font-style: italic;
}

[data-theme="dark"] .demo-testimonial p {
    color: var(--gray-300);
}

.demo-testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.demo-testimonial-author strong {
    font-size: 14px;
    font-weight: 600;
    color: var(--fg);
}

.demo-testimonial-author span {
    font-size: 13px;
    color: var(--gray-500);
}

.demo-page-right {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.demo-form-card {
    padding: 40px;
    background: var(--bg);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

[data-theme="dark"] .demo-form-card {
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.demo-form-card h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--fg);
    margin-bottom: 8px;
}

.demo-form-subtitle {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 32px;
}

.demo-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--fg);
}

.form-group .required {
    color: #ef4444;
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 1.5px solid var(--gray-300);
    border-radius: 8px;
    font-size: 14px;
    color: var(--fg);
    background: var(--bg);
    transition: all 0.2s;
    font-family: inherit;
}

[data-theme="dark"] .form-group input,
[data-theme="dark"] .form-group textarea {
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-400);
}

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

.btn-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    background: var(--fg);
    color: var(--bg);
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 8px;
}

.btn-submit:hover:not(:disabled) {
    opacity: 0.9;
    transform: translateY(-1px);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.demo-form-success {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: #d1fae5;
    color: #10b981;
    border-radius: 50%;
    margin-bottom: 24px;
}

[data-theme="dark"] .success-icon {
    background: rgba(16, 185, 129, 0.1);
    color: #34d399;
}

.demo-form-success h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--fg);
    margin-bottom: 12px;
}

.demo-form-success p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--gray-600);
    margin-bottom: 24px;
}

[data-theme="dark"] .demo-form-success p {
    color: var(--gray-400);
}

.btn-back {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background: var(--fg);
    color: var(--bg);
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-back:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.demo-trust-badges {
    display: flex;
    gap: 12px;
    padding: 20px 24px;
    background: var(--gray-50);
    border-radius: 12px;
}

[data-theme="dark"] .demo-trust-badges {
    background: rgba(255, 255, 255, 0.03);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--gray-600);
    font-weight: 500;
}

[data-theme="dark"] .trust-badge {
    color: var(--gray-400);
}

.trust-badge svg {
    color: var(--accent);
}

@media (max-width: 1024px) {
    .demo-page {
        padding: 60px 0 80px;
    }

    .demo-page-content {
        grid-template-columns: 1fr;
        gap: 56px;
    }

    .demo-page-header h1 {
        font-size: 40px;
    }

    .demo-page-right {
        position: static;
    }
}

@media (max-width: 768px) {
    .demo-page {
        padding: 50px 0 60px;
    }

    .demo-page-left {
        gap: 32px;
    }

    .demo-page-header h1 {
        font-size: 32px;
    }

    .demo-page-header p {
        font-size: 16px;
    }

    .demo-features-list {
        gap: 20px;
    }

    .demo-form-card {
        padding: 32px 24px;
    }

    .demo-form-card h2 {
        font-size: 20px;
    }

    .demo-trust-badges {
        flex-direction: column;
        gap: 12px;
    }
}

.blog-page {
    min-height: 100vh;
    padding: 0;
}

.blog-header-section {
    position: relative;
    padding: 80px 0 0;
    overflow: hidden;
}

.blog-gradient {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1000px;
    height: 400px;
    background: radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

[data-theme="dark"] .blog-gradient {
    background: radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
}

.blog-title-area {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.blog-title-area h1 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--fg);
    margin-bottom: 12px;
}

.blog-title-area p {
    font-size: 16px;
    line-height: 1.5;
    color: var(--gray-600);
}

[data-theme="dark"] .blog-title-area p {
    color: var(--gray-400);
}

.blog-filter-bar {
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
    padding: 16px 0;
    position: sticky;
    top: 68px;
    z-index: 100;
}

[data-theme="dark"] .blog-filter-bar {
    background: rgba(255, 255, 255, 0.02);
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.filter-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}

.filter-row:last-child {
    margin-bottom: 0;
}

.filter-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-600);
    min-width: 80px;
    flex-shrink: 0;
}

[data-theme="dark"] .filter-title {
    color: #fff;
}

.filter-scroll {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    flex: 1;
    padding: 2px 0;
    scrollbar-width: thin;
    scrollbar-color: var(--gray-300) transparent;
}

.filter-scroll::-webkit-scrollbar {
    height: 4px;
}

.filter-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.filter-scroll::-webkit-scrollbar-thumb {
    background: var(--gray-300);
    border-radius: 2px;
}

[data-theme="dark"] .filter-scroll::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
}

.filter-item {
    padding: 6px 16px;
    background: var(--bg);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-700);
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.2s;
    flex-shrink: 0;
}

[data-theme="dark"] .filter-item {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.filter-item:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #000;
}

.filter-item.active {
    background: var(--accent);
    border-color: var(--accent);
    color: #000;
}

.filter-item.tag span {
    opacity: 0.7;
    font-size: 11px;
    margin-left: 4px;
}

.blog-content-wrapper {
    padding: 48px 0 96px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 64px;
}

.blog-card {
    display: flex;
    flex-direction: column;
    background: var(--bg);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="dark"] .blog-card {
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.1);
}

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

.blog-card-image {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--gray-100);
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
}

.blog-category {
    padding: 4px 10px;
    background: var(--accent);
    color: #000;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-date {
    color: var(--gray-500);
}

.blog-card-title {
    margin: 0;
}

.blog-card-title a {
    font-size: 18px;
    font-weight: 700;
    color: var(--fg);
    text-decoration: none;
    line-height: 1.3;
    transition: color 0.2s;
}

.blog-card-title a:hover {
    color: var(--accent);
}

.blog-card-excerpt {
    font-size: 14px;
    line-height: 1.6;
    color: var(--gray-600);
    margin: 0;
}

[data-theme="dark"] .blog-card-excerpt {
    color: var(--gray-400);
}

.blog-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 12px;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--accent);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.2s;
}

.blog-read-more:hover {
    gap: 10px;
}

.blog-card-stats {
    display: flex;
    align-items: center;
    gap: 12px;
}

.blog-views,
.blog-comments-count {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--gray-500);
}

.blog-empty {
    text-align: center;
    padding: 120px 0;
}

.blog-empty svg {
    color: var(--gray-400);
    margin-bottom: 24px;
}

.blog-empty p {
    font-size: 16px;
    color: var(--gray-500);
}

.blog-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.blog-detail-page {
    padding: 70px 0 96px;
    min-height: 100vh;
}

.blog-detail-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--gray-500);
    margin-bottom: 32px;
}

.blog-detail-breadcrumb a {
    color: var(--gray-500);
    text-decoration: none;
    transition: color 0.2s;
}

.blog-detail-breadcrumb a:hover {
    color: var(--fg);
}

.blog-detail-breadcrumb span:last-child {
    color: var(--fg);
    font-weight: 500;
}

.blog-detail-header {
    max-width: 800px;
    margin: 0 auto 48px;
    text-align: center;
}

.blog-detail-category {
    display: inline-block;
    padding: 6px 14px;
    background: var(--accent);
    color: #000;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    margin-bottom: 20px;
}

.blog-detail-header h1 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--fg);
    margin-bottom: 20px;
}

.blog-detail-meta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
}

.blog-detail-featured-image {
    max-width: 1000px;
    margin: 0 auto 48px;
    border-radius: 16px;
    overflow: hidden;
    background: var(--gray-50);
}

[data-theme="dark"] .blog-detail-featured-image {
    background: rgba(255, 255, 255, 0.03);
}

.blog-detail-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-detail-content {
    max-width: 740px;
    margin: 0 auto 64px;
    font-size: 17px;
    line-height: 1.7;
    color: var(--gray-700);
}

[data-theme="dark"] .blog-detail-content {
    color: var(--gray-300);
}

.blog-detail-content h2,
.blog-detail-content h3,
.blog-detail-content h4 {
    color: var(--fg);
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.3;
}

.blog-detail-content h2 {
    font-size: 32px;
}

.blog-detail-content h3 {
    font-size: 24px;
}

.blog-detail-content h4 {
    font-size: 20px;
}

.blog-detail-content p {
    margin-bottom: 24px;
}

.blog-detail-content ul,
.blog-detail-content ol {
    margin-left: 24px;
    margin-bottom: 24px;
}

.blog-detail-content li {
    margin-bottom: 12px;
}

.blog-detail-content strong {
    font-weight: 600;
    color: var(--fg);
}

.blog-detail-content a {
    color: var(--accent);
    text-decoration: underline;
}

.blog-detail-content a:hover {
    text-decoration: none;
}

.blog-detail-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 32px 0;
}

.blog-detail-tags {
    max-width: 740px;
    margin: 0 auto 64px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.tags-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-600);
}

[data-theme="dark"] .tags-label {
    color: var(--gray-400);
}

.blog-tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.blog-tag {
    padding: 6px 14px;
    background: transparent;
    color: var(--gray-600);
    border: 1.5px solid var(--gray-300);
    border-radius: 16px;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
}

[data-theme="dark"] .blog-tag {
    color: var(--gray-400);
    border-color: rgba(255, 255, 255, 0.15);
}

.blog-tag:hover {
    background: var(--accent);
    color: #000;
    border-color: var(--accent);
}

.blog-detail-share {
    max-width: 740px;
    margin: 0 auto 64px;
    padding: 24px;
    background: var(--gray-50);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

[data-theme="dark"] .blog-detail-share {
    background: rgba(255, 255, 255, 0.03);
}

.blog-detail-share > span {
    font-size: 14px;
    font-weight: 600;
    color: var(--fg);
}

.blog-share-buttons {
    display: flex;
    gap: 10px;
}

.blog-related {
    max-width: 1000px;
    margin: 0 auto 64px;
}

.blog-related h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--fg);
    margin-bottom: 32px;
}

.blog-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.blog-related-card {
    background: var(--bg);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.2s;
}

[data-theme="dark"] .blog-related-card {
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.1);
}

.blog-related-card:hover {
    transform: translateY(-2px);
    border-color: var(--accent);
}

.blog-related-image {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--gray-100);
}

.blog-related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.blog-related-card:hover .blog-related-image img {
    transform: scale(1.05);
}

.blog-related-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.blog-related-category {
    display: inline-block;
    padding: 4px 8px;
    background: var(--accent);
    color: #000;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: fit-content;
}

.blog-related-content h3 {
    margin: 0;
}

.blog-related-content h3 a {
    font-size: 15px;
    font-weight: 600;
    color: var(--fg);
    text-decoration: none;
    line-height: 1.3;
    transition: color 0.2s;
}

.blog-related-content h3 a:hover {
    color: var(--accent);
}

.blog-related-date {
    font-size: 12px;
    color: var(--gray-500);
}

.blog-comments {
    max-width: 740px;
    margin: 0 auto 64px;
}

.blog-comments h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--fg);
    margin-bottom: 32px;
}

.blog-comments-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.blog-comment {
    padding: 24px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
}

[data-theme="dark"] .blog-comment {
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.1);
}

.blog-comment-header {
    margin-bottom: 16px;
}

.blog-comment-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.blog-comment-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    flex-shrink: 0;
}

.blog-comment-author strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--fg);
}

.blog-comment-date {
    display: block;
    font-size: 12px;
    color: var(--gray-500);
    margin-top: 2px;
}

.blog-comment-content {
    font-size: 15px;
    line-height: 1.6;
    color: var(--gray-700);
}

[data-theme="dark"] .blog-comment-content {
    color: var(--gray-300);
}

.blog-comment-form-section {
    margin-top: 48px;
    padding-top: 48px;
    border-top: 1px solid var(--gray-200);
}

[data-theme="dark"] .blog-comment-form-section {
    border-top-color: rgba(255, 255, 255, 0.1);
}

.blog-comment-form-section h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--fg);
    margin-bottom: 8px;
}

.comment-form-note {
    font-size: 13px;
    color: var(--gray-600);
    margin-bottom: 24px;
}

[data-theme="dark"] .comment-form-note {
    color: var(--gray-400);
}

.blog-comment-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

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

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--fg);
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    background: var(--bg);
    border: 1.5px solid var(--gray-300);
    border-radius: 8px;
    font-size: 15px;
    color: var(--fg);
    font-family: inherit;
    transition: all 0.2s;
}

[data-theme="dark"] .form-group input,
[data-theme="dark"] .form-group textarea {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.1);
}

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

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

.btn-submit-comment {
    padding: 14px 32px;
    background: var(--accent);
    color: #000;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    width: fit-content;
}

.btn-submit-comment:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.btn-submit-comment:active {
    transform: scale(0.98);
}

.btn-submit-comment:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.comment-form-message {
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
}

.comment-form-message.success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #34d399;
}

[data-theme="dark"] .comment-form-message.success {
    background: rgba(16, 185, 129, 0.15);
    color: #6ee7b7;
    border-color: rgba(16, 185, 129, 0.3);
}

.comment-form-message.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #f87171;
}

[data-theme="dark"] .comment-form-message.error {
    background: rgba(239, 68, 68, 0.15);
    color: #fca5a5;
    border-color: rgba(239, 68, 68, 0.3);
}

.blog-detail-back-link {
    max-width: 740px;
    margin: 0 auto;
    padding-top: 32px;
    border-top: 1px solid var(--gray-200);
}

[data-theme="dark"] .blog-detail-back-link {
    border-top-color: rgba(255, 255, 255, 0.1);
}

.btn-blog-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: transparent;
    color: var(--gray-600);
    border: 1.5px solid var(--gray-300);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

[data-theme="dark"] .btn-blog-back {
    color: var(--gray-400);
    border-color: rgba(255, 255, 255, 0.1);
}

.btn-blog-back:hover {
    background: var(--gray-50);
    border-color: var(--gray-400);
    color: var(--fg);
}

[data-theme="dark"] .btn-blog-back:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--fg);
}

@media (max-width: 1024px) {
    .blog-header-section {
        padding: 60px 0 0;
    }

    .blog-title-area h1 {
        font-size: 30px;
    }

    .blog-content-wrapper {
        padding: 40px 0 80px;
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .blog-detail-page {
        padding: 60px 0 80px;
    }

    .blog-detail-header h1 {
        font-size: 32px;
    }

    .blog-related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-page {
        padding: 0;
    }

    .blog-header-section {
        padding: 50px 0 0;
    }

    .blog-title-area h1 {
        font-size: 26px;
    }

    .blog-title-area p {
        font-size: 14px;
    }

    .blog-filter-bar {
        padding: 12px 0;
    }

    .filter-row {
        margin-bottom: 8px;
    }

    .filter-title {
        font-size: 12px;
        min-width: 70px;
    }

    .filter-item {
        padding: 5px 12px;
        font-size: 12px;
    }

    .blog-content-wrapper {
        padding: 32px 0 60px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 48px;
    }

    .blog-card-content {
        padding: 20px;
    }

    .blog-detail-page {
        padding: 50px 0 60px;
    }

    .blog-detail-breadcrumb {
        font-size: 12px;
        margin-bottom: 24px;
    }

    .blog-detail-header {
        margin-bottom: 32px;
    }

    .blog-detail-header h1 {
        font-size: 26px;
    }

    .blog-detail-meta {
        gap: 16px;
    }

    .blog-detail-featured-image {
        margin-bottom: 32px;
    }

    .blog-detail-content {
        font-size: 16px;
        margin-bottom: 48px;
    }

    .blog-detail-content h2 {
        font-size: 24px;
    }

    .blog-detail-content h3 {
        font-size: 20px;
    }

    .blog-detail-share {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 48px;
    }

    .blog-related {
        margin-bottom: 48px;
    }

    .blog-related h2 {
        font-size: 22px;
        margin-bottom: 24px;
    }

    .blog-related-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .blog-comments {
        margin-bottom: 48px;
    }

    .blog-comments h2 {
        font-size: 20px;
        margin-bottom: 24px;
    }

    .blog-comment-form-section h3 {
        font-size: 18px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .btn-submit-comment {
        width: 100%;
    }
}

.contact-hero {
    padding: 120px 0 96px;
    position: relative;
    overflow: hidden;
}

.contact-gradient {
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 1200px;
    height: 800px;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.12) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.contact-gradient-secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle at 100% 100%, rgba(212, 175, 55, 0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

[data-theme="dark"] .contact-gradient {
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.18) 0%, transparent 60%);
}

[data-theme="dark"] .contact-gradient-secondary {
    background: radial-gradient(circle at 100% 100%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
}

.contact-hero-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
    position: relative;
    z-index: 2;
}

.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    color: var(--accent);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

[data-theme="dark"] .contact-badge {
    background: rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
}

.contact-hero-header h1 {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 20px;
    color: var(--fg);
}

.contact-hero-header p {
    font-size: 19px;
    line-height: 1.6;
    color: var(--gray-500);
    margin: 0;
}

.contact-content {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    gap: 48px;
    position: relative;
    z-index: 2;
}

.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.contact-info-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="dark"] .contact-info-card {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
}

.contact-info-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

[data-theme="dark"] .contact-info-card:hover {
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--accent);
}

.contact-info-text h3 {
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 8px;
    color: var(--fg);
}

.contact-info-text p {
    font-size: 14px;
    line-height: 1.5;
    color: var(--gray-500);
    margin: 0;
}

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(30px);
    border: 1px solid var(--gray-200);
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
}

[data-theme="dark"] .contact-form-wrapper {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

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

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form-group {
    display: flex;
    flex-direction: column;
}

.contact-form input,
.contact-form textarea {
    padding: 16px 20px;
    background: var(--bg);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    font-size: 15px;
    font-family: 'Space Grotesk', sans-serif;
    color: var(--fg);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
}

[data-theme="dark"] .contact-form input,
[data-theme="dark"] .contact-form textarea {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--gray-500);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Space Grotesk', sans-serif;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    align-self: flex-start;
}

.contact-btn-submit:hover {
    background: #c9a643;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.contact-btn-submit:active {
    transform: translateY(0);
}

.contact-btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.contact-btn-submit svg {
    transition: transform 0.3s;
}

.contact-btn-submit:hover svg {
    transform: translateX(4px);
}

.contact-form-message {
    padding: 16px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-form-message.success {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

[data-theme="dark"] .contact-form-message.success {
    background: rgba(16, 185, 129, 0.15);
    color: #6ee7b7;
    border-color: rgba(16, 185, 129, 0.3);
}

.contact-form-message.error {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

[data-theme="dark"] .contact-form-message.error {
    background: rgba(239, 68, 68, 0.15);
    color: #fca5a5;
    border-color: rgba(239, 68, 68, 0.3);
}

@media (max-width: 1024px) {
    .contact-hero {
        padding: 80px 0 60px;
    }

    .contact-hero-header {
        margin-bottom: 60px;
    }

    .contact-hero-header h1 {
        font-size: 42px;
    }

    .contact-hero-header p {
        font-size: 17px;
    }

    .contact-info-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-form-wrapper {
        padding: 36px;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 60px 0 48px;
    }

    .contact-hero-header {
        margin-bottom: 48px;
    }

    .contact-hero-header h1 {
        font-size: 36px;
    }

    .contact-hero-header p {
        font-size: 16px;
    }

    .contact-info-cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .contact-info-card {
        padding: 20px;
    }

    .contact-form-wrapper {
        padding: 28px;
        border-radius: 20px;
    }

    .contact-form-row {
        grid-template-columns: 1fr;
    }

    .contact-btn-submit {
        width: 100%;
    }
}
@media (prefers-color-scheme: dark) {
    :root {
        --wa-bg: #1a1a2e;
        --wa-border: rgba(255,255,255,0.08);
        --wa-shadow: 0 20px 60px rgba(0,0,0,0.45);
        --wa-text: #ffffff;
        --wa-subtext: #aaaaaa;
        --wa-msg-bg: rgba(37,211,102,0.1);
        --wa-msg-color: #a8e6b8;
        --wa-badge-border: #1a1a2e;
    }
}
html.dark, [data-theme="dark"], body.dark {
    --wa-bg: #1a1a2e;
    --wa-border: rgba(255,255,255,0.08);
    --wa-shadow: 0 20px 60px rgba(0,0,0,0.45);
    --wa-text: #ffffff;
    --wa-subtext: #aaaaaa;
    --wa-msg-bg: rgba(37,211,102,0.1);
    --wa-msg-color: #a8e6b8;
    --wa-badge-border: #1a1a2e;
}
html.light, [data-theme="light"], body.light {
    --wa-bg: #ffffff;
    --wa-border: rgba(0,0,0,0.1);
    --wa-shadow: 0 20px 60px rgba(0,0,0,0.15);
    --wa-text: #111111;
    --wa-subtext: #555555;
    --wa-msg-bg: #e8f5e9;
    --wa-msg-color: #1a3a1a;
    --wa-badge-border: #ffffff;
}
.wa-wrap {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 14px;
}
.wa-card {
    background: var(--wa-bg);
    border: 1px solid var(--wa-border);
    border-radius: 20px;
    padding: 18px;
    width: 280px;
    box-shadow: var(--wa-shadow);
    display: flex;
    flex-direction: column;
    gap: 12px;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    transform: translateY(12px) scale(0.95);
    opacity: 0;
    pointer-events: none;
    transition: transform .35s cubic-bezier(0.34,1.56,0.64,1), opacity .25s ease;
    transform-origin: bottom right;
}
.wa-card.open {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: all;
}
.wa-head { display: flex; align-items: center; gap: 12px; }
.wa-ava {
    width: 48px; height: 48px; border-radius: 50%;
    background: linear-gradient(135deg, #25D366, #128C7E);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; box-shadow: 0 4px 14px rgba(37,211,102,.35);
}
.wa-ava svg { width: 24px; height: 24px; fill: #fff; }
.wa-info strong { display: block; color: var(--wa-text); font-size: 15px; font-weight: 700; }
.wa-status { display: flex; align-items: center; gap: 5px; font-size: 12px; color: #25D366; font-weight: 500; margin-top: 3px; }
.wa-dot {
    width: 7px; height: 7px; background: #25D366; border-radius: 50%;
    animation: waBlink 1.6s ease-in-out infinite;
}
@keyframes waBlink {
    0%,100% { opacity:1; transform:scale(1); }
    50% { opacity:.35; transform:scale(.8); }
}
.wa-divider { height: 1px; background: var(--wa-border); }
.wa-bubble {
    background: var(--wa-msg-bg);
    border-radius: 0 14px 14px 14px;
    padding: 12px 14px;
    position: relative;
}
.wa-bubble::before {
    content: '';
    position: absolute;
    top: 0; left: -8px;
    border: 8px solid transparent;
    border-top-color: var(--wa-msg-bg);
    border-right-color: var(--wa-msg-bg);
}
.wa-bubble p { color: var(--wa-msg-color); font-size: 13.5px; line-height: 1.55; margin: 0; }
.wa-time { display: flex; justify-content: flex-end; align-items: center; gap: 4px; margin-top: 6px; }
.wa-time span { font-size: 11px; color: var(--wa-subtext); }
.wa-time svg { width: 14px; height: 14px; fill: #25D366; }
.wa-cta {
    display: flex; align-items: center; justify-content: center; gap: 9px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff; text-decoration: none;
    border-radius: 14px; padding: 13px 16px;
    font-size: 14px; font-weight: 700;
    box-shadow: 0 6px 20px rgba(37,211,102,.3);
    transition: transform .2s, box-shadow .2s;
}
.wa-cta:hover { transform: translateY(-1px); box-shadow: 0 10px 28px rgba(37,211,102,.45); color: #fff; text-decoration: none; }
.wa-cta svg { width: 18px; height: 18px; fill: #fff; }
.wa-note { text-align: center; font-size: 11px; color: var(--wa-subtext); }
.wa-btn {
    position: relative; width: 62px; height: 62px; border-radius: 50%;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 32px rgba(37,211,102,.45);
    transition: transform .25s cubic-bezier(0.34,1.56,0.64,1), box-shadow .25s;
    outline: none;
}
.wa-btn:hover { transform: scale(1.1); box-shadow: 0 14px 42px rgba(37,211,102,.6); }
.wa-btn:active { transform: scale(0.96); }
.wa-btn .ico-wa, .wa-btn .ico-x {
    position: absolute;
    transition: transform .3s cubic-bezier(0.34,1.56,0.64,1), opacity .25s;
}
.wa-btn .ico-wa  { opacity:1; transform:rotate(0deg) scale(1); }
.wa-btn .ico-x   { opacity:0; transform:rotate(-90deg) scale(0.6); }
.wa-btn.open .ico-wa { opacity:0; transform:rotate(90deg) scale(0.6); }
.wa-btn.open .ico-x  { opacity:1; transform:rotate(0deg) scale(1); }
.wa-badge {
    position: absolute; top: -3px; right: -3px;
    width: 20px; height: 20px;
    background: #ef4444; border-radius: 50%;
    border: 2.5px solid var(--wa-badge-border);
    display: flex; align-items: center; justify-content: center;
    font-size: 11px; font-weight: 700; color: #fff;
    transition: transform .2s, opacity .2s;
    animation: waBounce .6s cubic-bezier(0.34,1.56,0.64,1) .8s both;
}
@keyframes waBounce { from { transform:scale(0); } to { transform:scale(1); } }
.wa-badge.hide { transform: scale(0); opacity: 0; pointer-events: none; }
.wa-ripple {
    position: absolute; inset: 0; border-radius: 50%;
    border: 2px solid rgba(37,211,102,.5);
    animation: waRipple 2.4s ease-out infinite;
    pointer-events: none;
}
.wa-ripple:nth-child(2) { animation-delay: .8s; }
.wa-ripple:nth-child(3) { animation-delay: 1.6s; }
@keyframes waRipple {
    0%   { transform:scale(1); opacity:.8; }
    100% { transform:scale(1.9); opacity:0; }
}
.wa-btn.open .wa-ripple { animation-play-state: paused; opacity: 0; }
@media (max-width: 480px) {
    .wa-wrap { bottom: 20px; right: 16px; }
    .wa-card { width: calc(100vw - 32px); }
    .wa-btn  { width: 56px; height: 56px; }
}

@media (max-width: 768px) {
    .hero-packages .hero-visual {
        height: 300px;
    }
}
.legal-page {
    min-height: 100vh;
    background: var(--bg);
    color: var(--fg);
}

.legal-hero {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(212, 175, 55, 0.01) 100%);
    border-bottom: 1px solid var(--gray-200);
    padding: 80px 0 40px;
    margin-bottom: 40px;
}

.legal-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 24px;
}

.legal-breadcrumb a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.2s;
}

.legal-breadcrumb a:hover {
    color: var(--accent-hover);
}

.legal-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--fg);
    letter-spacing: -0.02em;
}

.legal-intro {
    font-size: 20px;
    color: var(--gray-600);
    line-height: 1.6;
    max-width: 800px;
    margin-bottom: 24px;
}

.legal-meta {
    display: flex;
    align-items: center;
    gap: 24px;
    color: var(--gray-500);
    font-size: 14px;
}

.legal-meta .meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.legal-meta svg {
    color: var(--accent);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.legal-section {
    margin-bottom: 48px;
}

.legal-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--fg);
    padding-bottom: 12px;
    border-bottom: 2px solid var(--accent);
    letter-spacing: -0.01em;
}

.legal-section h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 24px 0 16px;
    color: var(--gray-800);
}

.legal-section p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 16px;
}

.legal-section ul {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-section ul li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 12px;
    position: relative;
    padding-left: 8px;
}

.legal-section ul li::marker {
    color: var(--accent);
}

.legal-section ul li strong {
    color: var(--fg);
    font-weight: 600;
}

.legal-section a {
    color: var(--accent);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.2s;
}

.legal-section a:hover {
    color: var(--accent-hover);
    border-bottom-color: var(--accent-hover);
}

.legal-contact {
    background: var(--gray-100);
    border-left: 4px solid var(--accent);
    padding: 20px 24px;
    border-radius: var(--radius);
    margin: 20px 0;
}

.legal-contact p {
    margin-bottom: 8px;
    font-size: 15px;
}

.legal-contact p:last-child {
    margin-bottom: 0;
}

.legal-footer {
    max-width: 900px;
    margin: 0 auto 80px;
    padding: 0 20px;
}

.legal-cta {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(212, 175, 55, 0.03) 100%);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 48px;
    text-align: center;
    margin-bottom: 32px;
}

.legal-cta h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--fg);
}

.legal-cta p {
    font-size: 16px;
    color: var(--gray-600);
    margin-bottom: 24px;
}

.btn-legal {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--accent);
    color: #000000;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius);
    text-decoration: none;
    transition: all 0.2s;
}

.btn-legal:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.legal-links {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 32px;
    border-top: 1px solid var(--gray-200);
}

.btn-legal-back,
.btn-legal-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 500;
    border-radius: var(--radius);
    text-decoration: none;
    transition: all 0.2s;
}

.btn-legal-back {
    background: var(--gray-100);
    color: var(--fg);
}

.btn-legal-back:hover {
    background: var(--gray-200);
}

.btn-legal-link {
    background: transparent;
    color: var(--accent);
    border: 1px solid var(--accent);
}

.btn-legal-link:hover {
    background: var(--accent);
    color: #000000;
}

@media (max-width: 768px) {
    .legal-hero {
        padding: 60px 0 30px;
    }

    .legal-hero h1 {
        font-size: 32px;
    }

    .legal-intro {
        font-size: 16px;
    }

    .legal-section h2 {
        font-size: 24px;
    }

    .legal-section h3 {
        font-size: 20px;
    }

    .legal-cta {
        padding: 32px 24px;
    }

    .legal-cta h3 {
        font-size: 22px;
    }

    .legal-links {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-legal-back,
    .btn-legal-link {
        justify-content: center;
    }
}
