/* =========================================================
   FitekIN — style.css  (redesign)
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@600;700;800&display=swap');

/* -------------------------------------------------------
   Design tokens
-------------------------------------------------------- */
:root {
  --deep-blue:    #092258;
  --blue:         #4A4EDC;
  --violet:       #764CCC;
  --violet-dark:  #4D03BD;
  --coral:        #FFAC40;

  --neutral-dark:    #1F2937;
  --neutral-light-1: #F4F6FB;
  --neutral-light-2: #E4E7EF;
  --white:           #FFFFFF;

  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 14px;
  --radius-sm: 10px;

  --shadow-soft: 0 4px 20px rgba(9,34,88,.07);
  --shadow:      0 12px 40px rgba(9,34,88,.12);
  --shadow-lg:   0 24px 72px rgba(9,34,88,.18);

  --container: 1360px;
  --nav-h: 72px;

  --h-xl: clamp(32px, 3.8vw, 60px);
  --h-lg: clamp(26px, 2.6vw, 42px);
  --h-md: clamp(18px, 1.8vw, 26px);

  --body-lg: 18px;
  --body-md: 16px;
  --body-sm: 14px;
}

/* -------------------------------------------------------
   Base
-------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--neutral-dark);
  background: var(--neutral-light-1);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

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

/* -------------------------------------------------------
   Typography
-------------------------------------------------------- */
h1, h2, h3 {
  font-family: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: -0.4px;
  margin: 0 0 12px;
  color: var(--deep-blue);
}
p {
  margin: 0 0 12px;
  font-size: var(--body-md);
  color: rgba(31,41,55,.76);
}

/* -------------------------------------------------------
   Scroll reveal
-------------------------------------------------------- */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s cubic-bezier(.4,0,.2,1),
              transform .6s cubic-bezier(.4,0,.2,1);
}
.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* -------------------------------------------------------
   Section helpers
-------------------------------------------------------- */
.section { padding: 100px 0; }
@media (max-width: 768px) { .section { padding: 64px 0; } }

.section-white { background: var(--white); }
.section-light { background: var(--neutral-light-1); }
.section-dark {
  color: var(--white);
  background-color: #092258;
  background-image:
    radial-gradient(ellipse 46% 63% at 7%  9%,  #292DB7 0%, rgba(41,45,183,0) 100%),
    radial-gradient(ellipse 51% 59% at 91% 83%, #4D03BD 0%, rgba(77,3,189,0)  100%);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.section-header { text-align: center; margin-bottom: 52px; }
.section-header.dark { margin-bottom: 80px; }
.section-header h2 { font-size: var(--h-lg); }
.section-header p {
  max-width: 860px;
  margin: 14px auto 0;
  font-size: var(--body-lg);
  line-height: 1.75;
  color: rgba(31,41,55,.60);
}
.section-header .line {
  display: block;
  width: 48px;
  height: 4px;
  border-radius: 99px;
  background: var(--coral);
  margin: 16px auto 0;
}
.section-header.dark h2 { color: var(--white); }
.section-header.dark p  { color: rgba(255,255,255,.68); }

.lead {
  font-size: var(--body-lg);
  color: rgba(255,255,255,.80);
}

/* -------------------------------------------------------
   Cards
-------------------------------------------------------- */
.card {
  background: var(--white);
  border: 1px solid rgba(9,34,88,.07);
  border-radius: var(--radius-xl);
  padding: 30px 26px;
  box-shadow: var(--shadow-soft);
  transition: transform .22s ease, box-shadow .25s ease, border-color .25s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: rgba(74,78,220,.15);
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 20px;
  background: #092258;
  box-shadow: 0 8px 22px rgba(74,78,220,.28);
  flex-shrink: 0;
  margin-bottom: 20px;
}

/* -------------------------------------------------------
   Navbar
-------------------------------------------------------- */
.site-header { height: 0; }

.site-header {
  height: 0;
  position: relative;
  z-index: 9999;
}

.navbar {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1280px, calc(100% - 48px));
  z-index: 9999;
  background: #F8F9FF;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(9,34,88,.07);
  box-shadow: 0 4px 24px rgba(9,34,88,.09);
  border-radius: 17px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: box-shadow .3s ease, background .3s ease;
  padding: 0 8px;
  isolation: isolate;
}
/* left gradient blob — percentages from design spec, scales with navbar width */
.navbar::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 17px;
  background:
    radial-gradient(ellipse 55% 300% at 0% 50%, rgba(199,204,255,.70) 0%, transparent 70%),
    radial-gradient(ellipse 55% 300% at 100% 50%, rgba(214,194,255,.65) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}
.navbar.scrolled {
  box-shadow: 0 8px 32px rgba(9,34,88,.14);
  background: rgba(248,249,255,.97);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.brand-logo { height: 44px; width: auto; }

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  font-size: 20px;
  color: var(--deep-blue);
  cursor: pointer;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  transition: background .2s;
}
.nav-toggle:hover { background: rgba(9,34,88,.06); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-link {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--deep-blue);
  padding: 8px 14px;
  border-radius: 999px;
  transition: all .2s ease;
}
.nav-link:hover  { color: var(--blue); background: rgba(74,78,220,.08); }
.nav-link.active { color: var(--blue); background: rgba(74,78,220,.10); font-weight: 600; }

/* Nav actions: lang switcher + demo button */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.lang-switch { position: relative; }

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--deep-blue);
  background: transparent;
  border: 1px solid rgba(9,34,88,.15);
  border-radius: 999px;
  padding: 7px 12px;
  cursor: pointer;
  transition: all .2s ease;
}
.lang-toggle:hover { background: rgba(74,78,220,.07); border-color: rgba(74,78,220,.25); }
.lang-chevron { font-size: 10px; transition: transform .2s ease; }
.lang-switch.open .lang-chevron { transform: rotate(180deg); }

.lang-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--white);
  border: 1px solid rgba(9,34,88,.10);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  min-width: 130px;
  overflow: hidden;
  z-index: 200;
}
.lang-switch.open .lang-dropdown { display: block; }

.lang-option {
  display: block;
  width: 100%;
  padding: 10px 16px;
  text-align: left;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--deep-blue);
  background: transparent;
  border: 0;
  cursor: pointer;
  transition: background .15s;
}
.lang-option:hover { background: rgba(74,78,220,.07); }
.lang-option.active { color: var(--blue); font-weight: 600; }

.btn-demo {
  display: inline-flex;
  align-items: center;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--deep-blue);
  background: var(--coral);
  border-radius: 999px;
  padding: 8px 18px;
  transition: all .2s ease;
  white-space: nowrap;
}
.btn-demo:hover { background: var(--brand-accent-main-darker, #FFAC40); box-shadow: 0 4px 14px rgba(255,172,64,.40); }

@media (max-width: 1020px) {
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .nav-menu {
    position: absolute;
    top: calc(var(--nav-h) + 8px);
    left: 0;
    right: 0;
    background: var(--white);
    border: 1px solid rgba(9,34,88,.08);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    padding: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }
  .nav-menu.open { display: flex; }
  .nav-link { border-radius: 12px; padding: 12px 16px; }
}

/* -------------------------------------------------------
   Stats strip
-------------------------------------------------------- */
.stats-strip {
  padding: 28px 0 40px;
  margin-top: auto;
  display: flex;
  justify-content: center;
}

.stats-grid {
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow:
    0 8px 32px rgba(0,0,0,.12),
    inset 0 1px 0 rgba(255,255,255,.22);
  border-radius: 17px;
  padding: 4px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  width: fit-content;
}


.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 40px;
  text-align: center;
}
.stat-item strong {
  font-size: 28px;
  font-weight: 700;
  color: var(--coral);
  line-height: 1;
}
.stat-item span {
  font-size: 13px;
  color: rgba(255,255,255,.70);
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.15);
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .stat-divider { display: none; }
  .stat-item { padding: 10px 24px; }
  .stats-grid { gap: 4px; }
}

/* -------------------------------------------------------
   Hero
-------------------------------------------------------- */
.hero { padding-top: 0; }

.hero-bg {
  background-color: #092258;
  background-image:
    radial-gradient(ellipse 46% 63% at 7%  9%,  #292DB7 0%, rgba(41,45,183,0) 100%),
    radial-gradient(ellipse 51% 59% at 91% 83%, #4D03BD 0%, rgba(77,3,189,0)  100%);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  min-height: 100vh;
  padding-top: calc(var(--nav-h) + 40px);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Animated orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: floatOrb 10s ease-in-out infinite;
}
.hero-orb--1 {
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(118,76,204,.7), transparent 65%);
  top: -140px; right: 5%;
  animation-delay: 0s;
}
.hero-orb--2 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(74,78,220,.65), transparent 65%);
  bottom: -80px; left: 2%;
  animation-delay: -5s;
}
.hero-orb--3 {
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(255,172,64,.30), transparent 65%);
  top: 50%; left: 38%;
  animation-delay: -2.5s;
}
@keyframes floatOrb {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-24px) scale(1.06); }
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  padding: 80px 0 56px;
  position: relative;
  z-index: 2;
  flex: 1;
  align-content: center;
  align-items: center;
}

/* hero copy animations */
.hero-badge  { animation: slideL .6s cubic-bezier(.22,.61,.36,1) .2s both; }
.hero-copy h1{ animation: slideL .6s cubic-bezier(.22,.61,.36,1) .55s both; }
.hero-copy > p { animation: slideB .6s cubic-bezier(.22,.61,.36,1) .9s both; }
.hero-image  { animation: slideR .6s cubic-bezier(.22,.61,.36,1) .4s both; }

@keyframes slideL {
  from { opacity:0; transform:translateX(-48px); }
  to   { opacity:1; transform:translateX(0); }
}
@keyframes slideR {
  from { opacity:0; transform:translateX(48px); }
  to   { opacity:1; transform:translateX(0); }
}
@keyframes slideB {
  from { opacity:0; transform:translateY(32px); }
  to   { opacity:1; transform:translateY(0); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,172,64,.14);
  border: 1px solid rgba(255,172,64,.36);
  color: var(--coral);
  font-size: 12.5px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 24px;
  letter-spacing: .3px;
}
.hero-badge i { font-size: 11px; }

.hero-copy { max-width: 620px; }
.hero-copy h1 {
  font-size: var(--h-xl);
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 22px;
}
.hero-copy > p {
  font-size: var(--body-lg);
  color: rgba(255,255,255,.76);
  max-width: 500px;
  margin-bottom: 0;
}

/* Hero CTA buttons */
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 36px;
  animation: slideB .6s cubic-bezier(.22,.61,.36,1) 1.1s both;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  font-size: 15px;
  font-weight: 700;
  color: var(--deep-blue);
  background: var(--coral);
  border-radius: 999px;
  padding: 13px 28px;
  transition: all .22s ease;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(255,172,64,.35);
}
.btn-hero-primary:hover {
  background: #FFAC40;
  box-shadow: 0 6px 28px rgba(255,172,64,.55);
  transform: translateY(-1px);
}

.btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,.90);
  background: transparent;
  border-radius: 999px;
  padding: 13px 24px;
  border: 1px solid rgba(255,255,255,.25);
  transition: all .22s ease;
  white-space: nowrap;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn-hero-ghost:hover {
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.45);
  color: var(--white);
  transform: translateY(-1px);
}

@media (max-width: 920px) {
  .hero-actions { justify-content: center; }
}

/* Hero image — natural flow inside grid cell */
.hero-media {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
}
.hero-image {
  width: min(900px, 120%);
  max-width: 120%;
  margin-left: -20%;
  filter: drop-shadow(0 32px 72px rgba(0,0,0,.46));
}

@media (max-width: 920px) {
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 56px 0 0;
    text-align: center;
  }
  .hero-copy { max-width: 100%; }
  .hero-copy > p { max-width: 100%; }
  .hero-badge { margin-left: auto; margin-right: auto; }
  .hero-media { margin-top: 32px; }
  .hero-image {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }
}

/* -------------------------------------------------------
   About — bento grid
-------------------------------------------------------- */
.about-bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}

/* First card spans 2 rows = tall left column */
.about-bento .bento-tall {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
}
.about-bento .bento-tall p { flex: 1; }

@media (max-width: 820px) {
  .about-bento {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .about-bento .bento-tall { grid-row: span 1; }
}

/* -------------------------------------------------------
   Features showcase — phone left, grid right
-------------------------------------------------------- */
.features-showcase {
  display: grid;
  grid-template-columns: minmax(220px, 300px) 1fr;
  gap: 52px;
  align-items: center;
}

.features-phone-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-phone {
  width: 100%;
  max-width: 280px;
  filter: drop-shadow(0 32px 56px rgba(9,34,88,.26)) drop-shadow(0 12px 20px rgba(9,34,88,.12));
  transition: transform .3s ease;
}
.feature-phone:hover { transform: translateY(-6px); }

.features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.feat-item {
  background: var(--white);
  border: 1px solid rgba(9,34,88,.07);
  border-radius: var(--radius-lg);
  padding: 20px 18px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  box-shadow: var(--shadow-soft);
  transition: transform .2s ease, box-shadow .25s ease, border-color .25s ease;
}
.feat-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(74,78,220,.14);
}
.feat-item .card-icon { flex-shrink: 0; width: 44px; height: 44px; font-size: 17px; }
.feat-item p { margin: 0; font-size: var(--body-sm); line-height: 1.6; }

@media (max-width: 980px) {
  .features-showcase {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .feature-phone { max-width: 240px; }
}
@media (max-width: 620px) {
  .features-list { grid-template-columns: 1fr; }
}

/* -------------------------------------------------------
   ERP / Logos ticker
-------------------------------------------------------- */
.logos-ticker {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
  margin: 0 24px;
}
.logos-ticker::before,
.logos-ticker::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
/* Light section fade */
.logos-ticker::before { left: 0;  background: linear-gradient(to right, var(--neutral-light-1), transparent); }
.logos-ticker::after  { right: 0; background: linear-gradient(to left,  var(--neutral-light-1), transparent); }

/* Dark section variant */
.logos-ticker--dark { background: transparent; border: none; box-shadow: none; }
.logos-ticker--dark::before { display: none; }
.logos-ticker--dark::after  { display: none; }
.logos-ticker--dark .logo-card {
  background: rgba(255,255,255,.92);
  border-color: rgba(255,255,255,.6);
  box-shadow: 0 4px 20px rgba(0,0,0,.35);
}
.logos-ticker--dark .logo-card img { filter: grayscale(0%) brightness(1); opacity: 1; }
.logos-ticker--dark .logo-card:hover {
  background: rgba(255,255,255,1);
  border-color: rgba(255,255,255,.9);
  box-shadow: 0 8px 28px rgba(0,0,0,.45);
}

.section-white .logos-ticker::before { background: linear-gradient(to right, var(--white), transparent); }
.section-white .logos-ticker::after  { background: linear-gradient(to left,  var(--white), transparent); }

.logos-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: ticker 80s linear infinite;
}
.logos-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 0 0 auto;
  padding: 0 20px;
}

.logo-card {
  width: 190px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--neutral-light-1);
  border: 1px solid rgba(0,0,0,.05);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  transition: all .25s ease;
}
.logo-card:hover {
  background: var(--white);
  border-color: rgba(74,78,220,.13);
  box-shadow: var(--shadow-soft);
}
.logo-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: .70;
  transition: all .25s ease;
}
.logo-card:hover img { filter: grayscale(0%); opacity: 1; }

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.section-note {
  text-align: center;
  margin-top: 22px;
  font-weight: 600;
  font-size: var(--body-sm);
  color: rgba(31,41,55,.52);
  letter-spacing: .3px;
}
.section-note--light { color: rgba(255,255,255,.55); }

/* -------------------------------------------------------
   Timeline — How it works
-------------------------------------------------------- */
.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}

.timeline-step {
  background: var(--neutral-light-1);
  border: 1px solid rgba(9,34,88,.07);
  border-radius: var(--radius-xl);
  padding: 28px 24px 24px;
  box-shadow: var(--shadow-soft);
  transition: transform .22s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}
.timeline-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.timeline-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.timeline-rule {
  flex: 1;
  height: 2px;
  background: linear-gradient(to right, rgba(74,78,220,.35), transparent);
  border-radius: 99px;
}

.step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: #092258;
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  font-family: "Plus Jakarta Sans", sans-serif;
  box-shadow: 0 8px 20px rgba(74,78,220,.30);
  flex-shrink: 0;
}

.timeline-step h3 {
  font-size: clamp(16px, 1.4vw, 19px);
  margin-bottom: 10px;
  line-height: 1.3;
}
.timeline-step p { font-size: var(--body-sm); flex: 1; }

.timeline-img {
  margin-top: 20px;
}
.timeline-img img {
  border-radius: var(--radius-md);
  border: 1px solid rgba(9,34,88,.07);
  box-shadow: var(--shadow);
  width: 100%;
}

@media (max-width: 900px) {
  .timeline { grid-template-columns: 1fr; }
  .timeline-rule { display: none; }
}

/* -------------------------------------------------------
   Reviews
-------------------------------------------------------- */
.reviews-grid {
  max-width: 1200px;
  margin: 56px auto 0;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--neutral-light-2);
  box-shadow: var(--shadow-soft);
  transition: transform .25s ease, box-shadow .25s ease;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.review-logo {
  padding: 18px 22px;
  border-bottom: 1px solid var(--neutral-light-2);
  display: flex;
  align-items: center;
  min-height: 68px;
}
.review-logo img {
  max-height: 38px;
  max-width: 120px;
  object-fit: contain;
}

.review-text {
  padding: 24px 22px 18px;
  font-size: 13.5px;
  line-height: 1.78;
  flex: 1;
  color: var(--neutral-dark);
  font-style: italic;
  position: relative;
}
.review-text::before {
  content: '\201C';
  position: absolute;
  top: 8px; right: 16px;
  font-size: 80px;
  line-height: 1;
  color: var(--blue);
  opacity: .06;
  font-family: Georgia, serif;
  pointer-events: none;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px 16px;
  border-top: 1px solid var(--neutral-light-2);
}

.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--deep-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  letter-spacing: .4px;
}

.review-author-info { flex: 1; min-width: 0; }
.review-author-info strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 2px;
  color: var(--neutral-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.review-author-info span {
  display: block;
  font-size: 11px;
  color: #6b7280;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 1100px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .reviews-grid { grid-template-columns: 1fr; } }

/* -------------------------------------------------------
   Contact
-------------------------------------------------------- */
.contact-card {
  height: 100%;
  width: min(820px, 100%);
  margin: 0 auto;
  padding: 28px 22px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 20px 60px rgba(0,0,0,.20);
  text-align: center;
}
.contact-title {
  color: var(--white);
  font-size: 22px;
  margin-bottom: 6px;
}
.contact-subtitle {
  color: rgba(255,255,255,.68);
  margin-bottom: 22px;
  font-size: var(--body-sm);
}

.contact-combo {
  height: 100%;
  container-type: inline-size;
}

.contact-grid {
  display: grid;
  grid-template-columns: 220px 1fr 1fr;
  gap: 14px;
  align-items: stretch;
}

/* Karta je príliš úzka pre 3 stĺpce → 2 stĺpce + foto na celú šírku */
@container (max-width: 580px) {
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .contact-visual { grid-column: 1 / -1; height: 180px; }
  .contact-item   { min-height: 120px; }
}

/* Veľmi úzka karta → 1 stĺpec */
@container (max-width: 360px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-visual { height: 160px; }
}

.contact-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.contact-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.contact-item {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: all .25s ease;
  height: 180px;
  width: 100%;
}
.contact-item:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.16);
}

.contact-ico {
  width: 52px;
  height: 52px;
  border-radius: 15px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.10);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--coral);
  margin-bottom: 14px;
}

.contact-link {
  font-weight: 600;
  font-size: 14.5px;
  color: var(--white);
  display: block;
  transition: color .2s;
}
.contact-link:hover { color: var(--coral); text-decoration: underline; }

.contact-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: stretch;
}
@media (max-width: 860px) { .contact-duo { grid-template-columns: 1fr; } }

/* -------------------------------------------------------
   Footer — dark
-------------------------------------------------------- */
.footer {
  background: #07112e;
  color: rgba(255,255,255,.70);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
  padding-bottom: 56px;
}

.footer-logo {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: .90;
  margin-bottom: 14px;
}
.footer-tagline {
  font-size: var(--body-sm);
  color: rgba(255,255,255,.45);
  margin-bottom: 20px;
}

.footer-col h3 {
  margin: 0 0 16px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,.90);
  text-transform: uppercase;
  letter-spacing: .6px;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.footer-contact-item {
  line-height: 1.7;
  font-size: var(--body-sm);
  color: rgba(255,255,255,.55);
}
.footer-contact-item strong {
  display: block;
  color: rgba(255,255,255,.80);
  font-weight: 600;
  margin-bottom: 6px;
  font-size: var(--body-md);
}
.footer-contact-item a {
  color: rgba(255,255,255,.55);
  transition: color .2s;
}
.footer-contact-item a:hover { color: var(--coral); }

.store-column { display: flex; flex-direction: column; gap: 10px; }
.store-column a { display: inline-block; }
.store-column img {
  width: 160px;
  max-width: 100%;
  border-radius: 10px;
  opacity: .88;
  transition: opacity .2s ease, transform .2s ease;
}
.store-column img:hover { opacity: 1; transform: translateY(-2px); }

.footer-links { margin: 0; padding: 0; list-style: none; }
.footer-links li { margin: 10px 0; }
.footer-links a {
  color: rgba(255,255,255,.52);
  font-size: var(--body-sm);
  transition: color .2s;
}
.footer-links a:hover { color: rgba(255,255,255,.90); }

.footer-col .social-row {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 4px;
}
.footer-col .social-row a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.09);
  transition: all .22s ease;
}
.footer-col .social-row a:hover {
  background: rgba(255,255,255,.13);
  border-color: rgba(255,255,255,.18);
  transform: translateY(-2px);
}
.footer-col .social-row img {
  width: 18px; height: 18px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .75;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 20px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: center;
}
.footer-bottom span {
  font-size: 12px;
  color: rgba(255,255,255,.35);
}

@media (max-width: 960px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}
@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .store-column img { width: 180px; }
}
