.why {
    background-color: var(--white);
}

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

:root {
    --primary-color: #0f172a;
    --secondary-color: #1e293b;
    --accent-color: #f97316;
    --accent-color-dark: #ea580c;
    --dark-color: #111827;
    --light-color: #f8fafc;
    --muted-color: #e2e8f0;
    --text-color: #1f2937;
    --text-light: #64748b;
    --white: #ffffff;
    --gradient-hero: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(2, 132, 199, 0.8));
    --topbar-height: 48px;
    --shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 20px 40px rgba(15, 23, 42, 0.12);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--dark-color);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.875rem;
    z-index: 1100;
}

.top-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 0.6rem 0;
}

.top-bar-info,
.top-bar-contact {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.top-bar-contact a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: var(--transition);
}

.top-bar-contact a:hover {
    color: var(--white);
}

.icon {
    margin-right: 0.35rem;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: var(--topbar-height);
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: var(--transition);
}

.navbar {
    padding: 1rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.logo h1 {
    font-size: 1.4rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0.2rem;
    letter-spacing: 0.05em;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.75rem;
    align-items: center;
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

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

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

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

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    padding: 0.65rem 1.5rem;
    white-space: nowrap;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--dark-color);
    transition: var(--transition);
    border-radius: 3px;
}

.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);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-hero);
    color: var(--white);
    margin-top: calc(140px + var(--topbar-height));
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 820px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Hero Slider */
.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slider .slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slider .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    filter: contrast(1.1) saturate(1.1);
}

.hero-slider .slide.active {
    opacity: 1;
}

.hero-badge {
    display: inline-flex;
    align-self: center;
    background: rgba(249, 115, 22, 0.15);
    color: var(--white);
    border: 1px solid rgba(249, 115, 22, 0.45);
    border-radius: 999px;
    padding: 0.4rem 1.5rem;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 600;
}

.hero-title {
    font-size: clamp(2.5rem, 4vw + 1rem, 3.8rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
    animation: fadeInUp 1s ease;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    opacity: 0.92;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-highlight {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.hero-highlight div {
    background: rgba(15, 23, 42, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 1.1rem 1.25rem;
    text-align: left;
}

.hero-highlight strong {
    display: block;
    font-size: 1.05rem;
    margin-bottom: 0.35rem;
}

.hero-highlight span {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
}

.btn {
    padding: 0.875rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
    border: 2px solid transparent;
    cursor: pointer;
}

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

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

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

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

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

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

.btn-link {
    background: transparent;
    color: var(--accent-color);
    border: none;
    padding: 0;
}

.btn-link:hover {
    color: var(--accent-color-dark);
    transform: none;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--accent-color);
    font-weight: 600;
    text-decoration: none;
    position: relative;
}

.text-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.text-link span {
    font-size: 1.1rem;
    transition: transform 0.25s ease;
}

.text-link:hover {
    color: var(--accent-color-dark);
}

.text-link:hover::after {
    transform: scaleX(1);
}

.text-link:hover span {
    transform: translateX(3px);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator span {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid var(--white);
    border-radius: 25px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background-color: var(--white);
    border-radius: 50%;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

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

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2.2rem, 2vw + 1.2rem, 2.8rem);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--accent-color);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-top: 1.5rem;
}

/* Stats */
.stats {
    background: var(--white);
    border-bottom: 1px solid var(--muted-color);
    padding: 3.5rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
}

.stat-card {
    background: var(--light-color);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
}

.stat-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-top: 0.35rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* Brands */
.brands {
    background: var(--light-color);
    padding: 3.5rem 0;
    overflow: hidden;
}

.brands-header {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.brands-header span {
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent-color);
    font-weight: 600;
}

.brands-header h3 {
    font-size: clamp(1.6rem, 2vw + 0.5rem, 2rem);
    color: var(--primary-color);
    font-weight: 600;
}

.brands-marquee {
    position: relative;
    overflow: hidden;
}

.brands-track {
    display: flex;
    gap: 1.5rem;
    min-width: 120%;
    animation: marquee 18s linear infinite;
}

.brands-track:hover {
    animation-play-state: paused;
}

.brand-card {
    flex: 0 0 auto;
    min-width: 140px;
    padding: 1rem 1.5rem;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.3);
    background: var(--white);
    box-shadow: var(--shadow);
    text-align: center;
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* About Section */
.about {
    background-color: var(--light-color);
}

.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    align-items: stretch;
}

.about-text h3 {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

.about-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    margin-bottom: 2rem;
}

.about-list li {
    color: var(--text-light);
    padding-left: 1.5rem;
    position: relative;
}

.about-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent-color);
}

.about-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.about-media {
    display: flex;
    align-items: stretch;
}

.about-media-card {
    background: var(--white);
    border-radius: 18px;
    padding: 2rem;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.08);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.about-media-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(249, 115, 22, 0.12), transparent 55%);
    pointer-events: none;
}

.about-media-card h4 {
    font-size: 1.4rem;
    color: var(--primary-color);
}

.about-media-card p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.about-media-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    color: var(--text-light);
}

.about-media-card ul li {
    position: relative;
    padding-left: 1.6rem;
}

.about-media-card ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.badge {
    align-self: flex-start;
    background: rgba(15, 23, 42, 0.08);
    color: var(--primary-color);
    border-radius: 999px;
    padding: 0.3rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: left;
    border: 1px solid rgba(148, 163, 184, 0.2);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: rgba(249, 115, 22, 0.15);
    color: var(--accent-color);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
}

.feature-item h4 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.feature-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Services Section */
.services {
    background-color: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--light-color);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: left;
    transition: var(--transition);
    border: 1px solid rgba(148, 163, 184, 0.2);
    opacity: 0;
    transform: translateY(30px);
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 0.6s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(15, 23, 42, 0.2);
}

.service-icon {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Process */
.process {
    background: var(--light-color);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.process-step {
    background: var(--white);
    border-radius: 18px;
    padding: 2rem;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
}

.process-step.visible {
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 0.6s ease;
}

.process-step:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 3.5rem;
    font-weight: 700;
    color: rgba(15, 23, 42, 0.08);
}

.process-step h3 {
    font-size: 1.35rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.process-step p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Products Section */
.products {
    background-color: var(--light-color);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
    position: relative;
    padding-top: 2.5rem;
}

.product-card.visible {
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 0.6s ease;
}

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

.product-card::before {
    content: '';
    position: absolute;
    inset: 0;
    height: 110px;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.08), rgba(2, 132, 199, 0.12));
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover::before {
    opacity: 1;
}

.product-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(2, 132, 199, 0.75));
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 18px 35px rgba(15, 23, 42, 0.15);
    margin: 0 auto 1.75rem;
    transform: translateY(-10px);
    position: relative;
    z-index: 1;
}

.product-card:hover .product-icon {
    transform: translateY(-14px);
}

.product-icon span {
    font-size: 2.4rem;
}

.product-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 1.5rem 1.5rem 1rem;
}

.product-card > p {
    color: var(--text-light);
    margin: 0 1.5rem 1.5rem;
    line-height: 1.8;
}

.product-features {
    list-style: none;
    padding: 0 1.5rem 1.5rem;
    margin-top: 1rem;
}

.product-features li {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.product-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Knowledge Section */
.knowledge {
    background-color: var(--white);
}

.knowledge-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.knowledge-item {
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
}

.knowledge-item.visible {
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 0.6s ease;
}

.knowledge-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateX(5px);
}

.knowledge-item h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.knowledge-item p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Testimonials */
.testimonials {
    background: var(--white);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    position: relative;
    background: var(--light-color);
    padding: 2.5rem 2rem;
    border-radius: 18px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(148, 163, 184, 0.25);
    color: var(--text-color);
    font-style: italic;
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition);
}

.testimonial-card .rating {
    font-style: normal;
    letter-spacing: 0.1rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    display: inline-block;
    font-size: 1rem;
}

.testimonial-card.featured {
    border-color: rgba(249, 115, 22, 0.45);
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.12), rgba(15, 23, 42, 0.02));
}

.testimonial-card.visible {
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 0.6s ease;
}

.testimonial-card.is-hidden {
    display: none;
}

.testimonial-card::before {
    content: '“';
    position: absolute;
    top: 0.5rem;
    left: 1.5rem;
    font-size: 4rem;
    color: rgba(249, 115, 22, 0.18);
    font-style: normal;
}

.testimonial-card p {
    line-height: 1.8;
}

.author {
    display: block;
    margin-top: 1.5rem;
    font-weight: 600;
    font-style: normal;
    color: var(--accent-color);
}

.testimonial-toggle-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
}

.testimonial-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Insights */
.insights {
    background: var(--light-color);
}

.insights-wrapper {
    display: grid;
    grid-template-columns: minmax(280px, 1.1fr) minmax(320px, 1.4fr);
    gap: 2.5rem;
    align-items: center;
}

.insights-intro {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.section-kicker {
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent-color);
    font-size: 0.85rem;
    font-weight: 600;
}

.insights-intro h2 {
    font-size: clamp(2.1rem, 3vw + 1rem, 2.6rem);
    color: var(--primary-color);
    line-height: 1.25;
}

.insights-intro p {
    color: var(--text-light);
    line-height: 1.8;
}

.insights-grid {
    display: grid;
    gap: 1.5rem;
}

.insight-card {
    background: var(--white);
    border-radius: 18px;
    padding: 1.75rem;
    box-shadow: var(--shadow);
    border: 1px solid rgba(148, 163, 184, 0.3);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    opacity: 0;
    transform: translateY(30px);
}

.insight-card.visible {
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 0.6s ease;
}

.insight-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: var(--text-light);
}

.insight-tag {
    background: rgba(249, 115, 22, 0.15);
    color: var(--accent-color);
    padding: 0.2rem 0.75rem;
    border-radius: 999px;
    font-weight: 600;
}

.insight-card h3 {
    font-size: 1.35rem;
    color: var(--primary-color);
    line-height: 1.4;
}

.insight-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.insight-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: var(--transition);
}

.insight-link:hover {
    color: var(--accent-color-dark);
    gap: 0.5rem;
}

/* FAQ */
.faq {
    background: var(--light-color);
}

.faq-grid {
    display: grid;
    grid-template-columns: minmax(320px, 2fr) minmax(260px, 1fr);
    gap: 2.5rem;
    align-items: start;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border-radius: 16px;
    background: var(--white);
    border: 1px solid rgba(148, 163, 184, 0.3);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: transparent;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(15, 23, 42, 0.04);
}

.faq-icon {
    font-size: 1.4rem;
    transition: var(--transition);
    color: var(--accent-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 1.5rem;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.75;
    padding-bottom: 1.25rem;
}

.faq-item.active .faq-answer {
    max-height: 280px;
    padding: 0 1.5rem 1.25rem;
}

.faq-item.active .faq-icon {
    transform: none;
}

.faq-aside-card {
    background: var(--white);
    border-radius: 18px;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(15, 23, 42, 0.1);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-aside-card h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
}

.faq-aside-card p {
    color: var(--text-light);
    line-height: 1.75;
}

.faq-aside-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    color: var(--text-light);
}

.faq-aside-card ul li {
    position: relative;
    padding-left: 1.5rem;
}

.faq-aside-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.badge.accent {
    background: rgba(249, 115, 22, 0.15);
    color: var(--accent-color);
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(30, 64, 175, 0.85));
    color: var(--white);
    padding: 4rem 0;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-inner h2 {
    font-size: clamp(2rem, 2vw + 1rem, 2.6rem);
    margin-bottom: 1rem;
}

.cta-inner p {
    color: rgba(255, 255, 255, 0.85);
    max-width: 540px;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Gallery */
.gallery {
    background-color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.gallery-item {
    position: relative;
    display: block;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform .4s ease, filter .4s ease;
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(0,0,0,.35));
    opacity: 0;
    transition: opacity .3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
    filter: brightness(0.95);
}

.gallery-item:hover::after { opacity: 1; }

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    display: none;
}

.lightbox.open { display: block; }

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.6);
}

.lightbox-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--dark-color);
    padding: 0.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    max-width: min(90vw, 1000px);
    max-height: 85vh;
}

.lightbox-content img {
    width: 100%;
    height: auto;
    max-height: 80vh;
    display: block;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: -14px;
    right: -14px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--accent-color);
    color: var(--white);
    border: none;
    font-size: 22px;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
}

/* Contact Section */
.contact {
    background-color: var(--light-color);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-icon {
    font-size: 2rem;
    min-width: 50px;
}

.contact-details h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--text-light);
    line-height: 1.8;
}

.contact-map {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: minmax(320px, 1.4fr) minmax(260px, 1fr);
    gap: 2rem;
    align-items: stretch;
}

.map-card {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(148, 163, 184, 0.4);
}

.map-card iframe {
    display: block;
    width: 100%;
    min-height: 320px;
}

.map-info {
    background: var(--white);
    border-radius: 18px;
    padding: 2rem;
    box-shadow: var(--shadow);
    border: 1px solid rgba(148, 163, 184, 0.3);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.map-info h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
}

.map-info p {
    color: var(--text-light);
}

.map-info ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    color: var(--text-light);
}

.map-info ul li strong {
    color: var(--primary-color);
}

.contact-form-wrapper {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

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

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

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

.form-group input,
.form-group textarea {
    padding: 0.875rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(15, 23, 42, 0.12);
}

.form-group textarea {
    resize: vertical;
}

/* Floating Contact */
.floating-contact {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    z-index: 1200;
}

.floating-button {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1.1rem;
    border-radius: 999px;
    background: var(--white);
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(148, 163, 184, 0.4);
    transition: var(--transition);
}

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

.floating-button.whatsapp {
    background: #22c55e;
    color: #ffffff;
    border-color: transparent;
}

.floating-button.phone {
    background: var(--accent-color);
    color: #ffffff;
    border-color: transparent;
}

.floating-icon {
    font-size: 1.2rem;
}

.floating-text {
    white-space: nowrap;
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--white);
    padding-left: 5px;
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    :root {
        --topbar-height: 96px;
    }

    .top-bar-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .top-bar-info,
    .top-bar-contact {
        gap: 0.75rem;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: calc(var(--topbar-height) + 70px);
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
        padding: 2.5rem 0;
        gap: 1rem;
        z-index: 999;
    }

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

    .nav-menu li {
        margin: 0.5rem 0;
    }

    .nav-menu-cta {
        display: block;
        padding-top: 0.5rem;
    }

    .nav-menu-cta .btn {
        width: min(220px, 80%);
    }

    .nav-cta {
        display: none;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-highlight {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        text-align: center;
    }

    .brands-header {
        text-align: center;
    }

    .brands-track {
        animation-duration: 22s;
    }

    .insights-wrapper {
        grid-template-columns: 1fr;
    }

    .insights-intro {
        order: 2;
    }

    .insights-grid {
        order: 1;
    }

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

    .faq-aside-card {
        position: relative;
        order: -1;
    }

    .contact-map {
        grid-template-columns: 1fr;
    }

    .floating-contact {
        bottom: 16px;
        right: 16px;
    }

    .features,
    .services-grid,
    .products-grid,
    .knowledge-content,
    .process-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .container {
        padding: 0 15px;
    }

    section {
        padding: 3rem 0;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .floating-contact {
        right: 12px;
    }

    .floating-button {
        padding: 0.75rem;
    }

    .floating-text {
        display: none;
    }
}


