/* =============================================
   CARNACONVO PLOMBERIE - STYLES
   ============================================= */

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

:root {
    --color-primary: #1e5f8a;
    --color-primary-dark: #143d5a;
    --color-secondary: #4a9fd4;
    --color-light: #e8f4fc;
    --color-white: #ffffff;
    --color-text: #2d3748;
    --color-text-light: #5a6a7a;
    --color-border: #d0dde8;
    --font-main: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --transition: 0.25s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-white);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

h1 { font-size: 2.25rem; }
h2 { font-size: 1.875rem; margin-bottom: 1rem; }
h3 { font-size: 1.25rem; margin-bottom: 0.75rem; }

p { margin-bottom: 1rem; }

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--color-secondary);
}

ul, ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

li { margin-bottom: 0.5rem; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition);
}

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

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

.btn-secondary {
    background-color: var(--color-secondary);
    color: var(--color-white);
    border-color: var(--color-secondary);
}

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

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

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

.btn-small {
    padding: 8px 18px;
    font-size: 0.875rem;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: var(--color-white);
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-primary-dark);
}

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

.logo-icon {
    flex-shrink: 0;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 32px;
    margin: 0;
    padding: 0;
}

.nav-link {
    font-weight: 500;
    color: var(--color-text);
    padding: 8px 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-secondary);
    transition: width var(--transition);
}

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

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

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-primary-dark);
    position: absolute;
    left: 10px;
    transition: all var(--transition);
}

.hamburger {
    top: 21px;
}

.hamburger::before {
    content: '';
    top: -8px;
}

.hamburger::after {
    content: '';
    top: 8px;
}

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

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

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

/* Hero Section */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--color-light) 0%, var(--color-white) 100%);
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-content {
    flex: 1;
}

.hero h1 {
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.hero-text {
    font-size: 1.125rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-svg {
    max-width: 100%;
    height: auto;
}

/* Page Hero */
.page-hero {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--color-light) 0%, var(--color-white) 100%);
    text-align: center;
}

.page-intro {
    font-size: 1.125rem;
    color: var(--color-text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* Sections */
section {
    padding: 80px 0;
}

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

.section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.section-intro {
    font-size: 1.125rem;
    color: var(--color-text-light);
    max-width: 700px;
    margin-bottom: 2.5rem;
}

/* Philosophy Section */
.philosophy-section .container {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.philosophy-content {
    flex: 1;
}

.philosophy-content h2 {
    margin-bottom: 1.5rem;
}

.philosophy-values {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.value-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.value-item svg {
    flex-shrink: 0;
}

.value-item h3 {
    margin-bottom: 0.25rem;
}

.value-item p {
    margin-bottom: 0;
    color: var(--color-text-light);
    font-size: 0.9375rem;
}

/* Stats Section */
.stats-section {
    background-color: var(--color-primary);
    padding: 50px 0;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.stat-item {
    text-align: center;
    color: var(--color-white);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.9375rem;
    opacity: 0.9;
}

/* Services Highlight */
.services-highlight h2 {
    text-align: center;
}

.services-highlight .section-intro {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.services-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 2rem;
}

.service-card {
    flex: 1 1 calc(25% - 18px);
    min-width: 250px;
    background-color: var(--color-white);
    padding: 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition), box-shadow var(--transition);
}

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

.service-icon {
    margin-bottom: 16px;
}

.service-card h3 {
    color: var(--color-primary);
}

.service-card p {
    color: var(--color-text-light);
    font-size: 0.9375rem;
    margin-bottom: 0;
}

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

/* Process Section */
.process-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.process-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

.process-step {
    flex: 1;
    min-width: 180px;
    max-width: 220px;
    text-align: center;
}

.step-number {
    width: 48px;
    height: 48px;
    background-color: var(--color-secondary);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 auto 16px;
}

.process-step h3 {
    font-size: 1.0625rem;
}

.process-step p {
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin-bottom: 0;
}

.process-connector {
    display: flex;
    align-items: center;
    padding-top: 20px;
}

/* Testimonials */
.testimonials-section {
    background-color: var(--color-light);
}

.testimonials-section h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

.testimonials-grid {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 280px;
    background-color: var(--color-white);
    padding: 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--color-secondary);
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial cite {
    font-size: 0.875rem;
    color: var(--color-text-light);
    font-style: normal;
}

/* Industries Section */
.industries-section h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

.industries-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
}

.industry-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 140px;
    text-align: center;
}

.industry-item span {
    font-size: 0.9375rem;
    color: var(--color-text);
}

/* Tips Section */
.tips-section h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

.tips-grid {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.tip-card {
    flex: 1;
    min-width: 280px;
    background-color: var(--color-light);
    padding: 28px;
    border-radius: var(--radius-lg);
}

.tip-card h3 {
    color: var(--color-primary);
}

.tip-card p {
    color: var(--color-text-light);
    font-size: 0.9375rem;
    margin-bottom: 0;
}

/* FAQ Section */
.faq-section h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--color-border);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
    color: var(--color-text);
    transition: color var(--transition);
}

.faq-question:hover {
    color: var(--color-primary);
}

.faq-icon {
    width: 24px;
    height: 24px;
    position: relative;
    flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background-color: var(--color-secondary);
    transition: transform var(--transition);
}

.faq-icon::before {
    width: 14px;
    height: 2px;
    top: 11px;
    left: 5px;
}

.faq-icon::after {
    width: 2px;
    height: 14px;
    top: 5px;
    left: 11px;
}

.faq-question[aria-expanded="true"] .faq-icon::after {
    transform: rotate(90deg);
}

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

.faq-answer p {
    padding-bottom: 20px;
    color: var(--color-text-light);
}

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

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    text-align: center;
}

.cta-content h2 {
    color: var(--color-white);
}

.cta-content p {
    color: rgba(255,255,255,0.9);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* Products Section */
.category-block {
    margin-bottom: 60px;
}

.category-block:last-child {
    margin-bottom: 0;
}

.category-header {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
    align-items: flex-start;
}

.category-icon {
    flex-shrink: 0;
}

.category-intro h2 {
    margin-bottom: 0.5rem;
}

.category-intro p {
    color: var(--color-text-light);
    margin-bottom: 0;
}

.products-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.product-card {
    flex: 1 1 calc(25% - 15px);
    min-width: 220px;
    background-color: var(--color-light);
    padding: 24px;
    border-radius: var(--radius-md);
    transition: box-shadow var(--transition);
}

.product-card:hover {
    box-shadow: var(--shadow-md);
}

.product-card h3 {
    font-size: 1.0625rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.product-card p {
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

.product-price {
    font-size: 0.9375rem;
    color: var(--color-text);
}

.product-price strong {
    font-size: 1.125rem;
    color: var(--color-primary-dark);
}

/* Benefits Grid */
.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.benefits-section h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

.benefit-item {
    flex: 1 1 calc(25% - 18px);
    min-width: 220px;
    text-align: center;
}

.benefit-icon {
    margin-bottom: 16px;
}

.benefit-item h3 {
    font-size: 1.0625rem;
}

.benefit-item p {
    font-size: 0.9375rem;
    color: var(--color-text-light);
    margin-bottom: 0;
}

/* Comparison Table */
.comparison-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-bottom: 1rem;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 500px;
}

.comparison-table th,
.comparison-table td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid var(--color-border);
}

.comparison-table th {
    background-color: var(--color-primary);
    color: var(--color-white);
    font-weight: 500;
}

.comparison-table th:first-child {
    border-radius: var(--radius-md) 0 0 0;
}

.comparison-table th:last-child {
    border-radius: 0 var(--radius-md) 0 0;
}

.comparison-table tr:hover td {
    background-color: var(--color-light);
}

.table-note {
    font-size: 0.875rem;
    color: var(--color-text-light);
    font-style: italic;
}

/* Contact Page */
.contact-grid {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.contact-info-card {
    flex: 1;
    min-width: 280px;
    background-color: var(--color-light);
    padding: 32px;
    border-radius: var(--radius-lg);
    text-align: center;
}

.info-icon {
    margin-bottom: 16px;
}

.contact-info-card h2 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.contact-detail {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.contact-note {
    font-size: 0.9375rem;
    color: var(--color-text-light);
    margin-bottom: 0;
}

.hours-list p {
    margin-bottom: 0.75rem;
}

.hours-list p:last-child {
    margin-bottom: 0;
}

/* Directions Section */
.directions-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.directions-text {
    flex: 1;
}

.directions-text h3 {
    margin-top: 1.5rem;
}

.directions-text h3:first-child {
    margin-top: 0;
}

.directions-visual {
    flex: 1;
    text-align: center;
}

.map-placeholder {
    max-width: 100%;
    border-radius: var(--radius-md);
}

.map-legend {
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin-top: 0.5rem;
}

/* Company Info */
.company-details {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.detail-block {
    flex: 1 1 calc(33.333% - 16px);
    min-width: 200px;
}

.detail-block h3 {
    font-size: 0.9375rem;
    color: var(--color-text-light);
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.detail-block p {
    font-size: 1rem;
    margin-bottom: 0;
}

/* About Contact Section */
.about-contact-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-contact-content h2 {
    text-align: center;
}

/* Story Section */
.story-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.story-text {
    flex: 1;
}

.story-visual {
    flex: 1;
    text-align: center;
}

.story-svg {
    max-width: 100%;
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 60px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--color-border);
}

.timeline-item {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-year {
    width: 60px;
    text-align: right;
    font-weight: 700;
    color: var(--color-secondary);
    flex-shrink: 0;
}

.timeline-content {
    flex: 1;
    background-color: var(--color-white);
    padding: 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 24px;
    width: 12px;
    height: 12px;
    background-color: var(--color-secondary);
    border-radius: 50%;
    border: 3px solid var(--color-white);
}

.timeline-content h3 {
    margin-bottom: 0.5rem;
}

.timeline-content p {
    margin-bottom: 0;
    color: var(--color-text-light);
    font-size: 0.9375rem;
}

/* Values Section */
.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.value-card {
    flex: 1 1 calc(25% - 18px);
    min-width: 250px;
    background-color: var(--color-white);
    padding: 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.value-icon {
    margin-bottom: 16px;
}

.value-card h3 {
    color: var(--color-primary);
}

.value-card p {
    color: var(--color-text-light);
    font-size: 0.9375rem;
    margin-bottom: 0;
}

/* Team Section */
.team-departments {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.department {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

.department-icon {
    margin-bottom: 16px;
}

.department h3 {
    color: var(--color-primary);
}

.department p {
    color: var(--color-text-light);
    font-size: 0.9375rem;
}

/* Commitment Section */
.commitment-content {
    max-width: 800px;
    margin: 0 auto;
}

.commitment-list {
    list-style: none;
    padding: 0;
}

.commitment-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.commitment-list li svg {
    flex-shrink: 0;
    margin-top: 2px;
}

/* Partners Section */
.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.partner-item {
    padding: 16px;
}

/* Thank You Page */
.thank-you-section {
    padding: 100px 0;
    text-align: center;
}

.thank-you-content {
    max-width: 600px;
    margin: 0 auto;
}

.thank-you-icon {
    margin-bottom: 24px;
}

.thank-you-text {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.thank-you-note {
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.thank-you-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Quick Info Section */
.quick-info-grid {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.quick-info-card {
    flex: 1;
    min-width: 280px;
    background-color: var(--color-white);
    padding: 28px;
    border-radius: var(--radius-lg);
}

.quick-info-card h3 {
    color: var(--color-primary);
}

.quick-info-card p {
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

.link-arrow {
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.link-arrow::after {
    content: '→';
    transition: transform var(--transition);
}

.link-arrow:hover::after {
    transform: translateX(4px);
}

/* Legal Content */
.legal-content {
    padding: 60px 0;
}

.legal-article {
    max-width: 800px;
    margin: 0 auto;
}

.legal-article h2 {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border);
}

.legal-article h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.legal-article h3 {
    margin-top: 1.5rem;
    color: var(--color-primary);
}

.legal-update {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--color-border);
    color: var(--color-text-light);
    font-style: italic;
}

/* Cookie Table */
.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.cookie-table th,
.cookie-table td {
    padding: 12px 16px;
    text-align: left;
    border: 1px solid var(--color-border);
}

.cookie-table th {
    background-color: var(--color-light);
    font-weight: 500;
}

/* Footer */
.footer {
    background-color: var(--color-primary-dark);
    color: var(--color-white);
    padding: 60px 0 30px;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    color: var(--color-white);
    font-size: 1.0625rem;
    margin-bottom: 1rem;
}

.footer-col p {
    color: rgba(255,255,255,0.8);
    font-size: 0.9375rem;
    margin-bottom: 0.5rem;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col ul a {
    color: rgba(255,255,255,0.8);
    font-size: 0.9375rem;
    transition: color var(--transition);
}

.footer-col ul a:hover {
    color: var(--color-white);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.6);
    font-size: 0.875rem;
    margin-bottom: 0;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-white);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    z-index: 1000;
    padding: 20px;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-content p {
    margin-bottom: 0;
    flex: 1;
    min-width: 300px;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.cookie-link {
    font-size: 0.875rem;
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    position: relative;
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 32px;
    max-width: 500px;
    width: 100%;
    box-shadow: var(--shadow-lg);
}

.modal-content h3 {
    margin-bottom: 1.5rem;
}

.cookie-options {
    margin-bottom: 1.5rem;
}

.cookie-option {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--color-border);
    cursor: pointer;
}

.cookie-option:last-child {
    border-bottom: none;
}

.cookie-option input {
    flex-shrink: 0;
    margin-top: 4px;
}

.option-text {
    display: flex;
    flex-direction: column;
}

.option-text strong {
    font-weight: 500;
}

.option-text small {
    color: var(--color-text-light);
    font-size: 0.875rem;
}

.modal-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

/* Mobile Styles */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        order: 1;
    }

    .hero-visual {
        order: 2;
        max-width: 300px;
    }

    .philosophy-section .container {
        flex-direction: column;
    }

    .story-content {
        flex-direction: column;
    }

    .directions-content {
        flex-direction: column;
    }

    .process-connector {
        display: none;
    }

    .process-steps {
        flex-direction: column;
        align-items: center;
    }

    .process-step {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 1.875rem; }
    h2 { font-size: 1.5rem; }

    section {
        padding: 60px 0;
    }

    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--color-white);
        padding: 20px;
        box-shadow: var(--shadow-md);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition);
    }

    .nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
    }

    .nav-link {
        display: block;
        padding: 12px 0;
        border-bottom: 1px solid var(--color-border);
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .stats-grid {
        gap: 20px;
    }

    .stat-item {
        flex: 1 1 50%;
    }

    .service-card,
    .product-card,
    .value-card,
    .benefit-item {
        flex: 1 1 100%;
    }

    .testimonials-grid,
    .tips-grid,
    .contact-grid,
    .team-departments,
    .quick-info-grid {
        flex-direction: column;
    }

    .timeline::before {
        left: 10px;
    }

    .timeline-year {
        width: auto;
        text-align: left;
    }

    .timeline-item {
        flex-direction: column;
        padding-left: 30px;
    }

    .timeline-content::before {
        left: -26px;
    }

    .category-header {
        flex-direction: column;
    }

    .footer-grid {
        flex-direction: column;
        gap: 30px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-actions {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .btn {
        padding: 10px 20px;
    }

    .thank-you-actions {
        flex-direction: column;
    }

    .modal-actions {
        flex-direction: column;
    }

    .modal-actions .btn {
        width: 100%;
    }
}