/* ===== Binte — Tasarım Sistemi ===== */
:root {
    --primary: #2C5871;
    --primary-dark: #1F4256;
    --primary-light: #3E7290;
    --accent: #EC8487;
    --accent-dark: #D96B6E;
    --bg: #ffffff;
    --bg-alt: #F5F8FA;
    --bg-dark: #1F4256;
    --text: #17293A;
    --text-muted: #5F7183;
    --border: #E3E9EE;
    --shadow-sm: 0 2px 8px rgba(23, 41, 58, 0.06);
    --shadow-md: 0 8px 24px rgba(23, 41, 58, 0.08);
    --shadow-lg: 0 20px 50px rgba(23, 41, 58, 0.12);
    --radius: 10px;
    --radius-lg: 16px;
    --transition: 0.25s ease;
    --container: 1200px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Tipografi ===== */
h1, h2, h3, h4 { font-weight: 700; line-height: 1.2; color: var(--text); letter-spacing: -0.01em; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1rem; }
.eyebrow {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent);
    margin-bottom: 14px;
}
.accent { color: var(--accent); }

/* ===== Butonlar ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-lg { padding: 16px 38px; font-size: 1rem; }

/* ===== Header ===== */
.site-header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 100;
    transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 78px;
    gap: 24px;
}
.logo img { width: auto; }
.main-nav > ul { display: flex; gap: 4px; }
.main-nav li { position: relative; }
.main-nav li > a {
    display: block;
    padding: 12px 16px;
    font-weight: 500;
    font-size: 0.94rem;
    color: var(--text);
    border-radius: 8px;
    transition: color var(--transition), background var(--transition);
}
.main-nav li > a:hover { color: var(--primary); background: var(--bg-alt); }
.main-nav .has-dropdown > a::after {
    content: '▾';
    margin-left: 6px;
    font-size: 0.7em;
    color: var(--text-muted);
}
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all var(--transition);
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown li > a { padding: 10px 14px; border-radius: 6px; font-size: 0.9rem; }
.header-cta { padding: 10px 22px; font-size: 0.9rem; }
.menu-toggle {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    cursor: pointer;
}
.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
}

/* ===== Hero ===== */
.hero {
    position: relative;
    background: linear-gradient(135deg, #F5F8FA 0%, #E8EFF3 100%);
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
    padding: 80px 0;
}
.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(236, 132, 135, 0.12) 0%, transparent 70%);
    border-radius: 50%;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(44, 88, 113, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}
.hero-slider { width: 100%; position: relative; z-index: 2; }
.slide { display: none; animation: fadeIn 0.6s ease; }
.slide.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}
.hero-content p { font-size: 1.1rem; color: var(--text-muted); margin: 20px 0 32px; max-width: 520px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-visual { display: flex; justify-content: center; }
.visual-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    max-width: 420px;
    position: relative;
    border-top: 4px solid var(--accent);
}
.visual-badge {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    letter-spacing: 0.08em;
    margin-bottom: 18px;
}
.visual-card h3 { margin-bottom: 12px; color: var(--primary); }
.visual-card p { color: var(--text-muted); }
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}
.slider-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(44, 88, 113, 0.3);
    cursor: pointer;
    transition: all var(--transition);
}
.slider-dots button.active { background: var(--primary); width: 30px; border-radius: 5px; }

/* ===== Stats ===== */
.stats { background: var(--primary); color: #fff; padding: 50px 0; }
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}
.stat strong { display: block; font-size: 2.6rem; font-weight: 800; color: var(--accent); margin-bottom: 6px; }
.stat span { font-size: 0.95rem; opacity: 0.9; }

/* ===== Bölüm başlıkları ===== */
.section-head { text-align: center; max-width: 680px; margin: 0 auto 60px; }
.section-head p { color: var(--text-muted); margin-top: 14px; font-size: 1.05rem; }

/* ===== Services ===== */
.services { padding: 100px 0; }
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.service-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-card .icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.service-card .icon svg { width: 26px; height: 26px; }
.service-card h3 { margin-bottom: 12px; color: var(--primary); }
.service-card p { color: var(--text-muted); font-size: 0.96rem; }

/* ===== Solutions ===== */
.solutions { padding: 100px 0; background: var(--bg-alt); }
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.solution-item {
    background: #fff;
    border-radius: var(--radius);
    padding: 30px 26px;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition);
}
.solution-item:hover { transform: translateY(-4px); }
.solution-item h3 {
    color: var(--primary);
    padding-bottom: 14px;
    margin-bottom: 16px;
    border-bottom: 2px solid var(--accent);
    display: inline-block;
}
.solution-item ul li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 10px;
    color: var(--text-muted);
    font-size: 0.94rem;
}
.solution-item ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

/* ===== Why Us ===== */
.why-us { padding: 100px 0; }
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.why-content p { color: var(--text-muted); font-size: 1.05rem; margin: 20px 0 28px; }
.check-list { margin-bottom: 32px; }
.check-list li {
    position: relative;
    padding: 12px 0 12px 36px;
    border-bottom: 1px solid var(--border);
    color: var(--text);
    font-weight: 500;
}
.check-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: var(--accent);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E");
    background-size: 16px;
    background-position: center;
    background-repeat: no-repeat;
}
.why-visual {
    position: relative;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.feature-badge {
    position: absolute;
    background: #fff;
    border: 2px solid var(--border);
    border-radius: 50px;
    padding: 14px 28px;
    font-weight: 700;
    color: var(--primary);
    box-shadow: var(--shadow-md);
    animation: float 6s ease-in-out infinite;
}
.feature-badge.b1 { top: 10%; left: 10%; animation-delay: 0s; border-color: var(--accent); color: var(--accent); }
.feature-badge.b2 { top: 20%; right: 5%; animation-delay: 1s; }
.feature-badge.b3 { top: 50%; left: 30%; animation-delay: 2s; background: var(--primary); color: #fff; border-color: var(--primary); }
.feature-badge.b4 { bottom: 20%; right: 15%; animation-delay: 3s; }
.feature-badge.b5 { bottom: 10%; left: 5%; animation-delay: 4s; border-color: var(--accent); color: var(--accent); }
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-16px); }
}

/* ===== Clients ===== */
.clients { padding: 80px 0; background: var(--bg-alt); }
.logo-row {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}
.client-logo {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-weight: 600;
    transition: all var(--transition);
}
.client-logo:hover { box-shadow: var(--shadow-md); border-color: var(--accent); color: var(--primary); }

/* ===== CTA Band ===== */
.cta-band {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}
.cta-band::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(236, 132, 135, 0.25) 0%, transparent 70%);
    border-radius: 50%;
}
.cta-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    position: relative;
    z-index: 2;
}
.cta-inner h2 { color: #fff; margin-bottom: 8px; }
.cta-inner p { opacity: 0.9; }

/* ===== Contact ===== */
.contact { padding: 100px 0; }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}
.contact-info p { color: var(--text-muted); margin: 20px 0 30px; font-size: 1.05rem; }
.info-list li {
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    color: var(--text-muted);
}
.info-list strong { color: var(--text); display: inline-block; min-width: 85px; }
.contact-form {
    background: var(--bg-alt);
    padding: 40px;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border);
    background: #fff;
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 0.96rem;
    color: var(--text);
    transition: border-color var(--transition), box-shadow var(--transition);
}
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(44, 88, 113, 0.12);
}
.contact-form textarea { resize: vertical; }
.contact-form button { align-self: flex-start; }

/* ===== Footer ===== */
.site-footer { background: var(--bg-dark); color: #D5DEE5; padding: 70px 0 0; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 50px;
}
.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 18px;
    filter: brightness(0) invert(1);
}
.footer-brand p { opacity: 0.8; font-size: 0.95rem; max-width: 320px; }
.footer-col h4 { color: #fff; margin-bottom: 18px; font-size: 1rem; }
.footer-col ul li { margin-bottom: 10px; font-size: 0.93rem; opacity: 0.85; }
.footer-col ul li a { transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--accent); }
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 22px 0;
    font-size: 0.88rem;
    opacity: 0.7;
}

/* ===== Page Header (iç sayfalar) ===== */
.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    padding: 90px 0 70px;
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(236, 132, 135, 0.22) 0%, transparent 70%);
    border-radius: 50%;
}
.page-header h1 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); }
.page-header p { font-size: 1.1rem; opacity: 0.88; margin-top: 14px; max-width: 640px; }
.breadcrumb {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 0.9rem;
    opacity: 0.85;
    margin-bottom: 18px;
}
.breadcrumb a { color: var(--accent); transition: opacity var(--transition); }
.breadcrumb a:hover { opacity: 0.8; }
.breadcrumb span { opacity: 0.7; }

/* ===== Content Sections ===== */
.content-section { padding: 90px 0; }
.two-col {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 70px;
    align-items: center;
}
.two-col p { color: var(--text-muted); margin-bottom: 16px; font-size: 1.02rem; }
.stat-tower {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.stat-tower > div {
    background: var(--bg-alt);
    border-radius: var(--radius);
    padding: 30px 24px;
    text-align: center;
    border-top: 3px solid var(--accent);
}
.stat-tower strong {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 4px;
}
.stat-tower span { color: var(--text-muted); font-size: 0.92rem; }

/* Vision/Mission grid */
.vm-section { padding: 70px 0 100px; background: var(--bg-alt); }
.vm-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.vm-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}
.vm-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.vm-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.vm-icon svg { width: 30px; height: 30px; }
.vm-card h3 { color: var(--primary); margin-bottom: 10px; }
.vm-card p { color: var(--text-muted); }

/* Values grid (numbered) */
.values-section { padding: 100px 0; }
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.value-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: all var(--transition);
    position: relative;
}
.value-item:hover { border-color: var(--accent); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.value-item strong {
    display: block;
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--accent);
    opacity: 0.4;
    line-height: 1;
    margin-bottom: 10px;
}
.value-item h4 { color: var(--primary); margin-bottom: 8px; }
.value-item p { color: var(--text-muted); font-size: 0.94rem; }

/* Process steps */
.process-section { padding: 100px 0; background: var(--bg-alt); }
.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.process-step {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 30px 26px;
    border-left: 4px solid var(--accent);
    box-shadow: var(--shadow-sm);
}
.process-step strong {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}
.process-step h4 { color: var(--primary); margin-bottom: 8px; }
.process-step p { color: var(--text-muted); font-size: 0.94rem; }

/* Solution detail (cozumler page) */
.solution-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.solution-card-lg {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    transition: all var(--transition);
}
.solution-card-lg:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: transparent; }
.solution-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.solution-icon svg { width: 28px; height: 28px; }
.solution-card-lg h2 { font-size: 1.5rem; color: var(--primary); margin-bottom: 12px; }
.solution-card-lg p { color: var(--text-muted); margin-bottom: 20px; }

/* Industries */
.industries { padding: 90px 0; background: var(--bg-alt); }
.industry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.industry-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 20px;
    text-align: center;
    font-weight: 600;
    color: var(--primary);
    transition: all var(--transition);
}
.industry-item:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-3px); box-shadow: var(--shadow-md); }

/* ===== Products Grid (Ürünler sayfası) ===== */
.products-section { padding: 100px 0; }
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.product-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); border-color: transparent; }
.product-card-media {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    padding: 50px 36px;
    position: relative;
    overflow: hidden;
}
.product-card-media::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(236, 132, 135, 0.3) 0%, transparent 70%);
    border-radius: 50%;
}
.product-card-media h3 { color: #fff; font-size: 1.9rem; margin-bottom: 6px; position: relative; }
.product-tagline { opacity: 0.9; font-size: 1rem; position: relative; }
.product-card-body { padding: 30px 32px; flex: 1; display: flex; flex-direction: column; }
.product-card-body p { color: var(--text-muted); margin-bottom: 18px; }
.product-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.product-tag {
    background: var(--bg-alt);
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
}
.product-card-body .btn { align-self: flex-start; margin-top: auto; }

/* ===== Product Detail (ürün detay sayfası) ===== */
.product-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    padding: 90px 0 100px;
    position: relative;
    overflow: hidden;
}
.product-hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(236, 132, 135, 0.18) 0%, transparent 70%);
    border-radius: 50%;
}
.product-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}
.product-hero h1 { color: #fff; font-size: clamp(2.2rem, 4.5vw, 3.4rem); margin-bottom: 18px; }
.product-hero p { opacity: 0.92; font-size: 1.1rem; margin-bottom: 30px; }
.product-badges { display: flex; gap: 10px; margin-bottom: 22px; flex-wrap: wrap; }
.product-badge {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
}
.product-mockup {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius-lg);
    padding: 30px;
    backdrop-filter: blur(10px);
    position: relative;
}
.product-mockup .mock-bar {
    display: flex;
    gap: 6px;
    margin-bottom: 18px;
}
.product-mockup .mock-bar span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}
.product-mockup .mock-line {
    height: 10px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    margin-bottom: 10px;
}
.product-mockup .mock-line.short { width: 70%; }
.product-mockup .mock-line.accent { background: var(--accent); width: 40%; }

/* Features block for product pages */
.features-section { padding: 100px 0; }
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.feature-card {
    padding: 30px 26px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}
.feature-card:hover { border-color: var(--accent); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature-card .f-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--bg-alt);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}
.feature-card .f-icon svg { width: 24px; height: 24px; }
.feature-card h4 { color: var(--primary); margin-bottom: 8px; font-size: 1.1rem; }
.feature-card p { color: var(--text-muted); font-size: 0.94rem; }

/* Map block */
.map-block {
    width: 100%;
    height: 340px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    border: 1px solid var(--border);
}

.main-nav li > a.active { color: var(--accent); }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero-grid, .why-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .solutions-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .logo-row { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .why-visual { height: 340px; }
}

@media (max-width: 768px) {
    .main-nav {
        position: fixed;
        top: 78px;
        left: 0;
        right: 0;
        background: #fff;
        border-bottom: 1px solid var(--border);
        transform: translateY(-120%);
        transition: transform var(--transition);
        max-height: calc(100vh - 78px);
        overflow-y: auto;
    }
    .main-nav.open { transform: translateY(0); }
    .main-nav > ul { flex-direction: column; padding: 16px; gap: 0; }
    .main-nav li > a { padding: 14px; }
    .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; background: var(--bg-alt); margin-top: 4px; }
    .header-cta { display: none; }
    .menu-toggle { display: flex; }
    .services-grid, .solutions-grid, .stats-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .logo-row { grid-template-columns: repeat(2, 1fr); }
    .cta-inner { flex-direction: column; text-align: center; }
    .footer-grid { grid-template-columns: 1fr; }
    .services, .solutions, .why-us, .contact { padding: 70px 0; }
    .two-col, .product-hero-grid, .solution-detail { grid-template-columns: 1fr; gap: 40px; }
    .vm-grid, .values-grid, .process-steps, .features-grid, .products-grid, .industry-grid { grid-template-columns: 1fr; }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .vm-grid, .values-grid, .process-steps, .features-grid, .industry-grid { grid-template-columns: repeat(2, 1fr); }
    .products-grid { grid-template-columns: 1fr; }
}


.icon-list li{background: url('../assets/check.png') no-repeat top left; min-height: 32px; padding-left:35px;margin-bottom:10px;}