@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Quicksand:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --secondary: #f59e0b;
    --accent: #ec4899;
    --dark: #1e1b4b;
    --light: #f8fafc;
    --gray: #64748b;
    --gray-light: #e2e8f0;
    --white: #ffffff;
    --gradient-1: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
    --gradient-2: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1);
    --radius: 8px;
    --radius-lg: 16px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Quicksand', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: var(--dark);
    background: var(--light);
    min-width: 320px;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--dark);
}

h1 { font-size: 2rem; }
h2 { font-size: 1.6rem; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.1rem; }

p { margin-bottom: 0.75rem; }

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover { color: var(--primary-dark); }

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul { list-style: none; }

.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 20px;
    font-family: 'Quicksand', sans-serif;
    font-size: 13px;
    font-weight: 600;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: var(--gradient-1);
    color: var(--white);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 12px 0;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    transform: translateY(0);
    transition: transform 0.4s ease, background 0.3s ease;
}

.header.header-hidden {
    transform: translateY(-100%);
}

.header.header-scrolled {
    background: var(--white);
    box-shadow: var(--shadow);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    text-decoration: none;
}

.logo i {
    font-size: 1.4rem;
    color: var(--primary);
}

.logo:hover { color: var(--primary); }

.nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-links a {
    font-size: 13px;
    font-weight: 500;
    color: var(--dark);
    position: relative;
    padding: 4px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--dark);
    transition: var(--transition);
    margin: 3px 0;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -8px);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 999;
    padding: 80px 20px 30px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu a {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark);
    padding: 10px;
}

.mobile-menu a:hover { color: var(--primary); }

.hero {
    padding: 120px 0 60px;
    background: var(--gradient-2);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-text { color: var(--white); }

.hero-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255,255,255,0.15);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero h1 {
    color: var(--white);
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.hero p {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 20px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.hero-float {
    position: absolute;
    background: var(--white);
    padding: 12px 16px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-float-1 {
    top: -15px;
    right: -15px;
}

.hero-float-2 {
    bottom: 20px;
    left: -15px;
}

.hero-float i {
    font-size: 1.2rem;
    color: var(--primary);
}

.hero-float-text {
    font-size: 11px;
}

.hero-float-text strong {
    display: block;
    font-size: 13px;
    color: var(--dark);
}

section {
    padding: 50px 0;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 35px;
}

.section-badge {
    display: inline-block;
    padding: 5px 12px;
    background: linear-gradient(135deg, rgba(99,102,241,0.1) 0%, rgba(236,72,152,0.1) 100%);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header h2 { margin-bottom: 10px; }

.section-header p {
    color: var(--gray);
    font-size: 13px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-card {
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.feature-icon i {
    font-size: 1.3rem;
    color: var(--white);
}

.feature-card h3 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 12px;
    color: var(--gray);
    margin-bottom: 0;
}

.services {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.service-card {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--light);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.service-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    background: var(--gradient-1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon i {
    font-size: 1.1rem;
    color: var(--white);
}

.service-content h3 {
    font-size: 1rem;
    margin-bottom: 6px;
}

.service-content p {
    font-size: 12px;
    color: var(--gray);
    margin-bottom: 8px;
}

.service-link {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.service-link:hover { gap: 8px; }

.process {
    background: var(--gradient-2);
    color: var(--white);
}

.process .section-header h2,
.process .section-header p {
    color: var(--white);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 25px;
    right: -10px;
    width: 20px;
    height: 2px;
    background: rgba(255,255,255,0.3);
}

.process-step:last-child::after { display: none; }

.step-number {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.15);
    border: 2px solid var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary);
    margin: 0 auto 15px;
}

.process-step h4 {
    color: var(--white);
    font-size: 0.95rem;
    margin-bottom: 6px;
}

.process-step p {
    font-size: 11px;
    opacity: 0.8;
    margin-bottom: 0;
}

.testimonials {
    background: var(--light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.testimonial-card {
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.testimonial-stars {
    color: var(--secondary);
    font-size: 12px;
    margin-bottom: 12px;
}

.testimonial-text {
    font-size: 13px;
    font-style: italic;
    color: var(--gray);
    margin-bottom: 15px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 14px;
}

.testimonial-info h5 {
    font-size: 13px;
    font-family: 'Quicksand', sans-serif;
    margin-bottom: 2px;
}

.testimonial-info span {
    font-size: 11px;
    color: var(--gray);
}

.cta {
    background: var(--gradient-1);
    text-align: center;
    color: var(--white);
}

.cta h2 {
    color: var(--white);
    margin-bottom: 10px;
}

.cta p {
    opacity: 0.9;
    margin-bottom: 20px;
    font-size: 13px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    position: relative;
    height: 180px;
    background: var(--gradient-2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image i {
    font-size: 3rem;
    color: rgba(255,255,255,0.3);
}

.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 4px 10px;
    background: var(--secondary);
    border-radius: 50px;
    font-size: 10px;
    font-weight: 600;
    color: var(--white);
}

.product-content {
    padding: 20px;
}

.product-content h3 {
    font-size: 1rem;
    margin-bottom: 6px;
}

.product-content p {
    font-size: 12px;
    color: var(--gray);
    margin-bottom: 12px;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
}

.product-btn {
    padding: 8px 14px;
    font-size: 11px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-experience {
    position: absolute;
    bottom: -15px;
    right: -15px;
    background: var(--gradient-1);
    color: var(--white);
    padding: 20px;
    border-radius: var(--radius);
    text-align: center;
}

.about-experience span {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
}

.about-text h2 { margin-bottom: 15px; }

.about-text p {
    color: var(--gray);
    font-size: 13px;
    margin-bottom: 20px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-feature i {
    color: var(--primary);
    font-size: 1rem;
}

.about-feature span {
    font-size: 12px;
    font-weight: 500;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.team-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.team-avatar {
    height: 150px;
    background: var(--gradient-2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-avatar i {
    font-size: 3rem;
    color: rgba(255,255,255,0.3);
}

.team-info {
    padding: 20px;
}

.team-info h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.team-info span {
    font-size: 12px;
    color: var(--primary);
    font-weight: 500;
}

.page-hero {
    padding: 100px 0 40px;
    background: var(--gradient-2);
    text-align: center;
    color: var(--white);
}

.page-hero h1 {
    color: var(--white);
    margin-bottom: 10px;
}

.page-hero p {
    opacity: 0.9;
    font-size: 13px;
    max-width: 500px;
    margin: 0 auto;
}

.breadcrumbs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    font-size: 12px;
}

.breadcrumbs a {
    color: rgba(255,255,255,0.7);
}

.breadcrumbs a:hover { color: var(--white); }

.breadcrumbs span { color: var(--secondary); }

.contact-section {
    background: var(--light);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 30px;
}

.contact-info {
    background: var(--gradient-2);
    padding: 30px;
    border-radius: var(--radius-lg);
    color: var(--white);
}

.contact-info h3 {
    color: var(--white);
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.contact-item-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: rgba(255,255,255,0.15);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item-icon i {
    font-size: 1rem;
    color: var(--secondary);
}

.contact-item-text h5 {
    color: var(--white);
    font-size: 12px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    margin-bottom: 2px;
}

.contact-item-text p {
    font-size: 12px;
    opacity: 0.8;
    margin-bottom: 0;
}

.contact-form {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.contact-form h3 { margin-bottom: 20px; }

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 14px;
    font-family: 'Quicksand', sans-serif;
    font-size: 13px;
    border: 1px solid var(--gray-light);
    border-radius: var(--radius);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99,102,241,0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.form-checkbox input {
    width: auto;
    margin-top: 3px;
}

.form-checkbox label {
    font-size: 11px;
    font-weight: 400;
    color: var(--gray);
    margin-bottom: 0;
}

.form-checkbox a {
    color: var(--primary);
    text-decoration: underline;
}

.map-container {
    height: 250px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-top: 20px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.policy-content {
    background: var(--white);
}

.policy-text {
    max-width: 800px;
    margin: 0 auto;
}

.policy-text h2 {
    font-size: 1.3rem;
    margin: 25px 0 12px;
    padding-top: 15px;
    border-top: 1px solid var(--gray-light);
}

.policy-text h2:first-child {
    border-top: none;
    margin-top: 0;
    padding-top: 0;
}

.policy-text p {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 12px;
    text-align: justify;
}

.policy-text ul {
    margin-bottom: 15px;
    padding-left: 20px;
}

.policy-text li {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 6px;
    position: relative;
    padding-left: 15px;
}

.policy-text li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
}

.policy-date {
    font-size: 12px;
    color: var(--gray);
    font-style: italic;
    margin-bottom: 20px;
}

.error-page,
.thank-you-page {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    height: 100vh;
}

.error-content,
.thank-you-content {
    max-width: 450px;
}

.error-icon,
.thank-you-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.error-icon i,
.thank-you-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.error-content h1,
.thank-you-content h1 {
    margin-bottom: 10px;
}

.error-content p,
.thank-you-content p {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 20px;
}

.footer {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
    padding: 25px 0 15px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
}

.footer-logo i {
    font-size: 1.2rem;
    color: var(--primary);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-links a {
    font-size: 12px;
    color: rgba(255,255,255,0.7);
}

.footer-links a:hover { color: var(--white); }

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding-top: 15px;
}

.copyright {
    font-size: 11px;
}

.privacy-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.privacy-links a {
    font-size: 11px;
    color: rgba(255,255,255,0.7);
}

.privacy-links a:hover { color: var(--white); }

.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 15px;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
    z-index: 9999;
    display: none;
}

.cookie-popup.show { display: block; }

.cookie-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    font-size: 12px;
    color: var(--gray);
}

.cookie-text a {
    color: var(--primary);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    padding: 8px 16px;
    font-size: 12px;
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    margin-bottom: 10px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-question {
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
    transition: var(--transition);
}

.faq-question:hover { color: var(--primary); }

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 20px 15px;
    max-height: 200px;
}

.faq-answer p {
    font-size: 12px;
    color: var(--gray);
    margin-bottom: 0;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.showcase-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.showcase-image {
    height: 200px;
    background: var(--gradient-2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.showcase-image i {
    font-size: 3rem;
    color: rgba(255,255,255,0.3);
}

.showcase-content {
    padding: 20px;
}

.showcase-content h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.showcase-content p {
    font-size: 12px;
    color: var(--gray);
    margin-bottom: 12px;
}

.timeline {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--gray-light);
}

.timeline-item {
    position: relative;
    padding: 15px 0;
    display: flex;
    justify-content: flex-end;
    width: 50%;
}

.timeline-item:nth-child(even) {
    margin-left: 50%;
    justify-content: flex-start;
}

.timeline-content {
    background: var(--white);
    padding: 15px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    max-width: 250px;
}

.timeline-content h4 {
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.timeline-content p {
    font-size: 11px;
    color: var(--gray);
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    right: -8px;
    top: 20px;
    width: 16px;
    height: 16px;
    background: var(--gradient-1);
    border-radius: 50%;
    border: 3px solid var(--white);
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -8px;
    right: auto;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: 12px;
    color: var(--gray);
}

@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-buttons { justify-content: center; }
    
    .hero-image { display: none; }
    
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    
    .services-grid { grid-template-columns: 1fr; }
    
    .process-steps { grid-template-columns: repeat(2, 1fr); }
    
    .process-step::after { display: none; }
    
    .testimonials-grid { grid-template-columns: 1fr; }
    
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    
    .about-content { grid-template-columns: 1fr; }
    
    .about-image { display: none; }
    
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    
    .contact-wrapper { grid-template-columns: 1fr; }
    
    .showcase-grid { grid-template-columns: 1fr; }
    
    .stats-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    h1 { font-size: 1.6rem; }
    h2 { font-size: 1.3rem; }
    
    .nav-links { display: none; }
    
    .menu-toggle { display: flex; }
    
    .mobile-menu { display: flex; }
    
    .hero { padding: 100px 0 50px; }
    
    .hero h1 { font-size: 1.8rem; }
    
    section { padding: 40px 0; }
    
    .features-grid { grid-template-columns: 1fr; }
    
    .process-steps { grid-template-columns: 1fr; }
    
    .products-grid { grid-template-columns: 1fr; }
    
    .team-grid { grid-template-columns: 1fr; }
    
    .footer-content { flex-direction: column; text-align: center; }
    
    .footer-bottom { flex-direction: column; text-align: center; }
    
    .cookie-inner { flex-direction: column; text-align: center; }
    
    .timeline::before { left: 15px; }
    
    .timeline-item,
    .timeline-item:nth-child(even) {
        width: 100%;
        margin-left: 0;
        padding-left: 40px;
        justify-content: flex-start;
    }
    
    .timeline-dot,
    .timeline-item:nth-child(even) .timeline-dot {
        left: 7px;
        right: auto;
    }
    
    .timeline-content { max-width: 100%; }
}

@media (max-width: 480px) {
    body { font-size: 13px; }
    
    h1 { font-size: 1.4rem; }
    h2 { font-size: 1.2rem; }
    h3 { font-size: 1rem; }
    
    .container { padding: 0 12px; }
    
    .btn { padding: 8px 16px; font-size: 12px; }
    
    .hero { padding: 90px 0 40px; }
    
    section { padding: 30px 0; }
    
    .feature-card,
    .service-card,
    .testimonial-card,
    .product-card,
    .team-card { padding: 20px; }
    
    .contact-info,
    .contact-form { padding: 20px; }
    
    .stats-row { grid-template-columns: 1fr 1fr; gap: 15px; }
    
    .stat-number { font-size: 1.5rem; }
}

@media (max-width: 360px) {
    .logo { font-size: 0.95rem; }
    
    .logo i { font-size: 1.2rem; }
    
    .hero h1 { font-size: 1.3rem; }
    
    .hero-badge { font-size: 10px; padding: 5px 10px; }
    
    .btn { padding: 7px 14px; font-size: 11px; }
    
    .feature-icon,
    .service-icon { width: 40px; height: 40px; min-width: 40px; }
    
    .step-number { width: 40px; height: 40px; font-size: 1rem; }
}
