:root {
  --text: #14274b;
  --muted: #49658d;
  --line: #dbe7ff;
  --primary: #4f46e5;
  --secondary: #06b6d4;
  --accent: #7c3aed;
  --bg: #f3f7ff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f8faff 0%, #eff5ff 100%);
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e5edff;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.86rem 0;
}

.brand {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  width: clamp(250px, 27vw, 360px);
  height: auto;
  display: block;
}

nav {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  padding: 0.38rem 0.62rem;
  border-radius: 8px;
}

nav a:hover {
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

nav a.nav-cta {
  color: #fff;
  background: linear-gradient(90deg, #4f46e5, #7c3aed);
  border-radius: 999px;
  padding: 0.42rem 0.88rem;
  box-shadow: 0 8px 16px rgba(79, 70, 229, 0.25);
}

nav a.nav-cta:hover {
  background: linear-gradient(90deg, #4338ca, #6d28d9);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid #dce6ff;
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #1f3560;
  border-radius: 2px;
  transition: 0.22s ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.full-section {
  width: 100%;
}

.section-inner {
  width: min(1240px, 93%);
  margin: 0 auto;
}

.about-banner {
  padding: 1.25rem 0 0.9rem;
  background: transparent;
}

.banner-wrap {
  border: 1px solid #dbe6ff;
  border-radius: 20px;
  box-shadow: 0 14px 30px rgba(20, 39, 75, 0.08);
  padding: 1.35rem 1.4rem;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.crumb {
  margin: 0;
  color: #5a74a0;
  font-weight: 600;
  font-size: 0.88rem;
}

h1 {
  margin: 0.3rem 0 0.45rem;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
}

.banner-text {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
  max-width: 62ch;
}

.banner-icons {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.banner-icons span {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #4f46e5, #06b6d4);
  color: #fff;
  box-shadow: 0 8px 18px rgba(79, 70, 229, 0.25);
}

.feature {
  padding: 0.4rem 0 1.8rem;
  background: transparent;
}

.feature-grid {
  border: 1px solid #dbe6ff;
  border-radius: 20px;
  box-shadow: 0 16px 30px rgba(20, 39, 75, 0.09);
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 1.35rem;
  padding: 1.35rem;
  background: #fff;
}

.sub {
  margin: 0;
  color: #4f46e5;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-size: 0.82rem;
}

h2 {
  margin: 0.42rem 0 0.62rem;
  font-size: clamp(1.9rem, 3.4vw, 3rem);
  line-height: 1.15;
}

.feature-content p {
  color: var(--muted);
  line-height: 1.6;
  margin-top: 0;
}

.feature-list {
  margin-top: 0.5rem;
  display: grid;
  gap: 0.55rem;
}

.feature-list > div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.6rem;
  align-items: flex-start;
  padding: 0.36rem 0.4rem;
  border-radius: 12px;
}

.f-icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: linear-gradient(135deg, #4f46e5, #06b6d4);
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.feature-list h3 {
  margin: 0;
  font-size: 1.9rem;
  line-height: 1.05;
}

.feature-list p {
  margin: 0.25rem 0 0;
}

.feature-actions {
  margin-top: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.7rem 1rem;
}

.btn {
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 999px;
  padding: 0.58rem 1rem;
  box-shadow: 0 10px 18px rgba(79, 70, 229, 0.26);
}

.phone {
  margin: 0;
  color: #5a74a0;
}

.feature-art {
  position: relative;
  min-height: 360px;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(145deg, #eef4ff, #f8fbff);
  border: 1px solid #dbe6ff;
}

.strip {
  position: absolute;
  width: 78%;
  height: 90px;
  left: 14%;
  border-radius: 999px;
  transform: rotate(-32deg);
  background-image: url("https://images.pexels.com/photos/3184465/pexels-photo-3184465.jpeg?auto=compress&cs=tinysrgb&w=1200");
  background-size: cover;
  background-position: center;
  border: 4px solid #fff;
  box-shadow: 0 8px 20px rgba(20, 39, 75, 0.15);
}

.strip-a {
  top: 56px;
}

.strip-b {
  top: 144px;
}

.strip-c {
  top: 232px;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  box-shadow: 0 10px 20px rgba(79, 70, 229, 0.34);
}

.story {
  padding: 0.2rem 0 2.3rem;
  background: transparent;
}

.center {
  text-align: center;
}

.story-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.story-grid article {
  background: #fff;
  border: 1px solid #dbe6ff;
  border-radius: 16px;
  padding: 1.1rem;
  box-shadow: 0 12px 24px rgba(20, 39, 75, 0.09);
}

.story-grid h3 {
  margin: 0 0 0.5rem;
  font-size: 1.45rem;
}

.story-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.site-footer {
  margin-top: 0.4rem;
  position: relative;
  color: #fff;
  padding: 2.3rem 0 1rem;
  overflow: visible;
  background:
    linear-gradient(rgba(7, 13, 28, 0.86), rgba(7, 13, 28, 0.9)),
    url("https://images.pexels.com/photos/4483610/pexels-photo-4483610.jpeg?auto=compress&cs=tinysrgb&w=1600")
      center / cover no-repeat;
}

.site-footer .container {
  width: min(1120px, 92%);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  max-width: 100%;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr minmax(180px, 1.15fr);
  gap: 1.55rem;
  align-items: start;
  padding-bottom: 1.25rem;
  width: 100%;
}

.footer-brand-block,
.footer-links-block,
.footer-contact-block {
  min-width: 0;
}

.footer-brand-block h3 {
  display: flex;
  align-items: center;
  margin: 0 0 0.7rem;
}

.footer-logo-img {
  width: min(360px, 100%);
  height: auto;
  display: block;
}

.footer-brand-block p {
  margin: 0;
  color: #c8d6f3;
  line-height: 1.55;
  max-width: 390px;
  font-size: 0.98rem;
}

.footer-social {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1rem;
}

.footer-social span {
  margin-right: 0.15rem;
  color: #e3edff;
  font-weight: 700;
}

.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  display: grid;
  place-items: center;
  font-size: 0.7rem;
  font-weight: 700;
  text-decoration: none;
  color: #e8f0ff;
  transition: 0.22s ease;
}

.footer-social a svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  stroke: currentColor;
  flex-shrink: 0;
}

.footer-social a:hover {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(79, 70, 229, 0.25);
}

.footer-links-block h4,
.footer-contact-block h4 {
  margin: 0 0 0.75rem;
  font-size: 1.5rem;
}

.footer-links-block a {
  display: block;
  text-decoration: none;
  color: #d6e2fb;
  margin: 0.42rem 0;
  position: relative;
  padding-left: 0.8rem;
  font-size: 0.97rem;
  line-height: 1.35;
}

.footer-links-block a::before {
  content: "›";
  position: absolute;
  left: 0;
  color: #8ca7dc;
}

.footer-contact-block p {
  margin: 0.45rem 0;
  color: #d6e2fb;
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  line-height: 1.38;
  font-size: 0.97rem;
}

.footer-contact-block p span:first-child {
  margin-top: 0.05rem;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  display: inline-block;
  overflow: hidden;
  position: relative;
  text-indent: -999px;
  font-size: 0;
}

.footer-contact-block p span:first-child::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 16px;
  height: 16px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.footer-contact-block p:nth-child(2) span:first-child::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23d6e2fb' d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5a2.5 2.5 0 110-5 2.5 2.5 0 010 5z'/%3E%3C/svg%3E");
}

.footer-contact-block p:nth-child(3) span:first-child::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23d6e2fb' d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z'/%3E%3C/svg%3E");
}

.footer-contact-block p:nth-child(4) span:first-child::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23d6e2fb' d='M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z'/%3E%3C/svg%3E");
}

.footer-contact-block p:nth-child(5) span:first-child::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23d6e2fb' d='M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm.5-13H11v6l5.25 3.15.75-1.23-4.5-2.67z'/%3E%3C/svg%3E");
}

.footer-bottom {
  margin-top: 0.35rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.22);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.82rem 1rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1rem;
}

.footer-bottom-links a {
  color: #fff;
  text-decoration: none;
  font-size: 0.96rem;
}

.copy {
  margin: 0;
  color: #f2f6ff;
  font-size: 0.96rem;
}

@media (max-width: 1000px) {
  .nav-wrap {
    gap: 0.75rem;
    padding: 0.72rem 0;
  }

  .brand-logo {
    width: clamp(210px, 26vw, 300px);
  }

  nav {
    gap: 0.38rem;
  }

  nav a {
    font-size: 0.93rem;
    padding: 0.32rem 0.55rem;
  }

  nav a.nav-cta {
    padding: 0.34rem 0.72rem;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 1.1rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
}

@media (max-width: 840px) {
  .nav-wrap {
    position: relative;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    gap: 0.55rem;
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
  }

  nav {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: min(320px, 100%);
    background: #ffffff;
    border: 1px solid #dfe8ff;
    border-radius: 12px;
    box-shadow: 0 14px 24px rgba(20, 39, 75, 0.14);
    padding: 0.55rem;
    z-index: 70;
  }

  nav.open {
    display: grid;
    gap: 0.42rem;
  }

  nav a {
    text-align: left;
    background: #f4f7ff;
    border: 1px solid #e0e8ff;
    border-radius: 9px;
    padding: 0.5rem 0.55rem;
    font-size: 0.92rem;
  }

  nav a.nav-cta {
    justify-self: stretch;
    text-align: center;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    padding: 1rem;
  }

  .feature-art {
    min-height: 320px;
  }

  .story-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .brand-logo {
    width: min(84vw, 300px);
  }

  .banner-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .banner-icons {
    justify-content: flex-start;
  }

  .feature-grid {
    padding: 0.9rem;
  }

  .feature-list h3 {
    font-size: 1.36rem;
  }

  .feature-art {
    min-height: 260px;
  }

  .strip {
    width: 85%;
    left: 9%;
    height: 72px;
  }

  .strip-a {
    top: 42px;
  }

  .strip-b {
    top: 112px;
  }

  .strip-c {
    top: 182px;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-brand-block p,
  .footer-links-block a,
  .footer-contact-block p,
  .copy,
  .footer-bottom-links a {
    font-size: 0.92rem;
  }

  .footer-contact-block p span:last-child {
    word-break: break-word;
  }

  .footer-bottom-links {
    flex-direction: column;
    gap: 0.45rem;
    width: 100%;
  }
}
