/*
Theme Name: Jarvisite White
Author: Norlane Colin
Version: 1.0
*/

*,
*::before,
*::after{
  box-sizing:border-box;
  margin:0;
  padding:0;
}

:root{
  --bg:#f4f6fb;
  --bg-alt:#eef2f9;
  --card-bg:#ffffff;
  --accent:#1e90ff;
  --accent-2:#4b8dff;
  --text:#0b1624;
  --muted:#5f6675;
  --border:#dde2ee;
  --radius-lg:16px;
  --radius-xl:20px;
  --shadow-soft:0 10px 30px rgba(15,23,42,0.08);
  --shadow-card:0 18px 40px rgba(15,23,42,0.12);
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:"Inter",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.55;
}

.container{
  width:100%;
  max-width:1120px;
  margin:0 auto;
  padding:0 20px;
}

img{
  max-width:100%;
  display:block;
}

a{
  color:var(--accent);
  text-decoration:none;
}

a:hover{
  text-decoration:none;
}

p{
  margin:0;
}

/* HEADER */

.top-bar{
  background:rgba(255,255,255,0.96);
  border-bottom:1px solid var(--border);
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter:blur(10px);
}

.flex-between{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.logo-area{
  display:flex;
  align-items:center;
  gap:12px;
  padding:12px 0;
}

.logo{
  height:44px;
  width:auto;
}

.brand-text{
  display:flex;
  flex-direction:column;
}

.brand-name{
  font-weight:700;
  font-size:1rem;
  color:var(--text);
  line-height:1.1;
}

.brand-tagline{
  font-size:0.78rem;
  color:var(--muted);
  margin-top:2px;
}

.main-nav{
  display:flex;
  align-items:center;
  gap:24px;
  font-size:0.95rem;
}

.main-nav a{
  color:var(--muted);
  transition:0.18s ease;
}

.main-nav a:hover{
  color:var(--text);
}

.active-link{
  color:var(--accent)!important;
  font-weight:600;
}

.btn-nav{
  padding:10px 16px;
  border-radius:999px;
  border:1px solid rgba(30,144,255,0.35);
  background:rgba(30,144,255,0.06);
  color:var(--accent)!important;
  font-weight:600;
}

/* BUTTONS */

.btn-primary,
.btn-secondary{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:12px 22px;
  border-radius:999px;
  font-weight:600;
  transition:0.18s ease;
}

.btn-primary{
  background:linear-gradient(135deg,var(--accent),var(--accent-2));
  color:#fff;
  box-shadow:0 10px 25px rgba(37,99,235,0.28);
}

.btn-primary:hover{
  transform:translateY(-2px);
  color:#fff;
}

.btn-secondary{
  background:#fff;
  border:1px solid rgba(30,144,255,0.45);
  color:var(--accent);
}

.btn-secondary:hover{
  background:rgba(30,144,255,0.05);
}

/* HOME HERO */

.hero{
  padding:72px 0 46px;
  background:linear-gradient(to bottom,#ffffff,#f5f7fc);
}

.hero-grid{
  display:grid;
  grid-template-columns:minmax(0,1.25fr) minmax(0,0.9fr);
  gap:44px;
  align-items:start;
}

.hero-left h1{
  font-size:3.05rem;
  line-height:1.15;
  margin-bottom:16px;
  letter-spacing:-0.02em;
}

.hero-sub{
  color:var(--muted);
  font-size:1rem;
  max-width:640px;
  margin-bottom:24px;
}

.hero-buttons{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-bottom:22px;
}

.hero-infos{
  list-style:none;
  color:var(--muted);
  font-size:0.95rem;
}

.hero-infos li{
  margin-bottom:7px;
}

.hero-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius-xl);
  padding:26px;
  box-shadow:var(--shadow-card);
}

.hero-card h3{
  font-size:1.1rem;
  margin-bottom:10px;
}

.hero-card p{
  color:var(--muted);
  margin-bottom:12px;
}

.hero-card ul{
  padding-left:20px;
  margin-bottom:18px;
}

.hero-card ul li{
  margin-bottom:6px;
}

/* SERVICES HOME */

.services{
  padding:58px 0;
}

.services h2{
  font-size:2rem;
  margin-bottom:28px;
}

.service-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:22px;
}

.service-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  padding:24px;
  box-shadow:var(--shadow-soft);
  transition:0.18s ease;
}

.service-card:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow-card);
}

.service-card h3{
  font-size:1.05rem;
  margin-bottom:10px;
}

.service-card p{
  color:var(--muted);
  margin-bottom:12px;
}

.service-card ul{
  padding-left:20px;
  margin-bottom:14px;
}

.service-card ul li{
  margin-bottom:5px;
}

/* AVIS SECTION */

.avis{
  padding:60px 0;
  background:var(--bg-alt);
}

.avis h2{
  font-size:2rem;
  margin-bottom:10px;
  text-align:center;
}

.avis .section-subtitle{
  text-align:center;
  max-width:760px;
  margin:0 auto 24px auto;
}

.elfsight-app-3ba6d376-b759-4222-89b0-dbc54ea997a3{
  margin-top:20px;
}

.avis .btn-primary{
  margin-top:20px;
}

/* ZONE */

.zone{
  padding:60px 0;
}

.zone h2{
  font-size:2rem;
  margin-bottom:12px;
}

.zone p{
  max-width:900px;
  color:var(--text);
  font-size:1rem;
}

.cities{
  margin:14px 0;
  font-weight:500;
  color:var(--muted)!important;
}

/* CTA HOME */

.cta{
  padding:64px 0 76px;
  text-align:center;
}

.cta h2{
  font-size:2rem;
  margin-bottom:10px;
}

.cta p{
  color:var(--muted);
  max-width:720px;
  margin:0 auto 22px auto;
}

.cta-buttons{
  margin-top:8px;
  display:flex;
  justify-content:center;
  gap:16px;
  flex-wrap:wrap;
}

/* GENERIC SECTIONS */

.section{
  padding:56px 0;
}

.section-alt{
  background:var(--bg-alt);
}

.section h2{
  font-size:2rem;
  margin-bottom:10px;
}

.section-subtitle{
  color:var(--muted);
  margin-bottom:22px;
  max-width:780px;
}

/* GENERIC CARDS */

.cards-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:20px;
}

.card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  padding:22px;
  box-shadow:var(--shadow-soft);
  transition:0.18s ease;
}

.card:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow-card);
}

.card h3{
  font-size:1.05rem;
  margin-bottom:8px;
}

.card p{
  color:var(--muted);
}

/* TARIFS HERO */

.tarifs-hero{
  padding:58px 0 34px;
  background:linear-gradient(to bottom,#ffffff,#f5f7fc);
}

.tarifs-hero-inner{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:24px;
  flex-wrap:wrap;
}

.tarifs-badge{
  display:inline-flex;
  padding:6px 12px;
  border-radius:999px;
  background:#f1f5ff;
  border:1px solid #d4e1ff;
  color:var(--accent);
  font-size:0.82rem;
  font-weight:600;
  margin-bottom:12px;
}

.tarifs-hero h1{
  font-size:2.35rem;
  line-height:1.15;
  margin-bottom:10px;
}

.tarifs-subtitle{
  color:var(--muted);
  max-width:760px;
}

.tarifs-hero-tag{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.tarifs-hero-tag span{
  background:#fff;
  border:1px solid var(--border);
  border-radius:999px;
  padding:8px 12px;
  font-size:0.85rem;
  color:var(--muted);
}

/* TARIFS GRID */

.pricing-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:22px;
}

.pricing-card{
  background:#fff;
  border-radius:var(--radius-lg);
  border:1px solid var(--border);
  padding:22px;
  box-shadow:var(--shadow-soft);
  transition:0.18s ease;
}

.pricing-card:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow-card);
}

.pricing-header{
  margin-bottom:12px;
}

.pricing-header h3{
  font-size:1.12rem;
  margin-top:8px;
}

.pill{
  display:inline-flex;
  align-items:center;
  border-radius:999px;
  border:1px solid var(--border);
  background:#f7f9ff;
  color:var(--muted);
  padding:5px 10px;
  font-size:0.8rem;
}

.pricing-table{
  width:100%;
  border-collapse:collapse;
  font-size:0.98rem;
}

.pricing-table td{
  padding:6px 0;
  vertical-align:top;
}

.pricing-table td:first-child{
  padding-right:14px;
}

.price{
  font-weight:700;
  text-align:right;
  white-space:nowrap;
}

.details{
  font-size:0.84rem;
  color:var(--muted);
  font-style:italic;
  padding-top:0;
}

.pricing-note{
  font-size:0.8rem;
  color:var(--muted);
  margin-top:8px;
}

.tarifs-note{
  max-width:920px;
  margin:34px auto 0 auto;
  text-align:center;
  color:var(--muted);
  line-height:1.7;
}

.tarifs-cta-wrap{
  padding:78px 0 82px;
}

.tarifs-cta-box{
  max-width:820px;
  margin:0 auto;
  text-align:center;
}

.tarifs-cta-box h2{
  font-size:2rem;
  line-height:1.2;
  margin-bottom:14px;
}

.tarifs-cta-box p{
  max-width:720px;
  margin:0 auto 24px auto;
  color:var(--muted);
  line-height:1.7;
  text-align:center;
}

.tarifs-cta-box .btn-primary{
  display:inline-flex;
  margin:0 auto;
}

/* FOOTER */

.footer{
  border-top:1px solid var(--border);
  background:#fff;
  padding:20px 0;
}

.footer-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px;
  align-items:center;
  font-size:0.84rem;
  color:var(--muted);
}

.footer-brand{
  font-weight:700;
  color:var(--text);
}

.footer-center{
  text-align:center;
}

.footer-links{
  text-align:right;
  display:flex;
  justify-content:flex-end;
  gap:14px;
}

/* PAGE AVIS */

.hero-light{
  background:linear-gradient(to bottom,#ffffff,#f5f7fc);
}

.hero-text h1{
  font-size:2.4rem;
  line-height:1.15;
  margin-bottom:14px;
}

.hero-subtitle{
  color:var(--muted);
  margin-bottom:20px;
}

.hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-bottom:18px;
}

.hero-badges{
  list-style:none;
  color:var(--muted);
}

.hero-badges li{
  margin-bottom:6px;
}

.hero-card-light{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius-xl);
  padding:26px;
  box-shadow:var(--shadow-card);
}

.hero-card-light h2{
  margin-bottom:10px;
}

.hero-card-light p{
  color:var(--muted);
  margin-bottom:12px;
}

.hero-list{
  padding-left:20px;
  margin-bottom:18px;
}

.hero-list li{
  margin-bottom:6px;
}

/* CONTACT */

.contact-form{
max-width:700px;
margin:30px auto 0;
display:flex;
flex-direction:column;
gap:14px;
}

.form-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:14px;
}

.contact-form input,
.contact-form textarea{
padding:12px 14px;
border-radius:10px;
border:1px solid var(--border);
font-family:inherit;
font-size:0.95rem;
}

.contact-form textarea{
resize:vertical;
}

.contact-form button{
align-self:flex-start;
}

/* PC RECONDITIONNES */

.pc-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:24px;
margin-top:30px;
}

.pc-card{
background:white;
border:1px solid var(--border);
border-radius:var(--radius-lg);
padding:20px;
box-shadow:var(--shadow-soft);
text-align:center;
}

.pc-card img{
border-radius:12px;
margin-bottom:14px;
}

.pc-card h3{
margin-bottom:6px;
font-size:1.1rem;
}

.pc-specs{
color:var(--muted);
font-size:0.9rem;
margin-bottom:8px;
}

.pc-desc{
font-size:0.9rem;
margin-bottom:12px;
color:var(--muted);
}

.pc-price{
font-size:1rem;
margin-bottom:14px;
}

.pc-price strong{
font-size:1.2rem;
color:var(--accent);
}

@media(max-width:900px){

.pc-grid{
grid-template-columns:1fr;
}

}

/* RESPONSIVE */

@media (max-width:1024px){
  .service-grid,
  .cards-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media (max-width:900px){
  .hero-grid,
  .pricing-grid,
  .footer-grid{
    grid-template-columns:1fr;
  }

  .hero{
    padding-top:50px;
  }

  .hero-left h1,
  .hero-text h1{
    font-size:2.2rem;
  }

  .tarifs-hero h1{
    font-size:2rem;
  }

  .service-grid,
  .cards-grid{
    grid-template-columns:1fr;
  }

  .footer-links{
    justify-content:flex-start;
    text-align:left;
  }

  .footer-center{
    text-align:left;
  }
}

@media (max-width:720px){
  .main-nav{
    display:none;
  }

  .logo{
    height:40px;
  }

  .brand-name{
    font-size:0.92rem;
  }

  .brand-tagline{
    font-size:0.72rem;
  }

  .hero-left h1,
  .hero-text h1{
    font-size:1.85rem;
  }

  .services h2,
  .section h2,
  .zone h2,
  .cta h2,
  .tarifs-cta-box h2{
    font-size:1.65rem;
  }

  .btn-primary,
  .btn-secondary{
    width:100%;
  }

  .hero-buttons,
  .hero-actions,
  .cta-buttons{
    flex-direction:column;
  }

  .container{
    padding:0 16px;
  }
}

/* CONTACT FORM ADVANCED */

.contact-form{
  max-width:760px;
  margin:30px auto 0;
  display:flex;
  flex-direction:column;
  gap:14px;
}

.form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}

.contact-form input,
.contact-form textarea{
  width:100%;
  padding:14px 16px;
  border-radius:12px;
  border:1px solid var(--border);
  background:#fff;
  font-family:inherit;
  font-size:0.96rem;
  color:var(--text);
  box-shadow:var(--shadow-soft);
  transition:all .18s ease;
}

.contact-form input:focus,
.contact-form textarea:focus{
  outline:none;
  border-color:var(--accent);
  box-shadow:0 0 0 3px rgba(30,144,255,0.12);
}

.contact-form textarea{
  resize:vertical;
  min-height:160px;
}

.contact-form button{
  align-self:flex-start;
}

/* Messages formulaire */

.form-alert{
  max-width:760px;
  margin:0 auto 20px auto;
  padding:14px 16px;
  border-radius:12px;
  font-weight:500;
  font-size:0.95rem;
}

.form-alert-success{
  background:rgba(34,197,94,0.10);
  color:#166534;
  border:1px solid rgba(34,197,94,0.25);
}

.form-alert-error{
  background:rgba(239,68,68,0.10);
  color:#991b1b;
  border:1px solid rgba(239,68,68,0.25);
}

/* Responsive formulaire */

@media (max-width:720px){

  .form-grid{
    grid-template-columns:1fr;
  }

  .contact-form button{
    width:100%;
    align-self:stretch;
  }

}