/* =============================================================
   MEHDI MEZZAZ — SITE PERSONNEL
   Style premium, sobre, élégant
   ============================================================= */

/* ——— RESET & BASE ——— */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

:root {
  --ivory:       #FAFAF7;
  --beige:       #F4EFE6;
  --beige-dark:  #EDE7DC;
  --border:      #DDD7CC;
  --gold:        #A67C3D;
  --gold-light:  #C8A96E;
  --navy:        #1A1F3A;
  --dark:        #1C1C1E;
  --gray:        #5E5E6E;
  --gray-light:  #9E9EAA;
  --white:       #FFFFFF;

  --font-title:  'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body:   'Inter', system-ui, -apple-system, sans-serif;

  --transition:  0.3s ease;
  --radius:      4px;
  --shadow:      0 4px 28px rgba(0, 0, 0, 0.08);
  --shadow-lg:   0 12px 48px rgba(0, 0, 0, 0.13);
}

body {
  font-family: var(--font-body);
  background-color: var(--ivory);
  color: var(--dark);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

/* ——— CONTAINER ——— */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ——— TYPOGRAPHIE ——— */
h1, h2, h3 {
  font-family: var(--font-title);
  font-weight: 400;
  line-height: 1.15;
  color: var(--navy);
}

h1 { font-size: clamp(3.2rem, 8vw, 6.5rem); font-weight: 300; letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 2.9rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.45rem); }

p {
  color: var(--gray);
  line-height: 1.85;
}

/* ——— SECTION LABEL ——— */
.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.65rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  margin-top: 0.4rem;
}

.section-intro {
  margin-top: 1rem;
  font-size: 1rem;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

/* ——— BOUTONS ——— */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  font-family: var(--font-body);
  font-size: 0.825rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  border: none;
  transition: all var(--transition);
}

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

.btn-primary:hover {
  background-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background-color: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}

.btn-outline:hover {
  background-color: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

/* ——— FADE-IN SCROLL ——— */
.fade-in {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}


/* =============================================================
   HEADER
   ============================================================= */
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(250, 250, 247, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}

#header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  font-family: var(--font-title);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

#nav ul {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

#nav a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 2px;
}

#nav a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width var(--transition);
}

#nav a:hover,
#nav a.active {
  color: var(--navy);
}

#nav a:hover::after,
#nav a.active::after {
  width: 100%;
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
}

.burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--navy);
  transition: all var(--transition);
}

.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }


/* =============================================================
   HERO
   ============================================================= */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 72px;
  background-color: var(--ivory);
  position: relative;
  overflow: hidden;
}

/* fond beige côté droit */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 46%;
  height: 100%;
  background: var(--beige);
  z-index: 0;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.hero-text {
  padding-right: 1.5rem;
}

.hero-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.hero h1 {
  color: var(--navy);
  margin-bottom: 1.5rem;
  line-height: 1.0;
}

.hero-title {
  font-family: var(--font-title);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 500;
  color: var(--navy);
  line-height: 1.45;
  margin-bottom: 1.25rem;
}

.hero-subtitle {
  font-size: 0.925rem;
  color: var(--gray);
  line-height: 1.9;
  margin-bottom: 2rem;
  max-width: 460px;
}

.hero-quote {
  font-family: var(--font-title);
  font-style: italic;
  font-size: 1rem;
  color: var(--gold);
  border-left: 2px solid var(--gold-light);
  padding-left: 1.25rem;
  margin-bottom: 2.5rem;
  font-weight: 400;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-photo {
  position: relative;
  z-index: 1;
}

.hero-photo img {
  width: 100%;
  max-width: 460px;
  height: 580px;
  object-fit: cover;
  object-position: top center;
  border-radius: 2px;
  box-shadow: var(--shadow-lg);
  margin-left: auto;
}

/* indicateur de défilement */
.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero-scroll-hint span {
  display: block;
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
  0%   { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50%  { opacity: 1; transform: scaleY(1); transform-origin: top; }
  100% { opacity: 0; transform: scaleY(1); transform-origin: top; }
}


/* =============================================================
   À PROPOS
   ============================================================= */
.about {
  padding: 8rem 0;
  background-color: var(--white);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 6rem;
  align-items: center;
}

.about-photo {
  position: relative;
}

.about-photo img {
  width: 100%;
  height: 570px;
  object-fit: cover;
  object-position: top center;
  border-radius: 2px;
  box-shadow: var(--shadow);
}

.about-photo-accent {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  width: 65%;
  height: 65%;
  border: 2px solid var(--gold-light);
  border-radius: 2px;
  z-index: -1;
  opacity: 0.35;
}

.about-text h2 {
  margin: 0.6rem 0 1.5rem;
}

.about-text p {
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-top: 2rem;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--navy);
}

.value-icon {
  color: var(--gold);
  font-size: 0.45rem;
  flex-shrink: 0;
}


/* =============================================================
   CHIFFRES / REPÈRES
   ============================================================= */
.stats {
  background-color: var(--navy);
  padding: 5.5rem 0;
}

.stats-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.stat-item {
  text-align: center;
  flex: 1;
}

.stat-number {
  display: block;
  font-family: var(--font-title);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-plus {
  color: var(--gold-light);
}

.stat-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 0.75rem;
  line-height: 1.5;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
}


/* =============================================================
   EXPERTISES
   ============================================================= */
.expertises {
  padding: 8rem 0;
  background-color: var(--ivory);
}

.expertises-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.expertise-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.25rem 2rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.expertise-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--gold);
  transition: height 0.35s ease;
}

.expertise-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
  border-color: transparent;
}

.expertise-card:hover::before {
  height: 100%;
}

.expertise-icon {
  width: 38px;
  height: 38px;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.expertise-icon svg {
  width: 100%;
  height: 100%;
}

.expertise-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  color: var(--navy);
}

.expertise-card p {
  font-size: 0.875rem;
  line-height: 1.8;
}


/* =============================================================
   PARCOURS / TIMELINE
   ============================================================= */
.timeline-section {
  padding: 8rem 0;
  background-color: var(--beige);
}

.timeline {
  position: relative;
  padding-left: 3rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold), var(--border), transparent);
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-marker {
  position: absolute;
  left: -2.82rem;
  top: 8px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--beige);
  border: 2px solid var(--gold);
  transition: background var(--transition);
}

.timeline-item:hover .timeline-marker {
  background: var(--gold);
}

.timeline-content {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 2.25rem;
  transition: box-shadow var(--transition);
}

.timeline-item:hover .timeline-content {
  box-shadow: var(--shadow);
}

.timeline-meta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}

.timeline-period {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gold);
  text-transform: uppercase;
}

.timeline-location {
  font-size: 0.75rem;
  color: var(--gray-light);
  letter-spacing: 0.05em;
}

.timeline-role {
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 0.2rem;
}

.timeline-company {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gray-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}

.timeline-desc {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.timeline-points {
  padding-left: 0;
}

.timeline-points li {
  font-size: 0.85rem;
  color: var(--gray);
  padding: 0.3rem 0 0.3rem 1.25rem;
  position: relative;
  line-height: 1.65;
}

.timeline-points li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold-light);
}


/* =============================================================
   VISION
   ============================================================= */
.vision {
  padding: 8rem 0;
  background-color: var(--white);
}

.vision-inner {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: 6rem;
  align-items: center;
}

.vision-photo img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: top center;
  border-radius: 2px;
  box-shadow: var(--shadow);
}

.vision-text h2 {
  margin: 0.6rem 0 1.5rem;
}

.vision-text p {
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
}

.vision-text blockquote {
  font-family: var(--font-title);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--navy);
  border-left: 2px solid var(--gold);
  padding: 1.1rem 1.5rem;
  margin-top: 2rem;
  background: var(--beige);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-weight: 400;
  line-height: 1.65;
}


/* =============================================================
   FORMATION, LANGUES & OUTILS
   ============================================================= */
.background {
  padding: 8rem 0;
  background-color: var(--beige-dark);
}

.background-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.background-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
}

.background-card-icon {
  width: 34px;
  height: 34px;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.background-card-icon svg {
  width: 100%;
  height: 100%;
}

.background-card h3 {
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

/* Formation */
.formation-degree {
  font-family: var(--font-title);
  font-weight: 500;
  color: var(--navy);
  font-size: 1.1rem;
}

.formation-school {
  color: var(--gray);
  font-size: 0.9rem;
  margin-top: 0.35rem;
}

.formation-year {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0.6rem;
}

/* Langues */
.lang-list {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.lang-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lang-name {
  font-size: 0.9rem;
  color: var(--navy);
  font-weight: 500;
}

.lang-dots {
  display: flex;
  gap: 5px;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--border);
  border: 1.5px solid var(--border);
}

.dot.active {
  background: var(--gold);
  border-color: var(--gold);
}

/* Outils */
.tools-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.tools-list li {
  font-size: 0.875rem;
  color: var(--gray);
  padding-left: 1.1rem;
  position: relative;
  line-height: 1.55;
}

.tools-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.65rem;
  top: 3px;
}


/* =============================================================
   CONTACT
   ============================================================= */
.contact {
  padding: 8rem 0;
  background-color: var(--ivory);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
}

.form-group input,
.form-group textarea {
  padding: 0.875rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--dark);
  transition: border-color var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-notice {
  font-size: 0.9rem;
  color: var(--gold);
  font-style: italic;
  min-height: 1.4em;
  padding: 0.5rem 0;
  transition: color 0.2s;
}

.form-notice.success {
  color: #4caf7d;
  font-style: normal;
  font-weight: 500;
}

.form-notice.error {
  color: #e05252;
  font-style: normal;
}

.contact-aside {
  height: 100%;
}

.contact-card {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 3rem 2.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 280px;
}

.contact-card h3 {
  font-family: var(--font-title);
  font-size: 2rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.contact-card p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.875rem;
  margin-bottom: 2.5rem;
}

.contact-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.contact-tags li {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.72rem;
  padding: 0.35rem 0.9rem;
  border-radius: 20px;
  letter-spacing: 0.05em;
  font-weight: 500;
}


/* =============================================================
   FOOTER
   ============================================================= */
.footer {
  background-color: var(--dark);
  padding: 3.5rem 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-logo {
  font-family: var(--font-title);
  font-size: 1.3rem;
  color: var(--white);
  font-weight: 400;
}

.footer-nav {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-nav a {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  transition: color var(--transition);
}

.footer-nav a:hover {
  color: var(--gold-light);
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.28);
  line-height: 1.5;
}


/* =============================================================
   RESPONSIVE — TABLETTE
   ============================================================= */
@media (max-width: 1024px) {
  .hero-inner {
    gap: 3rem;
  }

  .hero::before {
    width: 42%;
  }

  .about-inner {
    gap: 4rem;
  }

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

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

  .vision-inner {
    gap: 4rem;
  }
}


/* =============================================================
   RESPONSIVE — MOBILE
   ============================================================= */
@media (max-width: 768px) {

  /* Header */
  .burger {
    display: flex;
  }

  #nav {
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    background: var(--ivory);
    border-bottom: 1px solid var(--border);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.38s ease, padding 0.38s ease;
  }

  #nav.open {
    max-height: 420px;
    padding: 1.25rem 0;
  }

  #nav ul {
    flex-direction: column;
    gap: 0;
    align-items: stretch;
  }

  #nav ul li a {
    display: block;
    padding: 0.85rem 2rem;
    font-size: 0.85rem;
  }

  #nav a::after {
    display: none;
  }

  /* Hero */
  .hero::before {
    display: none;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-top: 3.5rem;
    padding-bottom: 4rem;
  }

  .hero-text {
    padding-right: 0;
    order: 2;
  }

  .hero-photo {
    order: 1;
  }

  .hero-photo img {
    height: 380px;
    max-width: 100%;
    margin: 0 auto;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  /* About */
  .about-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-photo img {
    height: 380px;
  }

  .about-photo-accent {
    display: none;
  }

  /* Stats */
  .stats-inner {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 2.5rem;
  }

  .stat-divider {
    display: none;
  }

  .stat-item {
    flex: none;
    width: calc(50% - 1rem);
  }

  /* Expertises */
  .expertises-grid {
    grid-template-columns: 1fr;
  }

  /* Timeline */
  .timeline {
    padding-left: 2rem;
  }

  .timeline-content {
    padding: 1.5rem;
  }

  /* Vision */
  .vision-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .vision-photo img {
    height: 340px;
  }

  /* Background */
  .background-grid {
    grid-template-columns: 1fr;
  }

  /* Contact */
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .contact-card {
    min-height: auto;
  }

  /* Footer */
  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .footer-nav {
    justify-content: center;
    gap: 1.25rem;
  }
}


/* =============================================================
   RESPONSIVE — PETIT MOBILE
   ============================================================= */
@media (max-width: 480px) {
  .container {
    padding: 0 1.25rem;
  }

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

  .hero-photo img {
    height: 300px;
  }

  .stat-item {
    width: 100%;
  }

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