/* Path: /assets/css/style.css */
:root {
    --bg-main: #07111f;
    --bg-dark: #08131f;
    --bg-deep: #030712;
    --surface: #0f1f2f;
    --surface-soft: #102438;
    --surface-light: #f5f7fb;
    --card: #ffffff;
    --text: #0f172a;
    --text-soft: #475569;
    --muted: #94a3b8;
    --white: #ffffff;
    --line: rgba(148, 163, 184, .22);
    --line-light: #e2e8f0;
    --accent: #f97316;
    --accent-2: #0ea5e9;
    --success: #25d366;
    --telegram: #229ed9;
    --radius: 26px;
    --shadow-soft: 0 24px 70px rgba(2, 6, 23, .22);
    --shadow-card: 0 18px 45px rgba(15, 23, 42, .10);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 92px;
}

body {
    margin: 0;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-deep);
    color: var(--text);
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

::selection {
    background: rgba(249, 115, 22, .28);
    color: var(--white);
}

.container {
    position: relative;
    z-index: 2;
}

.navbar-tech {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(3, 7, 18, .72);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition: padding .25s ease, background .25s ease, box-shadow .25s ease;
}

.navbar-tech.is-scrolled {
    padding: 9px 0;
    background: rgba(3, 7, 18, .94);
    box-shadow: 0 18px 55px rgba(0, 0, 0, .28);
}

.logo-header {
    width: min(220px, 58vw);
    height: auto;
    object-fit: contain;
}

.navbar-tech .navbar-toggler {
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 14px;
    padding: 9px 11px;
    box-shadow: none;
}

.navbar-tech .navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(249, 115, 22, .25);
}

.navbar-tech .nav-link {
    color: rgba(255, 255, 255, .76) !important;
    font-size: 14px;
    font-weight: 750;
    letter-spacing: .01em;
    padding: 10px 13px !important;
    border-radius: 999px;
    transition: color .2s ease, background .2s ease;
}

.navbar-tech .nav-link:hover,
.navbar-tech .nav-link:focus {
    color: var(--white) !important;
    background: rgba(255, 255, 255, .08);
}

.btn {
    border: 0;
    border-radius: 999px;
    font-weight: 850;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-nav-cta {
    min-height: 44px;
    padding: 11px 18px;
    background: linear-gradient(135deg, #25d366, #16a34a);
    color: #fff !important;
    box-shadow: 0 16px 35px rgba(37, 211, 102, .22);
}

.btn-nav-cta:hover {
    box-shadow: 0 20px 45px rgba(37, 211, 102, .32);
}

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 150px 0 90px;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(3, 7, 18, .98), rgba(8, 19, 31, .94)),
        radial-gradient(circle at 18% 18%, rgba(14, 165, 233, .22), transparent 32%),
        radial-gradient(circle at 82% 16%, rgba(249, 115, 22, .18), transparent 34%),
        #030712;
    color: var(--white);
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,.75), transparent 88%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,.75), transparent 88%);
}

.hero-orb {
    position: absolute;
    width: 440px;
    height: 440px;
    border-radius: 999px;
    filter: blur(35px);
    opacity: .52;
    pointer-events: none;
}

.hero-orb-left {
    left: -210px;
    top: 150px;
    background: rgba(14, 165, 233, .30);
}

.hero-orb-right {
    right: -180px;
    bottom: 80px;
    background: rgba(249, 115, 22, .30);
}

.eyebrow-tag,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    width: fit-content;
    color: #fed7aa;
    background: rgba(249, 115, 22, .12);
    border: 1px solid rgba(249, 115, 22, .30);
    border-radius: 999px;
    padding: 9px 13px;
    font-size: 12px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.hero-title {
    margin: 24px 0 22px;
    font-size: clamp(42px, 6.4vw, 84px);
    line-height: .95;
    letter-spacing: -0.065em;
    font-weight: 950;
    color: var(--white);
}

.hero-subtitle {
    margin: 0;
    max-width: 720px;
    color: rgba(226, 232, 240, .82);
    font-size: clamp(17px, 1.8vw, 21px);
    line-height: 1.75;
}

.hero-actions,
.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.btn-hero-primary,
.btn-hero-secondary {
    min-height: 54px;
    padding: 15px 24px;
    color: var(--white) !important;
}

.btn-hero-primary {
    background: linear-gradient(135deg, var(--accent), #fb923c);
    box-shadow: 0 24px 45px rgba(249, 115, 22, .28);
}

.btn-hero-primary:hover {
    box-shadow: 0 28px 55px rgba(249, 115, 22, .34);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .18);
    backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, .14);
}

.hero-mini-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.proof-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, .80);
    background: rgba(255, 255, 255, .075);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 999px;
    padding: 9px 12px;
    font-size: 13px;
    font-weight: 800;
}

.proof-chip span {
    width: 9px;
    height: 9px;
    border-radius: 99px;
    background: #22c55e;
    box-shadow: 0 0 18px rgba(34, 197, 94, .75);
}

.hero-visual-card {
    position: relative;
    padding: 18px;
    background: linear-gradient(145deg, rgba(255,255,255,.14), rgba(255,255,255,.05));
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 34px;
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(20px);
    overflow: hidden;
}

.hero-visual-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 0%, rgba(249, 115, 22, .22), transparent 40%);
    pointer-events: none;
}

.hero-visual-top {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 5px 5px 15px;
    color: rgba(255,255,255,.76);
    font-size: 13px;
    font-weight: 800;
}

.hero-visual-top strong {
    color: var(--white);
}

.hero-img {
    position: relative;
    z-index: 2;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,.13);
    box-shadow: 0 18px 50px rgba(0,0,0,.32);
}

.hero-visual-metrics {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 14px;
}

.hero-visual-metrics div {
    padding: 14px 10px;
    border-radius: 18px;
    text-align: center;
    background: rgba(3, 7, 18, .52);
    border: 1px solid rgba(255,255,255,.12);
}

.hero-visual-metrics small {
    display: block;
    color: rgba(226, 232, 240, .70);
    font-weight: 750;
    font-size: 12px;
}

.hero-visual-metrics strong {
    display: block;
    margin-top: 4px;
    color: var(--white);
    font-size: 18px;
    font-weight: 950;
}

.section {
    position: relative;
    padding: 96px 0;
    overflow: hidden;
}

.section-dark {
    background: var(--bg-dark);
    color: var(--white);
}

.section-dark::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 8% 12%, rgba(14, 165, 233, .12), transparent 32%),
        radial-gradient(circle at 88% 6%, rgba(249, 115, 22, .10), transparent 32%);
    pointer-events: none;
}

.section-surface {
    background: var(--surface-light);
    color: var(--text);
}

.section-heading {
    max-width: 820px;
    margin: 0 auto 44px;
    text-align: center;
}

.section-heading.text-start {
    margin-left: 0;
    margin-right: 0;
}

.section-title {
    margin: 18px 0 15px;
    font-size: clamp(31px, 4vw, 54px);
    line-height: 1.02;
    letter-spacing: -0.045em;
    font-weight: 950;
}

.section-description {
    margin: 0;
    color: inherit;
    opacity: .72;
    font-size: 17px;
    line-height: 1.75;
}

.section-dark .section-description {
    color: rgba(226, 232, 240, .78);
    opacity: 1;
}

.stats {
    padding-top: 0;
    padding-bottom: 0;
    margin-top: -38px;
    background: transparent;
    color: var(--white);
    z-index: 5;
}

.stats-shell {
    background: rgba(255, 255, 255, .95);
    border: 1px solid rgba(255, 255, 255, .45);
    border-radius: 28px;
    box-shadow: 0 24px 70px rgba(2, 6, 23, .18);
    padding: 28px;
    color: var(--text);
}

.stat-item {
    padding: 10px 24px 10px 0;
    border-right: 1px solid var(--line-light);
}

.stat-number {
    color: var(--accent);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 950;
    line-height: 1;
    letter-spacing: -0.04em;
}

.stat-label {
    margin-top: 8px;
    color: var(--text-soft);
    font-weight: 750;
    line-height: 1.35;
}

.service-card,
.benefit-card,
.timeline-card,
.project-card,
.info-card {
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
}

.service-card {
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.035));
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius);
    box-shadow: 0 18px 48px rgba(0,0,0,.18);
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(249, 115, 22, .42);
    box-shadow: 0 28px 70px rgba(0,0,0,.28);
}

.service-image {
    width: 100%;
    height: 232px;
    object-fit: cover;
    filter: saturate(1.06) contrast(1.04);
}

.service-card-body {
    padding: 25px;
}

.service-badge {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 14px;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(14, 165, 233, .13);
    color: #bae6fd;
    border: 1px solid rgba(14, 165, 233, .24);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .04em;
}

.service-card h3,
.project-card h3,
.timeline-card h3,
.benefit-card h3,
.info-card h3 {
    margin: 0;
    font-weight: 900;
    line-height: 1.15;
}

.service-card h3 {
    color: var(--white);
    font-size: 22px;
}

.service-card p {
    margin: 12px 0 18px;
    color: rgba(226, 232, 240, .76);
    line-height: 1.68;
}

.service-points {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.service-points li {
    position: relative;
    padding-left: 24px;
    color: rgba(226, 232, 240, .82);
    font-size: 14px;
    line-height: 1.45;
}

.service-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .55em;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--accent);
    box-shadow: 0 0 18px rgba(249, 115, 22, .60);
}

.image-frame {
    position: relative;
    padding: 14px;
    border-radius: 34px;
    background: #fff;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(15, 23, 42, .08);
    overflow: hidden;
}

.section-dark .image-frame {
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.12);
    box-shadow: var(--shadow-soft);
}

.image-frame::before {
    content: "";
    position: absolute;
    inset: auto 20px 20px auto;
    width: 140px;
    height: 140px;
    border-radius: 999px;
    background: rgba(249, 115, 22, .20);
    filter: blur(30px);
}

.image-frame img {
    position: relative;
    z-index: 2;
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    border-radius: 24px;
}

.info-list-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 28px;
}

.info-card {
    display: flex;
    gap: 14px;
    padding: 18px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 20px;
    box-shadow: 0 12px 34px rgba(15, 23, 42, .06);
}

.info-card:hover,
.benefit-card:hover,
.timeline-card:hover,
.project-card:hover {
    transform: translateY(-5px);
}

.info-card i,
.benefit-icon {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border-radius: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: linear-gradient(135deg, var(--accent), #fb923c);
    box-shadow: 0 14px 28px rgba(249, 115, 22, .22);
}

.info-card h3 {
    font-size: 17px;
    color: var(--text);
}

.info-card p {
    margin: 6px 0 0;
    color: var(--text-soft);
    font-size: 14px;
    line-height: 1.45;
}

.premium-bullets {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.premium-bullet {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    padding: 16px 18px;
    color: rgba(255,255,255,.86);
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 18px;
}

.premium-bullet i {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: #fed7aa;
    background: rgba(249, 115, 22, .14);
}

.benefit-card {
    padding: 26px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: var(--radius);
    box-shadow: 0 16px 44px rgba(15, 23, 42, .07);
}

.benefit-icon {
    margin-bottom: 18px;
}

.benefit-card h3 {
    font-size: 20px;
    color: var(--text);
}

.benefit-card p {
    margin: 10px 0 0;
    color: var(--text-soft);
    line-height: 1.6;
}

.timeline-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.timeline-card {
    position: relative;
    min-height: 230px;
    padding: 28px;
    background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.035));
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius);
    overflow: hidden;
}

.timeline-card::after {
    content: "";
    position: absolute;
    right: -35px;
    top: -35px;
    width: 120px;
    height: 120px;
    border-radius: 999px;
    background: rgba(249, 115, 22, .14);
}

.timeline-step {
    display: block;
    margin-bottom: 34px;
    color: rgba(249, 115, 22, .82);
    font-size: 38px;
    font-weight: 950;
    line-height: 1;
    letter-spacing: -0.05em;
}

.timeline-card h3 {
    color: #fff;
    font-size: 21px;
}

.timeline-card p {
    margin: 10px 0 0;
    color: rgba(226, 232, 240, .74);
    line-height: 1.58;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 15px;
}

.tech-pill {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 82px;
    padding: 18px;
    color: var(--text);
    background: #fff;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 22px;
    box-shadow: 0 12px 34px rgba(15, 23, 42, .06);
    font-weight: 950;
    letter-spacing: .02em;
}

.project-card {
    overflow: hidden;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius);
    box-shadow: 0 18px 46px rgba(0,0,0,.20);
}

.project-cover {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.project-body {
    padding: 22px;
}

.project-body span {
    display: inline-flex;
    margin-bottom: 12px;
    color: #fed7aa;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 900;
}

.project-body h3 {
    color: #fff;
    font-size: 22px;
}

.brand-section {
    padding: 40px 0;
    background: #030712;
    color: var(--white);
    overflow: hidden;
}

.brand-shell {
    padding: 24px 0;
    border-top: 1px solid rgba(255,255,255,.10);
    border-bottom: 1px solid rgba(255,255,255,.10);
}

.brand-lead {
    margin: 0 0 18px;
    color: rgba(226,232,240,.72);
    text-align: center;
    font-weight: 800;
}

.brand-slider {
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}

.brand-track {
    display: flex;
    width: max-content;
    gap: 14px;
    animation: brandMove 28s linear infinite;
}

.brand-track span {
    min-width: 150px;
    text-align: center;
    padding: 16px 24px;
    border-radius: 999px;
    color: rgba(255,255,255,.78);
    background: rgba(255,255,255,.065);
    border: 1px solid rgba(255,255,255,.11);
    font-weight: 950;
}

@keyframes brandMove {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.cta-section {
    position: relative;
    padding: 92px 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(249,115,22,.20), transparent 34%),
        radial-gradient(circle at 84% 18%, rgba(14,165,233,.16), transparent 34%),
        #08131f;
    color: var(--white);
    overflow: hidden;
}

.cta-panel {
    max-width: 940px;
    margin: 0 auto;
    padding: clamp(32px, 5vw, 58px);
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 34px;
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(18px);
}

.cta-panel h2 {
    margin: 18px auto 16px;
    max-width: 780px;
    font-size: clamp(32px, 4.5vw, 58px);
    line-height: 1.02;
    letter-spacing: -0.05em;
    font-weight: 950;
}

.cta-panel p {
    margin: 0 auto;
    max-width: 720px;
    color: rgba(226,232,240,.78);
    font-size: 17px;
    line-height: 1.75;
}

.footer {
    padding: 70px 0 0;
    background: #030712;
    color: var(--white);
    border-top: 1px solid rgba(255,255,255,.09);
}

.footer-logo {
    width: min(240px, 70vw);
    height: auto;
    margin: 0 auto;
}

.text-lg-start .footer-logo,
.footer .text-lg-start .footer-logo {
    margin-left: 0;
}

.footer-copy {
    color: rgba(226,232,240,.74);
    line-height: 1.75;
}

.footer-title {
    margin: 0 0 18px;
    color: #fff;
    font-size: 17px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.footer-links {
    list-style: none;
    display: grid;
    gap: 10px;
    padding: 0;
    margin: 0;
}

.footer-links a {
    color: rgba(226,232,240,.72);
    font-weight: 750;
}

.footer-links a:hover {
    color: #fed7aa;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    margin-bottom: 12px;
    color: rgba(226,232,240,.78);
    font-weight: 750;
}

.footer-contact-item i {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    color: #fed7aa;
    background: rgba(249,115,22,.12);
}

.footer-bottom {
    margin-top: 46px;
    padding: 24px 0;
    border-top: 1px solid rgba(255,255,255,.09);
    color: rgba(226,232,240,.60);
    text-align: center;
    font-size: 14px;
}

.floating-actions {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 1100;
    display: grid;
    gap: 11px;
}

.whatsapp-float,
.telegram-float,
.back-top {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #fff !important;
    font-size: 25px;
    box-shadow: 0 18px 38px rgba(0,0,0,.24);
    transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}

.whatsapp-float {
    background: #25d366;
}

.telegram-float {
    background: #229ed9;
}

.whatsapp-float:hover,
.telegram-float:hover,
.back-top:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 24px 45px rgba(0,0,0,.32);
}

.back-top {
    position: fixed;
    left: 18px;
    bottom: 18px;
    z-index: 1090;
    border: 0;
    background: rgba(15, 23, 42, .86);
    border: 1px solid rgba(255,255,255,.14);
    cursor: pointer;
}

@media (min-width: 992px) {
    .footer-contact-item {
        justify-content: flex-start;
    }
}

@media (max-width: 991.98px) {
    .navbar-tech {
        padding: 10px 0;
        background: rgba(3, 7, 18, .94);
    }

    .navbar-tech .navbar-collapse {
        margin-top: 14px;
        padding: 14px;
        border-radius: 20px;
        background: rgba(15, 23, 42, .96);
        border: 1px solid rgba(255,255,255,.10);
    }

    .navbar-tech .navbar-nav {
        align-items: stretch !important;
    }

    .navbar-tech .nav-link {
        padding: 13px 14px !important;
    }

    .btn-nav-cta,
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
    }

    .hero-section {
        min-height: auto;
        padding: 128px 0 76px;
    }

    .stats {
        margin-top: 0;
        background: #08131f;
        padding: 26px 0;
    }

    .stat-item {
        border-right: 0;
        border-bottom: 1px solid var(--line-light);
        padding: 12px 0 22px;
    }

    .section {
        padding: 74px 0;
    }

    .info-list-grid,
    .timeline-grid,
    .tech-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-logo,
    .text-lg-start .footer-logo,
    .footer .text-lg-start .footer-logo {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: clamp(38px, 12vw, 56px);
    }

    .hero-actions,
    .cta-actions,
    .hero-mini-proof {
        flex-direction: column;
        align-items: stretch;
    }

    .proof-chip {
        justify-content: center;
    }

    .hero-visual-metrics {
        grid-template-columns: 1fr;
    }

    .section-heading,
    .section-heading.text-start {
        text-align: center !important;
    }

    .section-title.text-start,
    .section-description.text-start {
        text-align: center !important;
    }

    .info-list-grid,
    .timeline-grid,
    .tech-grid {
        grid-template-columns: 1fr;
    }

    .service-image,
    .project-cover {
        height: 220px;
    }

    .floating-actions {
        right: 14px;
        bottom: 14px;
    }

    .whatsapp-float,
    .telegram-float,
    .back-top {
        width: 52px;
        height: 52px;
        font-size: 23px;
    }
}

@media (max-width: 575.98px) {
    html {
        scroll-padding-top: 78px;
    }

    .logo-header {
        width: 176px;
    }

    .hero-section {
        padding-top: 112px;
    }

    .eyebrow-tag,
    .section-kicker {
        font-size: 10px;
        padding: 8px 10px;
        letter-spacing: .06em;
    }

    .hero-visual-card,
    .image-frame,
    .cta-panel {
        border-radius: 24px;
    }

    .service-card-body,
    .benefit-card,
    .timeline-card {
        padding: 22px;
    }

    .stats-shell {
        padding: 20px;
        border-radius: 22px;
    }
}
