:root{
  --bg:#f7f6f5;
  --surface:#ffffff;
  --surface-2:#f2f0ee;
  --text:#111111;
  --muted:#5f6674;
  --line:#ded8d3;
  --accent:#ff4b3e;
  --shadow:0 18px 60px rgba(17,17,17,.07);
  --container:1180px;
}

.hp-field{
  display:none !important;
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  color:var(--text);
  background:
    radial-gradient(circle at top right, rgba(255,75,62,.10), transparent 20%),
    linear-gradient(180deg,#fbfbfb 0%, #f5f3f1 100%);
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
}

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

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

.section{
  padding:100px 0;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  padding:11px 16px;
  border:1px solid #ffd2ce;
  border-radius:999px;
  background:rgba(255,255,255,.72);
  color:#e4483d;
  font-size:12px;
  font-weight:800;
  letter-spacing:.12em;
}

.section-heading{
  max-width:880px;
  margin:0 auto 42px;
}

.section-heading.narrow{
  text-align:center;
  max-width:820px;
}

.section-heading h2{
  margin:16px 0 14px;
  font-family:Montserrat,Futura,"Trebuchet MS",Arial,sans-serif;
  font-size:clamp(34px,5vw,62px);
  line-height:.98;
  letter-spacing:-.04em;
}

.section-heading p{
  margin:0;
  color:var(--muted);
  font-size:20px;
  line-height:1.7;
}

.site-header{
  position:sticky;
  top:0;
  z-index:40;
  backdrop-filter:blur(12px);
  background:rgba(248,247,246,.85);
  border-bottom:1px solid rgba(222,216,211,.8);
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding:14px 0;
}

.brand{
  display:inline-flex;
  align-items:center;
  gap:12px;
}

.brand-dot{
  width:16px;
  height:16px;
  border-radius:50%;
  background:var(--accent);
  box-shadow:0 0 0 10px rgba(255,75,62,.08);
}

.brand-text{
  font-family:Montserrat,Futura,"Trebuchet MS",Arial,sans-serif;
  font-weight:900;
  font-size:23px;
  letter-spacing:-.05em;
}

.main-nav{
  display:flex;
  align-items:center;
  gap:34px;
  font-weight:700;
}

.main-nav a{
  color:#2d2d32;
}

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

.menu-toggle{
  display:none;
  background:none;
  border:0;
  padding:0;
}

.menu-toggle span{
  display:block;
  width:24px;
  height:2px;
  background:#111;
  margin:5px 0;
  border-radius:2px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:16px 26px;
  border-radius:999px;
  font-weight:800;
  font-size:18px;
  transition:.22s transform,.22s box-shadow,.22s background,.22s border-color;
  border:1px solid transparent;
  white-space:nowrap;
}

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

.btn-primary{
  background:var(--accent);
  color:#fff;
  box-shadow:0 10px 26px rgba(255,75,62,.24);
}

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

.btn-light{
  padding:15px 24px;
}

.hero{
  padding:56px 0 48px;
}

.hero-grid{
  display:grid;
  grid-template-columns:minmax(0,1.02fr) minmax(380px,.98fr);
  gap:40px;
  align-items:center;
}

.hero-copy h1{
  margin:16px 0 20px;
  font-family:Montserrat,Futura,"Trebuchet MS",Arial,sans-serif;
  font-size:clamp(44px,6vw,78px);
  line-height:.95;
  letter-spacing:-.065em;
  max-width:620px;
}

.lead{
  font-size:20px;
  line-height:1.7;
  max-width:610px;
  color:#202530;
}

.support{
  font-size:18px;
  line-height:1.8;
  max-width:610px;
  color:var(--muted);
  margin-top:18px;
}

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

.hero-keywords{
  margin-top:10px;
}

.keywords-label{
  display:block;
  font-size:13px;
  font-weight:800;
  letter-spacing:.08em;
  color:#6b7280;
  margin-bottom:12px;
  text-transform:uppercase;
}

.keyword-chips{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.keyword-chips span{
  display:inline-flex;
  align-items:center;
  padding:10px 14px;
  border-radius:999px;
  background:#fff;
  border:1px solid var(--line);
  font-weight:700;
  font-size:16px;
  color:#2d3440;
}

.hero-visual{
  min-height:auto;
}

.device-main{
  position:relative;
  inset:auto;
  padding:30px;
  background:linear-gradient(180deg,rgba(255,255,255,.95),rgba(255,255,255,.88));
  border:1px solid #e8e1dc;
  border-radius:34px;
  box-shadow:var(--shadow);
}

.device-bar{
  display:flex;
  gap:10px;
  margin-bottom:26px;
}

.device-bar span{
  width:11px;
  height:11px;
  border-radius:50%;
}

.device-bar span:nth-child(1){background:#ff5f57;}
.device-bar span:nth-child(2){background:#febc2e;}
.device-bar span:nth-child(3){background:#28c840;}

.device-pill{
  display:inline-block;
  padding:12px 18px;
  border-radius:999px;
  background:rgba(255,75,62,.1);
  color:#f2483d;
  font-weight:800;
  margin-bottom:18px;
}

.device-main h2{
  margin:0 0 12px;
  font-family:Montserrat,Futura,"Trebuchet MS",Arial,sans-serif;
  font-size:clamp(30px,3.3vw,48px);
  line-height:.96;
  letter-spacing:-.05em;
  max-width:420px;
}

.device-main p{
  max-width:440px;
  margin:0 0 22px;
  color:var(--muted);
  font-size:18px;
  line-height:1.7;
}

.visual-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
  margin-top:18px;
}

.visual-item{
  border:1px solid #e8e1dc;
  border-radius:22px;
  padding:18px 16px;
  background:rgba(255,255,255,.78);
}

.visual-item small{
  display:block;
  margin-bottom:10px;
  color:#e4483d;
  font-size:12px;
  font-weight:800;
  letter-spacing:.12em;
}

.visual-item strong{
  display:block;
  font-size:18px;
  line-height:1.35;
}

.sector-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:22px;
}

.sector-card,
.solution-card,
.problem-card,
.why-grid article,
.steps article,
.contact-form,
.contact-copy{
  background:rgba(255,255,255,.74);
  border:1px solid #e8e1dc;
  border-radius:30px;
  box-shadow:var(--shadow);
}

.sector-card{
  padding:28px;
}

.sector-top{
  display:flex;
  gap:16px;
  align-items:flex-start;
  margin-bottom:16px;
}

.sector-icon{
  width:42px;
  height:42px;
  border-radius:14px;
  background:rgba(255,75,62,.1);
  color:#e4483d;
  display:grid;
  place-items:center;
  font-weight:900;
  font-family:Montserrat,sans-serif;
}

.sector-card h3,
.solution-card h3,
.why-grid h3,
.steps h3{
  margin:0 0 10px;
  font-size:34px;
  line-height:1.05;
  letter-spacing:-.04em;
  font-family:Montserrat,sans-serif;
}

.sector-card p,
.solution-card li,
.problem-card p,
.why-grid p,
.steps p,
.contact-copy p{
  color:var(--muted);
  line-height:1.75;
  font-size:18px;
}

.sector-card p + p{
  margin-top:16px;
}

.sector-card .sector-top + p{
  margin-top:8px;
}

.sector-tags{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:18px;
}

.sector-tags span{
  padding:10px 13px;
  border-radius:999px;
  background:var(--surface-2);
  font-weight:700;
  color:#323844;
}

.solutions-grid{
  display:grid;
  grid-template-columns:1.2fr 1fr 1fr;
  gap:22px;
}

.solution-card{
  padding:30px;
}

.solution-card small{
  display:inline-block;
  margin-bottom:14px;
  color:#e4483d;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.solution-card.featured{
  background:linear-gradient(180deg,rgba(255,255,255,.92),rgba(255,246,245,.92));
  border-color:#f2d1cc;
}

.solution-card ul{
  padding-left:22px;
  margin:18px 0;
}

.solution-card li{
  margin:9px 0;
}

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

.problem-card{
  padding:24px;
}

.problem-card strong{
  display:block;
  font-size:24px;
  line-height:1.1;
  letter-spacing:-.03em;
  font-family:Montserrat,sans-serif;
  margin-bottom:10px;
}

.problem-close{
  margin-top:24px;
  border-radius:24px;
  padding:24px 28px;
  background:#111;
  color:#fff;
  text-align:center;
}

.problem-close p{
  margin:0;
  font-size:20px;
  line-height:1.6;
}

.why-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:18px;
}

.why-grid article{
  padding:26px;
}

.why-grid h3{
  font-size:26px;
}

.steps{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:18px;
}

.steps article{
  padding:28px;
}

.steps span{
  display:inline-flex;
  width:54px;
  height:54px;
  border-radius:16px;
  background:rgba(255,75,62,.1);
  color:#e4483d;
  align-items:center;
  justify-content:center;
  font-weight:900;
  font-family:Montserrat,sans-serif;
  margin-bottom:18px;
}

.cta-box{
  background:linear-gradient(135deg,#151515,#252525);
  color:#fff;
  border-radius:36px;
  padding:44px 46px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.cta-box h2{
  margin:14px 0 10px;
  font-size:clamp(34px,5vw,56px);
  line-height:.98;
  letter-spacing:-.05em;
  font-family:Montserrat,Futura,"Trebuchet MS",Arial,sans-serif;
}

.cta-box p{
  margin:0;
  color:rgba(255,255,255,.78);
  font-size:19px;
  line-height:1.7;
  max-width:640px;
}

.cta-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  align-items:center;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:16px 26px;
  border-radius:999px;
  font-weight:800;
  font-size:18px;
  transition:.22s transform,.22s box-shadow,.22s background,.22s border-color;
  border:1px solid transparent;
  white-space:nowrap;
  cursor:pointer;
}

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

.btn-primary{
  background:#ff4b3e;
  color:#fff;
  box-shadow:0 10px 26px rgba(255,75,62,.24);
}

.btn-secondary{
  background:#fff;
  border:1px solid #ded8d3;
  color:#111;
}

.contact-grid{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:22px;
}

.contact-copy,
.contact-form{
  padding:30px;
}

.contact-copy h2{
  margin:16px 0 14px;
  font-size:clamp(34px,4vw,56px);
  line-height:.98;
  letter-spacing:-.05em;
  font-family:Montserrat,sans-serif;
}

.contact-list{
  list-style:none;
  padding:0;
  margin:24px 0 0;
}

.contact-list li{
  padding:14px 0;
  border-bottom:1px solid #ebe5e0;
  font-size:18px;
}

.contact-form{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:18px;
}

.field{
  display:flex;
  flex-direction:column;
  gap:8px;
}

.field-full{
  grid-column:1/-1;
}

label{
  font-weight:700;
}

input,
textarea{
  width:100%;
  padding:16px 18px;
  border-radius:18px;
  border:1px solid var(--line);
  background:#fff;
  font:inherit;
}

.contact-form button{
  justify-self:start;
}

.site-footer{
  padding:28px 0 40px;
  border-top:1px solid rgba(222,216,211,.8);
}

.footer-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

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

@media (max-width:1180px){
  .hero-grid{
    grid-template-columns:1fr;
  }

  .hero-copy h1{
    max-width:760px;
  }
}

@media (max-width:980px){
  .main-nav,
  .nav-cta{
    display:none;
  }

  .menu-toggle{
    display:block;
  }

  .main-nav.open{
    display:flex;
    position:absolute;
    top:72px;
    left:16px;
    right:16px;
    background:#fff;
    border:1px solid var(--line);
    border-radius:20px;
    padding:16px;
    flex-direction:column;
    align-items:flex-start;
    box-shadow:var(--shadow);
  }

  .sector-grid,
  .solutions-grid,
  .problem-grid,
  .why-grid,
  .steps,
  .contact-grid{
    grid-template-columns:1fr;
  }

  .cta-box,
  .footer-row{
    flex-direction:column;
    align-items:flex-start;
  }
}

@media (max-width:760px){
  .section{
    padding:78px 0;
  }

  .hero{
    padding:34px 0 26px;
  }

  .hero-copy h1{
    max-width:none;
    font-size:clamp(42px,11vw,62px);
  }

  .lead,
  .support,
  .section-heading p,
  .problem-close p{
    font-size:18px;
  }

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

  .keyword-chips span{
    font-size:15px;
  }

  .contact-form{
    grid-template-columns:1fr;
  }
  .form-message{
  margin-top:10px;
  padding:14px 16px;
  border-radius:14px;
  font-size:15px;
  font-weight:600;
}

.form-message.success{
  background:#ecfdf3;
  color:#166534;
  border:1px solid #bbf7d0;
}

.form-message.error{
  background:#fef2f2;
  color:#991b1b;
  border:1px solid #fecaca;
}

button[disabled]{
  opacity:.7;
  cursor:not-allowed;
}
select{
  width:100%;
  padding:16px 18px;
  border-radius:18px;
  border:1px solid var(--line);
  background:#fff;
  font:inherit;
  appearance:none;
}
}