/* =========================================
   AXISKINS — Feuille de styles complète
   ========================================= */

:root {
  --green: #1a7a4a;
  --green-light: #a8e063;
  --green-mid: #2db370;
  --black: #0d0d0d;
  --off-white: #f5f4f0;
  --gray: #8a8a8a;
  --border: rgba(255,255,255,0.08);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--black);
  color: var(--off-white);
  overflow-x: hidden;
}
h1, h2, h3, h4, .logo { font-family: 'Syne', sans-serif; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 5%;
  background: rgba(13,13,13,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
.logo {
  font-size: 1.5rem; font-weight: 800; letter-spacing: -0.02em;
  color: var(--off-white); text-decoration: none;
}
.logo span { color: var(--green-light); }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  color: var(--gray); text-decoration: none; font-size: 0.9rem; font-weight: 500;
  letter-spacing: 0.03em; transition: color 0.2s;
}
.nav-links a:hover { color: var(--off-white); }
.nav-cta {
  background: var(--green-light); color: var(--black);
  padding: 0.6rem 1.4rem; border-radius: 100px;
  font-size: 0.85rem; font-weight: 700; font-family: 'Syne', sans-serif;
  text-decoration: none; transition: opacity 0.2s;
  white-space: nowrap;
}
.nav-cta:hover { opacity: 0.85; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--off-white); border-radius: 2px; transition: all 0.3s; }

/* HERO */
#hero {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 5% 6rem;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 40%, rgba(26,122,74,0.25) 0%, transparent 60%),
              radial-gradient(ellipse 60% 80% at 10% 80%, rgba(168,224,99,0.08) 0%, transparent 50%),
              var(--black);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black, transparent);
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(168,224,99,0.12); border: 1px solid rgba(168,224,99,0.3);
  padding: 0.4rem 1rem; border-radius: 100px;
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.08em;
  color: var(--green-light); text-transform: uppercase;
  margin-bottom: 1.5rem; width: fit-content;
  position: relative;
}
.hero-tag::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--green-light); animation: blink 2s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }
.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 800; line-height: 1.02;
  letter-spacing: -0.03em;
  max-width: 800px;
  position: relative;
}
.hero h1 em { font-style: normal; color: var(--green-light); }
.hero-sub {
  margin-top: 1.5rem; font-size: 1.1rem; font-weight: 300;
  color: var(--gray); max-width: 520px; line-height: 1.7;
  position: relative;
}
.hero-actions {
  display: flex; gap: 1rem; margin-top: 2.5rem; flex-wrap: wrap;
  position: relative;
}
.btn-primary {
  background: var(--green-light); color: var(--black);
  padding: 0.85rem 2rem; border-radius: 100px;
  font-weight: 700; font-family: 'Syne', sans-serif; font-size: 0.9rem;
  text-decoration: none; transition: opacity 0.2s, transform 0.2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-secondary {
  background: transparent; color: var(--off-white);
  padding: 0.85rem 2rem; border-radius: 100px;
  font-weight: 500; font-family: 'Syne', sans-serif; font-size: 0.9rem;
  text-decoration: none; border: 1px solid rgba(255,255,255,0.2);
  transition: border-color 0.2s, background 0.2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-secondary:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.04); }
.hero-scroll {
  position: absolute; bottom: 2rem; right: 5%;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: var(--gray); font-size: 0.75rem; letter-spacing: 0.1em;
}
.scroll-line { width: 1px; height: 50px; background: linear-gradient(to bottom, var(--green-mid), transparent); animation: scrolldown 2s infinite; }
@keyframes scrolldown { 0%{transform:scaleY(0);transform-origin:top} 50%{transform:scaleY(1);transform-origin:top} 51%{transform:scaleY(1);transform-origin:bottom} 100%{transform:scaleY(0);transform-origin:bottom} }

/* STATS BAR */
.stats-bar {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat {
  padding: 2rem 5%;
  border-right: 1px solid var(--border);
}
.stat:last-child { border-right: none; }
.stat-num {
  font-family: 'Syne', sans-serif; font-size: 2.2rem; font-weight: 800;
  color: var(--green-light); letter-spacing: -0.02em;
}
.stat-label { font-size: 0.82rem; color: var(--gray); margin-top: 4px; }

/* SECTION UTILS */
section { padding: 7rem 5%; }
.section-eyebrow {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--green-mid); margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 3rem); font-weight: 800;
  line-height: 1.1; letter-spacing: -0.02em; max-width: 600px;
}
.section-title em { font-style: normal; color: var(--green-light); }

/* SERVICES */
#services { background: #111111; }
.services-intro { display: flex; justify-content: space-between; align-items: flex-end; gap: 2rem; flex-wrap: wrap; margin-bottom: 4rem; }
.services-intro p { max-width: 400px; color: var(--gray); line-height: 1.7; font-size: 0.95rem; }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--border); border: 1px solid var(--border);
}
.service-card {
  background: #111111; padding: 2.5rem;
  transition: background 0.3s; position: relative; overflow: hidden;
}
.service-card:hover { background: #161616; }
.service-card:hover .service-arrow { opacity: 1; transform: translate(0, 0); }
.service-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(168,224,99,0.1); border: 1px solid rgba(168,224,99,0.2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem; font-size: 1.3rem;
}
.service-card h3 {
  font-size: 1.05rem; font-weight: 700; margin-bottom: 0.75rem; letter-spacing: -0.01em;
}
.service-card p { font-size: 0.87rem; color: var(--gray); line-height: 1.65; }
.service-arrow {
  position: absolute; top: 2.5rem; right: 2.5rem;
  color: var(--green-light); font-size: 1.1rem;
  opacity: 0; transform: translate(-4px, 4px); transition: all 0.3s;
}
.service-tag {
  display: inline-block; margin-top: 1rem;
  background: rgba(168,224,99,0.1); color: var(--green-light);
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.3rem 0.7rem; border-radius: 4px;
}

/* ABOUT */
#about { position: relative; overflow: hidden; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.about-visual {
  position: relative; aspect-ratio: 1;
  max-width: 480px;
}
.about-box-main {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(26,122,74,0.3) 0%, rgba(13,13,13,0.9) 100%);
  border: 1px solid rgba(168,224,99,0.2);
  border-radius: 20px;
  display: flex; flex-direction: column; justify-content: flex-end; padding: 2.5rem;
}
.about-box-main .big-year {
  font-family: 'Syne', sans-serif; font-size: 5rem; font-weight: 800;
  color: var(--green-light); opacity: 0.25; line-height: 1;
}
.about-box-main p { font-size: 1.1rem; font-weight: 300; color: var(--off-white); line-height: 1.6; }
.about-float {
  position: absolute; top: -1.5rem; right: -1.5rem;
  background: rgba(168,224,99,0.15); backdrop-filter: blur(10px);
  border: 1px solid rgba(168,224,99,0.3); border-radius: 14px;
  padding: 1.2rem 1.5rem;
}
.about-float .num { font-family: 'Syne', sans-serif; font-size: 1.8rem; font-weight: 800; color: var(--green-light); }
.about-float .lbl { font-size: 0.78rem; color: var(--gray); }
.about-text p { color: var(--gray); line-height: 1.75; font-size: 0.95rem; margin-bottom: 1.2rem; }
.values-list { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1rem; }
.value-item { display: flex; align-items: center; gap: 1rem; }
.value-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green-light); flex-shrink: 0; }
.value-text { font-weight: 500; font-size: 0.95rem; }

/* WHY US */
#why { background: #0a0a0a; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3.5rem; }
.why-card {
  padding: 2rem; border: 1px solid var(--border); border-radius: 16px;
  transition: border-color 0.3s, background 0.3s;
}
.why-card:hover { border-color: rgba(168,224,99,0.3); background: rgba(168,224,99,0.03); }
.why-num { font-family: 'Syne', sans-serif; font-size: 3rem; font-weight: 800; color: rgba(168,224,99,0.2); line-height: 1; margin-bottom: 1rem; }
.why-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.6rem; }
.why-card p { font-size: 0.87rem; color: var(--gray); line-height: 1.65; }

/* PORTFOLIO */
#portfolio { background: #111111; }
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3.5rem; }
.portfolio-card {
  border-radius: 16px; overflow: hidden;
  border: 1px solid var(--border); position: relative;
  aspect-ratio: 4/3; cursor: pointer;
  transition: transform 0.3s;
}
.portfolio-card:hover { transform: translateY(-4px); }
.portfolio-card:hover .portfolio-overlay { opacity: 1; }
.portfolio-thumb {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
}
.thumb-web   { background: linear-gradient(135deg, #0d2d1a, #1a5c35); }
.thumb-app   { background: linear-gradient(135deg, #1a2d0d, #3a5c1a); }
.thumb-pub   { background: linear-gradient(135deg, #0d1a2d, #1a3a5c); }
.thumb-brand { background: linear-gradient(135deg, #2d1a0d, #5c3a1a); }
.thumb-shop  { background: linear-gradient(135deg, #2d0d1a, #5c1a3a); }
.thumb-trade { background: linear-gradient(135deg, #1a0d2d, #3a1a5c); }
.portfolio-overlay {
  position: absolute; inset: 0; background: rgba(13,13,13,0.88);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 1.5rem;
  opacity: 0; transition: opacity 0.3s;
}
.portfolio-overlay h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.3rem; }
.portfolio-overlay p { font-size: 0.8rem; color: var(--gray); }
.portfolio-overlay .port-tag {
  display: inline-block; background: var(--green-light); color: var(--black);
  font-size: 0.7rem; font-weight: 700; padding: 0.25rem 0.6rem; border-radius: 4px; margin-bottom: 0.8rem;
}

/* CTA */
#cta {
  text-align: center; padding: 8rem 5%;
  background: linear-gradient(135deg, rgba(26,122,74,0.15), rgba(13,13,13,0.8));
  position: relative; overflow: hidden;
}
#cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(168,224,99,0.07), transparent);
}
#cta h2 { font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 800; letter-spacing: -0.02em; max-width: 600px; margin: 0 auto 1.5rem; position: relative; }
#cta h2 em { font-style: normal; color: var(--green-light); }
#cta p { color: var(--gray); font-size: 1rem; max-width: 420px; margin: 0 auto 2.5rem; position: relative; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; }

/* CONTACT */
#contact { background: #0a0a0a; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; }
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.82rem; color: var(--gray); font-weight: 500; }
.form-group input, .form-group textarea, .form-group select {
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  color: var(--off-white); padding: 0.85rem 1rem; border-radius: 10px;
  font-family: 'DM Sans', sans-serif; font-size: 0.9rem;
  transition: border-color 0.2s;
  resize: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: rgba(168,224,99,0.5);
}
.form-group textarea { min-height: 120px; }
.form-group select option { background: #1a1a1a; }
.submit-btn {
  background: var(--green-light); color: var(--black); border: none;
  padding: 1rem 2rem; border-radius: 100px;
  font-family: 'Syne', sans-serif; font-size: 0.9rem; font-weight: 700;
  cursor: pointer; transition: opacity 0.2s; text-align: center;
  width: fit-content;
}
.submit-btn:hover { opacity: 0.88; }
.contact-info { display: flex; flex-direction: column; gap: 2rem; }
.contact-info .section-title { margin-bottom: 0.5rem; }
.contact-info p { color: var(--gray); line-height: 1.7; font-size: 0.95rem; }
.info-item { display: flex; gap: 1rem; align-items: flex-start; }
.info-icon {
  width: 42px; height: 42px; border-radius: 10px; flex-shrink: 0;
  background: rgba(168,224,99,0.1); border: 1px solid rgba(168,224,99,0.2);
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
}
.info-text small { display: block; font-size: 0.78rem; color: var(--gray); margin-bottom: 3px; }
.info-text span { font-size: 0.9rem; font-weight: 500; }
.whatsapp-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: #25d366; color: #fff;
  padding: 0.85rem 1.8rem; border-radius: 100px;
  font-weight: 700; font-family: 'Syne', sans-serif; font-size: 0.88rem;
  text-decoration: none; margin-top: 1rem; width: fit-content;
  transition: opacity 0.2s;
}
.whatsapp-btn:hover { opacity: 0.9; }

/* FOOTER */
footer {
  padding: 3rem 5%;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
footer .logo { font-size: 1.2rem; }
footer p { font-size: 0.82rem; color: var(--gray); }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { font-size: 0.82rem; color: var(--gray); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--off-white); }

/* ANIMATIONS */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.7s, transform 0.7s; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* MENU MOBILE */
.mobile-menu {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(13,13,13,0.97); z-index: 99; flex-direction: column;
  align-items: center; justify-content: center; gap: 2.5rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: 'Syne', sans-serif; font-size: 1.8rem; font-weight: 700; color: var(--off-white); text-decoration: none; }
.mobile-menu .mobile-cta { color: var(--green-light); }
.close-menu { position: absolute; top: 1.5rem; right: 5%; font-size: 1.5rem; cursor: pointer; color: var(--gray); background: none; border: none; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { max-width: 100%; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-scroll { display: none; }
}
@media (max-width: 600px) {
  section { padding: 5rem 5%; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
}
