:root {
  --navy: #061d44;
  --navy-2: #0a2e67;
  --blue: #0977e8;
  --sky: #dcecff;
  --soft: #f4f8fd;
  --text: #35465d;
  --heading: #071f46;
  --line: #dbe5f1;
  --white: #fff;
  --shadow: 0 16px 40px rgba(9, 35, 76, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--text); font-family: "DM Sans", Arial, sans-serif; line-height: 1.65; background: var(--white); }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1, h2, h3 { margin: 0; color: var(--heading); font-family: "Rajdhani", Arial, sans-serif; line-height: 1.06; }
h1 { font-size: clamp(3rem, 5.4vw, 5.6rem); letter-spacing: -2px; }
h2 { font-size: clamp(2.4rem, 4vw, 3.8rem); letter-spacing: -1px; }
h3 { font-size: 1.55rem; }
p { margin: 0; }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.section-pad { padding: 104px 0; }
.section-soft { background: var(--soft); }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 0 28px; border-radius: 4px; color: #fff; background: var(--blue); font-weight: 700; transition: transform .25s, background .25s, box-shadow .25s; }
.button:hover { transform: translateY(-3px); background: #075ebe; box-shadow: 0 10px 24px rgba(9, 119, 232, .28); }
.eyebrow { color: var(--blue); font-size: .8rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; }
.section-heading { max-width: 680px; margin-bottom: 50px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading h2 { margin: 10px 0 13px; }
.section-heading p:last-child { color: #6b7b91; }

.topbar { color: #d7e4f5; background: var(--navy); font-size: .73rem; }
.topbar-inner { display: flex; min-height: 42px; align-items: center; justify-content: space-between; gap: 20px; }
.topbar-links { display: flex; gap: 14px; }
.topbar a { transition: color .2s; }
.topbar a:hover { color: #fff; }
.mini-icon { color: #4da8ff; font-size: .55rem; margin-right: 4px; }
.main-nav { background: #fff; border-bottom: 1px solid var(--line); }
.nav-inner { display: flex; min-height: 88px; align-items: center; gap: 32px; }
.logo, .footer-logo { color: var(--navy); font: 700 2rem/1 "Rajdhani", Arial, sans-serif; letter-spacing: 1px; }
.logo span, .footer-logo span { color: var(--blue); }
.nav-links { display: flex; align-items: center; gap: 23px; margin-left: auto; }
.nav-links a { position: relative; color: #273a53; font-size: .9rem; font-weight: 700; }
.nav-links a::after { position: absolute; right: 0; bottom: -10px; left: 0; height: 2px; content: ""; background: var(--blue); transform: scaleX(0); transition: transform .25s; }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-button { min-height: 45px; padding: 0 20px; font-size: .88rem; }
.menu-toggle { display: none; border: 0; background: transparent; cursor: pointer; }
.menu-toggle span { display: block; width: 27px; height: 3px; margin: 5px 0; background: var(--navy); }
.hero { padding-top: 72px; overflow: hidden; background: radial-gradient(circle at 15% 15%, #e7f2ff, transparent 34%), #fff; }
.hero-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 52px; }
.hero h1 { margin: 12px 0 18px; }
.hero h1 span { display: block; color: var(--blue); }
.hero-text { max-width: 560px; margin-bottom: 25px; color: #63748b; }
.hero-benefits { display: grid; gap: 13px; margin-bottom: 29px; }
.hero-benefits div { display: flex; gap: 11px; }
.hero-benefits p { color: #708097; font-size: .83rem; line-height: 1.45; }
.hero-benefits strong { display: block; color: var(--heading); font-size: .95rem; }
.check { display: grid; width: 26px; height: 26px; flex: 0 0 26px; place-items: center; border-radius: 50%; color: #fff; background: var(--blue); font-size: .8rem; }
.hero-slider { position: relative; overflow: hidden; min-height: 468px; border-radius: 10px; box-shadow: var(--shadow); background: var(--navy); }
.hero-slide { position: absolute; inset: 0; opacity: 0; transform: scale(1.08); transition: opacity .8s, transform 5.7s; }
.hero-slide.active { opacity: 1; transform: scale(1); }
.hero-slide img { width: 100%; height: 100%; object-fit: fill; }
.slider-dots { position: absolute; right: 0; bottom: 19px; left: 0; z-index: 3; display: flex; justify-content: center; gap: 8px; }
.slider-dots button { width: 9px; height: 9px; padding: 0; border: 1px solid #fff; border-radius: 50%; cursor: pointer; background: transparent; }
.slider-dots button.active { background: #fff; }

.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.product-card { display: block; padding: 12px 12px 21px; overflow: hidden; border: 1px solid #e5edf7; border-radius: 7px; background: #fff; transition: transform .25s, box-shadow .25s, border-color .25s; }
.product-card:hover, .product-card:focus-visible { border-color: #b4d6fa; outline: none; transform: translateY(-8px); box-shadow: var(--shadow); }
.product-image { display: grid; min-height: 235px; place-items: center; overflow: hidden; border-radius: 4px; background: #fff; }
.product-image img { width: 100%; max-height: 225px; object-fit: contain; transition: transform .35s; }
.product-card:hover img { transform: scale(1.05); }
.product-label { margin-top: 16px; color: var(--blue); font-size: .72rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; }
.product-card h3 { margin-top: 3px; font-size: 1.45rem; }

.about-grid { display: grid; grid-template-columns: .95fr 1fr; align-items: center; gap: 72px; }
.about-visual { position: relative; }
.about-visual img { border-radius: 6px; }
.experience-badge { position: absolute; right: -30px; bottom: -25px; display: grid; width: 145px; height: 145px; place-items: center; align-content: center; border: 8px solid #fff; border-radius: 50%; color: #fff; text-align: center; background: var(--blue); }
.experience-badge strong { font: 700 2.5rem/1 "Rajdhani"; }
.experience-badge span { font-size: .73rem; }
.about-copy h2 { margin: 12px 0 20px; }
.about-copy p { margin-bottom: 14px; color: #6c7d92; }
.about-copy .button { margin-top: 13px; }
.counter-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 78px; border: 1px solid var(--line); border-radius: 6px; background: #fff; box-shadow: 0 11px 35px rgba(14, 42, 84, .06); }
.counter-grid div { padding: 24px 18px; border-right: 1px solid var(--line); text-align: center; }
.counter-grid div:last-child { border: 0; }
.counter-grid strong, .counter-grid span { color: var(--blue); font: 700 2.9rem/1 "Rajdhani"; }
.counter-grid p { margin-top: 5px; color: #66788d; font-size: .82rem; font-weight: 700; }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.flip-card { height: 250px; perspective: 1000px; }
.flip-inner { position: relative; width: 100%; height: 100%; transition: transform .7s; transform-style: preserve-3d; }
.flip-card:hover .flip-inner { transform: rotateY(180deg); }
.flip-front, .flip-back { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: center; padding: 28px; border-radius: 7px; overflow: hidden; backface-visibility: hidden; box-shadow: 0 4px 22px rgba(8, 38, 84, .07); }
.flip-front { border: 1px solid #e5edf7; background: #fff; }
.flip-front span { position: absolute; top: 14px; right: 19px; color: #d9e8f8; font: 700 3rem/1 "Rajdhani"; }
.flip-front i { color: var(--blue); font-size: 2.7rem; font-style: normal; }
.flip-front h3 { margin-top: 18px; }
.flip-back { color: #fff; background: linear-gradient(135deg, rgba(4, 32, 75, .94), rgba(9, 101, 199, .93)), url("assets/bg_footer_.png"); background-size: cover; transform: rotateY(180deg); }
.flip-back h3 { margin-bottom: 13px; color: #fff; }
.flip-back p { color: #d3e4f8; font-size: .9rem; }

.step-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 20px; }
.step-grid article { position: relative; padding: 0 18px; text-align: center; }
.step-grid article:not(:last-child)::after { position: absolute; top: 49px; right: -31px; width: 62px; border-top: 2px dashed #aec7e5; content: ""; }
.step-grid strong { position: absolute; top: -7px; left: calc(50% + 22px); display: grid; width: 27px; height: 27px; place-items: center; border-radius: 50%; color: #fff; background: var(--blue); font-size: .68rem; }
.step-icon { display: grid; width: 98px; height: 98px; margin: 0 auto 19px; place-items: center; border: 1px solid #cde1f7; border-radius: 50%; color: var(--blue); background: #eef6ff; font-size: 2.6rem; }

.values { background: linear-gradient(135deg, rgba(4, 24, 61, .96), rgba(6, 57, 120, .92)), url("assets/prompt____Create_202604021502-scaled-e1775124263826.jpg") center/cover fixed; }
.light h2, .light p:last-child { color: #fff; }
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.value-card { position: relative; overflow: hidden; min-height: 242px; padding: 32px 24px; border: 1px solid rgba(255,255,255,.18); border-radius: 5px; background: rgba(255,255,255,.08); backdrop-filter: blur(4px); transition: transform .25s, background .25s; }
.value-card:hover { transform: translateY(-7px); background: rgba(255,255,255,.15); }
.value-card span { position: absolute; top: 10px; right: 16px; color: rgba(255,255,255,.13); font: 700 3.8rem/1 "Rajdhani"; }
.value-card h3 { position: relative; margin: 43px 0 12px; color: #fff; }
.value-card p { position: relative; color: #cbdcf3; font-size: .88rem; }

.testimonial-wrap { position: relative; display: flex; align-items: center; max-width: 900px; margin-inline: auto; }
.testimonial-slider { width: 100%; min-height: 280px; }
.testimonial { display: none; align-items: center; gap: 34px; padding: 35px; border: 1px solid var(--line); border-radius: 7px; background: #fff; box-shadow: 0 12px 34px rgba(11, 44, 88, .08); animation: testimonialIn .55s ease; }
.testimonial.active { display: flex; }
.testimonial img { width: 150px; height: 150px; flex: 0 0 150px; border-radius: 50%; object-fit: cover; }
.quote { color: #66778c; font-size: 1rem; font-style: italic; }
.testimonial h3 { margin-top: 15px; color: var(--blue); }
.testimonial span { color: #8a98aa; font-size: .82rem; }
.testimonial-arrow { z-index: 2; display: grid; width: 42px; height: 42px; flex: 0 0 42px; place-items: center; border: 0; border-radius: 50%; color: #fff; cursor: pointer; background: var(--blue); font-size: 2rem; line-height: 1; transition: background .2s, transform .2s; }
.testimonial-arrow:hover { background: var(--navy); transform: scale(1.08); }
.testimonial-arrow.prev { margin-right: -18px; }
.testimonial-arrow.next { margin-left: -18px; }

.cta { padding: 62px 0; background: var(--blue); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.cta h2 { max-width: 780px; color: #fff; font-size: clamp(2rem, 3.5vw, 3rem); }
.button-light { flex: 0 0 auto; color: var(--blue); background: #fff; }
.button-light:hover { color: #fff; background: var(--navy); }

footer { color: #bdcee3; background: #061b3f url("assets/bg_footer_.png") right bottom/auto 100% no-repeat; }
.footer-grid { display: grid; grid-template-columns: 1.65fr 1fr .8fr .95fr; gap: 46px; padding-block: 75px 62px; }
.footer-logo { color: #fff; font-size: 2.2rem; }
.footer-brand p { max-width: 390px; margin-top: 18px; font-size: .86rem; }
.footer-contact { display: grid; gap: 3px; margin-top: 13px; color: #d8e5f5; font-size: .78rem; }
.footer-contact a:hover { color: #fff; }
.footer-grid h3 { margin-bottom: 18px; color: #fff; font-size: 1.35rem; }
.footer-grid > div:not(.footer-brand) a { display: block; margin-bottom: 8px; font-size: .85rem; transition: color .2s, transform .2s; }
.footer-grid > div:not(.footer-brand) a:hover { color: #fff; transform: translateX(4px); }
.socials { display: flex; gap: 9px; margin-top: 20px; }
.socials a { display: grid; width: 32px; height: 32px; place-items: center; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; color: #fff; font-size: .75rem; transition: background .2s; }
.socials a:hover { background: var(--blue); }
.copyright { border-top: 1px solid rgba(255,255,255,.12); padding: 15px 0; font-size: .76rem; }
.copyright span { float: right; }
.whatsapp { position: fixed; right: 22px; bottom: 22px; z-index: 9; display: grid; width: 54px; height: 54px; place-items: center; border-radius: 50%; color: #fff; background: #25d366; box-shadow: 0 8px 22px rgba(0,0,0,.22); font-size: 2rem; }

.page-hero { padding: 78px 0; color: #fff; text-align: center; background: linear-gradient(135deg, rgba(4, 26, 64, .96), rgba(7, 78, 157, .88)), url("assets/prompt____Create_202604021502-scaled-e1775124263826.jpg") center/cover; }
.page-hero h1 { color: #fff; font-size: clamp(3rem, 6vw, 5rem); }
.breadcrumbs { display: flex; justify-content: center; gap: 8px; margin-top: 10px; color: #d3e5fa; font-size: .86rem; }
.breadcrumbs a:hover { color: #fff; }
.content-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 66px; }
.content-grid.reverse .content-visual { order: 2; }
.content-grid h2 { margin: 11px 0 18px; }
.content-grid p { margin-bottom: 14px; color: #6d7d91; }
.content-grid .button { margin-top: 13px; }
.content-visual { position: relative; }
.content-visual > img { width: 100%; border-radius: 7px; box-shadow: var(--shadow); }
.side-badge { position: absolute; right: -18px; bottom: -18px; width: 174px; padding: 17px; border-radius: 5px; color: #fff; background: var(--blue); box-shadow: var(--shadow); }
.side-badge strong { display: block; font: 700 2.5rem/1 "Rajdhani"; }
.side-badge span { font-size: .76rem; }
.support-section { padding: 84px 0; background: #f5f9fe; }
.support-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; margin-top: 35px; }
.support-card { padding: 19px 16px; border: 1px solid #e0eaf5; border-radius: 5px; background: #fff; transition: transform .25s, box-shadow .25s; }
.support-card:hover { transform: translateY(-5px); box-shadow: 0 12px 24px rgba(8, 44, 89, .09); }
.support-card img { width: 42px; height: 42px; margin-bottom: 13px; object-fit: contain; }
.support-card h3 { font-size: 1.18rem; }
.support-card p { margin-top: 5px; color: #7a899b; font-size: .78rem; line-height: 1.45; }
.detail-stack { display: grid; gap: 95px; }
.counter-strip { background: #eff6ff; }
.counter-strip .counter-grid { margin-top: 0; transform: translateY(0); }
.help-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.help-card { padding: 27px; border: 1px solid var(--line); border-radius: 5px; background: #fff; transition: transform .25s, box-shadow .25s; }
.help-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.help-card img { width: 44px; height: 44px; margin-bottom: 16px; object-fit: contain; }
.help-card p { margin: 9px 0 13px; color: #77879a; font-size: .86rem; }
.text-link { color: var(--blue); font-size: .83rem; font-weight: 700; }
.text-link:hover { color: var(--navy); }
.software-banner { padding: 45px 0; color: #fff; background: var(--blue); }
.software-banner .container { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.software-banner h2 { color: #fff; font-size: clamp(2rem, 3vw, 3rem); }
.software-banner p { max-width: 690px; color: #d7ebff; font-size: .9rem; }
.software-grid { display: grid; gap: 28px; }
.software-row { display: grid; grid-template-columns: 255px 1fr; align-items: center; gap: 28px; padding: 20px; border: 1px solid var(--line); border-radius: 7px; background: #fff; }
.software-row:nth-child(even) { grid-template-columns: 1fr 255px; }
.software-row:nth-child(even) img { order: 2; }
.software-row img { width: 100%; height: 170px; border-radius: 5px; object-fit: cover; }
.software-row h3 { margin-bottom: 8px; }
.software-row p { color: #718196; font-size: .88rem; }
.catalog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.catalog-card { min-height: 225px; padding: 26px; border: 1px solid #e4edf7; border-radius: 6px; background: #fff; transition: transform .25s, box-shadow .25s; }
.catalog-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.catalog-card i { display: grid; width: 52px; height: 52px; place-items: center; border-radius: 50%; color: var(--blue); background: #eaf4ff; font-size: 1.8rem; font-style: normal; }
.catalog-card h3 { margin: 18px 0 8px; }
.catalog-card p { color: #75869a; font-size: .86rem; line-height: 1.55; }
.marketing-grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 65px; }
.marketing-grid img { width: 100%; border-radius: 7px; box-shadow: var(--shadow); }
.marketing-grid h2 { margin: 10px 0 18px; }
.marketing-grid p { color: #718196; }
.story-hero { padding: 95px 0; background: linear-gradient(135deg, #f0f7ff, #fff); }
.story-hero .content-grid { grid-template-columns: 1.1fr .9fr; }
.story-hero h1 { color: var(--heading); }
.story-hero h1 span { color: var(--blue); }
.rating-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 27px; }
.rating-card { padding: 18px; border: 1px solid var(--line); border-radius: 5px; background: #fff; }
.rating-card strong { color: var(--blue); font: 700 2rem/1 "Rajdhani"; }
.rating-card p { margin: 2px 0 0; font-size: .76rem; }
.stars { color: #ffb000; letter-spacing: 2px; }
.vision-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.vision-card { padding: 30px; border-left: 4px solid var(--blue); border-radius: 5px; background: #f3f8fe; }
.vision-card h3 { margin-bottom: 10px; }
.vision-card p { color: #6f8197; font-size: .9rem; }
.about-service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 17px; }
.about-service-card { padding: 24px; border: 1px solid var(--line); border-radius: 5px; }
.about-service-card h3 { margin-bottom: 8px; }
.about-service-card p { color: #77879b; font-size: .84rem; }
.contact-intro { max-width: 760px; }
.contact-intro h2 { margin: 10px 0 17px; }
.contact-intro p { color: #6c7c91; }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 32px; margin-top: 43px; }
.contact-info { display: grid; gap: 14px; }
.contact-card { padding: 21px; border: 1px solid var(--line); border-radius: 5px; background: #f6fafe; }
.contact-card span { color: var(--blue); font-size: .77rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.contact-card h3 { margin-top: 5px; font-size: 1.25rem; }
.contact-form { padding: 30px; border-radius: 7px; background: #f2f7fd; }
.contact-form h3 { margin-bottom: 18px; font-size: 1.7rem; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.contact-form input, .contact-form textarea { width: 100%; padding: 13px 15px; border: 1px solid #d9e5f2; border-radius: 3px; color: var(--text); font: inherit; background: #fff; outline: none; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--blue); }
.contact-form textarea { min-height: 135px; margin-top: 14px; resize: vertical; }
.contact-form .button { border: 0; margin-top: 14px; cursor: pointer; }
.form-status { margin-top: 10px; color: var(--blue); font-size: .82rem; }
.form-status {
    margin-top: 15px;
    font-weight: 600;
    min-height: 22px;
    padding: 11px 14px;
    border-radius: 4px;
    background: #eef5ff;
    border: 1px solid #cfe0f7;
}

.form-status.success {
    color: #28a745;
    background: #edf9f1;
    border-color: #c7ecd3;
}

.form-status.error {
    color: #dc3545;
    background: #fff0f2;
    border-color: #f2c7ce;
}
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal-right { transform: translateX(34px); }
.reveal.visible { opacity: 1; transform: translate(0); }
@keyframes testimonialIn { from { opacity: 0; transform: translateX(18px); } to { opacity: 1; transform: translateX(0); } }

@media (max-width: 1050px) {
  .topbar p { display: none; }
  .topbar-inner { justify-content: center; }
  .nav-inner { gap: 18px; }
  .nav-links { gap: 15px; }
  .nav-links a { font-size: .8rem; }
  .nav-button { display: none; }
  .hero-grid { gap: 30px; }
  .hero-slider { min-height: 380px; }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 800px) {
  .section-pad { padding: 76px 0; }
  .topbar { display: none; }
  .nav-inner { min-height: 74px; }
  .logo { font-size: 1.8rem; }
  .menu-toggle { display: block; margin-left: auto; }
  .nav-links { position: absolute; top: 74px; right: 0; left: 0; z-index: 8; display: grid; gap: 0; padding: 9px 20px 16px; border-top: 1px solid var(--line); background: #fff; box-shadow: 0 12px 24px rgba(0,0,0,.1); opacity: 0; pointer-events: none; transform: translateY(-12px); transition: .25s; }
  .nav-links.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .nav-links a { padding: 10px 0; }
  .nav-links a::after { bottom: 4px; }
  .main-nav { position: relative; }
  .hero { padding-top: 52px; }
  .hero-grid, .about-grid { grid-template-columns: 1fr; }
  .content-grid, .story-hero .content-grid, .marketing-grid, .contact-grid { grid-template-columns: 1fr; }
  .content-grid.reverse .content-visual { order: initial; }
  .hero-slider { min-height: 340px; }
  .product-grid, .service-grid { grid-template-columns: repeat(2, 1fr); }
  .catalog-grid, .about-service-grid { grid-template-columns: repeat(2, 1fr); }
  .support-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { gap: 53px; }
  .experience-badge { right: 10px; }
  .counter-grid { grid-template-columns: repeat(2, 1fr); }
  .counter-grid div:nth-child(2) { border-right: 0; }
  .counter-grid div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .step-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 0; }
  .step-grid article:nth-child(2)::after { display: none; }
  .footer-grid { grid-template-columns: 1.2fr 1fr; }
}

@media (max-width: 520px) {
  .container { width: min(100% - 28px, 1180px); }
  h1 { font-size: 3.25rem; }
  h2 { font-size: 2.55rem; }
  .hero-slider { min-height: 220px; }
  .hero-slide img { object-fit: cover; }
  .product-grid, .service-grid, .value-grid, .footer-grid { grid-template-columns: 1fr; }
  .catalog-grid, .about-service-grid, .support-grid, .help-grid, .vision-grid { grid-template-columns: 1fr; }
  .software-banner .container { display: block; }
  .software-banner .button { margin-top: 18px; }
  .software-row, .software-row:nth-child(even) { grid-template-columns: 1fr; }
  .software-row:nth-child(even) img { order: initial; }
  .form-grid { grid-template-columns: 1fr; }
  .product-image { min-height: 210px; }
  .counter-grid strong, .counter-grid span { font-size: 2.3rem; }
  .step-grid article { padding-inline: 5px; }
  .step-grid article::after { display: none; }
  .testimonial { min-height: 420px; flex-direction: column; gap: 18px; padding: 26px; text-align: center; }
  .testimonial img { width: 120px; height: 120px; flex-basis: 120px; }
  .testimonial-arrow { width: 36px; height: 36px; flex-basis: 36px; }
  .testimonial-arrow.prev { margin-right: -16px; }
  .testimonial-arrow.next { margin-left: -16px; }
  .cta-inner { flex-direction: column; text-align: center; }
  .copyright { text-align: center; }
  .copyright span { display: block; float: none; margin-top: 4px; }
}
