/* === Trip Labs — Apple Liquid Glass Redesign === */

* { box-sizing: border-box; margin: 0; padding: 0; }
img { max-width: 100%; height: auto; }
a { text-decoration: none; }
svg { flex-shrink: 0; }

/* ── GLASS BASE CARD ── */
.glass-card {
  background: var(--c-glass);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border: 1px solid var(--c-glass-border);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease);
}
/* Top rim light — like real glass catching light */
.glass-card::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  pointer-events: none;
  z-index: 1;
}
.glass-card:hover {
  background: var(--c-glass-strong);
  border-color: var(--c-glass-border-strong);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.1);
}

/* ── GLASS BUTTONS ── */
.btn-glass {
  background: rgba(245,166,35,0.2);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border: 1px solid rgba(245,166,35,0.3);
  border-radius: var(--radius-pill);
  padding: 16px 40px;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(245,166,35,0.15), inset 0 1px 0 rgba(255,255,255,0.15);
}
.btn-glass::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  pointer-events: none;
}
.btn-glass:hover {
  background: rgba(245,166,35,0.35);
  border-color: rgba(245,166,35,0.5);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(245,166,35,0.3), inset 0 1px 0 rgba(255,255,255,0.2);
  color: #fff;
}

.btn-glass-secondary {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-pill);
  padding: 16px 40px;
  color: rgba(255,255,255,0.8);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.35s var(--ease);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}
.btn-glass-secondary:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.95);
}

/* Legacy button aliases — keep for pages that still use old classes */
.btn-primary { }
.btn-outline { }

/* ── MATRIX RAIN ANIMATION ── */
@keyframes matrix-rain-1 {
  from { transform: translateY(-100%); }
  to   { transform: translateY(100vh); }
}
@keyframes matrix-rain-2 {
  from { transform: translateY(-80%); }
  to   { transform: translateY(120vh); }
}

.matrix-rain {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}
.matrix-col {
  position: absolute;
  top: -100%;
  font-family: 'Courier New', monospace;
  font-size: 14px;
  line-height: 1.4;
  color: rgba(56,161,105,0.2);
  writing-mode: vertical-rl;
  text-orientation: upright;
  white-space: nowrap;
  text-shadow: 0 0 8px rgba(56,161,105,0.4);
  animation: matrix-rain-1 linear infinite;
  letter-spacing: 2px;
}
.matrix-col:nth-child(1)  { left: 5%;  animation-duration: 8s;  animation-delay: 0s;    font-size: 12px; opacity: 0.45; }
.matrix-col:nth-child(2)  { left: 12%; animation-duration: 12s; animation-delay: -2s;   font-size: 16px; opacity: 0.18; }
.matrix-col:nth-child(3)  { left: 22%; animation-duration: 7s;  animation-delay: -4s;   font-size: 13px; opacity: 0.3; color: rgba(245,166,35,0.25); text-shadow: 0 0 8px rgba(245,166,35,0.35); }
.matrix-col:nth-child(4)  { left: 35%; animation-duration: 10s; animation-delay: -1s;   font-size: 11px; opacity: 0.28; }
.matrix-col:nth-child(5)  { left: 45%; animation-duration: 9s;  animation-delay: -5s;   font-size: 15px; opacity: 0.14; }
.matrix-col:nth-child(6)  { left: 55%; animation-duration: 11s; animation-delay: -3s;   font-size: 14px; opacity: 0.22; color: rgba(229,62,62,0.2); text-shadow: 0 0 8px rgba(229,62,62,0.35); }
.matrix-col:nth-child(7)  { left: 63%; animation-duration: 8s;  animation-delay: -6s;   font-size: 12px; opacity: 0.32; }
.matrix-col:nth-child(8)  { left: 72%; animation-duration: 13s; animation-delay: -1.5s; font-size: 16px; opacity: 0.16; }
.matrix-col:nth-child(9)  { left: 80%; animation-duration: 7s;  animation-delay: -4.5s; font-size: 13px; opacity: 0.38; color: rgba(245,166,35,0.25); text-shadow: 0 0 8px rgba(245,166,35,0.35); }
.matrix-col:nth-child(10) { left: 88%; animation-duration: 10s; animation-delay: -2.5s; font-size: 11px; opacity: 0.24; }
.matrix-col:nth-child(11) { left: 95%; animation-duration: 9s;  animation-delay: -7s;   font-size: 14px; opacity: 0.18; }
.matrix-col:nth-child(12) { left: 2%;  animation-duration: 11s; animation-delay: -5.5s; font-size: 15px; opacity: 0.28; }

/* ── HERO ELEMENTS ── */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-pill);
  padding: 8px 20px;
  font-size: 12px;
  color: var(--c-gold);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 40px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}
.hero-badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--c-green);
  animation: hero-pulse 2s ease-in-out infinite;
  box-shadow: 0 0 8px var(--c-green);
}

.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(240,240,245,.6);
  line-height: 1.7;
  margin: 0 auto 56px; max-width: 580px;
}

.hero-actions {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 64px;
}

/* Glass stats bar */
.hero-stats {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 20px 8px;
  position: relative;
  overflow: hidden;
}
.hero-stats::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
}
.hero-stat { padding: 0 32px; text-align: center; }
.hero-stat-value {
  display: block; font-size: 28px; font-weight: 800;
  color: #FFFFFF; letter-spacing: -.02em; line-height: 1.1; margin-bottom: 4px;
}
.hero-stat-label {
  display: block; font-size: 12px;
  color: rgba(240,240,245,.4); letter-spacing: .04em; text-transform: uppercase;
}
.hero-stat-divider { width: 1px; height: 40px; flex-shrink: 0; }
.hero-stat-divider:nth-child(2) { background: rgba(56,161,105,.5); }
.hero-stat-divider:nth-child(4) { background: rgba(245,166,35,.5); }
.hero-stat-divider:nth-child(6) { background: rgba(229,62,62,.5); }

/* ── SECTION COMMON ── */
.section-label {
  display: inline-block; font-size: 11px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 8px; margin-bottom: 24px;
  backdrop-filter: var(--blur-light);
  -webkit-backdrop-filter: var(--blur-light);
}
.label-red   { background: rgba(229,62,62,0.1);   color: var(--c-red);   border: 1px solid rgba(229,62,62,.2); }
.label-gold  { background: rgba(245,166,35,0.1);   color: var(--c-gold);  border: 1px solid rgba(245,166,35,.2); }
.label-green { background: rgba(56,161,105,0.1);   color: var(--c-green); border: 1px solid rgba(56,161,105,.2); }

.section-title {
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 900; letter-spacing: -.035em; line-height: 1.05;
  background: linear-gradient(135deg, #FFFFFF 0%, rgba(238,238,240,.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.25rem;
}
.section-sub,
.section-subtitle {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--c-text-muted); max-width: 560px; line-height: 1.6;
}

/* ── SERVICES ── */
.services-section {
  padding: 160px 0;
  position: relative;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative; z-index: 1;
}

/* Service card = glass-card + padding */
.service-card {
  padding: 36px 28px;
  /* glass-card applied via class in HTML */
}
/* Coloured top accent per card position */
.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  border-radius: 20px 20px 0 0;
  z-index: 2;
}
.service-card:nth-child(3n+1)::after { background: linear-gradient(90deg, var(--c-gold), transparent); }
.service-card:nth-child(3n+2)::after { background: linear-gradient(90deg, var(--c-green), transparent); }
.service-card:nth-child(3n+3)::after { background: linear-gradient(90deg, var(--c-red), transparent); }

.service-card:nth-child(3n+1):hover { border-color: rgba(245,166,35,0.3); box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px rgba(245,166,35,0.08), inset 0 1px 0 rgba(255,255,255,0.1); }
.service-card:nth-child(3n+2):hover { border-color: rgba(56,161,105,0.3); box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px rgba(56,161,105,0.08), inset 0 1px 0 rgba(255,255,255,0.1); }
.service-card:nth-child(3n+3):hover { border-color: rgba(229,62,62,0.3); box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px rgba(229,62,62,0.08), inset 0 1px 0 rgba(255,255,255,0.1); }

.service-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s var(--ease);
}
.service-icon-gold  { background: rgba(245,166,35,0.1);  color: var(--c-gold);  border: 1px solid rgba(245,166,35,.15); }
.service-icon-green { background: rgba(56,161,105,0.1);  color: var(--c-green); border: 1px solid rgba(56,161,105,.15); }
.service-icon-red   { background: rgba(229,62,62,0.1);   color: var(--c-red);   border: 1px solid rgba(229,62,62,.15); }
.service-card:hover .service-icon { transform: scale(1.1); }

.service-title { font-size: 17px; font-weight: 700; color: var(--c-text); margin: 0 0 10px; letter-spacing: -.01em; }
.service-desc  { font-size: 14px; color: var(--c-text-muted); line-height: 1.65; margin: 0; }

/* ── PORTFOLIO ── */
.portfolio-section { padding: 160px 0; position: relative; }
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.portfolio-card {
  padding: 40px 32px;
  display: block;
  /* glass-card applied via class in HTML */
}
/* Rasta gradient border on hover */
.portfolio-card::after {
  content: '';
  position: absolute; inset: -1px;
  border-radius: 21px;
  border: 2px solid transparent;
  background: linear-gradient(135deg, #38A169, #F5A623, #E53E3E) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.2;
  transition: opacity 0.4s;
  pointer-events: none;
}
.portfolio-card:hover::after { opacity: 0.85; }
.portfolio-card:hover {
  box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 60px rgba(245,166,35,.06);
}

.portfolio-tag {
  display: inline-block; font-size: 11px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 8px;
  background: rgba(56,161,105,.08); color: var(--c-green);
  border: 1px solid rgba(56,161,105,.2); margin-bottom: 20px;
}
.portfolio-name { font-size: 28px; font-weight: 800; color: var(--c-text); letter-spacing: -.025em; margin: 0 0 12px; line-height: 1.1; }
.portfolio-desc { font-size: 15px; color: var(--c-text-muted); line-height: 1.65; margin: 0 0 32px; }
.portfolio-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 600; color: var(--c-gold);
  transition: gap .25s var(--ease);
}
.portfolio-card:hover .portfolio-link { gap: 10px; }
.portfolio-link-icon { width: 16px; height: 16px; }

/* ── PROCESS ── */
.process-section { padding: 160px 0; }
.process-timeline {
  display: flex; flex-direction: column; gap: 0;
  max-width: 720px; position: relative;
}
.process-timeline::before {
  content: '';
  position: absolute; left: 20px; top: 28px; bottom: 28px; width: 2px;
  background: linear-gradient(to bottom,
    rgba(56,161,105,.4),
    rgba(245,166,35,.4),
    rgba(229,62,62,.4),
    rgba(56,161,105,.4),
    rgba(245,166,35,.4),
    rgba(229,62,62,.4)
  );
}
.process-step {
  display: flex; gap: 28px; align-items: flex-start;
  padding: 28px 0; position: relative;
  transition: all 0.3s var(--ease);
}
.process-dot {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 15px;
  position: relative; z-index: 1; border: 1px solid;
  backdrop-filter: var(--blur-light);
  -webkit-backdrop-filter: var(--blur-light);
  transition: box-shadow .3s var(--ease);
}
.process-step:nth-child(1) .process-dot { background: rgba(56,161,105,.1); border-color: rgba(56,161,105,.4); color: var(--c-green); }
.process-step:nth-child(2) .process-dot { background: rgba(245,166,35,.1); border-color: rgba(245,166,35,.4); color: var(--c-gold); }
.process-step:nth-child(3) .process-dot { background: rgba(229,62,62,.1);  border-color: rgba(229,62,62,.4);  color: var(--c-red); }
.process-step:nth-child(4) .process-dot { background: rgba(56,161,105,.1); border-color: rgba(56,161,105,.4); color: var(--c-green); }
.process-step:nth-child(5) .process-dot { background: rgba(245,166,35,.1); border-color: rgba(245,166,35,.4); color: var(--c-gold); }
.process-step:nth-child(6) .process-dot { background: rgba(229,62,62,.1);  border-color: rgba(229,62,62,.4);  color: var(--c-red); }
.process-step:hover .process-dot { box-shadow: 0 0 24px currentColor; }
.process-content { padding-top: 6px; }
.process-day { font-size: 11px; font-weight: 600; letter-spacing: .09em; text-transform: uppercase; color: rgba(240,240,245,.35); margin-bottom: 6px; }
.process-title { font-size: 20px; font-weight: 700; color: var(--c-text); margin: 0 0 8px; letter-spacing: -.01em; }
.process-desc { font-size: 15px; color: var(--c-text-muted); line-height: 1.65; margin: 0; }

/* ── FAQ — Apple glass accordion ── */
.faq-section { padding: 160px 0; }
.faq-list { max-width: 760px; display: flex; flex-direction: column; gap: 10px; }

.faq-item {
  background: rgba(255,255,255,0.05);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: background .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
  position: relative;
}
.faq-item::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
  pointer-events: none;
}
.faq-item.open {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.15);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.08);
}
.faq-item:hover:not(.open) {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.12);
}
.faq-question {
  width: 100%; display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
  padding: 22px 24px; background: none; border: none;
  cursor: pointer; text-align: left;
  font-size: 16px; font-weight: 600; color: rgba(238,238,240,.85);
  line-height: 1.4; transition: color .2s;
}
.faq-item.open .faq-question { color: #fff; }
.faq-toggle {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  transition: background .25s, transform .3s var(--ease), border-color .25s;
  color: var(--c-text-muted); font-size: 18px; font-weight: 300;
}
.faq-item.open .faq-toggle {
  background: rgba(245,166,35,0.1);
  color: var(--c-gold);
  border-color: rgba(245,166,35,.25);
  transform: rotate(45deg);
  box-shadow: 0 0 12px rgba(245,166,35,.15);
}
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .4s var(--ease), padding .4s var(--ease);
  padding: 0 24px;
}
.faq-item.open .faq-answer { max-height: 400px; padding: 0 24px 22px; }
.faq-answer p {
  font-size: 15px; color: rgba(240,240,245,.55); line-height: 1.75; margin: 0;
  border-top: 1px solid rgba(255,255,255,.06); padding-top: 16px;
}

/* ── CTA — Glass panel with pulsing glow ── */
.cta-section {
  position: relative;
  padding: 180px 0;
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(245,166,35,0.18) 0%, rgba(56,161,105,0.05) 50%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  animation: glow-pulse 4s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
.cta-section::after {
  content: '';
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 200px; height: 3px;
  background: linear-gradient(to right, #38A169 33.3%, #F5A623 33.3% 66.6%, #E53E3E 66.6%);
  opacity: .7;
}
.cta-inner,
.cta-section > .section-container {
  position: relative; z-index: 1;
  max-width: 680px; margin: 0 auto; padding: 0 24px; text-align: center;
}
.cta-title {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900; letter-spacing: -.04em; line-height: 1.0; margin: 0 0 24px;
  background: linear-gradient(135deg, #FFFFFF 0%, var(--c-gold) 60%, var(--c-green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cta-sub {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(240,240,245,.5); line-height: 1.7; margin: 0 0 56px;
}

/* CTA glass panel */
.cta-panel {
  background: rgba(255,255,255,0.05);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}
.cta-panel::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
}

.cta-telegram {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 15px; color: rgba(240,240,245,.35); margin-top: 24px;
  text-decoration: none; transition: color .2s;
}
.cta-telegram:hover { color: rgba(240,240,245,.65); }
.cta-telegram-icon { width: 20px; height: 20px; color: #3fa7e1; }

/* Legacy CTA button class */
.cta-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(245,166,35,0.22);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border: 1px solid rgba(245,166,35,0.35);
  color: #fff;
  font-weight: 700; font-size: 17px;
  padding: 18px 52px; border-radius: var(--radius-pill); text-decoration: none;
  transition: all .3s var(--ease);
  position: relative; overflow: hidden;
  box-shadow: 0 4px 24px rgba(245,166,35,.2), inset 0 1px 0 rgba(255,255,255,.15);
  margin-bottom: 0;
}
.cta-btn::before {
  content: '';
  position: absolute; top: 0; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.35), transparent);
}
.cta-btn:hover {
  background: rgba(245,166,35,0.38);
  border-color: rgba(245,166,35,0.55);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 52px rgba(245,166,35,.35), inset 0 1px 0 rgba(255,255,255,.2);
  color: #fff;
}

/* ── FOOTER ── */
.rasta-stripe { height: 3px; background: linear-gradient(to right, var(--c-green), var(--c-gold), var(--c-red)); }
.site-footer {
  background: rgba(0,0,5,0.7);
  backdrop-filter: var(--blur-light);
  -webkit-backdrop-filter: var(--blur-light);
  border-top: 1px solid rgba(255,255,255,0.06);
  color: var(--c-text-muted);
}
.footer-rasta-top { height: 3px; background: linear-gradient(to right, var(--c-green), var(--c-gold), var(--c-red)); }
.footer-inner { padding: 5rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 3.5rem; margin-bottom: 3rem; }
.footer-brand p { font-size: .875rem; line-height: 1.7; max-width: 320px; margin-top: 1rem; color: var(--c-text-muted); }
.footer-brand .footer-logo { display: inline-flex; align-items: center; gap: .75rem; margin-bottom: .5rem; }
.footer-logo-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: var(--blur-light);
  -webkit-backdrop-filter: var(--blur-light);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .8rem; color: #fff; flex-shrink: 0;
  background-image: linear-gradient(135deg, var(--c-green), var(--c-gold));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.15);
}
.footer-logo-name { font-weight: 800; font-size: 1.05rem; color: var(--c-text); }
.footer-logo-name span { color: var(--c-gold); }
.footer-title { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--c-text-muted); margin-bottom: 1.25rem; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: .65rem; }
.footer-links a { color: var(--c-text-muted); font-size: .875rem; transition: color .2s; display: flex; align-items: center; gap: .4rem; }
.footer-links a:hover { color: var(--c-gold); }
.footer-contacts a { display: flex; align-items: center; gap: .5rem; color: var(--c-text-muted); font-size: .875rem; margin-bottom: .75rem; transition: color .2s; }
.footer-contacts a.contact-tg:hover   { color: var(--c-green); }
.footer-contacts a.contact-email:hover { color: var(--c-gold); }
.footer-contacts a.contact-phone:hover { color: var(--c-red); }
.footer-contacts span { display: flex; align-items: center; gap: .5rem; font-size: .875rem; margin-bottom: .75rem; }
.footer-cta-btn {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  background: rgba(245,166,35,0.15);
  backdrop-filter: var(--blur-light);
  -webkit-backdrop-filter: var(--blur-light);
  border: 1px solid rgba(245,166,35,0.25);
  color: var(--c-gold) !important;
  padding: .85rem; border-radius: var(--radius-sm);
  font-weight: 700; font-size: .9rem; margin-top: 1.5rem;
  transition: all .3s var(--ease); text-decoration: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}
.footer-cta-btn:hover {
  background: rgba(245,166,35,0.28);
  border-color: rgba(245,166,35,0.45);
  transform: translateY(-2px);
  color: var(--c-gold) !important;
}
.footer-cta-sub { text-align: center; margin-top: .75rem; font-size: .8rem; color: var(--c-text-muted); }
.footer-cta-sub a { color: var(--c-green); transition: color .2s; }
.footer-cta-sub a:hover { color: var(--c-gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.5rem 0 1.25rem;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: .5rem; font-size: .8rem; color: var(--c-text-muted);
}
.footer-easter-egg { font-size: .6rem; color: rgba(255,255,255,0.06); letter-spacing: .15em; user-select: none; }

/* ── FLOATING TG ── */
@keyframes tg-pulse {
  0%   { box-shadow: 0 4px 20px rgba(56,161,105,.4); }
  50%  { box-shadow: 0 4px 20px rgba(56,161,105,.4), 0 0 0 12px rgba(56,161,105,.06); }
  100% { box-shadow: 0 4px 20px rgba(56,161,105,.4); }
}
#floatingTg { animation: tg-pulse 3s ease-in-out infinite; }
#floatingTg:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(56,161,105,.65) !important;
  animation: none;
}

/* ── ANIMATIONS ── */
@keyframes hero-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .4; transform: scale(.8); }
}
@keyframes glow-pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.7; }
  50% { transform: translate(-50%, -50%) scale(1.25); opacity: 1; }
}

/* ── UTILITIES ── */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity .55s var(--ease), transform .55s var(--ease); }
.fade-up.visible { opacity: 1 !important; transform: translateY(0) !important; }
.section { padding: 5rem 0; }
.glow-gold  { box-shadow: 0 0 20px rgba(245,166,35,.3); }
.glow-green { box-shadow: 0 0 20px rgba(56,161,105,.3); }
.glow-red   { box-shadow: 0 0 20px rgba(229,62,62,.3); }

/* ── PROSE ── */
.prose { color: var(--c-text-muted); line-height: 1.8; }
.prose h2 { font-size: 1.5rem; font-weight: 700; color: var(--c-text); margin: 2.5rem 0 1rem; letter-spacing: -.02em; }
.prose h3 { font-size: 1.25rem; font-weight: 600; color: var(--c-text); margin: 2rem 0 .75rem; }
.prose p { margin-bottom: 1.25rem; }
.prose ul, .prose ol { margin: 1rem 0; padding-left: 1.5rem; }
.prose li { margin-bottom: .5rem; }
.prose a { color: var(--c-gold); text-decoration: underline; transition: color .2s; }
.prose a:hover { color: var(--c-green); }
.prose img { border-radius: var(--radius); margin: 2rem 0; }
.prose blockquote {
  border-left: 2px solid var(--c-gold);
  padding: 1rem 1.5rem;
  background: var(--c-glass);
  backdrop-filter: var(--blur-light);
  -webkit-backdrop-filter: var(--blur-light);
  border-radius: 0 10px 10px 0; margin: 1.5rem 0;
}
.prose strong { color: var(--c-text); }

/* ── PRICING (keep for other pages) ── */
.pricing-section { padding: 160px 0; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; margin-bottom: 40px; }
.pricing-card {
  background: var(--c-glass);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border: 1px solid var(--c-glass-border);
  border-radius: var(--radius); padding: 40px 32px;
  position: relative; transition: all .4s var(--ease);
}
.pricing-card:hover { transform: translateY(-4px); }
.pricing-card.popular {
  background: rgba(245,166,35,.06);
  border-color: rgba(245,166,35,.3);
  box-shadow: 0 0 60px rgba(245,166,35,.1), 0 0 0 1px rgba(245,166,35,.15);
  transform: translateY(-10px);
}
.pricing-card.popular:hover { transform: translateY(-14px); }
.popular-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--c-gold); color: #0A0A0F;
  font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 18px; border-radius: 100px; white-space: nowrap;
}
.pricing-plan { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--c-text-muted); margin-bottom: 14px; }
.pricing-price { font-size: 44px; font-weight: 900; color: var(--c-text); letter-spacing: -.035em; line-height: 1; margin-bottom: 4px; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .services-grid  { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .pricing-grid   { grid-template-columns: 1fr; }
  .footer-grid    { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-stat { padding: 0 16px; }
  .hero-stat-value { font-size: 22px; }
  .services-section,
  .portfolio-section,
  .process-section,
  .faq-section,
  .cta-section { padding: 80px 0; }
  .cta-panel { padding: 32px 24px; }
  .hero-stats { flex-wrap: wrap; gap: 12px; padding: 16px; }
  .hero-stat-divider { display: none; }
}
