/* ==========================================================================
   Base, Tokens And Utilities
   ========================================================================== */
:root {
    --color-primary: #ff4d00;
    --color-text: #ffffff;
    --color-muted: #888888;
    --color-border: rgba(255, 255, 255, 0.1);
    --shadow-strong: 0 18px 45px rgba(0, 0, 0, 0.45);
    --radius-lg: 24px;
    --radius-md: 18px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Barlow", sans-serif;
    background:
        radial-gradient(circle at top right, rgba(255, 77, 0, 0.16), transparent 26%),
        linear-gradient(180deg, #050505 0%, #000000 100%);
    color: var(--color-text);
}

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

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

button,
input {
    font: inherit;
}

[hidden],
.is-hidden {
    display: none !important;
}

/* ==========================================================================
   Layout Helpers
   ========================================================================== */
.container {
    width: min(100% - 2rem, var(--container));
    margin: 0 auto;
}

.section {
    padding: 6rem 0;
}

.services-grid,
.products-grid,
.footer-grid,
.contact-grid,
.about-grid {
    display: grid;
    gap: 1.5rem;
}

/* ==========================================================================
   Shared Typography
   ========================================================================== */
.section-tag,
.eyebrow,
.hero-stat-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-primary);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.section-heading {
    max-width: 820px;
    margin-bottom: 2.75rem;
}

.section-heading h2,
.about-copy h2,
.contact-panel h2 {
    margin: 1rem 0;
    font-family: "Rajdhani", sans-serif;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 0.95;
    text-transform: uppercase;
}

.section-heading p,
.about-copy p,
.contact-panel p,
.hero-copy p,
.footer-note {
    color: #d3d3d3;
    font-size: 1.06rem;
    line-height: 1.7;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0.85rem 1.5rem;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: 0.03em;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background-color 0.25s ease,
        border-color 0.25s ease;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, #ff6a2f 100%);
    color: var(--color-text);
    box-shadow: 0 12px 24px rgba(255, 77, 0, 0.22);
}

.btn-secondary {
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.02);
}

.btn-block {
    width: calc(100% - 2.4rem);
}

.btn-large {
    min-height: 60px;
    padding-inline: 1.8rem;
    font-size: 1rem;
}

/* ==========================================================================
   Shared Cards
   ========================================================================== */
.hero-stat,
.product-card,
.contact-panel,
.catalog-item-card {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
    box-shadow: var(--shadow-strong);
}

.product-card {
    overflow: hidden;
    padding-bottom: 1.2rem;
}

.contact-panel {
    padding: 2rem;
}

.contact-panel-strong {
    border-color: rgba(255, 77, 0, 0.28);
    background:
        linear-gradient(160deg, rgba(255, 77, 0, 0.18), rgba(255, 77, 0, 0.05)),
        linear-gradient(160deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
}

/* ==========================================================================
   Shared Compact Page Hero
   ========================================================================== */
.catalog-hero-minimal {
    padding: 28px 0 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    background:
        radial-gradient(circle at top right, rgba(255, 102, 0, 0.08), transparent 28%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.94) 0%, rgba(20, 6, 0, 0.88) 100%);
}

.catalog-hero-minimal-content {
    max-width: 760px;
}

.catalog-hero-minimal .eyebrow {
    display: inline-block;
    margin-bottom: 10px;
}

.catalog-hero-minimal h1 {
    max-width: 760px;
    margin: 0 0 8px;
    font-size: 2.1rem;
    line-height: 1.05;
}

.catalog-hero-minimal p {
    max-width: 520px;
    margin: 0;
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.95rem;
    line-height: 1.5;
}

.catalog-item-badge {
    display: inline-block;
    margin-bottom: 8px;
    color: #ff6600;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
}
