
:root{
  --navy:#072441;
  --navy-deep:#041526;
  --red:#dd171f;
  --red-dark:#b31319;
  --green:#17843d;
  --green-dark:#0f6a31;
  --ink:#182a3d;
  --muted:#607084;
  --line:#dfe5eb;
  --soft:#f5f7f9;
  --white:#ffffff;
  --max:1440px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}

body{
  margin:0;
  background:var(--soft);
  color:var(--ink);
  font-family:"Segoe UI",Inter,Arial,sans-serif;
  line-height:1.55;
}

a{color:inherit}

.site-header{
  height:92px;
  background:var(--white);
  border-bottom:1px solid #edf0f3;
}

.header-inner{
  width:min(var(--max),calc(100% - 72px));
  height:100%;
  margin:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:40px;
}

.logo img{
  display:block;
  width:auto;
  height:68px;
}

.navigation{
  display:flex;
  gap:38px;
  font-size:15px;
  font-weight:750;
}

.navigation a{text-decoration:none}
.navigation a:hover,.navigation a:focus-visible{color:var(--red)}

.support-section{
  padding:70px 36px 82px;
}

.support-grid{
  max-width:1280px;
  margin:auto;
  display:grid;
  grid-template-columns:46% 54%;
  gap:52px;
  align-items:start;
}

.intro h1{
  margin:0;
  color:var(--navy);
  font-size:clamp(56px,6vw,82px);
  line-height:1;
  letter-spacing:-3px;
}

.intro h2{
  margin:12px 0 20px;
  color:var(--green);
  font-size:clamp(31px,3vw,46px);
  line-height:1.08;
  letter-spacing:-1.6px;
}

.intro p{
  margin:0 0 17px;
  color:#3a4b60;
  font-size:19px;
  line-height:1.65;
}

.support-form{
  margin-top:32px;
  padding:30px;
  background:var(--white);
  border:1px solid var(--line);
  border-radius:18px;
  box-shadow:0 12px 30px rgba(7,36,65,.07);
}

.form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:15px;
}

.field{margin-bottom:16px}

label{
  display:block;
  margin-bottom:7px;
  color:var(--navy);
  font-size:14px;
  font-weight:750;
}

input,select,textarea{
  width:100%;
  padding:14px 15px;
  border:1px solid #cad4df;
  border-radius:9px;
  background:var(--white);
  color:var(--ink);
  font:inherit;
}

textarea{
  min-height:145px;
  resize:vertical;
}

input:focus,select:focus,textarea:focus{
  outline:3px solid rgba(221,23,31,.10);
  border-color:var(--red);
}

.submit-button{
  width:100%;
  padding:16px 24px;
  border:0;
  border-radius:9px;
  background:var(--red);
  color:var(--white);
  font-size:17px;
  font-weight:850;
  cursor:pointer;
  box-shadow:0 10px 22px rgba(221,23,31,.20);
}

.submit-button:hover{background:var(--red-dark)}

.contact-meta{
  margin-top:22px;
  padding-top:20px;
  border-top:1px solid var(--line);
  color:#405267;
}

.contact-meta strong{
  display:block;
  color:var(--navy);
  margin-bottom:4px;
}

.contact-meta p{margin:0 0 14px;font-size:15px}

.faq-panel{
  padding:32px;
  background:var(--white);
  border:1px solid var(--line);
  border-radius:18px;
  box-shadow:0 12px 30px rgba(7,36,65,.07);
}

.faq-panel h2{
  margin:0 0 8px;
  color:var(--navy);
  font-size:38px;
  letter-spacing:-1.4px;
}

.faq-intro{
  margin:0 0 20px;
  color:var(--muted);
}

.faq{
  border-top:1px solid var(--line);
}

.faq:first-of-type{border-top:0}

.faq summary{
  position:relative;
  padding:18px 42px 18px 0;
  color:var(--navy);
  font-size:16px;
  font-weight:800;
  cursor:pointer;
  list-style:none;
}

.faq summary::-webkit-details-marker{display:none}

.faq summary::after{
  content:"+";
  position:absolute;
  top:50%;
  right:2px;
  transform:translateY(-50%);
  color:var(--green);
  font-size:24px;
  font-weight:500;
}

.faq[open] summary::after{content:"–"}

.faq-answer{
  padding:0 34px 18px 0;
  color:#4d5e72;
  font-size:15px;
}

.faq-answer p{margin:0 0 9px}
.faq-answer p:last-child{margin-bottom:0}

.cta{
  padding:70px 36px;
  background:
    radial-gradient(circle at 75% 35%,rgba(35,157,73,.23),transparent 36%),
    linear-gradient(135deg,#041a0c,#0a4a22);
  color:var(--white);
}

.cta-inner{
  max-width:1120px;
  margin:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:50px;
}

.cta h2{
  margin:0 0 10px;
  color:var(--white);
  font-size:clamp(38px,4vw,58px);
  line-height:1.04;
  letter-spacing:-2px;
}

.cta p{
  margin:0;
  color:#e3f2e8;
  font-size:19px;
}

.cta-button{
  flex:0 0 auto;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:18px 28px;
  border-radius:9px;
  background:var(--green);
  color:var(--white);
  text-decoration:none;
  font-size:17px;
  font-weight:850;
  box-shadow:0 12px 28px rgba(0,0,0,.25);
}

.cta-button:hover{background:#20a34e}

.site-footer{
  background:var(--navy-deep);
  color:#d9e1e9;
}

.footer-inner{
  width:min(var(--max),calc(100% - 72px));
  min-height:110px;
  margin:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
}

.footer-logo img{
  display:block;
  width:auto;
  height:52px;
  filter:brightness(0) invert(1);
}

.footer-links{
  display:flex;
  gap:25px;
  flex-wrap:wrap;
  font-size:13px;
}

.status-message {

    margin-top: 20px;

}

.success {

    padding: 18px;

    background: #edf8ef;

    border: 1px solid #2e7d32;

    border-radius: 6px;

    color: #1b5e20;

}

.error {

    padding: 18px;

    background: #fdecec;

    border: 1px solid #c62828;

    border-radius: 6px;

    color: #b71c1c;

}

.submit-button:disabled {

    opacity: 0.6;

    cursor: wait;

}

.footer-links a{text-decoration:none}
.copyright{font-size:12px;color:#aeb9c4}

@media(max-width:980px){
  .support-grid{grid-template-columns:1fr}
}

@media(max-width:700px){
  .site-header{height:auto}
  .header-inner{
    width:min(100% - 30px,var(--max));
    padding:15px 0;
    align-items:flex-start;
  }
  .logo img{height:54px}
  .navigation{gap:14px;padding-top:10px;font-size:13px}
  .support-section{padding:50px 18px 62px}
  .form-row{grid-template-columns:1fr}
  .support-form,.faq-panel{padding:24px 20px}
  .cta-inner{flex-direction:column;align-items:flex-start}
  .footer-inner{
    width:min(100% - 30px,var(--max));
    padding:28px 0;
    flex-direction:column;
    align-items:flex-start;
  }
}
