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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Archivo', -apple-system, sans-serif;
    background: #0A0A0A;
    color: #FFFFFF;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    overflow-wrap: break-word;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 300;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    background: #0A0A0A;
}

.nav-logo {
    font-weight: 800;
    font-size: 18px;
    letter-spacing: -.5px;
    color: #FFFFFF;
    text-decoration: none;
}

.nav-logo i {
    color: #D63B1F;
    font-style: normal;
}

.nav-links {
    display: none;
    gap: 28px;
    align-items: center;
}

.nav-links a {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .8px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .5);
    text-decoration: none;
}

.nav-links a:hover {
    color: #FFFFFF;
}

.btn-nav {
    background: #D63B1F;
    color: #fff;
    padding: 8px 18px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    text-decoration: none;
}

.burger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.burger span {
    display: block;
    width: 20px;
    height: 1.5px;
    background: #FFFFFF;
    transition: all .25s;
}

.burger.open span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.burger.open span:nth-child(2) {
    opacity: 0;
}

.burger.open span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

.drawer {
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    z-index: 299;
    background: #111;
    border-bottom: 1px solid transparent;
    display: flex;
    flex-direction: column;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease-in-out, border-color 0.35s ease-in-out;
}

.drawer.open {
    max-height: 500px;
    border-bottom-color: rgba(255, 255, 255, .08);
}

.drawer a {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    color: #FFFFFF;
    text-decoration: none;
    padding: 14px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.drawer-cta {
    background: #D63B1F !important;
    margin: 16px 24px;
    text-align: center;
    border-radius: 4px;
    border-bottom: none !important;
}

.hero {
    min-height: 100vh;
    padding: 80px 24px 60px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    background: #0A0A0A;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.hero-bg {
    position: absolute;
    top: 56px;
    right: 20px;
    font-size: clamp(140px, 35vw, 360px);
    font-weight: 900;
    line-height: .85;
    letter-spacing: -8px;
    color: rgba(255, 255, 255, .025);
    pointer-events: none;
    user-select: none;
    font-style: italic;
}

.avail-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .8px;
    text-transform: uppercase;
    color: #22C55E;
}

.avail-dot {
    width: 6px;
    height: 6px;
    background: #22C55E;
    border-radius: 50%;
    animation: blink 2s infinite;
    flex-shrink: 0;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: .3; }
}

.hero-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 40px;
    padding-top: 8px;
}

.hero-avatar {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
}

.avatar-img {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    border: 2px solid #D63B1F;
    flex-shrink: 0;
}

.avatar-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .25);
}

h1 {
    font-size: clamp(52px, 14vw, 130px);
    font-weight: 900;
    line-height: .9;
    letter-spacing: -2px;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-bottom: 32px;
}

h1 .red {
    color: #D63B1F;
}

.hero-bottom {
    display: flex;
    flex-direction: column;
    gap: 24px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding-top: 24px;
}

.hero-desc {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .5);
    max-width: 480px;
}

.hero-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #D63B1F;
    color: #fff;
    padding: 14px 26px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    text-decoration: none;
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, .15);
    color: rgba(255, 255, 255, .5);
    padding: 13px 22px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    text-decoration: none;
}

.ticker-wrap {
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    overflow: hidden;
    padding: 14px 0;
    background: #D63B1F;
}

.ticker {
    display: flex;
    gap: 0;
    white-space: nowrap;
    animation: ticker 25s linear infinite;
    width: max-content;
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.ticker-item {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #fff;
    padding: 0 24px;
    display: inline-flex;
    align-items: center;
    gap: 24px;
}

.ticker-item::after {
    content: "×";
    opacity: .5;
}

.stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.stat {
    padding: 28px 24px;
    border-right: 1px solid rgba(255, 255, 255, .08);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.stat:nth-child(2n) {
    border-right: none;
}

.stat:nth-child(3),
.stat:nth-child(4) {
    border-bottom: none;
}

.stat-n {
    font-size: clamp(36px, 10vw, 56px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -2px;
    color: #FFFFFF;
    margin-bottom: 6px;
}

.stat-n i {
    color: #D63B1F;
    font-style: normal;
}

.stat-l {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .8px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .25);
}

.sec {
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    background: #0A0A0A;
}

.sec-inner {
    padding: 60px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.sec-tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #D63B1F;
    margin-bottom: 16px;
    display: block;
}

.sec-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 48px;
    gap: 16px;
    flex-wrap: wrap;
}

h2 {
    font-size: clamp(30px, 7vw, 64px);
    font-weight: 900;
    line-height: .95;
    letter-spacing: -1px;
    text-transform: uppercase;
    color: #FFFFFF;
}

h2 i {
    font-style: italic;
    font-weight: 800;
    font-family: "Archivo", -apple-system, sans-serif;
    text-transform: none;
    color: rgba(255, 255, 255, .4);
}

.sec-note {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .5);
    max-width: 320px;
    align-self: flex-end;
}

.svc-list {
    display: flex;
    flex-direction: column;
}

.svc {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    transition: padding-left .25s;
}

.svc:last-child {
    border-bottom: none;
}

.svc:hover {
    padding-left: 12px;
}

.svc-num {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, .25);
    letter-spacing: .5px;
    flex-shrink: 0;
    padding-top: 3px;
    width: 28px;
}

.svc-title {
    font-size: clamp(18px, 4vw, 26px);
    font-weight: 800;
    letter-spacing: -.5px;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.svc-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, .5);
    line-height: 1.65;
    margin-bottom: 12px;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.tag {
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 2px;
    padding: 2px 8px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .25);
}

.svc-arrow {
    font-size: 20px;
    color: rgba(255, 255, 255, .25);
    flex-shrink: 0;
    transition: color .2s, transform .2s;
    padding-top: 2px;
}

.svc:hover .svc-arrow {
    color: #D63B1F;
    transform: translateX(4px);
}

.ind-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: rgba(255, 255, 255, .06);
    border-radius: 4px;
    overflow: hidden;
}

.ind-item {
    background: #111;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: background .2s;
}

.ind-item:hover {
    background: #161616;
}

.ind-icon {
    font-size: 24px;
    line-height: 1;
}

.ind-name {
    font-size: 14px;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: -.2px;
}

.ind-meta {
    font-size: 12px;
    color: rgba(255, 255, 255, .35);
    line-height: 1.5;
}

.ind-result {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .3px;
    color: #D63B1F;
    margin-top: 4px;
}

.about-sec {
    background: #0f0f0f;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.about-inner {
    padding: 60px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about-tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #D63B1F;
    margin-bottom: 20px;
    display: block;
}

.about-h {
    font-size: clamp(32px, 8vw, 72px);
    font-weight: 900;
    line-height: .92;
    letter-spacing: -2px;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-bottom: 32px;
}

.about-h i {
    font-style: italic;
    font-weight: 800;
    font-family: "Archivo", -apple-system, sans-serif;
    text-transform: none;
    color: rgba(255, 255, 255, .35);
}

.about-text {
    font-size: 15px;
    line-height: 1.75;
    color: rgba(255, 255, 255, .55);
    margin-bottom: 16px;
    max-width: 580px;
}

.about-text strong {
    color: #FFFFFF;
    font-weight: 700;
}

.about-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
}

.btn-dark {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #FFFFFF;
    color: #0A0A0A;
    padding: 13px 22px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .6px;
    text-transform: uppercase;
    text-decoration: none;
}

.btn-linkedin {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #0077B5;
    color: #fff;
    padding: 13px 22px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .6px;
    text-transform: uppercase;
    text-decoration: none;
}

.about-photo-wrap {
    flex-shrink: 0;
}

.about-photo {
    width: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: 4px;
    display: block;
    filter: grayscale(20%);
}

.expand-block {
    margin-top: 32px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 4px;
    overflow: hidden;
}

.expand-trigger {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
}

.expand-trigger-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .5);
}

.expand-arrow {
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml;utf8,<svg fill='none' stroke='%23D63B1F' stroke-width='2' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'><polyline points='6 9 12 15 18 9'/></svg>");
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
    transition: transform .3s;
}

.expand-trigger.open .expand-arrow {
    transform: rotate(180deg);
}

.expand-content {
    display: none;
    padding: 0 20px;
    border-top: 1px solid rgba(255, 255, 255, .06);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease-in-out;
}

.expand-content.open {
    display: block;
    padding-bottom: 20px;
}

.expand-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 16px;
}

.expand-item:last-child {
    margin-bottom: 20px;
}

.expand-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, .03);
    border-radius: 4px;
    text-decoration: none;
    transition: background .15s;
}

.expand-item:hover {
    background: rgba(255, 255, 255, .06);
}

.expand-item-icon {
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 1px;
}

.expand-item-title {
    font-size: 13px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 3px;
}

.expand-item-sub {
    font-size: 11px;
    color: rgba(255, 255, 255, .35);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: rgba(255, 255, 255, .06);
    border-radius: 8px;
    overflow: hidden;
    margin-top: 40px;
}

.agrid-item {
    background: #141414;
    padding: 24px 20px;
}

.agrid-n {
    font-size: 36px;
    font-weight: 900;
    letter-spacing: -1px;
    color: #FFFFFF;
    line-height: 1;
    margin-bottom: 4px;
}

.agrid-n i {
    color: #D63B1F;
    font-style: normal;
}

.agrid-l {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .6px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .3);
}

.proc-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 4px;
    overflow: hidden;
}

.proc-item {
    padding: 28px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: #141414;
}

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

.proc-n {
    font-size: clamp(48px, 10vw, 72px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -2px;
    color: rgba(255, 255, 255, .06);
    flex-shrink: 0;
}

.proc-title {
    font-size: 16px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 6px;
    letter-spacing: -.2px;
}

.proc-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, .5);
    line-height: 1.65;
}

.tool-sec {
    background: #D63B1F;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.tool-inner {
    padding: 60px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.tool-tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .6);
    margin-bottom: 20px;
    display: block;
}

.tool-h {
    font-size: clamp(32px, 8vw, 72px);
    font-weight: 900;
    line-height: .92;
    letter-spacing: -2px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 24px;
}

.tool-h i {
    font-style: italic;
    font-weight: 800;
    font-family: "Archivo", -apple-system, sans-serif;
    opacity: .7;
    text-transform: none;
}

.tool-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, .75);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 540px;
}

.tool-card {
    background: rgba(0, 0, 0, .2);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 8px;
    padding: 24px;
}

.tool-card-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.tool-av {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, .15);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.tool-name {
    font-weight: 700;
    font-size: 14px;
    color: #fff;
}

.tool-sub {
    font-size: 11px;
    color: rgba(255, 255, 255, .4);
    margin-top: 2px;
}

.tool-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tl {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: rgba(255, 255, 255, .75);
}

.tl-dot {
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, .5);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 6px;
}

.btn-wout {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, .3);
    color: #fff;
    padding: 12px 22px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .6px;
    text-transform: uppercase;
    text-decoration: none;
    margin-top: 28px;
}

.icp-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 4px;
    overflow: hidden;
}

.icp-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    background: #141414;
    transition: background .15s;
}

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

.icp-item:hover {
    background: #181818;
}

.icp-text {
    font-size: 14px;
    font-weight: 500;
    color: #FFFFFF;
}

.icp-arr {
    color: rgba(255, 255, 255, .25);
    font-size: 16px;
}

.price-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1px;
    background: rgba(255, 255, 255, .08);
    border-radius: 4px;
    overflow: hidden;
}

.pcard {
    background: #141414;
    padding: 28px 24px;
    position: relative;
}

.pcard.hot {
    background: #181818;
}

.hot-pill {
    display: inline-block;
    background: #D63B1F;
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 2px;
    margin-bottom: 12px;
}

.p-tier {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .25);
    margin-bottom: 10px;
}

.p-price {
    font-size: clamp(36px, 10vw, 52px);
    font-weight: 900;
    letter-spacing: -2px;
    color: #FFFFFF;
    line-height: 1;
    margin-bottom: 6px;
}

.p-price span {
    font-size: 16px;
    color: rgba(255, 255, 255, .4);
    font-weight: 400;
    letter-spacing: 0;
}

.p-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, .5);
    line-height: 1.6;
    margin-bottom: 20px;
}

.p-list {
    list-style: none;
    margin-bottom: 24px;
}

.p-list li {
    font-size: 13px;
    padding: 9px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, .75);
}

.p-list li:last-child {
    border-bottom: none;
}

.p-list li::before {
    content: "→";
    color: #D63B1F;
    font-size: 11px;
    flex-shrink: 0;
    font-weight: 700;
}

.p-list li.off {
    color: rgba(255, 255, 255, .25);
}

.p-list li.off::before {
    content: "—";
    color: rgba(255, 255, 255, .08);
}

.pbtn {
    display: block;
    text-align: center;
    padding: 13px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: .6px;
    text-transform: uppercase;
    text-decoration: none;
}

.p-o {
    border: 1px solid rgba(255, 255, 255, .15);
    color: rgba(255, 255, 255, .6);
}

.p-s {
    background: #D63B1F;
    color: #fff;
}

.cta-sec {
    padding: 80px 24px;
    background: #0A0A0A;
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 50%;
    right: 40px;
    transform: translateY(-50%);
    font-size: clamp(100px, 25vw, 220px);
    font-weight: 900;
    color: rgba(255, 255, 255, .025);
    letter-spacing: -6px;
    font-style: italic;
    text-transform: uppercase;
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
}

.cta-sec h2 {
    font-size: clamp(36px, 10vw, 88px);
    font-weight: 900;
    letter-spacing: -3px;
    text-transform: uppercase;
    line-height: .9;
    margin-bottom: 24px;
    color: #FFFFFF;
    position: relative;
    z-index: 1;
}

.cta-sec h2 i {
    font-style: italic;
    font-weight: 800;
    font-family: "Archivo", -apple-system, sans-serif;
    color: #D63B1F;
    text-transform: none;
}

.cta-sec p {
    font-size: 15px;
    color: rgba(255, 255, 255, .5);
    line-height: 1.7;
    max-width: 440px;
    margin-bottom: 36px;
    position: relative;
    z-index: 1;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #D63B1F;
    color: #fff;
    padding: 16px 32px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
    z-index: 1;
}

footer {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 32px 24px;
    background: #050505;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ft-logo {
    font-size: 16px;
    font-weight: 800;
    letter-spacing: -.3px;
    color: #FFFFFF;
}

.ft-logo i {
    color: #D63B1F;
    font-style: normal;
}

.ft-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.ft-links a {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .6px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .25);
    text-decoration: none;
}

.ft-links a:hover {
    color: #FFFFFF;
}

.ft-copy {
    font-size: 11px;
    color: rgba(255, 255, 255, .2);
    letter-spacing: .3px;
}

@media (max-width: 1200px) {
    .about-h {
        word-break: break-all;
    }
}

@media (min-width: 768px) {
    nav {
        padding: 0 40px;
        height: 60px;
    }

    .burger {
        display: none;
    }

    .nav-links {
        display: flex;
    }

    .hero {
        padding: 80px 40px 60px;
    }

    .sec-inner {
        padding: 80px 40px;
    }

    .about-inner {
        padding: 80px 40px;
    }

    .tool-inner {
        padding: 80px 40px;
    }

    .cta-sec {
        padding: 100px 40px;
    }

    footer {
        padding: 40px;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .stats {
        grid-template-columns: repeat(4, 1fr);
    }

    .stat {
        border-bottom: none;
    }

    .stat:nth-child(2n) {
        border-right: 1px solid rgba(255, 255, 255, .08);
    }

    .stat:nth-child(4) {
        border-right: none;
    }

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

    .price-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .icp-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .icp-item:nth-child(odd) {
        border-right: 1px solid rgba(255, 255, 255, .08);
    }

    .icp-item:nth-child(5),
    .icp-item:nth-child(6) {
        border-bottom: none;
    }

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

    .about-layout {
        flex-direction: row;
        align-items: flex-start;
        gap: 64px;
    }

    .about-photo-wrap {
        width: 320px;
        position: sticky;
        top: 80px;
    }

    .about-photo {
        height: 440px;
        max-height: none;
    }

    .tool-layout {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: start;
    }

    .ind-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .tool-card {
        margin-top: 25px;
    }

    h1 {
        font-size: clamp(42px, 12vw, 100px);
    }

    .hero {
        min-height: auto;
    }

    .hero-top {
        padding-top: 0;
    }

    .hero-bg,
    .cta-bg {
        right: 50%;
        transform: translateX(50%);
    }
}
