/* ============================================
   CUPKA VENTURES — Dark Forge Aesthetic
   ============================================ */

:root {
    --bg-primary: #0a0a0b;
    --bg-secondary: #111114;
    --bg-tertiary: #18181c;
    --bg-card: #141418;
    --bg-card-hover: #1a1a1f;

    --text-primary: #f0ede8;
    --text-secondary: #9a9590;
    --text-muted: #5c5852;

    --accent: #c8824a;
    --accent-light: #e0a06a;
    --accent-glow: rgba(200, 130, 74, 0.15);
    --accent-glow-strong: rgba(200, 130, 74, 0.3);

    --border: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(255, 255, 255, 0.12);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --font-display: 'Instrument Serif', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, sans-serif;

    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

/* ---- Grain Overlay ---- */
.grain {
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 200px;
}

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

/* ---- Reveal Animation ---- */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

/* ---- Typography ---- */
.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.section-title em {
    font-style: italic;
    color: var(--accent-light);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: var(--radius-xl);
    border: none;
    cursor: pointer;
    transition: all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.btn--primary {
    background: var(--accent);
    color: #0a0a0b;
}

.btn--primary:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(200, 130, 74, 0.3);
}

.btn--ghost {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-hover);
}

.btn--ghost:hover {
    border-color: var(--accent);
    color: var(--accent-light);
    transform: translateY(-2px);
}

.btn--full {
    width: 100%;
}

/* ---- Navigation ---- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(10, 10, 11, 0);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    border-bottom: 1px solid transparent;
    transition: padding 0.4s var(--ease-smooth),
                background 0.4s var(--ease-smooth),
                border-bottom-color 0.4s var(--ease-smooth),
                backdrop-filter 0.4s var(--ease-smooth),
                -webkit-backdrop-filter 0.4s var(--ease-smooth);
}

.nav.scrolled {
    padding: 12px 0;
    background: rgba(10, 10, 11, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom-color: rgba(255, 255, 255, 0.06);
}

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

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

.nav__logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: var(--accent);
    color: var(--bg-primary);
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    letter-spacing: -0.02em;
}

.nav__logo-text {
    font-weight: 500;
    font-size: 1.05rem;
    letter-spacing: -0.01em;
}

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

.nav__links a {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-secondary);
    transition: color 0.3s;
}

.nav__links a:hover {
    color: var(--text-primary);
}

.nav__cta {
    padding: 10px 24px !important;
    background: var(--accent);
    color: var(--bg-primary) !important;
    border-radius: var(--radius-xl);
    font-weight: 500 !important;
}

.nav__cta:hover {
    background: var(--accent-light);
}

.nav__mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav__mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s var(--ease-out);
}

.nav__mobile-toggle.active span:first-child {
    transform: rotate(45deg) translate(3px, 3px);
}

.nav__mobile-toggle.active span:last-child {
    transform: rotate(-45deg) translate(3px, -3px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background: rgba(10, 10, 11, 0.97);
    backdrop-filter: blur(20px);
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--ease-out);
}

.mobile-menu.open {
    display: flex;
    opacity: 1;
    pointer-events: all;
}

.mobile-menu__link {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--text-secondary);
    transition: color 0.3s;
}

.mobile-menu__link:hover {
    color: var(--accent-light);
}

/* ---- Hero ---- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 80px;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.hero__orb--1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(200, 130, 74, 0.12) 0%, transparent 70%);
    top: -10%;
    right: -10%;
    animation: float 12s ease-in-out infinite;
}

.hero__orb--2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(200, 130, 74, 0.06) 0%, transparent 70%);
    bottom: -15%;
    left: -10%;
    animation: float 15s ease-in-out infinite reverse;
}

.hero__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(20px, -30px) scale(1.05); }
    66% { transform: translate(-15px, 20px) scale(0.95); }
}

.hero__content {
    position: relative;
    text-align: center;
    max-width: 800px;
}

.hero__badge {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid var(--border-hover);
    border-radius: var(--radius-xl);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 28px;
}

.hero__title span {
    display: block;
}

.hero__title em {
    font-style: italic;
    color: var(--accent-light);
}

.hero__title .reveal:nth-child(2) {
    transition-delay: 0.1s;
}

.hero__title .reveal:nth-child(3) {
    transition-delay: 0.2s;
}

.hero__subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.7;
    font-weight: 300;
}

.hero__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero__scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 48px;
}

.hero__scroll-indicator span {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.hero__scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { opacity: 0.3; transform: scaleY(0.5); transform-origin: top; }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ---- Services ---- */
.services {
    padding: 140px 0;
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-hover), transparent);
}

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

.service-card {
    position: relative;
    padding: 40px 36px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all 0.5s var(--ease-out);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, var(--accent-glow) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s var(--ease-out);
}

.service-card:hover {
    border-color: rgba(200, 130, 74, 0.2);
    transform: translateY(-4px);
    background: var(--bg-card-hover);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card__number {
    position: absolute;
    top: 28px;
    right: 32px;
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--text-muted);
    font-style: italic;
}

.service-card__icon {
    width: 48px;
    height: 48px;
    color: var(--accent);
    margin-bottom: 24px;
    position: relative;
}

.service-card__title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 12px;
    position: relative;
}

.service-card__desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    position: relative;
    font-weight: 300;
}

/* Stagger reveal */
.services__grid .service-card:nth-child(1) .reveal,
.services__grid .service-card.reveal:nth-child(1) { transition-delay: 0s; }
.services__grid .service-card:nth-child(2) .reveal,
.services__grid .service-card.reveal:nth-child(2) { transition-delay: 0.1s; }
.services__grid .service-card:nth-child(3) .reveal,
.services__grid .service-card.reveal:nth-child(3) { transition-delay: 0.2s; }
.services__grid .service-card:nth-child(4) .reveal,
.services__grid .service-card.reveal:nth-child(4) { transition-delay: 0.3s; }

/* ---- Products ---- */
.products {
    padding: 140px 0;
    position: relative;
    background: var(--bg-secondary);
}

.product-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.product-showcase__visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.product-showcase__glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--accent-glow-strong) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    animation: float 8s ease-in-out infinite;
}

.product-showcase__card {
    position: relative;
    padding: 60px 48px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-hover);
    border-radius: var(--radius-lg);
    text-align: center;
    width: 100%;
    max-width: 380px;
    transition: all 0.5s var(--ease-out);
}

.product-showcase__card:hover {
    transform: translateY(-8px);
    border-color: rgba(200, 130, 74, 0.25);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.product-showcase__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    color: var(--accent);
}

.product-showcase__name {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 8px;
}

.product-showcase__tagline {
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.product-showcase__info {
    padding: 20px 0;
}

.product-showcase__desc {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-weight: 300;
}

.product-showcase__info .btn {
    margin-bottom: 28px;
}

.product-showcase__stats {
    display: flex;
    gap: 40px;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat__value {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--accent-light);
    font-style: italic;
}

.stat__label {
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* ---- About ---- */
.about {
    padding: 140px 0;
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-hover), transparent);
}

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

.about__desc {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-weight: 300;
}

/* Terminal */
.about__terminal {
    background: var(--bg-secondary);
    border: 1px solid var(--border-hover);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.about__terminal-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 18px;
    background: var(--bg-tertiary);
    border-bottom: 1px solid var(--border);
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot--red { background: #ff5f57; }
.dot--yellow { background: #febc2e; }
.dot--green { background: #28c840; }

.about__terminal-title {
    margin-left: 8px;
    font-size: 0.78rem;
    color: var(--text-muted);
}

.about__terminal-body {
    padding: 24px;
    font-family: 'DM Sans', monospace;
    font-size: 0.88rem;
    line-height: 2;
}

.terminal-line {
    opacity: 0;
    transform: translateX(-8px);
    animation: terminalReveal 0.4s var(--ease-out) forwards;
}

.terminal-line[data-delay="0"] { animation-delay: 0.3s; }
.terminal-line[data-delay="1"] { animation-delay: 0.8s; }
.terminal-line[data-delay="2"] { animation-delay: 1.3s; }
.terminal-line[data-delay="3"] { animation-delay: 1.8s; }
.terminal-line[data-delay="4"] { animation-delay: 2.3s; }
.terminal-line[data-delay="5"] { animation-delay: 2.8s; }
.terminal-line[data-delay="6"] { animation-delay: 3.3s; }

@keyframes terminalReveal {
    to { opacity: 1; transform: translateX(0); }
}

.terminal-prompt {
    color: var(--accent);
    margin-right: 10px;
}

.terminal-text {
    color: var(--text-secondary);
}

.terminal-ok {
    color: #28c840;
    margin-right: 10px;
}

.terminal-highlight {
    color: var(--accent-light);
    font-weight: 500;
}

.cursor {
    color: var(--accent);
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* ---- Contact ---- */
.contact {
    padding: 140px 0;
    position: relative;
    background: var(--bg-secondary);
}

.contact__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact__desc {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 32px;
    font-weight: 300;
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact__detail {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.contact__detail svg {
    width: 20px;
    height: 20px;
    color: var(--accent);
    flex-shrink: 0;
}

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

/* Honeypot - visually hidden */
.form-field--hp {
    position: absolute;
    left: -9999px;
    top: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
    overflow: hidden;
    pointer-events: none;
}

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

.form-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.02em;
}

.form-input {
    padding: 14px 18px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all 0.3s var(--ease-out);
    outline: none;
}

.form-input::placeholder {
    color: var(--text-muted);
}

.form-input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

/* Custom Select */
.custom-select {
    position: relative;
}

.custom-select__trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
    outline: none;
}

.custom-select__trigger:hover {
    border-color: var(--border-hover);
}

.custom-select__trigger:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.custom-select.open .custom-select__trigger {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.custom-select__value {
    color: var(--text-muted);
    transition: color 0.2s;
}

.custom-select__value.selected {
    color: var(--text-primary);
}

.custom-select__arrow {
    width: 12px;
    height: 8px;
    color: var(--text-muted);
    transition: transform 0.3s var(--ease-out);
    flex-shrink: 0;
}

.custom-select.open .custom-select__arrow {
    transform: rotate(180deg);
}

.custom-select__options {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-hover);
    border-radius: var(--radius-sm);
    list-style: none;
    padding: 6px;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.25s var(--ease-out);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.custom-select.open .custom-select__options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.custom-select__option {
    padding: 12px 14px;
    border-radius: 6px;
    color: var(--text-secondary);
    font-size: 0.93rem;
    cursor: pointer;
    transition: all 0.2s var(--ease-out);
}

.custom-select__option:hover {
    background: rgba(200, 130, 74, 0.1);
    color: var(--text-primary);
}

.custom-select__option.active {
    background: rgba(200, 130, 74, 0.15);
    color: var(--accent-light);
}

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

.btn__loading {
    display: none;
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
}

.btn.loading .btn__text {
    opacity: 0;
}

.btn.loading .btn__loading {
    display: block;
    position: absolute;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.form-success {
    display: none;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    background: rgba(40, 200, 64, 0.08);
    border: 1px solid rgba(40, 200, 64, 0.2);
    border-radius: var(--radius-sm);
    color: #28c840;
    font-size: 0.9rem;
}

.form-success svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.form-success.visible {
    display: flex;
}

/* ---- Footer ---- */
.footer {
    padding: 40px 0;
    border-top: 1px solid var(--border);
}

.footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer__brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer__copy {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer__links {
    display: flex;
    gap: 28px;
}

.footer__links a {
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: color 0.3s;
}

.footer__links a:hover {
    color: var(--text-primary);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 968px) {
    .nav__links {
        display: none;
    }

    .nav__mobile-toggle {
        display: flex;
    }

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

    .product-showcase {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .product-showcase__stats {
        justify-content: center;
    }

    .about__layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact__layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 600px) {
    .hero {
        padding: 100px 20px 60px;
        min-height: 90vh;
    }

    .hero__title {
        font-size: clamp(2.4rem, 10vw, 3.4rem);
    }

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

    .btn {
        padding: 16px 28px;
    }

    .services,
    .products,
    .about,
    .contact {
        padding: 80px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .service-card {
        padding: 28px 24px;
    }

    .product-showcase__card {
        padding: 40px 28px;
    }

    .product-showcase__stats {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .footer__inner {
        flex-direction: column;
        text-align: center;
    }

    .footer__brand {
        flex-direction: column;
    }

    .hero__scroll-indicator {
        display: none;
    }
}
