/* ============================================
   Recycled Restaurant Equipment — Stylesheet
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --emerald-50: #ecfdf5;
    --emerald-100: #d1fae5;
    --emerald-200: #a7f3d0;
    --emerald-300: #6ee7b7;
    --emerald-400: #34d399;
    --emerald-500: #10b981;
    --emerald-600: #059669;
    --emerald-700: #047857;
    --emerald-800: #065f46;
    --emerald-900: #064e3b;
    
    --cream-50: #fefdf8;
    --cream-100: #fdf8ee;
    --cream-200: #faf0d7;
    --cream-300: #f5e4bc;
    
    --neutral-50: #fafafa;
    --neutral-100: #f5f5f5;
    --neutral-200: #e5e5e5;
    --neutral-300: #d4d4d4;
    --neutral-400: #a3a3a3;
    --neutral-500: #737373;
    --neutral-600: #525252;
    --neutral-700: #404040;
    --neutral-800: #262626;
    --neutral-900: #171717;
    --neutral-950: #0a0a0a;
    
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
    
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.08), 0 2px 4px -2px rgba(0,0,0,0.05);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.05);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    color: var(--neutral-800);
    background-color: var(--cream-50);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(254, 253, 248, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--neutral-200);
    transition: box-shadow 0.3s ease;
}

.nav.scrolled {
    box-shadow: var(--shadow-md);
}

.nav__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--emerald-700);
    letter-spacing: -0.02em;
}

.nav__logo-text {
    display: none;
}

.nav__logo-icon {
    color: var(--emerald-600);
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav__link {
    padding: 8px 16px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--neutral-600);
    border-radius: var(--radius-sm);
    transition: color 0.2s, background 0.2s;
}

.nav__link:hover {
    color: var(--emerald-700);
    background: var(--emerald-50);
}

.nav__link--cta {
    background: var(--emerald-600);
    color: white;
    margin-left: 8px;
}

.nav__link--cta:hover {
    background: var(--emerald-700);
    color: white;
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.nav__toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--neutral-700);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.nav__toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav__toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav__toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* --- Hero --- */
.hero {
    padding: 120px 24px 60px;
    background: linear-gradient(135deg, var(--cream-50) 0%, var(--emerald-50) 50%, var(--cream-100) 100%);
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
}

.hero__bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: radial-gradient(circle at 2px 2px, var(--emerald-800) 1px, transparent 0);
    background-size: 32px 32px;
    pointer-events: none;
}

.hero__grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: start;
    width: 100%;
    flex: 1;
}

.hero__card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--neutral-100);
    position: relative;
}

.hero__card--main {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero__card-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--emerald-50);
    color: var(--emerald-700);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 100px;
    width: fit-content;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.hero__card-badge-dot {
    width: 7px;
    height: 7px;
    background: var(--emerald-500);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.3); }
}

.hero__headline {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--neutral-950);
    letter-spacing: -0.03em;
}

.hero__headline-accent {
    color: var(--emerald-600);
}

.hero__description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--neutral-600);
    max-width: 520px;
}

.hero__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn--primary {
    background: var(--emerald-600);
    color: white;
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.btn--primary:hover {
    background: var(--emerald-700);
    box-shadow: 0 6px 16px rgba(5, 150, 105, 0.4);
    transform: translateY(-1px);
}

.btn--ghost {
    background: transparent;
    color: var(--neutral-700);
    border: 1.5px solid var(--neutral-300);
}

.btn--ghost:hover {
    border-color: var(--emerald-400);
    color: var(--emerald-700);
    background: var(--emerald-50);
}

.btn--white {
    background: white;
    color: var(--emerald-700);
    box-shadow: var(--shadow-lg);
}

.btn--white:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-xl);
}

.btn--outline-white {
    background: transparent;
    color: white;
    border: 1.5px solid rgba(255,255,255,0.5);
}

.btn--outline-white:hover {
    background: rgba(255,255,255,0.1);
    border-color: white;
}

.btn--full {
    width: 100%;
    justify-content: center;
}

/* --- Stat Cards --- */
.hero__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-content: start;
}

.stat-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 24px 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--neutral-100);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.stat-card--1 { transform: translateY(16px); }
.stat-card--1:hover { transform: translateY(12px); }
.stat-card--2 { transform: translateY(8px); }
.stat-card--2:hover { transform: translateY(4px); }
.stat-card--3 { transform: translateY(24px); }
.stat-card--3:hover { transform: translateY(20px); }
.stat-card--4 { transform: translateY(0px); }
.stat-card--4:hover { transform: translateY(-4px); }

.stat-card__icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--emerald-50);
    color: var(--emerald-600);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
}

.stat-card__value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--neutral-900);
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 4px;
}

.stat-card__label {
    font-size: 0.75rem;
    color: var(--neutral-500);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* --- Image Strip --- */
.hero__image-strip {
    max-width: 1200px;
    margin: 48px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
}

.hero__image-strip-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--neutral-200);
    aspect-ratio: 4/3;
}

.hero__image-strip-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hero__image-strip-item:hover img {
    transform: scale(1.05);
}

/* --- Section Shared --- */
.section {
    padding: 100px 24px;
}

.section__eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--emerald-600);
    margin-bottom: 12px;
}

.section__title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--neutral-950);
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.section__title--light {
    color: white;
}

.section__subtitle {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--neutral-500);
    max-width: 560px;
}

.section__subtitle--light {
    color: rgba(255,255,255,0.7);
}

.section__header {
    text-align: center;
    margin-bottom: 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* --- Equipment Section --- */
.section--equipment {
    background: white;
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.equipment-card {
    background: var(--cream-50);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--neutral-200);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.equipment-card__img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/2;
}

.equipment-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.equipment-card:hover .equipment-card__img img {
    transform: scale(1.07);
}

.equipment-card__tag {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: white;
    color: var(--emerald-700);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.equipment-card__body {
    padding: 24px;
}

.equipment-card__title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.equipment-card__desc {
    font-size: 0.9rem;
    color: var(--neutral-500);
    line-height: 1.6;
}

/* --- Services Section --- */
.section--services {
    background: linear-gradient(135deg, var(--emerald-800) 0%, var(--emerald-900) 100%);
    position: relative;
    overflow: hidden;
}

.section--services::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: radial-gradient(circle at 2px 2px, white 1px, transparent 0);
    background-size: 28px 28px;
    pointer-events: none;
}

.services-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 40px;
}

.service-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.service-item__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-md);
    color: var(--emerald-300);
}

.service-item__title {
    font-size: 1.0625rem;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}

.service-item__desc {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
}

.services-layout__visual {
    position: relative;
}

.services-visual__card {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    aspect-ratio: 5/6;
}

.services-visual__card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-visual__accent {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: white;
    border-radius: var(--radius-lg);
    padding: 24px 32px;
    box-shadow: var(--shadow-xl);
}

.services-visual__stat {
    text-align: center;
}

.services-visual__stat-number {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--neutral-400);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.services-visual__stat-number--big {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--emerald-700);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

/* --- About Section --- */
.section--about {
    background: var(--cream-50);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about__visual {
    position: relative;
}

.about__image-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    aspect-ratio: 4/3;
}

.about__image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about__image-secondary {
    position: absolute;
    bottom: -32px;
    right: -32px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--cream-50);
    aspect-ratio: 3/2;
    max-width: 280px;
}

.about__image-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about__content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about__text {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--neutral-600);
}

.about__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 24px;
    margin-top: 8px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--neutral-700);
}

.about-feature__check {
    color: var(--emerald-500);
    flex-shrink: 0;
}

/* --- CTA Banner --- */
.cta-banner {
    background: linear-gradient(135deg, var(--emerald-600) 0%, var(--emerald-800) 100%);
    padding: 80px 24px;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image: radial-gradient(circle at 2px 2px, white 1px, transparent 0);
    background-size: 24px 24px;
    pointer-events: none;
}

.cta-banner__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
}

.cta-banner__title {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    color: white;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
}

.cta-banner__text {
    font-size: 1.0625rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    max-width: 520px;
}

.cta-banner__actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

/* --- Contact Section --- */
.section--contact {
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: start;
}

.contact__info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-detail {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-detail__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--emerald-50);
    color: var(--emerald-600);
    border-radius: var(--radius-md);
}

.contact-detail__label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--neutral-400);
    margin-bottom: 2px;
}

.contact-detail__value {
    display: block;
    font-size: 0.9375rem;
    color: var(--neutral-800);
    font-weight: 500;
    line-height: 1.5;
}

.contact-detail__value a {
    color: var(--emerald-600);
    transition: color 0.2s;
}

.contact-detail__value a:hover {
    color: var(--emerald-700);
    text-decoration: underline;
}

/* --- Form --- */
.contact__form-wrapper {
    background: var(--cream-50);
    border-radius: var(--radius-xl);
    padding: 40px;
    border: 1px solid var(--neutral-200);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group__label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--neutral-700);
}

.form-group__input {
    padding: 12px 16px;
    border: 1.5px solid var(--neutral-200);
    border-radius: var(--radius-sm);
    font-size: 0.9375rem;
    font-family: var(--font-sans);
    color: var(--neutral-800);
    background: white;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

.form-group__input:focus {
    border-color: var(--emerald-400);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.form-group__input::placeholder {
    color: var(--neutral-400);
}

.form-group__select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M3 4.5l3 3 3-3' stroke='%23737373' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    cursor: pointer;
}

.form-group__textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form__success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 16px;
    padding: 48px 24px;
}

.contact-form__success.active {
    display: flex;
}

.contact-form__success-icon {
    color: var(--emerald-500);
}

.contact-form__success-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--neutral-900);
}

.contact-form__success-text {
    font-size: 0.9375rem;
    color: var(--neutral-500);
    line-height: 1.6;
}

/* --- Footer --- */
.footer {
    background: var(--neutral-950);
    color: var(--neutral-400);
    padding: 72px 24px 0;
}

.footer__grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 56px;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    color: white;
    margin-bottom: 16px;
}

.footer__logo-icon {
    color: var(--emerald-400);
}

.footer__tagline {
    font-size: 0.875rem;
    line-height: 1.7;
    color: var(--neutral-500);
    max-width: 280px;
}

.footer__heading {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--neutral-300);
    margin-bottom: 20px;
}

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

.footer__links a {
    font-size: 0.875rem;
    color: var(--neutral-500);
    transition: color 0.2s;
}

.footer__links a:hover {
    color: var(--emerald-400);
}

.footer__contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.875rem;
    line-height: 1.7;
}

.footer__contact a {
    color: var(--neutral-500);
    transition: color 0.2s;
}

.footer__contact a:hover {
    color: var(--emerald-400);
}

.footer__bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 0;
    border-top: 1px solid var(--neutral-800);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-size: 0.8125rem;
    color: var(--neutral-600);
}

/* --- Animations --- */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Responsive --- */
@media (min-width: 640px) {
    .nav__logo-text {
        display: block;
    }
}

@media (min-width: 768px) {
    .nav__toggle {
        display: none;
    }
    
    .nav__links {
        display: flex !important;
    }
}

@media (max-width: 1024px) {
    .hero__grid {
        grid-template-columns: 1fr;
    }
    
    .hero__stats {
        order: -1;
    }
    
    .services-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .services-layout__visual {
        order: -1;
        max-width: 480px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .about__image-secondary {
        right: 16px;
        bottom: -24px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 100px 20px 48px;
        min-height: auto;
    }
    
    .hero__card {
        padding: 32px 24px;
    }
    
    .hero__stats {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .stat-card {
        padding: 18px 16px;
    }
    
    .stat-card--1,
    .stat-card--2,
    .stat-card--3 {
        transform: none;
    }
    
    .hero__image-strip {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 32px;
    }
    
    .equipment-grid {
        grid-template-columns: 1fr;
    }
    
    .section {
        padding: 72px 20px;
    }
    
    .cta-banner {
        padding: 56px 20px;
    }
    
    .cta-banner__inner {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-banner__actions {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-banner__actions .btn {
        justify-content: center;
    }
    
    .contact__form-wrapper {
        padding: 24px;
    }
    
    .contact-form__row {
        grid-template-columns: 1fr;
    }
    
    .about__features {
        grid-template-columns: 1fr;
    }
    
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero__headline {
        font-size: 2.25rem;
    }
    
    .hero__actions {
        flex-direction: column;
    }
    
    .hero__actions .btn {
        justify-content: center;
    }
    
    .hero__stats {
        grid-template-columns: 1fr;
    }
    
    .services-visual__accent {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 16px;
        display: inline-block;
    }
}
