:root {
  --navy: #304F73;
  /*--navy: #0F7487;*/
  --blue: #0F7487;
  --orange: #c7772f;
  --attn: #e22f2f;
  --text: #24304a;
  --muted: #5f6878;
  --bg: #f8f9ff;
  --white: #ffffff;
}

a:hover {
    text-decoration: none;
    cursor: pointer;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
}

.site-header {
  width: 100%;
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fd 100%);
  border-bottom: 1px solid rgba(35, 56, 95, 0.08);
}

.app-shell{
  max-width: 1180px;
  margin: 0 auto;
  min-height: calc(85vh - 204px);
}
.nav-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--navy);
  flex-shrink: 0;
}

.brand img {
  width: auto;
  height: 120px;
  display: block;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text strong {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-text span {
  margin-top: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}

.main-nav a {
  text-decoration: none;
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
  transition: color 0.18s ease;
}

.main-nav a:hover {
  color: var(--orange);
  text-decoration: none;
  cursor: pointer;
}



.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 26px;
  border-radius: 999px;
  background: var(--navy);
  color: white;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(35, 56, 95, 0.22);
  transition: transform 0.18s ease, background 0.18s ease;
  flex-shrink: 0;
}

.nav-cta:hover {
  background: #172944;
  transform: translateY(-1px);
}


.hero {
  background:
    radial-gradient(circle at top center, rgba(47, 113, 133, 0.10), transparent 38%),
    linear-gradient(180deg, #f8faff 0%, #ffffff 100%);
  padding: 76px 24px 54px;
  text-align: center;
}

.hero-inner {
  max-width: 860px;
  margin: 0 auto;
}

.hero-kicker {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.hero h1 {
  margin: 0;
  color: #082344;
  font-size: clamp(30px, 5vw, 60px);
  line-height: 1.08;
  font-weight: 700;
  /*letter-spacing: -0.045em;*/
}

.hero h1 span {
  margin: 0;
  color: #082344;
  font-size: clamp(24px, 5vw, 32px);
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: -0.045em;
}

.hero-subtitle {
  max-width: 560px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 600;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 32px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 900;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn-primary {
  background: #082344;
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(8, 35, 68, 0.22);
}

.btn-primary:hover {
  background: var(--navy);
  transform: translateY(-1px);
}

.btn-secondary {
  color: #082344;
  background: #ffffff;
  border: 2px solid rgba(8, 35, 68, 0.32);
}

.btn-secondary:hover {
  border-color: var(--navy);
  transform: translateY(-1px);
}

.demo-section{
    padding:0 20px;
    background:#fff;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h2{
    margin:0;
    color:var(--navy);
    font-size:32px;
    font-weight:800;
}

.section-title p{
    margin-top:12px;
    color:#666;
    font-size:16px;
}

.demo-grid{
    max-width:1200px;
    margin:0 auto;

    display:flex;
    gap:24px;

    justify-content:center;
    align-items:flex-start;

    flex-wrap:wrap;
}

.demo-card{
    width:210px;
}

.demo-card img{
    width:100%;
    display:block;

    border-radius:12px;
    border:1px solid #d7dce6;

    box-shadow:
        0 8px 20px rgba(0,0,0,0.08);
}

.demo-card h3{
    margin:14px 0 6px;

    color:var(--navy);
    font-size:16px;
    font-weight:700;
}

.demo-card span{
    color:#6b7280;
    font-size:14px;
}

.chaos-section {
  padding: 90px 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f6f8fc 100%);
}

.chaos-wrap {
  max-width: 1180px;
  margin: 0 auto;
}

.chaos-wrap h2 {
  text-align: center;
  margin: 0;
  color: var(--navy);
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.chaos-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.35fr 1fr;
  align-items: center;
  gap: 34px;

  padding: 48px 46px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 55% 35%, rgba(47, 113, 133, 0.08), transparent 34%),
    #ffffff;

  border: 1px solid rgba(35, 56, 95, 0.08);
  box-shadow: 0 24px 60px rgba(35, 56, 95, 0.10);
  overflow: hidden;
}

.chaos-panel h2{
  grid-column: 1 / span 3;
}

.details{
    grid-column: 1 / span 3;
    display:grid; 
    max-width: 950px;
    margin:0 auto;
    grid-template-columns: repeat(3, 1fr); 
    gap:40px; 
}
  
.details-column{
    grid-column:span 1;
    font-size: 14px;
}
.details-c3{
    grid-column:span 3;
    text-align: center;
    color: var(--navy);
}


.chaos-card-container{
  grid-column: 1 / span 3;
  max-width: 1000px;
  margin:0 auto;
  display:flex;
  gap:24px;
  justify-content:center;
  align-items:center;
  flex-wrap:wrap;
}

.chaos-card{
  text-align: center;
  min-height: 180px;
  max-width: 150px;
  font-size: 12px;
  border-radius: 10px;
  border: 1px solid rgba(35, 56, 95, 0.08);
  box-shadow: 0 10px 15px rgba(35, 56, 95, 0.10);
  padding: 10px;
}

.chaos-card i{
  font-size: 54px;
  color: var(--blue);
}

.chaos-card h3{
  margin:10px 0;
}

.chaos-card p{
  margin:0;
  line-height:1.5;
}

.chaos-list h3 {
  margin: 0 0 18px;
  font-size: 18px;
  font-weight: 900;
  color: var(--navy);
}

.chaos-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.chaos-list li {
  position: relative;
  margin-bottom: 14px;
  padding-left: 34px;
  color: #4f596d;
  font-size: 16px;
  font-weight: 700;
}

.chaos-list.bad li::before,
.chaos-list.good li::before {
  position: absolute;
  left: 0;
  top: -1px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 13px;
  font-weight: 900;
}

.chaos-list.bad li::before {
  content: "×";
  background: #e2544d;
}

.chaos-list.good li::before {
  content: "✓";
  background: var(--blue);
  /*background: #23a36b;*/
}

.chaos-screen {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chaos-screen img {
  width: auto;
  height: 350px;
  display: block;
  border-radius: 18px;
 /* border: 1px solid rgba(35, 56, 95, 0.12);*/
  box-shadow: 0 18px 40px rgba(8, 35, 68, 0.16);
}

.resvi-chaos {
  position: absolute;
  right: -10px;
  bottom: -6px;
  width: 170px;
  z-index: 3;
  pointer-events: none;
}

.faq-section {
  padding: 0 24px;
  background: linear-gradient(180deg, #f7f9fd 0%, #ffffff 100%);
}

.faq-wrap {
  max-width: 1180px;
  margin: 0 auto;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 42px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid rgba(35, 56, 95, 0.10);
  border-radius: 20px;
  padding: 26px 28px;
  box-shadow: 0 14px 34px rgba(35, 56, 95, 0.07);
}

.faq-item h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.faq-item p {
  margin: 0;
  color: #4f596d;
  font-size: 16px;
  line-height: 1.65;
  font-weight: 500;
}

.cta-section{
    position:relative;

    background:
      linear-gradient(
        180deg,
        #ffffff 0%,
        #f7f9fd 100%
      );

    padding:50px 20px;
    text-align:center;

    overflow:hidden;

}

.cta-wrap {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    justify-content: center;

}

.cta-content {
  align-self: flex-start;
}
.cta-resvi{
    position:relative;
        align-self: flex-end;
    right:20px;
    bottom:40px;

    height:290px;

    pointer-events:none;
    z-index:55;
}

.cta-section h2{
    margin:0;
    color:var(--navy);
    font-size:42px;
    font-weight:900;
    letter-spacing:-0.03em;
}

.cta-section p{
    max-width:650px;
    margin:20px auto 0;

    color:#5f6878;
    font-size:18px;
    line-height:1.7;
}

.cta-section .btn-primary{
    margin-top:36px;
}

.tc-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  text-align:left;
  padding: 48px 46px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 55% 35%, rgba(47, 113, 133, 0.08), transparent 34%),
    #ffffff;
  border: 1px solid rgba(35, 56, 95, 0.08);
  box-shadow: 0 24px 60px rgba(35, 56, 95, 0.10);
  overflow: hidden;
  font-size: 14px;
}

.tc-panel h2 {
  text-align: left;
}

.tc-panel p {
  margin: 5px 0;
}


.site-footer{
   
    background:#23385f;
    color:#dfe7f3;
}

.footer-wrap{
    max-width:1200px;
    margin:0 auto;

    padding:40px 20px;

    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:40px;
    flex-wrap:wrap;
}

.footer-brand {
  display: flex;
}

.footer-brand h3{
    margin:0 0 8px;
    color:#fff;
    font-size:20px;
}

.footer-brand p{
    margin:0;
    color:#c9d4e6;
}

.footer-brand img {
  width: auto;
  height: 70px;
  display: block;
}

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

.footer-links a{
    color:#dfe7f3;
    text-decoration:none;
    font-size:14px;
}

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

.footer-bottom{
    text-align:center;

    padding:18px 20px;

    border-top:1px solid rgba(255,255,255,.12);

    color:#b8c4d8;
    font-size:13px;
}

.footer-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.pricing-section {
  padding:30px 20px;
  background: linear-gradient(180deg, #f7faff 0%, #ffffff 100%);
  color: #0b1f44;
}

.pricing-container {
  max-width: 1180px;
  margin: 0 auto;
}

.billing-toggle {
  max-width: 430px;
  margin: 0 auto 38px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fff;
  border: 1px solid #dbe3f0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(12, 31, 68, 0.08);
  cursor: pointer;
}

.billing-option {
  padding: 18px 22px;
  font-weight: 800;
  font-size: 14px;
  text-align: left;
}

.billing-option span {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  font-weight: 500;
  color: #62708a;
}

.billing-option.active {
  background: #f1f5fb;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

.price-card {
  position: relative;
  background: #fff;
  border: 1px solid #e0e7f1;
  border-radius: 22px;
  padding: 42px 40px 36px;
  box-shadow: 0 18px 45px rgba(12, 31, 68, 0.09);
  text-align: center;
}

.price-card.featured {
  border: 2px solid #183b7a;
 /* transform: translateY(-26px);*/
  padding-top: 62px;
}

.popular-badge {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: #10285a;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  padding: 12px;
  border-radius: 18px 18px 0 0;
}

.plan-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 32px;
  background: #eef3ff;
}

.plan-icon.blue {
  background: #2f5dcc;
  color: #fff;
}

.plan-icon.orange {
  background: #ffd46b;
  color: #c95700;
}

.plan-icon i{
  font-size: 44px;
}

.price-card h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.plan-desc {
  margin: 8px 0 26px;
  color: var(--navy);
  font-size: 14px;
}

.price {
  margin-bottom: 10px;
  font-weight: 900;
  font-size: 20px;
}

.price span {
  font-size: 54px;
  line-height: 1;
  letter-spacing: -0.06em;
}

.price small {
  font-size: 15px;
  font-weight: 700;
}

.old-price {
    position: relative;
    display: inline-block;
    color: #7d8797;
    font-size: 24px;
    font-weight: 600;
  }

.old-price::after {
    content: '';
    position: absolute;
    left: -2px;
    right: -2px;
    top: 50%;
    height: 2px;              /* <-- thickness */
    background: var(--orange);      /* <-- line color */
    transform: rotate(-3deg); /* optional */
}

.yearly {
  display: inline-block;
  padding: 8px 18px;
  margin-bottom: 15px;
  border-radius: 10px;
  background: #eef3ff;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

.price-card ul {
  margin: 0 0 34px;
  padding: 0;
  list-style: none;
  text-align: left;
}

.price-card li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 15px;
  font-weight: 650;
}

.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  color: #2b7a8a;
  font-weight: 900;
}

.plan-btn {
  display: block;
  padding: 16px 20px;
  border-radius: 9px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.plan-btn.secondary {
  border: 2px solid var(--navy);
  color: var(--navy);
}

.plan-btn.primary {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 14px 28px rgba(16, 40, 90, 0.25);
}

.plan-btn.orange-btn {
  border: 2px solid #f28b22;
  color: #f28b22;
}

.founders-box {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 120px 1.7fr 1fr 1.2fr;
  gap: 28px;
  align-items: center;
  padding: 26px 34px;
  border: 2px solid #f0b83c;
  border-radius: 18px;
  background: linear-gradient(90deg, #fff8e8, #ffffff);
  box-shadow: 0 15px 40px rgba(12, 31, 68, 0.06);
}

.founders-box-small {
  margin-bottom: 15px;
  display: inline-flex;
  align-items:start;
  padding: 10px;
  border: 2px solid #f0b83c;
  border-radius: 18px;
  background: linear-gradient(90deg, #fff8e8, #ffffff);
  box-shadow: 0 15px 40px rgba(12, 31, 68, 0.06);
}

.founders-medal {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #f3c64e;
  color: var(--navy);
  font-weight: 900;
  text-align: center;
  box-shadow: inset 0 0 0 8px #ffe38a;
}

.founders-medal span {
  display: block;
  font-size: 11px;
  line-height: 1.1;
}

.founders-text h3 {
  margin: 0 0 8px;
  font-size: 26px;
  font-weight: 900;
}

.founders-text p {
  margin: 0;
  font-size: 17px;
  line-height: 1.5;
}

.founders-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  column-gap: 14px;
  align-items: center;
}

.founders-medal i{
  font-size: 40px;  
}

.mini-icon {
  grid-row: span 2;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #eef3ff;
  font-size: 24px;
}

.mini-icon i {
  font-size: 36px;
}

.founders-item strong {
  font-size: 15px;
}

.founders-item span {
  color: var(--navy);
  font-size: 13px;
}

.price-reasons {
  max-width: 1180px;
  margin: 70px auto 70px;
  padding: 0 20px;
  text-align: center;
}

.price-reasons h2 {
  margin-bottom: 34px;
  color: var(--navy);
  font-size: 28px;
  font-weight: 900;
}

.reason-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.reason-item {
  padding: 0 26px;
  border-right: 1px solid #dbe3f0;
}

.reason-item:last-child {
  border-right: none;
}

.reason-icon {
  margin-bottom: 14px;
  font-size: 34px;
}
.reason-icon i{
  font-size: 40px;
  color: var(--navy);
}

.reason-item h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 16px;
  font-weight: 900;
}

.reason-item p {
  margin: 0;
  color: var(--navy);
  font-size: 14px;
  line-height: 1.55;
}

.login-card {
  max-width: 40%;
  min-height: 30vh;
  margin: 35px auto 35px;
  background: #fff;
  border: 1px solid #e0e7f1;
  border-radius: 22px;
  padding: 42px 40px 36px;
  box-shadow: 0 18px 45px rgba(12, 31, 68, 0.09);
  text-align: center;
}

.login-line {
    max-width: 70%;
    margin: 0 auto;
    justify-content: center;

}

.page-panel {
  margin: 40px 0;
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-items:start;
  gap: 34px;

  padding: 48px 46px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 55% 35%, rgba(47, 113, 133, 0.08), transparent 34%),
    #ffffff;

  border: 1px solid rgba(35, 56, 95, 0.08);
  box-shadow: 0 24px 60px rgba(35, 56, 95, 0.10);
  overflow: hidden;
}

.page-panel h2 {
  text-align: start;
}

/* ABOUT PAGE */

.about-hero {
  margin: 40px 0;
  padding: 56px 52px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 46px;
  align-items: center;

  border-radius: 28px;
  background:
    radial-gradient(circle at 85% 20%, rgba(199, 119, 47, 0.14), transparent 28%),
    radial-gradient(circle at 12% 20%, rgba(15, 116, 135, 0.12), transparent 34%),
    #ffffff;

  border: 1px solid rgba(35, 56, 95, 0.08);
  box-shadow: 0 24px 60px rgba(35, 56, 95, 0.10);
  overflow: hidden;
}

.about-hero__content h1 {
  margin: 0;
  color: #082344;
  font-size: clamp(32px, 4.2vw, 54px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.about-hero__content p:not(.hero-kicker) {
  max-width: 650px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
  font-weight: 600;
}

.about-hero__actions {
  margin-top: 32px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.about-hero__visual {
  position: relative;
  min-height: 390px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.about-hero__visual img {
  position: relative;
  z-index: 2;
  max-height: 360px;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 22px 24px rgba(8, 35, 68, 0.18));
}

.about-hero__badge {
  /*position: absolute;
  top: 10px;
  right: 0;
  z-index: 3;*/

  max-width: 260px;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  margin-top: 20px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(35, 56, 95, 0.10);
  box-shadow: 0 16px 34px rgba(35, 56, 95, 0.12);
}

.about-hero__badge i {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: var(--blue);
  font-size: 24px;
}

.about-hero__badge span {
  color: var(--navy);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 800;
}

.about-section {
  padding: 28px 0;
}

.about-panel {
  position: relative;
  padding: 44px 46px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 55% 35%, rgba(47, 113, 133, 0.08), transparent 34%),
    #ffffff;
  border: 1px solid rgba(35, 56, 95, 0.08);
  box-shadow: 0 24px 60px rgba(35, 56, 95, 0.10);
  overflow: hidden;
}

.about-panel--story {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 42px;
  align-items: start;
}

.about-panel h2,
.about-highlight h2 {
  margin: 0;
  color: var(--navy);
  font-size: 32px;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.about-eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
}

.about-story-text p,
.about-panel--evolution p,
.about-highlight p {
  margin: 0 0 16px;
  color: #4f596d;
  font-size: 16px;
  line-height: 1.75;
  font-weight: 500;
}

.about-story-text p:last-child,
.about-panel--evolution p:last-child,
.about-highlight p:last-child {
  margin-bottom: 0;
}

.about-chaos-list {
  display: grid;
  gap: 12px;
}

.about-chaos-list span {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: center;

  padding: 12px 14px;
  border-radius: 14px;
  background: #f7f9fd;
  border: 1px solid rgba(35, 56, 95, 0.08);

  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
}

.about-chaos-list i {
  color: var(--blue);
  font-size: 26px;
}

.about-card-grid {
  display: grid;
  gap: 22px;
}

.about-card-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.about-card-grid--five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.about-card {
  min-height: 210px;
  padding: 26px 22px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(35, 56, 95, 0.10);
  box-shadow: 0 14px 34px rgba(35, 56, 95, 0.07);
  text-align: center;
}

.about-card--compact {
  min-height: 190px;
}

.about-card i {
  width: 66px;
  height: 66px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;

  color: #ffffff;
  background: var(--navy);
  font-size: 34px;
  box-shadow: 0 14px 24px rgba(35, 56, 95, 0.18);
}

.about-card:nth-child(even) i {
  background: var(--blue);
}

.about-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.about-card p {
  margin: 0;
  color: #4f596d;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 500;
}

.about-highlight {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 26px;

  padding: 42px 44px;
  border-radius: 26px;
  background:
    linear-gradient(90deg, #fff8e8 0%, #ffffff 55%, #f7f9fd 100%);
  border: 2px solid rgba(240, 184, 60, 0.75);
  box-shadow: 0 20px 48px rgba(12, 31, 68, 0.08);
}

.about-highlight__icon {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  display: grid;
  place-items: center;

  background: #f3c64e;
  color: var(--navy);
  box-shadow: inset 0 0 0 8px #ffe38a;
}

.about-highlight__icon i {
  font-size: 44px;
}

.about-panel--evolution {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.about-principles {
  display: grid;
  gap: 14px;
}

.about-principles span {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  align-items: center;

  padding: 14px 16px;
  border-radius: 16px;
  background: #f7f9fd;
  border: 1px solid rgba(35, 56, 95, 0.08);

  color: var(--navy);
  font-size: 15px;
  font-weight: 800;
}

.about-principles i {
  color: var(--blue);
  font-size: 24px;
}

.about-final-cta {
  margin: 34px 0 54px;
  padding: 50px 38px;
  border-radius: 28px;
  text-align: center;
  background:
    radial-gradient(circle at top center, rgba(15, 116, 135, 0.13), transparent 38%),
    linear-gradient(180deg, #ffffff 0%, #f7f9fd 100%);
  border: 1px solid rgba(35, 56, 95, 0.08);
  box-shadow: 0 24px 60px rgba(35, 56, 95, 0.10);
}

.about-final-cta h2 {
  margin: 0;
  color: var(--navy);
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.about-final-cta p {
  max-width: 720px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
  font-weight: 600;
}

.about-security {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 26px;

  padding: 42px 44px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 90% 25%, rgba(15, 116, 135, 0.10), transparent 30%),
    #ffffff;
  border: 1px solid rgba(35, 56, 95, 0.10);
  box-shadow: 0 20px 48px rgba(12, 31, 68, 0.08);
}

.about-security__icon {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  display: grid;
  place-items: center;

  background: var(--navy);
  color: #ffffff;
  box-shadow: 0 16px 28px rgba(35, 56, 95, 0.20);
}

.about-security__icon i {
  font-size: 44px;
}

.about-security h2 {
  margin: 0;
  color: var(--navy);
  font-size: 32px;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.about-security p {
  margin: 0 0 16px;
  color: #4f596d;
  font-size: 16px;
  line-height: 1.75;
  font-weight: 500;
}

.about-security p:last-child {
  margin-bottom: 0;
}

.video-section {
  margin: 64px 0;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 28px;
}

.video-card {
  display: block;
  width: 100%;
  padding: 0;
  border: 1px solid rgba(48, 79, 115, 0.14);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 18px 45px rgba(36, 48, 74, 0.10);
  overflow: hidden;
  cursor: pointer;
  text-align: left;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(36, 48, 74, 0.16);
  border-color: rgba(15, 116, 135, 0.35);
}

.video-thumb {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  background: #dde6ef;
  overflow: hidden;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.25s ease, filter 0.25s ease;
}

.video-card:hover .video-thumb img {
  transform: scale(1.04);
  filter: brightness(0.9);
}

.video-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 68px;
  height: 68px;
  border-radius: 999px;
  background: rgba(226, 47, 47, 0.94);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.28);
}

.video-play .material-icons {
  font-size: 42px;
  margin-left: 4px;
}

.video-card__body {
  display: block;
  padding: 18px 20px 20px;
}

.video-card__body strong {
  display: block;
  color: var(--text);
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.video-card__body span {
  display: block;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.45;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.video-modal.is-open {
  display: flex;
}

.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(13, 22, 38, 0.74);
  backdrop-filter: blur(5px);
}

.video-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(980px, 96vw);
  background: #ffffff;
  border-radius: 24px;
  padding: 20px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
}

.video-modal__title {
  margin: 0 48px 16px 0;
  color: var(--text);
  font-size: 1.15rem;
}

.video-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(48, 79, 115, 0.10);
  color: var(--text);
  cursor: pointer;
  display: grid;
  place-items: center;
}

.video-modal__close:hover {
  background: rgba(226, 47, 47, 0.12);
  color: var(--attn);
}

.video-modal__frame {
  aspect-ratio: 16 / 9;
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  background: #0d1626;
}

.video-modal__frame iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.confirm-section {
  margin: 26px 0;
  padding: 22px;
  border: 1px solid rgba(48, 79, 115, 0.12);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 14px 35px rgba(36, 48, 74, 0.07);
}

.confirm-section h2 {
  margin: 0 0 16px;
  color: var(--text);
  font-size: 1.25rem;
}

.confirm-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
}

.confirm-table tr {
  border-bottom: 1px solid rgba(48, 79, 115, 0.10);
}

.confirm-table tr:last-child {
  border-bottom: 0;
}

.confirm-table th,
.confirm-table td {
  padding: 12px 10px;
  vertical-align: top;
  text-align: left;
  border-radius: 0;
}

.confirm-table th {
  width: 32%;
  color: var(--muted);
  font-weight: 600;
}

.confirm-table td {
  color: var(--text);
  font-weight: 700;
}

.confirm-actions {
  margin-top: 28px;
  padding: 22px;
  border-radius: 20px;
  background: rgba(15, 116, 135, 0.06);
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.confirm-actions .page-meta {
  width: 100%;
  margin: 0 0 8px;
}

@media (max-width: 640px) {
  .login-card{
    max-width: 90%;
  }

  .footer-links{
    gap:10px;
    font-size: 12px;
  }

  .footer-wrap{
    padding: 20px 10px;
    gap: 20px;
  }
  .confirm-table th,
  .confirm-table td {
    display: block;
    width: 100%;
    padding: 8px 0;
  }

  .confirm-table th {
    padding-top: 14px;
  }

  .confirm-table td {
    padding-bottom: 14px;
  }
}

body.video-modal-open {
  overflow: hidden;
}



.turnstile-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90%;
  padding: 1rem;
}

.cf-turnstile {
  width: fit-content;
  margin: 0 auto;
}



@media (max-width: 900px) {
  .video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .video-section {
    margin: 42px 0;
  }

  .video-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .video-modal {
    padding: 14px;
  }

  .video-modal__dialog {
    padding: 14px;
    border-radius: 20px;
  }

  .video-modal__title {
    font-size: 1rem;
  }
}

@media (max-width: 680px) {
  .about-security {
    grid-template-columns: 1fr;
    padding: 32px 24px;
    border-radius: 22px;
  }

  .about-security__icon {
    width: 74px;
    height: 74px;
  }

  .about-security h2 {
    font-size: 26px;
  }
}

/* ABOUT RESPONSIVE */

@media (max-width: 1020px) {
  .about-hero,
  .about-panel--story,
  .about-panel--evolution {
    grid-template-columns: 1fr;
  }

  .about-hero {
    padding: 44px 34px;
  }

  .about-hero__visual {
    min-height: 320px;
  }

  .about-hero__visual img {
    max-height: 300px;
  }

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

  .about-card-grid--four,
  .about-card-grid--five {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .about-hero,
  .about-panel,
  .about-highlight,
  .about-final-cta {
    border-radius: 22px;
  }

  .about-hero {
    margin: 24px 14px;
    padding: 34px 22px;
  }

  .about-hero__content h1 {
    font-size: 34px;
  }

  .about-hero__content p:not(.hero-kicker) {
    font-size: 16px;
  }

  .about-hero__actions {
    justify-content: center;
  }

  .about-hero__visual {
    min-height: 260px;
  }

  .about-hero__badge {
    position: relative;
    top: auto;
    right: auto;
    margin: 0 auto 18px;
  }

  .about-section {
    padding: 18px 14px;
  }

  .about-panel {
    padding: 32px 24px;
  }

  .about-panel h2,
  .about-highlight h2 {
    font-size: 26px;
  }

  .about-card-grid--four,
  .about-card-grid--five {
    grid-template-columns: 1fr;
  }

  .about-card,
  .about-card--compact {
    min-height: auto;
  }

  .about-highlight {
    grid-template-columns: 1fr;
    padding: 32px 24px;
  }

  .about-highlight__icon {
    width: 74px;
    height: 74px;
  }

  .about-final-cta {
    margin: 20px 14px 42px;
    padding: 38px 24px;
  }

  .about-final-cta h2 {
    font-size: 30px;
  }
}

@media (max-width: 900px) {
  .reason-row {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .reason-item {
    border-right: none;
    border-bottom: 1px solid #dbe3f0;
    padding: 0 20px 26px;
  }

  .reason-item:last-child {
    border-bottom: none;
  }
}

/* Tablet */
@media (max-width: 980px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }

  .price-card.featured {
    transform: none;
  }

  .founders-box {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .founders-medal {
    margin: 0 auto;
  }

  .founders-item {
    max-width: 360px;
    margin: 0 auto;
    text-align: left;
  }
}

/* Mobile */
@media (max-width: 560px) {

  .login-line {
    max-width: 90%;
   

  }
  .pricing-section {
    padding: 25px 14px;
  }

  .billing-toggle {
    grid-template-columns: 1fr;
  }

  .price-card {
    padding: 34px 24px 28px;
  }

  .price-card.featured {
    padding-top: 58px;
  }

  .price span {
    font-size: 44px;
  }

  .founders-box {
    padding: 24px 18px;
  }
}

/* RESPONSIVE BELLOW */

@media (max-width: 760px) {
  .faq-section {
    padding: 64px 18px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .faq-item {
    padding: 22px;
  }

  .faq-item h3 {
    font-size: 18px;
  }

  .faq-item p {
    font-size: 15px;
  }
}




@media (max-width: 820px) {
  .nav-wrap {
    padding: 9px 10px;
    gap: 10px;
  }

  .main-nav {
    display: none;
  }

  .brand{
    gap: 10px;
  }

  .brand img {
    height:60px;
    width: auto;
  }

  .brand-text strong {
    font-size: 14px;
  }

  .nav-cta {
    min-height: 42px;
    padding: 0 9px;
    font-size: 13px;
  }
}

@media (max-width: 460px) {
  .brand-text span {
    display: none;
  }

  .nav-cta {
    padding: 0 14px;
  }
}


@media (max-width: 640px) {
  .hero {
    padding: 56px 20px 42px;
  }

  .hero-kicker {
    font-size: 11px;
    line-height: 1.4;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero-subtitle {
    font-size: 15px;
    line-height: 1.55;
  }

  .hero-actions {
    gap: 12px;
  }

  .btn {
    width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 960px) {
  .chaos-panel {
    grid-template-columns: 1fr;
    text-align: left;
    padding: 38px 28px 150px;
  }

  .chaos-screen {
    order: -1;
  }

  .resvi-chaos {
    width: 145px;
    right: 18px;
    bottom: 10px;
  }
}

@media (max-width: 560px) {
  .chaos-section {
    padding: 64px 18px;
  }

  .chaos-wrap h2 {
    font-size: 26px;
  }

  .chaos-panel {
    padding: 30px 22px 135px;
    border-radius: 22px;
  }

  .chaos-list li {
    font-size: 15px;
  }

  .resvi-chaos {
    width: 120px;
  }
}

/* INDEX - CHAOS SECTION RESPONSIVE FIX */

@media (max-width: 960px) {
  .chaos-panel {
    grid-template-columns: 1fr;
    align-items: stretch;
    text-align: left;
    gap: 30px;
    padding: 38px 28px;
  }

  .chaos-panel h2,
  .chaos-card-container,
  .details,
  .details-column,
  .details-c3 {
    grid-column: 1 / -1;
  }

  .chaos-screen {
    order: 0;
  }

  .chaos-screen img {
    width: 100%;
    max-width: 720px;
    height: auto;
  }

  .details {
    grid-template-columns: 1fr;
    max-width: 100%;
    gap: 28px;
  }

  .details-column h2 {
    text-align: left !important;
  }

  .details-c3 {
    text-align: left;
  }

  .chaos-card-container {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    max-width: 720px;
    gap: 18px;
  }

  .chaos-card {
    max-width: none;
    min-height: auto;
    padding: 18px 16px;
  }
}

@media (max-width: 560px) {
  .chaos-section {
    padding: 46px 14px;
  }

  .chaos-panel {
    padding: 26px 18px;
    border-radius: 22px;
    gap: 26px;
  }

  .chaos-wrap h2 {
    font-size: 24px;
    line-height: 1.18;
  }

  .chaos-list h3 {
    font-size: 17px;
    margin-bottom: 14px;
  }

  .chaos-list li {
    font-size: 15px;
    line-height: 1.35;
    margin-bottom: 12px;
    padding-left: 32px;
  }

  .chaos-list.bad li::before,
  .chaos-list.good li::before {
    width: 21px;
    height: 21px;
    font-size: 12px;
  }

  .chaos-card-container {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .chaos-card {
    text-align: left;
    display: grid;
    grid-template-columns: 54px 1fr;
    column-gap: 14px;
    align-items: start;
  }

  .chaos-card i {
    grid-row: span 2;
    font-size: 44px;
  }

  .chaos-card h3 {
    margin: 0 0 6px;
    font-size: 15px;
  }

  .chaos-card p {
    font-size: 13px;
  }

  .details {
    gap: 22px;
  }

  .details-column,
  .details-c3 {
    font-size: 14px;
    line-height: 1.6;
  }

  .details-column p,
  .details-c3 p {
    margin-top: 8px;
  }
}

/* INDEX - CTA SECTION RESPONSIVE FIX */

@media (max-width: 820px) {
  .cta-section {
    padding: 46px 18px 34px;
  }

  .cta-wrap {
    flex-direction: column;
    align-items: center;
    gap: 28px;
  }

  .cta-content {
    align-self: center;
    max-width: 680px;
  }

  .cta-resvi {
    position: relative;
    right: auto;
    bottom: auto;
    align-self: center;
    height: 230px;
  }

  .cta-section h2 {
    font-size: 34px;
    line-height: 1.12;
  }

  .cta-section p {
    font-size: 16px;
    line-height: 1.6;
  }
}

@media (max-width: 560px) {
  .cta-section {
    padding: 40px 14px 30px;
  }

  .cta-wrap {
    gap: 22px;
  }

  .cta-section h2 {
    font-size: 28px;
    line-height: 1.15;
  }

  .cta-section p {
    margin-top: 16px;
    font-size: 15px;
  }

  .cta-section .btn-primary {
    margin-top: 26px;
  }

  .cta-resvi {
    height: 190px;
    max-width: 100%;
    object-fit: contain;
  }
}

/* PUBLIC HEADER - MOBILE MENU */

.mobile-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: var(--navy);
  color: #ffffff;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  box-shadow: 0 10px 24px rgba(35, 56, 95, 0.18);
}

.mobile-menu-toggle .material-icons {
  font-size: 26px;
}

@media (max-width: 820px) {
  .nav-wrap {
    position: relative;
  }

  .mobile-menu-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 20px;
    right: 20px;
    z-index: 999;

    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;

    margin-left: 0;
    padding: 10px;

    background: #ffffff;
    border: 1px solid rgba(35, 56, 95, 0.10);
    border-radius: 18px;
    box-shadow: 0 24px 60px rgba(35, 56, 95, 0.18);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 0 14px;
    border-radius: 12px;
    font-size: 15px;
  }

  .main-nav a:hover {
    background: #f1f5fb;
  }
}

@media (max-width: 460px) {
  .nav-wrap {
    gap: 10px;
  }

  .nav-cta {
    min-height: 38px;
    padding: 0 12px;
    font-size: 12px;
  }

  .mobile-menu-toggle {
    width: 38px;
    height: 38px;
  }
}

/* REGISTER FORM - MOBILE FIELD WIDTH FIX */

@media (max-width: 980px) {
  .js-form .c2,
  .js-form .c1-fixed,
  .js-form .c1-auto {
    grid-column: span 12;
  }

  .js-form .c1-auto {
    justify-content: flex-start;
    align-self: start !important;
  }

  .js-form .c1-auto .btn-small {
    width: 100%;
    justify-content: center;
  }
}

/* REGISTER CONFIRM - MOBILE TABLE FIX */

@media (max-width: 640px) {
  .page-panel {
    padding: 28px 18px;
    border-radius: 22px;
  }

  .confirm-section {
    padding: 16px;
    margin: 18px 0;
    border-radius: 16px;
  }

  .confirm-section h2 {
    font-size: 1.15rem;
    line-height: 1.2;
    margin-bottom: 12px;
  }

  .confirm-table {
    table-layout: fixed;
    font-size: 13px;
  }

  .confirm-table th,
  .confirm-table td {
    display: table-cell;
    width: auto;
    padding: 9px 8px;
    vertical-align: middle;
  }

  .confirm-table th {
    width: 42%;
    font-size: 13px;
    line-height: 1.25;
    white-space: normal;
  }

  .confirm-table td {
    width: 58%;
    font-size: 13px;
    line-height: 1.25;
    word-break: break-word;
  }

  .confirm-table td {
    font-weight: 600;
  }
}