/* ============================================
   IS COM — Feuille de style principale
   Charte : #2f69b1 / #000 / #fff
   Typo : Montserrat — Thème BLANC
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');

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

:root {
  --blue:       #2f69b1;
  --blue-light: #4a82cc;
  --blue-dark:  #1d4f8a;
  --blue-bg:    #eef4fc;
  --black:      #0a0a0a;
  --gray:       #888888;
  --gray-light: #f5f5f5;
  --gray-mid:   #e4e4e4;
  --gray-dark:  #444444;
  --text:       #111111;
  --text-2:     #555555;
  --white:      #ffffff;
  --bg:         #ffffff;
  --bg-alt:     #f8f9fb;

  --font-main: 'Montserrat', sans-serif;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --radius:     4px;
  --radius-lg:  12px;
  --max-width:  1200px;
  --section-py: 50px;
  --shadow-sm:  0 2px 12px rgba(0,0,0,0.06);
  --shadow-md:  0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg:  0 20px 60px rgba(47,105,177,0.14);
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-main); background: var(--bg); color: var(--text); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 40px; }

/* --- ANIMATIONS --- */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s var(--transition), transform 0.8s var(--transition); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* --- NAVBAR --- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 20px 0;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition), padding var(--transition);
}
.navbar.scrolled { border-bottom-color: var(--gray-mid); box-shadow: 0 2px 20px rgba(0,0,0,0.07); padding: 14px 0; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo img { height: 32px; width: auto; }
.nav-menu { display: flex; align-items: center; gap: 36px; }
.nav-menu a { font-size: 12px; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; color: var(--gray-dark); transition: color var(--transition); position: relative; }
.nav-menu a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--blue); transition: width var(--transition); }
.nav-menu a:hover { color: var(--blue); }
.nav-menu a:hover::after { width: 100%; }
.nav-cta { background: var(--blue) !important; color: var(--white) !important; padding: 10px 22px; border-radius: var(--radius); font-weight: 700 !important; transition: background var(--transition), transform 0.2s, box-shadow 0.2s !important; }
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--blue-dark) !important; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(47,105,177,0.3) !important; }
.nav-burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.nav-burger span { display: block; width: 24px; height: 2px; background: var(--black); transition: var(--transition); }

/* --- BOUTONS --- */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 16px 36px; font-family: var(--font-main); font-size: 13px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; border-radius: var(--radius); transition: all 0.3s ease; cursor: pointer; }
.btn-primary { background: var(--blue); color: var(--white); border: 2px solid var(--blue); }
.btn-primary:hover { background: var(--blue-dark); border-color: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(47,105,177,0.3); }
.btn-outline { background: transparent; color: var(--blue); border: 2px solid var(--blue); }
.btn-outline:hover { background: var(--blue); color: var(--white); transform: translateY(-2px); }
.btn-dark { background: var(--black); color: var(--white); border: 2px solid var(--black); }
.btn-dark:hover { background: #333; border-color: #333; transform: translateY(-2px); }

/* --- LABELS / TITRES --- */
.section-label { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--blue); margin-bottom: 14px; }
.section-title { font-size: clamp(34px, 5vw, 58px); font-weight: 900; line-height: 1.05; letter-spacing: -0.025em; color: var(--text); }
.section-title span { color: var(--blue); }
.section-subtitle { font-size: 17px; font-weight: 400; color: var(--text-2); line-height: 1.7; max-width: 540px; margin-top: 14px; }

/* --- HERO --- */
.hero { position: relative; min-height: 80vh; display: flex; align-items: center; background: var(--white); overflow: hidden; padding: 60px 0; }
.hero-bg-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(47,105,177,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(47,105,177,0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 85% 85% at 65% 50%, black 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 85% 85% at 65% 50%, black 20%, transparent 80%);
}
.hero-shape { position: absolute; right: -100px; top: 50%; transform: translateY(-50%); width: 50vw; max-width: 750px; aspect-ratio: 1; background: var(--blue-bg); border-radius: 50%; }
.hero-shape-sm { position: absolute; right: 80px; top: 15%; width: 160px; height: 160px; background: var(--blue); border-radius: 50%; opacity: 0.07; }
.hero-content { position: relative; z-index: 2; max-width: 860px; padding-top: 0; }
.hero-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; color: var(--blue); margin-bottom: 24px; display: flex; align-items: center; gap: 12px; }
.hero-eyebrow::before { content: ''; display: block; width: 30px; height: 2px; background: var(--blue); }
.hero-title { font-size: clamp(44px, 6.5vw, 82px); font-weight: 900; line-height: 1.0; letter-spacing: -0.03em; color: var(--text); margin-bottom: 24px; }
.hero-title .accent { color: var(--blue); }
.hero-desc { font-size: 18px; font-weight: 400; color: var(--text-2); line-height: 1.75; max-width: 520px; margin-bottom: 40px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-scroll { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--gray); font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; animation: scrollBounce 2s ease-in-out infinite; }
.hero-scroll-line { width: 1px; height: 48px; background: linear-gradient(to bottom, var(--blue), transparent); }
@keyframes scrollBounce { 0%,100%{transform:translateX(-50%) translateY(0);opacity:.5} 50%{transform:translateX(-50%) translateY(8px);opacity:1} }

/* --- PROBLÈME / SOLUTION --- */
.section-problem { padding: var(--section-py) 0; background: var(--bg-alt); }
.problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; margin-top: 64px; }
.problem-col-title { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 24px; }
.problem-col-title.prob { color: #c0392b; }
.problem-col-title.sol { color: var(--blue); }
.problem-col-header { min-height: 160px; display: flex; flex-direction: column; justify-content: flex-end; margin-bottom: 24px; }
.problem-list, .solution-list { display: flex; flex-direction: column; gap: 14px; }

.problem-item { display: flex; align-items: flex-start; gap: 14px; padding: 22px; border-radius: var(--radius-lg); background: var(--white); border: 1px solid var(--gray-mid); box-shadow: var(--shadow-sm); transition: box-shadow 0.3s; }
.problem-item:hover { box-shadow: var(--shadow-md); }
.problem-icon { width: 36px; height: 36px; border-radius: 50%; background: #fef0ef; border: 1px solid #fdd; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 800; color: #c0392b; flex-shrink: 0; }
.problem-text { font-size: 14px; font-weight: 500; color: var(--text-2); line-height: 1.6; padding-top: 6px; }

.solution-item { display: flex; align-items: flex-start; gap: 14px; padding: 22px; border-radius: var(--radius-lg); background: var(--white); border: 1px solid rgba(47,105,177,0.15); box-shadow: var(--shadow-sm); transition: box-shadow 0.3s, border-color 0.3s; }
.solution-item:hover { box-shadow: var(--shadow-lg); border-color: rgba(47,105,177,0.35); }
.solution-icon { width: 36px; height: 36px; border-radius: 50%; background: var(--blue-bg); border: 1px solid rgba(47,105,177,0.25); display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 800; color: var(--blue); flex-shrink: 0; }
.solution-text { font-size: 14px; font-weight: 500; color: var(--text); line-height: 1.6; padding-top: 6px; }

/* --- SERVICES --- */
.section-services { padding: var(--section-py) 0; background: var(--white); }
.services-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; gap: 32px; flex-wrap: wrap; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: start; }
.service-card { padding: 36px 32px; background: var(--white); border: 1px solid var(--gray-mid); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s; position: relative; overflow: hidden; }
.service-card::before { content:''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--blue); transform: scaleX(0); transition: transform 0.4s ease; transform-origin: left; }
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); border-color: rgba(47,105,177,0.2); }
.service-card:hover::before { transform: scaleX(1); }
.service-card.featured { background: var(--blue); border-color: var(--blue); grid-column: span 2; }
.service-card.featured::before { background: rgba(255,255,255,0.35); }
.service-card.featured .service-number { color: rgba(255,255,255,0.4); }
.service-card.featured .service-icon-box { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.25); }
.service-card.featured .service-title { color: var(--white); }
.service-card.featured .service-desc { color: rgba(255,255,255,0.8); }
.service-card.featured .service-link { color: rgba(255,255,255,0.9); }
.service-number { font-size: 10px; font-weight: 700; letter-spacing: 0.2em; color: var(--gray); margin-bottom: 24px; }
.service-icon-box { width: 50px; height: 50px; border-radius: var(--radius); background: var(--blue-bg); border: 1px solid rgba(47,105,177,0.15); display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 20px; }
.service-title { font-size: 19px; font-weight: 800; color: var(--text); margin-bottom: 10px; line-height: 1.2; }
.service-desc { font-size: 14px; color: var(--text-2); line-height: 1.7; margin-bottom: 24px; }
.service-link { font-size: 11px; font-weight: 700; color: var(--blue); letter-spacing: 0.08em; text-transform: uppercase; display: flex; align-items: center; gap: 6px; transition: gap 0.3s; }
.service-card:hover .service-link { gap: 10px; }

/* --- STATS --- */
.section-stats { padding: 72px 0; background: var(--blue); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); text-align: center; position: relative; }
.stat-item { padding: 36px 20px; border-right: 1px solid rgba(255,255,255,0.2); position: relative; }
.stat-item:last-child { border-right: none; }
.stat-number { font-size: clamp(38px, 5vw, 60px); font-weight: 900; color: var(--white); letter-spacing: -0.03em; line-height: 1; margin-bottom: 10px; }
.stat-label { font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.65); letter-spacing: 0.1em; text-transform: uppercase; }

/* --- PORTFOLIO --- */
.section-portfolio { padding: var(--section-py) 0; background: var(--bg-alt); }
.portfolio-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; gap: 32px; flex-wrap: wrap; }
.portfolio-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
.portfolio-item { display: block; background: var(--dark-3); border-radius: var(--radius-lg); overflow: hidden; position: relative; cursor: pointer; box-shadow: var(--shadow-sm); transition: box-shadow 0.3s, transform 0.3s; border: 1px solid var(--gray-mid); text-decoration: none; color: inherit; font-size: 0; line-height: 0; }
.portfolio-item:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.portfolio-item:nth-child(1) { grid-column: span 8; }
.portfolio-item:nth-child(2) { grid-column: span 4; }
.portfolio-item:nth-child(3) { grid-column: span 4; }
.portfolio-item:nth-child(4) { grid-column: span 8; }
.portfolio-item img { display: block; width: 100%; height: 100%; object-fit: cover; }
.portfolio-item:nth-child(1) img, .portfolio-item:nth-child(4) img { aspect-ratio: 16/7; }
.portfolio-item:nth-child(2) img, .portfolio-item:nth-child(3) img { aspect-ratio: 3/4; }
.portfolio-tag { font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue); background: var(--blue-bg); padding: 5px 12px; border-radius: 100px; border: 1px solid rgba(47,105,177,0.2); }
.portfolio-ph-title { font-size: 13px; font-weight: 600; color: var(--gray); }
.portfolio-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 50%, transparent 100%); display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end; opacity: 0; transition: opacity 0.3s; padding: 24px; }
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay-title { font-size: 18px; font-weight: 800; color: var(--white); line-height: 1.2; margin-bottom: 6px; font-family: var(--font-main); }
.portfolio-overlay-desc { font-size: 13px; color: rgba(255,255,255,0.8); line-height: 1.5; font-family: var(--font-main); }

/* --- TESTIMONIALS --- */
.section-testimonials { padding: var(--section-py) 0; background: var(--white); }
.testimonials-header { text-align: center; margin-bottom: 48px; }
.testimonials-header .section-subtitle { margin: 14px auto 0; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial-card { padding: 32px; background: var(--white); border: 1px solid var(--gray-mid); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s; }
.testimonial-card:hover { box-shadow: var(--shadow-lg); border-color: rgba(47,105,177,0.2); transform: translateY(-4px); }
.testimonial-stars { color: #e8a000; font-size: 15px; margin-bottom: 18px; letter-spacing: 2px; }
.testimonial-text { font-size: 14px; color: var(--text-2); line-height: 1.8; font-style: italic; margin-bottom: 24px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; padding-top: 18px; border-top: 1px solid var(--gray-mid); }
.testimonial-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--blue); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; color: var(--white); flex-shrink: 0; }
.testimonial-name { font-size: 14px; font-weight: 700; color: var(--text); }
.testimonial-role { font-size: 12px; color: var(--gray); margin-top: 2px; }

/* --- CTA FINAL --- */
.section-cta { padding: var(--section-py) 0; background: var(--black); text-align: center; position: relative; overflow: hidden; }
.cta-glow { position: absolute; width: 700px; height: 400px; background: radial-gradient(ellipse, rgba(47,105,177,0.2) 0%, transparent 70%); top: 50%; left: 50%; transform: translate(-50%,-50%); pointer-events: none; }
.cta-title { font-size: clamp(34px, 5vw, 66px); font-weight: 900; line-height: 1.05; letter-spacing: -0.03em; color: var(--white); margin-bottom: 18px; position: relative; }
.cta-subtitle { font-size: 16px; color: rgba(255,255,255,0.45); margin-bottom: 40px; position: relative; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }
.whatsapp-btn { display: inline-flex; align-items: center; gap: 10px; padding: 16px 36px; background: #25d366; color: var(--white); font-family: var(--font-main); font-size: 13px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; border-radius: var(--radius); transition: all 0.3s; }
.whatsapp-btn:hover { background: #1da851; transform: translateY(-2px); }

/* --- FOOTER --- */
.footer { background: var(--black); border-top: 1px solid rgba(255,255,255,0.06); padding: 72px 0 36px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 56px; margin-bottom: 56px; }
.footer-brand img { height: 28px; margin-bottom: 18px; }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.38); line-height: 1.7; margin-bottom: 22px; }
.footer-social { display: flex; gap: 10px; }
.social-icon { width: 36px; height: 36px; border-radius: var(--radius); border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.3); transition: all 0.3s; }
.social-icon:hover { border-color: var(--blue); color: var(--white); background: rgba(47,105,177,0.15); }
.footer-col-title { font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.22); margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 11px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.48); transition: color 0.3s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 26px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.18); }
.footer-legal { display: flex; gap: 22px; }
.footer-legal a { font-size: 12px; color: rgba(255,255,255,0.18); transition: color 0.3s; }
.footer-legal a:hover { color: rgba(255,255,255,0.55); }

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .container { padding: 0 24px; }
  .services-grid { grid-template-columns: 1fr !important; }
  .service-card { grid-column: span 1 !important; padding: 28px 24px; }
  .service-card.featured { grid-column: 1 / -1 !important; }
  .service-card[style] { grid-column: 1 / -1 !important; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); position: relative; }
  .stats-grid::before {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    left: 50%;
    width: 1px;
    background: rgba(255,255,255,0.2);
    z-index: 1;
  }
  .stats-grid::after {
    content: '';
    position: absolute;
    left: 0; right: 0;
    top: 50%;
    height: 1px;
    background: rgba(255,255,255,0.2);
    z-index: 1;
  }
  .stat-item { border-right: none !important; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .problem-grid { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  :root { --section-py: 80px; }

  /* BURGER VISIBLE, MENU ET CTA CACHÉS */
  .nav-menu { display: none !important; }
  .nav-cta { display: none !important; }
  .nav-burger { display: flex; position: relative; z-index: 1200; }

  /* MENU OUVERT - PLEIN ÉCRAN OPAQUE */
  .nav-menu.open {
    display: flex !important;
    flex-direction: column;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: #ffffff !important;
    z-index: 1100 !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
    list-style: none !important;
  }

  .nav-menu.open li {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
  }
  .nav-menu.open li:first-child {
    border-top: 1px solid #f0f0f0;
  }

  .nav-menu.open a {
    display: block !important;
    width: 100% !important;
    padding: 22px 40px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #111111 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    text-align: center !important;
    background: transparent !important;
    border: none !important;
    transition: background 0.2s, color 0.2s !important;
  }
  .nav-menu.open a:hover {
    background: #f8f9fb !important;
    color: #2f69b1 !important;
  }
  .nav-menu.open a::after { display: none !important; }

  /* BOUTON DEVIS DANS LE MENU MOBILE */
  .nav-menu.open .nav-cta {
    display: block !important;
    margin: 24px auto 0 !important;
    padding: 16px 48px !important;
    font-size: 14px !important;
    border-radius: 4px !important;
    width: auto !important;
    text-align: center !important;
    background: #2f69b1 !important;
    color: #ffffff !important;
  }
  .nav-menu.open .nav-cta:hover {
    background: #1d4f8a !important;
  }

  /* RESTE DU RESPONSIVE */
  .hero-title { font-size: clamp(34px, 9vw, 52px); }
  .hero-shape, .hero-shape-sm { display: none; }
  .services-grid { grid-template-columns: 1fr !important; }
  .service-card { grid-column: span 1 !important; padding: 28px 24px; }
  .service-card.featured { grid-column: span 1 !important; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr !important; gap: 12px; }
  .portfolio-item { grid-column: span 1 !important; width: 100%; }
  .portfolio-item img { aspect-ratio: 16/9 !important; width: 100%; object-fit: cover; }
  .portfolio-overlay { opacity: 1 !important; background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.25) 55%, transparent 100%) !important; padding: 16px !important; }
  .portfolio-overlay-title { font-size: 15px !important; }
  .portfolio-overlay-desc { font-size: 12px !important; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .services-header, .portfolio-header { flex-direction: column; align-items: flex-start; }
  .cta-actions { flex-direction: column; align-items: center; }
}
