/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 6% 4rem;
  position: relative;
  overflow: hidden;
  background: #fff;
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(155, 110, 243, 0.18);
  color: var(--violet);
  padding: 0.4rem 1.1rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 2rem;
  animation: fadeUp 0.7s ease both;
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 12px rgba(155,110,243,0.08);
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -2.5px;
  margin-bottom: 1.6rem;
  color: #3730A3;
  animation: fadeUp 0.7s 0.1s ease both;
}

.hero .gradient-text {
  filter: drop-shadow(0 0 18px rgba(255,255,255,0.9));
}

.hero-sub {
  font-size: 1.2rem;
  color: rgba(55, 48, 163, 0.65);
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto 1rem;
  animation: fadeUp 0.7s 0.15s ease both;
}

.hero-location {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(30, 27, 75, 0.5);
  font-size: 0.88rem;
  font-weight: 500;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.7s 0.2s ease both;
}
.hero-location::before {
  content: '📍';
  font-size: 0.9rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.7s 0.25s ease both;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--violet));
  color: white;
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 800;
  font-size: 1rem;
  box-shadow: 0 8px 28px rgba(79, 142, 247, 0.45);
  transition: transform 0.2s, box-shadow 0.2s;
  display: inline-block;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 38px rgba(79, 142, 247, 0.55);
}

.section-btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--violet));
  color: white;
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 8px 28px rgba(79, 142, 247, 0.38);
  transition: transform 0.2s, box-shadow 0.2s;
  display: inline-block;
}
.section-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 38px rgba(79, 142, 247, 0.48);
}

.btn-ghost {
  background: rgba(255,255,255,0.6);
  color: var(--text);
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border: 1.5px solid rgba(155, 110, 243, 0.25);
  transition: background 0.2s, transform 0.2s;
  display: inline-block;
  backdrop-filter: blur(10px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.85);
  transform: translateY(-2px);
}

.scroll-hint {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(30, 27, 75, 0.4);
  font-size: 0.72rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  animation: fadeUp 1s 0.7s ease both;
}
.scroll-mouse {
  width: 22px; height: 36px;
  border: 2px solid rgba(155, 110, 243, 0.35);
  border-radius: 11px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-mouse::after {
  content: '';
  width: 3px; height: 7px;
  background: var(--violet);
  border-radius: 2px;
  animation: scrollDot 1.6s ease infinite;
}
@keyframes scrollDot {
  0%   { transform: translateY(0); opacity: 1; }
  75%  { transform: translateY(9px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ===== WHAT WE DO ===== */
.intro-section {
  padding: 7rem 6%;
  background: white;
}

.two-col {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.8rem;
}

.tag {
  background: linear-gradient(135deg, rgba(79,142,247,0.09), rgba(155,110,243,0.09));
  border: 1px solid rgba(155,110,243,0.18);
  color: var(--text);
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
}

/* ===== SERVICES BENTO ===== */
.services-section {
  padding: 7rem 6%;
  background: var(--bg);
}

.bento-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.2rem;
  max-width: 1080px;
  margin: 0 auto;
}

.bc {
  border-radius: 24px;
  padding: 2.4rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.28s, box-shadow 0.28s;
}
.bc:hover { transform: translateY(-5px); }

.bc-wide  { grid-column: span 2; }
.bc-tall  { grid-row: span 2; }

.bc-dark {
  background: linear-gradient(140deg, #1E1B4B 0%, #312E81 60%, #4338CA 100%);
  color: white;
  box-shadow: 0 16px 50px rgba(49,46,129,0.35);
}
.bc-blue {
  background: linear-gradient(140deg, #1D4ED8 0%, #4F8EF7 100%);
  color: white;
  box-shadow: 0 16px 50px rgba(29,78,216,0.28);
}
.bc-violet {
  background: linear-gradient(140deg, #6D28D9 0%, #9B6EF3 100%);
  color: white;
  box-shadow: 0 16px 50px rgba(109,40,217,0.28);
}
.bc-pink {
  background: linear-gradient(140deg, #9333EA 0%, #C084FC 100%);
  color: white;
  box-shadow: 0 16px 50px rgba(147,51,234,0.25);
}
.bc-light {
  background: white;
  border: 1px solid rgba(155,110,243,0.12);
  color: var(--text);
}

.bc-num {
  position: absolute;
  right: -0.1em;
  bottom: -0.25em;
  font-size: 9rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(255,255,255,0.06);
  pointer-events: none;
  user-select: none;
  letter-spacing: -4px;
}
.bc-light .bc-num { color: rgba(79,142,247,0.06); }

.bc-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.2rem;
  opacity: 0.6;
}
.bc-light .bc-tag { color: var(--violet); opacity: 0.8; }

.bc h3 {
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 0.8rem;
}
.bc-wide h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); }

.bc p {
  font-size: 0.92rem;
  line-height: 1.65;
  opacity: 0.78;
  max-width: 340px;
}

.bc-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1.4rem;
}
.bc-pill {
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.22);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}
.bc-light .bc-pill {
  background: rgba(79,142,247,0.08);
  border-color: rgba(155,110,243,0.18);
  color: var(--violet);
}

/* ===== PRODUCTS / MESH SECTION ===== */
.products-section {
  padding: 7rem 6%;
  position: relative;
  overflow: hidden;
  background: #F2EEFF;
}

.products-section::before {
  content: '';
  position: absolute;
  inset: -60%;
  width: 220%; height: 220%;
  background:
    radial-gradient(ellipse 55% 45% at 15% 25%, rgba(99, 102, 241, 0.38) 0%, transparent 55%),
    radial-gradient(ellipse 45% 55% at 85% 70%, rgba(139, 92, 246, 0.32) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 55% 10%, rgba(79, 142, 247, 0.28) 0%, transparent 55%),
    radial-gradient(ellipse 40% 50% at 30% 85%, rgba(168, 85, 247, 0.25) 0%, transparent 55%),
    radial-gradient(ellipse 35% 35% at 70% 40%, rgba(59, 130, 246, 0.22) 0%, transparent 50%);
  animation: meshDrift 18s ease-in-out infinite alternate;
  z-index: 0;
  pointer-events: none;
}
.products-section::after {
  content: '';
  position: absolute;
  inset: -60%;
  width: 220%; height: 220%;
  background:
    radial-gradient(ellipse 40% 50% at 70% 20%, rgba(129, 140, 248, 0.3) 0%, transparent 55%),
    radial-gradient(ellipse 50% 35% at 20% 65%, rgba(167, 139, 250, 0.25) 0%, transparent 55%),
    radial-gradient(ellipse 35% 45% at 90% 50%, rgba(99, 102, 241, 0.22) 0%, transparent 50%);
  animation: meshDrift2 22s ease-in-out infinite alternate;
  z-index: 0;
  pointer-events: none;
}

@keyframes meshDrift {
  0%   { transform: translate(0%, 0%)    scale(1)    rotate(0deg); }
  100% { transform: translate(-4%, 3%)   scale(1.06) rotate(2deg); }
}
@keyframes meshDrift2 {
  0%   { transform: translate(0%, 0%)    scale(1)    rotate(0deg); }
  100% { transform: translate(5%, -3%)   scale(1.04) rotate(-2deg); }
}

.products-inner {
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.product-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.4rem;
  margin-top: 3rem;
}

.pc-maksutin { grid-column: span 2; }

.product-card {
  border-radius: 28px;
  padding: 2.8rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.28s, box-shadow 0.28s;
  min-height: 280px;
  display: flex;
  flex-direction: column;
}
.product-card:hover { transform: translateY(-5px); }

.pc-maksutin {
  background: linear-gradient(135deg, #0F1F5C 0%, #1E3A8A 45%, #1D4ED8 100%);
  color: white;
  box-shadow: 0 24px 60px rgba(29,78,216,0.35);
}
.pc-lokidrop {
  background: linear-gradient(140deg, #1E1B4B 0%, #4C1D95 60%, #6D28D9 100%);
  color: white;
  box-shadow: 0 24px 60px rgba(76,29,149,0.35);
}
.pc-pengupost {
  background: linear-gradient(140deg, #3B0764 0%, #7E22CE 55%, #A855F7 100%);
  color: white;
  box-shadow: 0 24px 60px rgba(126,34,206,0.3);
}

.pc-bg-text {
  position: absolute;
  right: -0.05em;
  bottom: -0.3em;
  font-size: 7.5rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -4px;
  color: rgba(255,255,255,0.05);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.pc-maksutin .pc-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

.pc-lokidrop .pc-inner,
.pc-pengupost .pc-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pc-name {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1;
  margin-bottom: 0.6rem;
}

.pc-tagline {
  font-size: 1rem;
  opacity: 0.75;
  line-height: 1.55;
  margin-bottom: 1.4rem;
  font-weight: 400;
  max-width: 420px;
}

.pc-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 1.8rem;
}
.pc-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  opacity: 0.82;
  font-weight: 500;
}
.pc-features li::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.6);
  flex-shrink: 0;
}

.pc-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.3);
  padding: 0.55rem 1.2rem;
  border-radius: 50px;
  backdrop-filter: blur(8px);
  background: rgba(255,255,255,0.1);
  width: fit-content;
  transition: background 0.2s, gap 0.2s;
}
.pc-cta:hover {
  background: rgba(255,255,255,0.2);
  gap: 0.8rem;
}

.pc-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}
.pc-highlight {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 1rem;
}
.pc-highlight-title {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.55;
  margin-bottom: 0.3rem;
}
.pc-highlight-val {
  font-size: 0.88rem;
  font-weight: 600;
  opacity: 0.9;
}

/* ===== CUSTOM DEV ===== */
.custom-section {
  padding: 7rem 6%;
  background: var(--bg);
}

.custom-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.checklist {
  list-style: none;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}
.check-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.check-icon::after {
  content: '✓';
  color: white;
  font-size: 0.7rem;
  font-weight: 800;
}

/* ===== TEAM ===== */
.team-section {
  padding: 7rem 6%;
  background: var(--bg);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  max-width: 1080px;
  margin: 3rem auto 0;
}

.team-card {
  border-radius: 24px;
  padding: 2.2rem 1.8rem 2rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.28s, box-shadow 0.28s;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-size: cover;
  background-position: center top;
}
.team-card:hover { transform: translateY(-6px); }

.team-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  pointer-events: none;
  z-index: 0;
}

.tc-mika::after  { background: linear-gradient(to bottom,
  rgba(15, 31, 92, 0.15) 0%, rgba(15, 31, 92, 0.7) 55%, rgba(15, 31, 92, 0.96) 100%);
  box-shadow: 0 16px 45px rgba(29,78,216,0.32); }
.tc-anna::after  { background: linear-gradient(to bottom,
  rgba(76, 29, 149, 0.15) 0%, rgba(76, 29, 149, 0.7) 55%, rgba(76, 29, 149, 0.96) 100%); }
.tc-maria::after { background: linear-gradient(to bottom,
  rgba(30, 27, 75, 0.15) 0%, rgba(30, 27, 75, 0.7) 55%, rgba(30, 27, 75, 0.96) 100%); }
.tc-cristi::after{ background: linear-gradient(to bottom,
  rgba(59, 7, 100, 0.15) 0%, rgba(59, 7, 100, 0.7) 55%, rgba(59, 7, 100, 0.96) 100%); }

.tc-mika    { background-color: #1E3A8A; box-shadow: 0 16px 45px rgba(29,78,216,0.32); }
.tc-anna    { background-color: #6D28D9; box-shadow: 0 16px 45px rgba(109,40,217,0.28); }
.tc-maria   { background-color: #3730A3; box-shadow: 0 16px 45px rgba(55,48,163,0.30); }
.tc-cristi  { background-color: #7E22CE; box-shadow: 0 16px 45px rgba(126,34,206,0.28); }

.team-initial {
  position: absolute;
  top: -0.1em;
  right: -0.15em;
  font-size: 5.5rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(255,255,255,0.12);
  pointer-events: none;
  user-select: none;
  letter-spacing: -3px;
  white-space: nowrap;
  z-index: 1;
}

.team-name {
  font-size: 1.4rem;
  font-weight: 900;
  color: white;
  letter-spacing: -0.5px;
  margin-bottom: 0.7rem;
  position: relative;
  z-index: 2;
}

.team-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  position: relative;
  z-index: 2;
}

.team-pill {
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.9);
  padding: 0.25rem 0.7rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}

.team-pill-ai {
  background: rgba(192,132,252,0.25);
  border-color: rgba(192,132,252,0.45);
  color: #E9D5FF;
}

/* ===== TESTIMONIALS TEASER ===== */
.testimonials-teaser {
  padding: 6rem 6%;
  background: linear-gradient(135deg, rgba(79,142,247,0.05), rgba(155,110,243,0.07));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.testimonials-inner {
  max-width: 680px;
  margin: 0 auto;
}

.quote-block {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  border: 1px solid var(--border);
  margin-top: 3rem;
  position: relative;
}
.quote-mark {
  font-size: 4rem;
  line-height: 1;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: absolute;
  top: 0.5rem;
  left: 1.5rem;
  font-family: Georgia, serif;
}
.quote-text {
  font-size: 1rem;
  line-height: 1.75;
  color: #374151;
  font-style: italic;
  padding-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.quote-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  justify-content: flex-start;
}

.read-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  color: white;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 8px 24px rgba(79,142,247,0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}
.read-all-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(79,142,247,0.42);
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 7rem 6%;
  text-align: center;
  background: white;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .product-cards { grid-template-columns: 1fr; }
  .pc-maksutin { grid-column: span 1; }
  .pc-maksutin .pc-inner { grid-template-columns: 1fr; }
  .pc-highlights { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .two-col, .custom-inner { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-grid { grid-template-columns: 1fr; }
  .bc-wide, .bc-tall { grid-column: span 1; grid-row: span 1; }
}
