:root {
    --navy: #0b203d;
    --navy-2: #112f56;
    --blue: #2563eb;
    --blue-2: #3b82f6;
    --sky: #eaf2ff;
    --ink: #15243a;
    --muted: #65738a;
    --line: #e2e9f2;
    --surface: #f6f8fc;
    --white: #fff;
    --orange: #f59e5b;
    --green: #37aa7a;
    --radius: 24px;
    --shadow: 0 24px 60px rgba(18, 46, 84, .1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    direction: rtl;
    font-family: "Vazirmatn", Tahoma, sans-serif;
    color: var(--ink);
    background: var(--white);
    line-height: 1.8;
    overflow-x: hidden;
}
body::selection { color: white; background: var(--blue); }
a { color: inherit; }
img { display: block; max-width: 100%; }

/* Header */
header {
    width: min(1240px, calc(100% - 40px));
    height: 78px;
    padding: 0 18px;
    margin: 16px auto 0;
    display: flex;
    align-items: center;
    gap: 34px;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 100;
    background: rgba(255, 255, 255, .9);
    border: 1px solid rgba(219, 229, 241, .85);
    border-radius: 20px;
    box-shadow: 0 12px 38px rgba(15, 40, 72, .08);
    backdrop-filter: blur(18px);
    transition: height .28s, margin .28s, border-radius .28s, box-shadow .28s;
}
header.is-scrolled { height: 68px; margin-top: 8px; border-radius: 17px; box-shadow: 0 16px 42px rgba(15, 40, 72, .13); }
.logo { width: 125px; height: 52px; display: flex; align-items: center; flex-shrink: 0; overflow: hidden; text-decoration: none; }
.logo img { width: 100%; height: 100%; object-fit: contain; filter: invert(1); }
header nav { margin-right: auto; }
header nav ul { display: flex; align-items: center; gap: 26px; list-style: none; }
header nav a {
    display: block;
    padding: 24px 0;
    color: #4c5d73;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    position: relative;
    transition: color .25s;
}
header nav a::after {
    content: "";
    position: absolute;
    right: 0;
    left: 100%;
    bottom: 16px;
    height: 2px;
    border-radius: 4px;
    background: var(--blue);
    transition: left .25s;
}
header nav a:hover, header nav a.active { color: var(--blue); }
header nav a:hover::after, header nav a.active::after { left: 0; }
.header-actions { display: flex; align-items: center; }
.btn-primary {
    min-height: 48px;
    padding: 0 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: white;
    background: var(--blue);
    border-radius: 13px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(37, 99, 235, .23);
    transition: transform .25s, background .25s, box-shadow .25s;
}
.btn-primary:hover { background: #174fc6; transform: translateY(-2px); box-shadow: 0 14px 28px rgba(37, 99, 235, .3); }
.menu-toggle { display: none; width: 42px; height: 42px; padding: 9px; border: 0; border-radius: 11px; background: var(--sky); cursor: pointer; }
.menu-toggle span { display: block; height: 2px; margin: 5px 0; border-radius: 3px; background: var(--navy); transition: .25s; }

/* Hero */
.hero {
    min-height: 800px;
    padding: 160px max(6vw, calc((100vw - 1180px) / 2)) 80px;
    display: flex;
    align-items: center;
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(245, 249, 255, .08) 0 43%, #f7faff 68%),
        url("/assets/images/hero/hero01.webp") center/cover no-repeat,
        linear-gradient(135deg, #e7f1ff, #f8fbff);
}
.hero::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    right: -260px;
    top: -180px;
    z-index: -1;
    border-radius: 50%;
    border: 1px solid #d6e6fb;
    box-shadow: 0 0 0 80px rgba(231, 241, 255, .65), 0 0 0 160px rgba(231, 241, 255, .3);
}
.hero::after {
    content: "";
    position: absolute;
    width: 130px;
    height: 130px;
    left: 7%;
    bottom: 10%;
    z-index: -1;
    opacity: .35;
    background-image: radial-gradient(var(--blue) 2px, transparent 2px);
    background-size: 15px 15px;
}
.hero-overlay { position: absolute; inset: 0; z-index: -1; background: linear-gradient(to left, rgba(255,255,255,.98) 0%, rgba(255,255,255,.95) 36%, rgba(255,255,255,.3) 67%, transparent 83%); }
.hero-content { width: min(590px, 52%); position: relative; }

.hero-content h1 { max-width: 570px; margin-bottom: 20px; color: var(--navy); font-size: clamp(42px, 5vw, 68px); font-weight: 900; line-height: 1.32; letter-spacing: -2.6px; }
.hero-content p { max-width: 550px; margin-bottom: 34px; color: var(--muted); font-size: 16px; line-height: 2; }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 11px; margin-bottom: 34px; }
.feature-item {
    min-height: 94px;
    padding: 14px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
    color: var(--navy-2);
    background: rgba(255,255,255,.78);
    border: 1px solid rgba(218,228,240,.9);
    border-radius: 16px;
    font-size: 11px;
    font-weight: 700;
    box-shadow: 0 10px 28px rgba(20,50,90,.05);
    backdrop-filter: blur(8px);
    transition: transform .25s, box-shadow .25s;
}
.feature-item:hover { transform: translateY(-4px); box-shadow: 0 16px 30px rgba(20,50,90,.1); }
.feature-item i { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 10px; font-size: 15px; }
.feature-item:nth-child(1) i { color: #e88b45; background: #fff0e4; }
.feature-item:nth-child(2) i { color: #2f9d8b; background: #e7f7f3; }
.feature-item:nth-child(3) i { color: #467bd1; background: #eaf1ff; }
.feature-item:nth-child(4) i { color: #47a965; background: #eaf7ee; }
.hero-content > .btn-primary { min-height: 54px; padding-inline: 30px; }
.hero-proof { width: fit-content; margin-top: 31px; padding-top: 22px; display: flex; align-items: center; border-top: 1px solid #dce6f2; }
.hero-proof > div { min-width: 118px; padding: 0 20px; display: flex; flex-direction: column; line-height: 1.45; }
.hero-proof > div:first-child { padding-right: 0; }
.hero-proof > div:not(:last-child) { border-left: 1px solid #dce6f2; }
.hero-proof strong { color: var(--navy); font-size: 19px; font-weight: 900; }
.hero-proof span { color: var(--muted); font-size: 9.5px; }

/* Shared headings */
.products, .customers, .why-craft { padding: 110px max(6vw, calc((100vw - 1180px) / 2)); }
.section-title, .customers-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--blue);
    font-size: 12px;
    font-weight: 800;
}
.section-title::before, .customers-label::before { content: ""; width: 25px; height: 2px; background: var(--blue); border-radius: 2px; }
.products h2, .customers h2, .why-craft h2 { margin-bottom: 14px; color: var(--navy); font-size: clamp(30px, 3.2vw, 44px); line-height: 1.5; letter-spacing: -1.2px; }
.products > p, .customers-header p { max-width: 650px; color: var(--muted); font-size: 14px; }

/* Products */
.products { text-align: center; background: white; position: relative; }
.products > p { margin: 0 auto 50px; }
.cards-container { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; text-align: right; counter-reset: product-card; }
.card {
    overflow: hidden;
    position: relative;
    background: white;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 14px 38px rgba(20, 50, 90, .06);
    transition: transform .35s, box-shadow .35s, border-color .35s;
    counter-increment: product-card;
}
.card::before { content: "0" counter(product-card); position: absolute; left: 20px; top: 17px; z-index: 3; padding: 4px 10px; color: white; background: rgba(11,32,61,.72); border: 1px solid rgba(255,255,255,.22); border-radius: 20px; font: 700 10px/1.4 "Vazirmatn", sans-serif; backdrop-filter: blur(8px); }
.card:hover { transform: translateY(-9px); border-color: transparent; box-shadow: var(--shadow); }
.card-img { height: 215px; position: relative; overflow: visible; background: linear-gradient(135deg, #dceaff, #f2f7ff); }
.card:nth-child(2) .card-img { background: linear-gradient(135deg, #e2f3f0, #f5fbfa); }
.card:nth-child(3) .card-img { background: linear-gradient(135deg, #fce9db, #fff7f0); }
.card-img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(11,32,61,.18), transparent 60%); }
.card-img img { width: 100%; height: 100%; object-fit: cover; }
.card-icon {
    width: 53px;
    height: 53px;
    display: grid;
    place-items: center;
    position: absolute;
    right: 25px;
    bottom: -25px;
    z-index: 2;
    color: white;
    background: var(--blue);
    border: 5px solid white;
    border-radius: 16px;
    box-shadow: 0 10px 20px rgba(37,99,235,.22);
    transition: transform .3s, box-shadow .3s;
}
.card:hover .card-icon { transform: rotate(-6deg) scale(1.08); box-shadow: 0 14px 26px rgba(37,99,235,.3); }
.card-body { padding: 41px 25px 27px; }
.card-body h3 { min-height: 54px; margin-bottom: 9px; color: var(--navy); font-size: 17px; }
.card-body p { min-height: 75px; margin-bottom: 18px; color: var(--muted); font-size: 13px; line-height: 1.9; }
.card-link { display: inline-flex; align-items: center; gap: 8px; color: var(--blue); font-size: 12px; font-weight: 800; text-decoration: none; }
.card-link i { transition: transform .25s; }.card-link:hover i { transform: translateX(-4px); }

/* Customers */
.customers {
    position: relative;
    overflow: hidden;
    text-align: center;
    background:
        linear-gradient(rgba(245,249,255,.94), rgba(245,249,255,.94)),
        url("/assets/images/customers/customer-bg.webp") center/cover,
        #f4f8fd;
}
.customers::before { content: ""; position: absolute; width: 420px; height: 420px; left: -260px; top: -230px; border-radius: 50%; border: 80px solid rgba(37,99,235,.04); }
.customers-inner { max-width: 1180px; margin: auto; position: relative; z-index: 1; }
.customers-header { margin-bottom: 48px; }.customers-header p { margin: auto; }
.clients-carousel { display: flex; align-items: center; gap: 18px; }
.clients-track { flex: 1; display: flex; align-items: stretch; gap: 18px; }
.client-card {
    flex: 1;
    padding: 28px 22px 25px;
    background: rgba(255,255,255,.9);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: 0 12px 34px rgba(20,50,90,.06);
    transition: transform .3s, border-color .3s, box-shadow .3s;
    position: relative;
}
.client-card::before { content: "“"; position: absolute; top: 7px; right: 18px; color: #d7e5fb; font-size: 42px; font-weight: 900; line-height: 1; }
.client-card.active { transform: translateY(-8px); border-color: #b9d2ff; box-shadow: 0 23px 48px rgba(37,99,235,.13); }
/* .client-card.active::after { content: "مشتری منتخب"; position: absolute; top: -11px; left: 50%; padding: 3px 12px; transform: translateX(-50%); color: white; background: var(--blue); border-radius: 20px; font-size: 9px; font-weight: 700; white-space: nowrap; } */
.client-logo { height: 110px; display: flex; align-items: center; justify-content: center; margin-bottom: 13px; }
.client-logo img { max-height: 95px; object-fit: contain; }
.client-card h3 { margin-bottom: 4px; color: var(--navy); font-size: 16px; }.client-card p { color: var(--muted); font-size: 12px; }
.carousel-btn {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    color: var(--blue);
    background: white;
    border: 1px solid var(--line);
    border-radius: 14px;
    cursor: pointer;
    box-shadow: 0 8px 22px rgba(20,50,90,.08);
    transition: .25s;
}
.carousel-btn:hover { color: white; background: var(--blue); border-color: var(--blue); transform: translateY(-2px); }
.clients-trust { margin-top: 52px; display: flex; align-items: center; justify-content: center; }
.trust-item { padding: 0 34px; display: flex; align-items: center; gap: 11px; color: var(--navy-2); font-size: 12px; font-weight: 700; }
.trust-item:not(:last-child) { border-left: 1px solid #ced9e8; }
.trust-item i { width: 38px; height: 38px; display: grid; place-items: center; color: var(--blue); background: #e4efff; border-radius: 11px; }

/* Why Craft */
.why-craft { background: white; }
.why-craft-inner { max-width: 1180px; margin: auto; }
.why-craft-inner > .section-title, .why-craft h2 { display: flex; justify-content: center; }
.why-craft-tagline {
    max-width: 730px;
    margin: 0 auto 50px;
    padding: 15px 22px;
    color: var(--muted);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 14px;
    text-align: center;
    font-size: 14px;
}
.advantages-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 17px; counter-reset: advantage-card; }
.advantage-card {
    min-height: 255px;
    padding: 29px 24px;
    position: relative;
    overflow: hidden;
    background: white;
    border: 1px solid var(--line);
    border-radius: 19px;
    transition: transform .3s, box-shadow .3s, border-color .3s;
    counter-increment: advantage-card;
}
.advantage-card::after { content: "0" counter(advantage-card); position: absolute; left: 18px; top: 12px; color: #dbe4ef; font-size: 36px; font-weight: 900; }
.advantage-card:hover { transform: translateY(-7px); border-color: transparent; box-shadow: var(--shadow); }
.advantage-icon { width: 54px; height: 54px; margin-bottom: 25px; display: grid; place-items: center; color: var(--blue); background: var(--sky); border-radius: 15px; font-size: 20px; }
.advantage-card:nth-child(2) .advantage-icon { color: #8b5ad7; background: #f1eafb; }
.advantage-card:nth-child(3) .advantage-icon { color: var(--green); background: #e6f6ef; }
.advantage-card:nth-child(4) .advantage-icon { color: #dd8745; background: #fff0e5; }
.advantage-card h3 { margin-bottom: 10px; color: var(--navy); font-size: 16px; }.advantage-card p { color: var(--muted); font-size: 12.5px; line-height: 1.95; }

/* Footer CTA */
.site-footer { color: white; background: var(--navy); position: relative; }
.footer-cta { padding: 0 max(6vw, calc((100vw - 1180px) / 2)); background: white; }
.footer-cta-inner {
    padding: 55px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    overflow: hidden;
    color: white;
    background: linear-gradient(120deg, #2563eb, #123e8e);
    border-radius: 27px 27px 0 0;
}
.footer-cta-inner::before { content: ""; position: absolute; width: 330px; height: 330px; left: -170px; top: -220px; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; box-shadow: 0 0 0 55px rgba(255,255,255,.04), 0 0 0 110px rgba(255,255,255,.025); }
.cta-content { position: relative; z-index: 1; }.cta-badge { display: inline-flex; align-items: center; gap: 7px; margin-bottom: 12px; padding: 5px 13px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.16); border-radius: 30px; font-size: 10px; }
.cta-content h3 { margin-bottom: 8px; font-size: clamp(23px, 2.4vw, 34px); line-height: 1.55; }.cta-content p { color: rgba(255,255,255,.7); font-size: 13px; }
.cta-actions { min-width: 190px; display: flex; flex-direction: column; gap: 10px; position: relative; z-index: 1; }
.btn-cta-primary, .btn-cta-outline { min-height: 49px; padding: 0 22px; display: flex; align-items: center; justify-content: center; gap: 9px; border-radius: 13px; font-size: 12px; font-weight: 800; text-decoration: none; transition: .25s; }
.btn-cta-primary { color: var(--blue); background: white; }.btn-cta-outline { color: white; border: 1px solid rgba(255,255,255,.3); }
.btn-cta-primary:hover, .btn-cta-outline:hover { transform: translateY(-2px); }.btn-cta-outline:hover { background: rgba(255,255,255,.1); }

/* Footer body */
.footer-main { padding: 70px max(6vw, calc((100vw - 1180px) / 2)) 48px; }
.footer-grid { display: grid; grid-template-columns: 1.35fr .8fr .9fr 1.15fr; gap: 50px; }
.footer-brand .footer-logo { display: inline-flex; width: 180px; height: 75px; margin-bottom: 15px; overflow: hidden; }
.footer-brand .footer-logo img { width: 100%; height: 100%; object-fit: contain; }
.footer-brand > p { max-width: 330px; margin-bottom: 22px; color: rgba(255,255,255,.55); font-size: 12px; line-height: 2; }
.footer-social { display: flex; gap: 9px; }.footer-social a { width: 38px; height: 38px; display: grid; place-items: center; color: rgba(255,255,255,.75); background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.09); border-radius: 11px; text-decoration: none; transition: .25s; }
.footer-social a:hover { color: white; background: var(--blue); transform: translateY(-3px); }
.footer-links h4, .footer-contact h4 { margin-bottom: 20px; padding-bottom: 12px; position: relative; font-size: 14px; }
.footer-links h4::after, .footer-contact h4::after { content: ""; width: 28px; height: 2px; position: absolute; right: 0; bottom: 0; background: var(--blue-2); }
.footer-links ul, .footer-contact ul { list-style: none; }.footer-links li { margin-bottom: 10px; }
.footer-links a, .footer-contact a { color: rgba(255,255,255,.55); font-size: 11.5px; text-decoration: none; transition: .25s; }.footer-links a:hover, .footer-contact a:hover { color: white; }
.footer-contact li { margin-bottom: 13px; display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.55); font-size: 11.5px; }
.footer-contact li i { width: 34px; height: 34px; flex-shrink: 0; display: grid; place-items: center; color: #79aafc; background: rgba(37,99,235,.14); border-radius: 9px; }
.footer-bottom { padding: 19px max(6vw, calc((100vw - 1180px) / 2)); display: flex; align-items: center; justify-content: space-between; color: rgba(255,255,255,.35); background: #07172c; font-size: 10.5px; }
.footer-bottom-links { display: flex; align-items: center; gap: 12px; }.footer-bottom a { color: inherit; text-decoration: none; }.footer-bottom a:hover { color: white; }.divider { opacity: .35; }

.reveal-section { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal-section.is-visible { opacity: 1; transform: none; }

@media (max-width: 1050px) {
    header { gap: 20px; } header nav ul { gap: 17px; } header nav a { font-size: 11.5px; }
    .hero { min-height: 740px; }.hero-content { width: 59%; }
    .advantages-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }.footer-brand { grid-column: 1/-1; }
}

@media (max-width: 820px) {
    header { width: calc(100% - 24px); height: 66px; margin-top: 10px; padding-inline: 12px; border-radius: 16px; }
    .logo { width: 105px; height: 44px; }.menu-toggle { display: block; margin-right: auto; order: 2; }.header-actions { order: 3; }.header-actions .btn-primary { min-height: 42px; padding-inline: 15px; }
    header nav { display: none; position: absolute; top: 74px; right: 0; left: 0; margin: 0; padding: 10px; background: rgba(255,255,255,.98); border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow); }
    header nav.is-open { display: block; } header nav ul { display: block; } header nav a { padding: 10px 13px; font-size: 13px; } header nav a::after { display: none; }
    .hero { min-height: 860px; padding: 125px 24px 55px; align-items: flex-start; text-align: center; background: linear-gradient(to bottom, #f7faff 0 62%, rgba(247,250,255,.2)), url("/assets/images/hero/hero-mobile-01.webp") center bottom/cover no-repeat, #f7faff; }
    .hero-overlay { background: linear-gradient(to bottom, rgba(255,255,255,.98) 0%, rgba(255,255,255,.92) 45%, transparent 74%); }.hero-content { width: 100%; max-width: 650px; margin: 0 auto; }.hero-content h1, .hero-content p { margin-inline: auto; }.hero-content h1 { font-size: 42px; }.features-grid { max-width: 560px; margin-inline: auto; margin-bottom: 28px; }
    .hero-proof { margin-inline: auto; }
    .cards-container { grid-template-columns: 1fr; max-width: 530px; margin: auto; }.card-body h3, .card-body p { min-height: auto; }
    .clients-carousel { align-items: stretch; }.clients-track { overflow: hidden; }.client-card { min-width: calc(50% - 9px); }.client-card:nth-child(3) { display: none; }
    .clients-trust { flex-wrap: wrap; gap: 17px; }.trust-item { padding: 0 15px; }
    .footer-cta-inner { padding: 45px 35px; flex-direction: column; text-align: center; }.cta-actions { width: 100%; max-width: 300px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }.footer-brand { grid-column: 1/-1; }.footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 560px) {
    .header-actions { display: none; }
    .hero { min-height: 800px; padding-inline: 16px; }.hero-content h1 { font-size: 34px; letter-spacing: -1.4px; }.hero-content p { font-size: 13.5px; }.hero-content::before { font-size: 8px; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }.feature-item { min-height: 80px; }.hero-content > .btn-primary { width: min(100%, 300px); }
    .hero-proof { width: 100%; justify-content: center; }.hero-proof > div { min-width: 0; flex: 1; padding-inline: 8px; }.hero-proof strong { font-size: 16px; }.hero-proof span { font-size: 8px; }
    .products, .customers, .why-craft { padding: 75px 16px; }.products h2, .customers h2, .why-craft h2 { font-size: 28px; }
    .cards-container { gap: 16px; }.card-img { height: 190px; }
    .carousel-btn { display: none; }.clients-track { flex-direction: column; }.client-card { width: 100%; min-width: 100%; }.client-card:nth-child(3) { display: block; }.client-card.active { transform: none; }
    .clients-trust { flex-direction: column; align-items: flex-start; width: fit-content; margin: 38px auto 0; }.trust-item { padding: 0; border: 0 !important; }
    .advantages-grid { grid-template-columns: 1fr; }.advantage-card { min-height: auto; }
    .footer-cta { padding-inline: 16px; }.footer-cta-inner { padding: 38px 20px; border-radius: 22px 22px 0 0; }.cta-content h3 { font-size: 24px; }
    .footer-main { padding: 55px 22px 38px; }.footer-grid { grid-template-columns: 1fr; gap: 33px; }.footer-brand { grid-column: auto; text-align: center; }.footer-brand .footer-logo { margin-inline: auto; }.footer-brand > p { margin-inline: auto; }.footer-social { justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition: none !important; }
}

/* About page */
.about-page main { overflow: hidden; }
.about-hero {
    min-height: 760px;
    padding: 170px max(6vw, calc((100vw - 1180px) / 2)) 95px;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 80px;
    position: relative;
    isolation: isolate;
    background: linear-gradient(135deg, #f8fbff 0%, #eef5ff 100%);
}
.about-hero::before {
    content: "";
    width: 540px;
    height: 540px;
    position: absolute;
    top: -230px;
    right: -260px;
    z-index: -1;
    border: 1px solid #dbe9fb;
    border-radius: 50%;
    box-shadow: 0 0 0 85px rgba(219,233,251,.45), 0 0 0 170px rgba(219,233,251,.2);
}
.about-hero::after {
    content: "";
    width: 145px;
    height: 145px;
    position: absolute;
    right: 7%;
    bottom: 8%;
    z-index: -1;
    opacity: .3;
    background-image: radial-gradient(var(--blue) 2px, transparent 2px);
    background-size: 16px 16px;
}
.about-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    color: var(--blue);
    font-size: 12px;
    font-weight: 800;
}
.about-kicker i { font-size: 6px; box-shadow: 0 0 0 6px rgba(37,99,235,.1); border-radius: 50%; }
.about-hero h1 {
    max-width: 650px;
    margin-bottom: 22px;
    color: var(--navy);
    font-size: clamp(42px, 4.9vw, 67px);
    font-weight: 900;
    line-height: 1.35;
    letter-spacing: -2.5px;
}
.about-hero h1 em { color: var(--blue); font-style: normal; }
.about-hero-copy > p { max-width: 600px; color: var(--muted); font-size: 15px; line-height: 2.1; }
.about-hero-actions { margin-top: 32px; display: flex; align-items: center; gap: 25px; }
.about-text-link { display: inline-flex; align-items: center; gap: 9px; color: var(--navy); font-size: 13px; font-weight: 800; text-decoration: none; }
.about-text-link i { color: var(--blue); transition: transform .25s; }
.about-text-link:hover i { transform: translateX(-4px); }
.about-visual { width: min(440px, 100%); aspect-ratio: 1; margin: auto; position: relative; display: grid; place-items: center; }
.visual-orbit { position: absolute; border: 1px solid #cbdcf3; border-radius: 50%; }
.orbit-one { inset: 5%; animation: orbit-spin 22s linear infinite; }
.orbit-one::before, .orbit-two::before { content: ""; position: absolute; width: 12px; height: 12px; top: 12%; right: 14%; background: var(--blue); border: 4px solid white; border-radius: 50%; box-shadow: 0 5px 14px rgba(37,99,235,.3); }
.orbit-two { inset: 17%; border-style: dashed; animation: orbit-spin 17s linear infinite reverse; }
.orbit-two::before { width: 9px; height: 9px; top: auto; right: auto; left: 9%; bottom: 20%; background: var(--orange); }
@keyframes orbit-spin { to { transform: rotate(360deg); } }
.visual-core {
    width: 220px;
    height: 220px;
    padding: 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    color: white;
    background: linear-gradient(145deg, #286cec, #0b2d63);
    border: 10px solid rgba(255,255,255,.85);
    border-radius: 50%;
    box-shadow: 0 30px 70px rgba(17,62,126,.25);
}
.visual-core img { width: 135px; height: 72px; margin-bottom: 4px; object-fit: contain; }
.visual-core span { color: rgba(255,255,255,.65); font-size: 9px; }
.visual-chip {
    padding: 11px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    position: absolute;
    z-index: 3;
    color: var(--navy);
    background: rgba(255,255,255,.94);
    border: 1px solid white;
    border-radius: 14px;
    box-shadow: 0 14px 35px rgba(20,50,90,.13);
    font-size: 11px;
    font-weight: 800;
    backdrop-filter: blur(10px);
}
.visual-chip i { width: 33px; height: 33px; display: grid; place-items: center; color: var(--blue); background: var(--sky); border-radius: 10px; }
.chip-top { top: 15%; left: -2%; }
.chip-bottom { right: -3%; bottom: 16%; }
.chip-bottom i { color: var(--green); background: #e6f6ef; }

.about-stats {
    width: min(1060px, calc(100% - 40px));
    margin: -44px auto 0;
    padding: 28px 35px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: relative;
    z-index: 5;
    background: white;
    border: 1px solid var(--line);
    border-radius: 21px;
    box-shadow: 0 20px 50px rgba(20,50,90,.11);
}
.about-stats > div { display: flex; flex-direction: column; align-items: center; text-align: center; }
.about-stats > div:not(:last-child) { border-left: 1px solid var(--line); }
.about-stats strong { color: var(--blue); font-size: 27px; font-weight: 900; line-height: 1.5; }
.about-stats span { color: var(--muted); font-size: 10px; }

.about-story {
    max-width: 1180px;
    margin: auto;
    padding: 130px 0;
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 90px;
}
.story-heading h2, .values-intro h2 {
    color: var(--navy);
    font-size: clamp(30px, 3.3vw, 45px);
    line-height: 1.55;
    letter-spacing: -1.3px;
}
.story-content { padding-right: 35px; border-right: 2px solid var(--line); }
.story-content p { margin-bottom: 17px; color: var(--muted); font-size: 14px; line-height: 2.15; }
.story-content .story-lead { color: var(--navy); font-size: 18px; font-weight: 800; line-height: 1.9; }

.about-values { padding: 110px max(6vw, calc((100vw - 1180px) / 2)); background: var(--surface); }
.values-intro { max-width: 700px; margin: 0 auto 52px; text-align: center; }
.values-intro .section-title { justify-content: center; }
.values-intro p { margin-top: 13px; color: var(--muted); font-size: 14px; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.values-grid article {
    min-height: 290px;
    padding: 31px 28px;
    position: relative;
    overflow: hidden;
    background: white;
    border: 1px solid var(--line);
    border-radius: 21px;
    transition: transform .3s, box-shadow .3s, border-color .3s;
}
.values-grid article:hover { transform: translateY(-7px); border-color: transparent; box-shadow: var(--shadow); }
.value-number { position: absolute; left: 23px; top: 13px; color: #e3eaf3; font-size: 38px; font-weight: 900; }
.value-icon { width: 57px; height: 57px; margin-bottom: 28px; display: grid; place-items: center; color: var(--blue); background: var(--sky); border-radius: 16px; font-size: 21px; }
.values-grid article:nth-child(2) .value-icon { color: var(--green); background: #e6f6ef; }
.values-grid article:nth-child(3) .value-icon { color: #d98240; background: #fff0e5; }
.values-grid h3 { margin-bottom: 11px; color: var(--navy); font-size: 17px; }
.values-grid p { color: var(--muted); font-size: 12.5px; line-height: 2; }

.about-vision {
    max-width: 1180px;
    margin: 110px auto;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    align-items: center;
    overflow: hidden;
    color: white;
    background: linear-gradient(125deg, #0a2345, #174b9d);
    border-radius: 27px;
    box-shadow: 0 28px 65px rgba(11,32,61,.18);
}
.vision-card { padding: 65px; position: relative; }
.vision-card::after { content: ""; width: 260px; height: 260px; position: absolute; right: -160px; bottom: -190px; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; box-shadow: 0 0 0 45px rgba(255,255,255,.025), 0 0 0 90px rgba(255,255,255,.015); }
.vision-icon { width: 50px; height: 50px; margin-bottom: 17px; display: grid; place-items: center; color: #9ec1ff; background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.1); border-radius: 14px; }
.vision-card > span { color: #9ec1ff; font-size: 11px; font-weight: 800; }
.vision-card h2 { margin: 8px 0 15px; font-size: clamp(26px, 3vw, 39px); line-height: 1.55; }
.vision-card p { color: rgba(255,255,255,.6); font-size: 13px; line-height: 2; }
.vision-points { min-height: 100%; padding: 45px; display: flex; flex-direction: column; justify-content: center; gap: 14px; background: rgba(255,255,255,.055); }
.vision-points > div { padding: 17px; display: flex; align-items: center; gap: 13px; background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.08); border-radius: 14px; }
.vision-points i { width: 31px; height: 31px; flex-shrink: 0; display: grid; place-items: center; color: #7fefbc; background: rgba(55,170,122,.15); border-radius: 9px; font-size: 11px; }
.vision-points span { color: rgba(255,255,255,.55); font-size: 10px; }
.vision-points strong { display: block; margin-bottom: 2px; color: white; font-size: 13px; }

@media (max-width: 1050px) {
    .about-hero { gap: 35px; }
    .about-story, .about-vision { width: calc(100% - 48px); }
}

@media (max-width: 820px) {
    .about-hero { min-height: auto; padding: 135px 28px 100px; grid-template-columns: 1fr; text-align: center; }
    .about-hero-copy > p { margin-inline: auto; }
    .about-hero-actions { justify-content: center; }
    .about-visual { width: min(390px, 88vw); }
    .about-stats { margin-top: -40px; grid-template-columns: repeat(2, 1fr); gap: 20px 0; }
    .about-stats > div:nth-child(2) { border-left: 0; }
    .about-story { padding: 100px 0; grid-template-columns: 1fr; gap: 38px; }
    .story-content { padding: 0 25px 0 0; }
    .values-grid { grid-template-columns: 1fr; max-width: 560px; margin: auto; }
    .values-grid article { min-height: auto; }
    .about-vision { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
    .about-hero { padding: 115px 18px 85px; }
    .about-hero h1 { font-size: 35px; letter-spacing: -1.5px; }
    .about-hero-copy > p { font-size: 13.5px; }
    .about-hero-actions { flex-direction: column; gap: 18px; }
    .about-visual { width: 300px; }
    .visual-core { width: 160px; height: 160px; border-width: 7px; }
    .visual-core img { width: 105px; height: 58px; }
    .visual-chip { padding: 8px 10px; font-size: 9px; }.visual-chip i { width: 27px; height: 27px; }
    .about-stats { width: calc(100% - 28px); padding: 24px 12px; }
    .about-stats strong { font-size: 22px; }
    .about-story { width: calc(100% - 32px); padding: 80px 0; }
    .story-heading h2, .values-intro h2 { font-size: 29px; }
    .story-content .story-lead { font-size: 16px; }
    .about-values { padding: 78px 16px; }
    .about-vision { width: calc(100% - 32px); margin: 78px auto; border-radius: 22px; }
    .vision-card, .vision-points { padding: 32px 23px; }
}
