:root {
    --bg: #fffaf4;
    --bg-soft: #fff1df;
    --panel: #ffffff;
    --panel-soft: #fdf4ea;
    --panel-alt: #f3faf7;
    --ink: #1b2a2f;
    --muted: #5d6972;
    --primary: #e77b2b;
    --primary-deep: #d4641f;
    --primary-soft: #fce7d3;
    --secondary: #1d8d71;
    --secondary-soft: #dff7ef;
    --shadow: 0 20px 45px rgba(27, 42, 47, 0.12);
    --line: rgba(27, 42, 47, 0.08);
    --radius: 26px;
    --max: 1200px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background:
        radial-gradient(circle at top left, rgba(231, 123, 43, 0.12), transparent 22%),
        radial-gradient(circle at bottom right, rgba(29, 141, 113, 0.09), transparent 26%),
        var(--bg);
    color: var(--ink);
    line-height: 1.65;
}

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

svg {
    display: block;
}

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

.container {
    width: min(var(--max), calc(100% - 2rem));
    margin: 0 auto;
}

.section {
    padding: 1.2rem 0;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 30;
    backdrop-filter: blur(12px);
    background: rgba(255, 250, 244, 0.82);
    border-bottom: 1px solid var(--line);
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 82px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
}

.brand-mark {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    box-shadow: 0 18px 30px rgba(231, 123, 43, 0.16);
}

.brand-text {
    display: grid;
    line-height: 1.1;
}

.brand-text strong {
    font-size: 1.08rem;
    letter-spacing: -0.03em;
}

.brand-text small {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
}

.nav {
    display: flex;
    align-items: center;
    gap: 1.3rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.nav a {
    font-size: 0.96rem;
    color: var(--muted);
    transition: color 0.2s ease;
}

.nav a:hover,
.nav a:focus-visible {
    color: var(--ink);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    border-radius: 999px;
    padding: 0.92rem 1.4rem;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid transparent;
    cursor: pointer;
}

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

.button-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-deep));
    color: #fff;
    box-shadow: 0 16px 30px rgba(231, 123, 43, 0.22);
}

.button-secondary {
    background: rgba(231, 123, 43, 0.08);
    border-color: rgba(231, 123, 43, 0.15);
    color: var(--ink);
}

.hero {
    padding-top: 4.2rem;
    padding-bottom: 2.6rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.52rem 0.9rem;
    border-radius: 999px;
    background: rgba(231, 123, 43, 0.09);
    border: 1px solid rgba(231, 123, 43, 0.15);
    color: var(--primary-deep);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.eyebrow-soft {
    background: rgba(29, 141, 113, 0.08);
    border-color: rgba(29, 141, 113, 0.14);
    color: var(--secondary);
}

.hero-copy h1,
.section-heading h2,
.feature-copy h2,
.cta-copy h3,
.showcase-copy h3,
.info-card h3,
.step h3 {
    margin: 0 0 1rem;
    line-height: 1.08;
    letter-spacing: -0.05em;
}

.hero-copy h1 {
    margin-top: 1rem;
    font-size: clamp(2.6rem, 5vw, 4.8rem);
    max-width: 12ch;
}

.lead {
    max-width: 58ch;
    margin: 0 0 1.6rem;
    color: var(--muted);
    font-size: 1.08rem;
}

.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-bottom: 1.2rem;
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-bottom: 1.7rem;
}

.trust-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.48rem 0.8rem;
    border-radius: 999px;
    background: rgba(27, 42, 47, 0.04);
    border: 1px solid var(--line);
    color: var(--muted);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
}

.stat {
    padding: 1rem 1.2rem;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: 0 8px 18px rgba(27, 42, 47, 0.04);
}

.stat strong {
    display: block;
    font-size: 1.5rem;
    color: var(--primary-deep);
    margin-bottom: 0.15rem;
}

.stat span {
    color: var(--muted);
    font-size: 0.88rem;
}

.hero-visual {
    position: relative;
}

.visual-card {
    position: relative;
    padding: 1.3rem 1.3rem 1.1rem;
    border-radius: 30px;
    background: linear-gradient(180deg, #fffaf5, #f9efe6);
    border: 1px solid rgba(231, 123, 43, 0.12);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.visual-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(29, 141, 113, 0.08), transparent 38%, rgba(231, 123, 43, 0.06));
}

.visual-card > * {
    position: relative;
    z-index: 1;
}

.floating-card {
    position: absolute;
    right: 1.2rem;
    bottom: 5.8rem;
    display: grid;
    gap: 0.2rem;
    padding: 0.8rem 0.9rem;
    max-width: 200px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(27, 42, 47, 0.06);
    box-shadow: 0 18px 28px rgba(27, 42, 47, 0.08);
    backdrop-filter: blur(4px);
}

.floating-label {
    font-size: 0.64rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 700;
}

.floating-card strong {
    font-size: 0.96rem;
    line-height: 1.4;
    color: var(--ink);
}

.visual-card img {
    border-radius: 22px;
    box-shadow: 0 22px 30px rgba(27, 42, 47, 0.08);
}

.visual-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1rem;
    padding: 0.9rem 0.8rem 0.2rem;
}

.visual-footer strong {
    display: block;
    color: var(--ink);
}

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

.status-dot {
    font-size: 2.1rem;
    line-height: 1;
    color: var(--secondary);
}

.section-heading,
.feature-copy {
    margin-bottom: 2.3rem;
}

.section-heading h2,
.feature-copy h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    max-width: 15ch;
}

.section-heading p,
.feature-copy p,
.showcase-copy p,
.info-card p,
.step p,
.cta-copy p {
    color: var(--muted);
    margin: 0;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
}

.info-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.7rem;
    box-shadow: 0 12px 24px rgba(27, 42, 47, 0.03);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 30px rgba(27, 42, 47, 0.07);
}

.icon-wrap {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary-soft), rgba(29, 141, 113, 0.09));
    color: var(--primary-deep);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.info-card h3,
.step h3,
.showcase-copy h3 {
    font-size: clamp(1.45rem, 3vw, 1.9rem);
}

.accent-band {
    background: linear-gradient(145deg, rgba(29, 141, 113, 0.04), rgba(231, 123, 43, 0.04));
}

.split-feature {
    display: grid;
    grid-template-columns: 1fr 0.95fr;
    gap: 2rem;
    align-items: center;
}

.feature-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.9rem;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    color: var(--muted);
}

.check {
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--secondary-soft);
    color: var(--secondary);
    font-weight: 900;
    margin-top: 0.12rem;
}

.feature-visual {
    padding: 1rem;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.feature-visual img {
    border-radius: 22px;
}

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

.equipment-item {
    padding: 1.3rem 1.1rem;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: 0 8px 18px rgba(27, 42, 47, 0.03);
}

.equipment-item strong {
    display: block;
    font-size: 1.12rem;
    margin-bottom: 0.5rem;
}

.equipment-item span {
    color: var(--muted);
}

.gallery-section {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.35), rgba(255, 241, 223, 0.24));
}

.gallery-hero {
    position: relative;
    height: 420px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin: 0 0 2.2rem;
}

.banner-rotator {
    position: absolute;
    inset: 0;
}

.banner-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.5s ease;
}

.banner-slide.is-active {
    opacity: 1;
}

.banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.9) contrast(1.04);
}

.banner-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    background: linear-gradient(90deg, rgba(18, 27, 32, 0.68), rgba(18, 27, 32, 0.18) 52%, rgba(18, 27, 32, 0.12));
    z-index: 1;
}

.banner-copy {
    max-width: 560px;
    padding: 1.3rem 1.4rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.banner-copy h2 {
    margin: 0.7rem 0 0.8rem;
    color: #fff;
    line-height: 1.08;
    letter-spacing: -0.05em;
    font-size: clamp(2rem, 4vw, 3.1rem);
}

.banner-copy p {
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    max-width: 46ch;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.15rem;
}

.showcase-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--line);
    border-radius: 26px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.showcase-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.showcase-copy {
    padding: 1.3rem 1.2rem 1.5rem;
}

.small-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.42rem 0.7rem;
    border-radius: 999px;
    background: rgba(29, 141, 113, 0.08);
    color: var(--secondary);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

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

.step {
    padding: 1.5rem 1.1rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid var(--line);
    box-shadow: 0 10px 18px rgba(27, 42, 47, 0.03);
}

.step-no {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-soft), rgba(231, 123, 43, 0.14));
    color: var(--primary-deep);
    font-weight: 900;
    margin-bottom: 0.9rem;
}

.cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 2rem 2.2rem;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(231, 123, 43, 0.08), rgba(29, 141, 113, 0.08));
    border: 1px solid rgba(27, 42, 47, 0.07);
    box-shadow: var(--shadow);
}

.cta-copy {
    max-width: 60ch;
}

.cta-copy h3 {
    font-size: clamp(2rem, 3vw, 2.8rem);
    margin-top: 0.8rem;
}

.contact-panel {
    display: grid;
    gap: 0.85rem;
    min-width: min(100%, 280px);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--muted);
}

.contact-pill {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.8);
    color: var(--primary-deep);
    font-weight: 900;
}

footer {
    padding: 1.5rem 0 2.8rem;
    color: var(--muted);
    border-top: 1px solid var(--line);
}

.footer-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 980px) {
    .hero-grid,
    .split-feature,
    .card-grid,
    .gallery-grid,
    .process-grid,
    .equipment-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-grid,
    .split-feature,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-hero {
        height: 360px;
    }
}

@media (max-width: 720px) {
    .topbar-inner {
        flex-direction: column;
        justify-content: center;
        padding: 0.8rem 0;
    }

    .nav {
        justify-content: center;
    }

    .section {
        padding: 4rem 0;
    }

    .stats,
    .card-grid,
    .equipment-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .button {
        width: 100%;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .gallery-hero {
        height: 320px;
    }

    .banner-overlay {
        padding: 1rem;
    }

    .banner-copy {
        width: 100%;
        padding: 1rem 1rem 0.9rem;
    }

    .cta-box {
        padding: 1.5rem 1.2rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}
