
:root{
  --rk-green:#08a12f;
  --rk-green-dark:#057a25;
  --rk-black:#07110b;
  --rk-muted:#59665f;
  --rk-line:#e7eee8;
  --rk-footer-bg:#f1f6ef;
}

*{box-sizing:border-box}
body{
  font-family:Inter,Arial,sans-serif;
  color:var(--rk-black);
  background:#fff;
}
a{text-decoration:none;color:inherit}
.rk-container{
  width:min(1180px,calc(100% - 96px));
  margin:0 auto;
}

/* Header */
.rk-header{
  position:sticky;
  top:0;
  z-index:999;
  background:rgba(255,255,255,.96);
  border-bottom:1px solid rgba(232,238,233,.85);
  backdrop-filter:blur(10px);
}
.rk-nav{
  min-height:72px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
}
.rk-logo{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:800;
  font-size:24px;
  letter-spacing:-.03em;
  white-space:nowrap;
}
.rk-mark{
  width:34px;
  height:34px;
  border-radius:50%;
  background:var(--rk-green);
  display:grid;
  place-items:center;
  color:#fff;
  font-weight:900;
}
.rk-mark span{
  transform:skew(-12deg);
  display:block;
  font-size:20px;
  line-height:1;
}
.rk-menu{
  display:flex;
  align-items:center;
  gap:24px;
  font-size:15px;
  font-weight:500;
  color:#15231b;
}
.rk-wp-menu{
  display:flex;
  align-items:center;
  gap:24px;
  list-style:none;
  padding:0;
  margin:0;
}
.rk-wp-menu li{margin:0}
.rk-menu a:hover,
.rk-wp-menu a:hover{
  color:var(--rk-green);
}
.rk-actions{
  display:flex;
  align-items:center;
  gap:18px;
  font-size:15px;
  font-weight:500;
}
.rk-login{color:#17251d}
.rk-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  padding:0 20px;
  border:1px solid var(--rk-black);
  background:#fff;
  color:var(--rk-black);
  font-weight:700;
  font-size:14px;
  transition:.18s ease;
  cursor:pointer;
}
.rk-btn:hover{
  transform:translateY(-1px);
  box-shadow:0 8px 20px rgba(0,0,0,.08);
}

/* Language */
.rk-language-switch{
  position:relative;
  font-size:13px;
  font-weight:700;
  color:#0b4fa8;
}
.rk-language-current{
  display:flex;
  align-items:center;
  gap:6px;
  padding:8px 2px;
  cursor:pointer;
  white-space:nowrap;
}
.rk-language-current:after{
  content:'⌃';
  font-size:11px;
  color:#0b6adf;
}
.rk-language-dropdown{
  position:absolute;
  right:0;
  top:44px;
  width:640px;
  background:#fff;
  border:1px solid var(--rk-line);
  box-shadow:0 22px 50px rgba(12,28,18,.14);
  padding:26px;
  display:none;
  grid-template-columns:repeat(3,1fr);
  gap:14px 28px;
  z-index:9999;
}
.rk-language-switch:hover .rk-language-dropdown{
  display:grid;
}
.rk-language-dropdown a{
  display:flex;
  align-items:center;
  gap:8px;
  color:#647083;
  font-size:14px;
  font-weight:600;
  white-space:nowrap;
}
.rk-language-dropdown a:hover{
  color:var(--rk-green);
}

/* Page content */
.rk-page-content{
  margin:0;
}
.rk-page-content > *:first-child{
  margin-top:0;
}
.rk-page-content > *:last-child{
  margin-bottom:0;
}

/* Footer */
.rk-footer{
  background:var(--rk-footer-bg);
  padding:82px 0 0;
}
.rk-footer-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:72px;
}
.rk-footer-grid{
  display:grid;
  grid-template-columns:1.35fr 1fr 1fr 1fr 1fr;
  gap:64px;
}
.rk-footer h4{
  font-size:13px;
  margin:0 0 22px;
}
.rk-footer a{
  display:block;
  color:#08752a;
  font-size:14px;
  margin:0 0 13px;
}
.rk-social-row{
  margin-top:72px;
}
.rk-social{
  display:flex;
  gap:14px;
  color:#17251d;
}
.rk-social span{
  width:22px;
  height:22px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:#dfe8df;
  font-size:12px;
}
.rk-footer-bottom{
  margin-top:84px;
  background:#0b1210;
  color:#fff;
  padding:30px 0;
  font-size:13px;
}
.rk-footer-bottom .rk-container{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

@media (max-width:980px){
  .rk-container{
    width:min(100% - 56px,1180px);
  }
  .rk-menu{
    display:none;
  }
  .rk-language-dropdown{
    right:-120px;
    width:560px;
    grid-template-columns:repeat(2,1fr);
  }
  .rk-footer-grid{
    grid-template-columns:1fr 1fr;
    gap:42px;
  }
  .rk-footer-top,
  .rk-footer-bottom .rk-container{
    align-items:flex-start;
    gap:20px;
    flex-direction:column;
  }
}

@media (max-width:760px){
  .rk-container{
    width:min(100% - 34px,1180px);
  }
  .rk-nav{
    min-height:66px;
  }
  .rk-actions .rk-login{
    display:none;
  }
  .rk-language-current{
    font-size:12px;
  }
  .rk-language-dropdown{
    right:-92px;
    top:40px;
    width:min(92vw,360px);
    grid-template-columns:1fr;
    max-height:70vh;
    overflow:auto;
  }
  .rk-footer-grid{
    grid-template-columns:1fr;
  }
}
