: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);
}

.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: 60%;
    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;
}

@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: 18px 20px;
    gap: 18px;
  }

  .main-nav {
    display: none;
  }

  .brand img {
    width: 48px;
  }

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

  .nav-cta {
    min-height: 42px;
    padding: 0 18px;
    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;
  }
}