/* ===================================
   ANAR SHAH FITNESS - VIBRANT DESIGN
   Bright Green-Blue Theme
   =================================== */

:root {
    /* Vibrant Color Palette */
    --primary-green: #00C896;
    --primary-green-dark: #00A67E;
    --primary-green-light: #33D4AC;
    
    --secondary-blue: #0EA5E9;
    --secondary-blue-dark: #0284C7;
    --secondary-blue-light: #38BDF8;
    
    --accent-teal: #14B8A6;
    --accent-cyan: #06B6D4;
    
    --bg-light: #F0FDFA;
    --bg-white: #FFFFFF;
    --bg-gray: #F8FAFC;
    
    --text-dark: #0F172A;
    --text-medium: #475569;
    --text-light: #64748B;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #00C896 0%, #0EA5E9 100%);
    --gradient-accent: linear-gradient(135deg, #14B8A6 0%, #06B6D4 100%);
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Poppins', sans-serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    
    /* Radius */
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-xl: 2rem;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 200, 150, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 200, 150, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 200, 150, 0.2);
    --shadow-xl: 0 12px 48px rgba(0, 200, 150, 0.25);
}

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

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

ul {
    list-style: none;
}

/* Container */
.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.section {
    padding: var(--space-3xl) 0;
}

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

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.7);
    }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-tagline {
    font-size: 0.75rem;
    color: var(--text-medium);
    font-weight: 500;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-green);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-medium);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    position: relative;
}

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

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

.nav-cta {
    background: var(--gradient-primary);
    color: white;
    padding: 0.625rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-full);
    transition: all 0.3s ease;
    cursor: pointer;
}

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

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

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

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

.btn-block {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    background: linear-gradient(135deg, #F0FDFA 0%, #E0F2FE 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 200, 150, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    background: white;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-sm);
    margin-bottom: var(--space-lg);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-medium);
}

.badge-icon {
    font-size: 1.25rem;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: var(--space-lg);
    line-height: 1.1;
}

.highlight-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-medium);
    margin-bottom: var(--space-xl);
    line-height: 1.7;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.stat-box {
    background: white;
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-number::after {
    content: '+';
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-medium);
}

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

.hero-image {
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero-photo {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: var(--radius-xl);
}

.image-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background: var(--gradient-accent);
    border-radius: var(--radius-xl);
    opacity: 0.3;
    z-index: -1;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-tag {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--gradient-primary);
    color: white;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--space-md);
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-3xl);
    margin-bottom: var(--space-3xl);
}

.about-photo-frame {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-photo {
    width: 100%;
    height: 700px;
    object-fit: cover;
}

.photo-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.badge-number {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.badge-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-medium);
    line-height: 1.3;
}

.about-content h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.about-subtitle {
    color: var(--primary-green);
    font-size: 1.125rem;
    margin-bottom: var(--space-lg);
}

.about-text {
    font-size: 1.125rem;
    color: var(--text-medium);
    margin-bottom: var(--space-md);
    line-height: 1.7;
}

.philosophy-box {
    background: linear-gradient(135deg, #E0F2FE 0%, #F0FDFA 100%);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    margin: var(--space-lg) 0;
    border-left: 4px solid var(--primary-green);
}

.philosophy-box h4 {
    color: var(--primary-green);
    margin-bottom: var(--space-md);
}

.philosophy-list {
    display: grid;
    gap: 0.75rem;
}

.philosophy-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
}

.check-icon {
    width: 24px;
    height: 24px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: 700;
}

.about-achievements {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.achievement-item {
    background: white;
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.achievement-icon {
    font-size: 2rem;
}

.achievement-number {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.achievement-label {
    font-size: 0.875rem;
    color: var(--text-medium);
}

/* Why Choose */
.why-choose {
    margin-top: var(--space-3xl);
}

.subsection-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: var(--space-xl);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-xl);
}

.feature-card {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.feature-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.feature-content {
    padding: var(--space-lg);
}

.feature-content h4 {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
    color: var(--primary-green);
}

.feature-content p {
    color: var(--text-medium);
}

/* Yoga Section */
.batch-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.batch-card {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.batch-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.batch-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.batch-content {
    padding: var(--space-xl);
}

.batch-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.batch-badge.morning {
    background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
    color: #92400E;
}

.batch-badge.evening {
    background: linear-gradient(135deg, #DDD6FE 0%, #C4B5FD 100%);
    color: #5B21B6;
}

.batch-content h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
    color: var(--primary-green);
}

.batch-details {
    margin-bottom: var(--space-lg);
}

.batch-details li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #E2E8F0;
}

.batch-details li:last-child {
    border-bottom: none;
}

.icon {
    font-size: 1.25rem;
}

.session-breakdown {
    background: white;
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    margin-bottom: var(--space-xl);
}

.session-breakdown h3 {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.session-items {
    display: grid;
    gap: var(--space-lg);
    max-width: 800px;
    margin: 0 auto;
}

.session-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--space-lg);
    align-items: start;
}

.session-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.session-info h4 {
    margin-bottom: 0.5rem;
    color: var(--primary-green);
}

.session-info p {
    color: var(--text-medium);
}

.important-notice {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-xl);
    background: #FEF2F2;
    border-radius: var(--radius-lg);
    border-left: 4px solid #EF4444;
}

.notice-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.notice-content h4 {
    color: #DC2626;
    margin-bottom: var(--space-sm);
}

.notice-content ul {
    list-style: disc;
    margin-left: 1.5rem;
}

.notice-content li {
    margin-bottom: 0.5rem;
    color: var(--text-medium);
}

/* Diet Section */
.diet-hero {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: var(--space-xl);
    box-shadow: var(--shadow-lg);
}

.diet-hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.diet-hero-content {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 200, 150, 0.95) 0%, rgba(14, 165, 233, 0.95) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: var(--space-xl);
}

.diet-hero-content h3 {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
    color: white;
}

.diet-hero-content p {
    font-size: 1.25rem;
    max-width: 800px;
    opacity: 0.95;
}

.diet-process {
    margin-bottom: var(--space-3xl);
}

.diet-process h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: var(--space-xl);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-xl);
}

.process-card {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.process-number {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    box-shadow: var(--shadow-md);
    z-index: 1;
}

.process-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.process-card h4 {
    padding: var(--space-lg);
    padding-bottom: 0;
    color: var(--primary-green);
}

.process-card p {
    padding: var(--space-sm) var(--space-lg) var(--space-lg);
    color: var(--text-medium);
}

/* Diet Rules */
.diet-rules {
    margin-bottom: var(--space-3xl);
}

.diet-rules h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: var(--space-xl);
}

.rules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-xl);
}

.rules-card {
    background: white;
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.rules-card.restriction {
    border: 3px solid #FEE2E2;
}

.rules-card.guideline {
    border: 3px solid #D1FAE5;
}

.rules-card h4 {
    font-size: 1.5rem;
    margin-bottom: var(--space-lg);
}

.rules-card ul {
    display: grid;
    gap: 0.75rem;
}

.rules-card li {
    padding: 0.75rem;
    background: var(--bg-gray);
    border-radius: var(--radius-sm);
    font-weight: 500;
}

/* Transformations */
.transformations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.transformation-card {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.transformation-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.transformation-images {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: var(--space-md);
    padding: var(--space-lg);
    align-items: center;
}

.transform-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--radius-md);
}

.arrow {
    font-size: 2rem;
    color: var(--primary-green);
    font-weight: 700;
}

.transformation-info {
    padding: var(--space-lg);
}

.transform-badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: var(--space-sm);
}

.transform-badge {
    background: #D1FAE5;
    color: #065F46;
}

.transform-badge.gain {
    background: #DBEAFE;
    color: #1E40AF;
}

.transform-badge.lifestyle {
    background: #FCE7F3;
    color: #9F1239;
}

.transformation-info h4 {
    margin-bottom: 0.5rem;
    color: var(--primary-green);
}

.transformation-info p {
    color: var(--text-medium);
}

.cta-center {
    text-align: center;
    margin-top: var(--space-xl);
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-xl);
}

.testimonial-card {
    background: white;
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

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

.testimonial-header {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-header h4 {
    margin-bottom: 0.25rem;
}

.testimonial-header p {
    font-size: 0.875rem;
    color: var(--text-light);
}

.rating {
    color: #FBBF24;
    font-size: 1rem;
    margin-top: 0.25rem;
}

.testimonial-text {
    color: var(--text-medium);
    line-height: 1.7;
    font-style: italic;
}

/* Pricing */
.pricing-category {
    margin-bottom: var(--space-3xl);
}

.pricing-category h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: var(--space-xl);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-xl);
}

.pricing-card {
    background: white;
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
    border: 3px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
    border-color: var(--primary-green);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 1.5rem;
    background: var(--gradient-primary);
    color: white;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 700;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
    text-align: center;
}

.plan-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: var(--space-sm);
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-green);
}

.amount {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.savings {
    text-align: center;
    padding: 0.5rem 1rem;
    background: #D1FAE5;
    color: #065F46;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
}

.plan-features {
    margin: var(--space-lg) 0;
}

.plan-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #E2E8F0;
}

.plan-features li:last-child {
    border-bottom: none;
}

.pricing-note {
    text-align: center;
    padding: var(--space-lg);
    background: #FEF2F2;
    border-radius: var(--radius-lg);
    max-width: 900px;
    margin: var(--space-xl) auto 0;
}

/* FAQ */
.faq-grid {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: var(--space-md);
}

.faq-item {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    padding: var(--space-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-md);
    background: white;
    text-align: left;
    font-weight: 600;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary-green);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 var(--space-lg) var(--space-lg);
    color: var(--text-medium);
    line-height: 1.7;
}

/* Contact */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-3xl);
}

.contact-info {
    display: grid;
    gap: var(--space-lg);
    align-content: start;
}

.contact-card {
    background: white;
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-md);
    background: var(--gradient-primary);
    color: white;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon.whatsapp {
    background: #25D366;
}

.contact-card h4 {
    margin-bottom: var(--space-sm);
}

.contact-card p,
.contact-card a {
    color: var(--text-medium);
}

.contact-card a:hover {
    color: var(--primary-green);
}

.contact-form {
    background: white;
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-group label {
    display: block;
    margin-bottom: var(--space-sm);
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #E2E8F0;
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(0, 200, 150, 0.1);
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: var(--space-3xl) 0 var(--space-lg);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.footer-column h3,
.footer-column h4 {
    color: white;
    margin-bottom: var(--space-md);
}

.footer-column p {
    color: #94A3B8;
    margin-bottom: var(--space-sm);
}

.footer-column a {
    color: #94A3B8;
}

.footer-column a:hover {
    color: var(--primary-green);
}

.footer-column ul {
    display: grid;
    gap: 0.75rem;
}

.footer-social {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-md);
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary-green);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #94A3B8;
}

/* Scroll to Top */
.scroll-top {
    position: fixed;
    bottom: 120px;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-grid,
    .about-grid,
    .contact-layout {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 5rem 2rem;
        box-shadow: -5px 0 20px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        gap: 0;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        width: 100%;
        padding: 1rem 0;
        border-bottom: 1px solid #E2E8F0;
    }

    .hero-stats,
    .about-achievements,
    .form-row {
        grid-template-columns: 1fr;
    }

    .features-grid,
    .batch-cards,
    .process-grid,
    .rules-grid,
    .transformations-grid,
    .testimonials-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .whatsapp-float {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 50px;
        height: 50px;
    }

    .scroll-top {
        bottom: 100px;
        right: 1.5rem;
    }
}
