/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0f0f0f;
  --bg2: #151515;
  --bg3: #1c1c1c;
  --surface: #222;
  --surface2: #2a2a2a;
  --accent: #c8f135;
  --accent2: #a8d020;
  --text: #f0f0f0;
  --text2: #aaa;
  --text3: #666;
  --white: #fff;
  --radius: 16px;
  --radius-sm: 8px;
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; overflow-x: clip; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: clip;
  width: 100%;
}

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

.container {
  min-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}

.section { padding: 10px 0; }

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
}

.section-header {
  display: flex;
  flex-direction: column;
  margin-bottom: 60px;
}
.section-header--center { align-items: center; text-align: center; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn--primary {
  background: var(--accent);
  color: #000;
}
.btn--primary:hover { background: var(--accent2); transform: translateY(-2px); }

.btn--outline {
  border-color: var(--text);
  color: var(--text);
  background: transparent;
}
.btn--outline:hover { border-color: var(--accent); color: var(--accent); }

.btn--ghost {
  border-color: rgba(255,255,255,0.2);
  color: var(--text);
  background: transparent;
}
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }

.btn--dark {
  background: #000;
  color: var(--white);
  border-color: #000;
}
.btn--dark:hover { background: #222; }

.btn--full { width: 100%; justify-content: center; }

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 0 40px;
  background: rgba(15,15,15,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: padding var(--transition);
}

.header__logo {
  background: none;
  color: #000;
  width: 150px;
  height: auto;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.header__logo img { width: 100%; height: auto; max-height: 100px; object-fit: contain; display: block; }

.header__nav {
  display: flex;
  gap: 8px;
  flex: 1;
}

.header__nav a {
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text2);
  transition: all var(--transition);
}
.header__nav a:hover,
.header__nav a.active {
  background: var(--accent);
  color: #000;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ===== MOBILE NAV ===== */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 99;
  background: var(--bg);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-nav.open { display: flex; }
.mobile-nav__link {
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  transition: color var(--transition);
}
.mobile-nav__link:hover { color: var(--accent); }

/* ===== HERO ===== */
.hero {
  max-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 250px 60px 80px;
  position: relative;
  overflow: hidden;
}

.hero__bg-photo {
  position: absolute;
  inset: 0;
  background: url('../images/me.png') right 10% / 100% no-repeat,
              #0f0f0f;
  z-index: 0;
}

/* dark gradient so text stays readable over the photo */
.hero__bg-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(15,15,15,1) 35%,
    rgba(15,15,15,0.55) 55%,
    rgba(15,15,15,0.1) 100%
  );
}

.hero__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
  max-width: 560px;
}

.hero__greeting {
  font-size: 18px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
}

.hero__title {
  font-size: clamp(42px, 6vw, 86px);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 24px;
}
.hero__title--accent { color: var(--accent); }

.hero__desc {
  font-size: 17px;
  color: var(--text2);
  max-width: 460px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero__stats {
  position: absolute;
  right: 60px;
  bottom: 40px;
  display: flex;
  gap: 80px;
  z-index: 3;
}

.hero__stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero__stat-num {
  font-size: 45px;
  font-weight: 900;
  line-height: 1;
  color: white;
}
.hero__stat-label {
  font-size: 12px;
  color: var(--text2);
  line-height: 1.4;
  margin-top: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  width: 100%;
}
.hero__stat-label-line { display: block; }

.hero__skills-card {
  position: absolute;
  right: 60px;
  top: 170px;
  background: rgba(20,20,20,0.85);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 20px 24px;
  z-index: 3;
}
.hero__skills-title {
  font-size: 13px;
  color: var(--text2);
  margin-bottom: 16px;
  font-weight: 500;
}
.hero__skills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.skill-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  overflow: hidden;
  cursor: default;
  transition: transform var(--transition);
}
.skill-icon img, .skill-icon svg {
  width: 100%;
  height: 100%;
  opacity: 0.9;
  filter: grayscale(30%);
  transition: opacity var(--transition), filter var(--transition);
}
.skill-icon:hover img, .skill-icon:hover svg {
  opacity: 1;
  filter: grayscale(0%);
}
.skill-icon:hover { transform: scale(1.1); }


/* ===== ABOUT ===== */
.about { background: var(--bg2); }

.about__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  align-items: center;
}

.about__text p {
  color: var(--text2);
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.8;
}

.about__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.tag {
  padding: 8px 16px;
  background: var(--surface);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.08);
  transition: all var(--transition);
}
.tag:hover { border-color: var(--accent); color: var(--accent); }

.about__photo-wrap {
  position: relative;
  width: 220px;
  flex-shrink: 0;
}

.about__photo-placeholder {
  width: 200px;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid var(--surface2);
}

.about__badge {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #000;
  font-weight: 700;
  font-size: 13px;
  padding: 8px 18px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

/* ===== PROJECTS ===== */
.projects { padding-left: 60px; padding-right: 60px; }
.projects__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 45px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

.projects__col {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

/* right column pushed down — creates the stagger effect */
.projects__col--right {
  margin-top: 120px;
}

.project-card {
  background: var(--bg2);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  position: relative;
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.8s ease, transform 0.8s ease, border-color 0.3s ease;
  width: 100%;
}

/* left col cards slide from left, right col from right */
.projects__col--left  .project-card { transform: translateX(-60px); }
.projects__col--right .project-card { transform: translateX(60px); }

.project-card.card-visible {
  opacity: 1;
  transform: translate(0, 0) !important;
  transition: opacity 2.2s cubic-bezier(0.22, 1, 0.36, 1),
              transform 2.2s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.3s ease;
}
.project-card.card-visible:hover {
  transform: translateY(-6px) !important;
  border-color: rgba(200,241,53,0.3);
}

.project-card--featured {
  grid-column: 1 / -1;
}

.project-card__tags {
  display: flex;
  gap: 8px;
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
}

.project-tag {
  padding: 6px 14px;
  background: #fff;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  color: #000;
}

.project-card__img {
  height: 100%;
  min-height: 550px;
  position: relative;
  margin: 0;
  border-radius: 0;
  overflow: hidden;
  cursor: pointer;
}

.project-card__img--travel,
.project-card__img--business,
.project-card__img--shop,
.project-card__img--blog { background: #111; }

.project-card__img--business .project-card__photo { object-position: left center; }
.project-card__img--blog:has(video) {
  height: auto;
  min-height: unset;
}
.project-card__img--blog video.project-card__photo {
  position: relative;
  inset: auto;
  width: 100%;
  height: auto;
  object-fit: unset;
  background: #0d0d0d;
}

.project-card__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.project-card:hover .project-card__photo { transform: scale(1.05); }

.project-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 3;
}
.project-card:hover .project-card__overlay { opacity: 1; }
.project-card:hover .project-card__footer { opacity: 0; }

.project-card__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.project-card__desc {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 16px;
}
.project-card__link {
  color: var(--accent);
  font-weight: 600;
  font-size: 14px;
}

.project-card__footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 60px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
  z-index: 2;
  transition: opacity 0.35s ease;
}
.project-card__footer strong { font-size: 16px; color: #fff; }
.project-card__footer span { font-size: 13px; color: rgba(255,255,255,0.6); }

/* ===== HOW I WORK ===== */
.howwork {
  background: var(--bg);
  padding: 100px 60px;
  overflow: hidden;
}

.howwork__inner {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.howwork__left {
  flex: 0 0 540px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.howwork__title {
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 24px;
}

.howwork__desc {
  font-size: 15px;
  color: var(--text2);
  line-height: 1.7;
  margin-bottom: 12px;
}

.howwork__cta {
  margin-top: 36px;
  align-self: flex-start;
}

.howwork__steps {
  flex: 1;
  display: flex;
  flex-direction: column-reverse;
  gap: 14px;
  padding-top: 8px;
}

.howwork__step {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 36px;
  border-radius: 50px;
  font-size: 17px;
  font-weight: 700;
  align-self: flex-start;
  border: 1px solid transparent;
  cursor: default;
  transition: transform 0.25s ease, background var(--transition), border-color var(--transition), color var(--transition);
}
.howwork__step:hover {
  transform: translateY(-8px);
}

.howwork__step-num {
  font-size: 14px;
  font-weight: 600;
  opacity: 0.6;
  transition: opacity var(--transition);
}
.howwork__step:hover .howwork__step-num { opacity: 1; }

.howwork__step--1 {
  background: var(--accent);
  color: #000;
  margin-left: 0;
}

.howwork__step--2 {
  background: #2a2a2a;
  color: var(--text);
  border-color: rgba(255,255,255,0.08);
  margin-left: 120px;
}
.howwork__step--3 {
  background: #222;
  color: var(--text);
  border-color: rgba(255,255,255,0.06);
  margin-left: 240px;
}
.howwork__step--4 {
  background: rgba(255,255,255,0.05);
  color: var(--text2);
  border-color: rgba(255,255,255,0.08);
  margin-left: 360px;
}

/* ===== BENTO ===== */
.bento {
  background: var(--bg);
  padding: 0 60px 80px;
}

.bento__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  grid-template-areas:
    "c1 c2 c3"
    "c4 c2 c5";
  gap: 16px;
}

.bento-card {
  border-radius: 20px;
  padding: 36px;
  position: relative;
  overflow: hidden;
}

.bento-card--dark {
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.06);
}

.bento-card--light {
  background: #fff;
}

.bento-card--c1 { grid-area: c1; display: flex; flex-direction: column; }
.bento-card--c2 { grid-area: c2; display: flex; flex-direction: column; align-items: center; justify-content: flex-end; }
.bento-card--c3 { grid-area: c3; display: flex; flex-direction: column; }
.bento-card--c4 { grid-area: c4; display: flex; flex-direction: column; justify-content: space-between; }
.bento-card--c5 { grid-area: c5; display: flex; flex-direction: column; justify-content: flex-end; }

.bento-card__title {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.2;
}
.bento-card__title--dark { color: #111; }

.bento-card__desc {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.6;
}
.bento-card__desc--dark { color: #555; }

/* Card 1 — illustration */
.bento-card__illustration svg {
  width: 100%;
  max-width: 180px;
  margin-top: auto;
  margin-left: auto;
  display: block;
  opacity: 0.85;
}

/* Card 2 — mockup */
.bento-card__mockup {
  width: 100%;
  margin-bottom: 28px;
}
.bento-card__mockup svg { width: 100%; }

/* Card 3 — photos */
.bento-card__photos {
  position: relative;
  height: 130px;
  margin-top: auto;
}
.bento-photo {
  position: absolute;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.bento-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bento-photo--1 { width: 130px; height: 90px; bottom: 0; right: 60px; transform: rotate(-4deg); }
.bento-photo--2 { width: 110px; height: 80px; bottom: 16px; right: 0; transform: rotate(3deg); }

/* Card 4 — icons */
.bento-card__icons {
  display: flex;
  gap: 10px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.bento-card__icons img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 10px;
  background: #f5f5f5;
  padding: 4px;
}

/* Card 5 — CTA */
.bento-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: var(--accent);
  color: #000;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 28px;
  align-self: flex-end;
  transition: background var(--transition), transform var(--transition);
}
.bento-card__cta:hover { background: var(--accent2); transform: scale(1.05); }

/* ===== SERVICES ===== */
.services { background: var(--bg); }

.section-header.services-header {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
}

.steps {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 80px;
}

.step {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  cursor: default;
  transition: padding var(--transition);
}
.step:hover { padding-left: 12px; }

.step__title {
  font-size: 20px;
  font-weight: 600;
}
.step__num {
  font-size: 15px;
  color: var(--text3);
  font-weight: 600;
}

.services__blocks {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.service-block--accent {
  background: #e8c917;
  padding: 60px 40px;
  border-radius: var(--radius);
  color: #000;
  border-bottom: none;
  margin-top: 40px;
}

.service-block h3 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.1;
}

.service-block p {
  color: var(--text2);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 24px;
}
.service-block--accent p { color: #333; }

.service-block ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.service-block ul li {
  font-size: 15px;
  font-weight: 600;
  padding-left: 20px;
  position: relative;
  color: var(--accent);
}
.service-block--accent ul li { color: #000; }
.service-block ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: inherit;
}

.service-block__visual {
  height: 280px;
  border-radius: var(--radius);
}
.service-block__visual--shop {
  background: linear-gradient(135deg, #1a2a4a, #2d4a8a);
  border: 1px solid rgba(255,255,255,0.1);
}
.service-block__visual--booking {
  background: linear-gradient(135deg, #2a1a1a, #4a2a00);
  border: 1px solid rgba(255,255,255,0.1);
}

/* ===== SERVICES2 ===== */
.services2 { background: var(--bg); }

.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 60px;
  position: sticky;
  top: 70px;
  will-change: transform;
}

.service-row--1 { background: #2BA2CC; z-index: 1; }
.service-row--2 { background: #965BC4; z-index: 2; }
.service-row--3 { background: #C1502B; z-index: 3; }
.service-row--4 { background: #A6E420; z-index: 4; }

.service-row--4 .service-row__title,
.service-row--4 .service-row__desc,
.service-row--4 .service-row__list li { color: #111; }
.service-row--4 .service-row__list li:hover { color: #fff; }
.service-row--4 .service-row__btn { border-color: rgba(0,0,0,0.3); color: #111; }
.service-row--4 .service-row__btn:hover { border-color: rgba(255,255,255,0.6); color: #fff; background: rgba(255,255,255,0.15); }

.service-row__title {
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 900;
  color: #fff;
  margin-bottom: 24px;
  line-height: 1.1;
}

.service-row__desc {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 14px;
}

.service-row__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 14px 26px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  transition: all var(--transition);
  white-space: nowrap;
}
.service-row__btn:hover {
  border-color: rgba(255,255,255,0.6);
  color: #fff;
  background: rgba(255,255,255,0.15);
}

.service-row__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.service-row__list li {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  cursor: default;
  transition: color var(--transition);
}
.service-row__list li:hover { color: var(--accent); }
.service-row__list li:last-child { border-bottom: none; }

.service-row__img {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}
.service-row__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.service-row:hover .service-row__img img { transform: scale(1.04); }

/* ===== PRICING ===== */
.pricing { background: var(--bg2); }

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.pricing-card {
  background: var(--bg3);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
  transition: transform var(--transition), border-color var(--transition);
}
.pricing-card:hover { transform: translateY(-6px); border-color: rgba(255,255,255,0.18); }

.pricing-card--featured {
  background: var(--surface2);
  border-color: var(--accent);
}

.pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 32px;
  background: var(--accent);
  color: #000;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
}

.pricing-card__name {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 16px;
}

.pricing-card__price {
  font-size: 40px;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 16px;
}
.pricing-card__price span {
  font-size: 20px;
  font-weight: 600;
  color: var(--text2);
}

.pricing-card__desc {
  font-size: 15px;
  color: var(--text2);
  line-height: 1.7;
  margin-bottom: 20px;
  flex: 1;
}

.pricing-card__time {
  font-size: 13px;
  color: var(--text2);
  margin-bottom: 24px;
}

.pricing-card__btn { width: 100%; justify-content: center; }

.pricing-support {
  font-size: 13px;
  color: #fff;
  line-height: 1.8;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.pricing-support strong {
  font-weight: 700;
}
.pricing-support__price {
  color: var(--accent);
  font-weight: 700;
}
.pricing-support__hl {
  background: rgba(255,255,255,0.1);
  padding: 2px 8px;
  border-radius: 50px;
  white-space: nowrap;
}

/* ===== CONTACT ===== */
.contact { position: relative;
    background: var(--bg2);
    overflow: visible;   /* вместо clip */
    z-index: 1; }

.contact__blob {
  position: absolute;
  width: 530px;
  height: 530px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,241,53,0.18) 0%, rgba(200,241,53,0) 70%);
  top: -240px;
  right: -100px;
  z-index: 0;
  animation: blobFloat 12s ease-in-out infinite;
  pointer-events: none;
}
@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-40px, 50px) scale(1.15); }
  66% { transform: translate(30px, -30px) scale(0.9); }
}

.contact .container { position: relative; z-index: 1; }

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact__text p {
  color: var(--text2);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 36px;
}

.contact__links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--surface);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.06);
  font-size: 15px;
  font-weight: 500;
  transition: all var(--transition);
}
.contact-link:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateX(4px);
}
.contact-link__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--text2);
  transition: color var(--transition);
}
.contact-link__icon svg { width: 100%; height: 100%; }
.contact-link:hover .contact-link__icon { color: var(--accent); }

/* Minimal contact links */
.contact__text-hint {
  font-size: 20px!important;
  font-weight: 800!important;
  color: white!important;
  margin-bottom: 30px!important;
}

.contact__links--minimal {
  gap: 22px;
}

.contact-link--minimal {
  background: none;
  border: none;
  padding: 0;
  gap: 16px;
}
.contact-link--minimal:hover { transform: translateX(6px); }

.contact-link--minimal .contact-link__icon {
  width: 44px;
  height: 44px;
  padding: 11px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--text2);
}
.contact-link--minimal:hover .contact-link__icon {
  border-color: var(--accent);
  color: var(--accent);
}

.contact-link__text {
  font-size: 16px;
  font-weight: 200;
  color: var(--text);
}
.contact-link--minimal:hover .contact-link__text { color: var(--accent); }

/* FORM */
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: var(--bg3);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 36px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 16px 20px;
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
  outline: none;
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text3); }
.form-group select { color: var(--text3); cursor: pointer; }
.form-group select option { color: var(--text); background: var(--surface); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  background: rgba(255,255,255,0.06);
  box-shadow: 0 0 0 4px rgba(200,241,53,0.12);
}
.form-group textarea { resize: vertical; min-height: 110px; }

.form-note {
  font-size: 12px;
  color: var(--text3);
  text-align: center;
  margin-top: 4px;
}

.contact__form-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}

.form-label {
  display: block;
  font-size: 14px;
  color: var(--text2);
  margin-bottom: 10px;
}

.form-radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.form-radio {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50px;
  font-size: 14px;
  color: var(--text2);
  cursor: pointer;
  transition: all var(--transition);
}
.form-radio input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  margin: 0;
}
.form-radio:has(input:checked) {
  border-color: var(--accent);
  color: var(--accent);
  font-weight: 700;
}

/* Minimal numbered form variant */
.contact__form--minimal {
  background: none;
  border: none;
  padding: 0;
  gap: 0;
}
.contact__form--minimal .contact__form-title {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 12px;
}

.form-field {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: border-color var(--transition);
}
.form-field:focus-within { border-color: var(--accent); }

.form-field__num {
  font-size: 12px;
  font-weight: 700;
  color: var(--text3);
  padding-top: 6px;
  flex-shrink: 0;
  letter-spacing: 1px;
}

.form-field input,
.form-field textarea {
  flex: 1;
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  color: var(--text);
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  outline: none;
  resize: none;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--text3); }

.form-field--method { align-items: center; }
.form-field__body { flex: 1; }
.form-field--method .form-label { margin-bottom: 10px; font-size: 13px; }

.contact__form-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 20px;
}
.contact__form-bottom .form-note {
  text-align: left;
  margin: 0;
  max-width: 280px;
}

.contact__form-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: none;
  border: none;
  color: var(--text);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  padding: 0;
}
.contact__form-submit span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: #000;
  transition: transform var(--transition), background var(--transition);
}
.contact__form-submit:hover span {
  background: var(--accent2);
  transform: translateX(4px);
}

/* ===== FOOTER ===== */
.footer {
  background: #000;
  padding: 60px 0 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 60px;
  align-items: start;
  margin-bottom: 48px;
}

.footer__logo {
  margin-bottom: 16px;
}
.footer__logo img {
  height: auto;
  max-height: 150px;
  width: auto;
  display: block;
  object-fit: contain;
}

.footer__brand p {
  font-size: 14px;
  color: var(--text3);
  line-height: 1.6;
}

.footer__nav,
.footer__social {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__nav a,
.footer__social a {
  font-size: 14px;
  color: var(--text3);
  transition: color var(--transition);
}
.footer__nav a:hover,
.footer__social a:hover { color: var(--accent); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 13px;
  color: var(--text3);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.howwork__step.fade-in {
  transform: translateX(-20px);
  transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.howwork__step.fade-in.visible {
  opacity: 1;
  transform: translateX(0);
}
.howwork__step.fade-in.visible:hover {
  transform: translateY(-8px);
}

.form-field.fade-in {
  transform: translateX(-16px);
  transition: opacity 0.6s cubic-bezier(0.22,1,0.36,1), transform 0.6s cubic-bezier(0.22,1,0.36,1), border-color var(--transition);
}
.form-field.fade-in.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1240px) {
  .container { min-width: 0; width: 100%; padding: 0 32px; }
}

@media (max-width: 1200px) {
  .hero { padding: 140px 40px 160px; min-height: 100vh; max-height: none; }
  .hero__bg-photo { background: url('../images/me.png') center top / cover no-repeat, #0f0f0f; }
  .hero__title { font-size: clamp(36px, 5vw, 60px); }
  .hero__left { max-width: 520px; }
  .hero__actions { margin-bottom: 32px; }
  .hero__stats { right: 40px; bottom: 40px; gap: 40px; }
  .hero__stat-num { font-size: 45px; }
  .hero__stat-label { font-size: 13px; }
  .hero__skills-card { display: none; }
}

@media (max-width: 1200px) {
  .bento { padding: 0 32px 60px; }
  .bento__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "c1 c3"
      "c2 c2"
      "c4 c5";
  }

  .howwork { padding: 80px 32px; }
  .howwork__inner { flex-direction: column; gap: 32px; }
  .howwork__left { flex: none; max-width: 100%; }
  .howwork__step--1,
  .howwork__step--2,
  .howwork__step--3,
  .howwork__step--4 { margin-left: 0; }
  .howwork__steps { flex-direction: row; flex-wrap: wrap; gap: 10px; }
  .howwork__step { padding: 12px 22px; font-size: 15px; }

  .projects { padding-left: 32px; padding-right: 32px; }
  .projects__grid { max-width: 100%; gap: 20px; }
  .projects__col--right { margin-top: 0; }

  .service-row {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 32px;
    padding: 60px 32px;
  }
  .service-row__left { grid-column: 1 / -1; }
  .service-row__img { grid-row: 1; }
}

@media (max-width: 1024px) {
  .hero__skills-card { display: none; }
}

@media (max-width: 900px) {
  .projects__grid { grid-template-columns: 1fr; max-width: 480px; }
  .pricing__grid { grid-template-columns: 1fr; }
  .pricing-support { flex-direction: column; align-items: flex-start; }

  .service-row {
    grid-template-columns: 1fr;
  }
  .service-row__left,
  .service-row__img { grid-column: 1; }
  .service-row__img { order: -1; }

  .contact__inner { grid-template-columns: 1fr; gap: 48px; }
  .contact__blob { width: 320px; height: 320px; top: -100px; right: -80px; }
}

@media (max-width: 768px) {

  /* ================= HEADER ================= */

 .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;

    width: 100%;
    max-width: none;

    height: 68px;

    padding: 0 12px;

    display: flex;
    align-items: center;

    gap: 12px;

    box-sizing: border-box;
}

  .header__nav {
    display: none;
  }

  .header > .btn--outline {
    display: none;
  }

  .header__logo {
    width: 145px;
    margin-left: -15px; /* можно -4px, если нужно ещё левее */
    display: flex;
    align-items: center;
    flex-shrink: 0;
    padding-top: 10px;
  }

  .header__logo img {
    width: 100%;
    height: auto;
    max-height: 80px;
    object-fit: contain;
  }

  .burger {
    display: flex;
    margin-left: auto;
    padding: 0;
    gap: 6px;
  }

  .burger span {
    width: 30px;
    height: 3px;
  }

  /* ================= LAYOUT ================= */

  .container {
    padding: 0 20px;
  }

  .section {
    padding: 60px 0;
  }

  .section-header {
    margin-bottom: 36px;
  }

  /* ================= HERO ================= */

  .hero {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    max-height: none;
    padding: 100px 20px 40px;
  }

  .hero__bg-photo {
    background: url("../images/me.png") calc(50% - 70px) top / cover no-repeat,
      #0f0f0f;
  }

  .hero__bg-photo::after {
    background: linear-gradient(
      to bottom,
      rgba(15, 15, 15, .55) 0%,
      rgba(15, 15, 15, .55) 40%,
      rgba(15, 15, 15, .92) 70%,
      rgba(15, 15, 15, 1) 100%
    );
  }

  .hero__left {
    order: 1;
    max-width: 100%;
  }

  .hero__desc {
    max-width: 50%;
    font-size: 15px;
  }

  .hero__actions {
    margin-bottom: 32px;
  }

  .hero__skills-card {
    position: static;
    order: 3;
    display: block;
    width: 100%;
    margin-top: 24px;
  }

  .hero__skills-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
  }

  .skill-icon {
    width: 100%;
    max-width: 52px;
    aspect-ratio: 1;
    height: auto;
  }

  .hero__stats {
    position: static;
    order: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-items: center;
    gap: 16px 10px;
    margin-top: 8px;
    text-align: center;
  }

  .hero__stat {
    align-items: center;
  }

  .hero__stat-label-line {
    display: block;
  }

  /* ================= HOW WORK ================= */

  .howwork {
    padding: 60px 20px;
  }

  .howwork__cta {
    display: none;
  }

  .howwork__steps {
    display: block;
    width: 100%;
    text-align: center;
  }

  .howwork__step {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 10px 0;
    padding: 12px 20px;
    font-size: 15px;
  }

  /* ================= PROJECTS ================= */

  .project-card__img {
    min-height: 360px;
  }

  .project-card__img--business .project-card__photo {
    object-position: 0 center;
  }

  .projects {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* ================= BENTO ================= */

  .bento {
    padding: 0 20px 48px;
  }

  .bento__grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "c1"
      "c2"
      "c3"
      "c4"
      "c5";
  }

  /* ================= SERVICES ================= */

  .service-row {
    padding: 48px 20px;
  }

  /* ================= PRICING ================= */

  .pricing-card__price {
    font-size: 32px;
  }

  /* ================= CONTACT ================= */

  .contact__inner {
    gap: 32px;
  }

  .contact__form {
    padding: 24px;
  }

  .contact__form--minimal {
    padding: 0;
  }

  .form-field {
    flex-direction: column;
    gap: 6px;
  }

  .contact__form-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  /* ================= FOOTER ================= */

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .footer__brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

}

@media (max-width: 480px) {
  .hero__title { font-size: 38px; }
  .hero__desc { max-width: 100%; font-size: 14px; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { justify-content: center; }
  .hero__stats { gap: 10px 6px; }
  .hero__stat-num { font-size: 26px; }
  .hero__stat-label { font-size: 10px; }

  .section-title { font-size: 30px; }

  .bento-card { padding: 24px; }
  .bento-card__icons img { width: 36px; height: 36px; }

  .pricing-card { padding: 28px 22px; }
  .bento-card__cta { width: 84px; height: 84px; font-size: 13px; }

  .form-radio-group { gap: 8px; }
  .form-radio { padding: 8px 14px; font-size: 13px; }

  .footer__nav, .footer__social { gap: 10px; }
}
