
:root{
  --white:#ffffff;
  --page:#f8fafc;
  --soft:#f1f5f9;
  --soft-blue:#f4f8ff;
  --ink:#0f1720;
  --ink-2:#253243;
  --muted:#667384;
  --faint:#8b97a7;
  --line:#dce3eb;
  --line-soft:#e9eef4;
  --blue:#315f9f;
  --max:1180px;
}

*{box-sizing:border-box}

html{scroll-behavior:smooth}

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

body::selection{
  background:#dbeafe;
  color:#0f1720;
}

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

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

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

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

.brand{
  display:flex;
  align-items:center;
}

.brand-copy{
  display:flex;
  flex-direction:column;
  line-height:1.1;
}

.brand-copy strong{
  font-family:Manrope,sans-serif;
  font-size:17px;
  letter-spacing:.18em;
  color:var(--ink);
}

.brand-copy small{
  margin-top:5px;
  font-size:10px;
  color:var(--muted);
  letter-spacing:.08em;
}

.nav-links{
  display:flex;
  align-items:center;
  gap:28px;
  font-size:13px;
  color:#4d5a69;
}

.nav-links>a:not(.btn):hover{
  color:var(--ink);
}

/* BUTTONS */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:50px;
  padding:0 22px;
  border:1px solid transparent;
  font-size:13px;
  font-weight:700;
  letter-spacing:.01em;
  transition:.2s ease;
  cursor:pointer;
}

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

.btn-primary:hover{
  background:#233142;
  border-color:#233142;
  transform:translateY(-1px);
}

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

.btn-secondary:hover{
  background:#f8fafc;
  border-color:#9eabb9;
}

.btn-small{
  min-height:38px;
  padding:0 16px;
}

.btn-wide{
  width:100%;
  margin-top:6px;
}

/* HERO */
.hero{
  position:relative;
  overflow:hidden;
  min-height:720px;
  display:flex;
  align-items:center;
  background:#ffffff;
  border-bottom:1px solid var(--line);
}

.grid-glow{
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 72% 23%,rgba(81,133,205,.10),transparent 28%),
    linear-gradient(rgba(15,23,32,.035) 1px,transparent 1px),
    linear-gradient(90deg,rgba(15,23,32,.035) 1px,transparent 1px);
  background-size:auto,54px 54px,54px 54px;
  mask-image:linear-gradient(to bottom,black,transparent 94%);
}

.hero-grid{
  position:relative;
  display:grid;
  grid-template-columns:1.4fr .75fr;
  gap:90px;
  align-items:center;
  padding:110px 0;
}

.eyebrow{
  margin-bottom:20px;
  font-size:11px;
  letter-spacing:.22em;
  color:#4a6e9f;
  font-weight:700;
}

h1,h2,h3{
  margin:0;
  font-family:Manrope,sans-serif;
  letter-spacing:-.035em;
  color:var(--ink);
}

h1{
  max-width:880px;
  font-size:clamp(46px,6vw,76px);
  line-height:1.02;
}

.hero-lead{
  max-width:760px;
  margin:28px 0 0;
  font-size:19px;
  color:#596777;
}

.hero-actions{
  display:flex;
  gap:14px;
  margin-top:38px;
  flex-wrap:wrap;
}

.hero-statement{
  display:flex;
  align-items:center;
  gap:16px;
  margin-top:42px;
}

.statement-rule{
  width:48px;
  height:1px;
  background:#6689b7;
}

.hero-statement p{
  margin:0;
  color:#273544;
  font-weight:600;
}

/* HERO PANEL */
.hero-panel{
  overflow:hidden;
  border:1px solid #d3dce6;
  background:#ffffff;
  box-shadow:0 24px 70px rgba(39,56,78,.10);
}

.panel-label{
  padding:18px 22px;
  border-bottom:1px solid var(--line);
  background:#f7f9fc;
  font-size:10px;
  color:#758295;
  letter-spacing:.2em;
  font-weight:700;
}

.category-row{
  display:grid;
  grid-template-columns:48px 1fr;
  align-items:center;
  padding:21px 22px;
  border-bottom:1px solid var(--line-soft);
  background:#fff;
}

.category-row span{
  font-size:11px;
  color:#929dad;
}

.category-row strong{
  font-family:Manrope,sans-serif;
  font-size:18px;
  color:#1a2634;
}

.panel-note{
  padding:24px 22px;
  background:#fafbfd;
  color:#6e7a89;
  font-size:13px;
}

.panel-note p{margin:0}

/* THREE CREDIBILITY ITEMS */
.trust-strip{
  background:#f8fafc;
  border-bottom:1px solid var(--line);
}

.trust-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
}

.trust-grid>div{
  padding:28px 34px;
  border-right:1px solid var(--line);
}

.trust-grid>div:first-child{
  padding-left:0;
}

.trust-grid>div:last-child{
  border-right:0;
}

.trust-grid span{
  display:block;
  margin-bottom:10px;
  font-size:10px;
  color:#919cac;
}

.trust-grid strong{
  font-family:Manrope,sans-serif;
  font-size:16px;
  color:#1b2734;
}

.trust-grid p{
  max-width:320px;
  margin:7px 0 0;
  font-size:13px;
  color:#6d7989;
}

/* GENERAL SECTIONS */
.section{
  padding:120px 0;
  background:#ffffff;
}

.section-heading{
  max-width:720px;
  margin-bottom:54px;
}

.section-heading h2,
.approach-grid h2,
.rfq-copy h2,
.contact-box h2{
  font-size:clamp(36px,4vw,54px);
  line-height:1.07;
}

.section-heading p{
  margin:20px 0 0;
  color:#687587;
  font-size:17px;
}

/* CAPABILITY CARDS */
.cards{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  border-top:1px solid var(--line);
  border-left:1px solid var(--line);
}

.cap-card{
  min-height:260px;
  padding:34px;
  border-right:1px solid var(--line);
  border-bottom:1px solid var(--line);
  background:#ffffff;
  transition:.2s ease;
}

.cap-card:hover{
  background:#f9fbfd;
}

.card-index{
  font-size:10px;
  color:#929dac;
}

.cap-card h3{
  margin-top:54px;
  font-size:25px;
}

.cap-card p{
  max-width:470px;
  margin:16px 0 0;
  color:#6a7787;
  font-size:14px;
}

/* APPROACH - NOW LIGHT */
.section-dark{
  background:#f4f7fa;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

.approach-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:100px;
}

.approach-copy{
  color:#637082;
  font-size:17px;
}

.approach-copy p{
  margin:0 0 22px;
}

.process{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  margin-top:76px;
  border-top:1px solid #cfd8e2;
}

.process-step{
  display:flex;
  gap:20px;
  padding:28px 26px 0 0;
}

.process-step>span{
  margin-top:4px;
  font-size:10px;
  color:#8b97a7;
}

.process-step strong{
  font-family:Manrope,sans-serif;
  font-size:15px;
  color:#172230;
}

.process-step p{
  margin:7px 0 0;
  color:#748091;
  font-size:13px;
}

/* RFQ */
.rfq-section{
  padding:120px 0;
  background:#ffffff;
}

.rfq-grid{
  display:grid;
  grid-template-columns:.8fr 1.2fr;
  gap:100px;
  align-items:start;
}

.rfq-copy p{
  max-width:490px;
  margin:20px 0;
  color:#697687;
  font-size:16px;
}

.rfq-callout{
  margin-top:34px;
  padding-top:20px;
  border-top:1px solid var(--line);
  font-family:Manrope,sans-serif;
  font-weight:700;
  font-size:18px;
  color:#1b2734;
}

.rfq-form{
  padding:30px;
  border:1px solid #d5dde6;
  background:#f8fafc;
  box-shadow:0 18px 48px rgba(43,62,87,.07);
}

.form-row{
  display:grid;
  gap:18px;
}

.form-row.two{
  grid-template-columns:1fr 1fr;
}

label{
  display:block;
  margin-bottom:16px;
  color:#596676;
  font-size:12px;
}

input,textarea{
  display:block;
  width:100%;
  margin-top:8px;
  padding:13px 14px;
  border:1px solid #ccd5df;
  background:#fff;
  color:#17202b;
  font:inherit;
  font-size:14px;
  outline:none;
}

input{
  height:47px;
}

textarea{
  resize:vertical;
}

input::placeholder,
textarea::placeholder{
  color:#9aa5b3;
}

input:focus,
textarea:focus{
  border-color:#6d91c0;
  box-shadow:0 0 0 3px rgba(76,117,172,.10);
}

.form-note{
  margin:12px 0 0;
  color:#8a95a4;
  font-size:11px;
  text-align:center;
}

/* CONTACT */
.contact-section{
  padding:0 0 120px;
  background:#ffffff;
}

.contact-box{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:40px;
  padding:48px;
  border:1px solid #d7dfe8;
  background:#f2f6fa;
}

.contact-box p{
  margin:14px 0 0;
  color:#697687;
}

/* FOOTER */
footer{
  padding:36px 0;
  border-top:1px solid var(--line);
  background:#f8fafc;
}

.footer-grid{
  display:grid;
  grid-template-columns:1fr 1.4fr 1fr;
  align-items:center;
  gap:30px;
}

.footer-grid>p{
  margin:0;
  color:#768292;
  font-size:12px;
}

.footer-meta{
  text-align:right;
}

/* RESPONSIVE */
@media(max-width:900px){
  .nav-links>a:not(.btn){display:none}
  .hero{min-height:auto}
  .hero-grid,.rfq-grid,.approach-grid{
    grid-template-columns:1fr;
    gap:54px;
  }
  .hero-grid{padding:82px 0}
  .trust-grid{grid-template-columns:1fr}
  .trust-grid>div{
    padding:22px 0;
    border-right:0;
    border-bottom:1px solid var(--line);
  }
  .trust-grid>div:last-child{border-bottom:0}
  .cards{grid-template-columns:1fr}
  .process{grid-template-columns:1fr}
  .process-step{
    padding:24px 0;
    border-bottom:1px solid var(--line);
  }
  .contact-box{
    align-items:flex-start;
    flex-direction:column;
  }
  .footer-grid{grid-template-columns:1fr}
  .footer-meta{text-align:left}
}

@media(max-width:600px){
  .container{
    width:min(100% - 26px,var(--max));
  }

  .nav-wrap{
    min-height:68px;
  }

  .brand-copy small{
    display:none;
  }

  h1{
    font-size:43px;
  }

  .hero-lead{
    font-size:16px;
  }

  .hero-actions{
    flex-direction:column;
  }

  .btn{
    width:100%;
  }

  .nav-links .btn{
    width:auto;
  }

  .section,
  .rfq-section{
    padding:82px 0;
  }

  .cards{
    border-left:0;
  }

  .cap-card{
    padding:26px;
    border-left:1px solid var(--line);
  }

  .form-row.two{
    grid-template-columns:1fr;
  }

  .rfq-form{
    padding:20px;
  }

  .contact-box{
    padding:30px 24px;
  }
}


/* V5 FOOTER RESET - NO ICON / NO LOGO MARK */
.footer-identity{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  line-height:1.08;
}

.footer-identity::before,
.footer-identity::after,
.footer-identity strong::before,
.footer-identity strong::after{
  content:none !important;
  display:none !important;
}

.footer-identity strong{
  display:block;
  margin:0;
  padding:0;
  font-family:Manrope,sans-serif;
  font-size:18px;
  font-weight:800;
  letter-spacing:.18em;
  color:#0f1720;
}

.footer-identity small{
  display:block;
  margin-top:6px;
  font-size:11px;
  letter-spacing:.08em;
  color:#6b7787;
}

.footer-description{
  max-width:580px;
  color:#6f7c8d !important;
  font-size:13px !important;
  line-height:1.55;
}

.footer-meta{
  color:#7b8797 !important;
  font-size:12px !important;
  white-space:nowrap;
}

@media(max-width:900px){
  .footer-description{max-width:none}
  .footer-meta{white-space:normal}
}


/* V6 FOOTER DESCRIPTION - SINGLE LINE ON DESKTOP */
.footer-description{
  max-width:none !important;
  white-space:nowrap;
}

@media(max-width:900px){
  .footer-description{
    white-space:normal;
  }
}


/* V7 FOOTER LAYOUT - KEEP DESCRIPTION ON ONE CLEAN LINE */
.footer-grid{
  grid-template-columns: 280px minmax(0, 1fr) auto !important;
  column-gap: 48px !important;
}

.footer-description{
  max-width:none !important;
  width:auto !important;
  white-space:nowrap !important;
  overflow:visible !important;
  margin:0 !important;
}

.footer-meta{
  white-space:nowrap !important;
}

@media(max-width:1100px){
  .footer-grid{
    grid-template-columns: 240px minmax(0, 1fr) auto !important;
    column-gap:32px !important;
  }

  .footer-description{
    font-size:12px !important;
  }
}

@media(max-width:900px){
  .footer-grid{
    grid-template-columns:1fr !important;
    row-gap:18px !important;
  }

  .footer-description,
  .footer-meta{
    white-space:normal !important;
  }
}


/* V8 - WIDER PAGE LAYOUT */
:root{
  --max: 1480px !important;
}

.container{
  width:min(var(--max), calc(100% - 64px)) !important;
}

/* Let the hero breathe wider across large displays */
.hero-grid{
  grid-template-columns: minmax(0, 1.55fr) minmax(360px, .75fr) !important;
  gap:110px !important;
}

/* Allow main heading and supporting copy to use the wider canvas */
h1{
  max-width:980px !important;
}

.hero-lead{
  max-width:900px !important;
}

/* Wider content sections */
.section-heading{
  max-width:860px !important;
}

.cap-card p{
  max-width:600px !important;
}

.approach-grid{
  grid-template-columns:minmax(0, .95fr) minmax(0, 1.05fr) !important;
  gap:120px !important;
}

.rfq-grid{
  grid-template-columns:minmax(380px, .8fr) minmax(0, 1.2fr) !important;
  gap:120px !important;
}

.rfq-copy p{
  max-width:560px !important;
}

/* Make footer take advantage of the wider page */
.footer-grid{
  grid-template-columns: 300px minmax(0, 1fr) auto !important;
  column-gap:64px !important;
}

/* Header/nav also benefits from the wider container */
.nav-wrap{
  width:100%;
}

/* Slightly reduce over-centering on ultra-wide displays */
@media(min-width:1600px){
  :root{
    --max:1560px !important;
  }

  .container{
    width:min(var(--max), calc(100% - 80px)) !important;
  }

  .hero-grid{
    gap:130px !important;
  }
}

/* Keep tablet/mobile comfortable */
@media(max-width:1100px){
  .container{
    width:min(100% - 40px, var(--max)) !important;
  }

  .hero-grid,
  .approach-grid,
  .rfq-grid{
    gap:64px !important;
  }
}

@media(max-width:900px){
  .container{
    width:min(100% - 32px, var(--max)) !important;
  }
}

@media(max-width:600px){
  .container{
    width:min(100% - 26px, var(--max)) !important;
  }
}


/* V9 - TRUE WIDE DESKTOP COMPOSITION */
:root{
  --max: 1640px !important;
}

.container{
  width:min(var(--max), calc(100% - 72px)) !important;
}

/* HEADER */
.nav-wrap{
  min-height:82px !important;
}

/* HERO: give headline significantly more horizontal room */
.hero-grid{
  grid-template-columns:minmax(0, 1.95fr) minmax(300px, .58fr) !important;
  gap:96px !important;
  padding:108px 0 118px !important;
  align-items:center !important;
}

.hero-copy{
  min-width:0 !important;
}

h1{
  max-width:1180px !important;
  font-size:clamp(50px, 4.7vw, 76px) !important;
  line-height:1.025 !important;
  letter-spacing:-.04em !important;
}

.hero-lead{
  max-width:920px !important;
  font-size:19px !important;
}

/* Keep the category box compact so it does not squeeze the headline */
.hero-panel{
  width:100% !important;
  max-width:390px !important;
  justify-self:end !important;
}

/* Broaden all primary section content */
.section-heading{
  max-width:980px !important;
}

.cards{
  width:100% !important;
}

.cap-card{
  padding:40px !important;
}

.cap-card p{
  max-width:680px !important;
}

/* Approach section uses full page better */
.approach-grid{
  grid-template-columns:minmax(0, .9fr) minmax(0, 1.1fr) !important;
  gap:150px !important;
}

.approach-copy{
  max-width:760px !important;
}

/* Spread process steps more naturally */
.process{
  column-gap:48px !important;
}

/* RFQ: widen overall layout */
.rfq-grid{
  grid-template-columns:minmax(420px, .78fr) minmax(0, 1.22fr) !important;
  gap:150px !important;
}

.rfq-copy{
  max-width:620px !important;
}

.rfq-form{
  width:100% !important;
  max-width:none !important;
}

/* Contact section */
.contact-box{
  padding:54px 60px !important;
}

/* Footer */
.footer-grid{
  grid-template-columns:320px minmax(0, 1fr) auto !important;
  column-gap:72px !important;
}

/* Large desktop */
@media(min-width:1700px){
  :root{
    --max:1720px !important;
  }

  .container{
    width:min(var(--max), calc(100% - 96px)) !important;
  }

  .hero-grid{
    grid-template-columns:minmax(0, 2.05fr) minmax(300px, .55fr) !important;
    gap:120px !important;
  }

  h1{
    max-width:1240px !important;
    font-size:76px !important;
  }
}

/* Medium desktop: retain broad layout without overflow */
@media(max-width:1350px){
  :root{
    --max:1240px !important;
  }

  .container{
    width:min(var(--max), calc(100% - 48px)) !important;
  }

  .hero-grid{
    grid-template-columns:minmax(0, 1.7fr) minmax(300px, .7fr) !important;
    gap:70px !important;
  }

  h1{
    max-width:900px !important;
    font-size:clamp(48px,5vw,68px) !important;
  }

  .approach-grid,
  .rfq-grid{
    gap:90px !important;
  }
}

@media(max-width:900px){
  .hero-grid,
  .approach-grid,
  .rfq-grid{
    grid-template-columns:1fr !important;
  }

  .hero-panel{
    max-width:none !important;
    justify-self:stretch !important;
  }

  h1{
    max-width:none !important;
  }
}

/* FORCE FOOTER CENTER TEXT */
footer .footer-grid{
  position:relative !important;
  display:grid !important;
  grid-template-columns:1fr 1fr 1fr !important;
  align-items:center !important;
}

footer .footer-identity{
  grid-column:1 !important;
  justify-self:start !important;
}

footer .footer-description{
  grid-column:2 !important;
  justify-self:center !important;
  position:static !important;
  transform:none !important;
  width:max-content !important;
  max-width:none !important;
  margin:0 !important;
  text-align:center !important;
  white-space:nowrap !important;
}

footer .footer-meta{
  grid-column:3 !important;
  justify-self:end !important;
  text-align:right !important;
}

@media(max-width:900px){
  footer .footer-grid{
    grid-template-columns:1fr !important;
    row-gap:18px !important;
  }

  footer .footer-identity,
  footer .footer-description,
  footer .footer-meta{
    grid-column:1 !important;
    justify-self:start !important;
    text-align:left !important;
    white-space:normal !important;
  }
}


/* FINAL FOOTER ALIGNMENT */
footer{
  position:relative !important;
}

footer .footer-grid{
  display:grid !important;
  grid-template-columns:1fr auto 1fr !important;
  align-items:center !important;
  width:100% !important;
  max-width:none !important;
  margin:0 !important;
  padding-left:72px !important;
  padding-right:72px !important;
}

footer .footer-identity{
  grid-column:1 !important;
  justify-self:start !important;
}

footer .footer-description{
  grid-column:2 !important;
  justify-self:center !important;
  position:static !important;
  transform:none !important;
  width:max-content !important;
  max-width:none !important;
  margin:0 !important;
  text-align:center !important;
  white-space:nowrap !important;
}

footer .footer-meta{
  grid-column:3 !important;
  justify-self:end !important;
  text-align:right !important;
  white-space:nowrap !important;
}

@media(max-width:900px){
  footer .footer-grid{
    grid-template-columns:1fr !important;
    padding-left:24px !important;
    padding-right:24px !important;
    row-gap:18px !important;
  }

  footer .footer-identity,
  footer .footer-description,
  footer .footer-meta{
    grid-column:1 !important;
    justify-self:start !important;
    text-align:left !important;
    white-space:normal !important;
  }
}


/* ABSOLUTE FINAL FOOTER FIX */
footer{
  position:relative !important;
  min-height:112px !important;
  display:flex !important;
  align-items:center !important;
}

footer .footer-grid{
  position:static !important;
  display:grid !important;
  grid-template-columns:minmax(0,1fr) minmax(0,1fr) !important;
  width:100% !important;
  max-width:none !important;
  margin:0 !important;
  padding-left:72px !important;
  padding-right:72px !important;
  align-items:center !important;
}

footer .footer-identity{
  grid-column:1 !important;
  justify-self:start !important;
}

footer .footer-description{
  position:absolute !important;
  left:50% !important;
  top:50% !important;
  transform:translate(-50%,-50%) !important;
  width:max-content !important;
  max-width:none !important;
  margin:0 !important;
  padding:0 !important;
  text-align:center !important;
  white-space:nowrap !important;
  z-index:2 !important;
}

footer .footer-meta{
  grid-column:2 !important;
  justify-self:end !important;
  margin:0 !important;
  text-align:right !important;
  white-space:nowrap !important;
}

@media(max-width:900px){
  footer{
    min-height:auto !important;
    padding:30px 0 !important;
  }

  footer .footer-grid{
    grid-template-columns:1fr !important;
    gap:18px !important;
    padding-left:24px !important;
    padding-right:24px !important;
  }

  footer .footer-description{
    position:static !important;
    transform:none !important;
    width:auto !important;
    white-space:normal !important;
    text-align:left !important;
  }

  footer .footer-meta{
    grid-column:1 !important;
    justify-self:start !important;
    text-align:left !important;
  }
}


/* TRUE FINAL FOOTER LAYOUT */

footer{
  position:relative !important;
  display:block !important;
  min-height:112px !important;
  padding:36px 0 !important;
}

footer .footer-grid{
  position:static !important;
  display:grid !important;
  grid-template-columns:1fr 1fr !important;
  align-items:center !important;

  width:min(var(--max), calc(100% - 72px)) !important;
  max-width:var(--max) !important;

  margin:0 auto !important;
  padding:0 !important;
}

footer .footer-identity{
  grid-column:1 !important;
  justify-self:start !important;
  margin:0 !important;
}

footer .footer-meta{
  grid-column:2 !important;
  justify-self:end !important;
  margin:0 !important;

  text-align:right !important;
  white-space:nowrap !important;
}

footer .footer-description{
  position:absolute !important;

  left:50% !important;
  top:50% !important;

  transform:translate(-50%, -50%) !important;

  width:max-content !important;
  max-width:none !important;

  margin:0 !important;
  padding:0 !important;

  text-align:center !important;
  white-space:nowrap !important;

  z-index:2 !important;
}

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

  footer{
    min-height:auto !important;
    padding:30px 0 !important;
  }

  footer .footer-grid{
    display:flex !important;
    flex-direction:column !important;
    align-items:flex-start !important;
    gap:18px !important;

    width:calc(100% - 32px) !important;
  }

  footer .footer-description{
    position:static !important;
    transform:none !important;

    width:auto !important;

    text-align:left !important;
    white-space:normal !important;
  }

  footer .footer-meta{
    text-align:left !important;
    white-space:normal !important;
  }
}



/* ADCOSU SUPPLY ENQUIRY */
.supply-contact-grid{
  display:grid;
  grid-template-columns:minmax(0,.9fr) minmax(520px,1.1fr);
  gap:100px;
  align-items:start;
  padding:58px 60px;
  border:1px solid #d7dfe8;
  background:#f2f6fa;
}

.supply-contact-copy h2{
  margin-top:20px;
}

.supply-contact-copy>p{
  max-width:620px;
  margin:18px 0 0;
  color:#697687;
  font-size:16px;
  line-height:1.65;
}

.supply-contact-note{
  display:flex;
  flex-direction:column;
  gap:7px;
  max-width:620px;
  margin-top:34px;
  padding-top:20px;
  border-top:1px solid #d7dfe8;
}

.supply-contact-note strong{
  color:#1b2734;
  font-size:12px;
}

.supply-contact-note span{
  color:#748191;
  font-size:12px;
  line-height:1.55;
}

.supply-contact-form{
  padding:30px;
  border:1px solid #d5dde6;
  background:#fff;
  box-shadow:0 18px 48px rgba(43,62,87,.06);
}

.supply-contact-form select{
  display:block;
  width:100%;
  margin-top:8px;
  padding:13px 14px;
  border:1px solid #ccd5df;
  background:#fff;
  color:#1b2734;
  font:inherit;
  font-size:13px;
}

.supply-contact-form select:focus{
  border-color:#6d91c0;
  outline:none;
  box-shadow:0 0 0 3px rgba(76,117,172,.10);
}

.supply-enquiry-message{
  display:none;
  margin-top:14px;
  padding:13px 14px;
  font-size:12px;
  line-height:1.5;
}

.supply-enquiry-message.success{
  display:block;
  border:1px solid #bdd8c0;
  background:#f0f8f1;
  color:#2d6635;
}

.supply-enquiry-message.error{
  display:block;
  border:1px solid #e3beb8;
  background:#fff3f1;
  color:#923b31;
}

@media(max-width:1000px){
  .supply-contact-grid{
    grid-template-columns:1fr;
    gap:38px;
  }
}

@media(max-width:600px){
  .supply-contact-grid{
    padding:30px 24px;
  }

  .supply-contact-form{
    padding:20px;
  }
}
