/* ========================
   PIXVANE PORTFOLIO — style.css
   Pure Sky theme
   ======================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300&family=DM+Sans:wght@300;400;500&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink: #111827;
  --ink-light: #4b5563;
  --paper: #ffffff;
  --cream: #f0f9ff;
  --accent: #0ea5e9;
  --accent-dark: #0284c7;
  --accent-light: #e0f2fe;
  --white: #ffffff;
  --border: #e2e8f0;
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
}

/* ── HEADER ── */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 5vw;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
}

.logo-icon { width: 38px; height: 38px; flex-shrink: 0; }

.logo-text {
  font-family: var(--font-body);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
}

.logo-text span { color: var(--accent); font-weight: 400; }

nav a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-light);
  text-decoration: none;
  margin-left: 2rem;
  transition: color 0.2s;
}
nav a:hover { color: var(--accent); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 5vw 8vh;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 40%, rgba(14,165,233,0.10) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(14,165,233,0.05) 0%, transparent 70%);
}

.hero-line {
  position: absolute;
  top: 50%; right: 5vw;
  width: 1px; height: 200px;
  background: linear-gradient(to bottom, transparent, var(--accent), transparent);
  transform: translateY(-50%);
  animation: lineFloat 4s ease-in-out infinite;
}

@keyframes lineFloat {
  0%, 100% { opacity: 0.4; height: 200px; }
  50%       { opacity: 0.9; height: 260px; }
}

.hero-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  position: relative;
}

.hero-label::before {
  content: '';
  display: inline-block;
  width: 30px; height: 1px;
  background: var(--accent);
  vertical-align: middle;
  margin-right: 0.8rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7.5rem);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--ink);
  position: relative;
  max-width: 900px;
}

.hero h1 em { font-style: italic; color: var(--accent); }

.hero-sub {
  margin-top: 2rem;
  font-size: 1rem;
  color: var(--ink-light);
  font-weight: 300;
  max-width: 480px;
  position: relative;
}

.hero-cta {
  margin-top: 2.5rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  position: relative;
}

.btn-primary {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  background: var(--accent);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
}
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-1px); }

.btn-ghost {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-light);
  text-decoration: none;
  transition: color 0.2s;
}
.btn-ghost:hover { color: var(--accent); }

/* ── SECTION SHARED ── */
section { padding: 7rem 5vw; }

.section-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 1.2rem;
}

.section-desc {
  font-size: 0.97rem;
  color: var(--ink-light);
  max-width: 540px;
  font-weight: 300;
  line-height: 1.8;
}

/* ── STATS BAR ── */
.stats-bar {
  background: var(--accent);
  padding: 2.5rem 5vw;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
}

.stat { text-align: center; color: #fff; }

.stat-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 300;
  color: #fff;
  display: block;
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-top: 0.4rem;
}

/* ── PROJECT CARDS ── */
.projects-section { background: var(--white); }

.projects-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.project-card {
  border: 1px solid var(--border);
  background: var(--paper);
  overflow: hidden;
  margin-bottom: 3rem;
  transition: box-shadow 0.3s, transform 0.3s;
}
.project-card:hover {
  box-shadow: 0 20px 60px rgba(14,165,233,0.10);
  transform: translateY(-3px);
}

.project-card-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}

.project-card-inner.reverse { direction: rtl; }
.project-card-inner.reverse > * { direction: ltr; }

/* ── PROJECT SLIDESHOW ── */
.project-preview {
   background: var(--cream);
  position: relative;
  overflow: hidden;
  min-height: 380px;
  direction: ltr;
  display: flex;
  flex-direction: column;
}

.browser-chrome {
  background: var(--ink);
  padding: 0.7rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  z-index: 2;
}
.browser-dots { display: flex; gap: 5px; }
.browser-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.2); }
.browser-dot.red    { background: #ff5f57; }
.browser-dot.yellow { background: #febc2e; }
.browser-dot.green  { background: #28c840; }
.browser-url {
  flex: 1;
  background: rgba(255,255,255,0.08);
  border-radius: 4px;
  padding: 0.3rem 0.8rem;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.4);
  font-family: monospace;
  margin-left: 0.5rem;
}

.slideshow-wrap { position: relative; overflow: hidden;  flex: 1; }

.slideshow-inner {
  display: flex;
  direction: ltr;
  width: 100%;
  transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
}

.slide-frame {
  min-width: 100%;
  width: 100%;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.slide-page-label {
  position: absolute;
  top: 10px; right: 10px;
  background: rgba(0,0,0,0.55);
  color: white;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 3px;
  z-index: 5;
}

.slideshow-nav {
  position: absolute;
  bottom: 12px; left: 0; right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
  z-index: 10;
}

.slide-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(0,0,0,0.25);
  cursor: pointer;
  transition: all 0.2s;
  border: none; padding: 0;
}
.slide-dot.active { background: var(--accent); transform: scale(1.3); }

.slideshow-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--border);
  width: 34px; height: 34px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--ink);
  z-index: 10;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.slideshow-arrow:hover { background: var(--accent); color: white; border-color: var(--accent); }
.slideshow-arrow.prev { left: 10px; }
.slideshow-arrow.next { right: 10px; }

/* ── NAGELSTUDIO MOCKUP ── */
.site-mockup {
  width: 100%;
  height: 100%;
  min-height: 380px;
  overflow: hidden;
  position: relative;
}

.mockup-header {
  background: #2a2a2a;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.mockup-logo-area { display: flex; align-items: center; gap: 8px; }
.mockup-logo-circle {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c9956e, #e8c5a0);
}
.mockup-brand { color: white; font-size: 9px; font-weight: 600; font-family: serif; letter-spacing: 0.04em; }
.mockup-nav { margin-left: auto; display: flex; gap: 12px; }
.mockup-nav span { color: rgba(255,255,255,0.6); font-size: 8px; letter-spacing: 0.08em; text-transform: uppercase; }

.mockup-hero-banner {
  background: linear-gradient(135deg, #f8f0ea 0%, #efe5d8 100%);
  padding: 28px 20px;
  text-align: center;
  border-bottom: 1px solid #e8ddd0;
}
.mockup-hero-title { font-family: serif; font-size: 16px; color: #2a2a2a; margin-bottom: 6px; }
.mockup-hero-sub { font-size: 8px; color: #888; letter-spacing: 0.1em; margin-bottom: 12px; }
.mockup-btn {
  display: inline-block;
  background: #2a2a2a;
  color: white;
  padding: 5px 14px;
  font-size: 7px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
}

.mockup-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 16px;
}
.mockup-card {
  background: white;
  border: 1px solid #e8ddd0;
  padding: 10px;
  border-radius: 3px;
}
.mockup-card-title { font-size: 8px; font-weight: 600; color: #2a2a2a; margin-bottom: 4px; }
.mockup-card-text  { font-size: 6.5px; color: #888; line-height: 1.5; margin-bottom: 5px; }
.mockup-card-price { font-size: 7px; color: #b8956a; font-weight: 600; }

.mockup-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  padding: 0 16px 16px;
}
.mockup-gallery-item {
  aspect-ratio: 1;
  border-radius: 3px;
  overflow: hidden;
  background: #e8ddd0;
}
.mockup-gallery-item img { width: 100%; height: 100%; object-fit: cover; }

.mockup-price-section { padding: 10px 14px; }
.mockup-price-title { font-size: 9px; font-weight: 700; color: #2a2a2a; text-align: center; margin-bottom: 8px; font-family: serif; }
.mockup-price-table { width: 100%; border-collapse: collapse; font-size: 7px; }
.mockup-price-table th { background: #2a2a2a; color: white; padding: 4px 6px; text-align: left; }
.mockup-price-table td { padding: 4px 6px; color: #444; border-bottom: 1px solid #e8ddd0; }
.mockup-price-table td.price { color: #c9956e; text-align: right; }
.mockup-price-table tr:nth-child(even) td { background: #fdf8f5; }

.mockup-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 10px 12px; }
.mockup-contact-info h4 { font-size: 7.5px; font-weight: 700; color: #2a2a2a; margin-bottom: 6px; font-family: serif; }
.mockup-contact-info p { font-size: 6.5px; color: #555; margin-bottom: 3px; }
.mockup-form h4 { font-size: 7.5px; font-weight: 700; color: #2a2a2a; margin-bottom: 5px; font-family: serif; }
.mockup-field { background: white; border: 1px solid #e8ddd0; height: 14px; border-radius: 2px; margin-bottom: 3px; }
.mockup-field.tall { height: 32px; }
.mockup-submit { background: #2a2a2a; color: white; font-size: 6px; padding: 4px; text-align: center; border-radius: 2px; letter-spacing: 0.08em; }

/* ── PROJECT INFO PANEL ── */
.project-info {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  direction: ltr;
}

.project-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 300;
  color: var(--accent-light);
  line-height: 1;
  margin-bottom: 1rem;
}

.project-category {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.8rem;
}

.project-name {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.project-description {
  font-size: 0.92rem;
  color: var(--ink-light);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.project-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.8rem; }

.tag {
  padding: 0.3rem 0.8rem;
  background: var(--accent-light);
  color: #0369a1;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  border-radius: 2px;
  font-weight: 500;
}

.project-features { list-style: none; margin-bottom: 2rem; }

.project-features li {
  font-size: 0.85rem;
  color: var(--ink-light);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.project-features li::before {
  content: '→';
  color: var(--accent);
  font-size: 0.8rem;
  flex-shrink: 0;
}

.btn-live {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  background: var(--accent-light);
  color: #0369a1;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid #bae6fd;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.btn-live:hover { background: var(--accent); color: white; border-color: var(--accent); }

/* ── SKILLS ── */
.skills-section { background: var(--cream); }

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.skill-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: border-color 0.25s, transform 0.25s;
}
.skill-card:hover { border-color: var(--accent); transform: translateY(-3px); }

.skill-icon { font-size: 2rem; margin-bottom: 0.8rem; display: block; }
.skill-name { font-size: 0.85rem; font-weight: 500; color: var(--ink); letter-spacing: 0.05em; }
.skill-desc { font-size: 0.78rem; color: var(--ink-light); margin-top: 0.4rem; line-height: 1.5; }

/* ── PROCESS ── */
.process-section { background: var(--white); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  margin-top: 4rem;
  border: 1px solid var(--border);
}

.process-step {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--border);
}
.process-step:last-child { border-right: none; }

.step-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: #bae6fd;
  line-height: 1;
  margin-bottom: 0.8rem;
}
.step-title { font-size: 0.9rem; font-weight: 500; color: var(--ink); margin-bottom: 0.5rem; letter-spacing: 0.04em; }
.step-desc { font-size: 0.82rem; color: var(--ink-light); line-height: 1.7; }

/* ── RATINGS ── */
.ratings-section { background: var(--cream); padding: 7rem 5vw; }
.ratings-header { margin-bottom: 3.5rem; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 1.8rem;
  transition: box-shadow 0.3s, transform 0.3s;
  position: relative;
}
.review-card:hover { box-shadow: 0 12px 40px rgba(14,165,233,0.08); transform: translateY(-2px); }

.review-stars { margin-bottom: 0.8rem; }
.star { font-size: 1.1rem; color: #d1d5db; }
.star.filled { color: #f59e0b; }

.review-text { font-size: 0.9rem; color: var(--ink-light); line-height: 1.75; font-style: italic; margin-bottom: 1.2rem; }

.review-author { display: flex; align-items: center; gap: 0.8rem; }
.review-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  font-size: 0.72rem;
  font-weight: 500;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.04em;
}
.review-name { font-size: 0.85rem; font-weight: 500; color: var(--ink); }
.review-role { font-size: 0.75rem; color: #9ca3af; margin-top: 1px; }

.rating-form-wrap {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 2rem;
  align-items: start;
}

.rating-form-box {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 2.5rem;
}

.rating-form-title { font-family: var(--font-display); font-size: 1.6rem; font-weight: 400; color: var(--ink); margin-bottom: 0.3rem; }
.rating-form-sub { font-size: 0.85rem; color: #6b7280; margin-bottom: 2rem; }

.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #374151;
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: #f8fafc;
  border: 1px solid var(--border);
  color: var(--ink);
  font-size: 0.9rem;
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--accent); background: #fff; }
.form-group textarea { resize: vertical; }

.star-picker { display: flex; gap: 0.3rem; margin-bottom: 0.4rem; }
.star-pick {
  font-size: 1.8rem;
  color: #d1d5db;
  cursor: pointer;
  transition: color 0.15s, transform 0.15s;
  user-select: none;
}
.star-pick:hover, .star-pick.active { color: #f59e0b; transform: scale(1.2); }
.rating-label { font-size: 0.78rem; color: #9ca3af; }

.review-success {
  display: none;
  margin-top: 1rem;
  padding: 0.8rem 1rem;
  background: #ecfdf5;
  border: 1px solid #6ee7b7;
  color: #065f46;
  font-size: 0.85rem;
  border-radius: 4px;
}

.score-box {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 2rem 1.5rem;
  text-align: center;
  position: sticky;
  top: 90px;
}
.score-number { font-family: var(--font-display); font-size: 4rem; font-weight: 300; color: var(--ink); line-height: 1; margin-bottom: 0.4rem; }
.score-stars { font-size: 1.2rem; color: #f59e0b; margin-bottom: 0.4rem; }
.score-label { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: #9ca3af; margin-bottom: 0.3rem; }
.score-count { font-size: 0.8rem; color: #6b7280; margin-bottom: 1.5rem; }

.score-bars { text-align: left; }
.bar-row { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.4rem; }
.bar-row span { font-size: 0.72rem; color: #6b7280; width: 20px; flex-shrink: 0; }
.bar-track { flex: 1; height: 6px; background: #e2e8f0; border-radius: 3px; overflow: hidden; }
.bar-fill { height: 100%; background: var(--accent); border-radius: 3px; transition: width 0.5s ease; }

/* Admin panel */
.admin-panel {
  display: none;
  background: #fffbeb;
  border: 1px solid #fde68a;
  padding: 1.5rem 2rem;
  margin-bottom: 3rem;
  border-radius: 4px;
}
.admin-panel h4 { font-size: 0.85rem; font-weight: 600; color: #92400e; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1rem; }

.pending-review {
  background: white;
  border: 1px solid var(--border);
  padding: 1rem 1.2rem;
  margin-bottom: 0.8rem;
  border-radius: 4px;
}
.pending-review-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 0.5rem; }
.pending-review-name { font-size: 0.85rem; font-weight: 600; color: var(--ink); }
.pending-review-meta { font-size: 0.75rem; color: #9ca3af; margin-left: 0.5rem; }
.pending-review-stars { color: #f59e0b; font-size: 0.85rem; margin-left: 0.5rem; }
.pending-review-text { font-size: 0.82rem; color: var(--ink-light); font-style: italic; }
.pending-btns { display: flex; gap: 0.5rem; }
.btn-approve { background: #dcfce7; border: none; color: #16a34a; font-size: 11px; padding: 4px 10px; border-radius: 4px; cursor: pointer; font-weight: 600; }
.btn-reject  { background: #fee2e2; border: none; color: #dc2626; font-size: 11px; padding: 4px 10px; border-radius: 4px; cursor: pointer; font-weight: 600; }
.btn-remove  { position: absolute; top: 10px; right: 10px; background: #fee2e2; border: none; color: #dc2626; font-size: 11px; padding: 3px 8px; border-radius: 4px; cursor: pointer; font-weight: 600; }

/* ── CTA ── */
.cta-section {
  background: var(--accent);
  text-align: center;
  padding: 8rem 5vw;
}
.cta-section .section-label { color: rgba(255,255,255,0.85); }
.cta-section .section-title { color: #fff; max-width: 700px; margin: 0 auto 1.5rem; }
.cta-section p { color: rgba(255,255,255,0.85); font-size: 0.97rem; margin-bottom: 2.5rem; font-weight: 300; }

.cta-email {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.5);
  padding-bottom: 2px;
  transition: border-color 0.2s;
}
.cta-email:hover { border-color: #fff; }

/* ── FOOTER ── */
footer {
  background: #0f172a;
  border-top: 1px solid #1e293b;
  padding: 2rem 5vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

footer p { font-size: 0.78rem; color: rgba(255,255,255,0.4); letter-spacing: 0.05em; }
footer a { color: rgba(255,255,255,0.75); text-decoration: none; transition: color 0.2s; }
footer a:hover { color: #7dd3fc; }

/* ── ANIMATIONS ── */
.fade-in {
  animation: fadeUp 0.7s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .project-card-inner,
  .project-card-inner.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .project-info { padding: 2rem 1.5rem; }
  .process-steps { grid-template-columns: 1fr; }
  .process-step { border-right: none; border-bottom: 1px solid var(--border); }
  .process-step:last-child { border-bottom: none; }
  nav a { margin-left: 1rem; font-size: 0.75rem; }
  .hero-cta { flex-direction: column; align-items: flex-start; }
  .rating-form-wrap { grid-template-columns: 1fr; }
}
