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

:root {
  --dark: #081b33;
  --dark-2: #102f52;
  --blue: #163a63;
  --text: #101820;
  --muted: #697582;
  --white: #fff;
  --bg: #f7f8fa;
  --border: #e7ebef;
}

html { scroll-behavior: smooth; }

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.5;
}

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

/* HEADER */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,.05);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.logo {
  font-size: 19px;
  font-weight: 900;
  letter-spacing: -.7px;
}

.logo span { color: var(--blue); }

nav {
  display: flex;
  gap: 30px;
}

nav a {
  font-size: 14px;
  color: #384553;
}

nav a:hover { color: var(--blue); }

.nav-btn {
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--dark);
  color: white;
  font-size: 14px;
}

/* HERO */

.hero {
  padding: 78px 0 70px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 65px;
  align-items: center;
}

.eyebrow,
.section-label {
  display: inline-block;
  color: var(--blue);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(48px, 6vw, 78px);
  line-height: .98;
  letter-spacing: -4px;
}

.hero h1 span { color: var(--blue); }

.hero-text {
  margin-top: 28px;
  max-width: 560px;
  font-size: 18px;
  color: var(--muted);
}

.hero-buttons {
  display: flex;
  gap: 12px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 14px;
  transition: .25s;
}

.btn.primary {
  background: var(--dark);
  color: white;
}

.btn.primary:hover {
  transform: translateY(-2px);
  background: var(--dark-2);
}

.btn.secondary {
  border: 1px solid var(--border);
  background: white;
}

.hero-points {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 35px;
}

.hero-points span {
  font-size: 13px;
  color: #4c5966;
}

.hero-points span::before {
  content: "✓";
  color: var(--blue);
  font-weight: 900;
  margin-right: 7px;
}

.hero-visual { position: relative; }

.hero-visual img {
  height: 620px;
  object-fit: cover;
  border-radius: 34px;
}

.floating-card {
  position: absolute;
  left: -32px;
  bottom: 28px;
  width: 240px;
  padding: 20px;
  border-radius: 18px;
  background: rgba(255,255,255,.95);
  box-shadow: 0 20px 60px rgba(0,0,0,.12);
}

.floating-card strong,
.floating-card span {
  display: block;
}

.floating-card span {
  margin-top: 5px;
  font-size: 13px;
  color: var(--muted);
}

/* STATS */

.stats {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
}

.stats-grid div {
  padding: 30px;
  border-right: 1px solid var(--border);
}

.stats-grid div:last-child { border-right: 0; }

.stats strong {
  display: block;
  font-size: 22px;
  color: var(--dark);
}

.stats span {
  font-size: 13px;
  color: var(--muted);
}

/* SECTIONS */

.section { padding: 110px 0; }

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 55px;
}

.section-head h2,
.benefits-content h2,
.cta-box h2 {
  font-size: clamp(36px,5vw,56px);
  line-height: 1.05;
  letter-spacing: -2.3px;
  max-width: 760px;
}

.section-head > p {
  max-width: 420px;
  color: var(--muted);
}

/* SERVICES */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px;
}

.service-card {
  min-height: 330px;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 26px;
  display: flex;
  flex-direction: column;
  transition: .3s;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(7,26,51,.08);
}

.service-card.featured {
  background: var(--dark);
  color: white;
  border-color: var(--dark);
}

.number {
  font-size: 12px;
  font-weight: 800;
  color: var(--blue);
}

.service-card h3 {
  margin-top: 75px;
  font-size: 26px;
}

.service-card p {
  margin-top: 14px;
  color: var(--muted);
}

.service-card.featured p {
  color: rgba(255,255,255,.68);
}

.service-card a {
  margin-top: auto;
  font-weight: 700;
  font-size: 14px;
  color: var(--blue);
}

/* WORKS */

.works-section { background: var(--bg); }

.works-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-template-rows: 270px 270px;
  gap: 18px;
}

.work-card {
  overflow: hidden;
  border-radius: 26px;
}

.work-card.big { grid-row: 1 / 3; }

.work-card img {
  height: 100%;
  object-fit: cover;
  transition: .45s;
}

.work-card:hover img { transform: scale(1.035); }

/* BENEFITS */

.benefits-wrap {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 100px;
}

.benefits-content p {
  margin: 25px 0 30px;
  max-width: 520px;
  color: var(--muted);
  font-size: 17px;
}

.benefits-list {
  border-top: 1px solid var(--border);
}

.benefit {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 20px;
  padding: 26px 0;
  border-bottom: 1px solid var(--border);
}

.benefit > span {
  font-weight: 800;
  color: var(--blue);
  font-size: 12px;
}

.benefit h3 { font-size: 20px; }

.benefit p {
  color: var(--muted);
  margin-top: 5px;
}

/* CTA */

.cta-section { padding: 30px 0 100px; }

.cta-box {
  background: var(--dark);
  color: white;
  border-radius: 36px;
  padding: 65px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.cta-box p {
  color: rgba(255,255,255,.68);
  margin-top: 20px;
  max-width: 600px;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 240px;
}

.btn.white {
  background: white;
  color: var(--dark);
}

.btn.transparent {
  border: 1px solid rgba(255,255,255,.25);
  color: white;
}

/* FOOTER */

footer {
  padding: 30px 0;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: 13px;
}

/* MOBILE */

@media (max-width: 900px) {
  nav { display: none; }

  .hero-grid,
  .benefits-wrap {
    grid-template-columns: 1fr;
  }

  .hero-visual img { height: 470px; }

  .floating-card { left: 15px; }

  .stats-grid {
    grid-template-columns: repeat(2,1fr);
  }

  .services-grid { grid-template-columns: 1fr; }

  .section-head {
    align-items: start;
    flex-direction: column;
  }

  .works-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3,300px);
  }

  .work-card.big { grid-row: auto; }

  .cta-box {
    padding: 40px 28px;
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-buttons { width: 100%; }
}

@media (max-width: 600px) {
  .container {
    width: min(100% - 24px,1180px);
  }

  .hero { padding: 42px 0 50px; }

  .hero h1 {
    font-size: 48px;
    letter-spacing: -2px;
  }

  .hero-buttons { flex-direction: column; }

  .btn { width: 100%; }

  .hero-visual img {
    height: 380px;
    border-radius: 24px;
  }

  .section { padding: 78px 0; }

  .section-head h2,
  .benefits-content h2,
  .cta-box h2 {
    font-size: 39px;
    letter-spacing: -1.5px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

.instagram-card {
  background: var(--dark);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 35px;
}

.instagram-inner span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
}

.instagram-inner h3 {
  font-size: 28px;
  line-height: 1.05;
  margin: 14px 0 24px;
}

.instagram-inner a {
  color: white;
  font-weight: 700;
  font-size: 14px;
}

/* FINAL HERO POLISH */

.hero h1 {
  font-size: clamp(46px, 5.2vw, 68px);
  line-height: 1.02;
  letter-spacing: -3px;
}

.hero-visual {
  overflow: visible;
}

.hero-visual img {
  filter: contrast(1.06) saturate(1.08);
  box-shadow: 0 25px 70px rgba(7, 26, 51, .12);
  transition: transform .5s ease, box-shadow .5s ease;
}

.hero-visual:hover img {
  transform: translateY(-4px);
  box-shadow: 0 32px 80px rgba(7, 26, 51, .18);
}

.btn {
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary:hover {
  box-shadow: 0 10px 28px rgba(7, 26, 51, .20);
}

.service-card,
.work-card {
  transition: transform .35s ease, box-shadow .35s ease;
}

.work-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 55px rgba(7, 26, 51, .12);
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 43px;
    line-height: 1;
    letter-spacing: -2px;
  }
}

/* REVIEWS */

.reviews-section {
  background: #f7f8fa;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.review-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 30px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 55px rgba(7,26,51,.08);
}

.stars {
  letter-spacing: 3px;
  font-size: 14px;
  color: var(--dark);
}

.review-card > p {
  margin-top: 30px;
  font-size: 17px;
  line-height: 1.6;
  color: #495563;
}

.review-author {
  margin-top: auto;
  padding-top: 30px;
}

.review-author strong,
.review-author span {
  display: block;
}

.review-author strong {
  font-size: 14px;
}

.review-author span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

@media (max-width: 900px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

/* CONTACT */

.contact-box {
  background: var(--dark);
  color: white;
  border-radius: 36px;
  padding: 65px;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 80px;
}

.contact-main h2 {
  font-size: clamp(42px, 5vw, 60px);
  line-height: 1;
  letter-spacing: -2.5px;
}

.contact-main > p {
  margin-top: 22px;
  max-width: 600px;
  color: rgba(255,255,255,.68);
  font-size: 17px;
}

.contact-actions {
  display: flex;
  gap: 10px;
  margin-top: 32px;
}

.contact-info {
  border-top: 1px solid rgba(255,255,255,.15);
}

.contact-item {
  padding: 21px 0;
  border-bottom: 1px solid rgba(255,255,255,.15);
}

.contact-item span,
.contact-item strong,
.contact-item a {
  display: block;
}

.contact-item span {
  margin-bottom: 6px;
  color: rgba(255,255,255,.48);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.contact-item strong,
.contact-item a {
  font-size: 16px;
  font-weight: 700;
}

.contact-item a:hover {
  opacity: .7;
}

@media (max-width: 900px) {
  .contact-box {
    grid-template-columns: 1fr;
    gap: 45px;
  }
}

@media (max-width: 600px) {
  .contact-box {
    padding: 40px 26px;
    border-radius: 26px;
  }

  .contact-actions {
    flex-direction: column;
  }
}

/* REAL LOGO */

.logo {
  display: flex;
  align-items: center;
  width: 230px;
}

.logo img {
  width: 100%;
  height: 54px;
  object-fit: contain;
  object-position: left center;
}

@media (max-width: 600px) {
  .logo {
    width: 180px;
  }

  .logo img {
    height: 46px;
  }
}

/* LOGO FIX */

.logo {
  width: 205px;
  height: 52px;
  padding: 6px 14px;
  background: var(--dark);
  border-radius: 12px;
  overflow: hidden;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

@media (max-width: 600px) {
  .logo {
    width: 170px;
    height: 46px;
    padding: 5px 10px;
  }
}

/* BIGGER HEADER LOGO */
.logo {
  width: 265px;
  height: 62px;
  padding: 5px 12px;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 600px) {
  .logo {
    width: 205px;
    height: 52px;
  }
}

/* SMOOTH REVEAL */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity .75s ease,
    transform .75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-content.reveal {
  transform: translateY(18px);
}

.hero-visual.reveal {
  transform: translateY(18px) scale(.985);
}

.hero-visual.reveal.visible {
  transform: translateY(0) scale(1);
}

/* HOVERS */

.service-card,
.review-card,
.work-card,
.contact-box {
  transition:
    transform .3s ease,
    box-shadow .3s ease;
}

.service-card:hover,
.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 65px rgba(7,26,51,.10);
}

.work-card img {
  transition: transform .6s ease;
}

.work-card:hover img {
  transform: scale(1.04);
}

.nav a {
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: var(--dark);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}

.nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* MOBILE FINAL POLISH */

@media (max-width: 600px) {

  body {
    overflow-x: hidden;
  }

  .container {
    width: calc(100% - 24px);
  }

  /* HEADER */

  .nav {
    min-height: 72px;
    gap: 10px;
  }

  .logo {
    width: 176px;
    height: 46px;
    padding: 4px 8px;
    border-radius: 10px;
  }

  .nav-btn {
    padding: 11px 14px;
    font-size: 11px;
    white-space: nowrap;
  }

  /* HERO */

  .hero {
    padding: 58px 0 55px;
  }

  .hero-grid {
    gap: 38px;
  }

  .eyebrow {
    margin-bottom: 16px;
    font-size: 10px;
  }

  .hero h1 {
    font-size: 42px;
    line-height: .98;
    letter-spacing: -2px;
  }

  .hero-text {
    margin-top: 22px;
    font-size: 16px;
    line-height: 1.5;
  }

  .hero-buttons {
    margin-top: 28px;
    gap: 10px;
  }

  .hero-points {
    margin-top: 26px;
    gap: 12px 18px;
  }

  .hero-points span {
    font-size: 11px;
  }

  .hero-visual img {
    height: 390px;
    border-radius: 24px;
  }

  .floating-card {
    left: 14px;
    right: 14px;
    bottom: 14px;
    width: auto;
    padding: 16px;
  }

  /* SECTIONS */

  .section {
    padding: 75px 0;
  }

  .section-head {
    gap: 18px;
    margin-bottom: 36px;
  }

  .section-head h2,
  .benefits-content h2,
  .contact-main h2 {
    font-size: 36px;
    line-height: 1.02;
    letter-spacing: -1.5px;
  }

  .section-head > p {
    font-size: 14px;
    line-height: 1.55;
  }

  /* SERVICES */

  .services-grid {
    gap: 14px;
  }

  .service-card {
    min-height: 245px;
    padding: 26px;
    border-radius: 22px;
  }

  .service-card h3 {
    margin-top: 38px;
    font-size: 24px;
    line-height: 1.1;
  }

  .service-card p {
    font-size: 14px;
    line-height: 1.55;
  }

  .service-card a {
    margin-top: 28px;
  }

  /* WORKS */

  .works-grid {
    grid-template-rows: auto;
    gap: 14px;
  }

  .work-card {
    height: 300px;
    border-radius: 22px;
  }

  .work-card.big {
    height: 380px;
  }

  .instagram-card {
    height: 260px;
  }

  .instagram-inner h3 {
    font-size: 25px;
  }

  /* STATS */

  .stats-grid div {
    padding: 20px 13px;
  }

  .stats strong {
    font-size: 18px;
  }

  .stats span {
    font-size: 11px;
  }

  /* REVIEWS */

  .review-card {
    min-height: 235px;
    padding: 25px;
  }

  .review-card > p {
    margin-top: 22px;
    font-size: 15px;
  }

  /* CONTACT */

  .contact-box {
    padding: 36px 24px;
    gap: 38px;
  }

  .contact-main > p {
    font-size: 15px;
  }

  /* FOOTER */

  .footer-inner {
    gap: 10px;
  }
}

/* DARK BLUE CARD BORDERS */
.service-card,
.review-card,
.work-card {
  border: 1.5px solid rgba(7, 26, 51, .32);
}

.service-card.featured {
  border-color: rgba(255, 255, 255, .22);
}

/* COMPACT STICKY MOBILE HEADER */
@media (max-width: 600px) {
  .header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,.94);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 1px 0 rgba(7,26,51,.08);
  }

  .nav {
    min-height: 58px;
    padding: 6px 0;
  }

  .logo {
    width: 155px;
    height: 40px;
    padding: 3px 7px;
    border-radius: 9px;
  }

  .logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .nav-btn {
    padding: 9px 12px;
    font-size: 10px;
    border-radius: 999px;
  }
}

/* REMOVE STICKY HEADER */
@media (max-width: 600px) {
  .header {
    position: static !important;
    top: auto !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
}
