/* GlowDyn - Natural Makeup Collection Website Styles */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #f0f0f0;
    background: #0a0a0f;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #ffffff;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.4rem; }

p {
    margin-bottom: 1rem;
    color: #b0b0b0;
    line-height: 1.7;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    color: #fff;
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 157, 0.5);
}

.btn-secondary {
    background: rgba(255, 107, 157, 0.1);
    color: #ff6b9d;
    border: 2px solid rgba(255, 107, 157, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 107, 157, 0.2);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

/* Navigation */
#navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 107, 157, 0.2);
    transition: all 0.3s ease;
}

#navbar.scrolled {
    background: rgba(10, 10, 15, 0.98);
    box-shadow: 0 4px 20px rgba(255, 107, 157, 0.2);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo i {
    font-size: 2rem;
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Image logo support */
.logo img {
    height: 60px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.nav-link {
    text-decoration: none;
    color: #f0f0f0;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #ff6b9d;
    background: rgba(255, 107, 157, 0.1);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #f0f0f0;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse at center, #1a0a1f 0%, #0a0a0f 100%);
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.floating-orbs {
    position: absolute;
    width: 100%;
    height: 100%;
}

.orb {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.3), rgba(196, 69, 105, 0.2));
    animation: float 8s ease-in-out infinite;
    backdrop-filter: blur(10px);
}

.orb-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.orb-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.orb-4 {
    width: 120px;
    height: 120px;
    top: 30%;
    right: 30%;
    animation-delay: 6s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(120deg); }
    66% { transform: translateY(10px) rotate(240deg); }
}

.gradient-mesh {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 107, 157, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(196, 69, 105, 0.1) 0%, transparent 50%);
    animation: mesh-shift 12s ease-in-out infinite;
}

@keyframes mesh-shift {
    0%, 100% { transform: translateX(0) translateY(0); }
    50% { transform: translateX(50px) translateY(-30px); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 107, 157, 0.15);
    color: #ff6b9d;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 107, 157, 0.3);
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.gradient-text {
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 107, 157, 0.5);
}

.hero-description {
    font-size: 1.2rem;
    color: #d0d0d0;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.feature-bubble {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 107, 157, 0.1);
    color: #ff6b9d;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(255, 107, 157, 0.2);
    backdrop-filter: blur(10px);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

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

.product-showcase {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.showcase-frame {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    background: rgba(255, 107, 157, 0.1);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 107, 157, 0.3);
    box-shadow: 0 20px 60px rgba(255, 107, 157, 0.3);
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 28px;
    transition: transform 0.3s ease;
}

.hero-image:hover {
    transform: scale(1.05);
}

.glow-effect {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 157, 0.2) 0%, transparent 70%);
    animation: glow-pulse 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes glow-pulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.element {
    position: absolute;
    background: rgba(255, 107, 157, 0.9);
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    backdrop-filter: blur(10px);
    animation: element-float 3s ease-in-out infinite;
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.4);
}

.element-1 {
    top: 15%;
    left: -10%;
    animation-delay: 0s;
}

.element-2 {
    top: 50%;
    right: -15%;
    animation-delay: 1s;
}

.element-3 {
    bottom: 15%;
    left: -5%;
    animation-delay: 2s;
}

@keyframes element-float {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-15px) scale(1.1); }
}

/* Features Hexagon Section */
.features-hexagon-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #1a0a1f 0%, #2d1b3d 100%);
    position: relative;
}

.section-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hexagon-pattern {
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 107, 157, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(196, 69, 105, 0.05) 0%, transparent 50%);
}

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

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #b0b0b0;
    max-width: 600px;
    margin: 0 auto;
}

.hexagon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.hex-feature {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hex-shape {
    width: 280px;
    height: 280px;
    background: rgba(255, 107, 157, 0.1);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 107, 157, 0.3);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.hex-shape::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 157, 0.2), transparent);
    transition: left 0.6s;
}

.hex-feature:hover .hex-shape::before {
    left: 100%;
}

.hex-feature:hover .hex-shape {
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(255, 107, 157, 0.3);
    border-color: rgba(255, 107, 157, 0.5);
}

.hex-content {
    text-align: center;
    padding: 2rem;
    z-index: 2;
    position: relative;
}

.hex-content i {
    font-size: 3rem;
    color: #ff6b9d;
    margin-bottom: 1rem;
    display: block;
}

.hex-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.hex-content p {
    color: #b0b0b0;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* Product Gallery Wave Section */
.product-gallery-wave {
    padding: 8rem 0;
    background: #0a0a0f;
    position: relative;
}

.wave-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200px;
}

.wave-background svg {
    width: 100%;
    height: 100%;
    fill: #1a0a1f;
}

.gallery-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.gallery-main {
    position: relative;
}

.main-display {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    background: rgba(255, 107, 157, 0.1);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 107, 157, 0.3);
    box-shadow: 0 20px 60px rgba(255, 107, 157, 0.2);
}

.gallery-main-image {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
    border-radius: 28px;
}

.gallery-main-image:hover {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 1rem;
    left: 1rem;
}

.overlay-badge {
    background: rgba(255, 107, 157, 0.9);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.gallery-thumbnails {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    justify-content: center;
}

.thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    background: rgba(255, 107, 157, 0.1);
    backdrop-filter: blur(10px);
}

.thumbnail:hover,
.thumbnail.active {
    border-color: #ff6b9d;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.4);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 13px;
}

.gallery-content {
    padding-left: 2rem;
}

.content-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 107, 157, 0.15);
    color: #ff6b9d;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 107, 157, 0.3);
    backdrop-filter: blur(10px);
}

.gallery-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.gallery-content p {
    font-size: 1.1rem;
    color: #b0b0b0;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.beauty-benefits h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #b0b0b0;
    font-weight: 500;
    padding: 0.75rem;
    background: rgba(255, 107, 157, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 157, 0.1);
    backdrop-filter: blur(10px);
}

.benefit-item i {
    color: #ff6b9d;
    font-size: 1.1rem;
}

/* Video Demo Section */
.video-demo-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #2d1b3d 0%, #1a0a1f 100%);
    position: relative;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.particle-field {
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(255, 107, 157, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(196, 69, 105, 0.2), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255, 107, 157, 0.4), transparent);
    background-repeat: repeat;
    background-size: 100px 100px;
    animation: particle-move 20s linear infinite;
}

@keyframes particle-move {
    0% { background-position: 0 0, 0 0, 0 0; }
    100% { background-position: 100px 100px, -100px 100px, 50px -100px; }
}

.video-content {
    position: relative;
    z-index: 2;
}

.video-header {
    text-align: center;
    margin-bottom: 4rem;
}

.video-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
}

.video-header p {
    font-size: 1.2rem;
    color: #b0b0b0;
    max-width: 600px;
    margin: 0 auto;
}

.video-player {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.video-thumbnail {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    background: rgba(255, 107, 157, 0.1);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 107, 157, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-thumbnail:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 60px rgba(255, 107, 157, 0.3);
}

.video-thumbnail img {
    width: 100%;
    height: auto;
    border-radius: 23px;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 107, 157, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.video-info p {
    font-size: 1.1rem;
    color: #b0b0b0;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.video-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ff6b9d;
    font-weight: 600;
}

.stat i {
    font-size: 1.1rem;
}

/* Specifications Circular Section */
.specifications-circular {
    padding: 8rem 0;
    background: #0a0a0f;
}

.specs-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.specs-visual {
    position: relative;
}

.specs-visual img {
    width: 100%;
    height: auto;
    border-radius: 30px;
    background: rgba(255, 107, 157, 0.1);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 107, 157, 0.3);
    box-shadow: 0 20px 60px rgba(255, 107, 157, 0.2);
}

.spec-points {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.point {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.point-dot {
    width: 12px;
    height: 12px;
    background: #ff6b9d;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(255, 107, 157, 0.3);
    animation: point-pulse 2s ease-in-out infinite;
}

@keyframes point-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.point-label {
    background: rgba(255, 107, 157, 0.9);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.point-1 {
    top: 20%;
    left: 10%;
}

.point-2 {
    top: 40%;
    right: 15%;
}

.point-3 {
    bottom: 25%;
    left: 20%;
}

.specs-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.spec-circle {
    background: rgba(255, 107, 157, 0.1);
    backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: 25px;
    border: 2px solid rgba(255, 107, 157, 0.3);
    transition: all 0.3s ease;
}

.spec-circle:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 107, 157, 0.2);
}

.spec-circle h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.spec-circle h3 i {
    color: #ff6b9d;
    font-size: 1.2rem;
}

.spec-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 107, 157, 0.1);
}

.spec-item:last-child {
    border-bottom: none;
}

.spec-label {
    font-weight: 600;
    color: #d0d0d0;
}

.spec-value {
    color: #ffffff;
    font-weight: 500;
    text-align: right;
}

/* CTA Blob Section */
.cta-blob-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #1a0a1f 0%, #2d1b3d 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.blob-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.blob {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.2), rgba(196, 69, 105, 0.1));
    animation: blob-float 10s ease-in-out infinite;
    backdrop-filter: blur(20px);
}

.blob-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.blob-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 20%;
    animation-delay: 3s;
}

.blob-3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 60%;
    animation-delay: 6s;
}

@keyframes blob-float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-30px) rotate(120deg); }
    66% { transform: translateY(15px) rotate(240deg); }
}

.cta-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.cta-text h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.cta-text p {
    font-size: 1.2rem;
    color: #d0d0d0;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cta-benefits .benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #d0d0d0;
    font-weight: 500;
}

.cta-benefits .benefit-item i {
    color: #ff6b9d;
    font-size: 1.2rem;
}

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

.price-highlight {
    background: rgba(255, 107, 157, 0.1);
    border: 2px solid rgba(255, 107, 157, 0.3);
    border-radius: 25px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(20px);
}

.price-label {
    display: block;
    font-size: 0.9rem;
    color: #b0b0b0;
    margin-bottom: 0.5rem;
}

.price-amount {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #ff6b9d;
    margin-bottom: 0.5rem;
}

.price-note {
    font-size: 0.9rem;
    color: #d0d0d0;
}

.guarantee-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    color: #b0b0b0;
    font-size: 0.9rem;
}

.guarantee-text i {
    color: #48bb78;
}

/* Footer */
footer {
    background: #050508;
    color: #d0d0d0;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3,
.footer-section h4 {
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo i {
    font-size: 2rem;
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Image logo support in footer */
.footer-logo img {
    height: 60px;
    width: auto;
    display: block;
}

.footer-logo h3 {
    font-size: 1.8rem;
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.footer-section p {
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: #d0d0d0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ff6b9d;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 107, 157, 0.2);
    color: #b0b0b0;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

/* Base spacing for subpage hero sections (e.g., blog, contact) so titles clear the fixed navbar */
.page-hero {
    padding-top: 140px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .gallery-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .gallery-content {
        padding-left: 0;
    }
    
    .specs-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .video-player {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cta-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        box-shadow: 0 4px 20px rgba(255, 107, 157, 0.2);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    /* Ensure home hero content is not hidden under fixed navbar on mobile */
    .hero-section {
        padding-top: 120px;
    }
    
    .hero-features {
        justify-content: center;
        gap: 0.5rem;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .hexagon-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .video-stats {
        justify-content: center;
    }
    
    .cta-text h2 {
        font-size: 2.2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Subpage hero spacing and title sizing for mobile (blog, contact, etc.) */
    .page-hero {
        padding-top: 120px !important; /* override inline styles on subpages */
    }
    .page-hero h1 {
        font-size: 1.8rem !important;
        margin-top: 0.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .btn-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .hex-shape {
        width: 220px;
        height: 220px;
    }
    
    .hex-content {
        padding: 1.5rem;
    }
    
    .hex-content i {
        font-size: 2rem;
    }
    
    .gallery-content h2 {
        font-size: 2rem;
    }
    
    .price-amount {
        font-size: 2rem;
    }
    
    .cta-text h2 {
        font-size: 1.8rem;
    }

    /* Tighter mobile phones adjustments */
    .hero-section {
        padding-top: 130px;
    }
    .page-hero {
        padding-top: 130px !important;
    }
    .page-hero h1 {
        font-size: 1.6rem !important;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }