/* ═══════════════════════════════════════════════════
   YAZLIX — style.css
   Brand: #FF6A00 (orange) · #FFFFFF · Poppins
═══════════════════════════════════════════════════ */

/* ── Variables ── */
:root {
  --orange:       #FF6A00;
  --orange-dark:  #E55D00;
  --orange-light: #FFF3EB;
  --black:        #111111;
  --dark:         #1C1C1C;
  --text:         #2E2E2E;
  --muted:        #6B6B6B;
  --border:       #E8E8E8;
  --bg-light:     #F8F7F5;
  --white:        #FFFFFF;

  --font:         'Poppins', sans-serif;
  --radius:       14px;
  --radius-lg:    22px;
  --shadow-sm:    0 2px 10px rgba(0,0,0,.06);
  --shadow:       0 6px 28px rgba(0,0,0,.09);
  --shadow-hover: 0 14px 48px rgba(255,106,0,.18);
  --transition:   .3s ease;
  --nav-h:        108px;
  --container:    1180px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); color: var(--text); background: var(--white); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: var(--font); }
input, textarea, select { font-family: var(--font); }

/* ── Container ── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

/* ── Section shared ── */
/* section { padding-block: 100px; } */

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-overline {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .16em;
  color: var(--orange);
  margin-bottom: 14px;
}
.section-overline.light { color: rgba(255,255,255,.65); }

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--black);
  letter-spacing: -.02em;
}
.section-title.light { color: var(--white); }
.section-title.left  { text-align: left; }

.accent { color: var(--orange); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: .9rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(255,106,0,.35);
}
.btn-primary:hover {
  background: var(--orange-dark);
  box-shadow: 0 8px 32px rgba(255,106,0,.45);
  transform: translateY(-2px);
}
.btn-outline {
  border: 2px solid var(--border);
  color: var(--text);
}
.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}
.btn-full { width: 100%; justify-content: center; }

/* ── Fade-in animation ── */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════ */
.navbar {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--orange);
  font-weight: 700;
  letter-spacing: .1em;
  transition: opacity var(--transition);
}
.logo:hover { opacity: .8; }
.logo-img   { height: 150px; width: auto; display: block; }
.logo-white { color: var(--white); }
.logo-mark  { height: 36px; width: auto; }
.logo-text  { font-size: 1.1rem; font-weight: 700; letter-spacing: .12em; }

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  padding: 8px 14px;
  font-size: .875rem;
  font-weight: 500;
  color: var(--text);
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--orange);
  background: var(--orange-light);
}
.nav-links a.nav-cta {
  background: var(--orange);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 50px;
  box-shadow: 0 4px 16px rgba(255,106,0,.3);
}
.nav-links a.nav-cta:hover {
  background: var(--orange-dark);
  color: var(--white);
}

/* Navbar on transparent hero */
.navbar:not(.scrolled) .nav-links a:not(.nav-cta) { color: var(--text); }

/* Language toggle */
.lang-btn {
  font-size: .8rem;
  font-weight: 600;
  color: var(--muted);
  padding: 6px 12px;
  border-radius: 6px;
  border: 1.5px solid var(--border);
  transition: var(--transition);
  letter-spacing: .05em;
}
.lang-btn:hover { border-color: var(--orange); color: var(--orange); }
.lang-sep { color: var(--border); margin-inline: 2px; }
#langActive { color: var(--orange); font-weight: 700; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-actions { display: flex; align-items: center; gap: 12px; }

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}

/* Stats bar */
.hero-stats-bar,
.hero-stats-bottom {
  display: flex;
  align-items: stretch;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  width: 100%;
  overflow: hidden;
  margin-bottom: 40px;
}
.hsb-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 28px;
  flex: 1;
  background: transparent;
  border: none;
  box-shadow: none;
}
.hsb-divider {
  width: 1px;
  background: var(--border);
  margin: 12px 0;
  flex-shrink: 0;
}
.hsb-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--orange-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.hsb-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.hsb-num {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1.2;
}
.hsb-label {
  font-size: .78rem;
  color: var(--text);
  font-weight: 600;
  margin-top: 1px;
}
.hsb-desc {
  font-size: .68rem;
  color: var(--muted);
  line-height: 1.4;
  margin-top: 2px;
}

/* Hero inner grid */
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 540px;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
  padding-block: 52px 40px;
  width: 100%;
}

.hero-overline {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .2em;
  color: var(--orange);
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--black);
  letter-spacing: -.03em;
  margin-bottom: 24px;
}
.hero-title em {
  font-style: normal;
  color: var(--orange);
}

.hero-subtitle {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--bg-light);
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 500;
  color: var(--text);
  border: 1px solid var(--border);
}
.hero-badge i { color: var(--orange); font-size: .75rem; }

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-main-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 28px 80px rgba(0,0,0,.18), 0 4px 20px rgba(255,106,0,.12);
  display: block;
  transition: transform .5s ease;
}
.hero-main-img:hover { transform: scale(1.015); }

/* Owner portrait overlay */
.hero-owner-photo {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--white);
  box-shadow: 0 8px 28px rgba(0,0,0,.18);
  z-index: 2;
  transition: transform .3s ease;
  cursor: default;
}
.hero-owner-photo:hover { transform: scale(1.06); }
.hero-owner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* Scroll hint — hidden */
.hero-scroll { display: none; }

/* ══════════════════════════════════════════
   BRANDS STRIP
══════════════════════════════════════════ */
.brands-strip {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
}
.brands-strip-inner {
  display: flex;
  align-items: center;
  gap: 32px;
}
.brands-label {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .14em;
  color: var(--muted);
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
  opacity: .75;
}
.brands-track {
  display: flex;
  align-items: center;
  gap: 20px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 2px;
}
.brands-track::-webkit-scrollbar { display: none; }
.brand-item {
  font-size: .78rem;
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
  letter-spacing: .06em;
  text-transform: uppercase;
  opacity: .6;
  transition: opacity var(--transition), color var(--transition);
}
.brand-item:hover { opacity: 1; color: var(--orange); }
.brand-sep {
  color: var(--border);
  font-size: 1.2rem;
  line-height: 1;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════
   FEATURES — Neden Yazlix
══════════════════════════════════════════ */
.features { background: var(--bg-light); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.feature-icon {
  width: 52px; height: 52px;
  background: var(--orange-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.2rem;
  color: var(--orange);
  transition: background var(--transition), transform var(--transition);
}
.feature-card:hover .feature-icon {
  background: var(--orange);
  color: var(--white);
  transform: rotate(-5deg) scale(1.05);
}

.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--black);
}
.feature-card p {
  font-size: .9rem;
  line-height: 1.75;
  color: var(--muted);
}

/* ══════════════════════════════════════════
   SERVICES — category grid
══════════════════════════════════════════ */
.svc-categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.svc-cat-card {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid transparent;
  transition: var(--transition);
}
.svc-cat-card:hover {
  background: var(--white);
  border-color: var(--orange);
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}
.svc-cat-icon {
  width: 52px; height: 52px;
  background: var(--white);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 1.2rem;
  margin-bottom: 18px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.svc-cat-card:hover .svc-cat-icon {
  background: var(--orange);
  color: var(--white);
}
.svc-cat-card h3 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 16px;
  line-height: 1.3;
}
.svc-cat-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.svc-cat-list li {
  font-size: .85rem;
  color: var(--muted);
  padding-left: 14px;
  position: relative;
  line-height: 1.5;
}
.svc-cat-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 5px; height: 5px;
  background: var(--orange);
  border-radius: 50%;
}

/* ══════════════════════════════════════════
   SERVICES — old grid (kept for reference)
══════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid transparent;
  position: relative;
  transition: var(--transition);
  cursor: default;
}
.service-card:hover {
  background: var(--white);
  border-color: var(--orange);
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}
.service-card:hover .svc-icon {
  background: var(--orange);
  color: var(--white);
}

.service-card-featured {
  background: var(--orange-light);
  border: 1.5px dashed var(--orange);
}
.service-card-featured:hover { background: var(--white); }

.svc-icon {
  width: 46px; height: 46px;
  background: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 1.1rem;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.service-card-featured .svc-icon { background: var(--orange); color: var(--white); }

.service-card h3 { font-size: .95rem; font-weight: 600; margin-bottom: 8px; color: var(--black); }
.service-card p  { font-size: .85rem; line-height: 1.7; color: var(--muted); }

.svc-new-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--orange);
  color: var(--white);
  font-size: .65rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  letter-spacing: .05em;
}

/* ══════════════════════════════════════════
   ECOSYSTEM (Ürünler)
══════════════════════════════════════════ */
.ecosystem {
  background: #0A0A0A;
  padding-block: 96px;
}

.eco-header-desc {
  font-size: .95rem;
  color: rgba(255,255,255,.5);
  max-width: 560px;
  margin: 16px auto 0;
  line-height: 1.75;
  text-align: center;
}

/* Sub-section */
.eco-subsection { margin-top: 56px; }

.eco-sub-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.eco-sub-title-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.eco-sub-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.eco-sub-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin: 0;
}

.eco-sub-desc {
  font-size: .8rem;
  color: rgba(255,255,255,.45);
  margin: 2px 0 0;
}

.eco-see-all {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255,255,255,.6);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50px;
  padding: 8px 18px;
  transition: var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}
.eco-see-all:hover {
  border-color: var(--orange);
  color: var(--orange);
}

/* Big cards grid */
.eco-big-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.eco-big-card {
  display: flex;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 300px;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,.07);
}
.eco-big-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
  border-color: rgba(255,255,255,.15);
}

/* Card gradient backgrounds — brand-consistent */
.eco-card-adser { background: linear-gradient(135deg, #020c20 0%, #071a46 100%); }
.eco-card-pulse { background: linear-gradient(135deg, #021510 0%, #052b1e 100%); }
.eco-card-web   { background: linear-gradient(135deg, #0c0520 0%, #160838 100%); }
.eco-card-app   { background: linear-gradient(135deg, #0e0025 0%, #1a0045 100%); }

/* Body (left text) */
.eco-big-card-body {
  flex: 0 0 48%;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Visual (right image) */
.eco-big-card-visual {
  flex: 1;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 20px 0 0;
  position: relative;
}
.eco-big-card-visual img {
  width: 115%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: top left;
  border-radius: 12px 0 0 0;
  display: block;
  transition: transform .5s ease;
  box-shadow: -8px 8px 40px rgba(0,0,0,.5);
}
.eco-big-card:hover .eco-big-card-visual img { transform: scale(1.03) translateY(-4px); }

/* Status badge */
.eco-status-badge {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  border-radius: 50px;
  padding: 3px 10px;
  margin-bottom: 16px;
  align-self: flex-start;
}
.eco-badge-active {
  background: rgba(16,185,129,.15);
  color: #10B981;
  border: 1px solid rgba(16,185,129,.3);
}
.eco-badge-dev {
  background: rgba(251,191,36,.12);
  color: #FBBF24;
  border: 1px solid rgba(251,191,36,.28);
}

/* Product icon */
.eco-product-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 16px;
  flex-shrink: 0;
}
.eco-icon-adser  { background: rgba(37,99,235,.2);    color: #3B82F6; }
.eco-icon-pulse  { background: rgba(16,185,129,.15);  color: #10B981; }
.eco-icon-web    { background: rgba(139,92,246,.2);   color: #A78BFA; }
.eco-icon-app    { background: rgba(124,58,237,.2);   color: #8B5CF6; }

/* Card text */
.eco-card-title {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 10px;
  letter-spacing: -.02em;
}

.eco-card-desc {
  font-size: .875rem;
  line-height: 1.7;
  color: rgba(255,255,255,.6);
  margin: 0 0 20px;
}

/* Feature chips */
.eco-feature-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.eco-feature-chips span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .75rem;
  font-weight: 500;
  color: rgba(255,255,255,.65);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50px;
  padding: 4px 12px;
}
.eco-feature-chips span i { color: var(--orange); font-size: .65rem; }
.eco-chips-check span i   { color: #10B981; }

/* Card button */
.eco-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255,255,255,.8);
  border: 1.5px solid rgba(255,255,255,.2);
  border-radius: 50px;
  padding: 9px 20px;
  transition: var(--transition);
  align-self: flex-start;
  margin-top: auto;
}
.eco-card-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

/* Coming-soon grid */
.eco-coming-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.eco-coming-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  transition: var(--transition);
}
.eco-coming-card:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.15);
}
.eco-coming-placeholder {
  border-style: dashed;
  border-color: rgba(255,255,255,.06);
  background: transparent;
}

.eco-coming-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.eco-coming-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  flex-shrink: 0;
}

.eco-coming-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.eco-coming-name {
  font-size: .9rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.eco-name-dim { color: rgba(255,255,255,.35) !important; }

.eco-coming-badge {
  display: inline-block;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .07em;
  background: rgba(251,191,36,.12);
  color: #FBBF24;
  border: 1px solid rgba(251,191,36,.25);
  border-radius: 50px;
  padding: 2px 8px;
  align-self: flex-start;
}

.eco-coming-desc {
  font-size: .8rem;
  line-height: 1.65;
  color: rgba(255,255,255,.45);
  margin: 0;
}
.eco-desc-dim { color: rgba(255,255,255,.2) !important; }

/* Footer note */
.eco-footer-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 48px;
  font-size: .88rem;
  color: rgba(255,255,255,.45);
  text-align: center;
}
.eco-footer-note i { color: #FBBF24; font-size: .85rem; }

/* ══════════════════════════════════════════
   PRODUCT SCREENSHOT (legacy — kept for safety)
══════════════════════════════════════════ */
.transformation { background: var(--bg-light); }

.section-desc {
  font-size: 1rem;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Feature image */
.trans-feature {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 48px;
  box-shadow: var(--shadow-hover);
}
.trans-feature > img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.trans-feature-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(28,28,28,.88) 0%, rgba(28,28,28,.4) 60%, transparent 100%);
  padding: 40px 48px;
  color: var(--white);
}
.trans-feature-tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  color: var(--white);
  background: var(--orange);
  border-radius: 50px;
  padding: 4px 14px;
  margin-bottom: 14px;
}
.trans-feature-overlay h3 {
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
}
.trans-feature-overlay p {
  font-size: .95rem;
  opacity: .85;
  max-width: 520px;
}

/* Cases grid */
.trans-cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}
.trans-case-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.trans-case-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.trans-case-card > img {
  width: 100%;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.trans-case-body { padding: 20px 24px 26px; }
.trans-case-tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .07em;
  color: var(--orange);
  background: rgba(255,106,0,.1);
  border-radius: 50px;
  padding: 3px 11px;
  margin-bottom: 10px;
}
.trans-case-body h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.trans-case-body p {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.65;
}

/* Masa kartı showcase */
.trans-cases-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 24px;
  padding-left: 2px;
  letter-spacing: -.01em;
}
.trans-masa-highlight {
  font-size: .95rem;
  font-weight: 600;
  color: var(--orange);
  margin-top: 16px;
  line-height: 1.6;
}
/* Masa kartı showcase */
.trans-masa-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 56px 60px;
  box-shadow: var(--shadow);
}
.trans-masa-text h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--dark);
  margin: 16px 0 10px;
  line-height: 1.3;
}
.trans-masa-first-value {
  font-size: .82rem !important;
  font-weight: 600 !important;
  color: rgba(255,106,0,.85) !important;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin: 0 0 18px !important;
  border-left: 3px solid var(--orange);
  padding-left: 10px;
}
.trans-masa-text p {
  font-size: .95rem;
  line-height: 1.8;
  color: var(--muted);
}
/* Masa kartı 3-D product look */
.masa-card-flip {
  perspective: 1600px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 16px 48px;
  position: relative;
}
/* Floor shadow */
.masa-card-flip::after {
  content: '';
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%) rotateX(80deg) scaleX(.85);
  width: 72%;
  height: 40px;
  background: radial-gradient(ellipse at center, rgba(0,0,0,.35) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.masa-card-inner {
  position: relative;
  width: 100%;
  max-width: 310px;
  transition: transform 0.85s cubic-bezier(.4,0,.2,1);
  transform-style: preserve-3d;
  transform: rotateY(-6deg) rotateX(3deg);
}
.masa-card-inner:hover {
  transform: rotateY(-2deg) rotateX(1deg) translateY(-6px);
}
.masa-card-inner.is-flipped {
  transform: rotateY(174deg) rotateX(3deg);
}
.masa-card-face {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  position: relative;
}
/* Glossy highlight overlay */
.masa-card-face::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  background: linear-gradient(
    135deg,
    rgba(255,255,255,.18) 0%,
    rgba(255,255,255,.04) 40%,
    transparent 60%
  );
  pointer-events: none;
  z-index: 1;
}
.masa-card-back {
  position: absolute;
  inset: 0;
  transform: rotateY(180deg);
}
.masa-card-face img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow:
    0 2px 4px rgba(0,0,0,.12),
    0 8px 24px rgba(0,0,0,.22),
    0 20px 48px rgba(0,0,0,.18),
    inset 0 1px 0 rgba(255,255,255,.25);
  display: block;
  object-fit: contain;
  cursor: pointer;
}

/* WebsizOlmaz brand logo visual */
.eco-visual-logo {
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.04);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 32px;
}
.eco-brand-logo-img {
  width: auto !important;
  max-width: 160px !important;
  max-height: 120px !important;
  height: auto !important;
  object-fit: contain !important;
  border-radius: 12px !important;
  box-shadow: 0 8px 32px rgba(0,0,0,.4) !important;
  transition: transform .5s ease !important;
  display: block !important;
  margin: auto !important;
}
.eco-big-card:hover .eco-brand-logo-img { transform: scale(1.06) !important; }

/* ══════════════════════════════════════════
   ABOUT
══════════════════════════════════════════ */
.about { background: var(--bg-light); }

.about-inner {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 80px;
  align-items: start;
}

/* Photo */
.about-photo-col { position: sticky; top: 100px; }

.photo-frame {
  position: relative;
  margin-bottom: 28px;
}

.photo-frame img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: fill;
  object-position: top center;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  position: relative;
  z-index: 1;
}

/* Placeholder if image missing */
.photo-frame:not(:has(img[src])) {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--orange-light) 0%, var(--border) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: .9rem;
}

.photo-deco-ring {
  position: absolute;
  top: -16px; right: -16px;
  width: 120px; height: 120px;
  border: 3px solid var(--orange);
  border-radius: 50%;
  opacity: .25;
  z-index: 0;
}
.photo-deco-dot {
  position: absolute;
  width: 14px; height: 14px;
  background: var(--orange);
  border-radius: 50%;
  z-index: 2;
}
.photo-deco-dot.top-right    { top: 20px; right: -7px; }
.photo-deco-dot.bottom-left  { bottom: 40px; left: -7px; opacity: .5; }

.about-stats-row {
  display: flex;
  gap: 0;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.about-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 8px;
  border-right: 1px solid var(--border);
  text-align: center;
}
.about-stat:last-child { border-right: none; }
.as-number { font-size: 1.4rem; font-weight: 700; color: var(--orange); line-height: 1; }
.as-label  { font-size: .68rem; color: var(--muted); font-weight: 500; margin-top: 4px; }

/* About text */
.about-text-col { padding-top: 8px; }
.about-name {
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--black);
  letter-spacing: -.02em;
  margin-block: 12px 4px;
}
.about-role { font-size: .9rem; font-weight: 500; color: var(--orange); margin-bottom: 28px; }
.about-bio  { font-size: .95rem; line-height: 1.85; color: var(--muted); margin-bottom: 16px; }

.about-contacts { display: flex; flex-direction: column; gap: 12px; margin-block: 28px; }
.about-contact-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .875rem;
  font-weight: 500;
  color: var(--text);
  transition: color var(--transition);
}
.about-contact-link i { color: var(--orange); width: 18px; }
.about-contact-link:hover { color: var(--orange); }

/* ══════════════════════════════════════════
   SKILLS
══════════════════════════════════════════ */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.skill-cat {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.skill-cat:hover {
  border-color: var(--orange);
  box-shadow: 0 6px 24px rgba(255,106,0,.1);
}

.skill-cat-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.skill-cat-header i { color: var(--orange); font-size: 1rem; }
.skill-cat-header h3 { font-size: .95rem; font-weight: 600; color: var(--black); }

.skill-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.stag {
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: .78rem;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 50px;
  transition: var(--transition);
}
.skill-cat:hover .stag {
  border-color: var(--orange);
  color: var(--orange);
}

/* ══════════════════════════════════════════
   REFERENCES
══════════════════════════════════════════ */
.references { background: var(--bg-light); }

/* Slider wrapper */
.refs-slider-wrap { position: relative; }

.refs-slider-viewport {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.refs-slider-track {
  display: flex;
  transition: transform .48s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}

.refs-slide {
  flex: 0 0 100%;
  width: 100%;
  box-sizing: border-box;
}

/* Navigation */
.refs-slider-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}

.refs-nav-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  font-size: .88rem;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}
.refs-nav-btn:hover {
  border-color: var(--orange);
  color: var(--orange);
  box-shadow: var(--shadow);
}

.refs-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.refs-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--border);
  cursor: pointer;
  padding: 0;
  transition: all .3s ease;
}
.refs-dot.active {
  background: var(--orange);
  width: 26px;
  border-radius: 4px;
}

.ref-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}
.ref-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--orange);
}

.ref-quote-icon {
  font-size: 1.5rem;
  color: var(--orange);
  opacity: .3;
  margin-bottom: 16px;
  display: block;
}

.ref-text {
  font-size: .9rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 24px;
  font-style: italic;
}

.ref-author { display: flex; align-items: center; gap: 14px; }
.ref-avatar {
  width: 44px; height: 44px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 700;
  flex-shrink: 0;
}
.ref-name  { display: block; font-size: .9rem; font-weight: 600; color: var(--black); }
.ref-role  { display: block; font-size: .78rem; color: var(--muted); margin-top: 2px; }

/* Featured ref card */
.ref-card-featured {
  background: linear-gradient(135deg, #FFF8F3 0%, var(--white) 60%);
  border-color: rgba(255,106,0,.35);
  padding: 40px 48px;
}

.ref-featured-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.ref-featured-company { display: flex; flex-direction: column; gap: 4px; }
.ref-company-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--black);
}
.ref-company-website {
  font-size: .8rem;
  color: var(--orange);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: var(--transition);
}
.ref-company-website:hover { text-decoration: underline; }

.ref-header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  flex-shrink: 0;
}

.ref-years-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .75rem;
  font-weight: 600;
  color: var(--orange);
  background: rgba(255,106,0,.08);
  border: 1px solid rgba(255,106,0,.2);
  padding: 4px 12px;
  border-radius: 50px;
  white-space: nowrap;
}

.ref-stars {
  display: flex;
  gap: 3px;
  color: #FFB800;
  font-size: 1.05rem;
  flex-shrink: 0;
}

.ref-featured-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 8px;
}

.ref-services-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.ref-services-tags span {
  font-size: .72rem;
  font-weight: 500;
  color: var(--orange);
  background: rgba(255,106,0,.07);
  border: 1px solid rgba(255,106,0,.2);
  padding: 3px 11px;
  border-radius: 50px;
}

/* ══════════════════════════════════════════
   CONTACT
══════════════════════════════════════════ */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-desc {
  font-size: .95rem;
  line-height: 1.75;
  color: var(--muted);
  margin-block: 20px 32px;
}

.contact-items { display: flex; flex-direction: column; gap: 16px; }

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--bg-light);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
  text-decoration: none;
}
.contact-item:hover {
  border-color: var(--orange);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.ci-icon {
  width: 44px; height: 44px;
  background: var(--orange-light);
  color: var(--orange);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: var(--transition);
}
.ci-icon.whatsapp { background: #e7f7ee; color: #25D366; }
.contact-item:hover .ci-icon { background: var(--orange); color: var(--white); }

.ci-text { display: flex; flex-direction: column; }
.ci-label { font-size: .72rem; font-weight: 600; color: var(--muted); letter-spacing: .05em; text-transform: uppercase; }
.ci-val   { font-size: .9rem; font-weight: 500; color: var(--text); margin-top: 2px; }

/* Form */
.contact-form-col { padding-top: 48px; }

.contact-form { display: flex; flex-direction: column; gap: 16px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label { font-size: .8rem; font-weight: 600; color: var(--text); }
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: .9rem;
  color: var(--text);
  background: var(--bg-light);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(255,106,0,.1);
}
.form-group input:invalid:not(:placeholder-shown),
.form-group textarea:invalid:not(:placeholder-shown) {
  border-color: #E53E3E;
}

.form-success,
.form-error {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 10px;
  padding: 14px 18px;
  font-size: .875rem;
}
.form-success {
  background: #edfdf5;
  border: 1px solid #68d391;
  color: #276749;
}
.form-success i { color: #38a169; font-size: 1.1rem; }
.form-error {
  background: #fff5f5;
  border: 1px solid #FC8181;
  color: #9B2C2C;
}
.form-error i { color: #E53E3E; font-size: 1.1rem; }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
/* ══════════════════════════════════════════
   Footer — new 3-column layout
══════════════════════════════════════════ */
.footer { background: #111; padding: 0; }

.footer-main {
  display: flex;
  align-items: center;
  padding: 52px 72px;
  gap: 0;
}

.footer-brand-col {
  flex: 0 0 auto;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.footer-tagline-txt {
  font-size: .62rem;
  letter-spacing: .2em;
  color: rgba(255,255,255,.38);
  font-weight: 600;
}

.footer-vdiv {
  width: 1px;
  height: 88px;
  background: rgba(255,255,255,.12);
  flex-shrink: 0;
  margin-inline: 52px;
}

.footer-cta-col {
  flex: 1;
  text-align: center;
  padding-inline: 20px;
}

.footer-cta-text {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255,255,255,.8);
  font-weight: 400;
}

.footer-accent {
  color: var(--orange);
  font-weight: 700;
}

.footer-contact-col {
  flex: 0 0 auto;
  min-width: 210px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-citem {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  color: rgba(255,255,255,.7);
  transition: color var(--transition);
  text-decoration: none;
}
.footer-citem:hover { color: var(--orange); }

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.5);
  font-size: .85rem;
  transition: var(--transition);
  text-decoration: none;
}
.footer-social a:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(255,106,0,.08);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 72px;
  text-align: center;
  font-size: .82rem;
  color: rgba(255,255,255,.32);
}

.footer-sep { margin-inline: 10px; opacity: .4; }

.footer-policy-link {
  color: rgba(255,255,255,.32);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-policy-link:hover { color: var(--orange); }

.footer-accent-link { color: var(--orange); }
.footer-accent-link:hover { color: #e05e00; }

/* Honeypot — bot koruması */
.hp-field {
  position: absolute;
  width: 0; height: 0;
  padding: 0; border: 0;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
}

/* ══════════════════════════════════════════
   Lightbox
══════════════════════════════════════════ */
.lightbox-trigger {
  cursor: zoom-in;
}
.lb-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.88);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  animation: lbFadeIn .2s ease;
}
.lb-overlay[hidden] { display: none; }
@keyframes lbFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.lb-img-wrap {
  max-width: min(90vw, 900px);
  max-height: 90vh;
  position: relative;
}
.lb-img {
  display: block;
  max-width: 100%;
  max-height: 90vh;
  border-radius: 12px;
  box-shadow: 0 24px 80px rgba(0,0,0,.6);
  object-fit: contain;
  animation: lbZoomIn .22s cubic-bezier(.4,0,.2,1);
}
@keyframes lbZoomIn {
  from { transform: scale(.88); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}
.lb-close {
  position: fixed;
  top: 20px;
  right: 24px;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.3);
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.9);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s, border-color .2s;
  z-index: 2001;
}
.lb-close:hover {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.6);
}

/* Trans-case card image pointer */
.trans-case-card img { cursor: zoom-in; }

/* ══════════════════════════════════════════
   WhatsApp Float
══════════════════════════════════════════ */
/* WhatsApp Chat Widget */
/* ══════════════════════════════════════════
   WHATSAPP CHAT WIDGET
══════════════════════════════════════════ */
.wa-widget {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.wa-toggle-btn {
  position: relative;
  width: 60px; height: 60px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 8px 28px rgba(255,106,0,.5);
  transition: transform var(--transition), box-shadow var(--transition);
  font-family: var(--font);
}
.wa-toggle-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 14px 40px rgba(255,106,0,.6);
}
.wa-toggle-btn.wa-open { background: #555; }
.wa-badge {
  position: absolute;
  top: -4px; right: -4px;
  width: 20px; height: 20px;
  background: #22c55e;
  color: var(--white);
  border-radius: 50%;
  font-size: .68rem;
  font-weight: 700;
  display: none;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--white);
  font-family: var(--font);
}
/* green dot on toggle btn */
.wa-toggle-btn::after {
  content: '';
  position: absolute;
  bottom: 2px; right: 2px;
  width: 14px; height: 14px;
  background: #22c55e;
  border-radius: 50%;
  border: 2px solid var(--white);
}
.wa-chat-box {
  width: 380px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 20px 64px rgba(0,0,0,.18), 0 4px 20px rgba(255,106,0,.1);
  overflow: hidden;
  animation: waChatIn .28s cubic-bezier(.34,1.56,.64,1);
}
@keyframes waChatIn {
  from { opacity: 0; transform: translateY(16px) scale(.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.wa-chat-box[hidden] { display: none; }
.wa-chat-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 18px 18px;
  background: linear-gradient(135deg, var(--orange) 0%, #FF8C00 100%);
  position: relative;
}
.wa-avatar-wrap {
  position: relative;
  flex-shrink: 0;
}
.wa-avatar-img {
  width: 56px; height: 56px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  border: 2.5px solid rgba(255,255,255,.45);
  display: block;
}
.wa-online-dot {
  position: absolute;
  bottom: 2px; right: 2px;
  width: 13px; height: 13px;
  background: #22c55e;
  border-radius: 50%;
  border: 2px solid var(--white);
}
.wa-chat-info { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.wa-chat-name  { font-size: 1rem; font-weight: 700; color: var(--white); line-height: 1.25; }
.wa-chat-role  { font-size: .78rem; color: rgba(255,255,255,.85); }
.wa-chat-status { font-size: .75rem; color: rgba(255,255,255,.9); display: flex; align-items: center; gap: 5px; margin-top: 3px; }
.wa-chat-status i { font-size: .65rem; }
.wa-header-btns { display: flex; align-items: center; gap: 6px; margin-top: 2px; }
.wa-hbtn {
  background: rgba(255,255,255,.18);
  border: none;
  color: var(--white);
  width: 28px; height: 28px;
  border-radius: 50%;
  cursor: pointer;
  font-size: .95rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
  font-family: var(--font);
}
.wa-hbtn:hover { background: rgba(255,255,255,.32); }
.wa-chat-body {
  padding: 20px 18px 14px;
  background: #f5f0eb;
}
.wa-chat-bubble {
  display: inline-block;
  background: var(--white);
  border-radius: 4px 16px 16px 16px;
  padding: 12px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,.07);
  max-width: 88%;
}
.wa-chat-bubble p { font-size: .88rem; color: var(--text); line-height: 1.55; margin: 0; }
.wa-chat-bubble p + p { margin-top: 3px; }
.wa-reply-hint {
  font-size: .72rem;
  color: var(--muted);
  margin-top: 10px;
  padding-left: 2px;
}
.wa-chat-footer {
  background: var(--white);
  padding: 12px 16px 0;
}
.wa-input-row {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid #e5e7eb;
  border-radius: 50px;
  padding: 7px 8px 7px 14px;
  margin-bottom: 10px;
  transition: border-color .2s;
}
.wa-input-row:focus-within { border-color: var(--orange); }
.wa-icon-btn {
  background: none;
  border: none;
  color: #9ca3af;
  cursor: pointer;
  font-size: 1.05rem;
  padding: 0;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  transition: color .2s;
}
.wa-icon-btn:hover { color: var(--orange); }
.wa-msg-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: .86rem;
  font-family: var(--font);
  color: var(--text);
  background: transparent;
  min-width: 0;
}
.wa-msg-input::placeholder { color: #9ca3af; }
.wa-send-btn {
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 8px 16px;
  font-size: .8rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background .2s;
  font-family: var(--font);
  white-space: nowrap;
  flex-shrink: 0;
}
.wa-send-btn:hover { background: #e05d00; }
.wa-info-bar {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 8px;
  background: #fff8f0;
  margin: 0 -16px;
  padding: 10px 16px;
  border-top: 1px solid #fee8d0;
}
.wa-info-bar span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: .7rem;
  color: #b35400;
  font-weight: 500;
  white-space: nowrap;
}
.wa-info-bar i { color: var(--orange); }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner    { grid-template-columns: 1fr; max-width: 640px; margin-inline: auto; padding-block: 40px 32px; }
  .hero-visual   { margin-top: 24px; }
  .hero-main-img { border-radius: var(--radius); }
  .hero-owner-photo { width: 90px; height: 90px; top: -10px; right: -10px; }
  .hero-stats-bottom { border-radius: var(--radius); }
  .brands-strip-inner { flex-direction: column; align-items: flex-start; gap: 14px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner   { grid-template-columns: 1fr; max-width: 600px; margin-inline: auto; }
  .about-photo-col { position: static; }
  .photo-frame img { aspect-ratio: 4/5; }
  .skills-grid   { grid-template-columns: repeat(2, 1fr); }
  /* refs-slider adapts automatically */
  .contact-inner { grid-template-columns: 1fr; max-width: 600px; margin-inline: auto; }
  .contact-form-col { padding-top: 0; }
  .footer-main { padding-inline: 40px; }
  .footer-vdiv  { margin-inline: 32px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 84px; }
  section { padding-block: 72px; }

  /* Mobile nav */
  .nav-links {
    position: fixed;
    inset-block-start: var(--nav-h);
    inset-inline: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 24px 24px;
    gap: 4px;
    box-shadow: var(--shadow);
    transform: translateY(-110%);
    opacity: 0;
    transition: transform .35s ease, opacity .35s ease;
    pointer-events: none;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 12px 16px;
    width: 100%;
  }
  .nav-links a.nav-cta {
    text-align: center;
    margin-top: 8px;
    border-radius: var(--radius);
  }
  .hamburger { display: flex; }
  .navbar.scrolled { background: var(--white); }

  .features-grid     { grid-template-columns: 1fr; }
  .services-grid     { grid-template-columns: 1fr; }
  .products-grid     { grid-template-columns: 1fr; }
  .skills-grid       { grid-template-columns: 1fr; }
  /* refs-slider: 1 card per view on mobile */
  .form-row          { grid-template-columns: 1fr; }
  .footer-main       { flex-direction: column; align-items: flex-start; gap: 32px; padding: 40px 24px; }
  .footer-vdiv        { width: 100%; height: 1px; margin-inline: 0; }
  .footer-cta-col     { text-align: left; }
  .footer-bottom      { padding-inline: 24px; }
  .trans-cases-grid  { grid-template-columns: 1fr; }
  .trans-masa-row    { grid-template-columns: 1fr; gap: 32px; padding: 36px 28px; }
  .trans-feature-overlay h3 { font-size: 1.2rem; }
  .trans-feature-overlay { padding: 24px 24px; }

  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats-bottom { flex-direction: column; }
  .hsb-divider { width: auto; height: 1px; margin: 0 16px; background: var(--border); }
  .hsb-item { padding: 14px 20px; flex: none; }
  .wa-chat-box { width: calc(100vw - 56px); max-width: 360px; }
}

/* ══════════════════════════════════════════
   BİLDİRİM MODALI
══════════════════════════════════════════ */
.notif-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 24px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.notif-overlay[hidden] { display: none; }

.notif-box {
  background: var(--white);
  border-radius: 28px;
  padding: 48px 40px 40px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: 0 40px 100px rgba(0,0,0,.22);
  animation: notifIn .38s cubic-bezier(.34,1.56,.64,1) both;
}

@keyframes notifIn {
  from { opacity: 0; transform: scale(.82) translateY(28px); }
  to   { opacity: 1; transform: scale(1)   translateY(0); }
}

.notif-icon {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.1rem;
  margin: 0 auto 24px;
}
.notif-icon.success { background: rgba(34,197,94,.12); color: #16a34a; }
.notif-icon.error   { background: rgba(239,68,68,.10); color: #dc2626; }

.notif-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.notif-msg {
  font-size: .95rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.notif-close-btn {
  min-width: 140px;
}

body.is-loading {
  overflow: hidden;
  touch-action: none;
}

.loading-overlay {
  position: fixed;
  inset: 0;
  z-index: 12000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.08), transparent 28%),
    rgba(8, 13, 25, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.loading-overlay[hidden] {
  display: none;
}

.loading-card {
  width: min(100%, 420px);
  padding: 34px 30px 30px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(17, 24, 39, 0.92);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.34);
  text-align: center;
  color: #ffffff;
  animation: loadingCardIn 0.38s cubic-bezier(.34,1.56,.64,1) both;
}

.loading-card strong {
  display: block;
  margin-top: 18px;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 900;
}

.loading-card p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.7;
}

.loading-spinner {
  width: 78px;
  height: 78px;
  margin: 0 auto;
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, 0.16);
  border-top-color: #ff9800;
  border-right-color: #22c55e;
  animation: loadingSpin 0.9s linear infinite;
}

@keyframes loadingSpin {
  to { transform: rotate(360deg); }
}

@keyframes loadingCardIn {
  from { opacity: 0; transform: translateY(20px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 480px) {
  .hero-badges { flex-direction: column; }
  .about-stats-row .as-number { font-size: 1.1rem; }
  .eco-coming-grid { grid-template-columns: 1fr; }
  .eco-big-card { flex-direction: column; }
  .eco-big-card-visual { display: none; }
  .eco-big-card-body { flex: 1; padding: 24px 20px; }
  /* Keep brand logo panels visible on small screens */
  .eco-visual-logo {
    display: flex !important;
    min-height: 90px;
    max-height: 120px;
    padding: 12px 20px;
    justify-content: center;
    align-items: center;
  }
  .eco-visual-logo .eco-brand-logo-img {
    max-height: 72px !important;
    max-width: 140px !important;
  }
}

/* ══════════════════════════════════════════
   MODAL — Visit Request
══════════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
}
.modal-overlay[hidden] { display: none; }

.modal-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 44px;
  max-width: 560px;
  width: 100%;
  position: relative;
  box-shadow: 0 32px 80px rgba(0,0,0,.22);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: 18px; right: 18px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg-light);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  color: var(--muted);
  transition: var(--transition);
}
.modal-close:hover { background: var(--orange-light); color: var(--orange); }

.modal-header { margin-bottom: 28px; }
.modal-header h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--black);
  margin: 10px 0 8px;
  letter-spacing: -.02em;
}
.modal-header p {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.65;
}

.modal-form .form-group { margin-bottom: 18px; }

/* ══════════════════════════════════════════
   RESPONSIVE — new elements
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .svc-categories-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .svc-categories-grid  { grid-template-columns: 1fr; }
  .logo-img             { height: 72px; }
  .modal-box            { padding: 32px 24px; }
  .ref-card-featured    { padding: 32px 24px; }
  .ref-featured-header  { flex-direction: column; gap: 12px; }
  .ref-featured-footer  { flex-direction: column; align-items: flex-start; }

  /* Ecosystem */
  .eco-big-cards        { grid-template-columns: 1fr; }
  .eco-coming-grid      { grid-template-columns: repeat(2, 1fr); }
  .eco-big-card-body    { flex: 1; min-width: 0; padding: 28px 24px; }
  .eco-sub-header       { flex-direction: column; align-items: flex-start; gap: 12px; }
}

@media (max-width: 480px) {
  .logo-img { height: 62px; }
}

/* Product cards detailed layout */
.eco-prod-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.eco-prod-card {
  display: block;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.eco-prod-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
  border-color: rgba(255, 255, 255, 0.15);
}

.eco-prod-body {
  flex: 1;
  padding: 24px 24px 0;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.eco-prod-topbar {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -24px -24px 18px;
  min-height: 132px;
  padding: 22px 20px;
  border-radius: 22px 22px 18px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.eco-card-web .eco-prod-topbar {
  background: linear-gradient(180deg, rgba(139, 60, 247, 0.24), rgba(167, 139, 250, 0.12));
}

.eco-card-app .eco-prod-topbar {
  background: linear-gradient(180deg, rgba(102, 0, 255, 0.22), rgba(139, 92, 246, 0.12));
}

.eco-card-adser .eco-prod-topbar {
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.24), rgba(59, 130, 246, 0.12));
}

.eco-card-pulse .eco-prod-topbar {
  background: linear-gradient(180deg, rgba(16, 185, 129, 0.24), rgba(16, 185, 129, 0.1));
}

.eco-prod-logo-inline {
  position: static;
  width: min(100%, 240px);
  max-height: 150px;
  height: auto;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}

.eco-prod-name {
  font-size: 1.62rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  margin: 0;
  line-height: 1.2;
  max-width: none;
}

.eco-prod-subtitle {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.58);
  font-weight: 600;
  letter-spacing: 0.02em;
  margin: 0 0 12px;
}

.eco-prod-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.62;
  margin: 0 0 16px;
  max-width: none;
}

.eco-feat-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 16px;
  margin-bottom: 0;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  width: 100%;
}

.eco-feat-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin: 0;
  padding: 0;
}

.eco-feat-list li {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  font-size: 0.81rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.4;
}

.eco-feat-list li i {
  font-size: 0.75rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.eco-card-web .eco-feat-list li i { color: #A78BFA; }
.eco-card-app .eco-feat-list li i { color: #8B5CF6; }
.eco-card-adser .eco-feat-list li i { color: #3B82F6; }
.eco-card-pulse .eco-feat-list li i { color: #10B981; }

.eco-prod-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 16px 0 0;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.08);
  width: 100%;
}

.eco-prod-stat {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 13px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.eco-prod-stats .eco-prod-stat:last-child {
  border-right: none;
}

.eco-ps-sep {
  display: none;
}

.eco-ps-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 0.86rem;
  flex-shrink: 0;
}

.eco-ps-txt {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.eco-ps-txt b {
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.2;
}

.eco-ps-txt span {
  font-size: 0.64rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.3;
}

.eco-prod-footer {
  display: flex;
  justify-content: flex-start;
  padding: 16px 0 24px;
}

.eco-prod-footer .btn {
  padding: 12px 20px;
  font-size: 0.82rem;
}

.eco-bottom-bar {
  display: flex;
  align-items: center;
  gap: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 18px 28px;
  margin-top: 32px;
}

.eco-bb-left {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  flex-shrink: 0;
}

.eco-bb-left i {
  color: var(--orange);
  font-size: 1.1rem;
}

.eco-bb-left strong {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
}

.eco-bb-note {
  flex: 1;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.eco-bb-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--orange);
  white-space: nowrap;
  flex-shrink: 0;
  transition: gap var(--transition);
}

.eco-bb-link:hover {
  gap: 11px;
}

@media (max-width: 1024px) {
  .eco-prod-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root { --nav-h: 84px; }

  .eco-prod-body {
    padding: 24px 20px 0;
  }

  .eco-prod-topbar {
    margin: -24px -20px 18px;
    min-height: 116px;
    padding: 18px 16px;
  }

  .eco-prod-logo-inline {
    width: min(100%, 210px);
    max-height: 150px;
  }

  .eco-prod-stats {
    grid-template-columns: 1fr;
  }

  .eco-prod-stat {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .eco-prod-stats .eco-prod-stat:last-child {
    border-bottom: none;
  }

  .eco-bottom-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 18px 20px;
  }
}

@media (max-width: 480px) {
  .logo-img { height: 110px; }

  .eco-prod-body {
    padding: 20px 16px 0;
  }

  .eco-prod-topbar {
    margin: -20px -16px 16px;
    min-height: 96px;
    padding: 16px 12px;
  }

  .eco-prod-logo-inline {
    width: min(100%, 180px);
    max-height: 150px;
  }

  .eco-prod-name {
    font-size: 1.45rem;
  }

  .eco-prod-desc {
    font-size: 0.84rem;
  }

  .eco-feat-cols {
    grid-template-columns: 1fr;
    padding: 12px;
  }

  .eco-prod-stats {
    grid-template-columns: 1fr;
  }

  .eco-prod-stat {
    padding: 10px 14px;
  }
}
:root{
  --orange:#ff6a00;
  --white:#ffffff;

  --websiz:#652482;
  --appsiz:#7c4dff;
  --adser:#1e88e5;
  --pulse:#16a34a;
}
.btn-websiz{
  background:var(--websiz);
  color:#fff;
  border:none;
  border-radius:12px;
  padding:14px 24px;
  font-weight:600;
  box-shadow:0 4px 20px rgba(255,106,0,.35);
  transition:.3s;
}

.btn-websiz:hover{
  transform:translateY(-2px);
  box-shadow:0 8px 30px rgba(255,106,0,.5);
}

.btn-appsiz{
  background:var(--appsiz);
  color:#fff;
  border:none;
  border-radius:12px;
  padding:14px 24px;
  font-weight:600;
  box-shadow:0 4px 20px rgba(124,77,255,.35);
  transition:.3s;
}

.btn-appsiz:hover{
  transform:translateY(-2px);
  box-shadow:0 8px 30px rgba(124,77,255,.5);
}

.btn-adser{
  background:var(--adser);
  color:#fff;
  border:none;
  border-radius:12px;
  padding:14px 24px;
  font-weight:600;
  box-shadow:0 4px 20px rgba(30,136,229,.35);
  transition:.3s;
}

.btn-adser:hover{
  transform:translateY(-2px);
  box-shadow:0 8px 30px rgba(30,136,229,.5);
}

.btn-pulse{
  background:var(--pulse);
  color:#fff;
  border:none;
  border-radius:12px;
  padding:14px 24px;
  font-weight:600;
  box-shadow:0 4px 20px rgba(22,163,74,.35);
  transition:.3s;
}

.btn-pulse:hover{
  transform:translateY(-2px);
  box-shadow:0 8px 30px rgba(22,163,74,.5);
}
.btn-outline-websiz{
  background:transparent;
  color:var(--websiz);
  border:2px solid var(--websiz);
}

.btn-outline-appsiz{
  background:transparent;
  color:var(--appsiz);
  border:2px solid var(--appsiz);
}

.btn-outline-adser{
  background:transparent;
  color:var(--adser);
  border:2px solid var(--adser);
}

.btn-outline-pulse{
  background:transparent;
  color:var(--pulse);
  border:2px solid var(--pulse);
}
