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

html {
    scroll-behavior: smooth;
}

:root {
    --neon-purple: #8B5CF6;
    --neon-pink: #EC4899;
    --neon-cyan: #06B6D4;
    --neon-orange: #F97316;
    --neon-lime: #84CC16;
    --dark-bg: #0F0A1E;
    --card-bg: rgba(255,255,255,0.05);
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--dark-bg);
    color: #fff;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Animated Background */
.bg-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.shape {
    position: absolute;
    opacity: 0.15;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    top: 10%;
    left: 5%;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--neon-purple), var(--neon-pink));
    border-radius: 50%;
    filter: blur(60px);
    animation-delay: 0s;
}

.shape-2 {
    top: 60%;
    right: 5%;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    filter: blur(80px);
    animation-delay: -5s;
}

.shape-3 {
    bottom: 20%;
    left: 20%;
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, var(--neon-orange), var(--neon-pink));
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    filter: blur(50px);
    animation-delay: -10s;
}

.shape-4 {
    top: 40%;
    left: 50%;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--neon-lime), var(--neon-cyan));
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    filter: blur(40px);
    animation-delay: -15s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
    25% { transform: translate(30px, -30px) rotate(5deg) scale(1.1); }
    50% { transform: translate(-20px, 20px) rotate(-5deg) scale(0.95); }
    75% { transform: translate(20px, 10px) rotate(3deg) scale(1.05); }
}

/* Grid Pattern Overlay */
.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(139, 92, 246, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 92, 246, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 1;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(15, 10, 30, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 32px;
    font-weight: 700;
    text-decoration: none;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple), var(--neon-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease infinite;
    background-size: 200% 200%;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.header-cta {
    background: linear-gradient(135deg, var(--neon-orange), var(--neon-pink));
    color: #fff;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(249, 115, 22, 0.4);
    position: relative;
    overflow: hidden;
}

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

.header-cta:hover::before {
    left: 100%;
}

.header-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(249, 115, 22, 0.6);
}

/* Main Content */
.main-content {
    position: relative;
    z-index: 10;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 30px 80px;
    position: relative;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(139, 92, 246, 0.2);
    border: 1px solid rgba(139, 92, 246, 0.4);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    color: var(--neon-purple);
    margin-bottom: 30px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(139, 92, 246, 0); }
}

.hero-badge svg {
    width: 18px;
    height: 18px;
}

.hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero h1 .gradient-text {
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple), var(--neon-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 24px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 20px;
    font-weight: 500;
}

.hero-description {
    font-size: 18px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 40px;
    max-width: 500px;
    line-height: 1.8;
}

.price-container {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
}

.price-box {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(236, 72, 153, 0.2));
    border: 2px solid rgba(139, 92, 246, 0.4);
    padding: 25px 40px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.price-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, var(--neon-purple), transparent 30%);
    animation: rotate 4s linear infinite;
}

.price-box-content {
    position: relative;
    z-index: 1;
    background: var(--dark-bg);
    padding: 20px;
    border-radius: 16px;
}

@keyframes rotate {
    100% { transform: rotate(360deg); }
}

.price-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 8px;
}

.price {
    font-size: 56px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--neon-orange), var(--neon-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, var(--neon-orange), var(--neon-pink));
    color: #fff;
    padding: 22px 50px;
    border-radius: 60px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(249, 115, 22, 0.4);
    position: relative;
    overflow: hidden;
}

.cta-button::after {
    content: '→';
    font-size: 24px;
    transition: transform 0.3s ease;
}

.cta-button:hover::after {
    transform: translateX(5px);
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(249, 115, 22, 0.6);
}

.trust-badges {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.05);
    padding: 15px 25px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    transition: all 0.3s ease;
}

.trust-badge:hover {
    background: rgba(139, 92, 246, 0.1);
    border-color: var(--neon-purple);
    transform: translateY(-3px);
}

.trust-badge svg {
    width: 24px;
    height: 24px;
    color: var(--neon-cyan);
}

/* Hero Image */
.hero-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.hero-image img {
    width: 100%;
    max-width: 400px;
    filter: drop-shadow(0 30px 60px rgba(139, 92, 246, 0.4));
    animation: float-device 6s ease-in-out infinite;
}

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

.glow-ring {
    position: absolute;
    width: 500px;
    height: 500px;
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 50%;
    animation: pulse-ring 3s ease-out infinite;
}

.glow-ring:nth-child(2) {
    width: 600px;
    height: 600px;
    border-color: rgba(6, 182, 212, 0.2);
    animation-delay: 1s;
}

.glow-ring:nth-child(3) {
    width: 700px;
    height: 700px;
    border-color: rgba(236, 72, 153, 0.15);
    animation-delay: 2s;
}

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

.floating-tag {
    position: absolute;
    background: rgba(15, 10, 30, 0.9);
    border: 1px solid rgba(139, 92, 246, 0.4);
    padding: 12px 24px;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--neon-cyan);
    backdrop-filter: blur(10px);
    animation: float-tag 4s ease-in-out infinite;
}

.floating-tag.tag-1 {
    top: 20%;
    right: 0;
    animation-delay: 0s;
}

.floating-tag.tag-2 {
    bottom: 30%;
    left: -20px;
    animation-delay: 2s;
}

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

/* Features Section */
.features {
    padding: 120px 30px;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
}

.section-header h2 span {
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 20px;
    color: rgba(255,255,255,0.6);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 32px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--neon-purple), var(--neon-pink));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.feature-card:hover::before {
    opacity: 0.1;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-purple);
    box-shadow: 0 30px 60px rgba(139, 92, 246, 0.2);
}

.feature-card:nth-child(2) {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(139, 92, 246, 0.1));
    border-color: rgba(6, 182, 212, 0.3);
}

.feature-card:nth-child(3) {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(236, 72, 153, 0.1));
    border-color: rgba(249, 115, 22, 0.3);
}

.feature-card:nth-child(4) {
    background: linear-gradient(135deg, rgba(132, 204, 22, 0.1), rgba(6, 182, 212, 0.1));
    border-color: rgba(132, 204, 22, 0.3);
}

.feature-card:nth-child(5) {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.1), rgba(139, 92, 246, 0.1));
    border-color: rgba(236, 72, 153, 0.3);
}

.feature-card:nth-child(6) {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(249, 115, 22, 0.1));
    border-color: rgba(139, 92, 246, 0.3);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.feature-card:nth-child(1) .feature-icon { background: linear-gradient(135deg, var(--neon-purple), var(--neon-pink)); }
.feature-card:nth-child(2) .feature-icon { background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple)); }
.feature-card:nth-child(3) .feature-icon { background: linear-gradient(135deg, var(--neon-orange), var(--neon-pink)); }
.feature-card:nth-child(4) .feature-icon { background: linear-gradient(135deg, var(--neon-lime), var(--neon-cyan)); }
.feature-card:nth-child(5) .feature-icon { background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple)); }
.feature-card:nth-child(6) .feature-icon { background: linear-gradient(135deg, var(--neon-purple), var(--neon-orange)); }

.feature-icon svg {
    width: 40px;
    height: 40px;
    color: #fff;
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.feature-card p {
    font-size: 15px;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* Food Products Section */
.food-section {
    padding: 120px 30px;
    background: linear-gradient(180deg, transparent 0%, rgba(139, 92, 246, 0.05) 50%, transparent 100%);
    position: relative;
}

.food-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-purple), transparent);
}

.food-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.food-card {
    background: var(--card-bg);
    border-radius: 32px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.4s ease;
    position: relative;
}

.food-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

.food-card:nth-child(1):hover { border-color: #FCD34D; box-shadow: 0 30px 60px rgba(252, 211, 77, 0.2); }
.food-card:nth-child(2):hover { border-color: #DC2626; box-shadow: 0 30px 60px rgba(220, 38, 38, 0.2); }
.food-card:nth-child(3):hover { border-color: #F97316; box-shadow: 0 30px 60px rgba(249, 115, 22, 0.2); }
.food-card:nth-child(4):hover { border-color: #D97706; box-shadow: 0 30px 60px rgba(217, 119, 6, 0.2); }

.food-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    position: relative;
    overflow: hidden;
}

.food-card:nth-child(1) .food-image { background: linear-gradient(135deg, rgba(252, 211, 77, 0.2), rgba(251, 191, 36, 0.1)); }
.food-card:nth-child(2) .food-image { background: linear-gradient(135deg, rgba(220, 38, 38, 0.2), rgba(153, 27, 27, 0.1)); }
.food-card:nth-child(3) .food-image { background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(234, 88, 12, 0.1)); }
.food-card:nth-child(4) .food-image { background: linear-gradient(135deg, rgba(217, 119, 6, 0.2), rgba(180, 83, 9, 0.1)); }

.food-image img {
    max-height: 160px;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.food-card:hover .food-image img {
    transform: scale(1.1) rotate(-5deg);
}

.food-content {
    padding: 25px;
}

.food-tag {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.food-card:nth-child(1) .food-tag { background: rgba(252, 211, 77, 0.2); color: #FCD34D; }
.food-card:nth-child(2) .food-tag { background: rgba(220, 38, 38, 0.2); color: #FCA5A5; }
.food-card:nth-child(3) .food-tag { background: rgba(249, 115, 22, 0.2); color: #FDBA74; }
.food-card:nth-child(4) .food-tag { background: rgba(217, 119, 6, 0.2); color: #FCD34D; }

.food-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.food-card p {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
}

.food-benefits {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.food-benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 8px;
}

.food-benefits li::before {
    content: '✓';
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

.food-card:nth-child(1) .food-benefits li::before { background: rgba(252, 211, 77, 0.2); color: #FCD34D; }
.food-card:nth-child(2) .food-benefits li::before { background: rgba(220, 38, 38, 0.2); color: #FCA5A5; }
.food-card:nth-child(3) .food-benefits li::before { background: rgba(249, 115, 22, 0.2); color: #FDBA74; }
.food-card:nth-child(4) .food-benefits li::before { background: rgba(217, 119, 6, 0.2); color: #FCD34D; }

/* For Seniors Section - Diagonal */
.for-seniors {
    padding: 120px 30px;
    position: relative;
    overflow: hidden;
}

.for-seniors::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    clip-path: polygon(0 10%, 100% 0, 100% 90%, 0 100%);
}

.for-seniors-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.for-seniors-image {
    position: relative;
}

.for-seniors-image img {
    width: 100%;
    border-radius: 40px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.4);
}

.for-seniors-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--neon-cyan);
    border-radius: 40px;
    z-index: -1;
}

.for-seniors-text h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 25px;
}

.for-seniors-text h2 span {
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.for-seniors-text > p {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin-bottom: 35px;
}

.senior-features {
    list-style: none;
}

.senior-features li {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 17px;
    padding: 15px 20px;
    background: rgba(255,255,255,0.05);
    border-radius: 16px;
    border-left: 4px solid var(--neon-cyan);
    transition: all 0.3s ease;
}

.senior-features li:hover {
    background: rgba(6, 182, 212, 0.1);
    transform: translateX(10px);
}

.senior-features li svg {
    width: 28px;
    height: 28px;
    color: var(--neon-cyan);
    flex-shrink: 0;
}

/* Specs Section - Hexagon Style */
.specs {
    padding: 120px 30px;
    position: relative;
}

.specs-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.spec-item {
    background: var(--card-bg);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 40px 25px;
    border-radius: 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.spec-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--neon-purple), var(--neon-pink), var(--neon-orange));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.spec-item:hover::after {
    transform: scaleX(1);
}

.spec-item:hover {
    transform: translateY(-10px);
    border-color: var(--neon-purple);
}

.spec-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.spec-label {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}

/* Easy Use Section - Wave */
.easy-use {
    padding: 120px 30px;
    position: relative;
}

.easy-use::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(180deg, rgba(139, 92, 246, 0.1), transparent);
}

.easy-use-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.easy-use-text h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 25px;
}

.easy-use-text h2 span {
    background: linear-gradient(135deg, var(--neon-orange), var(--neon-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.easy-use-text > p {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin-bottom: 40px;
}

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

.step {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    padding: 25px;
    background: rgba(255,255,255,0.03);
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.step:hover {
    background: rgba(249, 115, 22, 0.1);
    border-color: var(--neon-orange);
    transform: translateX(10px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--neon-orange), var(--neon-pink));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    font-size: 24px;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3);
}

.step-content h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.step-content p {
    font-size: 15px;
    color: rgba(255,255,255,0.6);
    margin: 0;
}

.easy-use-image {
    position: relative;
}

.easy-use-image img {
    width: 100%;
    border-radius: 40px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.4);
}

.easy-use-image::after {
    content: '';
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--neon-orange), var(--neon-pink));
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    z-index: -1;
}

/* Trust Section */
.trust {
    padding: 100px 30px;
    background: linear-gradient(180deg, transparent, rgba(139, 92, 246, 0.05), transparent);
}

.trust-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.trust-item {
    padding: 40px 30px;
    background: var(--card-bg);
    border-radius: 32px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.4s ease;
}

.trust-item:hover {
    transform: translateY(-10px);
    border-color: var(--neon-cyan);
    box-shadow: 0 20px 40px rgba(6, 182, 212, 0.2);
}

.trust-item svg {
    width: 60px;
    height: 60px;
    margin-bottom: 25px;
}

.trust-item:nth-child(1) svg { color: var(--neon-cyan); }
.trust-item:nth-child(2) svg { color: var(--neon-purple); }
.trust-item:nth-child(3) svg { color: var(--neon-pink); }

.trust-item h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
}

.trust-item p {
    font-size: 15px;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 150px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 70%);
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-section h2 span {
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple), var(--neon-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-section > p {
    font-size: 24px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 50px;
}

.cta-price {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 96px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--neon-orange), var(--neon-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    line-height: 1;
}

.cta-note {
    font-size: 18px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 50px;
}

.cta-button-large {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, var(--neon-orange), var(--neon-pink));
    color: #fff;
    padding: 28px 70px;
    border-radius: 70px;
    text-decoration: none;
    font-size: 24px;
    font-weight: 700;
    transition: all 0.4s ease;
    box-shadow: 0 20px 60px rgba(249, 115, 22, 0.5);
    position: relative;
    overflow: hidden;
}

.cta-button-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s ease;
}

.cta-button-large:hover::before {
    left: 100%;
}

.cta-button-large:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 30px 80px rgba(249, 115, 22, 0.6);
}

.guarantee {
    margin-top: 40px;
    font-size: 16px;
    color: rgba(255,255,255,0.5);
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

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

/* Inner page content (contact, terms, privacy, return policy) */
.page-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 120px 30px 80px;
}

.page-content h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 24px;
}

.page-content h1 span {
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 600;
    margin-top: 32px;
    margin-bottom: 12px;
    color: rgba(255,255,255,0.95);
}

.page-content p,
.page-content li {
    color: rgba(255,255,255,0.75);
    margin-bottom: 16px;
    line-height: 1.8;
    font-size: 16px;
}

.page-content a {
    color: var(--neon-cyan);
    text-decoration: none;
}

.page-content a:hover {
    text-decoration: underline;
}

.page-content ul,
.page-content ol {
    margin-left: 24px;
    margin-bottom: 16px;
}

.page-content .contact-info,
.page-content .contact-item {
    background: var(--card-bg);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    padding: 24px;
    margin-bottom: 24px;
}

.page-content .contact-item strong {
    color: #fff;
    display: block;
    margin-bottom: 4px;
}

.page-content .highlight-box {
    background: rgba(139, 92, 246, 0.15);
    border-left: 4px solid var(--neon-purple);
    padding: 20px 24px;
    border-radius: 16px;
    margin: 24px 0;
}

.page-content .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 24px;
}

.page-content .footer-link {
    color: var(--neon-cyan);
    text-decoration: none;
}

.page-content .footer-link:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    padding: 50px 30px;
    background: rgba(0,0,0,0.3);
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.footer p {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 10px;
}

.footer a {
    color: var(--neon-cyan);
    text-decoration: none;
}

.footer .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

.footer .footer-link {
    color: var(--neon-cyan);
    text-decoration: none;
}

.footer .footer-link:hover {
    text-decoration: underline;
}

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

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

/* Responsive */
@media (max-width: 1200px) {
    .food-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hero-container,
    .for-seniors-content,
    .easy-use-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero h1 {
        font-size: 48px;
    }

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

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

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

    .cta-section h2 {
        font-size: 48px;
    }

    .cta-price {
        font-size: 72px;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 36px;
    }

    .section-header h2,
    .for-seniors-text h2,
    .easy-use-text h2,
    .cta-section h2 {
        font-size: 36px;
    }

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

    .price {
        font-size: 42px;
    }

    .cta-button,
    .cta-button-large {
        font-size: 18px;
        padding: 20px 40px;
    }

    .cta-price {
        font-size: 56px;
    }

    .header-cta {
        display: none;
    }

    .glow-ring {
        display: none;
    }
}
