/* ===================== CSS VARIABLES ===================== */
:root {
  --orange: #FF5C1A;
  --orange-light: #FF7A45;
  --orange-glow: rgba(255,92,26,0.15);
  --yellow: #FFB800;
  --yellow-light: #FFD166;
  --black: #0F0F0F;
  --dark: #1A1A1A;
  --grey: #6B6B6B;
  --light-grey: #F4F4F1;
  --white: #FFFFFF;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --transition: 0.4s var(--ease-out);
}

/* ===================== RESET & BASE ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--dark);
  overflow-x: hidden;
  cursor: none;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: none; border: none; background: none; font-family: var(--font-body); }
ul { list-style: none; }
/* ===================== CUSTOM CURSOR ===================== */
.cursor {
  width: 12px; height: 12px;
  background: var(--orange);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.3s var(--ease-out), height 0.3s var(--ease-out), background 0.3s;
  mix-blend-mode: normal;
}
.cursor-follower {
  width: 40px; height: 40px;
  border: 1.5px solid var(--orange);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.15s var(--ease-out), width 0.3s var(--ease-out), height 0.3s var(--ease-out), border-color 0.3s, opacity 0.3s;
  opacity: 0.6;
}
.cursor.hover { width: 20px; height: 20px; background: var(--yellow); }
.cursor-follower.hover { width: 60px; height: 60px; border-color: var(--yellow); opacity: 0.4; }

/* ===================== TYPOGRAPHY ===================== */
h1, h2, h3, h4, h5 { font-family: var(--font-display); font-weight: 800; line-height: 1.05; }
h1 { font-size: clamp(1.7rem, 6vw, 3.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
p { line-height: 1.7; font-weight: 300; }
.section-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.section-label::before {
  content: '';
  width: 24px; height: 2px;
  background: var(--orange);
  display: inline-block;
}

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.9rem 2rem;
  font-family: var(--font-display);
  font-size: 0.95rem; font-weight: 700;
  border-radius: 50px;
  transition: var(--transition);
  position: relative; overflow: hidden;
  cursor: none;
  white-space: nowrap;
}
.btn::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.15);
  transform: translateX(-110%) skewX(-15deg);
  transition: transform 0.5s var(--ease-out);
}
.btn:hover::after { transform: translateX(110%) skewX(-15deg); }
.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 8px 30px rgba(255,92,26,0.35);
}
.btn-nav{width: auto !important; padding: 10px 20px !important;}
.btn-primary:hover {
  background: var(--orange-light);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(255,92,26,0.45);
}
.btn-secondary {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--dark);
}
.btn-secondary:hover {
  background: var(--dark);
  color: var(--white);
  transform: translateY(-3px);
}
.btn-white {
  background: var(--white);
  color: var(--orange);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}
.btn-white:hover {
  background: var(--yellow);
  color: var(--dark);
  transform: translateY(-3px);
}
.btn-arrow::after { display: none; }
.btn-arrow .arrow {
  display: inline-block;
  transition: transform 0.3s var(--ease-out);
}
.btn-arrow:hover .arrow { transform: translate(4px,-4px); }

/* ===================== LAYOUT ===================== */
.container { width: 100%; max-width: 1480px; margin: 0 auto; padding: 0 2rem; }
section { position: relative; }
.section-pad { padding: 7rem 0; }

/* ===================== HEADER / NAV ===================== */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 99;
  padding: 1.2rem 0;
  transition: background 0.4s, box-shadow 0.4s, padding 0.4s;
}
header.scrolled {
  background: rgba(255,255,255,0.96);
  box-shadow: 0 2px 40px rgba(0,0,0,0.08);
  padding: 0.8rem 0;
  backdrop-filter: blur(12px);
}
.nav {
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 800;
  color: var(--dark);
  display: flex; align-items: center; gap: 0.4rem;
  margin-bottom: 4px;
}
.logo-img{
  display: block;
  width: 45px;
}
.logo-dot {
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 50%;
  display: inline-block;
}

/* KH logo — курсивный Krystyna + блочный HORBENKO */
.logo-kh-row{display: flex; align-items: center; gap: 10px;}
.logo-kh {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  gap: 2px;
  transition: var(--transition);
}
.logo-script {
  font-family: 'Great Vibes', cursive;
  font-size: 2.1rem;
  font-weight: 400;
  background: linear-gradient(135deg, var(--orange) 0%, var(--yellow) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 0.85;
}
.logo-block {
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--dark);
}
.logo-kh:hover { transform: scale(1.02); }

/* About Me секция */
.about-section {
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: center;
}
.about-visual { position: relative; }
.about-photo {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--orange) 0%, var(--yellow) 100%);
}
.about-photo-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.about-initials {
  font-family: var(--font-display);
  font-size: 8rem;
  font-weight: 800;
  color: var(--white);
  opacity: 0.95;
  letter-spacing: -0.05em;
}
.about-badge-float {
  position: absolute;
  bottom: 2rem; right: -1rem;
  background: var(--white);
  padding: 0.7rem 1.2rem;
  border-radius: 50px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  display: flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark);
}
.about-name {
  background: linear-gradient(135deg, var(--orange) 0%, var(--yellow) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.about-text p {
  color: var(--grey);
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
}
.about-skills {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin: 2rem 0;
}
.about-skill {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.about-skill-icon {
  width: 48px; height: 48px;
  background: rgba(255,92,26,0.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.about-skill-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 0.2rem;
}
.about-skill-desc {
  font-size: 0.9rem;
  color: var(--grey);
}

/* Made by KH — метка в футере */
.made-by-kh {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 0.8rem 0.4rem 0.4rem;
  border-radius: 50px;
  transition: var(--transition);
}
.made-by-kh:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,92,26,0.3);
}
.kh-circle {
  width: 28px; height: 28px;
  
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--white);
}
.made-by-text {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
}
.made-by-text strong {
  color: var(--white);
  font-weight: 700;
}

@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-photo { max-width: 400px; margin: 0 auto; }
}
@media (max-width: 768px) {
  .mobile-menu-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--dark);
    padding: 0.5rem;
    line-height: 1;
    transition: color 0.3s;
  }
.mobile-menu-close:hover { color: var(--orange); }
  .logo-script { font-size: 1.75rem; }
  .logo-block { font-size: 0.6rem; }
  .about-initials { font-size: 6rem; }
  .footer-desc{width: 100%; position: absolute; padding-top: 10px;}
  .footer-socials{ padding-top: 70px;}
}
.nav-links {
  display: flex; align-items: center; gap: 2rem;
  flex: 1; justify-content: center;
}
.mobile-menu a {
  border-bottom: 1px solid rgba(0,0,0,0.06);
  width: 100%;
  text-align: center;
  padding: 0.5rem 0;
}
.nav-links a {
  font-family: var(--font-display);
  font-size: 0.9rem; font-weight: 600;
  color: var(--dark);
  position: relative;
  transition: color 0.3s;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -2px; left: 0; right: 0;
  height: 2px; background: var(--orange);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}
.nav-links a:hover { color: var(--orange); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-right { display: flex; align-items: center; gap: 1rem; }
.lang-switcher {
  display: flex; align-items: center; gap: 0.3rem;
  font-family: var(--font-display);
  font-size: 0.8rem; font-weight: 700;
  background: var(--light-grey);
  border-radius: 50px;
  padding: 0.3rem 0.4rem;
}
.lang-btn {
  padding: 0.25rem 0.6rem;
  border-radius: 50px;
  color: var(--grey);
  transition: var(--transition);
  cursor: none;
}
.lang-btn.active {
  background: var(--orange);
  color: var(--white);
}
.lang-btn:hover:not(.active) { color: var(--dark); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 6px; cursor: pointer;
  position: relative; z-index: 101;
  background: none; border: none;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--dark); border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span { background: var(--dark); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.nav-mobile-bottom {display: contents;}
.mobile-menu {
  display: none; position: fixed; inset: 0;
  background: var(--white); z-index: 100;
  flex-direction: column; align-items: center; justify-content: center; gap: 0.8rem;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
  padding-top: 80px; padding-bottom: 2rem;
  overflow-y: auto;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a {
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 600;
  color: var(--dark); transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--orange); }

/* ===================== HERO ===================== */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding-top: 6rem;
  background: var(--light-grey);
  overflow: hidden;
  position: relative;
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: float 8s ease-in-out infinite;
}
.hero-shape-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,92,26,0.18), transparent 70%);
  top: -200px; right: -100px;
}
.hero-shape-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,184,0,0.15), transparent 70%);
  bottom: -100px; left: -50px;
  animation-delay: -4s;
}
.hero-shape-3 {
  width: 200px; height: 200px;
  background: var(--orange);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  top: 20%; right: 10%;
  opacity: 0.06;
  animation: morph 10s ease-in-out infinite alternate;
}
@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}
@keyframes morph {
  0% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
  25% { border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%; }
  50% { border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%; }
  75% { border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%; }
  100% { border-radius: 70% 30% 40% 60% / 40% 60% 40% 60%; }
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}
.hero-content { position: relative; z-index: 2; display: flex; gap: 4rem; align-items: center; }
.hero-text{width: 60%;}
.hero-visual{width: 40%;}
.hero-label {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: var(--orange-glow); border: 1px solid rgba(255,92,26,0.2);
  border-radius: 50px; padding:0.7rem 1rem;
  margin-bottom: 1.5rem;
}
.hero-label-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.6; }
}
.hero-label span {
  font-family: var(--font-display);
  font-size: 0.75rem; font-weight: 700;
  color: var(--orange); text-transform: uppercase; letter-spacing: 0.1em;
}
.hero-title { margin-bottom: 1.5rem; line-height: 1.08; }
.hero-title .highlight {
  position: relative; display: inline-block; color: var(--orange);
}
.hero-title .highlight::after {
  content: '';
  position: absolute; bottom: 4px; left: 0; right: 0; height: 4px;
  background: var(--yellow); border-radius: 2px; z-index: -1;
  transform: scaleX(0); transform-origin: left;
  animation: underline-reveal 1s 0.8s var(--ease-out) forwards;
}
@keyframes underline-reveal { to { transform: scaleX(1); } }

/* ===================== LETTER DROP ANIMATION ===================== */
.hero-title-animated {
  overflow: visible;
}
.word-wrap {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  line-height: 1.1;
  /* each word clips its own letters */
}
.letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(-80px) rotate(-25deg) scale(0.6);
  animation: letterDrop 0.65s var(--ease-out) forwards;
  transform-origin: center bottom;
  will-change: transform, opacity;
}
/* space between words */
.word-gap { display: inline-block; width: 0.35em; }

@keyframes letterDrop {
  0% {
    opacity: 0;
    transform: translateY(-80px) rotate(-22deg) scale(0.55);
  }
  60% {
    opacity: 1;
    transform: translateY(6px) rotate(3deg) scale(1.04);
  }
  80% {
    transform: translateY(-3px) rotate(-1deg) scale(0.98);
  }
  100% {
    opacity: 1;
    transform: translateY(0) rotate(0deg) scale(1);
  }
}

/* highlight word gets orange color per-letter */
.letter.is-highlight { color: var(--orange); }

/* underline on the highlight span rebuilds after letters land */
.hero-highlight-wrap {
  position: relative;
  display: inline-block;
}
.hero-highlight-wrap::after {
  content: '';
  position: absolute; bottom: 2px; left: 0; right: 0; height: 4px;
  background: var(--yellow); border-radius: 2px; z-index: -1;
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.7s var(--ease-out);
}
.hero-highlight-wrap.underline-on::after {
  transform: scaleX(1);
}
.hero-sub { font-size: 1.1rem; color: var(--grey); margin-bottom: 2.5rem; max-width: 480px; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3rem; }
.hero-stats { display: flex; gap: 2.5rem; flex-wrap: wrap; }
.stat { border-left: 2px solid var(--orange); padding-left: 1rem; }
.stat-number {
  font-family: var(--font-display); font-size: 1.8rem; font-weight: 800; color: var(--dark);
  line-height: 1;
}
.stat-label { font-size: 0.8rem; color: var(--grey); margin-top: 0.25rem; }
.hero-visual { position: relative; }
.hero-card {
  background: var(--white);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 30px 80px rgba(0,0,0,0.12);
  position: relative; overflow: hidden;
  animation: hero-card-float 6s ease-in-out infinite;
}
@keyframes hero-card-float {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-15px) rotate(1deg); }
}
.hero-card-browser {
  display: flex; align-items: center; gap: 0.4rem;
  margin-bottom: 1.5rem; padding-bottom: 1rem;
  border-bottom: 1px solid #eee;
}
.browser-dot {
  width: 10px; height: 10px; border-radius: 50%;
}
.browser-dot:nth-child(1) { background: #FF5F57; }
.browser-dot:nth-child(2) { background: #FFBD2E; }
.browser-dot:nth-child(3) { background: #28CA42; }
.browser-bar {
  flex: 1; height: 28px; background: var(--light-grey);
  border-radius: 6px; margin-left: 0.5rem;
  display: flex; align-items: center; padding: 0 0.75rem;
  font-size: 0.7rem; color: var(--grey);
}
.hero-mockup-nav {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1.5rem;
}
.mockup-logo {
  font-family: var(--font-display); font-size: 1rem; font-weight: 800;
  color: var(--dark);
}
.mockup-links { display: flex; gap: 0.75rem; }
.mockup-link {
  width: 40px; height: 8px; border-radius: 4px; background: var(--light-grey);
}
.mockup-hero {
  background: linear-gradient(135deg, var(--orange), var(--yellow));
  border-radius: 16px; padding: 1.5rem;
  margin-bottom: 1rem; min-height: 120px;
  display: flex; flex-direction: column; justify-content: flex-end; gap: 0.5rem;
  position: relative; overflow: hidden;
}
.mockup-hero::before {
  content: ''; position: absolute; top: -30%; right: -20%;
  width: 200px; height: 200px; border-radius: 50%;
  background: rgba(255,255,255,0.15);
}
.mockup-title {
  font-family: var(--font-display); font-weight: 800;
  font-size: 0.95rem; color: white; line-height: 1.2;
}
.mockup-btn {
  display: inline-block; background: white; color: var(--orange);
  font-family: var(--font-display); font-size: 0.65rem; font-weight: 700;
  padding: 0.35rem 0.9rem; border-radius: 50px; width: fit-content;
}
.mockup-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }
.mockup-card {
  background: var(--light-grey); border-radius: 10px; padding: 0.75rem;
}
.mockup-icon {
  width: 24px; height: 24px; border-radius: 6px;
  background: var(--orange); margin-bottom: 0.4rem;
  opacity: 0.8;
}
.mockup-line { height: 6px; background: #ddd; border-radius: 3px; margin-bottom: 0.3rem; }
.mockup-line.short { width: 60%; }
.hero-badge {
  position: absolute;
  background: var(--dark); color: var(--white);
  border-radius: 16px; padding: 0.75rem 1rem;
  font-family: var(--font-display); font-size: 0.75rem; font-weight: 700;
  display: flex; align-items: center; gap: 0.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.hero-badge-1 { bottom: -20px; left: -30px; animation: badge-float 5s ease-in-out infinite; }
.hero-badge-2 { top: -20px; right: -20px; animation: badge-float 5s ease-in-out infinite 2.5s; }
@keyframes badge-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.badge-icon { font-size: 1rem; }

/* ===================== MARQUEE ===================== */
.marquee-section {
  background: var(--dark); padding: 1.2rem 0; overflow: hidden;
}
.marquee-track {
  display: flex; gap: 0; width: max-content;
  animation: marquee 25s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-item {
  display: flex; align-items: center; gap: 1rem;
  padding: 0 2rem; white-space: nowrap;
  font-family: var(--font-display); font-size: 0.85rem; font-weight: 700;
  color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.1em;
}
.marquee-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); }
.marquee-star { color: var(--yellow); font-size: 1rem; }

/* ===================== SERVICES ===================== */
.services-section { background: var(--white); }
.services-header { display: flex; justify-content: space-between; align-items: flex-end; gap: 2rem; margin-bottom: 4rem; flex-wrap: wrap; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.service-card {
  background: var(--light-grey);
  border-radius: 24px; padding: 2rem;
  position: relative; overflow: hidden;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), background 0.4s;
  border: 1px solid transparent;
  cursor: none;
}
.service-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--orange), var(--yellow));
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 0;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(255,92,26,0.2);
  border-color: transparent;
}
.service-card:hover::before { opacity: 1; }
.service-card > * { position: relative; z-index: 1; }
.service-card:hover .service-icon { background: rgba(255,255,255,0.2); color: var(--white); }
.service-card:hover .service-title, .service-card:hover .service-desc { color: var(--white); }
.service-card:hover .service-number { color: rgba(255,255,255,0.15); }
.service-card:hover .service-arrow { color: var(--white); opacity: 1; transform: translate(3px,-3px); }
.service-icon {
  width: 54px; height: 54px; border-radius: 14px;
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 1.5rem;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}
.service-number {
  position: absolute; top: 1.5rem; right: 1.5rem;
  font-family: var(--font-display); font-size: 3rem; font-weight: 800;
  color: rgba(0,0,0,0.05); transition: color 0.4s; line-height: 1;
}
.service-title { font-size: 1.2rem; margin-bottom: 0.75rem; color: var(--dark); transition: color 0.4s; }
.service-desc { font-size: 0.9rem; color: var(--grey); transition: color 0.4s; line-height: 1.6; }
.service-arrow {
  display: inline-block; margin-top: 1.5rem;
  color: var(--orange); font-size: 1.3rem;
  opacity: 0; transform: translate(0,0);
  transition: var(--transition);
}
.service-card:hover .service-arrow { opacity: 1; transform: translate(3px,-3px); }

/* ===================== PRICING ===================== */
.pricing-section { background: var(--light-grey); }
.pricing-header { text-align: center; margin-bottom: 4rem; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; align-items: start; }
.pricing-card {
  background: var(--white); border-radius: 28px; padding: 2.5rem;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
  position: relative; border: 2px solid transparent;
  cursor: none;
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px rgba(0,0,0,0.1); }
.pricing-card.featured {
  background: var(--dark);
  transform: translateY(-16px) scale(1.02);
  box-shadow: 0 40px 80px rgba(0,0,0,0.25);
  border-color: var(--orange);
}
.pricing-card.featured:hover { transform: translateY(-24px) scale(1.02); }
.pricing-badge {
  display: inline-block;
  background: var(--orange); color: var(--white);
  font-family: var(--font-display); font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  padding: 0.3rem 0.85rem; border-radius: 50px;
  margin-bottom: 1.5rem;
}
.pricing-name {
  font-family: var(--font-display); font-size: 0.85rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--grey); margin-bottom: 0.5rem;
}
.pricing-card.featured .pricing-name { color: rgba(255,255,255,0.5); }
.pricing-price {
  font-family: var(--font-display); font-size: 3rem; font-weight: 800;
  color: var(--dark); line-height: 1; margin-bottom: 0.3rem;
}
.pricing-card.featured .pricing-price { color: var(--white); }
.pricing-price span { font-size: 1.2rem; vertical-align: top; margin-top: 0.5rem; display: inline-block; }
.pricing-from {
  font-size: 0.8rem; color: var(--grey); margin-bottom: 1.5rem;
}
.pricing-card.featured .pricing-from { color: rgba(255,255,255,0.4); }
.pricing-divider { height: 1px; background: var(--light-grey); margin-bottom: 1.5rem; }
.pricing-card.featured .pricing-divider { background: rgba(255,255,255,0.1); }
.pricing-features { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
.pricing-feature {
  display: flex; align-items: flex-start; gap: 0.75rem;
  font-size: 0.9rem; color: var(--grey);
}
.pricing-card.featured .pricing-feature { color: rgba(255,255,255,0.7); }
.feature-check {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--orange-glow); border: 1.5px solid var(--orange);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--orange); font-size: 0.6rem; font-weight: 900;
  margin-top: 2px;
}
.pricing-card.featured .feature-check { background: rgba(255,92,26,0.2); }

/* ===================== PORTFOLIO ===================== */
.portfolio-section { background: var(--white); }
.portfolio-header { display: flex; justify-content: space-between; align-items: flex-end; gap: 2rem; margin-bottom: 3rem; flex-wrap: wrap; }
/* ===================== PORTFOLIO CAROUSEL ===================== */
.portfolio-carousel {
  position: relative;
  overflow: hidden;
  padding: 1rem 0;
}
.portfolio-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.6s var(--ease-out);
  will-change: transform;
}
.portfolio-card {
  flex: 0 0 calc((100% - 3rem) / 3);
  min-width: 0;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  background: var(--white);
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
  display: flex;
  flex-direction: column;
  cursor: none;
}
.portfolio-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(255,92,26,0.2);
}
.portfolio-visual {
  width: 100%;
  aspect-ratio: 16/10;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.portfolio-visual-bg {
  position: absolute; inset: 0;
  transition: transform 0.6s var(--ease-out);
  display: flex; align-items: center; justify-content: center;
}
.portfolio-card:hover .portfolio-visual-bg { transform: scale(1.05); }

/* Текст карточки — ВИДИМЫЙ ВСЕГДА, ниже картинки */
.portfolio-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}
.portfolio-info-tag {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  width: fit-content;
}
.portfolio-title-card {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
}
.portfolio-desc-card {
  font-size: 0.9rem;
  color: var(--grey);
  line-height: 1.5;
  flex: 1;
}
.portfolio-actions {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}
.portfolio-btn-more {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.55rem 1rem;
  border-radius: 50px;
  border: 1.5px solid var(--dark);
  color: var(--dark);
  background: transparent;
  cursor: none;
  transition: var(--transition);
}
.portfolio-btn-more:hover {
  background: var(--dark);
  color: var(--white);
}
.portfolio-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.55rem 1rem;
  border-radius: 50px;
  background: var(--orange);
  color: var(--white);
  transition: var(--transition);
}
.portfolio-link:hover {
  background: var(--yellow);
  color: var(--dark);
  transform: translateY(-2px);
}

/* Карусель: точки и стрелки */
.portfolio-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.portfolio-arrow {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 2px solid var(--dark);
  background: var(--white);
  color: var(--dark);
  font-size: 1.2rem;
  cursor: none;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.portfolio-arrow:hover {
  background: var(--dark);
  color: var(--white);
  transform: scale(1.1);
}
.portfolio-dots {
  display: flex;
  gap: 0.5rem;
}
.portfolio-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(0,0,0,0.15);
  cursor: none;
  transition: var(--transition);
}
.portfolio-dot.active {
  background: var(--orange);
  width: 28px;
  border-radius: 10px;
}

/* Portfolio mockup backgrounds (унаследовано) */

.pf-mockup {
  width: 80%; max-width: 280px; padding: 1rem;
  background: rgba(255,255,255,0.1); backdrop-filter: blur(10px);
  border-radius: 16px; border: 1px solid rgba(255,255,255,0.15);
  position: relative; z-index: 1;
}
.pf-nav { display: flex; justify-content: space-between; margin-bottom: 0.75rem; }
.pf-nav-dot { height: 8px; border-radius: 4px; background: rgba(255,255,255,0.4); }
.pf-nav-dot.wide { width: 60px; }
.pf-nav-dot.sm { width: 30px; }
.pf-hero-block { border-radius: 10px; padding: 1.25rem; margin-bottom: 0.5rem; }
.pf-title-line { height: 10px; border-radius: 5px; margin-bottom: 0.4rem; background: rgba(255,255,255,0.8); }
.pf-title-line.sm { width: 60%; height: 7px; background: rgba(255,255,255,0.5); }
.pf-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 0.4rem; }
.pf-card { background: rgba(255,255,255,0.12); border-radius: 8px; padding: 0.5rem; height: 50px; }
.pf-bar { height: 5px; border-radius: 3px; margin-bottom: 0.3rem; background: rgba(255,255,255,0.6); }
.pf-bar.sm { width: 60%; background: rgba(255,255,255,0.3); }

/* ===================== PROJECT MODAL ===================== */
.project-modal {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(10px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.project-modal.open {
  opacity: 1;
  pointer-events: all;
}
.project-modal-content {
  background: var(--white);
  border-radius: 24px;
  max-width: 80vw;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(30px);
  transition: transform 0.4s var(--ease-out);
}
.project-modal.open .project-modal-content {
  transform: translateY(0);
}
.project-modal-close {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(0,0,0,0.1);
  color: var(--dark);
  font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  cursor: none;
  transition: var(--transition);
  z-index: 2;
}
.project-modal-close:hover {
  background: var(--orange);
  color: var(--white);
  transform: rotate(90deg);
}
.project-modal-visual {
  width: 100%;
  position: relative;
  overflow: hidden;
  
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
}
.project-modal-body {
  padding: 2rem;
}
.project-modal-tag {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.project-modal-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 1rem;
  line-height: 1.1;
}
.project-modal-desc {
  font-size: 1rem;
  color: var(--grey);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.project-modal-details {
  background: var(--light-grey);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
}
.project-modal-details-title {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.project-modal-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.project-modal-list li {
  padding: 0.4rem 0;
  font-size: 0.95rem;
  color: var(--dark);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}
.project-modal-list li::before {
  content: '✓';
  color: var(--orange);
  font-weight: 800;
  flex-shrink: 0;
}
.project-modal-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.8rem;
  background: var(--orange);
  color: var(--white);
  border-radius: 50px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 10px 30px rgba(255,92,26,0.35);
  transition: var(--transition);
}
.project-modal-cta:hover {
  background: var(--yellow);
  color: var(--dark);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255,184,0,0.45);
}

/* ===================== TESTIMONIALS ===================== */
.testimonials-section { background: var(--dark); }
.testimonials-header { text-align: center; margin-bottom: 4rem; }
.testimonials-header .section-label { color: var(--orange); }
.testimonials-header h2 { color: var(--white); }
.testimonials-slider { position: relative; overflow: hidden; }
.testimonials-track {
  display: flex; gap: 1.5rem;
  transition: transform 0.6s var(--ease-out);
}
.testimonial-card {
  flex-shrink: 0; width: calc(33.333% - 1rem);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px; padding: 2rem;
  transition: var(--transition);
}
.testimonial-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,92,26,0.3);
  transform: translateY(-4px);
}
.testimonial-stars { display: flex; gap: 0.25rem; margin-bottom: 1rem; color: var(--yellow); font-size: 0.9rem; }
.testimonial-text {
  font-size: 1rem; color: rgba(255,255,255,0.75);
  line-height: 1.7; margin-bottom: 1.5rem; font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 800;
  color: var(--white); flex-shrink: 0;
}
.testimonial-name { font-family: var(--font-display); font-size: 0.95rem; font-weight: 700; color: var(--white); }
.testimonial-role { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.slider-controls { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-top: 2rem; }
.slider-btn {
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255,255,255,0.1); border: 1.5px solid rgba(255,255,255,0.2);
  color: var(--white); font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); cursor: none;
}
.slider-btn:hover { background: var(--orange); border-color: var(--orange); }
.slider-dots { display: flex; gap: 0.5rem; }
.slider-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.2); transition: var(--transition); cursor: none;
}
.slider-dot.active { background: var(--orange); width: 24px; border-radius: 4px; }

/* ===================== PROCESS ===================== */
.process-section { background: var(--white); }
.process-header { text-align: center; margin-bottom: 4rem; }
.process-timeline { position: relative; }
.process-line {
  position: absolute; top: 40px; left: calc(10% + 20px); right: calc(10% + 20px);
  height: 2px; background: var(--light-grey);
  display: none;
}
.process-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.5rem; position: relative; }
.process-step {
  text-align: center; padding: 0 1rem;
  position: relative;
}
.process-step-num {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--light-grey);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 800;
  color: var(--grey);
  transition: background 0.5s ease, color 0.5s ease, transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
  position: relative; z-index: 1;
}
.process-step.visible .process-step-num {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(255,92,26,0.25);
  animation: circle-pulse 0.6s ease-out;
}
@keyframes circle-pulse {
  0% { transform: scale(0.6); opacity: 0.5; }
  50% { transform: scale(1.15); }
  100% { transform: scale(1); opacity: 1; }
}
.process-step.visible.delay-1 .process-step-num { transition-delay: 0.1s; animation-delay: 0.1s; }
.process-step.visible.delay-2 .process-step-num { transition-delay: 0.3s; animation-delay: 0.3s; }
.process-step.visible.delay-3 .process-step-num { transition-delay: 0.5s; animation-delay: 0.5s; }
.process-step.visible.delay-4 .process-step-num { transition-delay: 0.7s; animation-delay: 0.7s; }
.process-step.visible.delay-5 .process-step-num { transition-delay: 0.9s; animation-delay: 0.9s; }
.process-step:hover .process-step-num {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(255,92,26,0.4);
}
.process-icon { font-size: 1.5rem; margin-bottom: 0.75rem; }
.process-title {
  font-family: var(--font-display); font-size: 1rem; font-weight: 700;
  color: var(--dark); margin-bottom: 0.5rem;
}
.process-desc { font-size: 0.85rem; color: var(--grey); line-height: 1.5; }
.process-connector {
  position: absolute; top: 31px; right: -50%; width: 100%; height: 3px;
  background: var(--light-grey);
  z-index: 0;
  overflow: hidden;
  border-radius: 2px;
}
.process-connector::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--orange), var(--yellow));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.process-connector::before {
  content: '';
  position: absolute;
  top: -3px; left: 0;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 10px rgba(255,92,26,0.6);
  opacity: 0;
  z-index: 1;
}
.process-step.visible .process-connector::after {
  transform: scaleX(1);
}
.process-step.visible .process-connector::before {
  opacity: 1;
  animation: dot-travel 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
@keyframes dot-travel {
  0% { left: 0; opacity: 1; }
  90% { left: calc(100% - 9px); opacity: 1; }
  100% { left: calc(100% - 9px); opacity: 0; }
}
.process-step.delay-1 .process-connector::after { transition-delay: 0.3s; }
.process-step.delay-1 .process-connector::before { animation-delay: 0.3s; }
.process-step.delay-2 .process-connector::after { transition-delay: 0.5s; }
.process-step.delay-2 .process-connector::before { animation-delay: 0.5s; }
.process-step.delay-3 .process-connector::after { transition-delay: 0.7s; }
.process-step.delay-3 .process-connector::before { animation-delay: 0.7s; }
.process-step.delay-4 .process-connector::after { transition-delay: 0.9s; }
.process-step.delay-4 .process-connector::before { animation-delay: 0.9s; }
.process-step:last-child .process-connector { display: none; }

/* ===================== CTA ===================== */
.cta-section {
  background: linear-gradient(135deg, var(--orange) 0%, #FF8C42 50%, var(--yellow) 100%);
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; top: -50%; right: -10%;
  width: 800px; height: 800px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  pointer-events: none;
}
.cta-section::after {
  content: '';
  position: absolute; bottom: -60%; left: -10%;
  width: 600px; height: 600px; border-radius: 50%;
  background: rgba(0,0,0,0.06);
  pointer-events: none;
}
.cta-content { text-align: center; position: relative; z-index: 1; }
.cta-content h2 { color: var(--white); margin-bottom: 1.2rem; }
.cta-content p { color: rgba(255,255,255,0.85); font-size: 1.1rem; margin-bottom: 2.5rem; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-outline-white {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.6);
  color: var(--white);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  transform: translateY(-3px);
}

/* ===================== CONTACT ===================== */
.contact-section { background: var(--light-grey); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.contact-info-label { margin-bottom: 0.5rem; }
.contact-title { margin-bottom: 1rem; }
.contact-sub { font-size: 1rem; color: var(--grey); margin-bottom: 2.5rem; }
.contact-links { display: flex; flex-direction: column; gap: 1rem; }
.contact-link {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--white); border-radius: 16px;
  transition: var(--transition);
  border: 1px solid transparent;
}
.contact-link:hover {
  border-color: var(--orange);
  transform: translateX(6px);
  box-shadow: 0 8px 25px rgba(255,92,26,0.1);
}
.contact-link-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--orange-glow); color: var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.contact-link-text { font-family: var(--font-display); font-size: 0.95rem; font-weight: 600; }
.contact-link-sub { font-size: 0.8rem; color: var(--grey); }
.contact-form { background: var(--white); border-radius: 24px; padding: 2.5rem; box-shadow: 0 20px 60px rgba(0,0,0,0.07); }
.form-title { font-family: var(--font-display); font-size: 1.3rem; font-weight: 800; margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-family: var(--font-display); font-size: 0.8rem; font-weight: 700; color: var(--grey); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.5rem; }
.form-input, .form-textarea, .form-select {
  width: 100%; padding: 0.9rem 1.1rem;
  border: 2px solid var(--light-grey);
  border-radius: 12px; font-family: var(--font-body); font-size: 0.95rem;
  color: var(--dark); background: var(--light-grey);
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
  outline: none; appearance: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--orange);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(255,92,26,0.1);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ===================== FOOTER DONATE STRIP ===================== */
.footer-donate-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;

  margin-bottom: 2rem;
 
}
.footer-donate-text {
  color: rgba(255,255,255,0.7);
  font-size: 0.92rem;
}
.footer-donate-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1.3rem;
  border-radius: 999px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  transition: var(--transition);
  white-space: nowrap;
}
.footer-donate-btn:hover {
  background: var(--yellow);
  color: var(--dark);
  transform: translateY(-2px);
}
@media (max-width: 480px) {
  .footer-donate-strip {
    flex-direction: column;
    text-align: center;
  }
  .portfolio-btn-more{
    width: 100%;
    display: flex;              
    justify-content: center;   
    align-items: center;        
    text-align: center;
    padding: 0.9rem;
    font-size: 0.9rem;
    font-weight: 600;
    
  }
  .portfolio-link{
    width: 100%;
    display: flex;              
    justify-content: center;   
    align-items: center;        
    text-align: center;
    padding: 0.9rem;
    font-size: 0.9rem;
    font-weight: 600;
  }
  .btn{ width: 100%;
    display: flex;              
    justify-content: center;   
    align-items: center;        
    text-align: center;
    padding: 0.9rem;
    font-size: 0.9rem;
    font-weight: 600;}
}



/* ===================== FOOTER ===================== */
footer, .site-footer {
  background: var(--black); padding: 5rem 0 2rem;
}
.footer-col--contact { font-style: normal; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 4rem;
}
.footer-brand .logo { color: var(--white); margin-bottom: 1rem; }
.footer-desc { font-size: 0.9rem; color: rgba(255,255,255,0.4); line-height: 1.7; margin-bottom: 1.5rem; }
.footer-socials { display: flex; gap: 0.75rem; }
.social-link {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); font-size: 0.9rem;
  transition: var(--transition); border: 1px solid rgba(255,255,255,0.1);
}
.social-link:hover { background: var(--orange); color: var(--white); border-color: var(--orange); transform: translateY(-3px); }
.footer-col-title {
  font-family: var(--font-display); font-size: 0.85rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--white); margin-bottom: 1.25rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links a { font-size: 0.9rem; color: rgba(255,255,255,0.4); transition: color 0.3s; }
.footer-links a:hover { color: var(--orange); }
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.footer-copy { font-size: 0.85rem; color: rgba(255,255,255,0.3); }
.footer-made { font-size: 0.85rem; color: rgba(255,255,255,0.3); }
.footer-made span { color: rgba(255,255,255,0.3);; }

/* ===================== SCROLL REVEAL ===================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { display: none; max-width: 500px; margin: 0 auto; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .pricing-card.featured { transform: none; }
  .portfolio-card { flex: 0 0 calc((100% - 1.5rem) / 2); }
  .testimonial-card { width: calc(50% - 0.75rem); }
  .process-steps { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  .container{padding: 20px;}
  .lang-btn{font-size: 12px;}
  .hero{padding-top: 150px;}
  .hero-card{width: 100%;}
  .hero-buttons {display: flex;flex-direction: row;justify-content: center;gap: 0.6rem;}
  .hero-buttons .btn {font-size: 14px; font-weight: 600;}
  .hero-buttons .arrow {display: none;}
  .hero-visual {width: 100%;}

  .hero-sub{ font-size: 1rem; line-height: 1.4;}
  .nav-links { display: none; }
  .nav-right .btn { display: none; }
  .nav {flex-wrap: wrap;gap: 0;}
  .logo-kh-row {width: 100%;order: 1;padding-bottom: 0.5rem;border-bottom: 1px solid rgba(0, 0, 0, 0.06);}
  .nav-mobile-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    order: 2;
    padding-top: 0.5rem;
  }
  .nav-right {
    flex: unset;
  }
  .hamburger { display: flex; margin-right: 20px;}
  .mobile-menu { display: flex; }
  .hero-content {flex-direction: column; padding: 0; }
  .hero-text{ width: 100%; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-badge-1 { left: 0; bottom: -10px; }
  .hero-badge-2 { right: 0; top: -10px; }
  .services-grid { grid-template-columns: 1fr; }
  .services-header { flex-direction: column; align-items: flex-start; }
  .portfolio-card { flex: 0 0 100%; }
  .project-modal-title { font-size: 1.5rem; }
  .project-modal-body { padding: 1.5rem; }
  .testimonial-card { width: calc(100% - 0rem); }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 2.5rem 1.5rem; }
  .process-connector { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "brand brand"
      "nav services"
      "contact contact";
    gap: 1.5rem 1rem;
  }
  .footer-brand { grid-area: brand; grid-column: auto; }
  .footer-col--nav { grid-area: nav; }
  .footer-col--services { grid-area: services; }
  .footer-col--contact { grid-area: contact; }
  .footer-bottom {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    justify-items: start;
    text-align: left;
  }
  .cursor, .cursor-follower { display: none; }
  body { cursor: auto; }
  button { cursor: pointer; }
  a { cursor: pointer; }
  .section-pad { padding: 4rem 0; }

}
@media (max-width: 480px) {
  .stat-number{font-size: 1.4rem; margin-bottom: 10px;}
  .process-steps { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-stats { flex-wrap: nowrap; gap: 1rem; align-items: center; }
  .hero-badge-1, .hero-badge-2 { display: none; }
 
  .portfolio-header { flex-direction: column; align-items: flex-start; }
}

/* Notification */
.notification {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 1000;
  background: var(--dark); color: var(--white);
  padding: 1rem 1.5rem; border-radius: 16px;
  font-family: var(--font-display); font-size: 0.9rem; font-weight: 600;
  display: flex; align-items: center; gap: 0.75rem;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  transform: translateY(100px); opacity: 0;
  transition: transform 0.5s var(--ease-out), opacity 0.5s;
}
.notification.show { transform: translateY(0); opacity: 1; }
.notification-icon { font-size: 1.2rem; }
