* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}
body {
    background: #f4f6f9;
    color: #1f2d3d;
    line-height: 1.5;
}
/* CONTAINER */
.container {
    max-width: 1100px;
    margin: auto;	
    padding: 0 20px;	
}
.brand {
  font-weight: bold;
  font-size: 1.0em;
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}




/* HEADER */
header {
  background: #1e3a5f;
  color: white;
  padding: 20px 0px 20px 0px;	
  /*display: flex;*/
  justify-content: space-between; /* разносит влево и вправо */
  align-items: center;
}
.header-left {
  display: flex;
  align-items: center;
}

.header-right {
  display: flex;
  gap: 5px; /* расстояние между телефоном/иконками */
  align-items: center;
  flex-wrap: nowrap; /* запрещаем перенос */
}

/* TOP BAR */
.topbar {
    display: flex;
    align-items: right;
    justify-content: space-between;
		
    margin-bottom: 10px;
}

/* LOGO */
.logo {
    display: flex;
    align-items: center;
    gap: 5px;
	flex-wrap: nowrap; /* запрещаем перенос */
}

/* SVG LOGO */
.logo svg {
    width: 38px;
    height: 38px;
}

/* CTA PHONE */
.phone {
    background: rgba(255,255,255,0.1);
    padding: 5px 10px;
    border-radius: 8px;
    color: white;
    text-decoration: none;
    font-size: 14px;
	flex-wrap: nowrap; /* запрещаем перенос */
}

/* HERO */
h1 {
    font-size: 44px;
    letter-spacing: -1px;
}
.subtitle {
    margin-top: 12px;
    opacity: 0.8;
    max-width: 700px;
    font-size: 16px;
}
.subtitle a {
  color: inherit;
  text-decoration: none;
}


.btn {
    display: inline-block;
    margin-top: 25px;
    padding: 10px 18px;
    background: linear-gradient(90deg, #4facfe, #00f2fe);
    color: #0b1220;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    border: none;
    cursor: pointer;
}

/* SECTIONS */
section {
    padding: 30px 0;
	
}
h2 {
    font-size: 26px;
    margin-bottom: 20px;
}

/* GRID */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

/* CARD */
.card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #e5e9f0;
}

/* CASE */
.case {
    background: white;
    padding: 20px;
    border-left: 4px solid #2b6cb0;
    margin-bottom: 15px;
}

/* REVIEW */
.review {
    background: white;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #e5e9f0;
}

/* IMAGE */
.card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 10px;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 30px;
    color: #777;
}


/*  MOBILE (Apple-like clean scaling) */
@media (max-width:768px){
	
  header {
    flex-wrap: nowrap; /* запрещаем перенос */
  }

  .header-right {
    gap: 5px;
    font-size: 12px; /* уменьшаем, чтобы влезло */
  }	
	
	
h1 {
    font-size: 32px;
}
section {
    padding: 40px 0;
}
.topbar {
    /*flex-direction: column;
    gap: 5px;
    align-items: flex-start;*/
	gap: 1px;
    display: flex;
    align-items: right;
    justify-content: space-between;	
	flex-wrap: nowrap; /* запрещаем перенос */
}
}

.phone, .btn {
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}
/* hover */
.phone:hover, .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
/*  */
.phone:active, .btn:active {
    transform: translateY(0px) scale(0.98);
    box-shadow: 0 5px 12px rgba(0,0,0,0.1);
}
/* "shine" */
.btn::after, .phone::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.25), transparent);
    transition: 0.5s;
}
.btn:hover::after, .phone:hover::after {
    left: 100%;
}
.solution-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: all 0.25s ease;
}
.solution-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    border-color: #4facfe;
}
.case-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 16px;
    background: linear-gradient(90deg, #4facfe, #00f2fe);
    color: #0b1220;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.25s ease;
}
.case-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}/* CSS Document */










#toTop{
    position:fixed;
    right:20px;
    bottom:20px;

    width:50px;
    height:50px;

    border:none;
    border-radius:50%;

    background:#5D9DFF;
    color:#fff;

    font-size:24px;
    cursor:pointer;

    box-shadow:0 4px 12px rgba(0,0,0,0.3);

    display:none;
    z-index:9999;

    transition:0.3s;
}

#toTop:hover{
    background:#5D9DFF;
    transform:scale(1.1);
}