:root {
  --primary: #0046fc;
  --primary-hover: #528bfa;
  --primary-dark: #003bc9;
  --primary-soft: #eaf0fe;
  --accent: #f89524;
  --accent-dark: #d67a0e;
  --accent-soft: #fef1e0;
  --n0: #fff;
  --n25: #fcfcfd;
  --n50: #f8fafd;
  --n100: #eef1f5;
  --n150: #e2e6ea;
  --n200: #d5dce4;
  --n300: #b4bdc9;
  --n400: #8b95a7;
  --n500: #6b7280;
  --n600: #4b5563;
  --n700: #374151;
  --n800: #1f2937;
  --n900: #0f172a;
  --success: #10b981;
  --success-soft: #dcfce7;
  --success-dark: #047857;
  --warning: #f59e0b;
  --warning-soft: #fef3c7;
  --error-soft: #fee2e2;
  --font-display: "Mulish", sans-serif;
  --font-body: "Roboto", sans-serif;
  --font-mono: "JetBrains Mono", monospace;
  --r: 8px;
  --rl: 12px;
  --rxl: 16px;
  --sm: 0 1px 3px rgba(15, 23, 42, 0.06);
  --md: 0 4px 16px rgba(15, 23, 42, 0.06);
  --lg: 0 12px 32px rgba(0, 70, 252, 0.1);
  --xl: 0 24px 56px rgba(0, 70, 252, 0.14);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-hover);
  box-shadow: var(--lg);
  transform: translateY(-1px);
}
.fact .btn-gh {
  border-color: #e2e6ea;
	color: var(--primary)!important;
}
.fact .btn-gh:hover {
  border-color: var(--primary);
  color: var(--primary)!important;
  background: var(--primary-soft);
}
.btn-large {
  height: 52px;
  padding: 0 28px;
  font-size: 15px;
}
.cta-part .btn-white {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
}

.cta-part .btn-white:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.fact .hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--accent);
  color: var(--accent-dark);
  padding: 6px 14px;
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 24px;
  box-shadow: var(--sm);
}
.fact .hero-tag i {
  color: var(--accent);
}
.fact  h1 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.5vw, 52px)!important;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--n900);
  margin-bottom: 20px;
}
.fact  h1 .ac {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.fact .hero-sub {
  font-size: 18px;
  color: var(--n600);
  line-height: 1.65;
  margin-bottom: 28px;
}
.fact .hero-sub strong {
  color: var(--n900);
  font-weight: 600;
}
.fact .hero-bullets {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
	padding:0;
}
.fact .hero-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--n700);
}
.fact .hero-bullets li i {
  color: var(--success);
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}
.fact .hero-bullets li strong {
  color: var(--n900);
  font-weight: 600;
}
.fact .hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.fact .hero-trust {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid var(--n100);
}
.fact .hero-trust-l {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--n500);
  font-family: var(--font-display);
  font-weight: 700;
}
.fact .hero-trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #fff;
  border: 1px solid var(--n100);
  padding: 5px 10px;
  border-radius: 100px;
  font-size: 11px;
  color: var(--n700);
  font-family: var(--font-display);
  font-weight: 600;
  box-shadow: var(--sm);
}
.fact .hero-trust-pill i {
  color: var(--success);
  font-size: 12px;
}
.mockup {
  position: relative;
  background: #fff;
  border-radius: var(--rxl);
  box-shadow: var(--xl);
  border: 1px solid var(--n100);
  overflow: hidden;
}
.mockup-h {
  padding: 12px 18px;
  border-bottom: 1px solid var(--n100);
  background: var(--n25);
  display: flex;
  align-items: center;
  gap: 8px;
}
.mockup-dots {
  display: flex;
  gap: 4px;
}
.mockup-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--n200);
}
.mockup-dots span:nth-child(1) {
  background: #ff5f57;
}
.mockup-dots span:nth-child(2) {
  background: #febc2e;
}
.mockup-dots span:nth-child(3) {
  background: #28c840;
}
.mockup-url {
  flex: 1;
  background: #fff;
  border-radius: 6px;
  padding: 5px 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--n500);
}
.mockup-c {
  padding: 20px;
}
.mock-pn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--n100);
}
.mock-pn-t {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  color: var(--n900);
  display: flex;
  align-items: center;
  gap: 8px;
}
.mock-pn-t i {
  color: var(--primary);
  font-size: 18px;
}
.mock-pn-b {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 800;
  color: #fff;
  background: var(--success);
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 4px;
}
.mock-pn-b i {
  font-size: 12px;
}
.mock-st {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}
.mock-stc {
  background: var(--n25);
  border: 1px solid var(--n100);
  border-radius: 8px;
  padding: 12px;
}
.mock-stc-v {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
  line-height: 1;
}
.mock-stc-v.acc {
  color: var(--accent);
}
.mock-stc-v.su {
  color: var(--success-dark);
}
.mock-stc-l {
  font-size: 10px;
  color: var(--n500);
  margin-top: 4px;
  font-family: var(--font-display);
  font-weight: 600;
}
.mock-rs {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mock-r {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  background: var(--n25);
  border: 1px solid var(--n100);
  border-radius: 8px;
}
.mock-r-i {
  width: 32px;
  height: 32px;
  background: var(--primary-soft);
  color: var(--primary);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.mock-r-i.acc {
  background: var(--accent-soft);
  color: var(--accent-dark);
}
.mock-r-i.su {
  background: var(--success-soft);
  color: var(--success-dark);
}
.mock-r-c {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  color: var(--n900);
}
.mock-r-s {
  font-size: 10px;
  color: var(--n500);
  font-family: var(--font-mono);
  margin-top: 2px;
}
.mock-r-a {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 13px;
  color: var(--n900);
}
.mock-r-st {
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 800;
  padding: 3px 7px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.mock-r-st.ok {
  background: var(--success-soft);
  color: var(--success-dark);
}
.mock-r-st.wt {
  background: var(--warning-soft);
  color: #92400e;
}
.mock-r-st.draft {
  background: var(--n100);
  color: var(--n600);
}
.cd {
  padding: 40px;
  background: linear-gradient(135deg, var(--n900), #0a1929);
  position: relative;
  overflow: hidden;
}
.cd::before {
  content: "";
  position: absolute;
  top: -100px;
  right: 10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(248, 149, 36, 0.2), transparent 60%);
  filter: blur(80px);
}
.cd-i {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
}
.cd-icn {
  width: 72px;
  height: 72px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(248, 149, 36, 0.4);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
.cd-tx {
  color: #fff;
}
.cd-l {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.cd-t {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 6px;
}
.cd-s {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.55;
}
.cd-cn {
  display: flex;
  gap: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--rl);
  padding: 14px 18px;
  backdrop-filter: blur(20px);
}
.cd-cnu {
  text-align: center;
}
.cd-cnv {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: -0.02em;
  line-height: 1;
}
.cd-cnl {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
  font-weight: 600;
  font-family: var(--font-display);
}
.sec {
  padding: 90px 40px;
}
.sec-i {
  max-width: 1200px;
  margin: 0 auto;
}
.sec-eb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  color: var(--primary);
  background: var(--primary-soft);
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 18px;
  letter-spacing: 0.03em;
}
.sec-h {
  text-align: center;
  margin-bottom: 56px;
}
.sec-h h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px)!important;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
  color: var(--n900);
}
.sec-h h2 .ac {
  color: var(--primary);
}
.sec-h p {
  font-size: 16px;
  color: var(--n500);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.65;
}
.fact .prob {
  background: var(--n25);
}
.fact .prob-g {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.fact .prob-c {
	height: 100%;
  background: #fff;
  border: 1px solid var(--n100);
  border-radius: var(--rxl);
  padding: 32px;
  transition: all 0.3s;
}
.fact .prob-c:hover {
  border-color: var(--accent);
  box-shadow: var(--lg);
  transform: translateY(-2px);
}
.fact .prob-i {
  width: 56px;
  height: 56px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: var(--rl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 18px;
}
.fact .prob-c h3 {
  font-family: var(--font-display);
  font-size: 18px!important;
  font-weight: 800;
  letter-spacing: -0.015em;
  margin-bottom: 10px;
  color: var(--n900);
  line-height: 1.3;
}
.fact .prob-c p {
  font-size: 14px;
  color: var(--n600);
  line-height: 1.65;
  margin-bottom: 14px;
}
.fact .prob-c p strong {
  color: var(--n900);
  font-weight: 600;
}
.fact .prob-cost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--error-soft);
  color: #991b1b;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 100px;
}
.fact .prob-cost i {
  font-size: 14px;
}
.fact .feat-g {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.fact .feat-c {
  background: #fff;
  border: 1px solid var(--n100);
  border-radius: var(--rxl);
  padding: 32px;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
	height: 100%;
}
.fact .feat-c:hover {
  border-color: var(--primary);
  box-shadow: var(--lg);
  transform: translateY(-2px);
}
.fact .feat-i-c {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--n100);
}
.fact .feat-ic {
  width: 48px;
  height: 48px;
  background: var(--primary-soft);
  color: var(--primary);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
	margin:0;
}
.fact .feat-c h3 {
  font-family: var(--font-display);
  font-size: 19px!important;
  font-weight: 800;
  letter-spacing: -0.015em;
  color: var(--n900);
  line-height: 1.25;
	margin: 0;
    text-align: left;
}
.fact .feat-c h3 span {
  display: block;
  font-family: var(--font-body);
  font-size: 12px!important;
  font-weight: 400;
  color: var(--n500);
  margin-top: 2px;
}
.fact .feat-c p {
  font-size: 14px;
  color: var(--n600);
  line-height: 1.65;
  margin-bottom: 14px;
	text-align: left;
}
.fact .feat-c p strong {
  color: var(--n900);
  font-weight: 600;
}
.fact .feat-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
  padding-top: 16px!important;
  border-top: 1px solid var(--n100);
	margin: 0;
    padding: 0;
}
.fact .feat-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--n700);
  line-height: 1.5;
}
.fact .feat-list li i {
  color: var(--success);
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}
.tl {
  padding: 90px 40px;
  background: linear-gradient(135deg, var(--primary-soft), #fff);
}
.tl-i {
  max-width: 1000px;
  margin: 0 auto;
}
.tl-st {
  position: relative;
  margin-top: 48px;
  padding-left: 40px;
}
.tl-st::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 14px;
  bottom: 14px;
  width: 2px;
  background: linear-gradient(180deg, var(--primary), var(--accent));
}
.tl-s {
  position: relative;
  padding-bottom: 32px;
}
.tl-s:last-child {
  padding-bottom: 0;
}
.tl-m {
  position: absolute;
  left: -40px;
  top: 4px;
  width: 30px;
  height: 30px;
  background: #fff;
  border: 3px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 12px;
  box-shadow: var(--sm);
}
.tl-s:nth-child(even) .tl-m {
  border-color: var(--accent);
  color: var(--accent);
}
.tl-c {
  background: #fff;
  border: 1px solid var(--n100);
  border-radius: var(--rl);
  padding: 20px 24px;
  box-shadow: var(--sm);
}
.tl-d {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--primary);
  background: var(--primary-soft);
  padding: 2px 8px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 8px;
  font-weight: 600;
}
.tl-s:nth-child(even) .tl-d {
  color: var(--accent-dark);
  background: var(--accent-soft);
}
.tl-t {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--n900);
  margin-bottom: 6px;
}
.tl-tx {
  font-size: 13px;
  color: var(--n600);
  line-height: 1.6;
}
.fact .test {
  padding: 90px 40px;
  background: linear-gradient(135deg, var(--accent-soft), #fff);
}
.fact .test-i {
  max-width: 1000px;
  margin: 0 auto;
}
.fact .test-c {
  background: #fff;
  border: 1px solid var(--n100);
  border-radius: var(--rxl);
  padding: 40px;
  box-shadow: var(--md);
  position: relative;
}
.fact .test-c::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 32px;
  font-family: Georgia, serif;
  font-size: 80px;
  color: var(--accent);
  opacity: 0.4;
  line-height: 1;
}
.fact .test-co {
  padding-top: 36px;
}
.fact .test-tx {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  font-style: italic;
  color: var(--n900);
  line-height: 1.4;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}
.fact .test-au {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 14px;
  align-items: center;
  padding-top: 22px;
  border-top: 1px solid var(--n100);
}
.fact .test-av {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 20px;
}
.fact .test-an {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  color: var(--n900);
}
.fact .test-ar {
  font-size: 12px;
  color: var(--n500);
}
.fact .test-cta {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  border: 1px solid var(--primary);
  border-radius: 100px;
  transition: all 0.2s;
}
.fact .test-cta:hover {
  background: var(--primary);
  color: #fff;
}
.fact .test-m {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--n100);
}
.fact .test-mc {
  text-align: center;
}
.fact .test-mv {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--primary);
  line-height: 1;
}
.fact .test-ml {
  font-size: 11px;
  color: var(--n500);
  margin-top: 6px;
  font-family: var(--font-display);
  font-weight: 600;
}
.faq-s {
  padding: 90px 40px;
  background: var(--n25);
}
.faq-i {
  max-width: 900px;
  margin: 0 auto;
}
.faq-it {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 40px;
}
.faq-x {
  background: #fff;
  border: 1px solid var(--n100);
  border-radius: var(--rl);
  overflow: hidden;
  transition: all 0.3s;
}
.faq-x.op {
  border-color: var(--primary);
  box-shadow: var(--md);
}
.faq-q {
  padding: 20px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--n900);
  letter-spacing: -0.01em;
}
.faq-q i {
  width: 28px;
  height: 28px;
  background: var(--n50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: all 0.3s;
  font-size: 16px;
  flex-shrink: 0;
  margin-left: 14px;
}
.faq-x.op .faq-q i {
  background: var(--primary);
  color: #fff;
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 14px;
  color: var(--n600);
  line-height: 1.7;
}
.faq-ai {
  padding: 0 26px 22px;
}
.faq-ai strong {
  color: var(--n900);
  font-weight: 600;
}
.faq-ai p {
  margin-bottom: 10px;
}
.faq-ai p:last-child {
  margin-bottom: 0;
}
.faq-x.op .faq-a {
  max-height: 500px;
}
.cta-s {
  padding: 80px 40px 100px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  position: relative;
  overflow: hidden;
}
.cta-s::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(248, 149, 36, 0.3), transparent 60%);
  filter: blur(80px);
}
.cta-i {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  color: #fff;
}
.cta-eb {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  color: var(--accent);
  background: rgba(248, 149, 36, 0.15);
  border: 1px solid rgba(248, 149, 36, 0.3);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}
.cta-i h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 44px)!important;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  color: #fff;
}
.cta-i h2 .ac {
  color: var(--accent);
}
.cta-i p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto 32px;
}
.cta-bt {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
footer {
  background: var(--n900);
  color: #fff;
  padding: 60px 40px 32px;
}
.f-i {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.f-b {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}
.f-l {
  display: flex;
  gap: 28px;
  font-size: 13px;
  flex-wrap: wrap;
}
.f-l a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.f-l a:hover {
  color: var(--accent);
}
.f-c {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}
@media (max-width: 1024px) {
  .hero-i {
    grid-template-columns: 1fr;
  }
  .cd-i {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
  }
  .cd-icn {
    margin: 0 auto;
  }
  .prob-g {
    grid-template-columns: 1fr;
  }
  .feat-g {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .nav {
    padding: 12px 20px;
  }
  .nav-bc {
    display: none;
  }
  .hero {
    padding: 90px 20px 40px;
  }
  .sec,
  .cd,
  .prob,
  .tl,
  .test,
  .faq-s,
  .cta-s {
    padding-left: 20px;
    padding-right: 20px;
  }
  .cd-cn {
    flex-direction: row;
    justify-content: space-around;
  }
  .test-m {
    grid-template-columns: 1fr;
  }
  .f-i {
    flex-direction: column;
    text-align: center;
  }
}
