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

:root {
    --color-primary: #0a2540;
    --color-primary-dark: #051829;
    --color-primary-light: #1a3a5c;
    --color-accent: #0d6efd;
    --color-accent-dark: #0a58ca;
    --color-whatsapp: #25D366;
    --color-whatsapp-dark: #1ebe57;
    --color-bg: #ffffff;
    --color-bg-alt: #f6f8fb;
    --color-bg-dark: #051829;
    --color-text: #1e293b;
    --color-text-light: #64748b;
    --color-text-lighter: #94a3b8;
    --color-border: #e2e8f0;
    --color-border-light: #f1f5f9;
    --shadow-sm: 0 1px 2px rgba(10, 37, 64, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(10, 37, 64, 0.08), 0 2px 4px -2px rgba(10, 37, 64, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(10, 37, 64, 0.08), 0 4px 6px -4px rgba(10, 37, 64, 0.06);
    --shadow-xl: 0 20px 25px -5px rgba(10, 37, 64, 0.10), 0 8px 10px -6px rgba(10, 37, 64, 0.08);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --container-max: 1200px;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden !important;
    width: 100%;
    max-width: 100% !important;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-bg);
    overflow-x: hidden !important;
    -webkit-font-smoothing: antialiased;
    position: relative;
    width: 100%;
    max-width: 100% !important;
    overscroll-behavior-x: none;
}

main {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden !important;
    position: relative;
}

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
    overflow-x: hidden !important;
    position: relative;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    width: 100%;
    height: auto;
    display: block;
    max-inline-size: 100%;
    object-fit: cover;
}

ul {
    list-style: none;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    text-align: center;
    font-family: inherit;
}

.btn-primary {
    background: var(--color-whatsapp);
    color: #fff;
    border-color: var(--color-whatsapp);
}

.btn-primary:hover {
    background: var(--color-whatsapp-dark);
    border-color: var(--color-whatsapp-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: rgba(255,255,255,0.12);
    color: #fff;
    border-color: rgba(255,255,255,0.35);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.22);
    border-color: rgba(255,255,255,0.55);
}

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

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

.btn-full {
    width: 100%;
    padding: 16px 28px;
    font-size: 16px;
}

.section {
    padding: 72px 0;
    width: 100%;
    max-width: 100% !important;
    overflow-x: hidden !important;
    position: relative;
}

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

.section-header {
    text-align: center;
    margin-bottom: 56px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.section-tag {
    display: inline-block;
    background: rgba(13, 110, 253, 0.10);
    color: var(--color-accent);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.25;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--color-text-light);
    line-height: 1.7;
}

.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border-light);
    box-shadow: var(--shadow-sm);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 19px;
    font-weight: 800;
    color: var(--color-primary);
    flex-shrink: 0;
}

.logo i {
    font-size: 24px;
    color: var(--color-accent);
}

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

.nav {
    display: none;
}

.nav-list {
    display: flex;
    gap: 8px;
}

.nav-list a {
    display: block;
    padding: 8px 16px;
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text);
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
}

.nav-list a:hover {
    color: var(--color-accent);
    background: var(--color-bg-alt);
}

.whatsapp-btn-header {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--color-whatsapp);
    color: #fff;
    padding: 10px 18px;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.whatsapp-btn-header:hover {
    background: var(--color-whatsapp-dark);
    transform: translateY(-1px);
}

.whatsapp-btn-header i {
    font-size: 17px;
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 36px;
    height: 36px;
    justify-content: center;
    align-items: center;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color-primary);
    border-radius: 2px;
    transition: all 0.25s ease;
}

.menu-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav.open {
    display: block;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 16px 20px 24px;
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
}

.nav.open .nav-list {
    flex-direction: column;
    gap: 4px;
}

.nav.open .nav-list a {
    padding: 14px 16px;
    font-size: 16px;
    border-bottom: 1px solid var(--color-border-light);
}

.hero-carousel {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden !important;
    background: var(--color-primary-dark);
}

.carousel-track {
    position: relative;
    min-height: 580px;
    width: 100%;
    max-width: 100%;
    overflow: hidden !important;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 580px;
    opacity: 0;
    transition: opacity 0.8s ease;
    pointer-events: none;
}

.carousel-slide.active {
    opacity: 1;
    pointer-events: auto;
    position: relative;
}

.slide-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(5, 24, 41, 0.88) 0%, rgba(10, 37, 64, 0.78) 50%, rgba(26, 58, 92, 0.70) 100%);
}

.slide-content {
    position: relative;
    z-index: 2;
    min-height: 580px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 40px;
    padding-bottom: 70px;
}

.slide-badge {
    display: inline-block;
    align-self: flex-start;
    background: rgba(37, 211, 102, 0.18);
    border: 1px solid rgba(37, 211, 102, 0.4);
    color: var(--color-whatsapp);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.slide-content h1 {
    font-size: clamp(28px, 6vw, 52px);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 18px;
    max-width: 680px;
}

.slide-content > p {
    font-size: clamp(15px, 2.5vw, 18px);
    color: rgba(255,255,255,0.85);
    line-height: 1.65;
    max-width: 600px;
    margin-bottom: 32px;
}

.slide-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}

.slide-ctas .btn {
    padding: 13px 24px;
    font-size: 15px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hero-feature {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.92);
    background: rgba(255,255,255,0.08);
    padding: 8px 16px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255,255,255,0.15);
}

.hero-feature i {
    color: var(--color-whatsapp);
    font-size: 15px;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    transition: all 0.2s ease;
}

.carousel-btn:hover {
    background: rgba(255,255,255,0.22);
    border-color: rgba(255,255,255,0.45);
}

.carousel-prev {
    left: 24px;
}

.carousel-next {
    right: 24px;
}

.carousel-indicators {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 10px;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.2s ease;
}

.indicator.active {
    background: var(--color-whatsapp);
    width: 28px;
    border-radius: 5px;
}

.about-section {
    background: var(--color-bg);
    overflow-x: clip;
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
    align-items: start;
    justify-items: stretch;
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.about-grid > * {
    min-width: 0;
    max-width: 100%;
}

.about-text {
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
}

.about-lead {
    font-size: 17px;
    color: var(--color-text);
    line-height: 1.75;
    margin-bottom: 36px;
    font-weight: 500;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 40px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.about-stat {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: var(--color-bg-alt);
    padding: 20px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border-light);
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
}

.stat-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: rgba(13, 110, 253, 0.12);
    color: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    flex-shrink: 0;
}

.stat-content {
    min-width: 0;
    overflow-wrap: anywhere;
}

.stat-content h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 2px;
}

.stat-content p {
    font-size: 13px;
    color: var(--color-text-light);
    line-height: 1.4;
}

.about-lists {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
}

.about-list-block h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-list-block h4 i {
    color: var(--color-accent);
}

.about-list-block ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.about-list-block li {
    font-size: 15px;
    color: var(--color-text);
    padding-left: 24px;
    position: relative;
    line-height: 1.55;
}

.about-list-block li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 14px;
    height: 2px;
    background: var(--color-accent);
    border-radius: 2px;
}

.about-image {
    position: relative;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    justify-self: stretch;
}

.about-image-frame {
    position: relative;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--color-border-light);
    background: var(--color-bg-alt);
}

.about-img-main {
    width: 100%;
    height: 100%;
    max-width: 100%;
    min-width: 0;
    object-fit: cover;
    display: block;
    border: 0;
    box-shadow: none;
    border-radius: 0;
}

.about-image-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: auto;
    background: #fff;
    padding: 10px 14px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--color-border-light);
    z-index: 2;
    max-width: calc(100% - 24px);
    box-sizing: border-box;
}

.about-image-badge-text {
    min-width: 0;
    overflow: hidden;
}

.about-image-badge i {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--color-accent), #084298);
    color: #fff;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.about-image-badge strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--color-primary);
}

.about-image-badge span {
    font-size: 13px;
    color: var(--color-text-light);
}

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

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.product-card {
    background: #fff;
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
    max-width: 100%;
}

.product-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(13, 110, 253, 0.25);
}

.product-image-wrapper {
    position: relative;
    aspect-ratio: 1 / 1;
    background: var(--color-bg-alt);
    overflow: hidden;
}

.product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image-wrapper img {
    transform: scale(1.04);
}

.product-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-sm);
}

.product-tag:nth-of-type(2),
.product-image-wrapper .product-tag:nth-child(2) {
    background: linear-gradient(135deg, var(--color-whatsapp), var(--color-whatsapp-dark));
}

.product-info {
    padding: 16px 14px 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.35;
    margin-bottom: 6px;
    min-height: 42px;
}

.product-spec {
    font-size: 12px;
    color: var(--color-text-light);
    line-height: 1.55;
    margin-bottom: 14px;
    flex: 1;
}

.product-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    padding: 10px 12px;
    background: var(--color-primary);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
}

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

.product-btn i {
    font-size: 14px;
}

.products-footer {
    text-align: center;
    margin-top: 48px;
    padding: 28px;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border-light);
    box-shadow: var(--shadow-sm);
}

.products-footer p {
    font-size: 16px;
    color: var(--color-text);
    margin-bottom: 16px;
}

.products-footer strong {
    color: var(--color-primary);
}

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

.factory-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.factory-card {
    background: #fff;
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    max-width: 100%;
}

.factory-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(13, 110, 253, 0.25);
}

.factory-image {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--color-bg-alt);
}

.factory-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.factory-card:hover .factory-image img {
    transform: scale(1.05);
}

.factory-content {
    padding: 22px 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.factory-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    box-shadow: 0 6px 16px rgba(13, 110, 253, 0.25);
}

.factory-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.35;
    margin: 0;
}

.factory-content > p {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.65;
    margin: 0;
}

.process-section {
    background: #fff;
}

.process-steps {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.process-step {
    position: relative;
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-xl);
    padding: 22px 20px 22px 20px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: all 0.3s ease;
    overflow: visible;
    max-width: 100%;
}

.process-step:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: rgba(13, 110, 253, 0.2);
}

.process-number {
    position: absolute;
    top: -12px;
    left: 18px;
    font-size: 12px;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, var(--color-accent), var(--color-primary));
    padding: 4px 10px;
    border-radius: 100px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.3);
    z-index: 2;
}

.process-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-lg);
    background: #fff;
    border: 2px solid var(--color-border-light);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    margin-top: 4px;
    transition: all 0.3s ease;
}

.process-step:hover .process-icon {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

.process-body {
    flex: 1;
    min-width: 0;
}

.process-body h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-primary);
    margin: 0 0 8px 0;
    line-height: 1.35;
}

.process-body p {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.6;
    margin: 0;
}

.process-cta {
    text-align: center;
    margin-top: 36px;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}

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

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.testimonial-card {
    background: #fff;
    border: 1px solid var(--color-border-light);
    padding: 28px 24px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    transition: all 0.25s ease;
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
}

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

.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
    color: #f59e0b;
    font-size: 15px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--color-text);
    line-height: 1.75;
    margin-bottom: 22px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 18px;
    border-top: 1px solid var(--color-border-light);
}

.author-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-accent), var(--color-primary));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
    flex-shrink: 0;
}

.author-info h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 3px;
}

.author-info p {
    font-size: 12px;
    color: var(--color-text-light);
    line-height: 1.45;
}

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

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.contact-info .section-tag {
    display: inline-block;
    margin-bottom: 16px;
}

.contact-info h2 {
    font-size: clamp(26px, 4.5vw, 38px);
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.25;
    margin-bottom: 16px;
}

.contact-subtitle {
    font-size: 16px;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 36px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    background: #fff;
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-lg);
    transition: all 0.2s ease;
}

a.contact-method:hover {
    border-color: var(--color-accent);
    box-shadow: var(--shadow-md);
}

.contact-whatsapp {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.06), rgba(37, 211, 102, 0.02));
    border-color: rgba(37, 211, 102, 0.25);
}

a.contact-whatsapp:hover {
    border-color: var(--color-whatsapp);
}

.contact-method-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    background: var(--color-bg-alt);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.contact-whatsapp .contact-method-icon {
    background: var(--color-whatsapp);
    color: #fff;
}

.contact-method h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 4px;
}

.contact-method p {
    font-size: 14px;
    color: var(--color-text-light);
    font-weight: 500;
}

.contact-arrow {
    margin-left: auto;
    color: var(--color-text-lighter);
    font-size: 14px;
    opacity: 0;
    transition: all 0.2s ease;
}

a.contact-method:hover .contact-arrow {
    opacity: 1;
    color: var(--color-accent);
    transform: translateX(4px);
}

.contact-form-wrap {
    background: #fff;
    padding: 28px 24px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border-light);
    box-shadow: var(--shadow-md);
}

.contact-form-wrap h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 14px;
}

.form-group {
    margin-bottom: 14px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    font-size: 15px;
    font-family: inherit;
    color: var(--color-text);
    background: var(--color-bg-alt);
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-accent);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.10);
}

.form-group textarea {
    resize: vertical;
    min-height: 110px;
}

.form-group select {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 16px;
    padding-right: 42px;
}

.form-note {
    text-align: center;
    margin-top: 14px;
    font-size: 12px;
    color: var(--color-text-light);
}

.footer {
    background: var(--color-primary-dark);
    color: rgba(255,255,255,0.80);
}

.footer-top {
    padding: 56px 0 40px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.logo-footer {
    color: #fff;
    margin-bottom: 18px;
}

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

.logo-footer i {
    color: var(--color-whatsapp);
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.75;
    margin-bottom: 22px;
    color: rgba(255,255,255,0.65);
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-socials a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.85);
    font-size: 17px;
    transition: all 0.2s ease;
}

.footer-socials a:hover {
    background: var(--color-whatsapp);
    color: #fff;
    border-color: var(--color-whatsapp);
    transform: translateY(-2px);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a::before {
    content: '›';
    color: var(--color-whatsapp);
    font-weight: 700;
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(3px);
}

.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    line-height: 1.55;
    color: rgba(255,255,255,0.65);
}

.footer-contact li i {
    color: var(--color-whatsapp);
    font-size: 15px;
    margin-top: 3px;
    flex-shrink: 0;
    width: 18px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 22px 0;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    text-align: center;
    line-height: 1.65;
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--color-whatsapp);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
    transition: all 0.25s ease;
    animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.55);
    background: var(--color-whatsapp-dark);
}

@keyframes whatsappPulse {
    0%, 100% {
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
    }
    50% {
        box-shadow: 0 8px 32px rgba(37, 211, 102, 0.65);
    }
}

@media (min-width: 640px) {
    .section {
        padding: 84px 0;
    }
    .section-header {
        margin-bottom: 60px;
    }
    .carousel-track {
        min-height: 560px;
    }
    .carousel-slide {
        min-height: 560px;
    }
    .slide-content {
        min-height: 560px;
    }
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    .factory-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    .process-steps {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 14px;
        align-items: stretch;
    }
    .process-step {
        flex-direction: column;
        align-items: flex-start;
        padding: 26px 16px 22px;
        gap: 12px;
    }
    .process-number {
        top: -10px;
        left: 14px;
    }
    .process-icon {
        width: 52px;
        height: 52px;
        font-size: 22px;
        margin-top: 0;
    }
    .process-body h3 {
        font-size: 15px;
    }
    .process-body p {
        font-size: 12.5px;
    }
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-lists {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-top {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 48px;
    }
    .hide-mobile {
        display: inline;
    }
}

@media (min-width: 992px) {
    .container {
        padding: 0 24px;
    }
    .menu-toggle {
        display: none;
    }
    .nav {
        display: block;
    }
    .section {
        padding: 100px 0;
    }
    .carousel-track {
        min-height: 680px;
    }
    .carousel-slide {
        min-height: 680px;
    }
    .slide-content {
        min-height: 680px;
        padding-bottom: 80px;
    }
    .slide-ctas .btn {
        padding: 16px 32px;
        font-size: 16px;
    }
    .carousel-btn {
        display: flex;
    }
    .about-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }
    .product-info {
        padding: 20px 18px 22px;
    }
    .product-name {
        font-size: 16px;
        min-height: 44px;
    }
    .product-spec {
        font-size: 13px;
    }
    .product-btn {
        padding: 11px 14px;
        font-size: 14px;
    }
    .factory-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
    }
    .factory-content {
        padding: 28px 24px 28px;
    }
    .factory-content h3 {
        font-size: 20px;
    }
    .factory-content > p {
        font-size: 14.5px;
    }
    .process-steps {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 18px;
        align-items: stretch;
    }
    .process-step {
        flex-direction: column;
        align-items: flex-start;
        padding: 28px 20px 24px;
        gap: 14px;
    }
    .process-number {
        top: -10px;
        left: 16px;
    }
    .process-icon {
        width: 56px;
        height: 56px;
        font-size: 24px;
        margin-top: 0;
    }
    .process-body h3 {
        font-size: 16px;
    }
    .process-body p {
        font-size: 13.5px;
    }
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
    .testimonial-card {
        padding: 36px 32px;
    }
    .testimonial-text {
        font-size: 16px;
    }
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 56px;
        align-items: start;
    }
    .contact-form-wrap {
        padding: 36px 32px;
    }
    .footer-top {
        padding: 72px 0 56px;
        gap: 64px;
    }
    .whatsapp-float {
        bottom: 30px;
        right: 30px;
        width: 64px;
        height: 64px;
        font-size: 30px;
    }
}

@media (min-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 380px) {
    .product-name {
        font-size: 14px;
        min-height: auto;
        margin-bottom: 4px;
    }
    .product-btn {
        font-size: 12px;
        padding: 9px 8px;
    }
    .stat-content h3 {
        font-size: 17px;
    }
    .about-stat {
        padding: 14px;
        gap: 10px;
    }
    .stat-icon {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
}

@media (max-width: 599px) {
    .hide-mobile {
        display: none;
    }

    .about-stats {
        grid-template-columns: minmax(0, 1fr);
        gap: 12px;
    }

    .about-stat {
        padding: 16px;
        gap: 12px;
    }

    .about-image-frame {
        aspect-ratio: 16 / 10;
        max-height: 220px;
    }

    .about-image-badge {
        left: 10px;
        bottom: 10px;
        max-width: calc(100% - 20px);
        padding: 8px 12px;
        gap: 10px;
    }

    .about-image-badge i {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .about-image-badge strong {
        font-size: 13px;
    }

    .about-image-badge span {
        font-size: 11px;
    }
}
