/* ============================================
   LOREDANA ROȘCA — styles.css
   Cobalt · Premium · Personal
   ============================================ */

:root {
  --bg:           #F2F5FC;
  --bg-2:         #E6ECFA;
  --bg-card:      #ffffff;
  --dark:         #0C1A3A;
  --dark-mid:     #1A3464;
  --cobalt:       #1A56DB;
  --cobalt-light: #3B73F0;
  --cobalt-dim:   rgba(26, 86, 219, 0.08);
  --cobalt-border:rgba(26, 86, 219, 0.18);
  --muted:        rgba(12, 26, 58, 0.50);
  --muted-2:      rgba(12, 26, 58, 0.28);
  --border:       rgba(12, 26, 58, 0.08);
  --border-strong:rgba(12, 26, 58, 0.14);
  --warm-overlay: rgba(220, 200, 170, 0.10);
  --white:        #ffffff;
  --font-display: 'Lora', Georgia, serif;
  --font-body:    'Outfit', sans-serif;
  --ease:         cubic-bezier(0.4, 0, 0.2, 1);
  --t:            0.28s var(--ease);
  --radius:       8px;
  --radius-lg:    14px;
  --nav-h:        68px;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--dark);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.74;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
.container { width: 100%; max-width: 1080px; margin: 0 auto; padding: 0 32px; }

/* ---- TYPOGRAPHY ---- */
.section-tag {
  display: inline-block;
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--cobalt); margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 500; line-height: 1.20; color: var(--dark);
}
.section-title em { color: var(--cobalt); font-style: italic; }
.section-sub {
  font-size: 15.5px; color: var(--muted);
  line-height: 1.80; margin-top: 18px; max-width: 520px;
}
.section-header { margin-bottom: 60px; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-size: 14px; font-weight: 500;
  padding: 13px 30px; border-radius: 100px; letter-spacing: 0.01em;
  transition: background var(--t), transform var(--t), border-color var(--t), color var(--t);
  cursor: pointer; white-space: nowrap; border: none;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--cobalt); color: #fff;
  box-shadow: 0 4px 20px rgba(26,86,219,0.22);
}
.btn-primary:hover { background: var(--cobalt-light); }
.btn-outline {
  background: transparent; color: var(--dark);
  border: 1px solid var(--border-strong);
}
.btn-outline:hover { border-color: var(--cobalt); color: var(--cobalt); }
.btn-ghost {
  background: transparent; color: var(--cobalt);
  border: 1px solid var(--cobalt-border);
  font-size: 13px; padding: 10px 20px;
}
.btn-ghost:hover { background: var(--cobalt-dim); }

/* ---- NAV ---- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  transition: background 0.4s, box-shadow 0.4s;
}
.nav.scrolled {
  background: rgba(242, 245, 252, 0.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  height: 100%; display: flex;
  align-items: center; justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.05rem; font-weight: 500; color: var(--dark);
  letter-spacing: 0.01em;
}
.nav-logo em { color: var(--cobalt); font-style: italic; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 13.5px; font-weight: 400;
  color: var(--muted); transition: color var(--t); letter-spacing: 0.01em;
}
.nav-links a:hover { color: var(--dark); }
.btn-nav {
  font-size: 13px; font-weight: 500;
  background: var(--cobalt); color: #fff;
  padding: 9px 20px; border-radius: 100px;
  transition: background var(--t), transform var(--t);
}
.btn-nav:hover { background: var(--cobalt-light); transform: translateY(-1px); }
.burger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.burger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--dark); transition: var(--t); border-radius: 2px;
}
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(4px,4.5px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px,-4.5px); }
.mobile-menu {
  display: none; flex-direction: column;
  background: var(--bg); padding: 16px 28px 28px;
  border-top: 1px solid var(--border);
  position: fixed; top: var(--nav-h); left: 0; right: 0; z-index: 99;
  box-shadow: 0 8px 24px rgba(12,26,58,0.10);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 14px 0; font-size: 15px; color: var(--dark);
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:last-child { border-bottom: none; margin-top: 8px; }
.btn-mobile {
  display: inline-flex; justify-content: center;
  background: var(--cobalt); color: #fff !important;
  border-radius: 100px; padding: 13px 24px !important;
  border-bottom: none !important; font-weight: 500;
}

/* ---- HERO ---- */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding-top: var(--nav-h); position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 60% 55% at 80% 46%, rgba(26,86,219,0.09) 0%, transparent 65%),
    radial-gradient(ellipse 35% 32% at 6% 82%, rgba(26,86,219,0.06) 0%, transparent 60%);
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 80px; align-items: center; padding: 88px 0;
}
.hero-label {
  display: inline-block; font-size: 10px; font-weight: 500;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--cobalt); margin-bottom: 24px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 3.1rem);
  font-weight: 500; line-height: 1.22;
  color: var(--dark); margin-bottom: 22px;
}
.hero-headline em { color: var(--cobalt); font-style: italic; }
.hero-sub {
  font-size: 15.5px; color: var(--muted);
  line-height: 1.80; margin-bottom: 20px; max-width: 460px;
}
.hero-bullets {
  list-style: none; margin-bottom: 38px; max-width: 400px;
}
.hero-bullets li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14px; color: var(--muted); margin-bottom: 9px;
  line-height: 1.5;
}
.hero-bullets li::before {
  content: '';
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--cobalt); flex-shrink: 0; margin-top: 6px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 52px; }
.hero-stats { display: flex; gap: 32px; align-items: center; }
.stat-divider { width: 1px; height: 34px; background: var(--border); }
.stat-nr {
  font-family: var(--font-display); font-size: 1.8rem;
  font-weight: 500; color: var(--dark); line-height: 1;
}
.stat-nr em { color: var(--cobalt); font-style: normal; }
.stat-label { font-size: 11px; color: var(--muted); margin-top: 5px; line-height: 1.4; }

/* hero photo — mai mică, mai editorială */
.hero-photo-wrap { position: relative; display: flex; justify-content: flex-end; }
.hero-photo-ring {
  width: 300px; height: 380px;
  border-radius: 160px 160px 130px 130px;
  overflow: hidden; background: var(--bg-2);
  border: 1px solid var(--border);
  position: relative;
}
.hero-photo-ring img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  /* filtre calde, subtile, ușor desaturat */
  filter: contrast(1.04) saturate(0.82) brightness(0.97) sepia(0.06) warm(1);
}
/* overlay cald discret peste foto */
.hero-photo-ring::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    160deg,
    rgba(210, 185, 140, 0.08) 0%,
    rgba(180, 155, 110, 0.04) 50%,
    transparent 100%
  );
  pointer-events: none;
}
.hero-deco-1 {
  position: absolute; bottom: 36px; left: -28px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 12px 18px;
  box-shadow: 0 4px 20px rgba(12,26,58,0.07);
  font-size: 12.5px; color: var(--muted); white-space: nowrap;
}
.hero-deco-1 strong { display: block; font-size: 14.5px; font-weight: 500; color: var(--dark); }
.hero-deco-2 {
  position: absolute; top: 36px; right: -8px;
  background: var(--cobalt); border-radius: var(--radius);
  padding: 9px 16px; font-size: 12px; font-weight: 500; color: #fff;
  white-space: nowrap; box-shadow: 0 4px 16px rgba(26,86,219,0.30);
}

/* ---- PROBLEM ---- */
.problem {
  padding: 104px 0; background: var(--white);
  border-top: 1px solid var(--border);
}
.problem-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 88px; align-items: center;
}
.problem-text { font-size: 15.5px; color: var(--muted); line-height: 1.80; margin-top: 18px; }
.problem-text p + p { margin-top: 16px; }
.problem-conclusion {
  margin-top: 32px; padding: 22px 26px;
  background: var(--cobalt-dim); border: 1px solid var(--cobalt-border);
  border-left: 3px solid var(--cobalt);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 15px; color: var(--dark-mid);
  font-family: var(--font-display); font-style: italic; line-height: 1.68;
}
.problem-visual { display: flex; flex-direction: column; gap: 14px; }
.problem-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 22px 24px;
  display: flex; align-items: flex-start; gap: 14px;
  transition: border-color var(--t);
}
.problem-card:hover { border-color: var(--cobalt-border); }
.problem-card-icon {
  width: 36px; height: 36px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.problem-card-icon.red { background: rgba(220,38,38,0.07); color: #dc2626; }
.problem-card-icon.green { background: rgba(22,163,74,0.07); color: #16a34a; }
.problem-card h4 { font-size: 14px; font-weight: 500; color: var(--dark); margin-bottom: 4px; }
.problem-card p { font-size: 13px; color: var(--muted); line-height: 1.58; }

/* ---- SOLUTION ---- */
.solution {
  padding: 104px 0; background: var(--bg);
  border-top: 1px solid var(--border);
}
.solution-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; background: var(--border);
  border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden;
  margin-top: 60px;
}
.solution-item {
  background: var(--bg); padding: 34px 28px;
  transition: background var(--t);
}
.solution-item:hover { background: var(--white); }
.solution-nr {
  font-family: var(--font-display); font-size: 0.72rem;
  color: var(--cobalt); font-weight: 500; letter-spacing: 0.10em;
  margin-bottom: 18px; display: block;
}
.solution-item h3 {
  font-family: var(--font-display); font-size: 1.12rem;
  font-weight: 500; color: var(--dark); margin-bottom: 12px;
}
.solution-item p { font-size: 13.5px; color: var(--muted); line-height: 1.70; }

/* ---- CE PRIMEȘTI ---- */
.deliverables {
  padding: 104px 0; background: var(--dark);
}
.deliverables .section-tag { color: rgba(100,140,240,0.85); }
.deliverables .section-title { color: var(--white); }
.deliverables .section-sub { color: rgba(255,255,255,0.50); }
.deliverables-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 2px; background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.05); border-radius: var(--radius-lg); overflow: hidden;
}
.deliverable-item {
  background: rgba(255,255,255,0.025); padding: 28px 28px;
  display: flex; align-items: flex-start; gap: 14px;
  transition: background var(--t);
}
.deliverable-item:hover { background: rgba(255,255,255,0.05); }
.del-check {
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(26,86,219,0.15); border: 1px solid rgba(26,86,219,0.25);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
.del-check svg { color: var(--cobalt-light); }
.deliverable-item h4 { font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.90); margin-bottom: 4px; }
.deliverable-item p { font-size: 13px; color: rgba(255,255,255,0.40); line-height: 1.58; }

/* ---- PORTFOLIO ---- */
.portfolio {
  padding: 104px 0; background: var(--bg);
  border-top: 1px solid var(--border);
}
.portfolio-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 60px;
}
.portfolio-card {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border); background: var(--white);
  transition: transform var(--t), box-shadow var(--t);
}
.portfolio-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(12,26,58,0.09);
}
.portfolio-img { height: 200px; overflow: hidden; position: relative; }
.portfolio-img img { width: 100%; height: 100%; object-fit: cover; }
.portfolio-cat {
  position: absolute; top: 12px; left: 12px;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(4px);
  border-radius: 100px; padding: 4px 12px;
  font-size: 10.5px; font-weight: 500; letter-spacing: 0.10em;
  text-transform: uppercase; color: var(--dark); border: 1px solid var(--border);
}
.portfolio-body { padding: 24px 24px 28px; }
.portfolio-body h3 {
  font-family: var(--font-display); font-size: 1.12rem;
  font-weight: 500; color: var(--dark); margin-bottom: 7px;
}
.portfolio-focus { font-size: 13px; color: var(--muted); line-height: 1.62; margin-bottom: 18px; }
.portfolio-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 500; color: var(--cobalt);
  transition: gap var(--t);
}
.portfolio-link:hover { gap: 10px; }

/* ---- PRICING — Premium, fără vizual de discount ---- */
.pricing {
  padding: 104px 0; background: var(--white);
  border-top: 1px solid var(--border);
}
.pricing-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 28px; margin-top: 60px;
}
.pricing-card {
  border-radius: var(--radius-lg); padding: 44px 40px;
  border: 1px solid var(--border); background: var(--bg);
  position: relative;
  transition: border-color var(--t), box-shadow var(--t);
}
.pricing-card:hover {
  border-color: var(--cobalt-border);
  box-shadow: 0 8px 36px rgba(26,86,219,0.06);
}
.pricing-card.featured {
  background: var(--dark); border-color: transparent;
  box-shadow: 0 14px 48px rgba(12,26,58,0.22);
}
.pricing-card.featured:hover {
  box-shadow: 0 18px 56px rgba(12,26,58,0.28);
}
.pricing-badge {
  display: inline-block; font-size: 10px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  background: transparent; color: var(--cobalt);
  border: 1px solid var(--cobalt-border);
  padding: 4px 12px; border-radius: 100px; margin-bottom: 28px;
}
.pricing-card.featured .pricing-badge {
  color: rgba(100,150,240,0.9);
  border-color: rgba(100,150,240,0.25);
}
.pricing-title {
  font-family: var(--font-display); font-size: 1.5rem;
  font-weight: 500; margin-bottom: 28px; line-height: 1;
}
.pricing-card:not(.featured) .pricing-title { color: var(--dark); }
.pricing-card.featured .pricing-title { color: #fff; }
/* ancora — subtilă, nu agresivă */
.pricing-anchor {
  font-size: 12px; font-weight: 300; letter-spacing: 0.02em;
  color: var(--muted-2); margin-bottom: 8px; display: block;
  font-family: var(--font-body);
}
.pricing-card.featured .pricing-anchor { color: rgba(255,255,255,0.25); }
/* prețul principal — elegant, nu strigat */
.pricing-price {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.4vw, 2rem);
  font-weight: 500; line-height: 1; margin-bottom: 32px;
  letter-spacing: -0.01em;
}
.pricing-card:not(.featured) .pricing-price { color: var(--dark); }
.pricing-card.featured .pricing-price { color: rgba(255,255,255,0.95); }
.pricing-divider {
  width: 32px; height: 1px; margin-bottom: 28px;
}
.pricing-card:not(.featured) .pricing-divider { background: var(--cobalt-border); }
.pricing-card.featured .pricing-divider { background: rgba(100,150,240,0.3); }
.pricing-list {
  list-style: none; margin-bottom: 36px;
}
.pricing-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14px; margin-bottom: 12px; line-height: 1.52;
}
.pricing-card:not(.featured) .pricing-list li { color: var(--muted); }
.pricing-card.featured .pricing-list li { color: rgba(255,255,255,0.60); }
.pricing-list li::before {
  content: '';
  width: 4px; height: 4px; border-radius: 50%;
  margin-top: 8px; flex-shrink: 0;
}
.pricing-card:not(.featured) .pricing-list li::before { background: var(--cobalt); }
.pricing-card.featured .pricing-list li::before { background: rgba(100,150,240,0.7); }
.pricing-btn-wrap .btn { width: 100%; justify-content: center; }
.pricing-note {
  text-align: center; margin-top: 36px;
  font-size: 14px; color: var(--muted); max-width: 540px; margin-left: auto; margin-right: auto;
  line-height: 1.72;
}

/* ---- AFTERCARE — Mentenanță / Suport ulterior ---- */
.aftercare {
  padding: 104px 0; background: var(--bg);
  border-top: 1px solid var(--border);
}
.aftercare-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.aftercare-text { font-size: 15.5px; color: var(--muted); line-height: 1.80; margin-top: 18px; }
.aftercare-items { display: flex; flex-direction: column; gap: 0; }
.aftercare-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px 0; border-bottom: 1px solid var(--border);
}
.aftercare-item:last-child { border-bottom: none; }
.aftercare-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--cobalt-dim); border: 1px solid var(--cobalt-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--cobalt); flex-shrink: 0;
}
.aftercare-item h4 { font-size: 14.5px; font-weight: 500; color: var(--dark); margin-bottom: 4px; }
.aftercare-item p { font-size: 13.5px; color: var(--muted); line-height: 1.58; }

/* ---- PROCESS ---- */
.process {
  padding: 104px 0; background: var(--white);
  border-top: 1px solid var(--border);
}
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2px; background: var(--border);
  border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden;
  margin-top: 60px;
}
.process-step {
  background: var(--white); padding: 34px 24px;
  transition: background var(--t);
}
.process-step:hover { background: var(--bg); }
.process-nr {
  font-family: var(--font-display); font-size: 1.9rem;
  font-weight: 500; color: var(--cobalt-dim); line-height: 1;
  margin-bottom: 18px; -webkit-text-stroke: 1px var(--cobalt-border);
}
.process-step h4 { font-size: 14px; font-weight: 500; color: var(--dark); margin-bottom: 8px; }
.process-step p { font-size: 13px; color: var(--muted); line-height: 1.68; }

/* ---- WHY ME ---- */
.whyme {
  padding: 104px 0; background: var(--bg);
  border-top: 1px solid var(--border);
}
.whyme-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 88px; align-items: center;
}
.whyme-photo {
  width: 300px; height: 360px;
  border-radius: 150px 150px 120px 120px;
  overflow: hidden; background: var(--bg-2);
  border: 1px solid var(--border); margin: 0 auto;
  position: relative;
}
.whyme-photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  filter: contrast(1.04) saturate(0.82) brightness(0.97) sepia(0.06);
}
.whyme-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(210,185,140,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.whyme-list { list-style: none; margin-top: 28px; }
.whyme-list li {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 0; border-bottom: 1px solid var(--border);
  font-size: 14.5px; color: var(--muted); line-height: 1.58;
}
.whyme-list li:last-child { border-bottom: none; }
.whyme-list li .wi {
  width: 30px; height: 30px; border-radius: 7px;
  background: var(--cobalt-dim); border: 1px solid var(--cobalt-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--cobalt); flex-shrink: 0;
}

/* ---- CTA FINAL ---- */
.cta-final {
  padding: 104px 0;
  background: linear-gradient(150deg, var(--dark) 0%, var(--dark-mid) 100%);
  text-align: center; position: relative; overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 55% 55% at 50% 50%, rgba(26,86,219,0.14) 0%, transparent 70%);
  pointer-events: none;
}
.cta-final .container { position: relative; z-index: 1; }
.cta-final .section-tag { color: rgba(100,140,240,0.85); }
.cta-final h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.2vw, 2.7rem);
  font-weight: 500; line-height: 1.22; color: #fff; margin-bottom: 18px;
}
.cta-final p {
  font-size: 15.5px; color: rgba(255,255,255,0.52);
  max-width: 440px; margin: 0 auto 38px; line-height: 1.78;
}
.cta-final-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta-final .btn-primary { box-shadow: 0 6px 24px rgba(26,86,219,0.38); }
.cta-final .btn-outline {
  color: rgba(255,255,255,0.70);
  border-color: rgba(255,255,255,0.18);
}
.cta-final .btn-outline:hover { border-color: rgba(255,255,255,0.44); color: #fff; }

/* ---- FOOTER ---- */
.footer { background: #060E1E; padding: 34px 0; }
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-logo {
  font-family: var(--font-display); font-size: 1rem;
  font-weight: 500; color: rgba(255,255,255,0.80);
}
.footer-logo em { color: rgba(100,150,240,0.85); font-style: italic; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.25); }

/* ---- ANIMATIONS ---- */
.fade-in {
  opacity: 0; transform: translateY(18px);
  animation: fadeUp 0.92s var(--ease) forwards;
}
.d1 { animation-delay: 0.08s; }
.d2 { animation-delay: 0.20s; }
.d3 { animation-delay: 0.34s; }
.d4 { animation-delay: 0.50s; }
.d5 { animation-delay: 0.64s; }
@keyframes fadeUp { to { opacity: 1; transform: none; } }

.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.72s var(--ease), transform 0.72s var(--ease);
}
.reveal.r1 { transition-delay: 0.04s; }
.reveal.r2 { transition-delay: 0.13s; }
.reveal.r3 { transition-delay: 0.22s; }
.reveal.r4 { transition-delay: 0.31s; }
.reveal.visible { opacity: 1; transform: none; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .solution-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .burger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; gap: 52px; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-bullets { margin-left: auto; margin-right: auto; text-align: left; }
  .hero-ctas { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-photo-wrap { order: -1; justify-content: center; }
  .hero-photo-ring { width: 240px; height: 300px; }
  .hero-deco-1, .hero-deco-2 { display: none; }
  .problem-inner { grid-template-columns: 1fr; gap: 52px; }
  .aftercare-inner { grid-template-columns: 1fr; gap: 52px; }
  .whyme-inner { grid-template-columns: 1fr; gap: 52px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .deliverables-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .problem, .solution, .deliverables, .portfolio,
  .pricing, .aftercare, .process, .whyme, .cta-final { padding: 72px 0; }
  .hero-inner { padding: 60px 0; }
  .process-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .solution-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .cta-final-btns { flex-direction: column; align-items: center; }
  .footer-inner { justify-content: center; text-align: center; }
  .pricing-card { padding: 36px 28px; }
}
