*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Inter',sans-serif;
  background:#f6f9fc;
  color:#111827;
  overflow-x:hidden;
}

/* CONTAINER */

.container{
  width:100%;
  max-width:1350px;
  margin:auto;
  padding:0 24px;
}

/* BACKGROUND */

.bg-blur{
  position:fixed;
  width:700px;
  height:700px;
  border-radius:50%;
  filter:blur(120px);
  z-index:-1;
}

.blur1{
  top:-250px;
  right:-250px;
  background:rgba(59,130,246,0.18);
}

.blur2{
  bottom:-250px;
  left:-250px;
  background:rgba(125,211,252,0.16);
}

/* HEADER */

header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:100;
  padding-top:20px;
}

.nav{
  background:rgba(255,255,255,0.72);
  backdrop-filter:blur(20px);
  border-radius:28px;
  padding:22px 35px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  box-shadow:0 10px 40px rgba(0,0,0,0.05);
}

.logo{
  font-size:34px;
  font-weight:900;
  letter-spacing:-1px;
}

.logo span{
  color:#2563eb;
}

.nav-links{
  display:flex;
  gap:42px;
}

.nav-links a{
  text-decoration:none;
  color:#6b7280;
  font-weight:500;
  transition:0.3s;
}

.nav-links a:hover{
  color:black;
}

.header-btn{
  background:linear-gradient(135deg,#2563eb,#3b82f6);
  color:white;
  border:none;
  padding:16px 26px;
  border-radius:18px;
  font-size:15px;
  font-weight:600;
  cursor:pointer;
  transition:0.3s;
  box-shadow:0 15px 40px rgba(37,99,235,0.25);
}

.header-btn:hover{
  transform:translateY(-3px);
}

/* HERO */

.hero{
  min-height:100vh;
  position:relative;
  display:flex;
  align-items:center;
  overflow:hidden;
}

.hero-bg{
  position:absolute;
  inset:0;
}

.hero-bg img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:
  linear-gradient(
    to right,
    rgba(246,249,252,0.96),
    rgba(246,249,252,0.84),
    rgba(246,249,252,0.3)
  );
}

.hero-content{
  position:relative;
  z-index:10;
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:100px;
  align-items:center;
  padding-top:140px;
}

/* LEFT */

.hero-badge{
  display:inline-block;
  background:white;
  padding:15px 24px;
  border-radius:999px;
  color:#6b7280;
  font-size:14px;
  margin-bottom:35px;
  box-shadow:0 8px 30px rgba(0,0,0,0.05);
}

.hero-left h1{
  font-size:110px;
  line-height:0.92;
  letter-spacing:-5px;
  font-weight:900;
  margin-bottom:32px;
}

.hero-left h1 span{
  color:#2563eb;
}

.hero-left p{
  font-size:22px;
  line-height:1.7;
  color:#6b7280;
  max-width:700px;
  margin-bottom:42px;
}

.hero-buttons{
  display:flex;
  gap:18px;
  margin-bottom:60px;
}


.primary-btn{
  background:linear-gradient(135deg,#2563eb,#3b82f6);
  color:white;
  border:none;
  padding:20px 34px;
  border-radius:22px;
  font-size:18px;
  font-weight:600;
  cursor:pointer;
  transition:0.3s;
  box-shadow:0 20px 40px rgba(37,99,235,0.25);
}

.primary-btn,
.secondary-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    cursor:pointer;
}

.primary-btn:hover{
  transform:translateY(-4px);
}

.secondary-btn{
  background:white;
  border:none;
  padding:20px 34px;
  border-radius:22px;
  font-size:18px;
  font-weight:600;
  cursor:pointer;
  transition:0.3s;
  box-shadow:0 8px 25px rgba(0,0,0,0.05);
}

.secondary-btn:hover{
  transform:translateY(-4px);
}

.hero-stats{
  display:flex;
  gap:60px;
}

.hero-stats h2{
  font-size:48px;
  margin-bottom:8px;
}

.hero-stats span{
  color:#6b7280;
}

/* RIGHT */

.hero-right{
  position:relative;
}

.hero-right img{
  width:100%;
  height:720px;
  object-fit:cover;
  border-radius:38px;
  box-shadow:0 30px 80px rgba(0,0,0,0.15);
}

.floating-card{
  position:absolute;
  bottom:20px;
  left:0px;
  background:rgba(255,255,255,0.82);
  backdrop-filter:blur(20px);
  padding:28px;
  border-radius:30px;
  width:320px;
  box-shadow:0 20px 60px rgba(0,0,0,0.12);
}

.floating-card small{
  display:block;
  margin-bottom:20px;
  color:#6b7280;
  font-size:14px;
}

.crop-item{
  background:#f6f9fc;
  border-radius:18px;
  padding:16px 20px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:14px;
}

.crop-item span{
  font-weight:600;
}

.crop-item p{
  color:#2563eb;
  font-size:14px;
}

/* SECTION */

.section{
  padding:140px 0;
}
.section-label{
    display:block;
    margin:0 0 14px;

    color:#dc9e5b;
    font-size:15px;
    line-height:1.2;
    font-weight:700;
    letter-spacing:4px;
    text-transform:uppercase;
}

/* =========================================================
   TABLET — до 992px
========================================================= */

@media (max-width:992px){

    .container{
        padding:0 20px;
    }

    /* HEADER */

    header{
        padding-top:14px;
    }

    .nav{
        min-height:72px;
        padding:14px 18px;
        border-radius:22px;
        gap:14px;
    }

    .logo{
        font-size:27px;
        line-height:1;
        flex-shrink:0;
    }

    .nav-links{
        display:none;
    }

    .header-btn{
        display:none;
    }

    .lang-switcher{
        margin-left:auto;
        flex-shrink:0;
    }

    /* HERO */

    .hero{
        min-height:auto;
        padding:115px 0 70px;
        align-items:flex-start;
    }

    .hero-content{
        display:grid;
        grid-template-columns:1fr;
        gap:42px;
        padding-top:35px;
        text-align:left;
    }

    .hero-left{
        order:1;
    }

    .hero-right{
        order:2;
        width:100%;
        max-width:650px;
        margin:0 auto;
    }

    .hero-badge{
        margin-bottom:24px;
        padding:12px 18px;
        font-size:13px;
    }

    .hero-left h1{
        max-width:750px;
        margin-bottom:24px;
        font-size:64px;
        line-height:.98;
        letter-spacing:-3px;
    }

    .hero-left p{
        max-width:680px;
        margin-bottom:30px;
        font-size:18px;
        line-height:1.6;
    }

    .hero-buttons{
        justify-content:flex-start;
        flex-wrap:wrap;
        gap:14px;
        margin-bottom:38px;
    }

    .primary-btn,
    .secondary-btn{
        padding:17px 28px;
        border-radius:18px;
        font-size:16px;
    }

    .hero-stats{
        display:grid;
        grid-template-columns:repeat(3,1fr);
        gap:16px;
        width:100%;
        max-width:650px;
    }

    .hero-stats > div{
        padding:18px 14px;
        background:rgba(255,255,255,.88);
        border-radius:18px;
        box-shadow:0 10px 30px rgba(0,0,0,.06);
    }

    .hero-stats h2{
        margin-bottom:5px;
        font-size:32px;
    }

    .hero-stats span{
        font-size:14px;
    }

    .hero-right img{
        display:block;
        width:100%;
        height:520px;
        max-width:none;
        margin:0;
        border-radius:28px;
        object-fit:cover;
    }

    .floating-card{
        right:18px;
        bottom:18px;
        left:auto;
        width:290px;
        padding:22px;
        border-radius:24px;
    }

    .crop-item{
        padding:13px 15px;
        border-radius:15px;
    }
}


/* =========================================================
   MOBILE — до 576px
========================================================= */

@media (max-width:576px){

    .container{
        padding:0 16px;
    }

    /* HEADER */

    header{
        padding-top:10px;
    }

    .nav{
        min-height:62px;
        padding:12px 14px;
        border-radius:18px;
    }

    .logo{
        font-size:23px;
        letter-spacing:-.7px;
    }

    .lang-switcher{
        display:flex;
        align-items:center;
        padding:3px;
        border-radius:12px;
    }

    .lang-btn{
        padding:7px 9px;
        font-size:11px;
        border-radius:9px;
    }

    /* HERO */

    .hero{
        padding:90px 0 50px;
    }

    .hero-overlay{
        background:
            linear-gradient(
                to bottom,
                rgba(246,249,252,.98) 0%,
                rgba(246,249,252,.94) 58%,
                rgba(246,249,252,.70) 100%
            );
    }

    .hero-content{
        gap:30px;
        padding-top:30px;
        text-align:center;
    }

    .hero-badge{
        margin-bottom:18px;
        padding:10px 15px;
        font-size:12px;
    }

    .hero-left h1{
        margin:0 auto 20px;
        font-size:42px;
        line-height:1;
        letter-spacing:-2px;
    }

    .hero-left p{
        margin:0 auto 25px;
        font-size:15px;
        line-height:1.55;
    }

    .hero-buttons{
        flex-direction:column;
        align-items:center;
        gap:11px;
        margin-bottom:30px;
    }

    .primary-btn,
    .secondary-btn{
        width:100%;
        max-width:340px;
        min-height:54px;
        padding:15px 20px;
        border-radius:16px;
        font-size:15px;
    }

    .hero-stats{
        grid-template-columns:repeat(3,1fr);
        gap:8px;
        max-width:100%;
    }

    .hero-stats > div{
        min-width:0;
        padding:13px 7px;
        border-radius:14px;
    }

    .hero-stats h2{
        font-size:24px;
        line-height:1;
    }

    .hero-stats span{
        display:block;
        font-size:10px;
        line-height:1.25;
    }

    .hero-right{
        max-width:100%;
    }

    .hero-right img{
        height:390px;
        border-radius:22px;
    }

    .floating-card{
        right:12px;
        bottom:12px;
        left:12px;
        width:auto;
        padding:16px;
        border-radius:19px;
    }

    .floating-card small{
        margin-bottom:12px;
        font-size:12px;
    }

    .crop-item{
        margin-bottom:8px;
        padding:10px 12px;
        border-radius:12px;
    }

    .crop-item span{
        font-size:13px;
    }

    .crop-item p{
        font-size:11px;
    }

    .section{
        padding:75px 0;
    }
}


/* =========================================================
   SMALL PHONES — до 390px
========================================================= */

@media (max-width:390px){

    .logo{
        font-size:20px;
    }

    .lang-btn{
        padding:6px 7px;
        font-size:10px;
    }

    .hero-left h1{
        font-size:36px;
        letter-spacing:-1.5px;
    }

    .hero-left p{
        font-size:14px;
    }

    .hero-stats{
        grid-template-columns:1fr;
    }

    .hero-stats > div{
        display:flex;
        align-items:center;
        justify-content:space-between;
        padding:12px 16px;
    }

    .hero-stats h2{
        margin:0;
        font-size:22px;
    }

    .hero-stats span{
        font-size:12px;
    }

    .hero-right img{
        height:350px;
    }

    .floating-card{
        padding:14px;
    }
}