/* ===== V2 Design System ===== */
:root {
  --navy-950: #040d18;
  --navy-900: #0a1628;
  --navy-800: #0f2240;
  --navy-700: #1a3358;
  --navy-600: #254a78;
  --gold-600: #a8841a;
  --gold-500: #c9a227;
  --gold-400: #dbb84a;
  --gold-300: #e8cc6e;
  --gold-glow: rgba(201, 162, 39, 0.25);
  --cream: #faf8f4;
  --cream-dark: #f0ebe3;
  --white: #ffffff;
  --gray-100: #f1f3f6;
  --gray-200: #e2e6ec;
  --gray-400: #94a3b8;
  --gray-600: #64748b;
  --gray-800: #1e293b;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --shadow-sm: 0 2px 12px rgba(4, 13, 24, 0.06);
  --shadow-md: 0 8px 32px rgba(4, 13, 24, 0.1);
  --shadow-lg: 0 24px 64px rgba(4, 13, 24, 0.18);
  --shadow-gold: 0 8px 32px rgba(201, 162, 39, 0.2);
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --header-height: 84px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-800);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition), background var(--transition), transform var(--transition), border-color var(--transition), box-shadow var(--transition); }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}

.section { padding: 110px 0; position: relative; }
.section--cream { background: var(--cream); }

.section__header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 70px;
}

.section__header--light .section__title { color: var(--white); }
.section__header--light .section__desc { color: rgba(255,255,255,0.65); }

.section__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 14px;
}

.section__tag::before,
.section__tag::after {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold-500);
}

.section__tag--light { color: var(--gold-400); }
.section__tag--light::before,
.section__tag--light::after { background: var(--gold-400); }

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--navy-900);
}

.section__desc {
  font-size: 1.05rem;
  color: var(--gray-600);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 34px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, var(--gold-500) 0%, var(--gold-400) 100%);
  color: var(--navy-900);
  box-shadow: var(--shadow-gold);
}

.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(201, 162, 39, 0.4);
  background: linear-gradient(135deg, var(--gold-400) 0%, var(--gold-300) 100%);
}

.btn--ghost {
  background: rgba(255,255,255,0.06);
  color: var(--white);
  border-color: rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
}

.btn--ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.45);
  transform: translateY(-2px);
}

.btn--full { width: 100%; }
.btn--lg { padding: 18px 40px; font-size: 1rem; }

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-height);
  transition: all var(--transition);
}

.header.scrolled {
  background: rgba(4, 13, 24, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 162, 39, 0.12);
  box-shadow: var(--shadow-md);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
}

.nav__logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--navy-900);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  border-radius: 12px;
  box-shadow: var(--shadow-gold);
}

.nav__logo-text {
  display: flex;
  flex-direction: column;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.2;
}

.nav__logo-text small {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-top: 2px;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav__link {
  padding: 9px 16px;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  border-radius: 8px;
  position: relative;
}

.nav__link:hover,
.nav__link.active { color: var(--gold-400); }

.nav__link.active::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 16px; right: 16px;
  height: 2px;
  background: var(--gold-500);
  border-radius: 2px;
}

.nav__link--cta {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--navy-900) !important;
  margin-left: 10px;
  box-shadow: var(--shadow-gold);
}

.nav__link--cta:hover { transform: translateY(-2px); }
.nav__link--cta.active::after { display: none; }

.nav__toggle {
  display: none;
  position: relative;
  z-index: 1003;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 48px;
  height: 48px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.nav__toggle span {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
  pointer-events: none;
}

.nav__overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1001;
  background: rgba(4, 13, 24, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}

body.nav-open { overflow: hidden; }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  background: var(--navy-950);
  overflow: hidden;
}

.hero__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(201,162,39,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,162,39,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.hero__glow--1 {
  width: 500px; height: 500px;
  top: -100px; right: -100px;
  background: rgba(201, 162, 39, 0.12);
}

.hero__glow--2 {
  width: 400px; height: 400px;
  bottom: -50px; left: -100px;
  background: rgba(37, 74, 120, 0.25);
}

.hero__container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
  padding: 70px 28px 90px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(201, 162, 39, 0.1);
  border: 1px solid rgba(201, 162, 39, 0.25);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gold-400);
  margin-bottom: 28px;
  animation: fadeUp 0.7s ease both;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 600;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 12px;
  animation: fadeUp 0.7s ease 0.1s both;
}

.hero__title em {
  font-style: italic;
  color: var(--gold-400);
}

.hero__title span { color: var(--gold-400); }

.hero__name {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
  animation: fadeUp 0.7s ease 0.15s both;
}

.hero__subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.85;
  animation: fadeUp 0.7s ease 0.2s both;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 52px;
  animation: fadeUp 0.7s ease 0.25s both;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 28px 32px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  animation: fadeUp 0.7s ease 0.3s both;
}

.hero__stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-400);
  line-height: 1;
  margin-bottom: 6px;
}

.hero__stat span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}

.hero__stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
}

.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  animation: fadeUp 0.9s ease 0.2s both;
}

.hero__frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero__frame img {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
}

.hero__frame-border {
  position: absolute;
  inset: -3px;
  border: 2px solid rgba(201, 162, 39, 0.4);
  border-radius: calc(var(--radius-xl) + 3px);
  pointer-events: none;
}

.hero__float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: rgba(255,255,255,0.95);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  animation: float 4s ease-in-out infinite;
}

.hero__float i {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  color: var(--gold-400);
  border-radius: 10px;
  font-size: 1rem;
}

.hero__float strong {
  display: block;
  font-size: 0.88rem;
  color: var(--navy-900);
  line-height: 1.2;
}

.hero__float span {
  font-size: 0.75rem;
  color: var(--gray-600);
}

.hero__float--1 { top: 8%; left: -8%; animation-delay: 0s; }
.hero__float--2 { bottom: 12%; right: -6%; animation-delay: 2s; }

.hero__scroll {
  position: absolute;
  z-index: 2;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
}

.hero__scroll-line {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold-500), transparent);
  animation: scrollLine 2s ease infinite;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes scrollLine {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ===== Trust Bar ===== */
.trust-bar {
  background: var(--navy-900);
  border-top: 1px solid rgba(201, 162, 39, 0.15);
  border-bottom: 1px solid rgba(201, 162, 39, 0.15);
  padding: 22px 0;
}

.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px 48px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
}

.trust-item i {
  color: var(--gold-500);
  font-size: 1rem;
}

/* ===== About ===== */
.about__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 70px;
  align-items: center;
}

.about__visual {
  position: relative;
}

.about__photo {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: top center;
  width: 100%;
}

.about__experience {
  position: absolute;
  bottom: -24px;
  left: -24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 120px; height: 120px;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  border-radius: 50%;
  box-shadow: var(--shadow-gold);
  text-align: center;
  color: var(--navy-900);
}

.about__experience strong {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
}

.about__experience span {
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.3;
  margin-top: 4px;
}

.about__quote {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-style: italic;
  font-weight: 500;
  color: var(--navy-800);
  line-height: 1.5;
  padding-left: 24px;
  border-left: 3px solid var(--gold-500);
  margin-bottom: 28px;
}

.about__content p {
  color: var(--gray-600);
  margin-bottom: 16px;
}

.about__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 36px;
}

.about__pills span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy-800);
}

.about__pills i {
  color: var(--gold-600);
  font-size: 0.75rem;
}

/* ===== Services ===== */
.services {
  background: var(--navy-950);
  overflow: hidden;
}

.services__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 0% 100%, rgba(201,162,39,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 0%, rgba(37,74,120,0.15) 0%, transparent 50%);
}

.services__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  position: relative;
  padding: 36px 30px 32px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(201, 162, 39, 0.25);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.2);
}

.service-card:hover::before { transform: scaleX(1); }

.service-card__num {
  position: absolute;
  top: 20px; right: 24px;
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: rgba(255,255,255,0.04);
  line-height: 1;
}

.service-card__icon {
  width: 54px; height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(201,162,39,0.2), rgba(201,162,39,0.05));
  border: 1px solid rgba(201,162,39,0.2);
  border-radius: 14px;
  margin-bottom: 22px;
}

.service-card__icon i {
  font-size: 1.35rem;
  color: var(--gold-400);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}

.service-card > p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 18px;
}

.service-card__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-card__list li {
  padding: 5px 12px;
  background: rgba(201,162,39,0.1);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gold-300);
}

/* ===== Process ===== */
.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.process-step {
  position: relative;
  padding: 36px 28px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all var(--transition);
}

.process-step:hover {
  border-color: var(--gold-500);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.process-step__icon {
  width: 64px; height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  border-radius: 50%;
  font-size: 1.4rem;
  color: var(--gold-400);
}

.process-step__num {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 10px;
}

.process-step h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: 10px;
}

.process-step p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.65;
}

/* ===== Why Me ===== */
.why-me {
  background: var(--navy-950);
  overflow: hidden;
}

.why-me__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 10% 50%, rgba(201,162,39,0.07) 0%, transparent 55%),
    radial-gradient(ellipse at 90% 20%, rgba(37,74,120,0.18) 0%, transparent 45%);
  pointer-events: none;
}

.why-me .section__header { position: relative; }

.why-me__showcase {
  position: relative;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 48px;
}

.why-me__visual {
  position: relative;
}

.why-me__frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(201,162,39,0.2);
}

.why-me__frame::before {
  content: '';
  position: absolute;
  top: -12px; left: -12px;
  width: 80px; height: 80px;
  border-top: 3px solid var(--gold-500);
  border-left: 3px solid var(--gold-500);
  border-radius: var(--radius-xl) 0 0 0;
  z-index: 2;
  pointer-events: none;
}

.why-me__frame::after {
  content: '';
  position: absolute;
  bottom: -12px; right: -12px;
  width: 80px; height: 80px;
  border-bottom: 3px solid var(--gold-500);
  border-right: 3px solid var(--gold-500);
  border-radius: 0 0 var(--radius-xl) 0;
  z-index: 2;
  pointer-events: none;
}

.why-me__frame img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.why-me__badge {
  position: absolute;
  bottom: 28px;
  left: -20px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 22px;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  border-radius: var(--radius);
  box-shadow: var(--shadow-gold);
  color: var(--navy-900);
  z-index: 3;
}

.why-me__badge i {
  font-size: 1.6rem;
}

.why-me__badge strong {
  display: block;
  font-size: 0.95rem;
  line-height: 1.2;
}

.why-me__badge span {
  font-size: 0.78rem;
  font-weight: 500;
  opacity: 0.75;
}

.why-me__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.why-feature {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: all var(--transition);
}

.why-feature:first-child { padding-top: 0; }
.why-feature:last-child { border-bottom: none; padding-bottom: 0; }

.why-feature:hover {
  padding-left: 8px;
}

.why-feature:hover .why-feature__num {
  color: var(--gold-400);
  border-color: var(--gold-500);
}

.why-feature__num {
  flex-shrink: 0;
  width: 52px; height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: rgba(255,255,255,0.25);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  transition: all var(--transition);
}

.why-feature__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.why-feature__head i {
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201,162,39,0.12);
  border-radius: 9px;
  color: var(--gold-400);
  font-size: 0.95rem;
}

.why-feature__head h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
}

.why-feature__body p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  padding-left: 48px;
}

.why-me__quote {
  position: relative;
  text-align: center;
  padding: 40px 48px;
  margin-bottom: 40px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,162,39,0.15);
  border-radius: var(--radius-lg);
}

.why-me__quote > i {
  font-size: 1.8rem;
  color: var(--gold-500);
  margin-bottom: 16px;
  opacity: 0.6;
}

.why-me__quote p {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  font-style: italic;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
  max-width: 720px;
  margin: 0 auto 14px;
}

.why-me__quote span {
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--gold-400);
}

.why-me__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.why-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}

.why-stat:hover {
  background: rgba(201,162,39,0.08);
  border-color: rgba(201,162,39,0.25);
  transform: translateY(-4px);
}

.why-stat i {
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--navy-900);
  border-radius: 12px;
  font-size: 1.1rem;
  margin-bottom: 14px;
}

.why-stat strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.why-stat span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.4;
}

/* ===== Gallery Mosaic ===== */
.gallery {
  background: var(--cream);
}

.gallery__mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 260px 220px;
  gap: 18px;
}

.gallery__item {
  position: relative;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}

.gallery__item--feature {
  grid-column: 1 / 6;
  grid-row: 1 / 3;
}

.gallery__item--tall {
  grid-column: 6 / 9;
  grid-row: 1 / 3;
}

.gallery__item:nth-child(3) { grid-column: 9 / 11; grid-row: 1; }
.gallery__item:nth-child(5) { grid-column: 11 / 13; grid-row: 1; }
.gallery__item:nth-child(6) { grid-column: 9 / 13; grid-row: 2; }

.gallery__item:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  z-index: 2;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery__item:hover img { transform: scale(1.06); }

.gallery__label {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px 24px;
  background: linear-gradient(to top, rgba(4,13,24,0.88) 0%, rgba(4,13,24,0.2) 50%, transparent 100%);
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--transition);
}

.gallery__item:hover .gallery__label {
  opacity: 1;
  transform: translateY(0);
}

.gallery__item--feature .gallery__label,
.gallery__item--tall .gallery__label {
  opacity: 1;
  transform: translateY(0);
  background: linear-gradient(to top, rgba(4,13,24,0.85) 0%, transparent 60%);
}

.gallery__tag {
  display: inline-block;
  width: fit-content;
  padding: 4px 12px;
  background: var(--gold-500);
  color: var(--navy-900);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 8px;
}

.gallery__label strong {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
}

.gallery__label i {
  font-size: 0.85rem;
  color: var(--gold-400);
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery__item:hover .gallery__label i { opacity: 1; }

.gallery__item--feature .gallery__label strong { font-size: 1.35rem; }

.gallery__item--feature::after {
  content: '';
  position: absolute;
  top: 16px; right: 16px;
  width: 10px; height: 10px;
  background: var(--gold-500);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(201,162,39,0.25);
  z-index: 2;
  pointer-events: none;
}

/* ===== Testimonials ===== */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.testimonial-card {
  padding: 32px 28px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.testimonial-card--featured {
  background: var(--navy-900);
  border-color: transparent;
  color: var(--white);
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}

.testimonial-card--featured:hover { transform: scale(1.03) translateY(-4px); }

.testimonial-card--featured p { color: rgba(255,255,255,0.85); }
.testimonial-card--featured .testimonial-card__author strong { color: var(--white); }
.testimonial-card--featured .testimonial-card__author span { color: rgba(255,255,255,0.55); }
.testimonial-card--featured .testimonial-card__avatar {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--navy-900);
}

.testimonial-card__stars {
  display: flex;
  gap: 4px;
  margin-bottom: 18px;
  color: var(--gold-500);
  font-size: 0.85rem;
}

.testimonial-card p {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 24px;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-card__avatar {
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy-800);
  flex-shrink: 0;
}

.testimonial-card__author strong {
  display: block;
  font-size: 0.92rem;
  color: var(--navy-900);
}

.testimonial-card__author span {
  font-size: 0.8rem;
  color: var(--gray-600);
}

/* ===== CTA Band ===== */
.cta-band {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 50%, var(--navy-700) 100%);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at right, rgba(201,162,39,0.12) 0%, transparent 60%);
}

.cta-band__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}

.cta-band p {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  max-width: 520px;
}

/* ===== Lightbox ===== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(4, 13, 24, 0.96);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.lightbox.active { opacity: 1; visibility: visible; }

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.lightbox__close,
.lightbox__nav {
  position: absolute;
  width: 50px; height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  color: var(--white);
  font-size: 1.1rem;
  cursor: pointer;
  transition: background var(--transition);
}

.lightbox__close:hover,
.lightbox__nav:hover { background: rgba(255,255,255,0.2); }

.lightbox__close { top: 24px; right: 24px; }
.lightbox__nav { top: 50%; transform: translateY(-50%); }
.lightbox__prev { left: 24px; }
.lightbox__next { right: 24px; }

/* ===== Contact ===== */
.contact {
  background: var(--navy-950);
  overflow: hidden;
}

.contact__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(201,162,39,0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(37,74,120,0.12) 0%, transparent 50%);
}

.contact__layout {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 60px;
  align-items: start;
}

.contact__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 14px;
}

.contact__desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 36px;
}

.contact__cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 22px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  transition: all var(--transition);
}

a.contact-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(201,162,39,0.3);
  transform: translateX(4px);
}

.contact-card > i {
  width: 46px; height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--navy-900);
  border-radius: 12px;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-card span {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 4px;
}

.contact-card strong {
  font-size: 0.98rem;
  color: var(--white);
  font-weight: 500;
}

.contact__social {
  display: flex;
  gap: 12px;
}

.contact__social a {
  width: 46px; height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  color: var(--white);
  font-size: 1.1rem;
}

.contact__social a:hover {
  background: var(--gold-500);
  color: var(--navy-900);
  border-color: var(--gold-500);
  transform: translateY(-3px);
}

.contact__form {
  padding: 44px 40px;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.contact__form h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: 28px;
}

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy-800);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--gray-800);
  background: var(--cream);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  outline: none;
  transition: all var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold-500);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(201,162,39,0.12);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ===== Footer ===== */
.footer {
  background: var(--navy-950);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 64px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer__brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  margin-top: 16px;
  max-width: 280px;
  line-height: 1.7;
}

.footer__links h4 {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 20px;
}

.footer__links a {
  display: block;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  padding: 6px 0;
}

.footer__links a:hover { color: var(--gold-400); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
}

.footer__bottom p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

.footer__top {
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  border-radius: 12px;
  color: var(--white);
}

.footer__top:hover {
  background: var(--gold-500);
  color: var(--navy-900);
}

/* ===== Responsive ===== */
@media (max-width: 1100px) {
  .hero__container { grid-template-columns: 1fr; text-align: center; gap: 48px; }
  .hero__subtitle { margin-left: auto; margin-right: auto; }
  .hero__actions { justify-content: center; }
  .hero__stats { justify-content: center; flex-wrap: wrap; }
  .hero__float--1 { left: 4%; }
  .hero__float--2 { right: 4%; }

  .about__grid,
  .why-me__showcase,
  .contact__layout { grid-template-columns: 1fr; gap: 48px; }

  .why-me__badge { left: 10px; bottom: 16px; }
  .why-me__stats { grid-template-columns: repeat(2, 1fr); }

  .gallery__mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .gallery__item--feature,
  .gallery__item--tall,
  .gallery__item:nth-child(3),
  .gallery__item:nth-child(5),
  .gallery__item:nth-child(6) {
    grid-column: span 1;
    grid-row: span 1;
    min-height: 260px;
  }

  .gallery__item--feature { grid-column: span 2; min-height: 360px; }

  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .process__grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid { grid-template-columns: 1fr; }
  .testimonial-card--featured { transform: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 80px 0; }

  .header {
    background: rgba(4, 13, 24, 0.95);
    backdrop-filter: blur(12px);
  }

  .nav { position: relative; z-index: 1002; }

  .nav__toggle { display: flex; }

  .nav__overlay {
    display: block;
  }

  body.nav-open .nav__overlay {
    opacity: 1;
    visibility: visible;
  }

  .nav__toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav__toggle.active span:nth-child(2) { opacity: 0; }
  .nav__toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  .nav__menu {
    position: fixed;
    top: 0; right: -100%;
    z-index: 1002;
    width: min(340px, 88vw);
    height: 100vh;
    height: 100dvh;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: calc(var(--header-height) + 24px) 22px 28px;
    background:
      linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0)),
      var(--navy-950);
    gap: 10px;
    transition: right var(--transition);
    box-shadow: -18px 0 50px rgba(0, 0, 0, 0.28);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    border-left: 1px solid rgba(201, 162, 39, 0.14);
  }

  .nav__menu::before {
    content: "Navigation";
    display: block;
    margin-bottom: 8px;
    padding: 0 10px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
  }

  .nav__menu.show { right: 0; }
  .nav__menu li { display: block; }

  .nav__link {
    display: flex;
    align-items: center;
    min-height: 56px;
    padding: 15px 16px;
    border-radius: 16px;
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.84);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid transparent;
  }

  .nav__link:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.06);
  }

  .nav__link.active {
    color: var(--gold-400);
    background: rgba(201, 162, 39, 0.08);
    border-color: rgba(201, 162, 39, 0.18);
    box-shadow: inset 3px 0 0 var(--gold-500);
  }

  .nav__link.active::after { display: none; }

  .nav__link--cta {
    justify-content: center;
    margin-left: 0;
    margin-top: 14px;
    min-height: 58px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 24px rgba(201, 162, 39, 0.22);
  }

  .hero__stats { flex-direction: column; gap: 20px; }
  .hero__stat-divider { width: 60px; height: 1px; }
  .hero__float { display: none; }

  .trust-bar__inner { gap: 20px 28px; }
  .trust-item { font-size: 0.8rem; }

  .about__experience { left: 10px; bottom: -16px; width: 100px; height: 100px; }
  .about__experience strong { font-size: 1.8rem; }

  .services__grid,
  .process__grid { grid-template-columns: 1fr; }

  .why-me__stats { grid-template-columns: 1fr 1fr; }
  .why-feature__body p { padding-left: 0; }
  .why-me__quote { padding: 28px 24px; }

  .gallery__mosaic { grid-template-columns: 1fr; }
  .gallery__item--feature,
  .gallery__item--tall,
  .gallery__item:nth-child(3),
  .gallery__item:nth-child(5),
  .gallery__item:nth-child(6) {
    grid-column: span 1;
    min-height: 280px;
  }

  .gallery__label { opacity: 1; transform: none; }

  .cta-band__inner { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .contact__form { padding: 32px 24px; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 16px; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
