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

:root {
    --primary: #1a365d;
    --primary-hover: #1e40af;
    --secondary: #0d9488;
    --accent: #f59e0b;
    --accent-hover: #d97706;
    --text-primary: #1F2937;
    --text-secondary: #6B7280;
    --text-light: #9CA3AF;
    --bg-white: #FFFFFF;
    --bg-gray: #F9FAFB;
    --border-gray: #E5E7EB;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 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);
    --shadow-primary: 0 4px 12px rgba(26, 54, 93, 0.2);
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.06);
    --shadow-card-hover: 0 8px 30px rgba(0, 0, 0, 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: var(--text-primary);
    line-height: 1.6;
    background: var(--bg-white);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (min-width: 768px) {
    .container {
        padding: 0 2.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 3.75rem;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary);
}

h1 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 1.875rem;
    margin-bottom: 1.25rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    h1 {
        font-size: 3rem;
    }
    h2 {
        font-size: 2.25rem;
    }
    h3 {
        font-size: 1.875rem;
    }
}

p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

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

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

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

.btn-accent {
    background: var(--accent);
    color: white;
    box-shadow: var(--shadow-lg);
}

.btn-accent:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
}

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

.btn-lg {
    padding: 1.5rem 2rem;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
}

.btn svg {
    width: 1.25rem;
    height: 1.25rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: white;
    box-shadow: var(--shadow-md);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 5rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.8;
}

.logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary) 0%, #34D399 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

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

.header-advertorial {
    display: flex;
    align-items: center;
}

.advertorial-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--accent);
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.hamburger {
    display: block;
    width: 1.75rem;
    height: 0.125rem;
    background: var(--text-secondary);
    position: relative;
    transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 0.125rem;
    background: var(--text-secondary);
    transition: all 0.3s ease;
}

.hamburger::before {
    top: -0.5rem;
}

.hamburger::after {
    bottom: -0.5rem;
}

.mobile-menu-btn.active .hamburger {
    background: transparent;
}

.mobile-menu-btn.active .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.mobile-menu-btn.active .hamburger::after {
    bottom: 0;
    transform: rotate(-45deg);
}

.nav-mobile {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
    border-top: 1px solid var(--border-gray);
}

.nav-mobile.active {
    display: flex;
}

.nav-link-mobile {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

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

.btn-mobile {
    width: 100%;
    margin-top: 0.5rem;
}

/* Hero Section */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary) 0%, #3B82F6 100%);
    color: white;
    padding: 8rem 0 3rem;
    overflow: hidden;
}

.hero-bg-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    filter: blur(60px);
}

.hero-bg-shape-1 {
    top: 5rem;
    right: 2.5rem;
    width: 16rem;
    height: 16rem;
    background: var(--secondary);
}

.hero-bg-shape-2 {
    bottom: 5rem;
    left: 2.5rem;
    width: 24rem;
    height: 24rem;
    background: #3B82F6;
}

.hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

.hero-text {
    width: 100%;
}

.hero-title {
    font-size: 2.25rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: white;
    width: 80%;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

.text-accent {
    color: #34D399;
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 1.25rem;
    }
}

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

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 1.5rem;
    box-shadow: var(--shadow-xl);
}

.hero-card {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    background: white;
    border-radius: 1rem;
    box-shadow: var(--shadow-xl);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 18rem;
}

.hero-card-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary) 0%, #34D399 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-card-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
}

.hero-card-title {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.hero-card-subtitle {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Section */
.section {
    padding: 5rem 0;
}

@media (min-width: 768px) {
    .section {
        padding: 8rem 0;
    }
}

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

.section-gradient {
    background: linear-gradient(180deg, var(--bg-gray) 0%, var(--bg-white) 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: 1.875rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.75;
}

.section-footer {
    margin-top: 4rem;
    text-align: center;
}

.section-footer-text {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.75;
    max-width: 64rem;
    margin: 0 auto;
}

/* Badge */
.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.badge-teal {
    background: rgba(13, 148, 136, 0.1);
    color: var(--secondary);
}

.badge-amber {
    background: rgba(245, 158, 11, 0.1);
    color: var(--accent);
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.benefit-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
}

.benefit-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary) 0%, #34D399 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.benefit-icon svg {
    width: 2rem;
    height: 2rem;
    color: white;
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
}

.benefit-description {
    color: var(--text-secondary);
    line-height: 1.75;
}

/* Hover Lift Effect */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* Expert Section */
.expert-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .expert-content {
        grid-template-columns: 1fr 1fr;
    }
}

.expert-image {
    position: relative;
}

.expert-image img {
    width: 100%;
    max-width: 28rem;
    margin: 0 auto;
    display: block;
    border-radius: 1.5rem;
    box-shadow: var(--shadow-xl);
}

.expert-badge {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background: var(--secondary);
    color: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-xl);
    max-width: 12rem;
}

.expert-badge-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.expert-badge-subtitle {
    font-size: 0.875rem;
}

.expert-title {
    font-size: 1.875rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .expert-title {
        font-size: 2.25rem;
    }
}

.expert-description {
    margin-bottom: 2rem;
}

.expert-description p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.expert-description strong {
    color: var(--primary);
    font-weight: 600;
}

.expert-quote {
    background: linear-gradient(to right, var(--bg-gray), white);
    border-left: 4px solid var(--secondary);
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin: 1.5rem 0;
}

.expert-quote p {
    color: var(--text-secondary);
    font-style: italic;
}

/* Story Section */
.story-block {
    margin-bottom: 5rem;
}

.story-title {
    font-size: 1.875rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .story-title {
        font-size: 2.25rem;
    }
}

.story-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .story-content {
        grid-template-columns: 1fr 1fr;
    }
}

.story-content-reverse {
    direction: ltr;
}

@media (min-width: 1024px) {
    .story-content-reverse .story-image {
        order: -1;
    }
}

.story-text p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.story-image img {
    width: 100%;
    border-radius: 1.5rem;
    box-shadow: var(--shadow-xl);
}

.story-text-full {
    max-width: 64rem;
}

.story-text-full p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.story-quote {
    background: white;
    border-left: 4px solid var(--accent);
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: var(--shadow-lg);
    margin: 1.5rem 0;
}

.story-quote p {
    color: var(--text-secondary);
    font-style: italic;
    font-size: 1.125rem;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    background: linear-gradient(to bottom right, var(--bg-gray), white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
}

.feature-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary) 0%, #34D399 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon svg {
    width: 2rem;
    height: 2rem;
    color: white;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.75;
}

/* Ingredients */
.ingredients-image {
    margin-bottom: 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ingredients-image img {
    width: auto;
    height: auto;
    max-width: 100%;
    margin: 0 auto;
    display: block;
    border-radius: 1.5rem;
    box-shadow: var(--shadow-xl);
}

.ingredients-list {
    max-width: 80rem;
    margin: 0 auto;
}

.ingredients-list-title {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .ingredients-list-title {
        font-size: 1.875rem;
    }
}

.ingredients-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .ingredients-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.ingredient-item {
    background: white;
    border: 2px solid var(--border-gray);
    border-radius: 0.75rem;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.3s ease;
}

.ingredient-item:hover {
    border-color: var(--secondary);
}

.ingredient-dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background: var(--secondary);
    margin-top: 0.5rem;
    flex-shrink: 0;
}

.ingredient-name {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.ingredient-desc {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Approach Section */
.approach-section {
    margin-top: 5rem;
    max-width: 64rem;
    margin-left: auto;
    margin-right: auto;
}

.approach-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .approach-title {
        font-size: 1.875rem;
    }
}

.approach-content p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.approach-list {
    list-style: none;
    margin-left: 1.5rem;
}

.approach-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
}

.approach-list li::before {
    content: '•';
    color: var(--secondary);
    font-size: 1.25rem;
    font-weight: 700;
}

/* Testimonials Section */
.section-testimonials {
    position: relative;
    background-image: url('../assets/testimonial-background-pattern.jpg');
    background-size: cover;
    background-position: center;
}

.testimonials-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.9);
}

.testimonials-grid {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.testimonial-avatar {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
    border: 2px solid var(--secondary);
}

.testimonial-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.testimonial-stars {
    color: var(--accent);
    font-size: 1rem;
}

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

.testimonials-footer {
    position: relative;
    z-index: 10;
    margin-top: 4rem;
}

.testimonials-footer-image {
    width: 100%;
    max-width: 48rem;
    margin: 0 auto;
    display: block;
    border-radius: 1.5rem;
    box-shadow: var(--shadow-xl);
}

/* CTA Sections */
.cta-section-1 {
    background: linear-gradient(135deg, var(--primary) 0%, #3B82F6 100%);
    color: white;
}

.cta-content {
    text-align: center;
    max-width: 64rem;
    margin: 0 auto;
}

.cta-title {
    font-size: 1.875rem;
    color: white;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .cta-title {
        font-size: 3rem;
    }
}

.cta-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.75;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .cta-description {
        font-size: 1.25rem;
    }
}

.cta-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .cta-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.cta-title-dark {
    font-size: 1.875rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .cta-title-dark {
        font-size: 2.25rem;
    }
}

.cta-description-dark {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.cta-checklist {
    margin-bottom: 2rem;
}

.cta-check-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.cta-button-group {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.price-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 2rem;
    background: var(--accent);
    color: white;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1.125rem;
    box-shadow: var(--shadow-lg);
}

.cta-check-item svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--secondary);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.cta-check-item span {
    color: var(--text-secondary);
}

.cta-image img {
    width: 100%;
    max-width: 28rem;
    margin: 0 auto;
    display: block;
}

.cta-final {
    text-align: center;
    max-width: 64rem;
    margin: 0 auto;
}

.cta-quote-box {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-card);
    max-width: 40rem;
    margin: 2rem auto;
}

.cta-quote-box p {
    color: var(--text-secondary);
    line-height: 1.75;
    font-style: italic;
}

.cta-quote-author {
    color: var(--primary);
    font-weight: 600;
    margin-top: 1rem;
    font-style: normal;
}

.cta-quote-author img {
    width: auto;
    height: auto;
    max-width: 200px;
    display: block;
    margin: 0 auto;
}

/* Order Form Section */
.order-form-section {
    background: linear-gradient(135deg, var(--primary) 0%, #3B82F6 100%);
}

.order-form-wrapper {
    max-width: 64rem;
    margin: 0 auto;
}

.order-form-header {
    text-align: center;
    color: white;
    margin-bottom: 3rem;
}

.order-form-title {
    font-size: 1.875rem;
    color: white;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .order-form-title {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .order-form-title {
        font-size: 3rem;
    }
}

.order-form-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.75;
}

@media (min-width: 768px) {
    .order-form-description {
        font-size: 1.25rem;
    }
}

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

@media (min-width: 768px) {
    .trust-badges {
        grid-template-columns: repeat(3, 1fr);
    }
}

.trust-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-align: center;
    color: white;
}

.trust-badge svg {
    width: 2.5rem;
    height: 2.5rem;
    margin: 0 auto 0.75rem;
}

.trust-badge-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.trust-badge-subtitle {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.order-form-card {
    background: white;
    border-radius: 1.5rem;
    box-shadow: var(--shadow-xl);
    padding: 2rem;
}

@media (min-width: 768px) {
    .order-form-card {
        padding: 3rem;
    }
}

.order-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.form-label {
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

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

.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26, 54, 93, 0.1);
}

.form-input[readonly] {
    background: var(--bg-gray);
}

.price-calculation {
    background: var(--bg-gray);
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.price-calculation-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-label {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
}

.price-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
}

.form-disclaimer {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-align: center;
}

/* Footer */
.footer {
    background: var(--text-primary);
    color: white;
    padding: 4rem 0;
}

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

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

.footer-logo:hover {
    opacity: 0.8;
}

.footer .logo-text {
    color: rgba(255, 255, 255, 0.8);
}

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

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.75;
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.footer-contact strong {
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.footer-disclosure {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-disclosure:hover {
    color: rgba(255, 255, 255, 0.8);
}

.footer-composition {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-composition-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-composition-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    line-height: 1.75;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background: white;
    border-radius: 1.5rem;
    padding: 3rem;
    max-width: 32rem;
    width: 90%;
    box-shadow: var(--shadow-xl);
    text-align: center;
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-icon {
    width: 5rem;
    height: 5rem;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary) 0%, #34D399 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.modal-icon svg {
    width: 3rem;
    height: 3rem;
}

.modal-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.modal-message {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 2rem;
}

.loading-spinner {
    width: 5rem;
    height: 5rem;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spinner {
    width: 4rem;
    height: 4rem;
    border: 4px solid rgba(13, 148, 136, 0.1);
    border-top-color: var(--secondary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loading-message {
    font-size: 1.125rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Animations */
.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

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

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

.mb-4 {
    margin-bottom: 1rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mt-4 {
    margin-top: 1rem;
}

.mt-8 {
    margin-top: 2rem;
}

/* Contact Form Messages */
.contact-message {
    display: none;
    padding: 1rem;
    border-radius: 0.5rem;
    margin-top: 1rem;
}

.contact-message.active {
    display: block;
}

.contact-success {
    background: rgba(13, 148, 136, 0.1);
    border: 2px solid var(--secondary);
    color: var(--secondary);
}

.contact-error {
    background: rgba(239, 68, 68, 0.1);
    border: 2px solid #ef4444;
    color: #ef4444;
}