:root {
    --ink: #2a1c12;
    --muted: #7c6f64;
    --line: #f1ddd0;
    --blue: #f26322;
    --blue-dark: #c34a18;
    --amber: #ff9a4d;
    --cyan: #11b8d8;
    --green: #21b07a;
    --coral: #ff7a59;
    --paper: #ffffff;
    --soft: #fdf6f1;
    --shadow: 0 22px 60px rgba(86, 40, 12, 0.12);
    --shadow-strong: 0 30px 90px rgba(56, 26, 7, 0.18);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Inter, Arial, sans-serif;
    line-height: 1.6;
}

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 78px;
    padding: 0 5vw;
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(241, 221, 208, 0.85);
    backdrop-filter: blur(18px);
    transition: min-height 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
    min-height: 68px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 12px 30px rgba(86, 40, 12, 0.08);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--ink);
    font-size: 1.25rem;
    font-weight: 800;
    white-space: nowrap;
}

.brand-mark {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, var(--blue), var(--amber));
    border-radius: 8px;
    box-shadow: 0 12px 28px rgba(242, 99, 34, 0.24);
    animation: brandPulse 4s ease-in-out infinite;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    color: #334155;
    font-size: 0.95rem;
    font-weight: 700;
}

.site-nav a {
    position: relative;
    padding: 26px 0;
}

.site-nav a::after {
    position: absolute;
    right: 0;
    bottom: 20px;
    left: 0;
    height: 2px;
    content: "";
    background: var(--blue);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
    transform: scaleX(1);
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 10px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.nav-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: var(--ink);
}

.hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
    gap: 56px;
    align-items: center;
    min-height: calc(100vh - 78px);
    padding: 72px 5vw 52px;
    overflow: hidden;
    background:
        linear-gradient(120deg, rgba(255, 255, 255, 0.98) 0%, rgba(253, 246, 241, 0.94) 52%, rgba(255, 238, 227, 0.9) 100%);
}

.hero::before {
    position: absolute;
    inset: 0;
    pointer-events: none;
    content: "";
    background-image:
        linear-gradient(rgba(242, 99, 34, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(242, 99, 34, 0.055) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
}

.hero-copy {
    position: relative;
    z-index: 1;
    max-width: 710px;
}

.hero-slide {
    display: none;
    animation: slideIn 620ms ease both;
}

.hero-slide.is-active {
    display: block;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--blue);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-copy .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 22px;
    padding: 8px 15px 8px 13px;
    color: var(--blue-dark);
    background: rgba(242, 99, 34, 0.1);
    border: 1px solid rgba(242, 99, 34, 0.22);
    border-radius: 999px;
    font-size: 0.72rem;
}

.hero-copy .eyebrow::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--blue);
    box-shadow: 0 0 0 4px rgba(242, 99, 34, 0.18);
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    margin-bottom: 22px;
    font-size: clamp(2.55rem, 5.4vw, 5.1rem);
    line-height: 1.02;
    letter-spacing: 0;
}

h2 {
    margin-bottom: 18px;
    font-size: clamp(2rem, 3.4vw, 3.15rem);
    line-height: 1.1;
    letter-spacing: 0;
}

h3 {
    font-size: 1.15rem;
    line-height: 1.25;
}

.hero-text {
    max-width: 600px;
    margin-bottom: 32px;
    color: var(--muted);
    font-size: 1.1rem;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 26px;
    border: 1px solid transparent;
    border-radius: 12px;
    font-weight: 800;
    cursor: pointer;
    transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease, border-color 200ms ease;
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(-3px);
}

.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--blue), #ff8038);
    box-shadow: 0 18px 34px rgba(242, 99, 34, 0.32);
}

.btn-primary:hover,
.btn-primary:focus-visible {
    background: linear-gradient(135deg, var(--blue-dark), var(--blue));
    box-shadow: 0 22px 42px rgba(242, 99, 34, 0.4);
}

.btn-secondary {
    color: var(--blue-dark);
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(242, 99, 34, 0.25);
    backdrop-filter: blur(8px);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
    border-color: var(--blue);
    box-shadow: 0 14px 28px rgba(242, 99, 34, 0.16);
}

.hero-visual {
    position: relative;
    z-index: 1;
}

.visual-card {
    position: relative;
    isolation: isolate;
    padding: 12px;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 24px;
    box-shadow: 0 30px 80px rgba(86, 40, 12, 0.18);
    backdrop-filter: blur(10px);
    animation: floatVisual 7s ease-in-out infinite;
}

.visual-card::before {
    position: absolute;
    inset: -28px -24px;
    z-index: -1;
    content: "";
    background:
        radial-gradient(60% 60% at 80% 20%, rgba(242, 99, 34, 0.22), transparent 70%),
        radial-gradient(55% 55% at 15% 90%, rgba(255, 154, 77, 0.2), transparent 70%);
    filter: blur(8px);
}

.hero-visual img {
    display: block;
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 14px 30px rgba(86, 40, 12, 0.16);
}

.floating-stat {
    position: absolute;
    display: none;
    align-items: center;
    gap: 12px;
    min-width: 210px;
    padding: 14px 18px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    box-shadow: 0 20px 46px rgba(86, 40, 12, 0.2);
    backdrop-filter: blur(12px);
    animation: statReveal 520ms ease both;
}

.floating-stat.is-active {
    display: flex;
}

.floating-stat-1 {
    right: 5%;
    bottom: 8%;
}

.floating-stat-2 {
    top: 10%;
    right: 7%;
}

.floating-stat-3 {
    bottom: 16%;
    left: 4%;
}

.floating-stat strong,
.floating-stat span {
    display: block;
}

.floating-stat strong {
    color: var(--blue);
    font-size: 1.3rem;
    line-height: 1;
}

.floating-stat span {
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 800;
}

.mini-icon,
.metric-icon {
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, var(--blue), var(--amber));
    border-radius: 8px;
}

.mini-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
}

.mini-icon svg,
.metric-icon svg,
.feature-pills svg,
.process-card i svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.9;
}

.data-stream {
    position: absolute;
    z-index: 2;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--cyan), transparent);
    border-radius: 999px;
    opacity: 0.85;
    animation: dataSweep 3.8s linear infinite;
}

.data-stream-one {
    top: 18%;
    left: 9%;
    width: 180px;
}

.data-stream-two {
    right: 8%;
    bottom: 25%;
    width: 150px;
    animation-delay: 1.1s;
}

.slider-controls {
    display: flex;
    gap: 10px;
    margin: 28px 0 22px;
}

.slider-controls button {
    width: 28px;
    height: 7px;
    padding: 0;
    cursor: pointer;
    background: #f0d4c4;
    border: 0;
    border-radius: 999px;
    transition: width 220ms ease, background 220ms ease;
}

.slider-controls button.is-active {
    width: 56px;
    background: linear-gradient(90deg, var(--blue), var(--amber));
}

.feature-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.feature-pills span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 10px 16px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(242, 99, 34, 0.16);
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(86, 40, 12, 0.08);
    font-size: 0.86rem;
    font-weight: 700;
    transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.feature-pills span:hover {
    transform: translateY(-2px);
    border-color: rgba(242, 99, 34, 0.4);
    box-shadow: 0 14px 30px rgba(242, 99, 34, 0.14);
}

.feature-pills svg {
    color: var(--blue);
}

.metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    margin: -28px 5vw 0;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.metrics div {
    position: relative;
    padding: 28px;
    background: #fff;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.metrics div:hover {
    z-index: 1;
    transform: translateY(-6px);
    box-shadow: 0 18px 44px rgba(86, 40, 12, 0.12);
}

.metric-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 16px;
}

.metrics strong {
    display: block;
    color: var(--blue);
    font-size: 2rem;
    line-height: 1;
}

.metrics span {
    color: var(--muted);
    font-weight: 700;
}

.section,
.technology-band,
.commerce-section,
.testimonials,
.contact-section {
    padding: 92px 5vw;
}

.services-shell {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: #f4f9ff;
}

.services-background {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.88) 43%, rgba(234, 246, 255, 0.78) 100%),
        url("../img/digital-commerce-hero.png") right center / min(900px, 62vw) auto no-repeat;
}

.services-shell::before {
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    content: "";
    background:
        linear-gradient(rgba(242, 99, 34, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(242, 99, 34, 0.055) 1px, transparent 1px);
    background-size: 38px 38px;
    mask-image: linear-gradient(180deg, transparent 0%, #000 16%, #000 84%, transparent 100%);
}

.services-shell::after {
    position: absolute;
    right: 5vw;
    bottom: 54px;
    z-index: -1;
    width: min(420px, 34vw);
    height: min(420px, 34vw);
    content: "";
    background: radial-gradient(circle, rgba(17, 184, 216, 0.18), transparent 64%);
    border: 1px solid rgba(242, 99, 34, 0.08);
    border-radius: 50%;
}

.services-content {
    position: relative;
    z-index: 1;
}

.intro {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
    gap: 54px;
    align-items: end;
}

.intro > p,
.commerce-copy p,
.contact-copy p {
    color: var(--muted);
    font-size: 1.02rem;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    padding: 0 5vw 104px;
}

.service-card,
.process-card,
.testimonial-grid article,
.contact-form {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 16px 48px rgba(86, 40, 12, 0.08);
}

.service-card {
    display: flex;
    min-height: 300px;
    flex-direction: column;
    padding: 28px;
    overflow: hidden;
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.services-shell .service-card {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(219, 231, 243, 0.86);
    backdrop-filter: blur(14px);
}

.service-card:hover,
.service-card:focus-within {
    transform: translateY(-8px);
    border-color: rgba(242, 99, 34, 0.28);
    box-shadow: 0 28px 70px rgba(86, 40, 12, 0.14);
}

.card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
}

.service-icon {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    color: var(--blue);
    background: #fdeee4;
    border-radius: 8px;
    transition: transform 220ms ease, background 220ms ease, color 220ms ease;
}

.service-card:hover .service-icon {
    color: #fff;
    background: linear-gradient(135deg, var(--blue), var(--amber));
    transform: rotate(-4deg) scale(1.08);
}

.service-icon svg {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.9;
}

.service-tag {
    color: var(--green);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.service-card p,
.process-card p,
.testimonial-grid p {
    color: var(--muted);
}

.service-card a {
    margin-top: auto;
    color: var(--blue);
    font-weight: 800;
}

.technology-band {
    position: relative;
    display: grid;
    grid-template-columns: minmax(300px, 0.64fr) minmax(0, 1fr);
    gap: 54px;
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(6, 43, 97, 0.98), rgba(5, 63, 146, 0.94)),
        radial-gradient(circle at 82% 22%, rgba(17, 184, 216, 0.25), transparent 32%);
    color: #fff;
}

.technology-band::before {
    position: absolute;
    inset: 0;
    pointer-events: none;
    content: "";
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 100%);
}

.technology-copy,
.tech-list {
    position: relative;
    z-index: 1;
}

.technology-band .eyebrow {
    color: #71dcff;
}

.technology-copy p:not(.eyebrow) {
    max-width: 560px;
    color: #c8d9ea;
}

.stack-summary {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

.stack-summary span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    color: #fff1e9;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    font-size: 0.86rem;
    font-weight: 800;
}

.stack-summary svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.9;
}

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

.tech-card {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    min-height: 92px;
    padding: 16px;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(14px);
    transition: transform 200ms ease, background 200ms ease, border-color 200ms ease;
}

.tech-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.32);
}

.tech-icon {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    color: #fff;
    border-radius: 8px;
}

.tech-icon svg {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.85;
}

.tech-card strong,
.tech-card span {
    display: block;
}

.tech-card strong {
    font-size: 1rem;
    line-height: 1.15;
}

.tech-card div span {
    color: #b8d8ef;
    font-size: 0.82rem;
    font-weight: 700;
}

.tech-blue .tech-icon {
    background: linear-gradient(135deg, var(--blue), var(--amber));
}

.tech-cyan .tech-icon {
    background: linear-gradient(135deg, #09a6c9, #6ee7f7);
}

.tech-green .tech-icon {
    background: linear-gradient(135deg, #169b6a, #4ade80);
}

.tech-coral .tech-icon {
    background: linear-gradient(135deg, #f15f45, #ffb067);
}

.commerce-section {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.65fr);
    gap: 54px;
    align-items: center;
    background: var(--soft);
}

.commerce-copy ul {
    display: grid;
    gap: 12px;
    padding: 0;
    margin: 26px 0 0;
    list-style: none;
}

.commerce-copy li {
    position: relative;
    padding-left: 28px;
    font-weight: 700;
}

.commerce-copy li::before {
    position: absolute;
    top: 0.58em;
    left: 0;
    width: 12px;
    height: 12px;
    content: "";
    background: var(--coral);
    border-radius: 50%;
}

.commerce-panel {
    padding: 28px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.panel-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin: 18px 0 10px;
    font-weight: 800;
}

.panel-row:first-child {
    margin-top: 0;
}

.panel-row span {
    color: var(--muted);
}

.panel-row strong {
    color: var(--blue);
}

.progress {
    height: 10px;
    background: #f6e7dd;
    border-radius: 999px;
    overflow: hidden;
}

.progress span {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, var(--blue), var(--amber));
    animation: fillBar 1.1s ease both;
}

.process-grid,
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.process-grid {
    position: relative;
}

.process-grid::before {
    content: "";
    position: absolute;
    top: 58px;
    left: 0;
    right: 0;
    height: 2px;
    background: repeating-linear-gradient(90deg, rgba(242, 99, 34, 0.4) 0 9px, transparent 9px 18px);
    z-index: 0;
}

.process-card {
    position: relative;
    z-index: 1;
    padding: 30px 24px 26px;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.process-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--blue), var(--amber));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 300ms ease;
}

.process-card:hover {
    transform: translateY(-8px);
    border-color: rgba(242, 99, 34, 0.28);
    box-shadow: 0 26px 60px rgba(86, 40, 12, 0.15);
}

.process-card:hover::after {
    transform: scaleX(1);
}

.process-watermark {
    position: absolute;
    top: 4px;
    right: 14px;
    z-index: 0;
    font-size: 3.6rem;
    font-weight: 900;
    line-height: 1;
    color: rgba(242, 99, 34, 0.09);
    pointer-events: none;
}

.process-icon {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    margin-bottom: 18px;
    color: #fff;
    background: linear-gradient(135deg, var(--blue), var(--amber));
    border-radius: 16px;
    box-shadow: 0 14px 26px rgba(242, 99, 34, 0.28);
    transition: transform 240ms ease;
}

.process-card:hover .process-icon {
    transform: rotate(-5deg) scale(1.06);
}

.process-icon svg {
    width: 26px;
    height: 26px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.process-step {
    position: relative;
    z-index: 1;
    display: block;
    margin-bottom: 6px;
    color: var(--blue);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.process-card h3 {
    position: relative;
    z-index: 1;
    margin-bottom: 8px;
}

.process-card p {
    position: relative;
    z-index: 1;
}

.testimonials {
    background: linear-gradient(180deg, #fdf6f1 0%, #fff7f2 100%);
}

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

.testimonial-grid article {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 34px 30px 28px;
    border-radius: 18px;
    overflow: hidden;
    transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.testimonial-grid article::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--blue), var(--amber));
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 300ms ease;
}

.testimonial-grid article:hover {
    transform: translateY(-7px);
    border-color: rgba(242, 99, 34, 0.28);
    box-shadow: 0 26px 60px rgba(86, 40, 12, 0.14);
}

.testimonial-grid article:hover::before {
    transform: scaleY(1);
}

.testimonial-mark {
    position: absolute;
    top: 6px;
    right: 20px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 5rem;
    line-height: 1;
    color: rgba(242, 99, 34, 0.14);
    pointer-events: none;
}

.testimonial-stars {
    display: inline-flex;
    gap: 3px;
    margin-bottom: 16px;
}

.testimonial-stars svg {
    width: 17px;
    height: 17px;
    fill: #f5a623;
    stroke: none;
}

.testimonial-grid p {
    position: relative;
    z-index: 1;
    margin-bottom: 24px;
    color: var(--ink);
    font-size: 1.02rem;
    line-height: 1.6;
}

.testimonial-person {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: auto;
}

.testimonial-avatar {
    display: grid;
    place-items: center;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    color: #fff;
    font-weight: 800;
    font-size: 1.05rem;
    letter-spacing: 0.02em;
    background: linear-gradient(135deg, var(--blue), var(--amber));
    box-shadow: 0 10px 22px rgba(242, 99, 34, 0.3);
}

.testimonial-meta strong {
    display: block;
    color: var(--ink);
}

.testimonial-meta span {
    display: block;
    color: var(--muted);
    font-size: 0.88rem;
}

.clients {
    padding: 58px 5vw 62px;
    text-align: center;
    background: var(--paper);
}

.clients-label {
    margin: 0 0 30px;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.clients-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 16px 18px;
    max-width: 1000px;
    margin: 0 auto;
}

.client-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    color: var(--muted);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 1.05rem;
    font-weight: 800;
    box-shadow: 0 8px 20px rgba(86, 40, 12, 0.05);
    transition: transform 220ms ease, color 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.client-logo i {
    width: 9px;
    height: 9px;
    flex-shrink: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--amber));
    transition: transform 220ms ease;
}

.client-logo:hover {
    transform: translateY(-3px);
    color: var(--ink);
    border-color: rgba(242, 99, 34, 0.4);
    box-shadow: 0 14px 30px rgba(242, 99, 34, 0.14);
}

.client-logo:hover i {
    transform: scale(1.3);
}

.contact-section {
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.64fr);
    gap: 56px;
    align-items: start;
}

.contact-details {
    display: grid;
    gap: 10px;
    margin-top: 28px;
    color: var(--blue);
    font-weight: 800;
}

.contact-form {
    display: grid;
    gap: 18px;
    padding: 28px;
    transform: translateY(0);
    transition: transform 220ms ease, box-shadow 220ms ease;
}

.contact-form:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-strong);
}

.contact-form label {
    display: grid;
    gap: 8px;
    color: #334155;
    font-weight: 800;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 13px 14px;
    color: var(--ink);
    font: inherit;
    background: #f8fbfe;
    border: 1px solid var(--line);
    border-radius: 8px;
    outline: none;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(242, 99, 34, 0.1);
}

.form-message {
    margin: 0;
    padding: 12px 14px;
    color: var(--blue-dark);
    background: #fdeee4;
    border-radius: 8px;
    font-weight: 700;
}

.form-message-success {
    color: #1d7a4d;
    background: #e7f7ee;
    border: 1px solid #b9e6cd;
}

.form-message-error {
    color: #b3261e;
    background: #fdecea;
    border: 1px solid #f5c6c2;
}

/* Practice technology */
.practice-tech {
    padding: 84px 5vw 64px;
    background: var(--paper);
}

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

.section-heading.center h2 {
    display: inline-block;
    margin: 0;
    padding-bottom: 14px;
    position: relative;
}

.section-heading.center h2::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 180px;
    max-width: 60%;
    height: 3px;
    border-radius: 3px;
    background: var(--coral);
}

.practice-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    max-width: 1100px;
    margin: 0 auto;
}

.practice-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 30px 18px 26px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(86, 40, 12, 0.06);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.practice-card::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 4px;
    background: var(--blue);
}

.practice-card.accent-coral::after {
    background: var(--coral);
}

.practice-card.accent-ink::after {
    background: var(--ink);
}

.practice-card.accent-red::after {
    background: #e23b3b;
}

.practice-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.practice-icon {
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
}

.practice-icon svg {
    width: 44px;
    height: 44px;
    fill: none;
    stroke: var(--blue);
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.practice-card.accent-coral .practice-icon svg {
    stroke: var(--coral);
}

.practice-card.accent-ink .practice-icon svg {
    stroke: var(--ink);
}

.practice-card.accent-red .practice-icon svg {
    stroke: #e23b3b;
}

.practice-card h3 {
    margin: 0;
    font-size: 0.92rem;
    font-weight: 700;
    text-align: center;
    color: var(--ink);
}

.practice-arrow {
    display: grid;
    place-items: center;
    color: var(--coral);
    transition: transform 0.2s ease;
}

.practice-arrow svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

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

.site-footer {
    position: relative;
    color: #ffe2d2;
    background: linear-gradient(180deg, #f26322 0%, #d9531c 55%, #b94413 100%);
}

/* Awards strip + wave */
.footer-awards-wrap {
    position: relative;
    background: var(--paper);
    padding: 48px 5vw 110px;
}

.footer-wave {
    position: absolute;
    inset: auto 0 0 0;
    height: 72px;
    line-height: 0;
    pointer-events: none;
    z-index: 1;
}

.footer-wave svg {
    width: 100%;
    height: 100%;
}

.footer-wave path {
    fill: #f26322;
}

.footer-awards {
    position: relative;
    z-index: 3;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 28px 56px;
}

.award-badge {
    display: flex;
    align-items: center;
    gap: 12px;
}

.award-logo {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 1.15rem;
    color: #fff;
    background: #475569;
    flex-shrink: 0;
}

.award-logo.is-google {
    background: conic-gradient(from -45deg, #ea4335, #fbbc05, #34a853, #4285f4, #ea4335);
}

.award-logo.is-ambition {
    background: linear-gradient(135deg, #2d6cdf, #6f4ff2);
}

.award-logo.is-adobe {
    background: #fa0f00;
    font-style: italic;
}

.award-logo.is-magento {
    background: #f26322;
}

.award-meta {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.award-meta strong {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--ink);
    font-size: 1.05rem;
}

.award-meta span {
    color: var(--muted);
    font-size: 0.82rem;
}

.award-stars {
    display: inline-flex;
    gap: 1px;
}

.award-stars i {
    width: 15px;
    height: 15px;
}

.award-stars i svg {
    width: 15px;
    height: 15px;
    fill: #d7dde6;
    stroke: none;
}

.award-stars i.is-on svg {
    fill: #f5a623;
}

/* Main footer grid */
.footer-main {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1.7fr;
    gap: 36px;
    padding: 8px 5vw 44px;
    max-width: 1320px;
    margin: 0 auto;
}

.footer-col h4 {
    margin: 0 0 18px;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    color: #fff;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 34px;
    height: 3px;
    border-radius: 3px;
    background: var(--cyan);
}

.footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.footer-col a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #ffe2d2;
    font-size: 0.9rem;
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-col a:hover {
    color: #fff;
    transform: translateX(3px);
}

.footer-ic {
    display: inline-flex;
    flex-shrink: 0;
}

.footer-ic svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Contact card */
.footer-card {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 28px;
    background: #fff;
    color: var(--ink);
    border-radius: 16px;
    padding: 26px 28px;
    box-shadow: 0 24px 60px rgba(4, 24, 56, 0.28);
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    color: var(--blue-dark);
    margin-bottom: 18px;
}

.footer-brand .brand-mark {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, var(--blue), var(--amber));
}

.footer-office {
    margin-bottom: 16px;
}

.footer-office h5,
.footer-card-side h5 {
    margin: 0 0 8px;
    font-size: 0.92rem;
    color: var(--blue-dark);
}

.footer-office p {
    display: flex;
    gap: 9px;
    margin: 0 0 8px;
    font-size: 0.84rem;
    color: var(--muted);
    line-height: 1.5;
}

.footer-office p .footer-ic,
.footer-contact-link .footer-ic {
    color: var(--blue);
    margin-top: 2px;
}

.footer-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ink);
    transition: color 0.2s ease;
}

.footer-contact-link:hover {
    color: var(--blue);
}

.footer-card-side .footer-contact-link {
    display: flex;
    margin-bottom: 10px;
}

.footer-follow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--ink);
}

.footer-socials {
    display: inline-flex;
    gap: 8px;
}

.footer-socials a {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--blue);
    transition: transform 0.2s ease, background 0.2s ease;
}

.footer-socials a:hover {
    background: var(--cyan);
    transform: translateY(-2px);
}

.footer-socials svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.footer-card-side {
    border-left: 1px solid var(--line);
    padding-left: 26px;
}

.footer-touch-label {
    margin: 16px 0 9px;
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--muted);
}

.footer-touch-label:first-of-type {
    margin-top: 14px;
}

.footer-partner {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-certs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-cert {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 10px;
    border: 1px solid var(--line);
    border-radius: 9px;
    font-size: 0.74rem;
    font-weight: 600;
    color: var(--ink);
    background: var(--soft);
}

.footer-cert svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: var(--green);
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Bottom bar */
.footer-bottom {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 18px 5vw;
    font-size: 0.82rem;
    color: #ffd9c4;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Work with us button */
.btn-work {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--blue), var(--amber));
    color: #fff;
    font-weight: 800;
    font-size: 0.92rem;
    cursor: pointer;
    box-shadow: 0 12px 26px rgba(242, 99, 34, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-work span {
    font-size: 1.15rem;
    line-height: 1;
}

.btn-work:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(242, 99, 34, 0.38);
}

/* Consultation modal */
.consult-overlay {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(30, 14, 5, 0.55);
    backdrop-filter: blur(6px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.consult-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.consult-dialog {
    position: relative;
    width: min(960px, 100%);
    max-height: 90vh;
    overflow: auto;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    border-radius: 18px;
    background: linear-gradient(160deg, #f26322 0%, #d9531c 60%, #c34a18 100%);
    color: #fff;
    box-shadow: 0 40px 100px rgba(40, 16, 4, 0.5);
    transform: translateY(18px) scale(0.98);
    transition: transform 0.25s ease;
}

.consult-overlay.is-open .consult-dialog {
    transform: none;
}

.consult-close {
    position: absolute;
    top: 14px;
    right: 16px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.consult-close:hover {
    background: rgba(255, 255, 255, 0.26);
    transform: rotate(90deg);
}

.consult-aside {
    padding: 44px 28px;
    border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.consult-aside ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.consult-aside li {
    display: flex;
    gap: 14px;
}

.consult-ic {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.consult-ic svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: #fff;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.consult-aside h5 {
    margin: 0 0 4px;
    font-size: 1.05rem;
    font-weight: 700;
}

.consult-aside p,
.consult-aside a {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.88rem;
    line-height: 1.5;
    font-style: normal;
}

.consult-aside a:hover {
    text-decoration: underline;
}

.consult-main {
    padding: 40px 36px;
}

.consult-main h3 {
    margin: 0 0 8px;
    font-size: 1.7rem;
    color: #fff;
}

.consult-main > p {
    margin: 0 0 26px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
}

.consult-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.consult-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.consult-form label {
    display: flex;
    flex-direction: column;
}

.consult-form input,
.consult-form textarea {
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.45);
    padding: 9px 2px;
    color: #fff;
    font: inherit;
    outline: none;
    transition: border-color 0.2s ease;
}

.consult-form input::placeholder,
.consult-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.consult-form input:focus,
.consult-form textarea:focus {
    border-bottom-color: #fff;
}

.consult-form textarea {
    resize: vertical;
    min-height: 58px;
}

.field-error {
    display: none;
    margin-top: 6px;
    font-size: 0.76rem;
    font-weight: 600;
    color: #ffe08a;
}

.consult-form label.is-invalid .field-error {
    display: block;
}

.consult-form label.is-invalid input {
    border-bottom-color: #ffe08a;
}

.consult-assist {
    text-align: center;
    margin: 2px 0 0;
    font-weight: 700;
}

.consult-assist a {
    color: #fff;
}

.consult-submit {
    align-self: center;
    min-width: 190px;
    padding: 13px 26px;
    border: 0;
    border-radius: 10px;
    background: #fff;
    color: var(--blue);
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 0.02em;
    cursor: pointer;
    box-shadow: 0 14px 30px rgba(40, 16, 4, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.consult-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(40, 16, 4, 0.36);
}

.consult-submit[disabled] {
    opacity: 0.8;
    cursor: default;
    transform: none;
}

.consult-success {
    display: none;
    text-align: center;
    margin: 0;
    padding: 10px 14px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.16);
    font-weight: 700;
    color: #fff;
}

.consult-success.is-error {
    background: rgba(255, 255, 255, 0.18);
    color: #ffe08a;
}

/* About section */
.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.6fr);
    gap: 50px;
    align-items: center;
}

.about-copy p {
    color: var(--muted);
    font-size: 1.02rem;
    margin-bottom: 16px;
}

.about-points {
    list-style: none;
    margin: 24px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.about-points li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--ink);
    font-weight: 600;
}

.about-check {
    flex-shrink: 0;
    display: grid;
    place-items: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, var(--blue), var(--amber));
}

.about-check svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.about-stat {
    padding: 24px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: 0 16px 40px rgba(86, 40, 12, 0.07);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.about-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 50px rgba(242, 99, 34, 0.12);
}

.about-stat strong {
    display: block;
    color: var(--blue);
    font-size: 2rem;
    line-height: 1;
}

.about-stat span {
    display: block;
    margin-top: 6px;
    color: var(--muted);
    font-weight: 700;
    font-size: 0.9rem;
}

/* Magento store section */
.magento-section {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.85fr);
    gap: 50px;
    align-items: center;
    background: var(--soft);
}

.magento-copy p {
    color: var(--muted);
    font-size: 1.02rem;
    margin-bottom: 26px;
}

.magento-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.magento-list li {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    padding: 16px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 12px;
    color: var(--ink);
    font-weight: 600;
    font-size: 0.92rem;
    box-shadow: 0 10px 26px rgba(86, 40, 12, 0.05);
}

.magento-check {
    flex-shrink: 0;
    display: grid;
    place-items: center;
    width: 22px;
    height: 22px;
    border-radius: 6px;
    color: #fff;
    background: linear-gradient(135deg, var(--blue), var(--amber));
}

.magento-check svg {
    width: 13px;
    height: 13px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Portfolio section */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.portfolio-card {
    display: flex;
    flex-direction: column;
    padding: 26px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: 0 16px 44px rgba(86, 40, 12, 0.08);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.portfolio-card:hover {
    transform: translateY(-8px);
    border-color: rgba(242, 99, 34, 0.28);
    box-shadow: 0 26px 60px rgba(86, 40, 12, 0.14);
}

.portfolio-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.portfolio-icon {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    color: #fff;
    background: linear-gradient(135deg, var(--blue), var(--amber));
}

.portfolio-icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.portfolio-tag {
    color: var(--green);
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.portfolio-card h3 {
    margin-bottom: 8px;
}

.portfolio-card p {
    color: var(--muted);
    margin-bottom: 18px;
}

.portfolio-card a {
    margin-top: auto;
    color: var(--blue);
    font-weight: 800;
}

/* Partners section */
.partners-section {
    background: var(--soft);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.partner-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    padding: 30px 20px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: 0 14px 36px rgba(86, 40, 12, 0.07);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.partner-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 50px rgba(242, 99, 34, 0.12);
}

.partner-card .award-logo {
    width: 52px;
    height: 52px;
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.partner-card strong {
    color: var(--ink);
    font-size: 1.05rem;
}

.partner-card span {
    color: var(--muted);
    font-size: 0.85rem;
}

.award-logo.is-aws {
    background: #232f3e;
}

/* Inner pages */
.page-hero {
    position: relative;
    overflow: hidden;
    padding: 108px 5vw 88px;
    background: linear-gradient(135deg, #fff 0%, #fdf6f1 45%, #ffeee3 100%);
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(242, 99, 34, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(242, 99, 34, 0.045) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(circle at 30% 40%, #000 0%, transparent 72%);
}

.page-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 340px);
    gap: 48px;
    align-items: center;
    max-width: 1180px;
    margin: 0 auto;
}

.page-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--muted);
}

.page-breadcrumb a {
    color: var(--blue);
}

.page-breadcrumb a:hover {
    text-decoration: underline;
}

.page-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    padding: 8px 15px 8px 13px;
    color: var(--blue-dark);
    background: rgba(242, 99, 34, 0.1);
    border: 1px solid rgba(242, 99, 34, 0.22);
    border-radius: 999px;
    font-size: 0.72rem;
}

.page-eyebrow::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--blue);
    box-shadow: 0 0 0 4px rgba(242, 99, 34, 0.18);
}

.page-hero h1 {
    max-width: 720px;
    margin-bottom: 18px;
    font-size: clamp(2.35rem, 4.8vw, 3.6rem);
    line-height: 1.08;
}

.page-hero-text {
    max-width: 620px;
    margin: 0;
    color: var(--muted);
    font-size: 1.1rem;
    line-height: 1.65;
}

.page-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.page-hero-visual {
    display: flex;
    justify-content: center;
}

.page-hero-card {
    position: relative;
    display: grid;
    place-items: center;
    width: min(100%, 280px);
    aspect-ratio: 1;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.95);
    box-shadow: 0 30px 70px rgba(86, 40, 12, 0.14);
    backdrop-filter: blur(12px);
}

.page-hero-ring {
    position: absolute;
    inset: -18px;
    border: 1px dashed rgba(242, 99, 34, 0.28);
    border-radius: 36px;
    animation: heroSpin 18s linear infinite;
}

.page-hero-icon {
    display: grid;
    place-items: center;
    width: 88px;
    height: 88px;
    border-radius: 24px;
    color: #fff;
    background: linear-gradient(135deg, var(--blue), var(--amber));
    box-shadow: 0 20px 40px rgba(242, 99, 34, 0.32);
}

.page-hero-icon svg {
    width: 42px;
    height: 42px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.page-body {
    padding: 0 5vw 72px;
    margin-top: -36px;
    position: relative;
    z-index: 2;
}

.page-panel {
    max-width: 1180px;
    margin: 0 auto;
    padding: 40px 42px;
    background: var(--paper);
    border: 1px solid rgba(241, 221, 208, 0.9);
    border-radius: 24px;
    box-shadow: 0 28px 70px rgba(86, 40, 12, 0.1);
}

.page-kicker {
    margin: 0 0 10px;
    color: var(--blue);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.page-kicker.center,
.page-section-title.center {
    text-align: center;
}

.page-section-title {
    margin: 0 0 32px;
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
}

.page-cta {
    padding: 0 5vw 92px;
}

.page-cta-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    max-width: 1180px;
    margin: 0 auto;
    padding: 34px 38px;
    border-radius: 22px;
    color: #fff;
    background: linear-gradient(135deg, #f26322 0%, #d9531c 55%, #c34a18 100%);
    box-shadow: 0 24px 60px rgba(86, 40, 12, 0.18);
}

.page-cta-inner h2 {
    margin: 0 0 8px;
    color: #fff;
    font-size: clamp(1.4rem, 2.4vw, 1.9rem);
}

.page-cta-inner p {
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    max-width: 520px;
}

.page-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.page-cta .btn-secondary {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.35);
}

.page-cta .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #fff;
}

.page-service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.partners-section.page-panel {
    background: var(--soft);
}

.partners-certs {
    margin-top: 48px;
    padding-top: 36px;
    text-align: center;
    border-top: 1px solid var(--line);
}

.partners-certs h2 {
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.partners-certs .footer-certs {
    justify-content: center;
}

.service-detail.page-panel {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.85fr);
    gap: 40px;
    align-items: start;
    background: var(--soft);
}

.service-detail-copy p {
    color: var(--muted);
    font-size: 1.02rem;
    margin-bottom: 16px;
    line-height: 1.65;
}

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

.service-detail-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 18px 20px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 14px;
    color: var(--ink);
    font-weight: 600;
    font-size: 0.92rem;
    box-shadow: 0 10px 26px rgba(86, 40, 12, 0.05);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.service-detail-list li:hover {
    transform: translateY(-3px);
    border-color: rgba(242, 99, 34, 0.3);
    box-shadow: 0 16px 34px rgba(242, 99, 34, 0.1);
}

.magento-section.page-panel {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.85fr);
    gap: 40px;
    align-items: start;
    background: var(--soft);
}

.magento-copy p {
    color: var(--muted);
    font-size: 1.02rem;
    line-height: 1.65;
}

.about-section.page-panel {
    background: var(--paper);
}

@keyframes heroSpin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 1024px) {
    .page-hero-inner {
        grid-template-columns: 1fr;
    }

    .page-hero-visual {
        display: none;
    }

    .page-service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-detail.page-panel,
    .magento-section.page-panel {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .page-hero {
        padding: 96px 5vw 72px;
    }

    .page-panel {
        padding: 28px 22px;
        border-radius: 18px;
    }

    .page-service-grid {
        grid-template-columns: 1fr;
    }

    .page-cta-inner {
        padding: 28px 24px;
    }

    .page-cta-actions {
        width: 100%;
    }

    .page-cta-actions .btn {
        flex: 1;
        min-width: 140px;
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes statReveal {
    from {
        opacity: 0;
        transform: translateY(12px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes floatVisual {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

@keyframes dataSweep {
    0% {
        transform: translateX(-22px);
        opacity: 0;
    }
    20%,
    80% {
        opacity: 0.85;
    }
    100% {
        transform: translateX(34px);
        opacity: 0;
    }
}

@keyframes fillBar {
    from {
        transform: scaleX(0);
        transform-origin: left;
    }
    to {
        transform: scaleX(1);
        transform-origin: left;
    }
}

@keyframes brandPulse {
    0%,
    100% {
        box-shadow: 0 12px 28px rgba(242, 99, 34, 0.24);
    }
    50% {
        box-shadow: 0 16px 34px rgba(17, 184, 216, 0.34);
    }
}

@media (max-width: 1024px) {
    .hero,
    .intro,
    .technology-band,
    .commerce-section,
    .contact-section {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
    }

    .brand {
        font-size: 1.05rem;
    }

    .service-grid,
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid::before {
        display: none;
    }

    .metrics {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid,
    .magento-section.page-panel,
    .service-detail.page-panel {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .portfolio-grid,
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .technology-band {
        gap: 34px;
    }

    .services-background {
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.9) 54%, rgba(234, 246, 255, 0.82) 100%),
            url("../img/digital-commerce-hero.png") right top / min(760px, 92vw) auto no-repeat;
        opacity: 0.92;
    }
}

@media (max-width: 760px) {
    .site-header {
        min-height: 70px;
        padding: 0 20px;
    }

    .brand {
        max-width: 245px;
        font-size: 0.98rem;
        white-space: normal;
        line-height: 1.15;
    }

    .brand-mark {
        width: 36px;
        height: 36px;
    }

    .nav-toggle {
        display: inline-block;
    }

    .site-nav {
        position: fixed;
        top: 70px;
        right: 0;
        left: 0;
        display: none;
        flex-direction: column;
        gap: 0;
        align-items: stretch;
        padding: 12px 5vw 24px;
        background: #fff;
        border-bottom: 1px solid var(--line);
        box-shadow: 0 20px 36px rgba(86, 40, 12, 0.12);
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav a {
        padding: 14px 0;
    }

    .site-nav a::after {
        display: none;
    }

    .btn-work {
        align-self: flex-start;
        margin-bottom: 8px;
    }

    .consult-dialog {
        grid-template-columns: 1fr;
    }

    .consult-aside {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.22);
        padding: 34px 26px;
    }

    .consult-row {
        grid-template-columns: 1fr;
    }

    .consult-main {
        padding: 32px 26px;
    }

    .hero {
        grid-template-columns: 1fr;
        padding-top: 46px;
    }

    h1 {
        font-size: 2.5rem;
    }

    .slider-controls {
        margin-top: 22px;
    }

    .slider-controls button {
        width: 34px;
    }

    .slider-controls button.is-active {
        width: 54px;
    }

    .feature-pills {
        align-items: stretch;
    }

    .feature-pills span {
        width: 100%;
    }

    .hero-visual img {
        aspect-ratio: 4 / 3;
        object-fit: cover;
    }

    .visual-card::before {
        inset: -8px;
    }

    .floating-stat {
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
        width: 100%;
        min-width: 0;
        margin-top: 14px;
    }

    .data-stream {
        display: none;
    }

    .metrics,
    .service-grid,
    .process-grid,
    .testimonial-grid,
    .portfolio-grid,
    .magento-list {
        grid-template-columns: 1fr;
    }

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

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

    .tech-card {
        min-height: 84px;
    }

    .section,
    .technology-band,
    .commerce-section,
    .testimonials,
    .contact-section {
        padding: 64px 5vw;
    }

    .services-background {
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 48%, rgba(239, 248, 255, 0.9) 100%),
            url("../img/digital-commerce-hero.png") center top / 112vw auto no-repeat;
        opacity: 0.8;
    }

    .services-shell::after {
        display: none;
    }

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

    .footer-main {
        grid-template-columns: 1fr 1fr;
    }

    .footer-card {
        grid-column: 1 / -1;
    }

    .footer-awards {
        gap: 28px 40px;
    }
}

@media (max-width: 640px) {
    .practice-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-main {
        grid-template-columns: 1fr;
    }

    .footer-card {
        grid-template-columns: 1fr;
    }

    .footer-card-side {
        border-left: 0;
        border-top: 1px solid var(--line);
        padding-left: 0;
        padding-top: 18px;
    }

    .footer-awards {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }
}

@media (max-width: 420px) {
    .brand {
        max-width: 220px;
        font-size: 0.9rem;
    }

    h1 {
        font-size: 2.18rem;
    }

    .btn {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
