/*
Theme Name: Syntrix Partners Modern
Theme URI: https://syntrixpartners.com
Author: OpenAI
Description: A modern, conversion-focused WordPress theme for Syntrix Partners, using the Syntrix navy, blue, and magenta brand palette for global BPO and professional services.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: syntrix-modern
*/

:root {
  --ink:#07183f;
  --muted:#5f6878;
  --line:#e2e7ee;
  --soft:#ffffff;
  --mint:#ffffff;
  --green:#079bd3;
  --green-dark:#07183f;
  --blue:#079bd3;
  --lavender:#ffffff;
  --magenta:#c21ab5;
  --white:#ffffff;
  --radius:28px;
  --shadow:0 24px 70px rgba(7,24,63,.09);
}

*{box-sizing:border-box}

html{scroll-behavior:smooth}

body{
  margin:0;
  background:var(--white);
  color:var(--ink);
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
}

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

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

::selection{
  background:var(--magenta);
  color:#fff;
}

.container{
  width:min(1180px,calc(100% - 40px));
  margin-inline:auto;
}


/* HEADER */

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.94);
  backdrop-filter:blur(16px);
  border-bottom:1px solid var(--line);
}

.nav-wrap{
  height:78px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:800;
  letter-spacing:-.03em;
  font-size:20px;
  white-space:nowrap;
}

.brand-mark{
  width:34px;
  height:34px;
  border-radius:11px;
  background:linear-gradient(135deg,var(--ink),var(--blue));
  display:grid;
  place-items:center;
  color:#fff;
  font-weight:900;
}

.main-nav{
  display:flex;
  align-items:center;
  gap:28px;
  font-size:14px;
  font-weight:650;
}

.main-nav a:hover{
  color:var(--blue);
}

.nav-actions{
  display:flex;
  align-items:center;
  gap:12px;
}


/* BUTTONS */

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  border-radius:999px;
  padding:13px 20px;
  font-weight:750;
  font-size:14px;
  border:1px solid transparent;
  transition:.22s ease;
  cursor:pointer;
}

.btn-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  border-radius:999px;
  padding:20px 27px;
  font-weight:750;
  font-size:14px;
  border:1px solid transparent;
  transition:.22s ease;
  cursor:pointer;
}

.btn:hover{
  transform:translateY(-1px);
}

.btn-primary{
  background:var(--ink);
  color:#fff;
  box-shadow:0 10px 30px rgba(7,24,63,.16);
}

.btn-primary:hover{
  background:#0b255d;
}

.btn-secondary{
  background:#fff;
  border-color:var(--line);
}

.btn-secondary:hover{
  border-color:var(--blue);
  color:var(--blue);
}

.btn-green{
  background:var(--blue);
  color:#fff;
}

.btn-green:hover{
  background:#087faf;
}

.mobile-toggle{
  display:none;
  background:none;
  border:0;
  font-size:28px;
  color:var(--ink);
}


/* ANNOUNCEMENT */

.announcement{
  background:var(--ink);
  color:#fff;
  text-align:center;
  font-size:13px;
  padding:9px 16px;
}

.announcement strong{
  color:var(--blue);
}


/* HERO */

.hero{
  padding:76px 0 48px;
  overflow:hidden;
  background:#fff;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  background:#fff;
  color:var(--blue);
  border:1px solid rgba(7,155,211,.24);
  font-size:12px;
  font-weight:800;
  letter-spacing:.04em;
  text-transform:uppercase;
}

.hero h1{
  font-size:clamp(52px,7.4vw,104px);
  line-height:.99;
  letter-spacing:-.08em;
  max-width:1060px;
  margin:25px 0 26px;
}

.hero h1 .accent{
  color:var(--blue);
  position:relative;
}

.hero h1 .accent::after{
  content:"";
  display:block;
  width:72px;
  height:5px;
  border-radius:999px;
  background:var(--magenta);
  margin-top:12px;
}

.hero-copy{
  display:grid;
  grid-template-columns:1.5fr .75fr;
  gap:36px;
  align-items:end;
  margin-bottom:42px;
}

.hero-copy-text p{
  font-size:clamp(18px,2vw,23px);
  color:#465166;
  max-width:640px;
  margin:0;
}

.hero-actions{
  display:flex;
  justify-content:flex-start;
  gap:12px;
  flex-wrap:wrap;
  margin: 25px 0 0;
}

.hero-person{
  border-radius:28px;
  overflow:hidden;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  max-height:280px;
  min-height:200px;
  background:#f4f6f9;
}

.hero-person img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:top center;
}


/* HERO STAGE */

.hero-stage{
  border-radius:38px;
  min-height:510px;
  background:#fff;
  border:1px solid var(--line);
  padding:28px;
  position:relative;
  overflow:hidden;
  box-shadow:var(--shadow);
}

.stage-grid{
  height:100%;
  min-height:454px;
  display:grid;
  grid-template-columns:1.3fr .7fr;
  gap:18px;
}

.stage-main,
.stage-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:28px;
  overflow:hidden;
  position:relative;
}

.stage-main img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.stage-side{
  display:grid;
  gap:18px;
  grid-template-rows:1fr 1fr;
}

.stage-card{
  padding:26px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}

.stage-card.dark{
  background:var(--ink);
  color:#fff;
}

.metric{
  font-size:54px;
  font-weight:850;
  letter-spacing:-.06em;
}

.mini-label{
  font-size:12px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.08em;
  color:var(--muted);
}

.stage-card.dark .mini-label{
  color:#aeb6bc;
}

.floating-pill{
  position:absolute;
  background:#fff;
  border:1px solid var(--line);
  box-shadow:0 15px 35px rgba(7,24,63,.12);
  padding:12px 16px;
  border-radius:999px;
  font-size:13px;
  font-weight:750;
}

.pill-one{
  left:32px;
  bottom:28px;
}

.pill-two{
  right:32px;
  top:28px;
}


/* LOGO STRIP */

.logo-strip{
  padding:50px 0;
  border-bottom:1px solid var(--line);
  background:#fff;
}

.logo-strip p{
  text-align:center;
  color:var(--muted);
  font-size:13px;
  margin:0 0 22px;
}

.logo-row{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:18px;
}

.logo-chip{
  height:50px;
  border:1px solid var(--line);
  border-radius:16px;
  display:grid;
  place-items:center;
  font-weight:800;
  color:var(--ink);
  background:#fff;
}

.logo-chip:hover{
  border-color:rgba(7,155,211,.45);
  color:var(--blue);
}


/* SECTIONS */

.section{
  padding:110px 0;
  background:#fff;
}

.section.soft{
  background:#fff;
  border-top:1px solid #f1f3f6;
  border-bottom:1px solid #f1f3f6;
}

.section-head{
  max-width:820px;
  margin-bottom:48px;
}

.section-head h2{
  font-size:clamp(40px,5vw,70px);
  letter-spacing:-.06em;
  line-height:.98;
  margin:16px 0 18px;
}

.section-head p{
  font-size:19px;
  color:var(--muted);
  margin:0;
}


/* SERVICES */

.service-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.service-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:30px;
  min-height:330px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  transition:.22s ease;
}

.service-card:hover{
  transform:translateY(-5px);
  box-shadow:var(--shadow);
  border-color:rgba(7,155,211,.3);
}

.icon-box{
  width:52px;
  height:52px;
  border-radius:16px;
  display:grid;
  place-items:center;
  background:#fff;
  border:1px solid rgba(7,155,211,.25);
  color:var(--blue);
  font-size:24px;
}

.service-card h3{
  font-size:25px;
  letter-spacing:-.03em;
  margin:28px 0 10px;
}

.service-card p{
  color:var(--muted);
  margin:0;
}

.card-link{
  font-weight:800;
  margin-top:28px;
  color:var(--ink);
}

.service-card:hover .card-link{
  color:var(--blue);
}


/* SPLIT PANELS */

.split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
  align-items:stretch;
}

.visual-panel{
  border-radius:34px;
  overflow:hidden;
  min-height:580px;
  background:#fff;
  border:1px solid var(--line);
}

.visual-panel img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.content-panel{
  border-radius:34px;
  background:var(--ink);
  color:#fff;
  padding:54px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.content-panel h2{
  font-size:clamp(38px,4.5vw,62px);
  line-height:1;
  letter-spacing:-.055em;
  margin:16px 0 22px;
}

.content-panel p{
  color:#c7cfd3;
  font-size:18px;
}

.content-panel .eyebrow{
  background:transparent;
  border-color:rgba(7,155,211,.4);
  color:#39b6e2;
}

.checks{
  display:grid;
  gap:16px;
  margin:28px 0 34px;
}

.check{
  display:flex;
  gap:12px;
  align-items:flex-start;
}

.check i{
  font-style:normal;
  width:24px;
  height:24px;
  background:var(--blue);
  border-radius:50%;
  display:grid;
  place-items:center;
  font-size:13px;
  flex:0 0 auto;
}


/* AUDIENCE CARDS */

.audience-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}

.audience-card{
  border-radius:24px;
  padding:26px;
  background:#fff;
  border:1px solid var(--line);
  min-height:220px;
  transition:.22s ease;
}

.audience-card:nth-child(1),
.audience-card:nth-child(2),
.audience-card:nth-child(3),
.audience-card:nth-child(4){
  background:#fff;
}

.audience-card:hover{
  border-color:rgba(7,155,211,.3);
  box-shadow:0 18px 50px rgba(7,24,63,.07);
  transform:translateY(-3px);
}

.audience-card span{
  color:var(--blue);
  font-weight:850;
}

.audience-card h3{
  font-size:22px;
  margin:46px 0 8px;
  letter-spacing:-.03em;
}

.audience-card p{
  margin:0;
  color:#4f5a61;
}


/* PROCESS */

.process{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:0;
  border:1px solid var(--line);
  border-radius:30px;
  overflow:hidden;
  background:#fff;
}

.step{
  padding:32px;
  border-right:1px solid var(--line);
  min-height:260px;
  background:#fff;
}

.step:last-child{
  border-right:0;
}

.step-num{
  font-size:13px;
  font-weight:850;
  color:var(--blue);
}

.step h3{
  font-size:23px;
  margin:58px 0 12px;
}

.step p{
  color:var(--muted);
  margin:0;
}


/* QUOTE */

.quote{
  padding:38px;
  border-radius:32px;
  background:#fff;
  border:1px solid var(--line);
  border-left:5px solid var(--blue);
  font-size:clamp(28px,4vw,48px);
  line-height:1.08;
  letter-spacing:-.045em;
  font-weight:750;
  color:var(--ink);
}

.quote small{
  display:block;
  font-size:14px;
  letter-spacing:0;
  color:var(--muted);
  margin-top:26px;
  font-weight:650;
}


/* CTA */

.cta{
  padding:105px 0;
  background:#fff;
}

.cta-box{
  background:var(--ink);
  color:#fff;
  border-radius:38px;
  padding:64px;
  display:grid;
  grid-template-columns:1.25fr .75fr;
  align-items:end;
  gap:30px;
  overflow:hidden;
  position:relative;
}

.cta-box:after{
  content:"";
  position:absolute;
  width:320px;
  height:320px;
  border-radius:50%;
  background:rgba(7,155,211,.18);
  right:-80px;
  top:-120px;
}

.cta-box h2{
  font-size:clamp(44px,5.5vw,78px);
  letter-spacing:-.065em;
  line-height:.95;
  margin:0;
}

.cta-box p{
  font-size:18px;
  color:#d8e4ee;
}

.cta-actions{
  display:flex;
  gap:12px;
  justify-content:flex-end;
  position:relative;
  z-index:2;
}

.cta .btn-primary{
  background:#fff;
  color:var(--ink);
}

.cta .btn-primary:hover{
  background:var(--blue);
  color:#fff;
}


/* FOOTER */

.site-footer{
  padding:64px 0 26px;
  background:var(--ink);
  color:#fff;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.6fr repeat(3,1fr);
  gap:40px;
}

.footer-brand p{
  color:#9ba5ab;
  max-width:360px;
}

.footer-col h4{
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:.08em;
  color:#89949a;
  margin:0 0 16px;
}

.footer-col a{
  display:block;
  color:#d8dfe2;
  margin:9px 0;
  font-size:14px;
}

.footer-col a:hover{
  color:var(--blue);
}

.footer-bottom{
  margin-top:56px;
  padding-top:22px;
  border-top:1px solid rgba(255,255,255,.12);
  display:flex;
  justify-content:space-between;
  color:#879198;
  font-size:12px;
}


/* INNER PAGES */

.page-shell{
  padding:80px 0;
  background:#fff;
}

.entry-content{
  max-width:820px;
  margin:auto;
}

.entry-content h1{
  font-size:58px;
  letter-spacing:-.05em;
}

.entry-content p{
  font-size:18px;
  color:#48535a;
}


/* TABLET */

@media (max-width:960px){

  .main-nav{
    display:none;
  }

  .mobile-toggle{
    display:block;
  }

  .nav-actions .btn-secondary{
    display:none;
  }

  .hero-copy,
  .split,
  .cta-box{
    grid-template-columns:1fr;
  }

  .hero-actions,
  .cta-actions{
    justify-content:flex-start;
  }

  .stage-grid{
    grid-template-columns:1fr;
  }

  .stage-side{
    grid-template-columns:1fr 1fr;
    grid-template-rows:auto;
  }

  .stage-main{
    min-height:380px;
  }

  .service-grid{
    grid-template-columns:1fr 1fr;
  }

  .audience-grid{
    grid-template-columns:1fr 1fr;
  }

  .process{
    grid-template-columns:1fr 1fr;
  }

  .step:nth-child(2){
    border-right:0;
  }

  .step:nth-child(-n+2){
    border-bottom:1px solid var(--line);
  }

  .footer-grid{
    grid-template-columns:1fr 1fr;
  }

  .mobile-menu{
    display:none;
    position:absolute;
    left:20px;
    right:20px;
    top:68px;
    background:#fff;
    border:1px solid var(--line);
    border-radius:22px;
    padding:18px;
    box-shadow:var(--shadow);
  }

  .mobile-menu.open{
    display:grid;
    gap:6px;
  }

  .mobile-menu a{
    padding:12px;
    font-weight:700;
  }

}


/* MOBILE */
@media (max-width:680px){

  .container{
    width:min(100% - 28px,1180px);
  }

  .announcement{
    font-size:11px;
  }

  .nav-wrap{
    height:68px;
  }

  .hero{
    padding-top:52px;
  }

  .hero h1{
    font-size:49px;
  }

  .hero-copy p{
    font-size:16px;
  }

  .hero-stage{
    padding:14px;
    border-radius:26px;
  }

  .hero-person{
    max-height:220px;
    order:-1;
    margin-bottom:8px;
  }

  .stage-grid{
    min-height:auto;
  }

  .stage-main{
    min-height:320px;
  }

  .stage-side{
    grid-template-columns:1fr;
  }

  .floating-pill{
    display:none;
  }

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

  .section{
    padding:78px 0;
  }

  .section-head h2{
    font-size:42px;
  }

  .service-grid,
  .audience-grid,
  .process{
    grid-template-columns:1fr;
  }

  .step{
    border-right:0;
    border-bottom:1px solid var(--line);
  }

  .step:last-child{
    border-bottom:0;
  }

  .step:nth-child(3){
    border-bottom:1px solid var(--line);
  }

  .content-panel{
    padding:34px;
  }

  .visual-panel{
    min-height:390px;
  }

  .cta-box{
    padding:38px 28px;
  }

  .cta-box h2{
    font-size:47px;
  }

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

  .footer-grid{
    grid-template-columns:1fr;
  }

  .footer-bottom{
    flex-direction:column;
    gap:8px;
  }

}