/* ── Global Reset ve Base Ayarlar ── */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  width: 100%;
  overflow-x: hidden;
  /* Projenin genel modern fontu (Orijinaldeki font ailesi) */
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── Keyframes ── */
@keyframes envaiMarqueeScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes snapIn { 0% { opacity: 0; transform: scale(0.8) translateY(20px); } 100% { opacity: 1; transform: scale(1) translateY(0); } }
@keyframes slideUpFade { 0% { opacity: 0; transform: translateY(30px); } 100% { opacity: 1; transform: translateY(0); } }
@keyframes popIn { 0% { opacity: 0; transform: scale(0.9); } 50% { transform: scale(1.05); } 100% { opacity: 1; transform: scale(1); } }
@keyframes floatBob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }
@keyframes scrollCarousel { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes pulseDot { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

/* ── Reveal Animations ── */
.reveal { opacity: 0; transform: translateY(30px) scale(0.97); transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.revealed { opacity: 1; transform: translateY(0) scale(1); }
.reveal-left { opacity: 0; transform: translateX(-40px) scale(0.97); transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-left.revealed { opacity: 1; transform: translateX(0) scale(1); }
.reveal-right { opacity: 0; transform: translateX(40px) scale(0.97); transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-right.revealed { opacity: 1; transform: translateX(0) scale(1); }

/* ── Hero Entry Animations ── */
.snap-in { display: inline-block; animation: snapIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) both; }
.slide-up-fade { animation: slideUpFade 0.7s ease-out both; }
.pop-in { animation: popIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) both; }
.float-bob { animation: floatBob 4s ease-in-out infinite; }
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }

/* ── Layout Helpers ── */
.envai-container { max-width: 1400px; margin: 0 auto; padding: 0 24px; width: 100%; }
@media (min-width: 1024px) { .envai-container { padding: 0 40px; } }

.section-header { text-align: center; margin-bottom: 64px; }
.section-h2 { font-size: clamp(28px, 4vw, 51px); font-weight: 900; color: #111; margin: 16px 0 0; line-height: 1.15; }
.section-sub { font-size: 17px; color: #6b7280; margin-top: 12px; max-width: 600px; margin-left: auto; margin-right: auto; }
.text-center { text-align: center; }

/* ── Section Label ── */
.section-label { display: inline-flex; align-items: center; gap: 10px; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.18em; color: #888; margin-bottom: 20px; }
.section-label .dot { width: 8px; height: 8px; border-radius: 50%; background: #0a3d2e; animation: pulseDot 2s ease-in-out infinite; }
.badge-dot { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: #22c55e; animation: pulseDot 2s ease-in-out infinite; flex-shrink: 0; }
.badge-green { display: inline-flex; align-items: center; gap: 8px; padding: 6px 16px; border-radius: 9999px; background: #e6f2e6; border: 1px solid #aaddaa; color: #0a3d2e; font-size: 11px; text-transform: uppercase; letter-spacing: 0.15em; font-weight: 700; margin-bottom: 20px; }

/* ── Buttons ── */
.btn-primary { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; border-radius: 9999px; background: #0a3d2e; color: white !important; font-weight: 600; font-size: 14px; text-decoration: none; border: 1.5px solid #0a3d2e; transition: all 0.3s ease; cursor: pointer; }
.btn-primary:hover { background: #06291e; transform: scale(1.03); box-shadow: 0 8px 30px rgba(10, 61, 46, 0.25); }
.btn-ghost { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; border-radius: 9999px; background: white; color: #111 !important; font-weight: 700; font-size: 14px; text-decoration: none; border: 2px solid #e5e7eb; transition: all 0.3s ease; box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08); cursor: pointer; }
.btn-ghost:hover { border-color: #111; transform: scale(1.05); }
.btn-green { display: inline-flex; align-items: center; justify-content: center; padding: 16px 32px; border-radius: 9999px; background: #22c55e; color: #0a3d2e !important; font-weight: 700; font-size: 17px; text-decoration: none; transition: all 0.3s ease; box-shadow: 0 10px 30px rgba(34, 197, 94, 0.2); cursor: pointer; }
.btn-green:hover { background: #1ea750; transform: scale(1.05); }

.btn-login { padding: 10px 24px; border-radius: 9999px; border: 2px solid #0a3d2e; color: #0a3d2e !important; font-weight: 700; font-size: 14px; text-decoration: none; transition: all 0.3s ease; display: inline-block; position: relative; z-index: 9999 !important; pointer-events: auto !important; cursor: pointer !important; }
.btn-login:hover { background: #0a3d2e; color: white !important; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(10, 61, 46, 0.2); }
.btn-dark { display: inline-flex; align-items: center; justify-content: center; padding: 16px 40px; border-radius: 9999px; background: #111; color: white !important; font-weight: 700; font-size: 17px; text-decoration: none; transition: all 0.3s ease; box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1); }
.btn-dark:hover { background: #22c55e; color: #0a3d2e !important; }

/* ══════════════════════════════════════ NAVBAR ══════════════════════════════════════ */
.envai-navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1050; transition: all 0.3s ease; padding: 20px 0; background: transparent; }
.envai-navbar--scrolled { background: rgba(255, 255, 255, 0.75); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid rgba(229, 231, 235, 0.8); padding: 12px 0; box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06); }
.nav-inner { max-width: 1400px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; position: relative; width: 100%; }
@media (min-width: 1024px) { .nav-inner { padding: 0 40px; } }
.nav-logo { position: relative; display: flex; align-items: center; width: 180px; height: 64px; text-decoration: none; }
.nav-logo-img { position: absolute; top: 50%; left: 0; transform: translateY(-50%); height: 100px !important; width: auto; max-width: none; object-fit: contain; display: block; mix-blend-mode: multiply; z-index: 1100; transition: height 0.3s ease; }
.nav-links { display: none; gap: 32px; }
@media (min-width: 1024px) { .nav-links { display: flex; align-items: center; } }
.nav-link-item { font-size: 15px; font-weight: 600; color: #1f2937 !important; text-decoration: none; position: relative; padding-bottom: 4px; transition: color 0.2s; }
.nav-link-item::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: #0a3d2e; transition: width 0.3s ease; }
.nav-link-item:hover { color: #0a3d2e !important; }
.nav-link-item:hover::after { width: 100%; }
.nav-right { display: none; align-items: center; gap: 24px; }
@media (min-width: 1024px) { .nav-right { display: flex; } }
.lang-toggle { display: flex; align-items: center; gap: 6px; font-weight: 700; font-size: 12px; letter-spacing: 0.15em; }
.lang-toggle button { background: none; border: none; cursor: pointer; color: #9ca3af; font-weight: 700; font-size: 12px; letter-spacing: 0.15em; transition: all 0.2s; padding: 0; }
.lang-toggle button:hover { color: #0a3d2e; }
.lang-toggle button.active { color: #0a3d2e; transform: scale(1.1); }
.lang-toggle--large button { font-size: 18px; }
.lang-sep { color: #e5e7eb; }
.nav-divider { width: 1px; height: 20px; background: #e5e7eb; }
.hamburger { display: flex; align-items: center; justify-content: center; color: #0a3d2e; background: none; border: none; cursor: pointer; padding: 8px; }
@media (min-width: 1024px) { .hamburger { display: none; } }

/* Mobile Menu */
.mobile-menu { position: fixed; inset: 0; background: rgba(255, 255, 255, 0.98); backdrop-filter: blur(20px); z-index: 1000; display: flex; flex-direction: column; padding: 112px 32px 40px; transform: translateX(100%); transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1); }
@media (min-width: 1024px) { .mobile-menu { display: none; } }
.mobile-menu.open { transform: translateX(0); }
.mobile-close { position: absolute; top: 24px; right: 24px; background: none; border: none; cursor: pointer; color: #0a3d2e; padding: 8px; }
.mobile-nav { display: flex; flex-direction: column; gap: 24px; }
.mobile-nav a { font-size: 26px; font-weight: 700; color: #111 !important; text-decoration: none; transition: color 0.2s; }
.mobile-nav a:hover { color: #0a3d2e !important; }
.mobile-bottom { margin-top: auto; display: flex; flex-direction: column; gap: 24px; }
.mobile-login-btn { width: 100%; padding: 16px; text-align: center; border-radius: 16px; background: #0a3d2e; color: white !important; font-weight: 700; font-size: 18px; text-decoration: none; position: relative; z-index: 9999 !important; pointer-events: auto !important; }

/* ══════════════════════════════════════ PAGE BODY ══════════════════════════════════════ */
.page-body { display: flex; flex-direction: column; color: #111; }

/* ══════════════════════════════════════ HERO ══════════════════════════════════════ */
.hero-section { position: relative; min-height: 85vh; display: flex; align-items: center; overflow: hidden; margin-top: 0; padding-top: 0; }
.hero-bg { position: absolute; inset: 0; background-image: url('https://images.unsplash.com/photo-1511497584788-876760111969?auto=format&fit=crop&q=80&w=1920'); background-size: cover; background-position: center; background-attachment: fixed; z-index: 0; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(248, 248, 244, 0.96) 0%, rgba(248, 248, 244, 0.82) 50%, rgba(248, 248, 244, 0.3) 100%); z-index: 1; }
.hero-content { position: relative; z-index: 10; width: 100%; padding-top: 128px; padding-bottom: 80px; }
.hero-inner { max-width: 900px; }
.hero-h1 { font-size: clamp(40px, 6vw, 88px); font-weight: 900; line-height: 1.05; letter-spacing: -0.02em; margin: 0 0 32px; color: #111; }
.hero-green-italic { font-family: 'Playfair Display', Georgia, serif; font-style: italic; color: #0a3d2e; }
.hero-subtitle { font-size: 18px; color: #6b7280; max-width: 540px; margin-bottom: 40px; line-height: 1.7; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; }

/* ══════════════════════════════════════ MARQUEE TICKER ══════════════════════════════════════ */
.marquee-section { background: #0a3d2e !important; padding: 20px 0; overflow: hidden; position: relative; z-index: 20; box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1); }
.marquee-track { display: flex; white-space: nowrap !important; animation: envaiMarqueeScroll 15s linear infinite !important; will-change: transform; }
.marquee-track span { font-size: 14px !important; font-weight: 600 !important; letter-spacing: 0.15em !important; text-transform: uppercase !important; color: rgba(255, 255, 255, 0.9) !important; padding: 0 16px; display: inline-flex !important; visibility: visible !important; opacity: 1 !important; }

/* ══════════════════════════════════════ DEMO CTA SECTION ══════════════════════════════════════ */
.demo-section { position: relative; overflow: hidden; background: white; padding: 80px 0 40px; z-index: 10; }
@media (min-width: 1024px) { .demo-section { padding: 112px 0 40px; } }
.demo-bg-shape { position: absolute; top: 0; right: 0; width: 66%; height: 100%; background: linear-gradient(to left, rgba(230, 242, 230, 0.6), transparent); clip-path: polygon(20% 0%, 100% 0, 100% 100%, 0% 100%); }
.demo-inner { display: flex; flex-direction: column; align-items: center; gap: 64px; position: relative; }
@media (min-width: 1024px) { .demo-inner { flex-direction: row; } }
@media (min-width: 1024px) { .demo-left { width: 50%; } }
.demo-title { font-size: clamp(32px, 4vw, 56px); font-weight: 900; color: #111; line-height: 1.1; margin: 0 0 20px; }
.demo-desc { color: #6b7280; margin-bottom: 32px; font-size: 16px; line-height: 1.6; }
.demo-right { width: 100%; }
@media (min-width: 1024px) { .demo-right { width: 50%; } }

/* Dashboard Mockup */
.mockup { background: white; border-radius: 24px; box-shadow: 0 25px 60px rgba(10, 61, 46, 0.1); border: 1px solid #f3f4f6; overflow: hidden; transition: transform 0.5s ease; }
.mockup:hover { transform: scale(1.02); }
.mockup-toolbar { height: 40px; background: rgba(249, 250, 251, 0.8); border-bottom: 1px solid #f3f4f6; display: flex; align-items: center; padding: 0 20px; gap: 8px; }
.dot-red, .dot-yellow, .dot-green-sm { width: 12px; height: 12px; border-radius: 50%; }
.dot-red { background: #f87171; } .dot-yellow { background: #fbbf24; } .dot-green-sm { background: #4ade80; }
.mockup-body { display: flex; height: 380px; }
.mockup-sidebar { width: 160px; background: #0a3d2e; padding: 20px; display: flex; flex-direction: column; gap: 16px; flex-shrink: 0; }
.sidebar-logo-placeholder { width: 80px; height: 20px; background: rgba(255, 255, 255, 0.2); border-radius: 4px; margin-bottom: 16px; }
.sidebar-link { color: rgba(255, 255, 255, 0.6); font-size: 11px; font-weight: 700; cursor: pointer; transition: all 0.2s; }
.sidebar-link:hover { color: white; transform: translateX(4px); }
.mockup-main { flex: 1; padding: 32px; background: rgba(249, 250, 251, 0.5); display: flex; flex-direction: column; gap: 24px; overflow: hidden; }
.mockup-label { font-size: 10px; font-weight: 700; color: #9ca3af; text-transform: uppercase; letter-spacing: 0.15em; }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.stat-card { border-radius: 12px; padding: 16px; cursor: default; transition: all 0.2s; }
.stat-card:hover { transform: translateY(-4px); box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08); }
.stat-card.blue { background: rgba(239, 246, 255, 0.8); border: 1px solid rgba(219, 234, 254, 0.5); }
.stat-card.blue .stat-gas { color: #2563eb; } .stat-card.blue .stat-val { color: #1e3a8a; }
.stat-card.red { background: rgba(254, 242, 242, 0.8); border: 1px solid rgba(254, 226, 226, 0.5); }
.stat-card.red .stat-gas { color: #dc2626; } .stat-card.red .stat-val { color: #7f1d1d; }
.stat-card.yellow { background: rgba(255, 251, 235, 0.8); border: 1px solid rgba(254, 243, 199, 0.5); }
.stat-card.yellow .stat-gas { color: #d97706; } .stat-card.yellow .stat-val { color: #78350f; }
.stat-card.purple { background: rgba(245, 243, 255, 0.8); border: 1px solid rgba(237, 233, 254, 0.5); }
.stat-card.purple .stat-gas { color: #7c3aed; } .stat-card.purple .stat-val { color: #4c1d95; }
.stat-gas { font-size: 10px; font-weight: 700; margin-bottom: 4px; }
.stat-val { font-size: 19px; font-weight: 900; }
.chart-box { background: white; border: 1px solid #f3f4f6; border-radius: 12px; padding: 20px; flex: 1; display: flex; flex-direction: column; box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04); }
.chart-label { font-size: 10px; font-weight: 700; color: #9ca3af; margin-bottom: auto; }
.chart-bars { display: flex; align-items: flex-end; height: 100px; gap: 12px; padding: 8px; border-bottom: 1px solid #f3f4f6; }
.bar { flex: 1; background: rgba(10, 61, 46, 0.2); border-radius: 4px 4px 0 0; transition: all 0.3s; cursor: pointer; }
.bar:hover { background: #0a3d2e; transform: scaleY(1.1); }

/* ══════════════════════════════════════ ABOUT ══════════════════════════════════════ */
.about-section { padding: 96px 0; background: white; position: relative; overflow: hidden; }
.about-glow-1 { position: absolute; top: -160px; right: -160px; width: 600px; height: 600px; background: rgba(34, 197, 94, 0.08); border-radius: 50%; filter: blur(120px); pointer-events: none; }
.about-glow-2 { position: absolute; top: 160px; left: -240px; width: 800px; height: 800px; background: rgba(10, 61, 46, 0.04); border-radius: 50%; filter: blur(120px); pointer-events: none; }
.about-grid { display: grid; gap: 64px; align-items: center; }
@media (min-width: 1024px) { .about-grid { grid-template-columns: 7fr 5fr; gap: 96px; } }
.about-card { border-radius: 40px; background: linear-gradient(135deg, #0a3d2e, #0d4f3b, #11694f); padding: 48px; box-shadow: 0 25px 60px rgba(10, 61, 46, 0.2); position: relative; overflow: hidden; }
.about-glow-inner { position: absolute; top: -128px; right: -128px; width: 320px; height: 320px; background: rgba(34, 197, 94, 0.3); border-radius: 50%; filter: blur(100px); pointer-events: none; }
.about-card-content { position: relative; z-index: 10; color: white; }
.about-para-bold { font-size: clamp(21px, 2.5vw, 29px); font-weight: 700; color: white; margin: 0 0 24px; line-height: 1.3; }
.about-para-main { font-size: 17px; color: rgba(255, 255, 255, 0.9); margin: 0 0 32px; line-height: 1.7; }
.about-para-secondary { color: rgba(255, 255, 255, 0.65); line-height: 1.6; margin: 0; }
.about-points { position: relative; display: flex; flex-direction: column; gap: 24px; }
.about-connector { position: absolute; left: 52px; top: 40px; bottom: 40px; width: 2px; background: linear-gradient(to bottom, #22c55e, rgba(34, 197, 94, 0.3), transparent); display: none; }
@media (min-width: 640px) { .about-connector { display: block; } }
.about-point-card { background: white; border-radius: 24px; padding: 24px 32px; box-shadow: 0 10px 30px rgba(10, 61, 46, 0.05); border: 1px solid #f3f4f6; display: flex; align-items: center; gap: 20px; transition: all 0.3s; }
@media (min-width: 640px) { .about-point-card { margin-left: 64px; } }
.about-point-card:hover { border-color: rgba(34, 197, 94, 0.3); box-shadow: 0 15px 40px rgba(34, 197, 94, 0.1); transform: translateY(-4px); }
.point-icon { width: 56px; height: 56px; flex-shrink: 0; border-radius: 50%; background: #f4fbf6; border: 1px solid #e6f2e6; display: flex; align-items: center; justify-content: center; font-size: 24px; }
.point-text { font-weight: 700; color: #111; font-size: 18px; }

/* ══════════════════════════════════════ ACCORDION GALLERY ══════════════════════════════════════ */
.gallery-section { padding: 64px 0 80px; background: white; }
.accordion-gallery { display: flex; gap: 10px; height: 450px; overflow: hidden; }
@media (max-width: 768px) { .accordion-gallery { display: grid !important; grid-template-columns: 1fr 1fr; height: auto !important; } .accordion-gallery .accordion-card { width: 100% !important; flex: none !important; aspect-ratio: 1/1; } .accordion-gallery .accordion-card:last-child { grid-column: span 2; aspect-ratio: 1.8/1; } }
.accordion-card { flex-grow: 1; flex-shrink: 1; flex-basis: 0; min-width: 60px; border-radius: 24px; overflow: hidden; position: relative; cursor: pointer; transition: flex-grow 0.6s cubic-bezier(0.16, 1, 0.3, 1); will-change: flex-grow; }
.accordion-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; display: block; }
.accordion-card:hover { flex-grow: 10; }
.accordion-card:hover img { transform: scale(1.05); }
.accordion-card:hover .accordion-overlay { opacity: 1; }
.accordion-card:hover .accordion-title { opacity: 1; transform: translateY(0); }
.accordion-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent, transparent); opacity: 0; transition: opacity 0.5s ease; display: flex; align-items: flex-end; padding: 24px; }
.accordion-title { color: white; font-weight: 700; font-size: 18px; white-space: nowrap; opacity: 0; transform: translateY(16px); transition: all 0.7s ease 0.1s; }

/* ══════════════════════════════════════ PRICING ══════════════════════════════════════ */
.pricing-section { background: #f0f8ff; padding: 96px 0 40px; position: relative; z-index: 20; }
@media (min-width: 1024px) { .pricing-section { padding: 128px 0 40px; } }
.pricing-header { text-align: center; margin-bottom: 64px; }
.pricing-table-wrap { overflow-x: auto; padding-bottom: 40px; }
.pricing-table { display: grid; grid-template-columns: 1fr; gap: 24px; min-width: 0; }
@media (min-width: 768px) { .pricing-table { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .pricing-table { grid-template-columns: 2fr repeat(3, 1.5fr); min-width: 1100px; } }
.pricing-col { background: white; border-radius: 32px; padding: 32px; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05); display: flex; flex-direction: column; gap: 0; }
.pricing-col-labels { display: none; }
@media (min-width: 1024px) { .pricing-col-labels { display: flex; flex-direction: column; } }
.pricing-col-head { height: 96px; display: flex; align-items: center; justify-content: center; border-bottom: 1px solid #f3f4f6; margin-bottom: 24px; }
.pricing-plan-head { flex-direction: column; }
.envaitech-brand { font-size: 24px; font-weight: 900; color: #0a3d2e; letter-spacing: -0.04em; }
.plan-name { font-size: 19px; font-weight: 900; letter-spacing: 0.1em; margin: 0; }
.plan-name--blue { color: #3b82f6; } .plan-name--green { color: #22c55e; } .plan-name--pink { color: #ec4899; }
.pricing-card { border: 1px solid #f3f4f6; transition: transform 0.3s ease; }
.pricing-card:hover { transform: translateY(-8px); }
.pricing-card--premium { border-color: rgba(34, 197, 94, 0.3); box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08); }
.feat-label { font-size: 13px; font-weight: 700; color: #9ca3af; height: 32px; display: flex; align-items: center; margin-bottom: 0; border-bottom: 0; }
.feat-cell { display: flex; align-items: center; justify-content: center; height: 32px; font-size: 13px; font-weight: 700; color: #4b5563; flex-direction: column; margin-bottom: 24px; gap: 2px; }
.feat-text-sm { font-size: 10px; font-weight: 900; color: #4b5563; text-align: center; }
.feat-text-xs { font-size: 10px; font-weight: 700; color: #9ca3af; text-align: center; }
.check { display: flex; align-items: center; justify-content: center; width: 24px; height: 24px; border-radius: 50%; background: #f0fdf4; border: 1px solid #bbf7d0; color: #22c55e; font-size: 13px; font-weight: 900; }
.cross { display: flex; align-items: center; justify-content: center; width: 24px; height: 24px; border-radius: 50%; background: #fff1f2; border: 1px solid #fecdd3; color: #ef4444; font-size: 13px; font-weight: 900; }
.plan-btn { display: block; width: 100%; padding: 12px; border-radius: 9999px; font-weight: 700; text-align: center; text-decoration: none; font-size: 14px; margin-top: auto; transition: all 0.2s; }
.plan-btn--blue { background: #eff6ff; color: #3b82f6; } .plan-btn--blue:hover { background: #3b82f6; color: white; }
.plan-btn--green { background: #22c55e; color: white; box-shadow: 0 8px 20px rgba(34, 197, 94, 0.3); } .plan-btn--green:hover { background: #1ea750; }
.plan-btn--pink { background: #fff0f6; color: #ec4899; } .plan-btn--pink:hover { background: #ec4899; color: white; }
.pricing-footnote { font-size: 12px; color: #9ca3af; margin-top: 32px; text-align: center; }

/* ══════════════════════════════════════ SOLUTIONS ══════════════════════════════════════ */
.solutions-section { background: white; }
.solutions-header-bg { padding: 128px 24px 160px; background: linear-gradient(to bottom, #bbf7d0, #f0fdf4, white); position: relative; overflow: hidden; }
.sol-glow-1 { position: absolute; top: 0; right: 0; width: 500px; height: 500px; background: rgba(34, 197, 94, 0.1); border-radius: 50%; filter: blur(100px); pointer-events: none; transform: translate(25%, -50%); }
.sol-glow-2 { position: absolute; bottom: 0; left: 0; width: 500px; height: 500px; background: rgba(10, 61, 46, 0.05); border-radius: 50%; filter: blur(120px); pointer-events: none; transform: translate(-25%, 50%); }
.sol-dots { position: absolute; inset: 0 0 40px; background: radial-gradient(#22c55e 1px, transparent 1px); background-size: 20px 20px; opacity: 0.03; pointer-events: none; }
.solutions-header-text { text-align: center; position: relative; z-index: 10; }
.solutions-title { color: #111; }
.solutions-grid-wrap { margin-top: -96px; position: relative; z-index: 20; padding-bottom: 80px; }
.solutions-grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 768px) { .solutions-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .solutions-grid { grid-template-columns: repeat(3, 1fr); gap: 56px; } }
.sol-card { display: flex; flex-direction: column; background: white; border-radius: 24px; padding: 32px; box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06); border: 1px solid #f3f4f6; cursor: default; transition: all 0.3s ease; }
.sol-card:hover { box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1); transform: translateY(-4px); }
@keyframes fadeInUpCard { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
.sol-card-anim { animation: fadeInUpCard 0.7s cubic-bezier(0.16, 1, 0.3, 1) both; }
.sol-img-wrap { border-radius: 20px; overflow: hidden; aspect-ratio: 16/9; margin-bottom: 24px; box-shadow: 0 8px 24px rgba(10, 61, 46, 0.1); border: 1px solid #f3f4f6; }
.sol-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.sol-img-wrap:hover img { transform: scale(1.05); }
.sol-card-title { font-size: 22px; font-weight: 700; color: #111; margin: 0 0 16px; text-align: center; transition: color 0.2s; }
.sol-card:hover .sol-card-title { color: #22c55e; }
.sol-card-desc { color: #6b7280; font-size: 15px; line-height: 1.7; text-align: center; font-weight: 500; margin: 0; }
.sol-contact-row { margin-top: 80px; text-align: center; }

/* ══════════════════════════════════════ TESTIMONIALS ══════════════════════════════════════ */
.testimonials-section { padding: 40px 0 96px; background: linear-gradient(to bottom, #f0f8ff, #f6faf6); overflow: hidden; }
.carousel-wrap { overflow: hidden; padding: 48px 24px 24px; }
.carousel-track { display: flex; gap: 24px; animation: scrollCarousel 30s linear infinite; will-change: transform; width: fit-content; }
.testimonial-card { width: 380px; background: white; border-radius: 24px; border: 1px solid rgba(170, 221, 170, 0.3); padding: 32px; flex-shrink: 0; display: flex; flex-direction: column; justify-content: space-between; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); }
.testimonial-quote { color: #374151; font-size: 17px; font-family: 'Playfair Display', Georgia, serif; font-style: italic; margin: 0 0 32px; line-height: 1.7; }
.testimonial-author { display: flex; align-items: center; gap: 16px; margin-top: auto; }
.testimonial-author img { width: 48px; height: 48px; border-radius: 50%; border: 1px solid #e5e7eb; object-fit: cover; }
.author-name { font-weight: 700; font-size: 14px; color: #111; margin: 0; }
.author-role { color: #0a3d2e; font-weight: 600; font-size: 12px; margin: 2px 0 0; }
.author-company { color: #9ca3af; font-size: 12px; margin: 0; }

/* ══════════════════════════════════════ NEWSLETTER ══════════════════════════════════════ */
.newsletter-section { padding: 80px 0 160px; background: #f6faf6; position: relative; overflow: hidden; }
.news-glow-1 { position: absolute; top: 0; right: 40px; width: 384px; height: 384px; background: rgba(34, 197, 94, 0.2); border-radius: 50%; filter: blur(120px); pointer-events: none; }
.news-glow-2 { position: absolute; bottom: 0; left: 40px; width: 288px; height: 288px; background: rgba(10, 61, 46, 0.3); border-radius: 50%; filter: blur(100px); pointer-events: none; }
.news-card { border-radius: 40px; background: linear-gradient(135deg, #0a3d2e, #0d4f3b, #11694f); padding: 40px; position: relative; overflow: hidden; box-shadow: 0 25px 60px rgba(10, 61, 46, 0.3); }
@media (min-width: 1024px) { .news-card { padding: 64px; } }
.news-pattern { position: absolute; inset: 0; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4'%3E%3Crect width='4' height='4' fill='%23fff' fill-opacity='0.02'/%3E%3C/svg%3E"); opacity: 0.4; mix-blend-mode: overlay; }
.news-glow-inner-1 { position: absolute; top: -128px; left: -128px; width: 600px; height: 600px; background: rgba(255, 255, 255, 0.05); border-radius: 50%; filter: blur(48px); pointer-events: none; }
.news-glow-inner-2 { position: absolute; bottom: -128px; right: -128px; width: 320px; height: 320px; background: rgba(0, 0, 0, 0.4); border-radius: 50%; filter: blur(48px); pointer-events: none; }
.news-content { position: relative; z-index: 10; max-width: 600px; }
.badge-news { display: inline-flex; align-items: center; gap: 8px; padding: 4px 12px; background: rgba(240, 253, 244, 0.15); border-radius: 9999px; color: #86efac; font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 16px; }
.news-title { font-size: clamp(32px, 4vw, 48px); font-weight: 700; line-height: 1.1; margin: 0 0 24px; }
.news-title-white { color: white; }
.news-title-green { background: linear-gradient(to right, #22c55e, #aaddaa); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.news-desc { color: rgba(255, 255, 255, 0.7); font-size: 17px; margin-bottom: 40px; line-height: 1.7; max-width: 520px; }
.news-form { position: relative; max-width: 480px; display: flex; align-items: center; }
.news-input { width: 100%; background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 16px; padding: 20px 160px 20px 24px; font-size: 14px; color: white; outline: none; transition: all 0.3s; height: 64px; font-family: inherit; }
.news-input::placeholder { color: rgba(255, 255, 255, 0.5); }
.news-input:focus { border-color: #22c55e; }
.news-submit { position: absolute; right: 8px; top: 8px; bottom: 8px; padding: 0 24px; background: white; color: #0a3d2e; border: none; border-radius: 12px; font-size: 12px; font-weight: 900; font-family: inherit; cursor: pointer; transition: all 0.2s; }
.news-submit:hover { background: #22c55e; color: white; }
.news-note { margin-top: 24px; font-size: 11px; color: rgba(255, 255, 255, 0.4); display: flex; align-items: center; gap: 6px; font-weight: 500; }
.news-note svg { flex-shrink: 0; }

/* ══════════════════════════════════════ FOOTER ══════════════════════════════════════ */
.footer-premium { background: #051a14; color: white; position: relative; }
.footer-glow { position: absolute; inset: 0; background: radial-gradient(circle at 50% 0%, rgba(34, 197, 94, 0.08) 0%, transparent 70%); pointer-events: none; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 48px; padding-top: 40px; padding-bottom: 48px; position: relative; z-index: 10; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(3, 1fr); gap: 32px; } }
.footer-brand { font-size: 24px; font-weight: 700; color: #22c55e; text-decoration: none; display: inline-block; margin-bottom: 24px; }
.footer-text { font-size: 14px; color: rgba(255, 255, 255, 0.8); margin: 0 0 8px; }
.footer-clock { font-size: 15px; color: rgba(255, 255, 255, 0.7); font-family: 'SFMono-Regular', Consolas, monospace; font-variant-numeric: tabular-nums; }
.footer-col-title { font-size: 11px; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(170, 221, 170, 0.9); margin: 0 0 32px; }
.footer-nav { display: flex; flex-direction: column; gap: 16px; }
.footer-nav a { font-size: 15px; font-weight: 500; color: rgba(255, 255, 255, 0.8); text-decoration: none; width: fit-content; transition: color 0.2s; }
.footer-nav a:hover { color: #22c55e; }
.footer-address { display: flex; flex-direction: column; gap: 12px; }
.footer-address p { font-size: 15px; font-weight: 500; color: rgba(255, 255, 255, 0.8); margin: 0; line-height: 1.6; }
.footer-bottom-bar { border-top: 1px solid rgba(255, 255, 255, 0.05); position: relative; z-index: 10; }
.footer-bottom-inner { display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 24px; padding-top: 24px; padding-bottom: 24px; }
@media (min-width: 640px) { .footer-bottom-inner { flex-direction: row; } }
.social-links { display: flex; align-items: center; gap: 32px; }
.social-link { font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255, 255, 255, 0.5); text-decoration: none; display: inline-flex; align-items: center; gap: 4px; transition: color 0.3s; }
.social-link .chevron { opacity: 0; transform: translateX(-6px); transition: all 0.3s; }
.social-link:hover { color: #22c55e; }
.social-link:hover .chevron { opacity: 1; transform: translateX(0); }
.footer-copy { display: flex; align-items: center; gap: 16px; font-size: 11px; font-weight: 500; color: rgba(255, 255, 255, 0.5); text-transform: uppercase; letter-spacing: 0.1em; }

/* ══════════════════════════════════════
   CUSTOM SCROLLBAR
   ══════════════════════════════════════ */
/* Chrome, Edge ve Safari için */
::-webkit-scrollbar {
  width: 8px; /* Barın kalınlığı */
}

::-webkit-scrollbar-track {
  background: #173d2e; /* Arka plan rengi (açık gri) */
}

::-webkit-scrollbar-thumb {
  background: #173d2e; /* Kaydırma çubuğunun rengi */
  border-radius: 10px; /* Kenar yuvarlaklığı */
}

::-webkit-scrollbar-thumb:hover {
  background: #0a3d2e; /* Üzerine gelince EnvAItech yeşili olsun */
}

/* Firefox için */
html {
  scrollbar-width: thin;
  scrollbar-color: #173d2e #f3f4f6;
}