*,
*::before,
*::after { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #222;
  background: #faf7fb;
  line-height: 1.6;
}

.hi-container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}

.hi-main { padding-top: 80px; }

/* Header */
.hi-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.hi-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  gap: 16px;
}

/* styles logo */
.hi-logo img {
    height: 60px;
    height: 110px;
    width: auto;
    display: block;
}

@media (max-width: 600px) {
    .hi-logo img {
        height: 46px;
    }
}


.hi-logo-wrap {
  display: flex;
  flex-direction: column;
}

.hi-logo-main {
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #e84c61;
  font-size: 1.3rem;
}

.hi-logo-sub {
  font-size: 0.8rem;
  opacity: 0.8;
}

.hi-nav {
  display: flex;
  gap: 12px;
  align-items: center;
}

.hi-nav a {
  text-decoration: none;
  font-size: 0.95rem;
  padding: 6px 10px;
  border-radius: 999px;
  color: #444;
  transition: background 0.2s, color 0.2s;
}

.hi-nav a:hover {
  background: rgba(232,76,97,0.08);
  color: #e84c61;
}

.hi-nav a.active {
  background: #e84c61;
  color: #fff;
}

.hi-header-cta {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hi-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  background: #e84c61;
  color: #fff;
  box-shadow: 0 8px 18px rgba(232,76,97,0.25);
  transition: background 0.2s, transform 0.1s, box-shadow 0.1s;
}

.hi-btn:hover {
  background: #d43a50;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(232,76,97,0.35);
}

.hi-btn-outline {
  background: transparent;
  color: #e84c61;
  border: 1px solid rgba(232,76,97,0.5);
  box-shadow: none;
}

.hi-btn-outline:hover {
  background: rgba(232,76,97,0.06);
  box-shadow: none;
}

.hi-btn-large { padding: 10px 22px; }
.hi-btn-block { width: 100%; }

.hi-link-ghost {
  text-decoration: none;
  font-size: 0.9rem;
  color: #e84c61;
  padding: 4px 0;
  border-bottom: 1px solid transparent;
  margin-left: 8px;
}

.hi-link-ghost:hover { border-bottom-color: rgba(232,76,97,0.5); }

/* Hero */
.hi-hero {
  background: radial-gradient(circle at top left,#ffe3ea 0,#faf7fb 40%,#ffffff 100%);
  padding: 40px 0 56px;
}

.hi-hero-slider {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.hi-hero-slide {
  display: none;
  grid-template-columns: minmax(0,1.4fr) minmax(0,1fr);
  gap: 18px;
  padding: 26px 22px 34px;
  align-items: center;
}

.hi-hero-slide-active { display: grid; }

.hi-hero-content h1 {
  margin: 0 0 10px;
  font-size: 1.9rem;
  color: #e84c61;
}

.hi-hero-content p {
  margin: 0 0 16px;
  color: #444;
}

.hi-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.hi-hero-image {
  min-height: 220px;
  border-radius: 22px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hi-hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at bottom right,rgba(0,0,0,0.2),transparent 65%);
  mix-blend-mode: soft-light;
}

.hi-hero-image-1 { background-image: url('/img/slider1.jpg'); }
.hi-hero-image-2 { background-image: url('/img/slider2.jpg'); }
.hi-hero-image-3 { background-image: url('/img/slider3.jpg'); }

.hi-hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: rgba(255,255,255,0.96);
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #e84c61;
}

.hi-hero-prev { left: 10px; }
.hi-hero-next { right: 10px; }

.hi-hero-dots {
  position: absolute;
  bottom: 14px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 6px;
}

.hi-hero-dots button {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: none;
  padding: 0;
  background: rgba(0,0,0,0.16);
  cursor: pointer;
  transition: all 0.2s;
}

.hi-hero-dots button.active {
  width: 20px;
  background: #e84c61;
}

/* Sections */
.hi-section { padding: 40px 0; }

.hi-section h2 {
  margin: 0;
  text-align: center;
  font-size: 1.6rem;
  color: #e84c61;
}

/* Steps */
.hi-steps { background: #ffffff; }

.hi-steps-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 18px;
}

.hi-step {
  background: #fff7fa;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.04);
}

.hi-step-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  margin-bottom: 10px;
  background: linear-gradient(135deg,#e84c61,#ff9dab);
}

.hi-step h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

/* Reasons */
.hi-reasons {
  background: radial-gradient(circle at top right,#ffe5ef 0,#faf7fb 50%,#ffffff 100%);
}

.hi-reasons-head {
  max-width: 680px;
  margin: 0 auto 20px;
  text-align: center;
}

.hi-reasons-head p {
  margin: 8px 0 0;
  color: #444;
}

.hi-reasons-grid {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 18px;
}

.hi-reason {
  background: #fff;
  border-radius: 18px;
  padding: 18px 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.04);
}

.hi-reason h3 { margin: 0 0 8px; font-size: 1.05rem; }
.hi-reason p { margin: 0; font-size: 0.95rem; }

/* Testimonials */
.hi-testimonials { background: #ffffff; }

.hi-testimonials-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 18px;
}

.hi-testimonial {
  background: #f9f1f7;
  border-radius: 18px;
  padding: 18px 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.03);
}

.hi-testimonial blockquote {
  margin: 0 0 10px;
  font-size: 0.95rem;
}

.hi-testimonial figcaption {
  font-size: 0.85rem;
  font-weight: 600;
  color: #e84c61;
}

/* Story */
.hi-story {
  background: radial-gradient(circle at bottom left,#ffe5ef 0,#faf7fb 45%,#ffffff 100%);
}

.hi-story-grid {
  display: grid;
  grid-template-columns: minmax(0,1.5fr) minmax(0,1fr);
  gap: 24px;
  align-items: flex-start;
}

.hi-story-card {
  background: #fff;
  border-radius: 18px;
  padding: 20px 18px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.06);
}

/* Mobile section */
.hi-mobile { background: #ffffff; }

.hi-mobile-grid {
  display: grid;
  grid-template-columns: minmax(0,1.3fr) minmax(0,1fr);
  gap: 24px;
  align-items: center;
}

.hi-mobile-illustration {
  display: flex;
  justify-content: center;
}

.hi-mobile-phone {
  width: 180px;
  height: 340px;
  border-radius: 32px;
  border: 2px solid rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at top,#ffe3ea,#ffffff);
}

.hi-mobile-screen {
  width: 80%;
  height: 80%;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(0,0,0,0.07);
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hi-mobile-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg,#e84c61,#ffb3c3);
}

.hi-mobile-lines span {
  display: block;
  height: 7px;
  border-radius: 999px;
  background: rgba(0,0,0,0.08);
  margin-bottom: 6px;
}
.hi-mobile-lines span:nth-child(1) { width: 80%; }
.hi-mobile-lines span:nth-child(2) { width: 60%; }
.hi-mobile-lines span:nth-child(3) { width: 70%; }

/* City */
.hi-city { background: #ffffff; }
.hi-city-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.hi-city-inner p {
  margin-top: 10px;
  color: #444;
}

/* Footer */
.hi-footer {
  background: #1f1b2b;
  color: #f6f2ff;
  margin-top: 24px;
}

.hi-footer-inner {
  padding: 18px 0 14px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.hi-footer-note {
  margin: 4px 0 0;
  opacity: 0.8;
}

.hi-footer-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hi-footer-links a {
  color: #f6f2ff;
  text-decoration: none;
  font-size: 0.88rem;
  opacity: 0.85;
}

.hi-footer-links a:hover { opacity: 1; }

.hi-footer-network {
  background: #151222;
  font-size: 0.85rem;
}

.hi-footer-network-inner {
  padding: 10px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}

.hi-footer-network a {
  color: #ffd4e0;
  text-decoration: none;
}

.hi-footer-network a:hover { text-decoration: underline; }

/* Responsive */
@media (max-width: 900px) {
  .hi-hero-slide {
    grid-template-columns: minmax(0,1fr);
  }
  .hi-hero-image {
    min-height: 190px;
  }
  .hi-hero-content h1 { font-size: 1.6rem; }
  .hi-steps-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .hi-testimonials-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .hi-reasons-grid,
  .hi-story-grid,
  .hi-mobile-grid { grid-template-columns: minmax(0,1fr); }
}

@media (max-width: 720px) {
  .hi-header-inner { flex-wrap: wrap; }
  .hi-nav {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }
  .hi-header-cta { margin-left: auto; }
}

@media (max-width: 600px) {
  .hi-main { padding-top: 74px; }
  .hi-hero { padding: 28px 0 44px; }
  .hi-hero-slide { padding: 22px 18px 32px; }
  .hi-steps-grid,
  .hi-testimonials-grid { grid-template-columns: minmax(0,1fr); }
}



/*
styles contact
*/

.hi-form label {
    font-weight:600;
    margin-top:14px;
    display:block;
}
.hi-form input,
.hi-form textarea {
    width:100%;
    padding:12px;
    border:1px solid #ccc;
    border-radius:10px;
    margin-top:6px;
    font-size:1rem;
}
.hi-form button {
    margin-top:20px;
}
.hi-alert {
    padding:12px 16px;
    border-radius:12px;
    margin-bottom:20px;
}
.hi-success {
    background:#e6f9ec;
    border:1px solid #a7dcb4;
    color:#2f7a41;
}
