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

:root {
    --accent-color: #3B82F6;
    --accent-hover: #2563EB;
    --accent-light: #DBEAFE;
    --text-color: #1E293B;
    --text-secondary: #64748B;
    --text-light: #94A3B8;
    --bg-white: #FFFFFF;
    --bg-light: #F8FAFC;
    --bg-gray: #F1F5F9;
    --border-color: #E2E8F0;
    --border-light: #F1F5F9;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-color);
    line-height: 1.7;
    background-color: var(--bg-white);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Header */
header {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid var(--border-light);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 24px;
}

.logo{
    font-family: 'Bruno Ace', cursive;
}

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

.logo h1{
    font-family: 'Bruno Ace', cursive;
    font-size: 3rem;
    color: var(--accent-color);
    font-weight: 600;
    letter-spacing: -0.5px;
}

nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

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

nav a:hover::after {
    width: 100%;
}

.cta-button {
    padding: 0.75rem 1.5rem;
    background-color: var(--accent-color);
    color: var(--bg-white);
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.cta-button::after {
    display: none;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 7rem 0;
    min-height: 72vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #0F172A;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transform: translate3d(0, 0, 0) scale(1.003);
    backface-visibility: hidden;
    will-change: transform;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(15, 23, 42, 0.12) 10%, rgba(15, 23, 42, 0.06) 55%, rgba(15, 23, 42, 0.1) 100%);
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    display: block;
    max-width: 760px;
    align-items: center;
    margin: 0 auto;
    text-align: center;
}

.hero-text {
    animation: fadeInUp 0.8s ease;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -1px;
    color: #FFFFFF;
    text-shadow: 0 14px 35px rgba(2, 6, 23, 0.45);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(241, 245, 249, 0.94);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-actions .btn-primary,
.hero-actions .btn-secondary {
    display: inline-flex;
    align-items: center;
    width: 220px;
    justify-content: center;
}

.hero-actions .btn-primary {
    background-color: rgba(15, 23, 42, 0.38);
    color: #FFFFFF;
    border: 2px solid rgba(255, 255, 255, 0.78);
    backdrop-filter: none;
}

.hero-actions .btn-primary:hover {
    background-color: rgba(15, 23, 42, 0.58);
    border-color: #FFFFFF;
}

.hero-actions .btn-secondary {
    background-color: var(--accent-color);
    color: var(--bg-white);
    border: 2px solid var(--accent-color);
}

.hero-actions .btn-secondary:hover {
    background-color: var(--accent-hover);
    border-color: var(--accent-hover);
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

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

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

.btn-secondary {
    background-color: var(--bg-white);
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

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

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

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

/* Features Section */
.features {
    padding: 6rem 0;
    background-color: var(--bg-white);
}

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

.section-label {
    display: inline-block;
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    padding: 0.5rem 1.25rem;
    background: var(--accent-light);
    border-radius: 50px;
}

.section-header h2 {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-color);
    letter-spacing: -1px;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

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

.feature-card {
    background: var(--bg-white);
    padding: 0 0 1.25rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    text-align: left;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.feature-card .feature-icon {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    margin-bottom: 1rem;
    display: flex;
    border-radius: 0;
    overflow: hidden;
    border: none;
    background: #D9E2EC;
}

.feature-card .feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.feature-card .feature-icon h3 {
    position: absolute;
    left: 50%;
    bottom: 0.85rem;
    transform: translateX(-50%);
    width: calc(100% - 1.5rem);
    margin: 0;
    padding: 0.65rem 0.75rem;
    border-radius: 10px;
    text-align: center;
    font-size: 1.05rem;
    font-weight: 700;
    color: #FFFFFF;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0) 0%, rgba(15, 23, 42, 0.86) 100%);
}

.feature-card p {
    padding: 0 1.25rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Products Section */
.products {
    padding: 6rem 0;
    background: var(--bg-light);
}

.product-categories {
    margin-top: 3rem;
}

.segment-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.segment-tab {
    padding: 0.8rem 1.6rem;
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 999px;
    color: var(--text-secondary);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.segment-tab:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.segment-tab.active {
    background-color: var(--text-color);
    color: var(--bg-white);
    border-color: var(--text-color);
}

.products-slider-controls {
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.slider-arrow {
    width: 42px;
    height: 42px;
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-secondary);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.slider-arrow:hover:not(:disabled) {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.slider-arrow:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.products-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 3rem) / 4);
    gap: 1rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 3rem 0;
}

.products-grid::-webkit-scrollbar {
    display: none;
}

.product-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-color);
}

.product-image {
    width: 100%;
    height: 200px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

.product-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-color);
    font-weight: 700;
    line-height: 1.3;
}

.product-code {
    color: var(--text-light);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    display: inline-block;
    width: fit-content;
    padding: 0.375rem 0.875rem;
    background: var(--bg-gray);
    border-radius: 6px;
}

.product-features {
    list-style: none;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.product-features li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-features li:last-child {
    border-bottom: none;
}

.product-features .feature-label {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
}

.product-features .feature-value {
    color: var(--text-color);
    font-weight: 700;
    font-size: 0.95rem;
    text-align: right;
}

.product-card .view-details {
    margin-top: auto;
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: var(--bg-white);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    width: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
    text-decoration: none;
    text-align: center;
    display: block;
}

.product-card .view-details::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.product-card .view-details:hover::before {
    left: 100%;
}

.product-card .view-details:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.product-card .view-details:active {
    transform: translateY(0);
}

.product-detail-section {
    padding: 4rem 0 6rem;
    background: var(--bg-light);
    min-height: calc(100vh - 120px);
}

.back-to-products {
    display: inline-block;
    margin-bottom: 1.5rem;
    text-decoration: none;
    color: var(--accent-color);
    font-weight: 600;
}

.back-to-products:hover {
    color: var(--accent-hover);
}

.product-detail-content {
    background-color: var(--bg-white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.product-detail-layout {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.product-media-block {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.product-main-media {
    border: 1px solid var(--border-color);
    border-radius: 16px;
    background: var(--bg-light);
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.product-main-media img,
.product-main-media video {
    width: 100%;
    max-height: 460px;
    object-fit: contain;
    border-radius: 12px;
}

.product-media-thumbs {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.75rem;
    overflow-x: auto;
    scrollbar-width: none;
}

.product-media-thumbs::-webkit-scrollbar {
    display: none;
}

.media-thumb {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    background: var(--bg-white);
    cursor: pointer;
    flex: 0 0 calc((100% - 3rem) / 5);
    transition: all 0.2s ease;
}

.media-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.media-thumb.active {
    border-color: var(--accent-color);
}

.media-video-thumb {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-weight: 700;
}

.product-summary-block {
    position: sticky;
    top: 1rem;
}

.product-detail-content h2 {
    color: var(--text-color);
    margin-bottom: 0.75rem;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.product-detail-content h3 {
    color: var(--text-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--border-color);
}

.product-key-specs {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
}

.product-key-specs li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.9rem 1rem;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-light);
}

.product-key-specs li:last-child {
    border-bottom: none;
}

.product-key-specs span {
    color: var(--text-secondary);
}

.product-key-specs strong {
    color: var(--text-color);
}

.product-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.product-actions .btn-primary,
.product-actions .btn-secondary {
    padding: 0.9rem 1.4rem;
    border-radius: 10px;
    font-size: 0.95rem;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    text-decoration: none;
    width: 100%;
}

.product-actions .btn-outline {
    padding: 0.9rem 1.4rem;
    border-radius: 10px;
    font-size: 0.95rem;
    border: 2px solid var(--border-color);
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    background: var(--bg-white);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    width: 100%;
}

.product-actions .btn-outline:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
    background: var(--accent-light);
}

.product-actions .btn-icon {
    width: 1.5rem;
    height: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.product-actions .btn-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.product-actions .open-quote-form {
    border: none;
}

.product-actions .btn-whatsapp {
    background: #25D366;
    color: #FFFFFF;
}

.product-actions .btn-whatsapp:hover {
    background: #1EBE57;
    color: #FFFFFF;
}

.quote-actions .btn-whatsapp {
    background: #25D366;
    color: #FFFFFF;
}

.quote-actions .btn-whatsapp:hover {
    background: #1EBE57;
    color: #FFFFFF;
}

.product-actions .btn-pdf {
    border-color: #D32F2F;
    color: #D32F2F;
    background: #FFF5F5;
}

.product-actions .btn-pdf:hover {
    border-color: #B71C1C;
    color: #B71C1C;
    background: #FFECEC;
}

.product-detail-sections {
    margin-top: 2rem;
}

.quote-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 3000;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(3px);
    padding: 1.5rem;
}

.quote-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote-modal-content {
    width: 100%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    background: var(--bg-white);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-xl);
}

.quote-modal-content h2 {
    margin-bottom: 1.25rem;
}

.quote-hidden {
    display: none !important;
}

.quote-product-preview {
    display: none;
    align-items: center;
    gap: 0.9rem;
    margin-bottom: 1.25rem;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    background: var(--bg-light);
}

.quote-product-preview-image {
    width: 64px;
    height: 64px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote-product-preview-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.quote-product-preview-title {
    font-weight: 700;
    color: var(--text-color);
    line-height: 1.3;
}

.quote-product-preview-code {
    margin-top: 0.25rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 600;
}

.quote-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: var(--bg-gray);
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
}

.quote-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.quote-form label {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    margin-bottom: 1rem;
}

.quote-form span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.quote-form input,
.quote-form textarea {
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 0.8rem 0.9rem;
    font: inherit;
}

.quote-form input:focus,
.quote-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px var(--accent-light);
}

.quote-robot-control {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    align-items: end;
}

.quote-checkbox {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    gap: 0.5rem !important;
    margin-bottom: 0;
}

.quote-checkbox input {
    width: 18px;
    height: 18px;
}

.quote-actions {
    margin-top: 1.25rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.quote-actions .btn-primary,
.quote-actions .btn-secondary {
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    width: 100%;
}

.quote-actions .btn-icon {
    width: 1.5rem;
    height: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.quote-actions .btn-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.product-actions .btn-whatsapp .btn-icon svg,
.quote-actions .btn-whatsapp .btn-icon svg {
    color: #FFFFFF;
}

.product-not-found {
    text-align: center;
}

.product-not-found p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

/* Services Section */
.process {
    padding: 6rem 0;
    background: var(--bg-light);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
}

.process-card {
    position: relative;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    box-shadow: var(--shadow);
    padding: 1.5rem 1.25rem;
    text-align: center;
    transition: all 0.3s ease;
}

.process-card:hover {
    border-color: var(--accent-color);
    box-shadow: var(--shadow-lg);
}

.process-step {
    position: absolute;
    top: 0.85rem;
    left: 0.85rem;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--accent-color);
    color: var(--bg-white);
    font-weight: 800;
    font-size: 1.45rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px -12px rgba(59, 130, 246, 0.85);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.process-illustration {
    width: 88px;
    height: 88px;
    margin: 2rem auto 1rem;
    border-radius: 50%;
    background: #FFF1F2;
    color: #E11D2A;
    font-size: 2.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

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

/* References Section */
.references {
    padding: 6rem 0;
    background: var(--bg-white);
}

.references-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.reference-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    box-shadow: var(--shadow);
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.reference-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.reference-card h3 {
    color: var(--text-color);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

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

/* Services Section */
.services {
    padding: 6rem 0;
    background-color: var(--bg-white);
}

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

.service-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
    background: var(--bg-white);
}

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

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

/* About Section */
.about {
    padding: 6rem 0;
    background: var(--bg-white);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-text {
    animation: fadeInUp 0.8s ease;
}

.about-text .section-label {
    margin-bottom: 1rem;
}

.about-text h2 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    letter-spacing: -1px;
}

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


/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal-content {
    background-color: var(--bg-white);
    padding: 3rem;
    border-radius: 20px;
    width: 100%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideDown 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-color);
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE ve Edge */
}

.modal-content::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideDown {
    from {
        transform: translateY(-30px) scale(0.95);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.close {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    font-size: 2rem;
    font-weight: 300;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg-gray);
    line-height: 1;
}

.close:hover {
    color: var(--text-color);
    background: var(--border-color);
    transform: rotate(90deg);
}

.modal-product-image {
    width: 100%;
    height: 300px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
}

.modal-product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.modal-body h2 {
    color: var(--text-color);
    margin-bottom: 0.75rem;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.modal-body .product-code {
    color: var(--text-light);
    margin-bottom: 2.5rem;
    font-size: 1rem;
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--bg-gray);
    border-radius: 8px;
    font-weight: 500;
}

.modal-body h3 {
    color: var(--text-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--border-color);
}

/* Ürün açıklaması (HTML ve ek görseller destekler) */
.product-description {
    margin-top: 2rem;
}

.product-description h3 {
    margin-top: 0;
}

.product-description-content {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1rem;
}

.product-description-content p {
    margin-bottom: 1rem;
}

.product-description-content p:last-child {
    margin-bottom: 0;
}

.product-description-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1rem 0;
    display: block;
}

.product-description-content ul,
.product-description-content ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.product-description-content h4,
.product-description-content h5 {
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.specifications-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-top: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.specifications-table th,
.specifications-table td {
    padding: 1.25rem 1.5rem;
    text-align: left;
}

.specifications-table th {
    background: var(--bg-gray);
    font-weight: 700;
    color: var(--text-color);
    width: 40%;
    font-size: 0.95rem;
    border-right: 1px solid var(--border-color);
}

.specifications-table td {
    color: var(--text-secondary);
    font-weight: 500;
    background: var(--bg-white);
}

.specifications-table tr:not(:last-child) th,
.specifications-table tr:not(:last-child) td {
    border-bottom: 1px solid var(--border-light);
}

.specifications-table tr:hover td {
    background: var(--bg-light);
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--text-color) 0%, #0F172A 100%);
    color: var(--bg-white);
    padding: 4rem 0 2rem;
    position: relative;
}

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

.footer-section h3 {
    margin-bottom: 1.25rem;
    color: var(--bg-white);
    font-size: 1.25rem;
    font-weight: 500;
}

.footer-logo {
    font-family: 'Bruno Ace', cursive;
    font-weight: 500;
    font-size: 1.5rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: 0.95rem;
}

.contact-info {
    font-style: normal;
}

.contact-item {
    margin-bottom: 1rem;
}

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

.contact-label {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
}

.contact-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-cta {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background-color: var(--accent-color);
    color: var(--bg-white);
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-cta:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
}

.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);
    font-size: 0.9rem;
}

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

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

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

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

/* Responsive */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-header h2 {
        font-size: 2.25rem;
    }

    .product-detail-layout {
        grid-template-columns: 1fr;
    }

    .product-summary-block {
        position: static;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem 24px;
    }

    nav {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    nav ul {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .cta-button {
        width: 100%;
        text-align: center;
    }

    .hero {
        padding: 3rem 0;
        min-height: 65vh;
    }

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

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

    .hero-actions {
        flex-direction: column;
        width: min(100%, 340px);
        margin: 0 auto;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .hero-actions .btn-primary,
    .hero-actions .btn-secondary {
        width: 100%;
    }

    .features,
    .process,
    .references,
    .products,
    .services,
    .about {
        padding: 4rem 0;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-description {
        font-size: 1rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
    }

    .products-grid {
        grid-auto-columns: calc((100% - 1rem) / 2);
        gap: 1rem;
    }

    .process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
    }

    .references-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
    }

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

    .product-card {
        padding: 2rem;
    }

    .modal.show {
        padding: 1rem;
    }

    .modal-content {
        padding: 2rem 1.5rem;
        border-radius: 16px;
    }

    .product-detail-content {
        padding: 2rem 1.5rem;
        border-radius: 16px;
    }

    .product-main-media {
        min-height: 280px;
    }

    .quote-grid,
    .quote-robot-control {
        grid-template-columns: 1fr;
    }

    .product-actions .btn-primary,
    .product-actions .btn-secondary,
    .product-actions .btn-outline {
        width: 100%;
        text-align: center;
    }

    .specifications-table {
        font-size: 0.875rem;
    }

    .specifications-table th,
    .specifications-table td {
        padding: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

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

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

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

    .features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.75rem;
    }

    .process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .process-card h3 {
        font-size: 1.2rem;
    }

    .process-card p {
        font-size: 0.9rem;
    }

    .references-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.75rem;
    }

    .reference-card {
        padding: 1rem;
    }

    .reference-card h3 {
        font-size: 1.05rem;
    }

    .reference-card p {
        font-size: 0.9rem;
    }

    .feature-card {
        padding: 0 0 1rem;
    }

    .feature-card .feature-icon h3 {
        width: calc(100% - 1rem);
        bottom: 0.65rem;
        font-size: 0.95rem;
        padding: 0.55rem 0.6rem;
    }

    .feature-card p {
        padding: 0 1rem;
        font-size: 0.9rem;
    }

    .product-card {
        padding: 1.5rem;
    }

    .modal-content {
        padding: 1.5rem;
    }

    .product-detail-content {
        padding: 1.5rem;
    }

    .products-grid {
        grid-auto-columns: 100%;
    }

    .quote-modal {
        padding: 0.75rem;
    }

    .quote-modal-content {
        padding: 1.5rem;
    }

    .quote-modal-content h2 {
        font-size: 1.25rem;
    }

    .quote-product-preview-title {
        font-size: 0.95rem;
    }

    .quote-product-preview-code {
        font-size: 0.8rem;
    }

    .quote-form span {
        font-size: 0.8rem;
    }

    .quote-form input,
    .quote-form textarea {
        font-size: 0.9rem;
    }

    .quote-actions .btn-primary,
    .quote-actions .btn-secondary {
        font-size: 0.85rem;
        padding: 0.75rem 0.85rem;
    }
}
