  :root{
    --navy:#1B2A4A;
    --navy-dark:#111B33;
    --navy-border:#273A66;
    --gold:#E8A824;
    --gold-dark:#CE9317;
    --ink:#1B2A4A;
    --text-muted:#64748B;
    --text-light:#B9C4E0;
    --surface:#F8F9FC;
    --border:#E5E7EB;
    --white:#FFFFFF;
    --red:#EF4444;
    --blue:#3B82F6;
    --green:#10B981;
    --font-head:'Outfit',sans-serif;
    --font-body:'Manrope',sans-serif;
    --container:1440px;
    --container-wide:1440px;
    --pad-inline:clamp(20px, 5vw, 80px);
    --pad-block:clamp(48px, 8vw, 100px);
    --radius-lg:12px;
    --radius-md:8px;
    --shadow-card:0 4px 20px rgba(27,42,74,0.06);
    --shadow-card-hover:0 12px 32px rgba(27,42,74,0.12);
  }

  *,*::before,*::after{box-sizing:border-box;}
  html{scroll-behavior:smooth;}
  section[id], .card[id]{scroll-margin-top:96px;}
  body{
    margin:0;
    font-family:var(--font-body);
    color:var(--ink);
    background:var(--white);
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
    overflow-x:hidden;
  }
  h1,h2,h3,h4{font-family:var(--font-head);margin:0;color:var(--ink);}
  p{margin:0;}
  a{text-decoration:none;color:inherit;}
  ul{list-style:none;margin:0;padding:0;}
  button{font-family:inherit;cursor:pointer;border:none;background:none;color:inherit;}
  img,svg{display:block;max-width:100%;}
  .icon{width:1em;height:1em;display:inline-block;stroke:currentColor;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;flex-shrink:0;}

  .container{
    width:100%;
    max-width:var(--container);
    margin-inline:auto;
    padding-inline:var(--pad-inline);
  }
  .container-wide{max-width:var(--container-wide);}

  .section{padding-block:var(--pad-block);}

  .eyebrow{
    display:inline-flex;
    align-items:center;
    padding:6px 14px;
    background:rgba(232,168,36,0.10);
    border:1px solid var(--gold);
    border-radius:30px;
    color:var(--gold);
    font-family:var(--font-body);
    font-size:11px;
    font-weight:700;
    letter-spacing:.06em;
    text-transform:uppercase;
  }

  .section-head{
    max-width:720px;
    margin-inline:auto;
    text-align:center;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:16px;
    margin-bottom:clamp(36px,6vw,56px);
  }
  .section-head .eyebrow{margin-bottom:2px;}
  .section-title{
    font-size:clamp(1.6rem, 1.1rem + 2vw, 2.25rem);
    font-weight:800;
    line-height:1.2;
  }
  .section-title.light{color:var(--white);}
  .section-sub{
    font-size:15px;
    line-height:1.65;
    color:var(--text-muted);
  }
  .section-sub.light{color:var(--text-light);}

  /* ---------- Buttons ---------- */
  .btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    padding:14px 28px;
    border-radius:var(--radius-md);
    font-family:var(--font-body);
    font-size:15px;
    font-weight:700;
    white-space:nowrap;
    transition:transform .15s ease, background .15s ease, box-shadow .15s ease, opacity .15s ease;
  }
  .btn-primary{
    background:var(--gold);
    color:var(--navy);
  }
  .btn-primary:hover{background:var(--gold-dark);transform:translateY(-2px);box-shadow:0 10px 24px rgba(232,168,36,.35);}
  .btn-outline{
    background:transparent;
    color:var(--white);
    border:1px solid var(--navy-border);
    font-weight:600;
  }
  .btn-outline:hover{background:rgba(255,255,255,.06);border-color:#3B4C80;transform:translateY(-2px);}
  .btn-block{width:100%;}

  /* ---------- Preloader ---------- */
  body.preloader-active{overflow:hidden;}
  .preloader{
    position:fixed;
    inset:0;
    z-index:9999;
    background:var(--white);
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:24px;
    transition:opacity .5s ease, visibility .5s ease;
  }
  .preloader.is-hidden{opacity:0;visibility:hidden;pointer-events:none;}
  .preloader-logo{
    width:min(220px, 55vw);
    height:auto;
    animation:preloader-pulse 1.8s ease-in-out infinite;
  }
  .preloader-bar{
    width:180px;
    height:4px;
    border-radius:999px;
    background:var(--border);
    overflow:hidden;
  }
  .preloader-bar-fill{
    height:100%;
    width:0%;
    background:var(--gold);
    border-radius:999px;
  }
  .preloader-percent{
    font-family:var(--font-head);
    font-weight:800;
    font-size:18px;
    color:var(--navy);
    letter-spacing:.02em;
    min-width:48px;
    text-align:center;
  }
  @keyframes preloader-pulse{
    0%,100%{opacity:1;transform:scale(1);}
    50%{opacity:.75;transform:scale(.97);}
  }
  @media (prefers-reduced-motion:reduce){
    .preloader-logo{animation:none;}
  }

  /* ---------- Header ---------- */
  .site-header{
    position:sticky;
    top:0;
    z-index:100;
    background:var(--navy);
    border-bottom:1px solid var(--navy-border);
  }
  .nav-row{
    height:80px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;
  }
  .brand{
    display:inline-flex;
    align-items:center;
    gap:8px;
    font-family:var(--font-head);
    font-weight:800;
    font-size:22px;
    color:var(--white);
    flex-shrink:0;
  }
  .brand-logo{
    display:block;
    height:66px;
    width:auto;
    flex-shrink:0;
  }

  .nav-links{
    display:flex;
    align-items:center;
    gap:32px;
  }
  .nav-links a{
    color:var(--text-light);
    font-size:14px;
    font-weight:600;
    white-space:nowrap;
    transition:color .15s ease;
  }
  .nav-links a:hover{color:var(--white);}

  .nav-actions{
    display:flex;
    align-items:center;
    gap:16px;
  }
  .nav-actions .btn-primary{
    padding:10px 20px;
    font-size:13px;
  }

  .nav-toggle{
    display:none;
    width:40px;height:40px;
    align-items:center;justify-content:center;
    color:var(--white);
    border-radius:6px;
    flex-shrink:0;
  }
  .nav-toggle .icon{width:24px;height:24px;}
  .nav-toggle .icon-close{display:none;}
  .nav-toggle.is-open .icon-menu{display:none;}
  .nav-toggle.is-open .icon-close{display:block;}

  .mobile-panel{
    display:none;
    position:absolute;
    top:80px;left:0;right:0;
    background:var(--navy);
    border-bottom:1px solid var(--navy-border);
    padding:8px var(--pad-inline) 24px;
    flex-direction:column;
    gap:4px;
  }
  .mobile-panel.is-open{display:flex;}
  .mobile-panel a{
    color:var(--text-light);
    font-size:15px;
    font-weight:600;
    padding:12px 4px;
    border-bottom:1px solid var(--navy-border);
  }
  .mobile-panel .btn{margin-top:16px;}

  /* ---------- Hero ---------- */
  .hero{
    position:relative;
    overflow:hidden;
    background:linear-gradient(180deg,#1B2A4A 0%, #182747 100%);
    padding-top:clamp(56px, 12vw, 120px);
    padding-bottom:clamp(56px, 10vw, 100px);
    text-align:center;
  }
  .hero-inner{
    position:relative;
    z-index:3;
    max-width:960px;
    margin-inline:auto;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:24px;
  }
  .hero-title{
    font-size:clamp(2rem, 1.2rem + 4vw, 3.5rem);
    font-weight:800;
    line-height:1.15;
    color:var(--white);
  }
  .hero-title .accent{color:var(--gold);}
  .hero-sub{
    max-width:800px;
    font-size:clamp(.95rem, .9rem + .3vw, 1rem);
    line-height:1.65;
    color:var(--text-light);
  }
  .hero-cta{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:16px;
    padding-top:8px;
  }

  /* ---------- Grids ---------- */
  .grid{
    display:grid;
    gap:24px;
  }
  .grid-3{grid-template-columns:repeat(3, 1fr);}
  .grid-4{grid-template-columns:repeat(4, 1fr);}

  /* ---------- Cards: ecosystem ---------- */
  .card{
    background:var(--surface);
    border:1px solid var(--border);
    border-radius:var(--radius-lg);
    padding:32px;
    display:flex;
    flex-direction:column;
    gap:20px;
    transition:transform .2s ease, box-shadow .2s ease;
  }
  .card:hover{transform:translateY(-4px);box-shadow:var(--shadow-card-hover);}
  .card-icon{
    width:40px;height:40px;
    border-radius:8px;
    background:rgba(232,168,36,0.10);
    color:var(--gold);
    display:flex;align-items:center;justify-content:center;
  }
  .card-icon .icon{width:20px;height:20px;stroke-width:2.2;}
  .card-tag{
    color:var(--gold);
    font-size:11px;
    font-weight:700;
    letter-spacing:.05em;
    text-transform:uppercase;
  }
  .card-title{font-size:20px;font-weight:800;margin-top:4px;}
  .card-text{font-size:14px;line-height:1.6;color:var(--text-muted);}
  .card-cta{margin-top:auto;padding-top:4px;}
  .btn-sm{padding:10px 20px;font-size:13px;}
  .btn-blue{background:var(--navy);color:var(--white);}
  .btn-blue:hover{background:var(--navy-dark);transform:translateY(-2px);box-shadow:0 10px 24px rgba(27,42,74,.32);}

  /* industries */
  .industries{background:var(--surface);border-top:1px solid var(--border);border-bottom:1px solid var(--border);}
  /* reusable image-holder + list split layout (Industries, Why Safegate) */
  .split-layout{
    display:grid;
    grid-template-columns:minmax(260px, 420px) 1fr;
    gap:48px;
    align-items:stretch;
  }
  .split-media{
    background:var(--white);
    border:1px solid var(--border);
    border-radius:var(--radius-lg);
    overflow:hidden;
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:100%;
    color:var(--text-muted);
  }
  .split-media img{
    width:100%;
    height:100%;
    min-height:320px;
    object-fit:cover;
    display:block;
  }
  .split-media.split-media-compact{align-self:start;min-height:0;}
  .split-media-compact img{height:160px;min-height:160px;max-height:160px;}
  .split-list{
    display:flex;
    gap:48px;
    width:100%;
  }
  .split-col{
    flex:1 1 0;
    min-width:0;
    display:flex;
    flex-direction:column;
  }
  .split-row{
    display:flex;
    align-items:flex-start;
    gap:20px;
    padding:24px 0;
    border-bottom:1px solid var(--border);
    text-align:left;
  }
  .split-col .split-row:first-child{padding-top:0;}
  .split-col .split-row:last-child{border-bottom:none;padding-bottom:0;}
  .split-row .card-icon{width:36px;height:36px;border-radius:6px;flex-shrink:0;}
  .split-row .card-icon .icon{width:18px;height:18px;}
  .split-row-title{font-size:18px;font-weight:700;color:var(--ink);margin-bottom:6px;}
  .split-row-text{font-size:13px;line-height:1.55;color:var(--text-muted);}

  /* ---------- Emergency ---------- */
  .emergency{background:var(--navy);}

  /* reusable grid-pattern overlay for navy sections (and light variant for gold sections) */
  .bg-grid{position:relative;overflow:hidden;--grid-line:rgba(185,196,224,0.045);}
  .bg-grid.bg-grid-dark{--grid-line:rgba(27,42,74,0.10);}
  .bg-grid::before{
    content:'';
    position:absolute;
    inset:0;
    z-index:2;
    background-image:
      linear-gradient(var(--grid-line) 1px, transparent 1px),
      linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
    background-size:44px 44px;
    -webkit-mask-image:radial-gradient(ellipse at center, #000 0%, #000 30%, transparent 70%);
    mask-image:radial-gradient(ellipse at center, #000 0%, #000 30%, transparent 70%);
    pointer-events:none;
  }
  .bg-grid > .container{position:relative;z-index:3;}

  /* hero background video */
  .hero-video{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:0;
  }
  .hero::after{
    content:'';
    position:absolute;
    inset:0;
    z-index:1;
    background:linear-gradient(180deg, rgba(27,42,74,.68) 0%, rgba(24,39,71,.74) 100%);
    pointer-events:none;
  }
  @media (max-width:640px), (prefers-reduced-motion:reduce){
    .hero-video{display:none;}
  }
  .card-dark{
    background:var(--navy-dark);
    border:1px solid var(--navy-border);
    border-radius:var(--radius-lg);
    padding:28px;
    display:flex;
    flex-direction:column;
    gap:16px;
    transition:transform .2s ease, border-color .2s ease;
  }
  .card-dark:hover{transform:translateY(-4px);border-color:#3B4C80;}
  .card-dark .card-icon{width:40px;height:40px;border-radius:8px;}
  .card-dark .card-icon .icon{width:20px;height:20px;}
  .card-dark .card-title{font-size:18px;font-weight:700;color:var(--white);}
  .card-dark .card-text{font-size:13px;line-height:1.55;color:var(--text-light);}
  .icon-fire{background:rgba(239,68,68,0.14);color:var(--red);}
  .icon-medical{background:rgba(59,130,246,0.14);color:var(--blue);}
  .icon-intrusion{background:rgba(232,168,36,0.14);color:var(--gold);}
  .icon-warning{background:rgba(16,185,129,0.14);color:var(--green);}

  /* ---------- Stats ---------- */
  .stats{
    background:var(--gold);
    padding-block:clamp(32px,4vw,44px);
  }
  .stats-split{
    display:grid;
    grid-template-columns:40% 60%;
    gap:32px;
    align-items:center;
  }
  .stats-caption{
    font-family:var(--font-head);
    font-weight:800;
    font-size:clamp(1.5rem, 1.1rem + 1.8vw, 2.125rem);
    line-height:1.25;
    color:var(--navy);
  }
  .stats-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:20px;
  }
  .stat{
    display:flex;flex-direction:column;gap:2px;text-align:left;
  }
  .stat-num{font-family:var(--font-head);font-weight:800;font-size:clamp(1.375rem, 1rem + 1.2vw, 1.75rem);color:var(--navy);}
  .stat-label{font-size:11px;font-weight:700;color:var(--navy);opacity:.8;}

  /* ---------- CTA ---------- */
  .cta{background:var(--navy);}
  .cta .section-head{margin-bottom:40px;max-width:720px;}
  .cta-title{font-size:clamp(1.8rem, 1.2rem + 2.5vw, 2.5rem);}
  .cta-contact{
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    justify-content:center;
    gap:10px;
    margin-top:4px;
  }
  .cta-contact a{
    display:inline-flex;
    align-items:center;
    gap:8px;
    font-size:14px;
    font-weight:700;
    color:var(--white);
    transition:color .15s ease;
  }
  .cta-contact a:hover{color:var(--gold);}
  .cta-contact .icon{width:16px;height:16px;color:var(--gold);flex-shrink:0;}
  .cta-contact-divider{font-size:13px;color:var(--text-light);opacity:.6;}
  .cta-split{
    display:grid;
    grid-template-columns:minmax(260px, 420px) 1fr;
    gap:48px;
    align-items:stretch;
    text-align:left;
  }
  .cta-media{
    background:var(--navy-dark);
    border:1px solid var(--navy-border);
    border-radius:var(--radius-lg);
    overflow:hidden;
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:100%;
    color:var(--text-light);
  }
  .cta-media img{
    width:100%;
    height:100%;
    min-height:320px;
    object-fit:cover;
    display:block;
  }
  .contact-form{
    display:flex;
    flex-direction:column;
    gap:18px;
    background:var(--navy-dark);
    border:1px solid var(--navy-border);
    border-radius:var(--radius-lg);
    padding:32px;
  }
  .form-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px;}
  .form-field{display:flex;flex-direction:column;gap:6px;}
  .form-field span{font-size:12px;font-weight:600;color:var(--text-light);}
  .form-field input,.form-field textarea,.form-field select{
    background:var(--navy);
    border:1px solid var(--navy-border);
    border-radius:var(--radius-md);
    padding:12px 14px;
    color:var(--white);
    font-family:var(--font-body);
    font-size:14px;
    outline:none;
    transition:border-color .15s ease;
  }
  .form-field input::placeholder,.form-field textarea::placeholder{color:var(--text-light);opacity:.55;}
  .form-field input:focus,.form-field textarea:focus,.form-field select:focus{border-color:var(--gold);}
  .form-field textarea{resize:vertical;min-height:96px;font-family:var(--font-body);}
  .form-field select{
    appearance:none;
    -webkit-appearance:none;
    padding-right:40px;
    cursor:pointer;
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23B9C4E0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat:no-repeat;
    background-position:right 12px center;
    background-size:16px;
  }
  .form-field select:invalid{color:var(--text-light);}
  .form-field select option{color:var(--ink);background:var(--white);}
  .form-honeypot{position:absolute;left:-9999px;width:1px;height:1px;opacity:0;pointer-events:none;}
  .form-status{
    display:none;
    font-size:13px;
    font-weight:600;
    line-height:1.5;
    padding:12px 14px;
    border-radius:var(--radius-md);
  }
  .form-status.is-visible{display:block;}
  .form-status.is-success{background:rgba(16,185,129,0.12);border:1px solid rgba(16,185,129,0.4);color:#5EEAB0;}
  .form-status.is-error{background:rgba(239,68,68,0.12);border:1px solid rgba(239,68,68,0.4);color:#FF9E9E;}
  .btn[disabled]{opacity:.6;cursor:not-allowed;transform:none !important;}

  /* ---------- Footer ---------- */
  .site-footer{
    background:var(--navy-dark);
    padding-top:clamp(48px,8vw,80px);
    padding-bottom:32px;
  }
  .footer-top{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:48px;
    padding-bottom:48px;
  }
  .footer-brand{display:flex;flex-direction:column;gap:20px;padding-right:40px;}
  .footer-brand .brand-logo{height:54px;}
  .footer-desc{font-size:13px;line-height:1.7;color:var(--text-light);opacity:.7;}
  .footer-contact{
    display:flex;
    flex-direction:column;
    gap:10px;
  }
  .footer-contact a{
    display:inline-flex;
    align-items:center;
    gap:10px;
    font-size:13px;
    font-weight:600;
    color:var(--text-light);
    transition:color .15s ease;
  }
  .footer-contact a:hover{color:var(--gold);}
  .footer-contact .icon{width:16px;height:16px;color:var(--gold);flex-shrink:0;}
  .social-links{display:flex;align-items:center;gap:10px;}
  .social-links a{
    width:36px;height:36px;
    border-radius:8px;
    background:rgba(255,255,255,.05);
    border:1px solid var(--navy-border);
    color:var(--text-light);
    display:flex;align-items:center;justify-content:center;
    transition:background .15s ease, color .15s ease, border-color .15s ease, transform .15s ease;
  }
  .social-links a:hover{background:var(--gold);color:var(--navy);border-color:var(--gold);transform:translateY(-2px);}
  .social-links .icon{width:16px;height:16px;}
  .footer-cols{display:contents;}
  .footer-col{display:flex;flex-direction:column;gap:14px;}
  .footer-col h4{color:var(--white);font-size:13px;font-weight:700;}
  .footer-col a{
    color:var(--text-light);
    font-size:13px;
    opacity:.6;
    transition:opacity .15s ease;
  }
  .footer-col a:hover{opacity:1;}
  .footer-divider{height:1px;background:var(--navy-border);border:none;margin:0 0 32px;}
  .footer-bottom{
    display:flex;
    flex-wrap:wrap;
    justify-content:space-between;
    align-items:center;
    gap:16px;
  }
  .footer-copy{font-size:12px;color:var(--text-light);opacity:.5;}
  .footer-legal{display:flex;flex-wrap:wrap;gap:24px;}
  .footer-legal a{font-size:12px;color:var(--text-light);opacity:.5;transition:opacity .15s ease;}
  .footer-legal a:hover{opacity:1;}

  /* ---------- Floating WhatsApp button ---------- */
  .whatsapp-float{
    position:fixed;
    right:24px;
    bottom:24px;
    height:56px;
    padding:0 22px 0 16px;
    border-radius:999px;
    background:var(--gold);
    display:flex;
    align-items:center;
    gap:10px;
    color:var(--navy);
    box-shadow:0 8px 24px rgba(17,27,51,.35);
    z-index:200;
    transition:transform .2s ease, box-shadow .2s ease, background .15s ease;
  }
  .whatsapp-float:hover{background:var(--gold-dark);transform:translateY(-3px) scale(1.03);box-shadow:0 12px 28px rgba(17,27,51,.4);}
  .whatsapp-float .icon{width:26px;height:26px;stroke-width:2;position:relative;z-index:1;flex-shrink:0;}
  .whatsapp-float-text{font-size:14px;font-weight:700;white-space:nowrap;position:relative;z-index:1;}
  .whatsapp-float-ring{
    position:absolute;
    inset:0;
    border-radius:999px;
    background:var(--gold);
    opacity:.55;
    animation:whatsapp-pulse 2.2s ease-out infinite;
  }
  @keyframes whatsapp-pulse{
    0%{transform:scale(1);opacity:.5;}
    70%{transform:scale(1.08);opacity:0;}
    100%{transform:scale(1.08);opacity:0;}
  }
  @media (prefers-reduced-motion:reduce){
    .whatsapp-float-ring{animation:none;display:none;}
  }
  @media (max-width:640px){
    .whatsapp-float{
      right:16px;bottom:16px;
      width:52px;height:52px;
      padding:0;
      justify-content:center;
      border-radius:50%;
    }
    .whatsapp-float .icon{width:24px;height:24px;}
    .whatsapp-float-text{display:none;}
    .whatsapp-float-ring{border-radius:50%;}
  }

  /* ---------- Responsive ---------- */
  @media (max-width:1100px){
    .nav-links,.nav-actions{display:none;}
    .nav-toggle{display:flex;}
  }

  @media (max-width:980px){
    .grid-3,.grid-4{grid-template-columns:repeat(2,1fr);}
    .footer-top{grid-template-columns:repeat(2, 1fr);}
    .split-layout{grid-template-columns:1fr;}
    .split-media{min-height:220px;order:-1;}
    .split-list{gap:32px;}
    .cta-split{grid-template-columns:1fr;}
    .cta-media{min-height:200px;order:-1;}
    .stats-split{grid-template-columns:1fr;gap:32px;}
    .stats-caption{text-align:center;}
    .stat{text-align:center;align-items:center;}
  }

  @media (max-width:640px){
    .grid-3,.grid-4{grid-template-columns:1fr;}
    .split-list{flex-direction:column;gap:0;}
    .split-col:not(:first-child) .split-row:first-child{border-top:1px solid var(--border);padding-top:24px;}
    .hero-cta{flex-direction:column;width:100%;}
    .hero-cta .btn{width:100%;}
    .contact-form{padding:24px;}
    .form-grid{grid-template-columns:1fr;}
    .stats-grid{grid-template-columns:repeat(2, 1fr);gap:20px;}
    .footer-top{grid-template-columns:repeat(2, 1fr);gap:32px;}
    .footer-brand{order:4;}
    .footer-cols > .footer-col:nth-child(1){order:3;} /* Product */
    .footer-cols > .footer-col:nth-child(2){order:2;} /* Platform */
    .footer-cols > .footer-col:nth-child(3){order:1;} /* Get Started */
    .footer-bottom{flex-direction:column;align-items:flex-start;}
    .section-title{line-height:1.25;}
  }
