/* -------------------------
   RESET + TOKENS
-------------------------- */
*{ box-sizing:border-box; }
html{
  height:100%;
  scroll-behavior: smooth;
  background: var(--page);
  background-attachment: fixed;
}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Apple Color Emoji","Segoe UI Emoji";
  background: transparent;
  color: var(--text);
  padding-top: 78px;
}

/* ✅ Turkuaza yakın soft modern mavi arkaplan */
:root{
  --bg: #f6feff;
  --page:
  radial-gradient(1400px 900px at 18% 10%, rgba(20, 184, 166, .16), transparent 62%),
  radial-gradient(1200px 820px at 85% 12%, rgba(14, 165, 233, .13), transparent 64%),
  radial-gradient(900px 700px at 55% 65%, rgba(34, 197, 94, .08), transparent 70%),
  linear-gradient(180deg, #f3feff 0%, #f6feff 35%, #f7fcff 70%, #f8fbff 100%);

  --text: #071523;
  --muted: rgba(7,21,35,.68);
  --border: rgba(7,21,35,.10);
  --card: rgba(255,255,255,.52);

  /* water-ish accent */
  --primary: #06b6d4;   /* cyan */
  --primary2:#22c55e;   /* green hint */
  --primary3:#0ea5e9;   /* sky */

  --shadow: 0 18px 60px rgba(7,21,35,.10);

  --radius: 18px;
  --radius2: 22px;
  --container: 1120px;
}



/* -------------------------
   GLASS SYSTEM (global)
-------------------------- */
.glass,
.card,
.stat,
.infoCard,
.callout,
.infoPanel,
.form{
  background: color-mix(in srgb, var(--card) 92%, transparent);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,.35);
  box-shadow: 0 20px 80px rgba(7,21,35,.10);
}

/* Softer dividers inside panels */
.infoRow + .infoRow{
  border-top: 1px solid rgba(7,21,35,.08);
}

a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }

/* Improved keyboard focus visibility */
:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.container{
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

.section{ padding: 72px 0; }
.section__head{
  display:grid;
  gap: 10px;
  max-width: 780px;
  margin-bottom: 24px;
}
.section__head h2{
  margin: 0;
  font-size: clamp(26px, 3vw, 34px);
  letter-spacing: -.02em;
}
.section__head p{ margin:0; color: var(--muted); line-height:1.65; }

.grid3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

/* -------------------------
   HEADER
-------------------------- */
.header{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.header__inner{
  height: 78px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
}

/* Brand */
.brand{
  display:flex;
  align-items:center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: .12em;
}

/* ✅ Logo daha büyük */
.brand__logoWrap{
  width: 74px;
  height: 74px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--card) 90%, transparent);
  display:grid;
  place-items:center;
  overflow:hidden;
  box-shadow: 0 14px 40px rgba(6,182,212,.12);
}
.brand__img{
  width: 64px;
  height: 64px;
  object-fit: contain;
  filter: drop-shadow(0 6px 18px rgba(6,182,212,.25));
  transition: transform .25s ease, filter .25s ease;
}

.brand:hover .brand__img{
  transform: scale(1.06);
  filter: drop-shadow(0 10px 28px rgba(6,182,212,.35));
}
.brand__text{ font-size: 13px; }

/* Desktop nav */
.nav{
  display:flex;
  align-items:center;
  gap: 12px;
}
.nav__link{
  padding: 10px 10px;
  border-radius: 12px;
  color: color-mix(in srgb, var(--text) 82%, transparent);
  border: 1px solid transparent;
  transition: .18s ease;
}
.nav__link:hover{
  background: color-mix(in srgb, var(--card) 85%, transparent);
  border-color: var(--border);
}
.nav__link.is-active{
  background: color-mix(in srgb, var(--primary3) 14%, transparent);
  border-color: color-mix(in srgb, var(--primary3) 34%, transparent);
}

/* Actions right */
.actions{
  display:flex;
  align-items:center;
  gap: 10px;
}

/* Segmented language */
.segmented{
  display:flex;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow:hidden;
  background: color-mix(in srgb, var(--card) 92%, transparent);
}
.segmented__btn{
  border: 0;
  background: transparent;
  color: color-mix(in srgb, var(--text) 78%, transparent);
  padding: 9px 12px;
  font-weight: 800;
  cursor:pointer;
}
.segmented__btn.is-active{
  background: color-mix(in srgb, var(--primary) 22%, transparent);
  color: var(--text);
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid var(--border);
  font-weight: 900;
  cursor:pointer;
  transition: transform .12s ease, background .2s ease, border-color .2s ease;
  white-space: nowrap;
  will-change: transform;
}
.btn:hover{ transform: translateY(-1px); }
.btn:focus-visible { outline-offset: 3px; }

.btn--primary{
  border-color: color-mix(in srgb, var(--primary) 55%, var(--border));
  background: linear-gradient(135deg,
    color-mix(in srgb, var(--primary3) 80%, #fff),
    color-mix(in srgb, var(--primary) 85%, #fff),
    color-mix(in srgb, var(--primary2) 55%, #fff)
  );
  color: #04121f;
  box-shadow: 0 18px 60px rgba(6,182,212,.20);
}

.btn--ghost{
  background: transparent;
  color: var(--text);
}
.btn--ghost:hover{
  background: color-mix(in srgb, var(--card) 88%, transparent);
}

.btn--outline{
  background: transparent;
  border-width: 1.5px;
  border-color: color-mix(in srgb, var(--primary) 70%, var(--border));
  color: color-mix(in srgb, var(--text) 90%, transparent);
}
.btn--outline:hover{
  background: color-mix(in srgb, var(--primary) 12%, transparent);
}



/* -------------------------
   GLASS BUTTONS (override)
-------------------------- */
.btn{
  border: 1px solid rgba(255,255,255,.40);
  background: rgba(255,255,255,.28);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 16px;
  box-shadow: 0 16px 50px rgba(7,21,35,.10);
}
.btn:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.38);
}
.btn--outline{
  background: rgba(255,255,255,.22);
  border-color: rgba(255,255,255,.52);
}
.btn--ghost{
  background: rgba(255,255,255,.14);
}
.btn--primary{
  border-color: rgba(255,255,255,.55);
  background: linear-gradient(135deg,
    rgba(14,165,233,.38),
    rgba(6,182,212,.34),
    rgba(34,197,94,.26)
  );
  color: #04121f;
  box-shadow: 0 22px 70px rgba(6,182,212,.18);
}

/* Burger */
.burger{
  display:none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--card) 92%, transparent);
  cursor:pointer;
}
.burger span{
  display:block;
  width: 18px;
  height: 2px;
  background: color-mix(in srgb, var(--text) 80%, transparent);
  margin: 4px auto;
  border-radius: 2px;
}

/* Mobile menu */
.mobileMenu{
  display:none;
  border-top: 1px solid var(--border);
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(14px);
  will-change: display;
}
.mobileMenu__inner{
  padding: 14px 0 18px;
  display:grid;
  gap: 10px;
}
.mobileMenu__link{
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--card) 92%, transparent);
}
.mobileMenu__cta{ width: 100%; }

/* -------------------------
   HERO
-------------------------- */
.hero{
  padding: 56px 0 32px;
  background:
    radial-gradient(900px 520px at 65% 10%, rgba(6,182,212,.18), transparent 60%),
    radial-gradient(900px 520px at 92% 22%, rgba(34,197,94,.12), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,.55), rgba(255,255,255,0));
}

.hero__grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 26px;
  align-items:start;
}

.kicker{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--card) 92%, transparent);
  color: color-mix(in srgb, var(--text) 85%, transparent);
  font-weight: 800;
  margin: 0 0 14px;
}

.hero__title{
  margin: 0 0 12px;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -.03em;
}
.hero__title .accent{
  background: linear-gradient(135deg, var(--primary3), var(--primary), var(--primary2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__text{
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 56ch;
}

.hero__actions{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.stats{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.stat{
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--card) 92%, transparent);
  border-radius: var(--radius);
  padding: 14px;
  box-shadow: 0 14px 40px rgba(14,165,233,.08);
}
.stat__value{
  font-weight: 950;
  font-size: 22px;
  letter-spacing: -.02em;
}
.stat__label{
  margin-top: 6px;
  color: var(--muted);
}

/* Cards (right) */
.hero__cards{
  display:grid;
  gap: 12px;
  align-content:start;
}
.card{
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--card) 92%, transparent);
  border-radius: var(--radius2);
  padding: 16px;
  box-shadow: var(--shadow);
}
.card--featured{ padding: 18px; }

.card__top{
  display:flex;
  justify-content:flex-start;
  margin-bottom: 10px;
}

.chip{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  font-weight: 900;
}
.chip__dot{
  width: 10px; height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary3), var(--primary), var(--primary2));
  box-shadow: 0 10px 24px rgba(6,182,212,.22);
}

.card__title{
  margin: 0 0 6px;
  font-size: 18px;
  letter-spacing: -.01em;
}
.card__desc{
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}
.card__actions{ margin-top: 12px; }
.link{
  font-weight: 900;
  color: color-mix(in srgb, var(--text) 86%, transparent);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.link:hover{ color: var(--primary3); }

/* -------------------------
   ABOUT / INFO
-------------------------- */
.infoCard{
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--card) 92%, transparent);
  border-radius: var(--radius2);
  padding: 16px;
}
.infoCard h3{ margin: 0 0 8px; letter-spacing: -.01em; }
.infoCard p{ margin: 0; color: var(--muted); line-height: 1.65; }

.callout{
  margin-top: 16px;
  border: 1px solid var(--border);
  background: linear-gradient(135deg,
    rgba(6,182,212,.14),
    rgba(14,165,233,.10),
    color-mix(in srgb, var(--card) 94%, transparent)
  );
  border-radius: var(--radius2);
  padding: 18px;
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap: 14px;
}
.callout h3{ margin: 0 0 8px; }
.callout p{ margin: 0 0 10px; color: var(--muted); line-height:1.65; }
.callout__cta{ display:flex; gap: 10px; flex-wrap: wrap; }

.pills{ display:flex; gap: 10px; flex-wrap:wrap; }
.pill{
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--card) 92%, transparent);
  font-weight: 800;
  color: color-mix(in srgb, var(--text) 85%, transparent);
}

/* -------------------------
   CONTACT (✅ daha renkli/modern)
-------------------------- */
.section--contact{
  background: transparent;
  padding-top: 56px;
}

.contactGrid{
  display:grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 14px;
  align-items:start;
}



/* -------------------------
   CONTACT GLASS PANEL (override)
-------------------------- */
.contactGrid{
  position: relative;
  border-radius: 26px;
  padding: 18px;
  background:
    radial-gradient(900px 520px at 15% 20%, rgba(6,182,212,.14), transparent 62%),
    radial-gradient(900px 520px at 85% 70%, rgba(34,197,94,.10), transparent 65%),
    rgba(255,255,255,.18);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.38);
  box-shadow: 0 26px 110px rgba(7,21,35,.10);
}

.infoPanel{
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--card) 92%, transparent);
  border-radius: var(--radius2);
  padding: 16px;
}

.infoPanel--fancy{
  background:
    linear-gradient(135deg,
      rgba(14,165,233,.14),
      rgba(6,182,212,.12),
      rgba(34,197,94,.10)
    ),
    color-mix(in srgb, var(--card) 92%, transparent);
  box-shadow: 0 20px 70px rgba(6,182,212,.12);
}

.infoPanel__badge{
  display:inline-flex;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--primary3) 35%, var(--border));
  background: rgba(255,255,255,.55);
  font-weight: 900;
  margin-bottom: 12px;
}

.infoRow + .infoRow{ margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--border); }
.infoRow__label{ font-weight: 900; margin-bottom: 6px; }
.infoRow__value{ color: var(--muted); line-height: 1.6; }

.infoPanel__hint{
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px dashed color-mix(in srgb, var(--primary) 30%, var(--border));
  color: color-mix(in srgb, var(--text) 78%, transparent);
  line-height: 1.6;
  font-weight: 700;
}

/* Form */
.form{
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--card) 92%, transparent);
  border-radius: var(--radius2);
  padding: 16px;
}

.form--fancy{
  background:
    linear-gradient(135deg,
      rgba(255,255,255,.82),
      rgba(255,255,255,.60)
    );
  box-shadow: 0 24px 90px rgba(14,165,233,.12);
  position: relative;
  overflow:hidden;
}

.form--fancy::before{
  content:"";
  position:absolute;
  inset:-2px;
  background: linear-gradient(135deg, rgba(14,165,233,.35), rgba(6,182,212,.35), rgba(34,197,94,.25));
  filter: blur(18px);
  opacity: .55;
  pointer-events:none;
}

.form--fancy > *{ position: relative; }

.form__head{
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.form__title{
  font-weight: 950;
  font-size: 16px;
  letter-spacing: -.01em;
}
.form__sub{
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.6;
}

.form__row{ display:grid; gap: 8px; margin-bottom: 0px; }
.form__row--2{
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.label{ font-weight: 900; }

.input{
  border: 1px solid color-mix(in srgb, var(--border) 85%, rgba(14,165,233,.15));
  background: rgba(255,255,255,.78);
  color: var(--text);
  border-radius: 14px;
  padding: 12px 12px;
  outline: none;
  transition: box-shadow .18s ease, border-color .18s ease, transform .12s ease;
}

.input:focus{
  border-color: color-mix(in srgb, var(--primary3) 55%, var(--border));
  box-shadow:
    0 0 0 4px rgba(14,165,233,.18),
    0 18px 60px rgba(6,182,212,.14);
  transform: translateY(-1px);
}

.input--area{ resize: vertical; min-height: 120px; }

.error{ color: rgba(239,68,68,.95); font-size: 13px; min-height: 16px; }

.form__footer{
  display:grid;
  gap: 10px;
}

.form__submit{ width: 100%; }

.hint{
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

/* -------------------------
   FOOTER
-------------------------- */
.footer{
  border-top: 1px solid var(--border);
  padding: 22px 0;
  background: color-mix(in srgb, var(--bg) 90%, transparent);
}
.footer__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
  flex-wrap: wrap;
}
.footer__left{ margin:0; color: var(--muted); }
.footer__right{ display:flex; gap: 12px; flex-wrap: wrap; }
.footer__link{
  color: color-mix(in srgb, var(--text) 82%, transparent);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.footer__link:hover{ color: var(--primary3); }

/* -------------------------
   TOAST
-------------------------- */
.toast{
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: min(360px, calc(100% - 36px));
  display:flex;
  align-items:flex-start;
  gap: 12px;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid color-mix(in srgb, var(--text) 12%, transparent);
  background: color-mix(in srgb, var(--card) 92%, transparent);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
  transform: translateY(16px);
  opacity: 0;
  pointer-events: none;
  transition: .22s ease;
}
.toast.is-open{ transform: translateY(0); opacity: 1; pointer-events: auto; }
.toast__icon{
  width: 40px; height: 40px;
  border-radius: 16px;
  display:grid; place-items:center;
  background: rgba(34,197,94,.16);
  border: 1px solid rgba(34,197,94,.26);
}
.toast__text{ margin-top: 3px; line-height: 1.4; }
.toast__close{
  margin-left: auto;
  background: transparent;
  border: 0;
  color: color-mix(in srgb, var(--text) 85%, transparent);
  font-size: 16px;
  cursor:pointer;
  padding: 6px 8px;
  border-radius: 10px;
}
.toast__close:hover{ background: color-mix(in srgb, var(--text) 8%, transparent); }

/* -------------------------
   RESPONSIVE
-------------------------- */
@media (max-width: 980px){
  .hero__grid{ grid-template-columns: 1fr; }
  .stats{ grid-template-columns: 1fr; }
  .contactGrid{ grid-template-columns: 1fr; }
  .grid3{ grid-template-columns: 1fr; }
  .callout{ flex-direction: column; }
  .form__row--2{ grid-template-columns: 1fr; }
}

@media (max-width: 860px){
  .nav{ display:none; }
  .burger{ display:inline-block; }
  .nav__cta{ display:none; }
  .mobileMenu.is-open{ display:block; }
}

/* Hide legacy card links (kept for safety) */
.link{ display:none; }


/* -------------------------
   PRODUCTS SECTION
-------------------------- */
.productShowcase{
  display:flex;
  justify-content:center;
  align-items:center;
  margin-top: 20px;
}

.productImage{
  width: 100%;
  max-width: 980px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.45);
  box-shadow: 0 30px 110px rgba(6,182,212,.18);
  will-change: opacity;
}


/* -------------------------
   PRODUCT CARD (HTML layout)
-------------------------- */
.productCard{
  width: 100%;
  max-width: 980px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.45);
  box-shadow: 0 30px 110px rgba(6,182,212,.18);
  overflow: hidden;
  background:
    radial-gradient(900px 520px at 50% 0%, rgba(255,255,255,.42), rgba(255,255,255,0) 65%),
    linear-gradient(180deg, rgba(9, 147, 178, .55) 0%, rgba(9, 147, 178, .38) 40%, rgba(255,255,255,.35) 100%, rgba(255,255,255,.60) 100%);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.productCard__top{
  padding: 28px 26px 22px;
  text-align: center;
  color: rgba(255,255,255,.96);
}

.productCard__title{
  margin: 0 0 8px;
  font-size: clamp(24px, 3.4vw, 44px);
  line-height: 1.1;
  letter-spacing: -.02em;
  font-weight: 950;
  text-shadow: 0 12px 30px rgba(0,0,0,.14);
}

.productCard__sub{
  margin: 0 auto;
  max-width: 820px;
  font-size: clamp(13px, 1.7vw, 20px);
  line-height: 1.6;
  color: rgba(255,255,255,.88);
}

.productCard__body{
  display: grid;
  grid-template-columns: 1.05fr 1.25fr .9fr;
  gap: 18px;
  padding: 24px 24px 22px;
  align-items: center;
  background:
    radial-gradient(800px 380px at 50% 0%, rgba(255,255,255,.90), rgba(255,255,255,0) 70%),
    linear-gradient(180deg, rgba(255,255,255,.76), rgba(255,255,255,.52));
}

.productCard__sectionTitle{
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--primary3) 70%, #1f6b78);
  margin-bottom: 14px;
  font-size: 18px;
}

.productList{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.productList__item{
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: start;
}

.productIco{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: color-mix(in srgb, var(--primary3) 70%, #1f6b78);
  background: rgba(255,255,255,.42);
  border: 1px solid rgba(255,255,255,.60);
  box-shadow: 0 16px 50px rgba(7,21,35,.08);
}

.productIco svg{ width: 22px; height: 22px; }

.productList__text b{
  display: block;
  font-size: 18px;
  font-weight: 950;
  color: #1f6b78;
  margin-bottom: 2px;
}
.productList__text span{
  display: block;
  color: rgba(7,21,35,.68);
  line-height: 1.25;
}

.productCard__center{
  display: grid;
  place-items: center;
  padding: 6px 0;
}
.productDevice{
  width: min(420px, 100%);
  height: auto;
  filter: drop-shadow(0 24px 30px rgba(7,21,35,.22));
}

.productCard__right{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  min-height: 360px;
}

.productPrice {
    display: flex;
    gap: 12px;
    color: #1f6b78;
    align-content: flex-end;
    flex-wrap: wrap;
    flex-direction: column-reverse;
}
.productPrice__ico{
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: color-mix(in srgb, var(--primary) 70%, #1f6b78);
  background: rgba(255,255,255,.42);
  border: 1px solid rgba(255,255,255,.60);
  box-shadow: 0 16px 50px rgba(7,21,35,.08);
}
.productPrice__ico svg{ width: 26px; height: 26px; }
.productPrice__text span{ font-weight: 900; }
.productPrice__text strong{
  margin-left: px;
  font-weight: 950;
  font-size: 34px;
  letter-spacing: .2px;
  color: #0f5260;
}

.productTank{
  margin-top: auto;
  text-align: right;
  display: grid;
  justify-items: end;
  gap: 2px;
}
.productTank__num{
  font-size: 86px;
  line-height: .9;
  font-weight: 950;
  letter-spacing: .5px;
  color: #1f6b78;
}
.productTank__big{
  font-size: 30px;
  font-weight: 950;
  letter-spacing: .08em;
  color: #1f6b78;
}
.productTank__small{
  font-size: 22px;
  font-weight: 900;
  letter-spacing: .10em;
  color: color-mix(in srgb, var(--primary3) 70%, #1f6b78);
}

/* Responsive */
@media (max-width: 980px){
  .productCard__body{
    grid-template-columns: 1fr;
  }
  .productCard__right{
    min-height: auto;
    align-items: flex-start;
  }
  .productTank{
    text-align: left;
    justify-items: start;
  }
  .productTank__num{ font-size: 72px; }
}
