:root{
  --arkan-bg:#0e1b21;
  --arkan-bg-2:#152b34;
  --arkan-text:#132c36;
  --arkan-muted:#60727a;
  --arkan-orange:#dd612b;
  --arkan-orange-2:#f07d4a;
  --arkan-cream:#f6f4ef;
  --arkan-white:#ffffff;
  --arkan-border:rgba(19,44,54,.10);
  --arkan-shadow:0 20px 60px rgba(0,0,0,.14);
}

body.arkan-front-page-active{
  background:#fff;
}

.arkan-front-page,
.arkan-front-page *{
  box-sizing:border-box;
}

.arkan-front-page{
  direction:rtl;
  color:var(--arkan-text);
  background:#fff;
}

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

.arkan-kicker{
  display:inline-flex;
  align-items:center;
  min-height:38px;
  padding:8px 18px;
  border-radius:999px;
  background:rgba(221,97,43,.12);
  color:var(--arkan-orange);
  font-size:14px;
  font-weight:800;
}

.arkan-kicker-light{
  background:rgba(255,255,255,.14);
  color:#fff;
}

.arkan-hero{
  position:relative;
  overflow:hidden;
  padding:110px 0 70px;
  background:
    linear-gradient(90deg, rgba(10,18,24,.86) 0%, rgba(10,18,24,.66) 36%, rgba(10,18,24,.38) 62%, rgba(10,18,24,.30) 100%),
    var(--hero-image) center center / cover no-repeat;
}

.arkan-hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(9,17,22,.10) 0%, rgba(9,17,22,.38) 100%);
  pointer-events:none;
}

.arkan-hero-grid{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:minmax(0,1.15fr) minmax(320px,.72fr);
  gap:34px;
  align-items:center;
}

.arkan-hero-copy h1{
  margin:18px 0 18px;
  color:#fff;
  font-size:clamp(40px, 6vw, 78px);
  line-height:1.02;
  font-weight:900;
}

.arkan-hero-copy p{
  max-width:760px;
  margin:0;
  color:rgba(255,255,255,.88);
  font-size:20px;
  line-height:1.9;
}

.arkan-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:28px;
}

.arkan-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:56px;
  padding:0 28px;
  border-radius:999px;
  text-decoration:none !important;
  font-size:18px;
  font-weight:800;
  transition:.25s ease;
  border:1px solid transparent;
}

.arkan-btn-primary{
  background:linear-gradient(135deg, var(--arkan-orange) 0%, var(--arkan-orange-2) 100%);
  color:#fff !important;
  box-shadow:0 20px 40px rgba(221,97,43,.22);
}

.arkan-btn-primary:hover{
  transform:translateY(-2px);
  color:#fff !important;
}

.arkan-btn-secondary{
  background:rgba(255,255,255,.04);
  color:#fff !important;
  border-color:rgba(255,255,255,.35);
  backdrop-filter:blur(5px);
}

.arkan-btn-secondary.light{
  background:transparent;
}

.arkan-btn-secondary:hover{
  background:#fff;
  color:var(--arkan-text) !important;
}

.arkan-hero-cards{
  display:grid;
  gap:18px;
}

.arkan-float-card{
  background:rgba(255,255,255,.96);
  border-radius:28px;
  padding:26px;
  box-shadow:var(--arkan-shadow);
}

.arkan-float-card strong{
  display:block;
  margin-bottom:10px;
  font-size:30px;
  line-height:1.2;
  color:var(--arkan-text);
}

.arkan-float-card p{
  margin:0;
  color:#50626c;
  font-size:18px;
  line-height:1.9;
}

.arkan-float-card.is-accent{
  background:linear-gradient(135deg, rgba(221,97,43,.96) 0%, rgba(240,125,74,.96) 100%);
}

.arkan-float-card.is-accent strong,
.arkan-float-card.is-accent p{
  color:#fff;
}

.arkan-stats{
  position:relative;
  z-index:2;
  margin-top:-32px;
}

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

.arkan-stat{
  background:#fff;
  border:1px solid var(--arkan-border);
  border-radius:22px;
  padding:22px 20px;
  box-shadow:0 18px 45px rgba(18,34,41,.08);
}

.arkan-stat span{
  display:block;
  margin-bottom:6px;
  color:var(--arkan-orange);
  font-size:14px;
  font-weight:800;
}

.arkan-stat strong{
  display:block;
  font-size:20px;
  line-height:1.5;
  color:var(--arkan-text);
}

.arkan-section{
  padding:88px 0;
}

.arkan-section-dark{
  background:linear-gradient(180deg, #0f1d24 0%, #10252d 100%);
}

.arkan-about-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(320px,.9fr);
  gap:28px;
  align-items:start;
}

.arkan-about-copy h2,
.arkan-section-head h2,
.arkan-banner-content h2{
  margin:18px 0 16px;
  font-size:clamp(32px, 4vw, 54px);
  line-height:1.1;
  color:var(--arkan-text);
  font-weight:900;
}

.arkan-section-dark .arkan-section-head h2{
  color:#fff;
}

.arkan-about-copy p,
.arkan-section-head p,
.arkan-banner-content p{
  margin:0;
  color:#53656f;
  font-size:19px;
  line-height:1.95;
}

.arkan-section-dark .arkan-section-head p{
  color:rgba(255,255,255,.82);
}

.arkan-list{
  margin:24px 0 0;
  padding:0;
  list-style:none;
  display:grid;
  gap:12px;
}

.arkan-list li{
  position:relative;
  padding-right:22px;
  font-size:18px;
  line-height:1.85;
  color:var(--arkan-text);
}

.arkan-list li::before{
  content:"";
  position:absolute;
  top:13px;
  right:0;
  width:9px;
  height:9px;
  border-radius:50%;
  background:var(--arkan-orange);
}

.arkan-about-side{
  display:grid;
  gap:18px;
}

.arkan-feature-card{
  background:#fff;
  border:1px solid var(--arkan-border);
  border-radius:24px;
  padding:26px;
  box-shadow:0 20px 50px rgba(15,33,41,.06);
}

.arkan-feature-card h3{
  margin:0 0 12px;
  font-size:28px;
  line-height:1.2;
  color:var(--arkan-text);
}

.arkan-feature-card p{
  margin:0;
  color:#596c74;
  font-size:17px;
  line-height:1.9;
}

.arkan-section-head{
  max-width:900px;
  margin-bottom:28px;
}

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

.arkan-plant-card{
  overflow:hidden;
  border-radius:24px;
  background:#fff;
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 18px 50px rgba(0,0,0,.18);
}

.arkan-plant-media{
  aspect-ratio: 4 / 3;
  overflow:hidden;
  background:#20333b;
}

.arkan-plant-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform .45s ease;
}

.arkan-plant-card:hover .arkan-plant-media img{
  transform:scale(1.05);
}

.arkan-plant-body{
  padding:22px 20px 24px;
}

.arkan-plant-body h3{
  margin:0 0 10px;
  font-size:25px;
  line-height:1.25;
  color:var(--arkan-text);
}

.arkan-plant-body p{
  margin:0;
  color:#5b6d75;
  font-size:16px;
  line-height:1.85;
}

.arkan-banner{
  position:relative;
  overflow:hidden;
  border-radius:34px;
  min-height:430px;
  background:var(--banner-image) center center / cover no-repeat;
  display:flex;
  align-items:center;
}

.arkan-banner-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(90deg, rgba(10,18,24,.82) 0%, rgba(10,18,24,.56) 42%, rgba(10,18,24,.28) 100%);
}

.arkan-banner-content{
  position:relative;
  z-index:1;
  width:min(720px, calc(100% - 48px));
  margin-right:24px;
}

.arkan-banner-content h2,
.arkan-banner-content p{
  color:#fff;
}

@media (max-width: 1180px){
  .arkan-hero-grid,
  .arkan-about-grid,
  .arkan-plant-grid{
    grid-template-columns:1fr 1fr;
  }
  .arkan-stats-grid{
    grid-template-columns:repeat(2, minmax(0,1fr));
  }
}

@media (max-width: 860px){
  .arkan-container{
    width:min(100% - 24px, 100% - 24px);
  }
  .arkan-hero{
    padding:90px 0 48px;
  }
  .arkan-hero-grid,
  .arkan-about-grid,
  .arkan-plant-grid,
  .arkan-stats-grid{
    grid-template-columns:1fr;
  }
  .arkan-hero-copy h1{
    font-size:48px;
  }
  .arkan-about-copy h2,
  .arkan-section-head h2,
  .arkan-banner-content h2{
    font-size:38px;
  }
  .arkan-btn{
    width:100%;
  }
  .arkan-banner{
    min-height:360px;
  }
  .arkan-banner-content{
    width:calc(100% - 28px);
    margin-right:14px;
  }
}
