/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: #f8fafc;
    color: #0f172a;
    line-height: 1.6;
    padding-top: 72px;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    background: rgba(15, 23, 42, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 12px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(15, 23, 42, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    border-radius: 10px;
    font-weight: 800;
    font-size: 1.1rem;
    color: #fff;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.7);
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.nav-links a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.nav-links a.active {
    color: #fff;
    background: rgba(37, 99, 235, 0.2);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    color: #fff !important;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(37, 99, 235, 0.4);
    color: #fff !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 2.5px;
    background: #fff;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background: #2563eb;
    color: #fff;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.4);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    transform: translateY(-2px);
}

.btn-dark {
    background: #0f172a;
    color: #fff;
}

.btn-dark:hover {
    background: #1e293b;
    transform: translateY(-2px);
}

.btn-light {
    background: #fff;
    color: #0f172a;
}

.btn-light:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
}

/* ===== EYEBROW ===== */
.eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #2563eb;
    background: #dbeafe;
    padding: 4px 16px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.eyebrow i {
    margin-right: 6px;
}

.eyebrow.dark {
    background: #e2e8f0;
    color: #1e293b;
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #fff;
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero h1 span {
    background: linear-gradient(135deg, #60a5fa, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero .lead {
    font-size: 1.2rem;
    color: #94a3b8;
    max-width: 540px;
    margin-bottom: 24px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}

.hero-trust {
    display: flex;
    gap: 32px;
}

.hero-trust span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #94a3b8;
}

.hero-trust i {
    color: #34d399;
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.code-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border-radius: 24px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
}

.code-window {
    background: #0f172a;
    border-radius: 12px;
    padding: 16px;
    border: 1px solid #1e293b;
}

.window-controls {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.window-controls span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.window-controls span:nth-child(1) {
    background: #ef4444;
}
.window-controls span:nth-child(2) {
    background: #eab308;
}
.window-controls span:nth-child(3) {
    background: #22c55e;
}

.code-content {
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: #94a3b8;
    line-height: 2;
}

.code-content .tag {
    color: #60a5fa;
}

.code-content .highlight {
    color: #f472b6;
}

.code-content .highlight2 {
    color: #facc15;
}

.code-content .indent {
    padding-left: 24px;
}

.code-content .indent2 {
    padding-left: 48px;
}

.code-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.code-badge strong {
    font-size: 1.5rem;
    color: #60a5fa;
}

/* ===== SECTION HEADER ===== */
.section-header {
    margin-bottom: 48px;
}

.section-header h2 {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 12px;
}

.section-header p {
    color: #64748b;
    max-width: 560px;
    font-size: 1.1rem;
}

.section-header.text-center p {
    margin: 0 auto;
}

.section-header.text-center {
    text-align: center;
}

/* ===== SERVICES ===== */
.services-preview {
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: #2563eb;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: #dbeafe;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #2563eb;
    margin-bottom: 16px;
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.service-card p {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.service-card a {
    color: #2563eb;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.service-card a:hover {
    gap: 12px;
}

/* ===== PRODUCTS ===== */
.featured-products {
    padding: 80px 0;
    background: #f1f5f9;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.product-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-6px);
    border-color: #2563eb;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.product-image {
    position: relative;
    aspect-ratio: 16/9;
    background: #f1f5f9;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #2563eb;
    color: #fff;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.product-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-body h4 {
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.product-body p {
    color: #64748b;
    font-size: 0.95rem;
    flex: 1;
    margin-bottom: 12px;
}

.product-body a {
    color: #2563eb;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.product-body a:hover {
    gap: 12px;
}

.featured-products .section-header {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
}

.featured-products .section-header p {
    margin-bottom: 0;
}

/* ===== ABOUT PREVIEW ===== */
.about-preview {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.about-content h2 {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 16px;
}

.about-content .lead {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 24px;
}

.check-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #334155;
}

.check-list i {
    color: #2563eb;
    font-size: 1.2rem;
}

.about-panel {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    border: 1px solid #e2e8f0;
}

.about-number {
    font-size: 3rem;
    font-weight: 800;
    color: #dbeafe;
    margin-bottom: 8px;
}

.about-panel h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.about-panel p {
    color: #64748b;
    margin-bottom: 24px;
}

.about-steps {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.about-steps span {
    flex: 1;
    height: 2px;
    background: #e2e8f0;
    min-width: 20px;
}

.about-steps b {
    font-size: 0.9rem;
    color: #1e293b;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 60px 0;
}

.cta-box {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    border-radius: 32px;
    padding: 60px 48px;
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.cta-box h2 {
    font-size: clamp(1.6rem, 2.5vw, 2.4rem);
    font-weight: 700;
    margin-bottom: 8px;
}

.cta-box p {
    color: #94a3b8;
}

/* ===== FOOTER ===== */
.footer {
    background: #0f172a;
    color: #e2e8f0;
    padding: 60px 0 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px 32px;
}

.footer-brand p {
    color: #94a3b8;
    max-width: 320px;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 12px 0 16px;
}

.footer h6 {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #94a3b8;
    margin-bottom: 16px;
}

.footer a {
    display: block;
    color: #cbd5e1;
    padding: 4px 0;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.footer a:hover {
    color: #60a5fa;
}

.footer p {
    color: #cbd5e1;
    margin-bottom: 8px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer p i {
    color: #64748b;
    width: 18px;
    text-align: center;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: #94a3b8;
    transition: all 0.25s ease;
    font-size: 1.1rem;
    padding: 0;
}

.social-links a:hover {
    background: #2563eb;
    color: #fff;
    transform: translateY(-2px);
}

.footer hr {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin: 32px 0 20px;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    color: #64748b;
}

.footer-bottom i.fa-heart {
    color: #ef4444;
}

/* ===== PAGE HERO ===== */
.page-hero {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: #fff;
    padding: 60px 0 80px;
}

.page-hero h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    margin-bottom: 8px;
}

.page-hero p {
    color: #94a3b8;
    font-size: 1.1rem;
    max-width: 540px;
}

/* ===== PRODUCTS PAGE ===== */
.products-page {
    padding: 40px 0 80px;
}

.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 16px 0;
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 24px;
}

.filter-btn {
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #64748b;
    transition: all 0.2s ease;
    background: #f1f5f9;
    border: none;
    cursor: pointer;
}

.filter-btn:hover {
    background: #dbeafe;
    color: #2563eb;
}

.filter-btn.active {
    background: #2563eb;
    color: #fff;
}

/* ===== PRODUCT DETAIL ===== */
.product-detail {
    padding: 40px 0 60px;
    background: #fff;
    border-bottom: 1px solid #e2e8f0;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #64748b;
    font-weight: 500;
    transition: color 0.2s;
    margin-bottom: 24px;
}

.back-link:hover {
    color: #2563eb;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-top: 16px;
}

.detail-image {
    border-radius: 24px;
    overflow: hidden;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
}

.detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

.detail-content h1 {
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 12px;
}

.detail-content .lead {
    font-size: 1.2rem;
    color: #475569;
    max-width: 540px;
    margin-bottom: 24px;
}

.detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.detail-sidebar {
    background: #f8fafc;
    border-radius: 20px;
    padding: 24px;
    border: 1px solid #e2e8f0;
}

.detail-sidebar h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.detail-sidebar .info-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #e2e8f0;
}

.detail-sidebar .info-row:last-child {
    border-bottom: none;
}

.detail-sidebar .info-row span {
    color: #64748b;
}

.detail-sidebar .info-row a {
    color: #2563eb;
}

/* ===== RELATED PRODUCTS ===== */
.related-products {
    padding: 40px 0 80px;
    background: #f8fafc;
}

.related-products h2 {
    font-size: clamp(1.5rem, 2vw, 2rem);
    font-weight: 700;
    margin-bottom: 24px;
}

/* ===== SERVICES FULL ===== */
.services-full {
    padding: 60px 0 80px;
}

.services-grid-full {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card-large {
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.service-card-large:hover {
    transform: translateY(-6px);
    border-color: #2563eb;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.service-card-large ul {
    margin-top: 12px;
    color: #64748b;
    font-size: 0.95rem;
}

.service-card-large ul li {
    padding: 4px 0;
    padding-left: 20px;
    position: relative;
}

.service-card-large ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #2563eb;
}

/* ===== PROCESS ===== */
.process-section {
    padding: 80px 0;
    background: #f1f5f9;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 32px;
}

.process-step {
    text-align: center;
    padding: 32px 24px;
    background: #fff;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #dbeafe;
    margin-bottom: 8px;
}

.process-step h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.process-step p {
    color: #64748b;
    font-size: 0.95rem;
}

/* ===== CONTACT ===== */
.contact-content {
    padding: 60px 0 80px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.contact-info h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.contact-info > p {
    color: #64748b;
    margin-bottom: 32px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.contact-details > div {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-details > div i {
    width: 40px;
    height: 40px;
    background: #dbeafe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-details > div strong {
    display: block;
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 600;
}

.contact-details > div a,
.contact-details > div span {
    color: #0f172a;
}

.contact-form {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    border: 1px solid #e2e8f0;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 6px;
    color: #1e293b;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    transition: border-color 0.2s;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* ===== ABOUT PAGE ===== */
.about-content {
    padding: 60px 0;
}

.about-content .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.about-content h2 {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 16px;
}

.about-content p {
    color: #475569;
    margin-bottom: 16px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: #f8fafc;
    border-radius: 16px;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #2563eb;
}

.stat-label {
    font-size: 0.9rem;
    color: #64748b;
}

.about-values {
    background: #f8fafc;
    border-radius: 20px;
    padding: 32px;
}

.about-values h3 {
    font-size: 1.3rem;
    margin-bottom: 16px;
}

.about-values ul li {
    padding: 8px 0;
    border-bottom: 1px solid #e2e8f0;
}

.about-values ul li:last-child {
    border-bottom: none;
}

.about-values ul li strong {
    color: #0f172a;
}

/* ===== TEAM ===== */
.team-section {
    padding: 80px 0;
    background: #f1f5f9;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
}

.team-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-6px);
    border-color: #2563eb;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.team-avatar {
    width: 80px;
    height: 80px;
    background: #dbeafe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 2rem;
    color: #2563eb;
}

.team-card h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.team-card span {
    display: block;
    color: #2563eb;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.team-card p {
    color: #64748b;
    font-size: 0.95rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .hero-grid,
    .about-grid,
    .contact-grid,
    .product-detail-grid,
    .about-content .about-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .services-grid,
    .services-grid-full,
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero {
        padding: 60px 0 80px;
    }

    .hero-trust {
        gap: 16px;
        flex-wrap: wrap;
    }

    .cta-box {
        padding: 40px 24px;
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 64px;
    }

    .navbar {
        padding: 8px 0;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        padding: 16px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
        margin-top: 12px;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        width: 100%;
        padding: 10px 16px;
    }

    .hamburger {
        display: flex;
    }

    .services-grid,
    .services-grid-full,
    .products-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 40px 0 60px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .cta-box {
        padding: 32px 20px;
    }

    .contact-form {
        padding: 24px;
    }

    .about-panel {
        padding: 24px;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start !important;
    }

    .featured-products .section-header {
        flex-direction: column;
        align-items: flex-start !important;
    }

    .detail-sidebar {
        padding: 16px;
    }

    .code-content {
        font-size: 0.8rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 16px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-trust {
        flex-direction: column;
        gap: 8px;
    }

    .process-step {
        padding: 20px;
    }

    .contact-details > div {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .filter-bar {
        gap: 4px;
    }

    .filter-btn {
        padding: 6px 14px;
        font-size: 0.8rem;
    }

    .stat-item {
        padding: 12px;
    }

    .stat-number {
        font-size: 1.8rem;
    }
}