/* ============================================================
   MediaFlow24 — SHARED STYLES (used on every page)
   ============================================================ */

:root{
  --black:#000000; --primary:#4B4698; --highlight:#89C313; --secondary:#9ACD32;
  --dark-grey:#292929; --white:#FFFFFF; --light-grey:#EDECFC; --light-grey-2:#efeefd;
  --blue-light:#f5f4ff; --grey:#bebebe; --text:#1a1818;
}
*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
body{ font-family:'Sofia Sans', Arial, sans-serif; background:#dcdce8; color:var(--black); -webkit-font-smoothing:antialiased; }
img{ max-width:none; display:block; }
a{ color:inherit; text-decoration:none; }
#scale-wrap{ transform-origin: top left; width:1920px; }
.page{ width:1920px; position:relative; background:#fff; overflow:hidden; }
.sr-only{ position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }

/* Global type rule: body text, reduced from the design's 30px */
p{ font-size:22px; line-height:35px; }

/* ===================== HEADER / NAV ===================== */
.header{ display:flex; align-items:center; justify-content:space-between; background:#fff; padding:30px 50px; width:1920px; position:relative; z-index:30; }
.logo{ display:block; }
.logo img{ height:40px; width:auto; display:block; }

.nav{ display:flex; gap:40px; align-items:center; }
.nav a{ font-weight:700; font-size:20px; line-height:28px; white-space:nowrap; }
.nav a:hover{ color:var(--primary); }
.nav a.active{ color:var(--highlight); }
.nav-toggle{
  display:none; flex-direction:column; justify-content:center; gap:6px;
  width:44px; height:44px; background:none; border:none; cursor:pointer;
  padding:0; flex-shrink:0;
}
.nav-toggle span{ display:block; width:100%; height:3px; background:var(--primary); border-radius:2px; }

/* ===================== BUTTONS (with hover matrix) ===================== */
/*  green  -> hover purple
    purple -> hover green
    white on green bg -> hover purple
    white on purple bg -> hover green                                    */
.btn{
  display:inline-flex; align-items:center; gap:9px;
  padding:15px 40px; border-radius:100px;
  font-weight:700; font-size:19px; line-height:22px;
  text-transform:uppercase; text-decoration:none; color:#fff;
  width:max-content; transition:background .25s ease, color .25s ease;
}
.btn-icon{ width:40px; height:40px; }
.btn-green{ background:var(--highlight); }
.btn-green:hover{ background:var(--primary); }
.btn-purple{ background:var(--primary); }
.btn-purple:hover{ background:var(--highlight); }

.btn-pill{
  display:inline-flex; align-items:center; justify-content:center;
  width:160px; height:58px; border-radius:10px; font-weight:700;
  font-size:18px; text-transform:uppercase; text-decoration:none;
  transition:background .25s ease, color .25s ease;
}
.btn-pill-green{ background:var(--highlight); color:#fff; }
.btn-pill-green:hover{ background:var(--primary); }
.btn-pill-purple{ background:var(--primary); color:#fff; }
.btn-pill-purple:hover{ background:var(--highlight); }
.btn-pill-secondary{ background:var(--secondary); color:#fff; font-weight:800; }
.btn-pill-secondary:hover{ background:var(--primary); }
/* white pill placed on a green background -> hovers purple */
.btn-pill-white-on-green{ background:#fff; color:var(--highlight); }
.btn-pill-white-on-green:hover{ background:var(--primary); color:#fff; }
/* white pill placed on a purple background -> hovers green */
.btn-pill-white-on-purple{ background:#fff; color:var(--primary); }
.btn-pill-white-on-purple:hover{ background:var(--highlight); color:#fff; }

/* ===================== FOOTER ===================== */
.footer{ background:var(--blue-light); width:1920px; padding-bottom:60px; }
.footer-strip{ display:flex; align-items:center; justify-content:center; gap:101px; border-top:2px solid var(--grey); border-bottom:2px solid var(--grey); padding:30px 101px; margin:0 101px; }
.footer-mail{ display:flex; align-items:center; gap:10px; flex-shrink:0; }
.footer-mail img{ width:44px; height:29px; }
.footer-mail span{ font-size:20px; color:#000; white-space:nowrap; }
.footer-social{ display:flex; gap:22px; flex-shrink:0; }
.footer-social img{ width:44px; height:44px; transition:transform .25s ease, opacity .25s ease; cursor:pointer; }
.footer-social img:hover{ transform:translateY(-4px) scale(1.1); opacity:.8; }
.footer-blurb{ font-size:18px; line-height:26px; color:#000; width:901px; margin:0; }
.footer-cols{ display:flex; justify-content:space-between; gap:60px; padding:80px 101px 0; box-sizing:border-box; }
.footer-cols .footer-col{ flex:1 1 0; min-width:0; }
.footer-col h5{ margin:0 0 30px; color:var(--primary); font-weight:900; font-size:40px; text-transform:uppercase; }
.footer-col p{ margin:0; color:#000; font-size:18px; line-height:26px; }
.footer-links{ display:flex; flex-direction:column; gap:8px; }
.footer-links a{ color:#000; text-decoration:none; transition:color .2s ease; }
.footer-links a:hover{ color:var(--primary); }
.footer-col-brand{ text-align:center; }
.footer-brand-tag{ color:var(--primary); font-weight:900; font-size:32px; text-transform:uppercase; margin:0 0 20px; }
.footer-brand-tag .black{ color:#000; }
.footer-brand-logo{ width:230px; height:auto; margin:0 auto; display:block; }
.footer-newsletter{ margin-top:30px; }
.footer-newsletter h5{ margin:0 0 16px; color:var(--primary); font-weight:900; font-size:20px; text-transform:uppercase; text-align:center; }
.newsletter-form{ display:flex; max-width:320px; margin:0 auto; border-radius:100px; overflow:hidden; border:2px solid var(--light-grey); }
.newsletter-form input{ flex:1; min-width:0; border:none; padding:12px 18px; font-size:14px; font-family:inherit; outline:none; }
.newsletter-form button{
  border:none; background:var(--highlight); color:#fff; font-weight:700; font-size:14px;
  text-transform:uppercase; padding:12px 22px; cursor:pointer; white-space:nowrap;
  transition:background .25s ease;
}
.newsletter-form button:hover{ background:var(--primary); }
.footer-copy{ text-align:center; color:#000; font-size:18px; /*! line-height:26px; */ padding:20px 0px; margin:0; background-color: var(--white);}

/* ============================================================
   RESPONSIVE — shared header/footer/nav rules (tablet & mobile)
   ============================================================ */
@media (max-width: 1024px){
  #scale-wrap{ transform:none !important; width:100% !important; }
  body{ height:auto !important; }
  .page{ width:100% !important; }

  .header{ width:100%; padding:20px 50px; justify-content:space-between; position:relative; }
  .logo img{ height:30px; }
  .nav-toggle{ display:flex; }
  .nav{
    display:none; position:absolute; top:100%; left:0; width:100%;
    flex-direction:column; align-items:flex-start; gap:0;
    background:#fff; padding:10px 50px 20px; box-shadow:0 12px 30px rgba(0,0,0,.12);
    z-index:40;
  }
  .nav.nav-open{ display:flex; }
  .nav a{ width:100%; padding:14px 0; border-bottom:1px solid #eee; font-size:16px; }

  .footer{ width:100%; padding-bottom:40px; }
  .footer-strip{ flex-direction:column; margin:0; padding:30px 50px; gap:24px; text-align:center; }
  .footer-blurb{ width:100%; }
  .footer-cols{ flex-direction:column; gap:40px; padding:50px 50px 0; text-align:center; }
  .footer-col-brand{ order:-1; }

  /* Titles with a forced <br> line break should wrap naturally on iPad/phone */
  h1 br, h2 br, h3 br, h4 br{ display:none; }

  /* Decorative circle/blob backgrounds removed on iPad & phone — they were
     causing mis-sized backgrounds, half-cut images and extra gaps */
  .hero-blob, .oe-blob, .cta-blob, .cs-blob,
  .facts-bg, .tl-bg, .partners-bg, .skill-bg, .hts-bg, .cta-bg{
    display:none !important;
  }
}

@media (max-width: 560px){
  .nav a{ font-size:14px; padding:12px 0; }

  .header{ padding:16px 30px; }
  .nav{ padding:10px 30px 20px; }
  .footer-strip{ padding:24px 30px; }
  .footer-cols{ padding:30px 30px 0; }
}

/* Small iPhones — the wordmark logo is very wide relative to its height,
   so below 430px it needs to shrink further or it crowds out the nav-toggle
   button on the right */
@media (max-width: 430px){
  .header{ padding:14px 20px; }
  .logo img{ height:15px; }
}


/* ============================================================
   HOMEPAGE-ONLY STYLES
   ============================================================ */
/* ============================================================
   MediaFlow24 — HOMEPAGE STYLES
   ============================================================ */

/* ===================== HERO SLIDER ===================== */
.hero{ position:relative; width:1920px; height:960px; background:var(--light-grey-2); overflow:hidden; padding-top:70px; box-sizing:border-box; }
.hero-bg{ position:absolute; inset:0; overflow:hidden; }
.hero-blob{ position:absolute; border-radius:50%; filter:blur(2px); opacity:.55; }
.hero-blob-left{ width:1161px; height:1069px; left:-500px; top:-380px; background:radial-gradient(circle at 40% 40%, #ffffff 0%, var(--light-grey) 55%, transparent 75%); }
.hero-blob-right{ width:695px; height:695px; right:-330px; bottom:-330px; background:radial-gradient(circle at 60% 60%, #ffffff 0%, var(--light-grey) 60%, transparent 78%); }

.hero-viewport{ position:relative; width:1920px; height:100%; overflow:hidden; }
.hero-track{ display:flex; height:100%; transition:transform .6s ease; }
.hero-slide{
  min-width:1920px; width:1920px; height:100%; flex-shrink:0;
  display:flex; align-items:center; justify-content:space-between;
  padding:0 100px 90px; box-sizing:border-box;
}
.hero-slide-image{ width:1100px; height:auto; max-height:820px; object-fit:contain; flex-shrink:0; }
.hero-slide-image-medal{ width:820px; }
.hero-slide-image-coins{ width:820px; }
.hero-slide-text{ width:604px; display:flex; flex-direction:column; gap:15px; flex-shrink:0; }
.eyebrow{ margin:0; font-weight:800; text-transform:uppercase; }
.eyebrow-green{ color:var(--highlight); font-size:22px; line-height:28px; }
.hero-title{ margin:0; color:var(--primary); font-weight:900; font-size:125px; line-height:98px; text-transform:uppercase; }
.hero-title .light{ font-weight:300; }
.hero-sub{ margin:0; color:var(--dark-grey); font-weight:800; font-size:22px; line-height:28px; text-transform:uppercase; width:572px; }

.hero-controls{
  position:absolute; left:100px; bottom:40px; z-index:5;
  display:flex; align-items:center; gap:24px;
}
.slider-arrow{
  width:50px; height:50px; border-radius:50%; border:2px solid var(--primary);
  background:#fff; display:flex; align-items:center; justify-content:center;
  cursor:pointer; transition:background .2s ease; flex-shrink:0; padding:0;
}
.slider-arrow svg{ width:18px; height:18px; stroke:var(--primary); fill:none; stroke-width:3; transition:stroke .2s ease; }
.slider-arrow:hover{ background:var(--primary); }
.slider-arrow:hover svg{ stroke:#fff; }
.slider-dots{ display:flex; gap:10px; }
.slider-dots .dot{ width:12px; height:12px; border-radius:50%; background:var(--light-grey); cursor:pointer; border:none; padding:0; }
.slider-dots .dot.active{ background:var(--highlight); }

/* ===================== INTRO ===================== */
.intro{ background:#fff; width:1920px; padding:100px; display:flex; flex-direction:column; align-items:center; gap:100px; }
.intro-inner{ display:flex; gap:30px; align-items:flex-start; width:1293px; }
.intro-brand{ flex:0 0 auto; text-align:right; /*! padding-top:60px; */ }
.intro-brand-name{ margin:0; color:var(--highlight); font-weight:900; font-size:95px; line-height:70px; letter-spacing:-3.8px; text-transform:uppercase; }
.intro-brand-sub{ margin:16px 0 0; color:var(--primary); font-weight:900; font-size:36px; line-height:40px; text-transform:uppercase; }
.intro-copy{ margin:0; color:#000; font-weight:400; width:863px; }

.split-cards{ width:1720px; height:480px; display:flex; border-radius:30px; overflow:hidden; }
.split-card{ width:860px; height:100%; padding:0 135px; display:flex; flex-direction:column; justify-content:center; gap:30px; box-sizing:border-box; }
.split-card-purple{ background:var(--primary); }
.split-card-green{ background:var(--highlight); }
.split-card h3{ margin:0; color:#fff; font-weight:900; font-size:60px; line-height:60px; text-transform:uppercase; }
.split-card p{ margin:0; color:#fff; font-weight:600; }

/* ===================== EXPLORE PRODUCTS SLIDER ===================== */
.explore{ background:var(--light-grey); width:1920px; padding:150px 100px; display:flex; flex-direction:column; gap:50px; box-sizing:border-box; }
.explore-top{ display:flex; justify-content:space-between; align-items:center; }
.explore-top h2{ margin:0; color:var(--primary); font-weight:900; font-size:60px; line-height:60px; text-transform:uppercase; }
.arrows{ display:flex; gap:16px; }

.explore-viewport{ width:1620px; overflow:hidden; margin:0 auto; }
.explore-track{ display:flex; }
.explore-card-wrap{ width:540px; flex-shrink:0; box-sizing:border-box; }
.explore-card{
  background:#fff; height:100%; padding:70px 55px; box-sizing:border-box;
  display:flex; flex-direction:column; align-items:flex-start; gap:30px;
  margin:0 5px;
}
.explore-card h3{ margin:0; color:var(--primary); font-weight:900; font-size:40px; line-height:40px; text-transform:uppercase; }
.explore-card p{ margin:0; color:#000; }
.expand-icon{ width:50px; height:50px; }

/* ===================== OUR EXPERIENCE ===================== */
.our-experience{ position:relative; width:1920px; height:862px; background:#fff; overflow:hidden; }
.oe-bg{ position:absolute; inset:0; overflow:hidden; }
.oe-blob{ position:absolute; border-radius:50%; opacity:.5; }
.oe-blob-left{ width:1161px; height:1069px; left:-500px; top:-400px; background:radial-gradient(circle at 40% 40%, #fff 0%, var(--light-grey) 55%, transparent 75%); }
.oe-blob-right{ width:695px; height:695px; right:-330px; bottom:-260px; background:radial-gradient(circle at 60% 60%, #fff 0%, var(--light-grey) 60%, transparent 78%); }
.oe-coins{ position:absolute; left:79px; top:50%; transform:translateY(-50%); width:745px; height:745px; object-fit:contain; }
.oe-text{ position:absolute; left:908px; top:50%; transform:translateY(-50%); width:820px; }
.eyebrow-purple{ color:var(--primary); font-weight:900; font-size:22px; line-height:40px; }
.oe-title{ margin:0; color:var(--primary); font-weight:900; font-size:95px; line-height:76px; text-transform:uppercase; }
.oe-purple-light{ font-weight:400; }
.oe-copy{ margin:30px 0 0; color:#000; width:811px; }

/* ===================== FEATURES ROW ===================== */
.features{ display:flex; justify-content:center; gap:44px; padding:150px 0; background:#fff; width:1920px; box-sizing:border-box; }
.feature{ display:flex; gap:29px; align-items:center; }
.feature-icon{ width:100px; height:100px; border-radius:50%; background:var(--highlight); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.feature-icon img{ width:70px; height:70px; }
.feature-text{ display:flex; flex-direction:column; gap:30px; padding-top:4px; max-width:410px; }
.feature-text h4{ margin:0; color:var(--primary); font-weight:900; font-size:40px; line-height:40px; text-transform:uppercase; }
.feature-text p{ margin:0; color:#000; }

/* ===================== FACTS & FIGURES ===================== */
.facts{ position:relative; width:1920px; height:807px; background:var(--primary); overflow:hidden; }
.facts-bg{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; opacity:.12; }
.facts-content{ position:absolute; left:167px; top:50%; transform:translateY(-50%); width:734px; display:flex; flex-direction:column; gap:40px; }
.facts-heading p{ margin:0; color:var(--highlight); font-weight:900; font-size:22px; line-height:40px; text-transform:uppercase; }
.facts-heading h2{ margin:0; color:#fff; font-weight:900; font-size:70px; line-height:70px; text-transform:uppercase; }
.facts-list{ margin:0; padding:0; display:flex; flex-direction:column; gap:24px; }
.facts-list li{ display:flex; align-items:center; gap:16px; }
.facts-list li img{ width:40px; height:40px; flex-shrink:0; }
.facts-list li span{ color:#fff; font-size:18px; line-height:26px; }
.facts-list li:first-child span{ font-weight:500; max-width:634px; }
.facts-list li:not(:first-child) span{ font-weight:700; max-width:606px; }
.facts-picture{
  position:absolute; right:40px; top:50%; transform:translateY(-50%);
  height:90%; width:auto; object-fit:contain;
}

/* ===================== CTA / ARE YOU INTERESTED ===================== */
.cta{ position:relative; width:1920px; height:778.5px; background:var(--secondary); overflow:hidden; }
.cta-bg{ position:absolute; inset:0; background:radial-gradient(circle at 30% 20%, rgba(255,255,255,.15), transparent 60%); }
.cta-blob{ position:absolute; left:220px; top:300px; width:460px; height:420px; border-radius:50%; background:rgba(255,255,255,.18); transform:rotate(-8deg); }
.cta-medal{ position:absolute; left:186px; top:50%; transform:translateY(-50%); width:686px; height:647px; object-fit:contain; }
.cta-content{ position:absolute; left:984px; top:50%; transform:translateY(-50%); width:841px; display:flex; flex-direction:column; gap:20px; }
.cta-title{ margin:0; color:#fff; font-weight:900; font-size:125px; line-height:98px; text-transform:uppercase; }
.cta-title .light{ font-weight:300; }
.cta-sub{ margin:0; color:#fff; font-weight:800; font-size:22px; line-height:28px; text-transform:uppercase; width:764px; }

/* ===================== CLIENT FEEDBACK SLIDER ===================== */
.reviews{ background:#fff; width:1920px; padding:150px 100px 150px; box-sizing:border-box; display:flex; flex-direction:column; align-items:center; position:relative; }
.reviews-title-row{ display:flex; justify-content:space-between; align-items:center; width:1720px; }
.reviews-title{ text-align:left; }
.reviews-title h2{ margin:0; color:var(--primary); font-weight:900; font-size:70px; line-height:70px; text-transform:uppercase; }
.reviews-title p{ margin:20px 0 0; color:var(--text); max-width:900px; }

.reviews-viewport{ width:1665px; overflow:hidden; margin-top:80px; }
.reviews-track{ display:flex; }
.review-card-wrap{ width:553px; flex-shrink:0; box-sizing:border-box; padding-right:41px; }
.review-card{ width:512px; background:var(--light-grey); padding:43px 32px; box-sizing:border-box; position:relative; }
.review-card-outline{ background:transparent; border:10px solid var(--light-grey); }
.review-head{ display:flex; justify-content:space-between; align-items:center; }
.review-name{ margin:0; font-family:'Barlow',sans-serif; font-weight:500; font-size:18px; color:var(--text); }
.review-date{ margin:9px 0 0; font-family:'Barlow',sans-serif; font-size:13px; color:#b9b6e0; }
.review-stars{ display:flex; gap:1px; margin-top:12px; }
.review-stars img{ width:17px; height:17px; }
.review-social{ width:40px; height:40px; }
.review-body{ margin:50px 0 0; font-family:'Barlow',sans-serif; font-weight:500; font-size:17px; line-height:23px; color:var(--text); }

/* ============================================================
   RESPONSIVE — homepage
   ============================================================ */
@media (max-width: 1024px){
  .hero{ width:100%; height:auto; min-height:0; padding:50px 0; }
  .hero-viewport{ width:100%; height:auto; }
  .hero-slide{
    min-width:100%; width:100%; height:auto; flex-direction:column;
    align-items:center; text-align:center; gap:30px; padding:0 50px 90px;
  }
  .hero-slide-image, .hero-slide-image-medal, .hero-slide-image-coins{ width:100%; max-width:400px; height:auto; }
  .hero-slide-text{ width:100%; max-width:600px; align-items:center; text-align:center; }
  .hero-controls{ left:0; right:0; bottom:24px; justify-content:center; }
  .eyebrow-green{ font-size:22px; line-height:28px; }
  .hero-title{ font-size:52px; line-height:48px; }
  .hero-sub{ font-size:22px; line-height:28px; width:100%; }
  .btn{ font-size:18px; padding:14px 30px; }
  .btn-icon{ width:34px; height:34px; }

  .intro{ width:100%; padding:50px 50px; gap:50px; }
  .intro-inner{ width:100%; flex-direction:column; align-items:center; gap:24px; text-align:center; }
  .intro-brand{ text-align:center; padding-top:0; }
  .intro-brand-name{ font-size:52px; line-height:44px; }
  .intro-copy{ width:100%; text-align:center; }
  .split-cards{ width:100%; height:auto; flex-direction:column; border-radius:20px; }
  .split-card{ width:100%; padding:40px 30px; }
  .split-card h3{ font-size:34px; line-height:38px; }

  .explore{ width:100%; padding:50px 50px; gap:36px; }
  .explore-top h2{ font-size:36px; line-height:38px; }
  .explore-viewport{ width:100%; overflow:visible; }
  .explore-track{ flex-direction:column; }
  .explore-card-wrap{ width:100%; }
  .explore-card{ width:100%; padding:40px 30px; margin:0 0 20px; }
  .explore-card h3{ font-size:26px; line-height:30px; }
  .explore-card p{ max-width:none; }

  .our-experience{ width:100%; height:auto; padding:50px 50px; display:flex; flex-direction:column; align-items:center; text-align:center; }
  .oe-coins{ position:static; transform:none; width:100%; max-width:380px; height:auto; margin:0 auto 50px; }
  .oe-text{ position:static; transform:none; width:100%; max-width:600px; }
  .oe-title{ font-size:46px; line-height:42px; }
  .oe-copy{ width:100%; }

  .features{ width:100%; padding:50px 50px; flex-direction:column; align-items:center; gap:40px; }
  .feature{ max-width:480px; }
  .feature-text{ max-width:none; }

  .facts{ width:100%; height:auto; padding:50px 50px; }
  .facts-content{ position:static; transform:none; width:100%; gap:50px; }
  .facts-heading h2{ font-size:44px; }
  .facts-picture{ display:none; }

  .cta{ width:100%; height:auto; padding:50px 50px; display:flex; flex-direction:column; align-items:center; text-align:center; }
  .cta-medal{ position:static; transform:none; width:100%; max-width:380px; height:auto; margin:0 auto 50px; }
  .cta-content{ position:static; transform:none; width:100%; max-width:600px; align-items:center; }
  .cta-title{ font-size:52px; line-height:48px; }
  .cta-sub{ width:100%; font-size:22px; line-height:28px; }

  .reviews{ width:100%; padding:50px 50px; }
  .reviews-title-row{ width:100%; flex-direction:column; align-items:flex-start; gap:24px; }
  .reviews-title h2{ font-size:44px; }
  .reviews-title p{ max-width:none; width:100%; }
  .reviews-viewport{ width:100%; margin-top:50px; }
  .review-card-wrap{ width:100%; padding-right:0; }
  .review-card{ width:100%; height:auto; padding:30px 24px; }
}

@media (max-width: 560px){
  .hero-title{ font-size:38px; line-height:36px; }
  .hero-sub{ font-size:18px; line-height:24px; }
  .intro-brand-name{ font-size:38px; line-height:34px; }
  .split-card h3{ font-size:26px; line-height:30px; }
  .cta-title{ font-size:38px; line-height:36px; }
  .oe-title{ font-size:32px; line-height:32px; }
  .facts-heading h2{ font-size:32px; }
  .reviews-title h2{ font-size:32px; }

  .hero{ padding:30px 0; }
  .hero-slide{ padding:0 30px 60px; }
  .intro{ padding:30px 30px; gap:30px; }
  .explore{ padding:30px 30px; }
  .our-experience{ padding:30px 30px; }
  .oe-coins{ margin:0 auto 30px; }
  .features{ padding:30px 30px; }
  .facts{ padding:30px 30px; }
  .facts-content{ gap:30px; }
  .cta{ padding:30px 30px; }
  .cta-medal{ margin:0 auto 30px; }
  .reviews{ padding:30px 30px; }
  .reviews-viewport{ margin-top:30px; }
}


/* ============================================================
   ABOUT US-ONLY STYLES
   ============================================================ */
/* ============================================================
   MediaFlow24 — ABOUT US STYLES
   ============================================================ */

/* Inner hero */
.inner-hero{ background:var(--light-grey-2); width:1920px; padding:120px 122px; box-sizing:border-box; text-align:center; }
.ih-title{ margin:0; color:var(--primary); font-weight:900; font-size:70px; line-height:74px; text-transform:uppercase; }
.ih-sub{ margin:20px auto 0; max-width:700px; color:var(--dark-grey); font-weight:800; font-size:22px; line-height:28px; text-transform:uppercase; }

/* About intro */
.about-intro{ position:relative; width:1920px; min-height:700px; background:#fff; padding:110px 122px 90px; box-sizing:border-box; }
.about-intro-row{ display:flex; gap:80px; align-items:flex-start; }
.about-intro-copy{ width:1003px; text-align:justify; color:#000; }
.about-intro-heading{ width:494px; flex-shrink:0; text-align:right; }
.about-eyebrow{ margin:0; color:var(--primary); font-weight:800; font-size:20px; line-height:28px; text-transform:uppercase; }
.about-title{ margin:8px 0 0; color:var(--highlight); font-weight:900; font-size:90px; line-height:68px; text-transform:uppercase; }
.about-subtitle{ margin:20px 0 0; color:#000; font-weight:800; font-size:18px; line-height:26px; text-transform:uppercase; }

.stats-bar{
  width:1677px; margin:70px auto 0; background:var(--primary); border-radius:40px;
  display:flex; justify-content:space-between; align-items:center; padding:45px 90px;
  box-sizing:border-box; color:#fff; text-align:center; text-transform:uppercase;
}
.stat{ display:flex; flex-direction:column; align-items:center; gap:15px; }
.stat b{ font-weight:900; font-size:60px; line-height:60px; }
.stat span{ font-weight:800; font-size:20px; line-height:24px; letter-spacing:.5px; }

/* Timeline / global leader */
.timeline{ position:relative; width:1920px; height:1012px; background:#fff; overflow:hidden; }
.tl-bg{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.tl-image{ position:absolute; left:61px; top:50%; transform:translateY(-50%); width:806px; height:806px; object-fit:contain; }
.tl-text{ position:absolute; left:908px; top:50%; transform:translateY(-50%); width:856px; }
.tl-eyebrow{ margin:0; color:var(--highlight); font-weight:900; font-size:22px; line-height:40px; text-transform:uppercase; }
.tl-title{ margin:0; color:var(--primary); font-weight:900; font-size:95px; line-height:76px; text-transform:uppercase; }
.tl-copy{ margin:30px 0 0; color:#000; }

/* Meet the team */
.team{ position:relative; width:1920px; padding:150px 122px; background:var(--primary); overflow:hidden; display:flex; flex-direction:column; align-items:center; gap:50px; box-sizing:border-box; }
.team h2{ position:relative; margin:0; color:#fff; font-weight:900; font-size:70px; line-height:70px; text-transform:uppercase; text-align:center; }
.team-row{ position:relative; display:flex; gap:20px; }
.profile{ width:367px; display:flex; flex-direction:column; align-items:center; gap:20px; }
.profile-photo{ width:370px; height:284px; background:#fff; }
.profile h3{ margin:0; color:#fff; font-weight:900; font-size:40px; text-transform:uppercase; }
.profile p{ margin:0; color:#fff; font-size:22px; }

/* Mission / Vision / Values */
.mvv{ display:flex; gap:20px; justify-content:center; padding:150px 0; background:#fff; width:1920px; box-sizing:border-box; }
.mvv-item{ display:flex; gap:29px; align-items:center; }
.mvv-icon{ width:100px; height:100px; border-radius:50%; overflow:hidden; flex-shrink:0; }
.mvv-icon img{ width:100%; height:100%; object-fit:cover; }
.mvv-text{ display:flex; flex-direction:column; gap:30px; padding-top:4px; max-width:410px; }
.mvv-text h4{ margin:0; color:var(--primary); font-weight:900; font-size:40px; text-transform:uppercase; }
.mvv-text p{ margin:0; color:#000; }

/* Trusted partners — pause-on-hover marquee slider */
.partners{ position:relative; width:1920px; height:649px; background:var(--secondary); overflow:hidden; }
.partners-bg{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; opacity:.1; mix-blend-mode:luminosity; }
.partners h2{ position:relative; margin:0; padding-top:108px; color:#fff; font-weight:900; font-size:95px; line-height:80px; text-transform:uppercase; text-align:center; }
.partners-viewport{ position:relative; width:100%; overflow:hidden; margin-top:80px; }
.partners-track{
  display:flex; gap:20px; width:max-content;
  animation: partners-scroll 22s linear infinite;
}
.partners-viewport:hover .partners-track{ animation-play-state:paused; }
@keyframes partners-scroll{
  from{ transform:translateX(0); }
  to{ transform:translateX(-50%); }
}
.partner-box{ width:300px; height:150px; background:#fff; display:flex; align-items:center; justify-content:center; padding:20px; box-sizing:border-box; flex-shrink:0; }
.partner-box img{ max-width:100%; max-height:100%; width:auto; height:auto; object-fit:contain; }

/* ============================================================
   RESPONSIVE — About Us
   ============================================================ */
@media (max-width: 1024px){
  .inner-hero{ width:100%; padding:50px 50px; }
  .ih-title{ font-size:38px; line-height:40px; }
  .ih-sub{ font-size:18px; line-height:24px; margin-top:16px; }

  .about-intro{ width:100%; padding:50px 50px; }
  .about-intro-row{ flex-direction:column; gap:50px; align-items:center; text-align:center; }
  .about-intro-copy{ width:100%; text-align:center; }
  .about-intro-heading{ width:100%; text-align:center; }
  .about-title{ font-size:52px; line-height:44px; }
  .stats-bar{ width:100%; flex-wrap:wrap; gap:30px; padding:30px; border-radius:24px; }
  .stat b{ font-size:44px; line-height:44px; }
  .stat span{ font-size:18px; line-height:22px; }

  .timeline{ width:100%; height:auto; padding:50px 50px; display:flex; flex-direction:column; align-items:center; text-align:center; }
  .tl-image{ position:static; transform:none; width:100%; max-width:400px; height:auto; margin:0 auto 50px; }
  .tl-text{ position:static; transform:none; width:100%; max-width:600px; }
  .tl-title{ font-size:44px; line-height:42px; }
  .tl-copy{ width:100%; }

  .team{ width:100%; padding:50px 50px; }
  .team h2{ font-size:44px; }
  .team-row{ display:grid; grid-template-columns:repeat(2, 1fr); gap:24px; margin-top:50px; }
  .profile{ width:100%; }
  .profile-photo{ width:100%; height:220px; }

  .mvv{ width:100%; padding:50px 50px; flex-direction:column; align-items:center; gap:50px; }
  .mvv-item{ width:100%; max-width:600px; }
  .mvv-text{ max-width:none; }

  .partners{ width:100%; height:auto; padding:50px 0; }
  .partners h2{ font-size:40px; line-height:40px; padding-top:0; }
}

@media (max-width: 560px){
  .ih-title{ font-size:32px; line-height:32px; }
  .about-title{ font-size:38px; line-height:36px; }
  .tl-title{ font-size:32px; line-height:32px; }
  .team h2{ font-size:32px; }
  .partners h2{ font-size:28px; line-height:32px; }

  .inner-hero{ padding:30px 30px; }
  .about-intro{ padding:30px 30px; }
  .about-intro-row{ gap:30px; }
  .timeline{ padding:30px 30px; }
  .tl-image{ margin:0 auto 30px; }
  .team{ padding:30px 30px; }
  .team-row{ margin-top:30px; }
  .mvv{ padding:30px 30px; gap:30px; }
  .partners{ padding:30px 0; }
}


/* ============================================================
   EXPERIENCE PAGE-ONLY STYLES
   ============================================================ */
/* ============================================================
   MediaFlow24 — EXPERIENCE PAGE STYLES
   ============================================================ */

/* Inner hero (experience-page-specific additions) */
.ih-eyebrow{ margin:0 0 12px; color:var(--dark-grey); font-weight:800; font-size:22px; line-height:28px; text-transform:uppercase; }

/* Intro copy */
.exp-intro{ background:#fff; width:1920px; padding:60px 122px; box-sizing:border-box; }
.exp-intro-inner{ max-width:1438px; margin:0 auto; text-align:center; }

/* Case study section */
.case-study{ position:relative; width:1920px; background:#fff; overflow:hidden; padding:76px 0 90px; }
.cs-blob{ position:absolute; border-radius:50%; opacity:.5; }
.cs-blob-left{ width:1250px; height:1250px; left:-450px; top:-360px; background:radial-gradient(circle at 40% 40%, #fff 0%, var(--light-grey) 55%, transparent 75%); }
.cs-blob-right{ /*! width:1250px; */ /*! height:1250px; */ /*! right:-500px; */ /*! top:130px; */ /*! background:radial-gradient(circle at 60% 45%, #fff 0%, var(--light-grey) 55%, transparent 75%); */ }
.cs-row{ display:flex; align-items:center; gap:0; }
.cs-images{ position:relative; width:900px; height:511px; flex-shrink:0; margin-left:10px; }
.cs-images img{ position:absolute; object-fit:contain; }
.cs-img-laptop{ left:0; top:60px; width:707px; height:466px; }
.cs-img-cards{ left:520px; top:0; width:384px; height:372px; }
.cs-text{ width:875px; }
.cs-eyebrow{ margin:0; color:var(--highlight); font-weight:900; font-size:22px; line-height:40px; text-transform:uppercase; }
.cs-title{ margin:0; color:var(--primary); font-weight:900; font-size:95px; line-height:76px; text-transform:uppercase; }
.cs-copy{ margin:20px 0 0; color:#000; width:874px; }
.cs-cols{ position:relative; display:flex; gap:70px; margin:70px 125px 0; }
.cs-col{ width:510px; display:flex; flex-direction:column; gap:30px; }
.cs-col h4{ margin:0; color:var(--primary); font-weight:900; font-size:40px; text-transform:uppercase; }
.cs-col p{ margin:0; color:#000; }

/* Skill-based games (purple) */
.skill{ position:relative; width:1920px; min-height:907px; background:var(--primary); overflow:hidden; padding:80px 0; box-sizing:border-box; }
.skill-bg{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; object-position:bottom; opacity:.12; }
.skill-content{ position:relative; display:flex; align-items:center; gap:60px; padding:0 167px; }
.skill-text{ display:flex; flex-direction:column; gap:20px; max-width:809px; }
.skill-eyebrow{ margin:0; color:var(--highlight); font-weight:900; font-size:22px; line-height:40px; text-transform:uppercase; }
.skill-title{ margin:0; color:#fff; font-weight:900; font-size:70px; line-height:70px; text-transform:uppercase; }
.skill-copy{ margin:0; color:#fff; }
.skill-image{ width:785px; height:auto; object-fit:contain; flex-shrink:0; }

/* How to start CTA */
.how-to-start{ position:relative; width:1920px; height:778.5px; background:var(--secondary); overflow:hidden; }
.hts-bg{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; opacity:.1; mix-blend-mode:luminosity; }
.hts-content{ position:relative; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:40px; height:100%; text-align:center; }
.hts-title{ margin:0; color:#fff; font-weight:900; font-size:125px; line-height:98px; text-transform:uppercase; }
.hts-sub{ margin:0; color:#fff; font-weight:800; font-size:22px; text-transform:uppercase; }

/* ============================================================
   RESPONSIVE — Experience page
   ============================================================ */
@media (max-width: 1024px){
  .inner-hero{ width:100%; padding:50px 50px; }
  .ih-eyebrow{ font-size:18px; }
  .ih-title{ font-size:38px; line-height:40px; }

  .exp-intro{ width:100%; padding:50px 50px; }

  .case-study{ width:100%; padding:50px 50px; }
  .cs-row{ flex-direction:column; align-items:center; text-align:center; }
  /* Fixed-height box previously distorted/cropped this layered image —
     aspect-ratio keeps the laptop + cards composition proportional and uncut */
  .cs-images{ width:100%; max-width:420px; height:auto; aspect-ratio:900/511; margin:0 auto 50px; }
  .cs-img-laptop{ left:0; top:16%; width:78%; height:auto; }
  .cs-img-cards{ left:56%; top:0; width:42%; height:auto; }
  .cs-text{ width:100%; max-width:600px; }
  .cs-title{ font-size:40px; line-height:38px; }
  .cs-copy{ width:100%; }
  .cs-cols{ flex-direction:column; margin:50px 0 0; gap:36px; }
  .cs-col{ width:100%; }

  .skill{ width:100%; min-height:0; padding:50px 50px; }
  .skill-content{ flex-direction:column; padding:0; text-align:center; align-items:center; }
  .skill-text{ max-width:600px; align-items:center; }
  .skill-title{ font-size:40px; line-height:40px; }
  .skill-image{ width:100%; max-width:420px; margin-top:50px; }

  .how-to-start{ width:100%; height:auto; padding:50px 50px; }
  .hts-title{ font-size:52px; line-height:48px; }
  .hts-sub{ font-size:22px; }
}

@media (max-width: 560px){
  .ih-title{ font-size:30px; line-height:32px; }
  .cs-title{ font-size:30px; line-height:32px; }
  .skill-title{ font-size:30px; line-height:32px; }
  .hts-title{ font-size:38px; line-height:36px; }

  .inner-hero{ padding:30px 30px; }
  .exp-intro{ padding:30px 30px; }
  .case-study{ padding:30px 30px; }
  .cs-images{ margin:0 auto 30px; }
  .cs-cols{ margin:30px 0 0; }
  .skill{ padding:30px 30px; }
  .skill-image{ margin-top:30px; }
  .how-to-start{ padding:30px 30px; }
}


/* ============================================================
   OUR GROUP PAGE-ONLY STYLES
   ============================================================ */
.group-intro{ background:#fff; width:1920px; padding:110px 122px 90px; box-sizing:border-box; }
.group-intro-inner{ max-width:1438px; margin:0 auto; }
.group-eyebrow{ margin:0; color:var(--primary); font-weight:800; font-size:20px; line-height:28px; text-transform:uppercase; }
.group-intro-inner p{ margin:20px 0 0; }

.group-section{ background:var(--light-grey); width:1920px; padding:120px 122px; box-sizing:border-box; }
.group-grid{ display:grid; grid-template-columns:repeat(4, 1fr); gap:30px; max-width:1676px; margin:0 auto; }
.group-card{ background:#fff; border-radius:20px; padding:40px 32px; display:flex; flex-direction:column; gap:20px; }
.group-card-mark{
  width:64px; height:64px; flex-shrink:0; display:block;
  /*! filter:drop-shadow(0 6px 12px rgba(0,0,0,.18)); */
}
.group-card h3{ margin:0; color:var(--primary); font-weight:900; font-size:26px; text-transform:uppercase; }
.group-card ul{ margin:0; padding:0; display:flex; flex-direction:column; gap:10px; list-style: none;}
.group-card ul li{ font-size:16px; line-height:22px; color:#000; padding-left:26px; position:relative; }
.group-card ul li::before{
  content:''; position:absolute; left:0; top:2px; width:16px; height:16px;
  border-radius:50%; background:var(--highlight);
}
.group-card ul li::after{
  content:''; position:absolute; left:4.5px; top:5.5px; width:7px; height:4px;
  border-left:2px solid #fff; border-bottom:2px solid #fff; transform:rotate(-45deg);
}

@media (max-width: 1024px){
  .group-intro{ width:100%; padding:50px 50px; }
  .group-section{ width:100%; padding:50px 50px; }
  .group-grid{ grid-template-columns:1fr; max-width:none; }
}
@media (max-width: 560px){
  .group-intro{ padding:30px 30px; }
  .group-section{ padding:30px 30px; }
}
@media (min-width: 1025px) and (max-width: 1400px){
  .group-grid{ grid-template-columns:repeat(2, 1fr); }
}

/* ============================================================
   NEWS PAGE-ONLY STYLES
   ============================================================ */
.news-heading{ background:#fff; width:1920px; padding:120px 122px 60px; box-sizing:border-box; text-align:center; }
.news-heading h1{ margin:0; color:var(--primary); font-weight:900; font-size:70px; line-height:74px; text-transform:uppercase; }
.news-heading h1 .light{ font-weight:300; }

.news-filter{ background:#fff; width:1920px; padding:0 122px 70px; box-sizing:border-box; display:flex; justify-content:center; gap:16px; flex-wrap:wrap; }
.filter-btn{
  border:2px solid var(--light-grey); background:#fff; color:var(--black);
  font-weight:700; font-size:16px; text-transform:uppercase; padding:12px 28px;
  border-radius:100px; cursor:pointer; transition:background .2s ease, color .2s ease, border-color .2s ease;
}
.filter-btn:hover{ border-color:var(--primary); }
.filter-btn.active{ background:var(--primary); border-color:var(--primary); color:#fff; }

.news-section{ background:var(--light-grey); width:1920px; padding:0 122px 150px; box-sizing:border-box; }
.news-grid{ display:grid; grid-template-columns:repeat(3, 1fr); gap:40px; max-width:1676px; margin:0 auto; }
.news-card{ background:#fff; border-radius:20px; overflow:hidden; display:flex; flex-direction:column; text-decoration:none; color:inherit; transition:transform .25s ease, box-shadow .25s ease; }
.news-card:hover{ transform:translateY(-6px); box-shadow:0 20px 40px rgba(75,70,152,.18); }
.news-thumb{ height:220px; overflow:hidden; }
.news-thumb img{ width:100%; height:100%; object-fit:cover; }
.news-body{ padding:30px; display:flex; flex-direction:column; gap:14px; }
.news-tag{ display:inline-block; width:max-content; background:var(--light-grey); color:var(--primary); font-weight:700; font-size:12px; text-transform:uppercase; padding:6px 14px; border-radius:100px; }
.news-card h3{ margin:0; color:var(--primary); font-weight:900; font-size:22px; line-height:28px; text-transform:none; }
.news-card p{ margin:0; font-size:16px; line-height:24px; color:#000; }

@media (max-width: 1024px){
  .news-heading{ width:100%; padding:50px 50px; }
  .news-heading h1{ font-size:38px; line-height:40px; }
  .news-filter{ width:100%; padding:0 50px 50px; }
  .news-section{ width:100%; padding:0 50px 50px; }
  .news-grid{ grid-template-columns:1fr; max-width:none; }
}
@media (max-width: 560px){
  .news-heading{ padding:30px 30px; }
  .news-filter{ padding:0 30px 30px; }
  .news-section{ padding:0 30px 30px; }
}
@media (min-width: 1025px) and (max-width: 1400px){
  .news-grid{ grid-template-columns:repeat(2, 1fr); }
}

/* ============================================================
   CONTACT US PAGE-ONLY STYLES
   ============================================================ */
.contact-heading{ background:var(--light-grey-2); width:1920px; padding:120px 122px 80px; box-sizing:border-box; text-align:center; }
.contact-heading h1{ margin:0; color:var(--primary); font-weight:900; font-size:70px; line-height:74px; text-transform:uppercase; }
.contact-heading p{ margin:20px auto 0; max-width:700px; }

.contact-section{ background:#fff; width:1920px; padding:100px 122px 150px; box-sizing:border-box; }
.contact-row{ display:flex; gap:80px; max-width:1676px; margin:0 auto; align-items:stretch; }
.contact-form-wrap{ flex:1 1 60%; background:var(--light-grey); border-radius:30px; padding:60px; box-sizing:border-box; }
.contact-form{ display:flex; flex-direction:column; gap:24px; }
.form-row{ display:flex; gap:24px; }
.form-field{ flex:1; display:flex; flex-direction:column; gap:8px; }
.form-field label{ font-weight:700; font-size:14px; text-transform:uppercase; color:var(--dark-grey); }
.form-field input, .form-field textarea{
  border:2px solid #dcdaf3; border-radius:10px; padding:14px 18px; font-family:inherit;
  font-size:16px; color:#000; background:#fff; resize:vertical; transition:border-color .2s ease;
}
.form-field input:focus, .form-field textarea:focus{ outline:none; border-color:var(--primary); }
.form-consent{ display:flex; gap:12px; align-items:flex-start; font-size:13px; line-height:19px; color:var(--dark-grey); }
.form-consent input{ margin-top:3px; flex-shrink:0; }
.contact-form .btn{ align-self:flex-start; border:none; cursor:pointer; }

.contact-info-wrap{ flex:1 1 40%; display:flex; flex-direction:column; gap:40px; }
.contact-photo{ border-radius:30px; height:280px; overflow:hidden; }
.contact-photo img{ width:100%; height:100%; object-fit:cover; }
.contact-details{ display:flex; flex-direction:column; gap:28px; }
.contact-detail{ display:flex; gap:18px; align-items:center; }
.contact-detail-icon{
  width:52px; height:52px; border-radius:50%; background:var(--highlight); flex-shrink:0;
  display:flex; align-items:center; justify-content:center;
}
.contact-detail-icon svg{ width:24px; height:24px; stroke:#fff; fill:none; stroke-width:2; }
.contact-detail h4{ margin:0 0 6px; color:var(--primary); font-weight:900; font-size:18px; text-transform:uppercase; }
.contact-detail p{ margin:0; }

@media (max-width: 1024px){
  .contact-heading{ width:100%; padding:50px 50px; }
  .contact-heading h1{ font-size:38px; line-height:40px; }
  .contact-section{ width:100%; padding:50px 50px; }
  .contact-row{ flex-direction:column; gap:40px; }
  .contact-form-wrap{ padding:30px; }
  .form-row{ flex-direction:column; gap:20px; }
}
@media (max-width: 560px){
  .contact-heading{ padding:30px 30px; }
  .contact-section{ padding:30px 30px; }
  .contact-form-wrap{ padding:20px; }
}

/* ============================================================
   Lead form inline feedback (added for LEO backend integration)
   ============================================================ */
.form-msg{ display:none; margin-top:16px; padding:12px 16px; border-radius:8px; font-size:14px; line-height:1.5; }
.form-msg.show{ display:block; }
.form-msg.success{ background:rgba(137,195,19,.12); border:1px solid rgba(137,195,19,.45); color:#4f7a0a; }
.form-msg.error{ background:rgba(220,53,69,.1); border:1px solid rgba(220,53,69,.4); color:#b02a37; }
.btn:disabled,.btn[disabled]{ opacity:.6; cursor:not-allowed; }
