*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy: #0A1628;
    --navy-light: #132238;
    --navy-mid: #1A2D47;
    --gold: #D4A017;
    --gold-light: #E8B830;
    --gold-dark: #B8860B;
    --cream: #FFF8E7;
    --white: #FFFFFF;
    --off-white: #F5F0E8;
    --text-dark: #1A1A1A;
    --text-light: #F0EDE6;
    --text-muted: #8A8578;
    --font-display: 'Space Grotesk', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --shadow: 0 4px 24px rgba(10, 22, 40, 0.12);
    --shadow-lg: 0 12px 48px rgba(10, 22, 40, 0.18);
}

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

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

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

/* ─── Navigation ─── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.3s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(12px);
    padding: 10px 0;
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.2);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--white);
}

.logo-mark {
    width: 40px;
    height: 40px;
    background: var(--gold);
    color: var(--navy);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    letter-spacing: -0.5px;
    flex-shrink: 0;
}

.logo-text {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 15px;
    line-height: 1.2;
    letter-spacing: -0.3px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
    letter-spacing: 0.2px;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--gold) !important;
    font-weight: 600 !important;
    font-size: 14px !important;
}

.nav-phone:hover {
    color: var(--gold-light) !important;
}

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

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

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

/* ─── Hero ─── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--navy);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 22, 40, 0.92) 0%,
        rgba(10, 22, 40, 0.78) 50%,
        rgba(10, 22, 40, 0.65) 100%
    );
}

.hero-geo {
    position: absolute;
    z-index: 2;
    pointer-events: none;
}

.hero-geo-circle {
    width: 600px;
    height: 600px;
    border-radius: 50%;
    border: 2px solid rgba(212, 160, 23, 0.15);
    right: -150px;
    top: -100px;
}

.hero-geo-stripe {
    width: 120%;
    height: 80px;
    background: var(--gold);
    opacity: 0.08;
    right: -100px;
    bottom: 25%;
    transform: rotate(-15deg);
}

.hero-geo-square {
    width: 120px;
    height: 120px;
    border: 2px solid rgba(212, 160, 23, 0.25);
    left: 8%;
    bottom: 15%;
    transform: rotate(45deg);
}

.hero-geo-dots {
    width: 80px;
    height: 80px;
    left: 5%;
    top: 20%;
    background-image: radial-gradient(circle, rgba(212, 160, 23, 0.4) 1.5px, transparent 1.5px);
    background-size: 12px 12px;
    opacity: 0.6;
}

.hero-content {
    position: relative;
    z-index: 3;
    padding: 120px 0 80px;
    max-width: 720px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 160, 23, 0.12);
    border: 1px solid rgba(212, 160, 23, 0.3);
    color: var(--gold);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 28px;
}

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

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

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
}

.gold-highlight {
    color: var(--gold);
    display: block;
}

.hero-sub {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 540px;
}

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

/* ─── Buttons ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.25s ease;
    cursor: pointer;
    border: none;
    letter-spacing: -0.2px;
}

.btn-primary {
    background: var(--gold);
    color: var(--navy);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 160, 23, 0.35);
}

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

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

.btn-gold {
    background: var(--gold);
    color: var(--navy);
}

.btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 160, 23, 0.35);
}

.btn-white {
    background: var(--white);
    color: var(--navy);
}

.btn-white:hover {
    background: var(--cream);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* ─── Scroll Indicator ─── */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, rgba(212, 160, 23, 0.6), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ─── Marquee ─── */
.marquee-strip {
    background: var(--navy);
    padding: 14px 0;
    overflow: hidden;
    border-top: 1px solid rgba(212, 160, 23, 0.15);
    border-bottom: 1px solid rgba(212, 160, 23, 0.15);
}

.marquee-track {
    display: flex;
    gap: 0;
    animation: marquee 30s linear infinite;
    width: max-content;
}

.marquee-track span {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 3px;
    text-transform: uppercase;
    white-space: nowrap;
    padding: 0 24px;
}

.marquee-dot {
    color: var(--gold) !important;
    font-size: 8px !important;
    letter-spacing: 0 !important;
    padding: 0 8px !important;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ─── Section Shared ─── */
.section-tag {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.gold-text {
    color: var(--gold-dark);
}

.section-desc {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 520px;
}

/* ─── Products ─── */
.products {
    padding: 100px 0;
    background: var(--cream);
    position: relative;
}

.products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--navy), var(--gold), var(--navy));
}

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

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

.product-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(10, 22, 40, 0.06);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.card-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--navy);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.product-card:hover .card-accent {
    transform: scaleX(1);
}

.card-accent.gold {
    background: var(--gold);
}

.card-icon {
    width: 56px;
    height: 56px;
    background: var(--navy);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.product-card:hover .card-icon {
    transform: scale(1.05) rotate(-3deg);
}

.card-icon.gold {
    background: var(--gold);
    color: var(--navy);
}

.product-card h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}

.product-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

.highlight-card {
    background: var(--navy);
    border-color: transparent;
}

.highlight-card:hover {
    box-shadow: 0 12px 48px rgba(10, 22, 40, 0.35);
}

.highlight-card .card-icon {
    background: var(--gold);
    color: var(--navy);
}

.highlight-card h3 {
    color: var(--white);
}

.highlight-card p {
    color: rgba(255, 255, 255, 0.6);
}

/* ─── About ─── */
.about {
    padding: 100px 0;
    background: var(--off-white);
    position: relative;
    overflow: hidden;
}

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

.about-visual {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-img-accent {
    position: absolute;
    width: 160px;
    height: 160px;
    bottom: -30px;
    right: -30px;
    z-index: -1;
}

.accent-block {
    position: absolute;
    width: 100px;
    height: 100px;
    background: var(--gold);
    border-radius: var(--radius-sm);
    top: 0;
    right: 0;
    opacity: 0.3;
}

.accent-circle {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--navy);
    opacity: 0.15;
    bottom: 10px;
    left: 10px;
}

.about-stat {
    position: absolute;
    top: -20px;
    right: -40px;
    background: var(--gold);
    color: var(--navy);
    padding: 20px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

.about-content .section-title {
    margin-bottom: 24px;
}

.about-body {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-features {
    margin-top: 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--navy);
}

.feature-check {
    width: 20px;
    height: 20px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    flex-shrink: 0;
}

/* ─── Testimonial ─── */
.testimonial {
    padding: 100px 0;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.testimonial-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.geo-circle-2 {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    border: 1px solid rgba(212, 160, 23, 0.1);
    right: -100px;
    top: -100px;
}

.geo-diamond {
    position: absolute;
    width: 100px;
    height: 100px;
    background: var(--gold);
    opacity: 0.06;
    transform: rotate(45deg);
    left: 10%;
    bottom: 10%;
}

.testimonial-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.quote-mark {
    font-family: var(--font-display);
    font-size: 120px;
    color: var(--gold);
    opacity: 0.2;
    line-height: 0.8;
    margin-bottom: -20px;
    display: block;
}

.testimonial-content blockquote {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 2.5vw, 1.7rem);
    font-weight: 500;
    color: var(--white);
    line-height: 1.5;
    letter-spacing: -0.3px;
    margin-bottom: 32px;
}

.testimonial-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.meta-label {
    font-size: 14px;
    color: var(--gold);
    font-weight: 600;
}

.meta-location {
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
}

/* ─── Visit ─── */
.visit {
    padding: 100px 0;
    background: var(--cream);
}

.visit-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: stretch;
}

.info-blocks {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
    margin-bottom: 36px;
}

.info-block {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.info-icon {
    width: 48px;
    height: 48px;
    background: var(--navy);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}

.info-block h4 {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-block p,
.info-block a {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    text-decoration: none;
}

.info-block a:hover {
    color: var(--gold-dark);
}

.visit-cta {
    margin-top: 8px;
}

.visit-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    min-height: 400px;
}

.visit-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 400px;
}

/* ─── CTA ─── */
.cta {
    padding: 100px 0;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-geometric {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.cta-circle {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 1px solid rgba(212, 160, 23, 0.12);
    left: -80px;
    top: -80px;
}

.cta-stripe {
    position: absolute;
    width: 200px;
    height: 40px;
    background: var(--gold);
    opacity: 0.06;
    right: 5%;
    bottom: 20%;
    transform: rotate(30deg);
}

.cta-grid {
    position: absolute;
    width: 100px;
    height: 100px;
    right: 15%;
    top: 15%;
    background-image: radial-gradient(circle, rgba(212, 160, 23, 0.3) 1.5px, transparent 1.5px);
    background-size: 10px 10px;
}

.cta-headline {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.cta-sub {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 36px;
}

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

/* ─── Footer ─── */
.footer {
    background: var(--navy-light);
    padding: 64px 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-tagline {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gold);
    margin-bottom: 16px;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-contact p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-contact a:hover {
    color: var(--gold);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.3);
}

/* ─── Background Geometric Shapes ─── */
.geo-shape {
    position: fixed;
    pointer-events: none;
    z-index: 0;
    opacity: 0.03;
}

.geo-circle-1 {
    width: 600px;
    height: 600px;
    border-radius: 50%;
    border: 2px solid var(--navy);
    top: -200px;
    right: -200px;
}

.geo-triangle {
    width: 0;
    height: 0;
    border-left: 100px solid transparent;
    border-right: 100px solid transparent;
    border-bottom: 173px solid var(--gold);
    bottom: 20%;
    left: -50px;
    opacity: 0.02;
}

.geo-dots {
    width: 120px;
    height: 120px;
    background-image: radial-gradient(circle, var(--navy) 2px, transparent 2px);
    background-size: 16px 16px;
    top: 40%;
    right: 5%;
    opacity: 0.04;
}

.geo-line {
    width: 200px;
    height: 2px;
    background: var(--gold);
    top: 60%;
    left: 0;
    transform: rotate(-30deg);
    opacity: 0.03;
}

.geo-rect {
    width: 80px;
    height: 80px;
    border: 2px solid var(--navy);
    bottom: 10%;
    right: 10%;
    transform: rotate(20deg);
    opacity: 0.03;
}

/* ─── Reveal Animations ─── */
[data-reveal] {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-layout {
        gap: 40px;
    }

    .about-stat {
        right: -20px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--navy);
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        padding: 40px;
        transition: right 0.3s ease;
        box-shadow: -8px 0 32px rgba(0, 0, 0, 0.3);
    }

    .nav-links.open {
        right: 0;
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .hero-content {
        padding: 100px 0 60px;
    }

    .hero-geo-circle,
    .hero-geo-square,
    .hero-geo-dots {
        display: none;
    }

    .hero-geo-stripe {
        display: none;
    }

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

    .about-layout {
        grid-template-columns: 1fr;
    }

    .about-stat {
        position: relative;
        top: auto;
        right: auto;
        display: inline-block;
        margin-top: 16px;
    }

    .about-img-accent {
        display: none;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .visit-layout {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        justify-content: center;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .marquee-strip {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-headline {
        font-size: 1.9rem;
    }

    .product-card {
        padding: 28px 22px;
    }
}
