:root {
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --blue-ocean: #0064b6;
  --blue-ocean-deep: #004577;
  --blue-lagoon: #00c2d1;
  --text-primary: #0f172a;
  --text-secondary: #64748b;
  --border-light: rgba(0, 100, 182, 0.1);
  --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 2px 8px rgba(0, 100, 182, 0.08);
  --shadow-md: 0 8px 24px rgba(0, 100, 182, 0.12);
  --shadow-lg: 0 16px 48px rgba(0, 100, 182, 0.16);
  --shadow-xl: 0 24px 64px rgba(0, 100, 182, 0.2);
}

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

html {
  scroll-behavior: smooth;
}

/* Animations au scroll */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--text-primary);
  background: var(--bg-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}


/* NAVIGATION */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--border-light);
  transition: all var(--transition-fast);
}

.nav:hover {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
}

.nav-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Manrope", system-ui, sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.nav-logo img {
  width: 350px;
  height: 130px;
  object-fit: contain;
  transition: all var(--transition);
}

.nav-items {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.nav-item {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition);
  position: relative;
  white-space: nowrap;
}

.nav-item::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--blue-ocean);
  transition: width var(--transition);
}

.nav-item:hover {
  color: var(--text-primary);
}

.nav-item:hover::after {
  width: 100%;
}

.nav-item--primary {
  padding: 10px 24px;
  background: linear-gradient(135deg, var(--blue-ocean), var(--blue-lagoon));
  color: white;
  border-radius: 8px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0, 100, 182, 0.3);
  position: relative;
  overflow: hidden;
}

.nav-item--primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--blue-ocean-deep), var(--blue-ocean));
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.nav-item--primary::after {
  display: none;
}

.nav-item--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 100, 182, 0.4);
}

.nav-item--primary:hover::before {
  opacity: 1;
}

.nav-item--primary span {
  position: relative;
  z-index: 1;
}

.nav-item--store {
  font-size: 14px;
  color: var(--blue-ocean);
  opacity: 0.75;
  position: relative;
  font-weight: 500;
}

.nav-item--store::after {
  background: var(--blue-ocean);
  opacity: 0.5;
}

.nav-item--store:hover {
  color: var(--blue-ocean-deep);
  opacity: 1;
}

.nav-item--store:hover::after {
  opacity: 1;
}

@media (max-width: 1200px) {
  .nav-logo img {
    width: 280px;
    height: 104px;
  }

  .nav-items {
    gap: 24px;
  }
}

@media (max-width: 968px) {
  .nav-wrapper {
    padding: 16px 32px;
  }

  .nav-logo img {
    width: 220px;
    height: 82px;
  }

  .nav-items {
    gap: 18px;
  }

  .nav-item {
    font-size: 14px;
  }

  .nav-item--primary {
    padding: 8px 18px;
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .nav-wrapper {
    padding: 14px 24px;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
  }

  .nav-logo {
    flex-shrink: 0;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .nav-logo img {
    width: 180px;
    height: 67px;
  }

  .nav-items {
    gap: 14px;
    width: 100%;
    justify-content: center;
    order: 2;
  }

  .nav-item {
    font-size: 13px;
  }

  .nav-item--store {
    font-size: 12px;
  }

  .nav-item--primary {
    padding: 7px 16px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .nav-wrapper {
    padding: 12px 20px;
    gap: 12px;
    justify-content: center;
  }

  .nav-logo {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .nav-logo img {
    width: 150px;
    height: 56px;
  }

  .nav-items {
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-item {
    font-size: 12px;
  }

  .nav-item--store {
    font-size: 11px;
  }

  .nav-item--primary {
    padding: 6px 14px;
    font-size: 11px;
  }

  /* Masquer le texte long sur très petits écrans */
  .nav-item:nth-child(3) {
    display: none;
  }
}

/* HERO */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 120px 40px 80px;
  overflow: hidden;
  background: linear-gradient(135deg, #f0f9ff 0%, #ffffff 50%, #e0f2fe 100%);
}

.hero-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
  animation: float 20s ease-in-out infinite;
}

.shape--1 {
  width: 400px;
  height: 400px;
  background: var(--blue-ocean);
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.shape--2 {
  width: 300px;
  height: 300px;
  background: var(--blue-lagoon);
  bottom: -50px;
  left: 10%;
  animation-delay: 5s;
}

.shape--3 {
  width: 200px;
  height: 200px;
  background: var(--blue-ocean-deep);
  top: 50%;
  right: 20%;
  animation-delay: 10s;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -30px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
}

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

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
  animation: fadeIn 1s ease-out;
}

.hero-main {
  animation: slideInLeft 0.8s ease-out 0.2s both;
}

.hero-side {
  animation: slideInRight 0.8s ease-out 0.4s both;
}

.hero-badge {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(0, 100, 182, 0.1);
  color: var(--blue-ocean);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 100, 182, 0.2);
  animation: fadeInUp 0.6s ease-out;
}

.hero-heading {
  font-family: "Manrope", system-ui, sans-serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
  color: var(--text-primary);
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-highlight {
  background: linear-gradient(135deg, var(--blue-ocean), var(--blue-lagoon));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  display: inline-block;
}

.hero-highlight::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue-ocean), var(--blue-lagoon));
  opacity: 0.2;
  border-radius: 2px;
}

.hero-text {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-secondary);
  max-width: 600px;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.btn-main {
  background: linear-gradient(135deg, var(--blue-ocean), var(--blue-lagoon));
  color: white;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.btn-main::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--blue-ocean-deep), var(--blue-ocean));
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.btn-main:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-main:hover::before {
  opacity: 1;
}

.btn-main span {
  position: relative;
  z-index: 1;
}

.btn-outline {
  background: transparent;
  color: var(--blue-ocean);
  border: 2px solid var(--blue-ocean);
}

.btn-outline:hover {
  background: var(--blue-ocean);
  color: white;
}

.btn-full {
  width: 100%;
}

.hero-metrics {
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: flex-end;
}

.metric {
  text-align: right;
}

.metric-value {
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 64px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--blue-ocean), var(--blue-lagoon));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 8px;
  transition: transform var(--transition-fast);
}

.metric:hover .metric-value {
  transform: scale(1.05);
}

.metric-label {
  font-size: 14px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }

  .hero-main {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-text {
    max-width: 100%;
    text-align: center;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-metrics {
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
  }

  .metric {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 100px 24px 60px;
    min-height: auto;
  }

  .hero-container {
    gap: 40px;
    padding: 0;
  }

  .hero-badge {
    font-size: 12px;
    padding: 6px 14px;
    margin-bottom: 24px;
  }

  .hero-heading {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }

  .hero-text {
    font-size: 16px;
    margin-bottom: 32px;
  }

  .hero-cta {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .btn {
    width: 100%;
    padding: 14px 24px;
    font-size: 15px;
  }

  .hero-metrics {
    gap: 32px;
    flex-wrap: wrap;
  }

  .metric-value {
    font-size: 48px;
  }

  .metric-label {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 90px 20px 50px;
  }

  .hero-container {
    gap: 32px;
  }

  .hero-badge {
    font-size: 11px;
    padding: 5px 12px;
    margin-bottom: 20px;
  }

  .hero-heading {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 16px;
  }

  .hero-text {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 28px;
  }

  .hero-cta {
    gap: 10px;
  }

  .btn {
    padding: 12px 20px;
    font-size: 14px;
  }

  .hero-metrics {
    gap: 24px;
    flex-direction: column;
  }

  .metric {
    width: 100%;
  }

  .metric-value {
    font-size: 40px;
  }

  .metric-label {
    font-size: 12px;
  }
}

/* SECTIONS */
.section-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-header {
  margin-bottom: 80px;
  max-width: 700px;
}

.section-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue-ocean);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
  padding: 6px 14px;
  background: rgba(0, 100, 182, 0.08);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 100, 182, 0.15);
}

.section-title {
  font-family: "Manrope", system-ui, sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  color: var(--text-primary);
  position: relative;
}

.text-emphasis {
  background: linear-gradient(135deg, var(--blue-ocean), var(--blue-lagoon));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.section-description {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-secondary);
}

/* SERVICES */
.services {
  padding: 120px 0;
  background: var(--bg-secondary);
  position: relative;
}

/* SERVICES - Design moderne, épuré, tout visible */
.services-list {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-bottom: 100px;
}

.service-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: white;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 400px;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 100, 182, 0.2);
}

.service-card--reverse {
  direction: rtl;
}

.service-card--reverse > * {
  direction: ltr;
}

.service-image {
  position: relative;
  overflow: hidden;
  background: var(--bg-secondary);
}

.service-image img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 100, 182, 0.1) 0%, rgba(0, 194, 209, 0.05) 100%);
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.service-card:hover .service-overlay {
  opacity: 0.5;
}

.service-info {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.service-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.service-number {
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--blue-ocean);
  background: rgba(0, 100, 182, 0.1);
  padding: 6px 14px;
  border-radius: 8px;
  letter-spacing: 0.05em;
}

.service-icon {
  font-size: 40px;
  line-height: 1;
  filter: drop-shadow(0 2px 4px rgba(0, 100, 182, 0.15));
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
}

.service-title {
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.service-description {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 28px;
}

.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 0;
}

.service-features li {
  font-size: 15px;
  color: var(--text-primary);
  padding-left: 28px;
  position: relative;
  line-height: 1.6;
}

.service-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-ocean), var(--blue-lagoon));
  box-shadow: 0 0 0 2px rgba(0, 100, 182, 0.1);
}

/* Ligne décorative sur le côté */
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--blue-ocean), var(--blue-lagoon));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card--reverse::before {
  left: auto;
  right: 0;
}

@media (max-width: 1024px) {
  .service-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .service-card--reverse {
    direction: ltr;
  }

  .service-image {
    order: -1;
    min-height: 300px;
  }

  .service-info {
    padding: 40px;
  }
}

@media (max-width: 768px) {
  .services-list {
    gap: 32px;
  }

  .service-info {
    padding: 32px 24px;
  }

  .service-title {
    font-size: 26px;
  }

  .service-description {
    font-size: 16px;
  }
}

.services-process {
  background: white;
  padding: 60px;
  border-radius: 16px;
  border: 1px solid var(--border-light);
}

.process-title {
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 48px;
  color: var(--text-primary);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.process-step {
  text-align: center;
}

.step-number {
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--blue-ocean);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 16px;
}

.process-step h4 {
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.process-step p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
}

@media (max-width: 1024px) {
  .process-steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* PROJECTS - Design moderne, simple et épuré */
.projects {
  padding: 120px 0;
  background: var(--bg-primary);
}

.projects-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.project-item {
  background: white;
  border-radius: 20px;
  padding: 0;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
}

.project-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--blue-ocean), var(--blue-lagoon));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
}

.project-item:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 100, 182, 0.2);
}

.project-item:hover::before {
  transform: scaleY(1);
}

.project-content {
  padding: 48px;
  position: relative;
  z-index: 1;
}

.project-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 24px;
  gap: 24px;
  flex-wrap: wrap;
}

.project-number {
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 72px;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, var(--blue-ocean), var(--blue-lagoon));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.15;
  transition: opacity 0.3s ease;
  flex-shrink: 0;
}

.project-item:hover .project-number {
  opacity: 0.25;
}

.project-meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}

.project-category {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--blue-ocean);
  padding: 6px 14px;
  background: rgba(0, 100, 182, 0.08);
  border-radius: 8px;
  width: fit-content;
}

.project-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.project-tags span {
  font-size: 13px;
  padding: 6px 12px;
  background: rgba(0, 100, 182, 0.06);
  color: var(--blue-ocean);
  border-radius: 6px;
  font-weight: 500;
}

.project-title {
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  padding-left: 76px;
  transition: color 0.3s ease;
}

.project-item:hover .project-title {
  color: var(--blue-ocean);
}

.project-description {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 32px;
  padding-left: 76px;
  max-width: 100%;
}

.project-footer {
  padding-left: 76px;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
}

.project-image-wrapper {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(0, 100, 182, 0.05), rgba(0, 150, 255, 0.05));
}

.project-image-wrapper::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 120px;
  background: linear-gradient(to right, white, rgba(255, 255, 255, 0.8), transparent);
  z-index: 2;
  pointer-events: none;
}

.project-image-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 100, 182, 0.1), rgba(0, 150, 255, 0.05));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
  pointer-events: none;
}

.project-item:hover .project-image-wrapper::after {
  opacity: 1;
}

.project-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s ease;
  filter: grayscale(20%) brightness(0.95);
  position: relative;
  z-index: 0;
}

.project-item:hover .project-image {
  transform: scale(1.05);
  filter: grayscale(0%) brightness(1);
}

.project-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
  color: var(--blue-ocean);
  transition: all var(--transition);
  padding: 12px 24px;
  border-radius: 8px;
  background: rgba(0, 100, 182, 0.05);
  border: 1px solid rgba(0, 100, 182, 0.1);
}

.project-link:hover {
  background: var(--blue-ocean);
  color: white;
  transform: translateX(4px);
  border-color: var(--blue-ocean);
  box-shadow: 0 4px 12px rgba(0, 100, 182, 0.3);
}

.project-link svg {
  transition: transform var(--transition-fast);
}

.project-link:hover svg {
  transform: translate(2px, -2px);
}

@media (max-width: 1024px) {
  .project-item {
    grid-template-columns: 1fr;
  }

  .project-content {
    padding: 40px;
  }

  .project-image-wrapper {
    height: 300px;
    order: -1;
  }

  .project-image-wrapper::before {
    width: 80px;
  }

  .project-title,
  .project-description,
  .project-footer {
    padding-left: 0;
  }

  .project-number {
    font-size: 56px;
  }
}

@media (max-width: 768px) {
  .project-content {
    padding: 32px 24px;
  }

  .project-image-wrapper {
    height: 250px;
  }

  .project-image-wrapper::before {
    width: 60px;
  }

  .project-header {
    flex-direction: column;
    gap: 16px;
  }

  .project-number {
    font-size: 48px;
    align-self: flex-start;
  }

  .project-title {
    font-size: 28px;
    padding-left: 0;
  }

  .project-description {
    font-size: 16px;
    padding-left: 0;
  }

  .project-footer {
    padding-left: 0;
  }
}

/* ABOUT */
.about {
  padding: 120px 0;
  background: var(--bg-secondary);
}

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

.about-description {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 48px;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.value-item h4 {
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.value-item p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.about-timeline {
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
  padding-left: 40px;
}

.about-timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--blue-ocean), var(--blue-lagoon));
}

.timeline-item {
  position: relative;
  padding-left: 40px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -48px;
  top: 8px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--blue-ocean);
  border: 3px solid white;
  box-shadow: 0 0 0 2px var(--blue-ocean);
}

.timeline-year {
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--blue-ocean);
  margin-bottom: 8px;
  display: block;
}

.timeline-content h4 {
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.timeline-content p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
}

@media (max-width: 1024px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about-values {
    grid-template-columns: 1fr;
  }
}

/* CONTACT */
.contact {
  padding: 120px 0;
  background: var(--bg-primary);
}

.contact-wrapper {
  max-width: 1350px;
  margin: 0 auto;
}

.contact-intro {
  text-align: center;
  margin-bottom: 60px;
}

.contact-text {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-top: 20px;
  margin-bottom: 32px;
}

.contact-benefits {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.benefit {
  font-size: 15px;
  color: var(--text-secondary);
  font-weight: 500;
}

.contact-form {
  background: var(--bg-secondary);
  padding: 48px;
  border-radius: 16px;
  border: 1px solid var(--border-light);
  position: relative;
}

.form-message {
  padding: 16px 20px;
  border-radius: 8px;
  margin-bottom: 24px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  animation: slideDown 0.3s ease-out;
}

.form-message--success {
  background: rgba(34, 197, 94, 0.1);
  color: #16a34a;
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.form-message--error {
  background: rgba(239, 68, 68, 0.1);
  color: #dc2626;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-field {
  margin-bottom: 24px;
}

.form-field label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  font-family: inherit;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  background: white;
  color: var(--text-primary);
  transition: all var(--transition);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--blue-ocean);
  box-shadow: 0 0 0 3px rgba(0, 100, 182, 0.1);
}

.form-field textarea {
  resize: vertical;
  min-height: 120px;
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

.btn-loader {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-loader::after {
  content: "";
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 768px) {
  .contact-form {
    padding: 32px 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

/* FOOTER */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-light);
  padding: 60px 0;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Manrope", system-ui, sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--text-primary);
}

.footer-brand img {
  width: 350px;
  height: 130px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 15px;
  color: var(--text-secondary);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--blue-ocean);
}

.footer-copy {
  text-align: right;
}

.footer-copy p {
  font-size: 20px;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.footer-copy a {
  font-size: 15px;
  color: var(--blue-ocean);
  font-weight: 500;
  transition: color var(--transition);
  display: block;
  margin-top: 4px;
}

.footer-copy a:hover {
  color: var(--blue-ocean-deep);
}

.footer-store-link {
  font-size: 13px !important;
  color: var(--text-secondary) !important;
  font-weight: 400 !important;
  opacity: 0.7;
  margin-top: 12px !important;
  position: relative;
  padding-left: 20px;
}

.footer-store-link::before {
  content: "→";
  position: absolute;
  left: 0;
  opacity: 0.5;
  transition: all var(--transition);
}

.footer-store-link:hover {
  color: var(--blue-ocean) !important;
  opacity: 1;
}

.footer-store-link:hover::before {
  transform: translateX(4px);
  opacity: 1;
}

@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .footer-brand {
    justify-content: center;
  }

  .footer-brand img {
    width: 280px;
    height: 104px;
  }

  .footer-copy {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .footer-brand img {
    width: 220px;
    height: 82px;
  }
}

@media (max-width: 480px) {
  .footer-brand img {
    width: 180px;
    height: 67px;
  }
}

#budget {
  height: 50px;
}