/* ===========================
   RESET & BASE
=========================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --green-900: #0d2818;
    --green-800: #1a3a2a;
    --green-700: #1f4a34;
    --green-600: #2d6a4f;
    --green-500: #3a8a66;
    --green-400: #52b788;
    --green-300: #74c69d;
    --green-100: #d8f3dc;
    --green-50:  #f0faf2;

    --dark-900: #0a0a0a;
    --dark-800: #111111;
    --dark-700: #1a1a1a;
    --dark-600: #222222;
    --dark-500: #333333;

    --white: #ffffff;
    --gray-100: #f5f5f5;
    --gray-200: #e8e8e8;
    --gray-300: #d4d4d4;
    --gray-500: #888888;
    --gray-700: #444444;

    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --radius: 16px;
    --radius-sm: 10px;
    --radius-lg: 24px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 8px 32px rgba(0,0,0,0.10);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); background: var(--white); color: var(--dark-800); line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===========================
   TYPOGRAPHY
=========================== */
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 800; line-height: 1.15; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; line-height: 1.25; letter-spacing: -0.02em; }
h3 { font-size: 1.18rem; font-weight: 600; line-height: 1.35; }
h4 { font-size: 1.05rem; font-weight: 600; }
h5 { font-size: 0.85rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; }

.eyebrow {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--green-500);
    margin-bottom: 12px;
}

/* ===========================
   BUTTONS
=========================== */
.btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--green-700); color: var(--white);
    padding: 14px 28px; border-radius: 10px;
    font-size: 0.95rem; font-weight: 600;
    transition: var(--transition); border: 2px solid transparent; cursor: pointer;
}
.btn-primary:hover { background: var(--green-600); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(45,106,79,.35); }

.btn-ghost {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent; color: var(--dark-800);
    padding: 14px 28px; border-radius: 10px;
    font-size: 0.95rem; font-weight: 600;
    border: 2px solid var(--gray-200); transition: var(--transition);
}
.btn-ghost:hover { border-color: var(--green-500); color: var(--green-600); transform: translateY(-2px); }

.btn-ghost-white {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent; color: rgba(255,255,255,.92);
    padding: 14px 28px; border-radius: 10px;
    font-size: 0.95rem; font-weight: 600;
    border: 2px solid rgba(255,255,255,.35); transition: var(--transition);
}
.btn-ghost-white:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.7); transform: translateY(-2px); }

.btn-nav {
    display: inline-flex; align-items: center;
    background: var(--green-700); color: var(--white);
    padding: 10px 22px; border-radius: 8px;
    font-size: 0.88rem; font-weight: 600;
    transition: var(--transition); white-space: nowrap;
}
.btn-nav:hover { background: var(--green-600); }
.btn-full { width: 100%; justify-content: center; }

/* ===========================
   NAVBAR
=========================== */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(255,255,255,.94);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,.06); transition: var(--transition);
}
.nav-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
    height: 68px; display: flex; align-items: center; gap: 32px;
}
.logo { font-size: 1.5rem; font-weight: 800; color: var(--dark-900); letter-spacing: -0.04em; flex-shrink: 0; }
.logo span { color: var(--green-600); }
.nav-links { display: flex; gap: 4px; margin-left: auto; align-items: center; }
.nav-links > li { position: relative; }
.nav-links > li > a {
    display: flex; align-items: center; gap: 4px;
    padding: 8px 14px; font-size: 0.9rem; font-weight: 500;
    color: var(--gray-700); border-radius: 8px; transition: var(--transition); white-space: nowrap;
}
.nav-links > li > a:hover,
.nav-links > li.has-dropdown:hover > a,
.nav-active { color: var(--green-700) !important; background: var(--green-50) !important; }

.chevron { width: 14px; height: 14px; transition: transform .25s ease; flex-shrink: 0; }
.has-dropdown:hover .chevron { transform: rotate(180deg); }

/* Dropdown */
.dropdown-menu {
    position: absolute; top: calc(100% + 8px); left: 50%;
    transform: translateX(-50%) translateY(-6px);
    background: var(--white); border: 1px solid var(--gray-200);
    border-radius: var(--radius); box-shadow: 0 16px 48px rgba(0,0,0,.14);
    padding: 10px; min-width: 240px;
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
}
.has-dropdown:hover .dropdown-menu {
    opacity: 1; visibility: visible; pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}
.dropdown-menu li a {
    display: flex; align-items: center; gap: 12px;
    padding: 10px 14px; border-radius: 10px;
    font-size: .88rem; font-weight: 500; color: var(--dark-700); transition: var(--transition);
}
.dropdown-menu li a:hover { background: var(--green-50); color: var(--green-700); }
.dd-icon {
    width: 32px; height: 32px; background: var(--gray-100);
    border-radius: 8px; display: flex; align-items: center;
    justify-content: center; flex-shrink: 0; transition: var(--transition);
}
.dd-icon svg { width: 16px; height: 16px; color: var(--green-600); }
.dropdown-menu li a:hover .dd-icon { background: var(--green-100); }

/* Burger */
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; margin-left: auto; }
.burger span { display: block; width: 22px; height: 2px; background: var(--dark-800); border-radius: 2px; transition: var(--transition); }

/* ===========================
   HERO SLIDER
=========================== */
.hero-slider {
    position: relative; width: 100%; height: 100vh; min-height: 600px;
    overflow: hidden; background: var(--dark-900);
}
.slides-wrapper { width: 100%; height: 100%; position: relative; }
.slide { position: absolute; inset: 0; opacity: 0; transition: opacity .9s ease; display: flex; align-items: center; }
.slide.active { opacity: 1; z-index: 1; }
.slide-bg {
    position: absolute; inset: 0; background-size: cover; background-position: center;
    transform: scale(1.05); transition: transform 6s ease;
}
.slide.active .slide-bg { transform: scale(1); }
.slide-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(105deg, rgba(10,10,10,.78) 0%, rgba(10,10,10,.5) 55%, rgba(10,10,10,.2) 100%);
}
.slide-content {
    position: relative; z-index: 2;
    max-width: 1200px; margin: 0 auto; padding: 0 24px; width: 100%; padding-top: 68px;
}
.slide-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: .78rem; font-weight: 600; letter-spacing: .14em;
    text-transform: uppercase; color: var(--green-300); margin-bottom: 20px;
}
.slide-eyebrow::before { content: ''; display: block; width: 28px; height: 2px; background: var(--green-400); }
.slide-content h1 { color: var(--white); max-width: 680px; margin-bottom: 20px; }
.slide-highlight { color: var(--green-400); }
.slide-content p { font-size: 1.1rem; color: rgba(255,255,255,.72); max-width: 540px; margin-bottom: 36px; line-height: 1.7; }
.slide-cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* Slider controls */
.slider-btn {
    position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
    width: 52px; height: 52px; border-radius: 50%;
    background: rgba(255,255,255,.12); backdrop-filter: blur(8px);
    border: 1.5px solid rgba(255,255,255,.22); color: var(--white);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: var(--transition);
}
.slider-btn svg { width: 22px; height: 22px; }
.slider-btn:hover { background: rgba(255,255,255,.24); border-color: rgba(255,255,255,.5); transform: translateY(-50%) scale(1.08); }
.slider-prev { left: 28px; }
.slider-next { right: 28px; }
.slider-dots { position: absolute; bottom: 100px; left: 50%; transform: translateX(-50%); z-index: 10; display: flex; gap: 10px; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.35); border: none; cursor: pointer; transition: var(--transition); padding: 0; }
.dot.active { background: var(--white); width: 28px; border-radius: 4px; }
.dot:hover { background: rgba(255,255,255,.65); }
.slider-stats { position: absolute; bottom: 0; left: 0; right: 0; z-index: 10; background: rgba(15,15,15,.7); backdrop-filter: blur(12px); display: flex; align-items: center; justify-content: center; padding: 18px 0; }
.slider-stat { display: flex; flex-direction: column; align-items: center; padding: 0 48px; }
.ss-num { font-size: 1.6rem; font-weight: 800; color: var(--green-300); line-height: 1; }
.ss-label { font-size: .75rem; color: rgba(255,255,255,.5); margin-top: 4px; font-weight: 500; letter-spacing: .04em; }
.slider-stat-divider { width: 1px; height: 36px; background: rgba(255,255,255,.12); }

/* ===========================
   SECTION COMMON
=========================== */
.section { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 { margin-bottom: 0; }

/* ===========================
   BENTO SERVICES
=========================== */
.bento-services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto auto;
    gap: 20px;
    margin-bottom: 20px;
}

/* Shared card base */
.bs-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease;
}
.bs-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

/* Shared badge */
.bs-badge {
    display: inline-block; font-size: .68rem; font-weight: 700;
    letter-spacing: .08em; text-transform: uppercase;
    padding: 5px 12px; border-radius: 20px;
}
.bs-badge-green { background: var(--green-700); color: var(--white); }
.bs-badge-white { background: rgba(255,255,255,.15); color: var(--white); border: 1px solid rgba(255,255,255,.25); }
.bs-badge-dark { background: var(--dark-700); color: var(--white); }
.bs-badge-red { background: #c0392b; color: var(--white); }
.bs-badge-green-light { background: var(--green-50); color: var(--green-700); border: 1px solid var(--green-100); }

/* Shared buttons within cards */
.bs-btn {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: .88rem; font-weight: 600; padding: 10px 18px;
    border-radius: 9px; transition: var(--transition); margin-top: 16px;
}
.bs-btn svg { width: 15px; height: 15px; transition: transform .2s; }
.bs-btn:hover svg { transform: translateX(3px); }
.bs-btn-green { background: var(--green-700); color: var(--white); }
.bs-btn-green:hover { background: var(--green-600); }
.bs-btn-dark { background: var(--dark-800); color: var(--white); }
.bs-btn-dark:hover { background: var(--dark-600); }
.bs-btn-white { background: var(--white); color: var(--dark-800); }
.bs-btn-white:hover { background: var(--green-50); color: var(--green-700); }
.bs-btn-outline-white { background: transparent; color: rgba(255,255,255,.85); border: 1.5px solid rgba(255,255,255,.3); }
.bs-btn-outline-white:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.6); }

/* ---- 1. İCARƏ — side-by-side, spans 2 cols ---- */
.bs-icare {
    grid-column: span 2;
    display: flex;
    border: 1px solid var(--gray-200);
    background: var(--white);
}
.bs-icare:hover { border-color: transparent; }
.bs-icare-img {
    width: 45%;
    flex-shrink: 0;
    overflow: hidden;
}
.bs-icare-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.bs-icare:hover .bs-icare-img img { transform: scale(1.05); }
.bs-icare-body { padding: 32px 28px; display: flex; flex-direction: column; justify-content: center; }
.bs-icare-body h3 { margin: 10px 0 8px; font-size: 1.3rem; }
.bs-icare-body > p { font-size: .9rem; color: var(--gray-500); margin-bottom: 16px; line-height: 1.65; }

.bs-checklist { display: flex; flex-direction: column; gap: 8px; margin-bottom: 4px; }
.bs-checklist li {
    font-size: .85rem; color: var(--dark-700);
    padding-left: 20px; position: relative;
}
.bs-checklist li::before { content: '✓'; position: absolute; left: 0; color: var(--green-500); font-weight: 700; }

/* ---- 2. SATIŞ — dark tall card ---- */
.bs-satis {
    background: var(--dark-800);
    color: var(--white);
    padding: 28px;
    display: flex; flex-direction: column;
}
.bs-satis-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 12px; }
.bs-satis-icon {
    width: 44px; height: 44px; border-radius: 10px;
    background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center;
}
.bs-satis-icon svg { width: 22px; height: 22px; color: var(--green-400); }
.bs-satis h3 { color: var(--white); margin-bottom: 8px; }
.bs-satis > p { font-size: .88rem; color: rgba(255,255,255,.6); line-height: 1.6; margin-bottom: 16px; }
.bs-satis-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 14px; }
.bs-mini-stat {
    background: rgba(255,255,255,.07); border-radius: 10px;
    padding: 12px; text-align: center;
}
.bs-mini-stat span { display: block; font-size: 1.5rem; font-weight: 800; color: var(--green-400); }
.bs-mini-stat small { font-size: .72rem; color: rgba(255,255,255,.45); }
.bs-tags-dark { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 4px; }
.bs-tags-dark span {
    font-size: .7rem; font-weight: 600; letter-spacing: .04em;
    background: rgba(255,255,255,.09); color: rgba(255,255,255,.75);
    padding: 4px 10px; border-radius: 20px;
}

/* ---- 3. KARTRİC — light with accent ---- */
.bs-kartric {
    background: var(--white);
    border: 2px solid var(--green-100);
    padding: 28px;
    display: flex; flex-direction: column;
    position: relative;
}
.bs-kartric:hover { border-color: var(--green-400); }
.bs-kartric-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 12px; }
.bs-kartric-header h3 { margin-top: 8px; }
.bs-savings {
    background: var(--green-700); color: var(--white);
    border-radius: 12px; padding: 8px 12px; text-align: center; flex-shrink: 0;
}
.bs-savings span { display: block; font-size: 1.5rem; font-weight: 800; line-height: 1; }
.bs-savings small { font-size: .65rem; font-weight: 600; opacity: .85; }
.bs-kartric > p { font-size: .88rem; color: var(--gray-500); line-height: 1.65; margin-bottom: 16px; }
.bs-brands { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 4px; }
.bs-brands span {
    font-size: .75rem; font-weight: 700; padding: 5px 12px;
    border-radius: 8px; border: 1.5px solid var(--gray-200); color: var(--dark-700);
    background: var(--gray-100);
}

/* ---- 4. PRİNTER — image top ---- */
.bs-printer {
    background: var(--white);
    border: 1px solid var(--gray-200);
    display: flex; flex-direction: column;
}
.bs-printer:hover { border-color: transparent; }
.bs-printer-img { position: relative; height: 160px; overflow: hidden; }
.bs-printer-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.bs-printer:hover .bs-printer-img img { transform: scale(1.06); }
.img-badge { position: absolute; top: 12px; right: 12px; }
.bs-printer-body { padding: 22px 24px; display: flex; flex-direction: column; flex: 1; }
.bs-printer-body h3 { margin-bottom: 6px; }
.bs-printer-body > p { font-size: .88rem; color: var(--gray-500); margin-bottom: 14px; }
.bs-printer-features { display: flex; flex-direction: column; gap: 7px; margin-bottom: 4px; }
.bs-printer-features span {
    display: flex; align-items: center; gap: 7px;
    font-size: .82rem; font-weight: 500; color: var(--dark-700);
}
.bs-printer-features span svg { width: 14px; height: 14px; color: var(--green-500); flex-shrink: 0; }

/* ---- 5. SİQNALİZASİYA — full image overlay ---- */
.bs-siqnal {
    position: relative;
    overflow: hidden;
    min-height: 300px;
    display: flex; flex-direction: column; justify-content: flex-end;
}
.bs-siqnal-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.bs-siqnal:hover .bs-siqnal-bg { transform: scale(1.06); }
.bs-siqnal-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(5,20,12,.92) 0%, rgba(5,20,12,.5) 55%, rgba(5,20,12,.2) 100%);
}
.bs-siqnal-content { position: relative; z-index: 2; padding: 28px; }
.bs-siqnal-content h3 { color: var(--white); margin: 10px 0 8px; font-size: 1.2rem; }
.bs-siqnal-content p { font-size: .88rem; color: rgba(255,255,255,.7); margin-bottom: 4px; }

/* ---- 6. SAYT — wide horizontal minimal ---- */
.bs-sayt {
    grid-column: span 3;
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    padding: 28px 32px;
    display: flex; align-items: center; gap: 40px;
}
.bs-sayt:hover { border-color: var(--green-300); background: var(--green-50); }
.bs-sayt-left { display: flex; align-items: center; gap: 24px; flex: 1; min-width: 0; }
.bs-sayt-icon {
    width: 60px; height: 60px; border-radius: 14px;
    background: var(--white); box-shadow: var(--shadow-sm);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.bs-sayt-icon svg { width: 28px; height: 28px; color: var(--green-700); }
.bs-sayt-left h3 { margin: 6px 0 4px; }
.bs-sayt-left > div > p { font-size: .88rem; color: var(--gray-500); }
.bs-sayt-right { display: flex; flex-direction: column; align-items: flex-end; gap: 12px; flex-shrink: 0; }
.bs-sayt-tags { display: flex; flex-wrap: wrap; gap: 7px; justify-content: flex-end; max-width: 300px; }
.bs-sayt-tags span {
    font-size: .72rem; font-weight: 600;
    background: var(--white); color: var(--dark-700);
    padding: 5px 12px; border-radius: 20px;
    border: 1px solid var(--gray-200);
}

/* Extra strip */
.extra-strip {
    display: flex; align-items: center; gap: 0;
    background: var(--dark-800); border-radius: var(--radius-lg);
    overflow: hidden;
}
.extra-strip-item {
    display: flex; align-items: center; gap: 16px;
    padding: 26px 28px; flex: 1;
    transition: background .2s; color: inherit;
}
.extra-strip-item:hover { background: rgba(255,255,255,.06); }
a.extra-strip-item:hover h4 { color: var(--green-300); }
.esi-icon {
    width: 42px; height: 42px; border-radius: 10px;
    background: rgba(255,255,255,.08); flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
}
.esi-icon svg { width: 20px; height: 20px; color: var(--green-400); }
.extra-strip-item h4 { color: var(--white); font-size: .95rem; margin-bottom: 2px; }
.extra-strip-item p { color: rgba(255,255,255,.45); font-size: .8rem; }
.esi-divider { width: 1px; height: 56px; background: rgba(255,255,255,.08); flex-shrink: 0; }
.extra-strip-cta {
    display: flex; align-items: center; gap: 8px;
    padding: 26px 32px; font-size: .9rem; font-weight: 600;
    color: var(--green-400); white-space: nowrap; transition: var(--transition);
    border-left: 1px solid rgba(255,255,255,.08);
}
.extra-strip-cta svg { width: 16px; height: 16px; transition: transform .2s; }
.extra-strip-cta:hover { color: var(--green-300); }
.extra-strip-cta:hover svg { transform: translateX(4px); }

/* ===========================
   İCARƏ PREVIEW (Home)
=========================== */
.section-icare-preview { background: var(--gray-100); }

.icare-preview-header {
    display: flex; justify-content: space-between; align-items: flex-end;
    margin-bottom: 48px;
}
.icare-preview-header h2 { margin-bottom: 0; }
.icare-see-all {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: .9rem; font-weight: 600; color: var(--green-700);
    white-space: nowrap; transition: var(--transition);
}
.icare-see-all svg { width: 16px; height: 16px; transition: transform .2s; }
.icare-see-all:hover { color: var(--green-500); }
.icare-see-all:hover svg { transform: translateX(4px); }

.icare-preview-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

/* Card 1: horizontal with image */
.ip-card { border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition); }
.ip-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.ip-horizontal {
    display: flex; background: var(--white);
    border: 1px solid var(--gray-200);
}
.ip-horizontal:hover { border-color: transparent; }
.ip-img-wrap { width: 42%; flex-shrink: 0; position: relative; overflow: hidden; }
.ip-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.ip-horizontal:hover .ip-img-wrap img { transform: scale(1.06); }
.ip-overlay { position: absolute; inset: 0; background: linear-gradient(to right, transparent 70%, rgba(255,255,255,.3) 100%); }
.ip-body { padding: 28px 24px; display: flex; flex-direction: column; justify-content: center; }
.ip-cat { font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--green-600); background: var(--green-50); padding: 3px 10px; border-radius: 20px; display: inline-block; margin-bottom: 10px; }
.ip-body h3 { margin-bottom: 8px; font-size: 1.1rem; }
.ip-body > p { font-size: .85rem; color: var(--gray-500); line-height: 1.6; margin-bottom: 16px; }
.ip-link { font-size: .85rem; font-weight: 600; color: var(--green-700); transition: var(--transition); }
.ip-link:hover { color: var(--green-500); }

/* Card 2: dark */
.ip-dark {
    background: var(--dark-800); color: var(--white);
    padding: 28px; display: flex; flex-direction: column;
}
.ip-cat-light { font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: 16px; }
.ip-dark-icon {
    width: 48px; height: 48px; border-radius: 12px;
    background: rgba(255,255,255,.1); display: flex; align-items: center;
    justify-content: center; margin-bottom: 14px;
}
.ip-dark-icon svg { width: 24px; height: 24px; color: var(--green-400); }
.ip-dark h3 { color: var(--white); margin-bottom: 8px; }
.ip-dark > p { font-size: .85rem; color: rgba(255,255,255,.55); line-height: 1.6; flex: 1; }
.ip-dark-stat { margin-top: 20px; margin-bottom: 14px; }
.ip-stat-num { display: block; font-size: 2rem; font-weight: 800; color: var(--green-300); line-height: 1; }
.ip-stat-label { font-size: .75rem; color: rgba(255,255,255,.45); margin-top: 2px; }
.ip-link-white { font-size: .85rem; font-weight: 600; color: var(--green-400); transition: var(--transition); }
.ip-link-white:hover { color: var(--green-300); }

/* Card 3: green featured */
.ip-featured {
    background: var(--green-800); color: var(--white);
    padding: 28px; display: flex; flex-direction: column;
}
.ip-featured-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.ip-featured-badge {
    font-size: .65rem; font-weight: 700; letter-spacing: .08em;
    text-transform: uppercase; background: rgba(255,255,255,.15);
    color: var(--green-300); padding: 5px 12px; border-radius: 20px;
    border: 1px solid rgba(255,255,255,.2);
}
.ip-featured-icon { width: 32px; height: 32px; color: rgba(255,255,255,.4); }
.ip-featured h3 { color: var(--white); margin-bottom: 8px; font-size: 1.15rem; }
.ip-featured > p { font-size: .85rem; color: rgba(255,255,255,.6); line-height: 1.6; margin-bottom: 16px; }
.ip-includes { display: flex; flex-direction: column; gap: 8px; flex: 1; margin-bottom: 20px; }
.ip-includes li {
    font-size: .82rem; color: rgba(255,255,255,.8);
    padding-left: 18px; position: relative;
}
.ip-includes li::before { content: '—'; position: absolute; left: 0; color: var(--green-400); font-weight: 700; }
.ip-btn-featured {
    display: inline-flex; align-items: center;
    font-size: .88rem; font-weight: 600;
    background: rgba(255,255,255,.15); color: var(--white);
    padding: 10px 18px; border-radius: 9px;
    border: 1.5px solid rgba(255,255,255,.25); transition: var(--transition);
}
.ip-btn-featured:hover { background: rgba(255,255,255,.25); border-color: rgba(255,255,255,.5); }

.icare-preview-footer { text-align: center; }

/* ===========================
   ABOUT
=========================== */
.section-about { background: var(--green-900); color: var(--white); }
.section-about .eyebrow { color: var(--green-400); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-text h2 { margin-bottom: 20px; }
.about-text p { color: rgba(255,255,255,.7); margin-bottom: 16px; font-size: 1rem; line-height: 1.75; }
.about-text .btn-primary { margin-top: 12px; background: var(--green-500); }
.about-text .btn-primary:hover { background: var(--green-400); }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.stat-box { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); padding: 28px 24px; text-align: center; transition: var(--transition); }
.stat-box:hover { background: rgba(255,255,255,.10); border-color: rgba(255,255,255,.2); }
.stat-number { display: block; font-size: 2.4rem; font-weight: 800; color: var(--green-400); line-height: 1; }
.stat-text { display: block; font-size: .82rem; color: rgba(255,255,255,.5); margin-top: 6px; font-weight: 500; }

/* ===========================
   CONTACT
=========================== */
.section-contact { background: var(--gray-100); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.contact-info h2 { margin-bottom: 16px; }
.contact-info > p { color: var(--gray-500); line-height: 1.75; margin-bottom: 36px; }
.contact-details { display: flex; flex-direction: column; gap: 16px; }
.contact-item { display: flex; align-items: center; gap: 14px; color: var(--dark-700); font-size: .95rem; font-weight: 500; transition: var(--transition); }
a.contact-item:hover { color: var(--green-700); }
.contact-item svg { width: 20px; height: 20px; color: var(--green-600); flex-shrink: 0; }
.contact-form { background: var(--white); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.form-group:last-of-type { margin-bottom: 24px; }
.form-group label { font-size: .82rem; font-weight: 600; color: var(--dark-700); }
.form-group input,
.form-group textarea,
.form-group select {
    background: var(--gray-100); border: 1.5px solid var(--gray-200); border-radius: 10px;
    padding: 12px 16px; font-family: var(--font); font-size: .93rem; color: var(--dark-800);
    transition: var(--transition); outline: none; resize: none; appearance: none; -webkit-appearance: none;
}
.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 14px center; background-size: 16px; cursor: pointer;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--green-500); background: var(--white); box-shadow: 0 0 0 4px rgba(45,106,79,.1); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-300); }
button[type="submit"] { cursor: pointer; font-family: var(--font); font-size: .95rem; border: none; }

/* ===========================
   FOOTER
=========================== */
.footer { background: var(--dark-900); color: var(--white); padding: 60px 0 0; }
.footer-inner { display: flex; justify-content: space-between; gap: 60px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-brand .logo { font-size: 1.4rem; margin-bottom: 12px; display: block; }
.footer-brand > p { font-size: .88rem; color: rgba(255,255,255,.45); max-width: 200px; line-height: 1.65; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.footer-social a svg { width: 16px; height: 16px; }
.footer-social a:hover { background: var(--green-700); }
.footer-links { display: flex; gap: 48px; }
.footer-col h5 { color: rgba(255,255,255,.4); margin-bottom: 16px; font-size: .72rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: .88rem; color: rgba(255,255,255,.55); transition: var(--transition); }
.footer-col a:hover { color: var(--green-400); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; }
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.3); }

/* ===========================
   SCROLL REVEAL
=========================== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1100px) {
    .bento-services { grid-template-columns: 1fr 1fr; }
    .bs-icare { grid-column: span 2; }
    .bs-sayt { grid-column: span 2; flex-direction: column; align-items: flex-start; gap: 16px; }
    .bs-sayt-right { align-items: flex-start; }
    .bs-sayt-tags { justify-content: flex-start; }
    .icare-preview-grid { grid-template-columns: 1fr 1fr; }
    .ip-horizontal { grid-column: span 2; }
}

@media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .slider-stats { display: none; }
    .slider-dots { bottom: 32px; }
    .extra-strip { flex-direction: column; }
    .extra-strip-item { width: 100%; }
    .esi-divider { width: 100%; height: 1px; }
    .extra-strip-cta { border-left: none; border-top: 1px solid rgba(255,255,255,.08); width: 100%; justify-content: center; }
}

@media (max-width: 768px) {
    .nav-links, .btn-nav { display: none; }
    .burger { display: flex; }
    .nav-links.open {
        display: flex; flex-direction: column;
        position: fixed; top: 68px; left: 0; right: 0; bottom: 0;
        background: var(--white); padding: 16px; overflow-y: auto; z-index: 999; gap: 2px;
    }
    .nav-links.open > li > a { padding: 12px 16px; border-radius: 10px; }
    .nav-links.open .dropdown-menu {
        position: static; transform: none; opacity: 1; visibility: visible;
        pointer-events: auto; box-shadow: none; border: none;
        background: var(--gray-100); margin: 4px 0 4px 16px; border-radius: 12px;
    }
    .bento-services { grid-template-columns: 1fr; }
    .bs-icare { grid-column: span 1; flex-direction: column; }
    .bs-icare-img { width: 100%; height: 220px; }
    .bs-sayt { grid-column: span 1; }
    .icare-preview-grid { grid-template-columns: 1fr; }
    .ip-horizontal { grid-column: span 1; flex-direction: column; }
    .ip-img-wrap { width: 100%; height: 200px; }
    .ip-overlay { display: none; }
    .icare-preview-header { flex-direction: column; align-items: flex-start; gap: 16px; }
    .about-stats { grid-template-columns: 1fr 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form { padding: 24px; }
    .footer-inner { flex-direction: column; gap: 32px; }
    .footer-links { gap: 28px; flex-wrap: wrap; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    .slide-content h1 { font-size: 2.2rem; }
    .slider-btn { width: 40px; height: 40px; }
    .slider-prev { left: 12px; }
    .slider-next { right: 12px; }
}

@media (max-width: 480px) {
    h2 { font-size: 1.6rem; }
    .slide-cta { flex-direction: column; }
    .btn-primary, .btn-ghost-white { width: 100%; justify-content: center; }
    .about-stats { grid-template-columns: 1fr; }
    .footer-links { flex-direction: column; gap: 24px; }
    .bs-sayt-right { width: 100%; }
}
