:root {
    --primary: #1A1A1A;        /* Deep Charcoal - Core background/text */
    --primary-light: #2D2D2D;
    --accent: #F2AEB4;         /* Wewak - Brand Point CTA */
    --accent-hover: #E8929A;   /* Wewak Dark */
    --accent-light: #F2D8D8;   /* Vanilla Ice - Highlight background */
    --secondary: #73D9CF;      /* Bermuda - Sub accent / highlight */
    --bg-light: #E4F2F1;       /* Aqua Squeeze - Base background */
    --bg-mid: #F2C2C2;         /* Beauty Bush - Card UI background */
    --text-main: #1A1A1A;
    --text-muted: #6B6B6B;
    --bg-white: #ffffff;
    --bg-dark: #1A1A1A;
    --border: #E2D4D6;
    --max-width: 1280px;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-soft: 0 10px 30px rgba(242,174,180,0.10);
    --shadow-medium: 0 20px 40px rgba(242,174,180,0.18);
}

/* Utilities */
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-column { display: flex; flex-direction: column; }
.items-center { display: flex; align-items: center; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.w-full { width: 100%; }
.h-full { height: 100%; }
.relative { position: relative; }
.absolute { position: absolute; }
.overflow-hidden { overflow: hidden; }

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Pretendard', sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--bg-light);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Outfit', 'Pretendard', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 40px;
}

section {
    padding: 160px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-title .subtitle {
    display: block;
    font-size: 0.85rem;
    color: var(--secondary);
    letter-spacing: 0.2rem;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.section-title h2 {
    font-size: 3rem;
    margin-bottom: 24px;
    color: var(--primary);
    letter-spacing: -0.03em;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.6;
}

.bg-light { background-color: var(--bg-light); }
.bg-dark { background-color: var(--primary); color: white; }
.bg-white { background-color: var(--bg-white); }

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    color: #1A1A1A;
    box-shadow: 0 4px 15px rgba(242, 174, 180, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(242, 174, 180, 0.55);
}

.btn-large {
    padding: 20px 42px;
    font-size: 1.1rem;
    letter-spacing: -0.02em;
}

.btn-outline {
    background-color: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(5px);
}

.btn-outline:hover {
    background-color: white;
    color: var(--primary);
}

.btn-full {
    width: 100%;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

header.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

header.scrolled .logo a { color: var(--text-main); }
header.scrolled .nav-links a:not(.btn) { color: var(--text-main); }
header.scrolled .mobile-menu-btn span { background: var(--text-main); }

/* Logo image switching */
.logo-img {
    height: 28px;
    width: auto;
    display: inline-block;
    opacity: 0.9;
}
.logo-black { display: none; }
.logo-white { display: inline-block; }

header.scrolled .logo-white { display: none; }
header.scrolled .logo-black { display: inline-block; }

/* No-hero-image pages: always show black logo from the start */
body.no-hero-image .logo-white { display: none; }
body.no-hero-image .logo-black { display: inline-block; }


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

.logo a {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    gap: 10px;
}

.logo span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-muted);
}

.nav-links {
    gap: 30px;
}

.nav-links a:not(.btn) {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
}

.nav-links a:hover:not(.btn) {
    color: white;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: white;
    transition: var(--transition);
}

.mobile-menu-btn.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--primary);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        z-index: 1000;
        opacity: 0;
        transition: opacity 0.4s ease;
    }
    .nav-links.active { display: flex; opacity: 1; }
    .nav-links a { font-size: 1.4rem; color: white !important; }
    .mobile-menu-btn { display: flex; }
    header.scrolled .mobile-menu-btn span { background: var(--text-main); }
    .mobile-menu-btn.active span { background: white !important; }
}

/* Hero */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: white;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--accent);
    color: #1A1A1A;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease-out;
}

.hero h1 .accent {
    color: var(--secondary);
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
}

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

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Stats */
.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--bg-white);
    padding: 80px 40px;
    border-radius: 40px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.06);
    margin-top: -120px;
    position: relative;
    z-index: 10;
}

.stat-item {
    text-align: center;
    border-right: 1px solid #F2F2F2;
    padding: 0 20px;
}

.stat-item:last-child { border-right: none; }

.stat-val {
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
    letter-spacing: -0.05em;
    display: block;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* Services */
.services {
    padding: 120px 0;
}

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

.service-card {
    background: white;
    padding: 50px 40px;
    border-radius: 24px;
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--accent);
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-medium);
    border-color: transparent;
}

.service-card:hover::after {
    transform: scaleY(1);
}

.service-visual {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 20px;
    margin-bottom: 24px;
    overflow: hidden;
}

.service-img-placeholder {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.service-card:hover .service-img-placeholder {
    transform: scale(1.1);
}

/* Feature Section Layout Upgrade */
.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 20px;
    background: var(--bg-light);
    background-size: cover;
    background-position: center;
    margin-bottom: 32px;
    overflow: hidden;
}

.feature-item {
    background: white;
    padding: 40px 40px 60px;
    border-radius: 32px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    border: 1px solid #F0F0F0;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
    border-color: var(--accent);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 30px;
    display: block;
}

.feature-item h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.feature-item p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1.05rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

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

.service-features li {
    font-size: 0.9rem;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-features li::before {
    content: '✓';
    color: var(--accent);
    font-weight: bold;
}

/* Process */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--border);
    z-index: 0;
}

.step {
    position: relative;
    z-index: 1;
    text-align: center;
}

.step-num {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 auto 20px;
    border: 5px solid white;
}

.step h4 { margin-bottom: 10px; }
.step p { font-size: 0.9rem; color: var(--text-muted); }

/* Quality */
.quality {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 100px;
    padding: 160px 40px;
}

.quality-content { flex: 1; order: 1; }
.quality-image { position: relative; order: 2; }

.image-box {
    width: 100%;
    aspect-ratio: 4/5;
    background: url('Images/quality.webp') center/cover;
    border-radius: 40px;
    position: relative;
    box-shadow: var(--shadow-medium);
}

.experience-badge {
    position: absolute;
    top: -40px;
    left: -40px;
    background: var(--accent);
    color: #1A1A1A;
    padding: 40px;
    border-radius: 50%;
    width: 180px;
    height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 20px 40px rgba(242, 174, 180, 0.4);
    border: 8px solid white;
}

.experience-badge .num {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
    font-family: 'Outfit', sans-serif;
}

.experience-badge .txt {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0;
    margin-top: 5px;
    word-break: keep-all;
    text-align: center;
    line-height: 1.4;
}

.quality-items {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.quality-item {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

.q-icon {
    color: var(--primary);
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.material-symbols-outlined {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
}

.q-icon .material-symbols-outlined {
    font-size: 3.2rem;
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 48;
}

.q-text {
    flex: 1;
}

.q-text h4 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--primary);
}

.q-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* Contact */
.contact-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    background: rgba(255,255,255,0.07);
    padding: 60px;
    border-radius: 30px;
}

.contact-info h2 { font-size: 3rem; margin-bottom: 20px; }
.contact-info p { opacity: 0.7; margin-bottom: 40px; }

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

.c-item {
    display: flex;
    flex-direction: column;
}

.c-item .label { font-size: 0.8rem; opacity: 0.5; text-transform: uppercase; }
.c-item .val { font-size: 1.5rem; font-weight: 600; }

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

.form-group input, .form-group select {
    width: 100%;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.12);
    color: white;
    font-size: 1rem;
    font-family: 'Pretendard', sans-serif;
}

.form-group input::placeholder { color: rgba(255,255,255,0.5); }
.form-group select option { background: var(--bg-dark); color: white; }

/* Footer */
footer {
    padding: 100px 0;
    background: var(--primary);
    color: white;
    border-top: none;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: white;
}

.footer-links {
    display: flex;
    gap: 40px;
}

.footer-links a { 
    font-size: 1rem; 
    color: rgba(255,255,255,0.6); 
}

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

.footer-social {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    transition: var(--transition);
}

/* 소셜 아이콘 배경색 */
.social-icon[title="인스타그램"],
.social-icon[title="네이버 블로그"],
.social-icon[title="카카오톡"] {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.social-icon:hover {
    transform: translateY(-5px);
    filter: brightness(1.1);
}
.footer-info {
    font-size: 1rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.8;
}

.footer-info p:first-child {
    color: var(--accent);
    margin-bottom: 20px;
    font-weight: 600;
}

/* Showcase Section */
.showcase {
    padding: 160px 0;
    background: var(--bg-light);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.portfolio-item {
    border-radius: 20px;
    overflow: hidden;
    background: var(--bg-white);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.portfolio-img {
    aspect-ratio: 1 / 1;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

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

.portfolio-info {
    padding: 25px;
}

.portfolio-info .category {
    display: block;
    font-size: 0.8rem;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.portfolio-info h4 {
    font-size: 1.1rem;
    color: var(--text-main);
}

.showcase-action {
    text-align: center;
}

.btn-outline.dark {
    color: var(--text-main);
    border-color: var(--border);
}

.btn-outline.dark:hover {
    background: var(--primary);
    color: white;
}

/* Subpage Styles */
.sub-hero {
    height: 60vh;
    min-height: 420px;
    padding: 0;
    background-color: var(--primary);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    color: white;
}

.sub-hero.no-image {
    padding: 160px 0 100px;
    background: linear-gradient(135deg, #1A1A1A 0%, #2C1E21 100%);
}

.sub-hero .hero-content {
    max-width: 800px;
}

.sub-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.sub-hero p {
    font-size: 1.1rem;
    opacity: 0.85;
    max-width: 600px;
    margin-bottom: 0;
}

.sub-content {
    padding: 100px 20px;
}

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

.product-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.product-card .p-img {
    aspect-ratio: 1 / 1;
    background-size: cover;
    background-position: center;
}

.product-card .p-info {
    padding: 30px;
}

.product-card .p-info h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.product-card .p-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}


/* Refrigerator page lineup */
.lineup-group {
    margin-bottom: 20px;
}

.lineup-label {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 36px;
}

.lineup-label span {
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 6px 16px;
    border-radius: 999px;
}

.lineup-label p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

.lineup-label--premium span {
    background: var(--accent);
    color: white;
}

.lineup-label--efficient span {
    background: var(--primary);
    color: white;
}

.lineup-divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 60px 0;
}

/* Comparison dark section */
.comparison-section {
    background: var(--primary);
}

/* Relocation CTA box */
.relocation-cta {
    padding: 48px;
}

/* CTA Grid (contact page) */
.cta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: 30px;
}

.cta-card-header {
    padding: 40px;
}

.cta-card-body {
    padding: 40px;
}

/* Prep wrap (contact page checklist) */
.prep-wrap {
    gap: 40px;
}

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

.fade-in.appear {
    opacity: 1;
    transform: translateY(0);
}

/* Stats stagger delays */
.stat-item:nth-child(1) { transition-delay: 0s; }
.stat-item:nth-child(2) { transition-delay: 0.15s; }
.stat-item:nth-child(3) { transition-delay: 0.3s; }
.stat-item:nth-child(4) { transition-delay: 0.45s; }

/* ============================
   TABLET (≤1024px)
   ============================ */
@media (max-width: 1024px) {
    .container { padding: 0 30px; }
    .hero h1 { font-size: 3rem; }
    .service-grid { grid-template-columns: repeat(2, 1fr); }
    .features { grid-template-columns: repeat(2, 1fr); }
    .process-steps { grid-template-columns: repeat(2, 1fr); }
    .process-steps::before { display: none; }
    .quality { grid-template-columns: 1fr; gap: 60px; padding: 100px 30px; }
    .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
    .product-grid { grid-template-columns: repeat(2, 1fr); }
    .transformation-grid { grid-template-columns: 1fr !important; }
    .contact-grid { grid-template-columns: 1fr !important; }
}

/* ============================
   MOBILE (≤768px)
   ============================ */
@media (max-width: 768px) {
    /* Base */
    .container { padding: 0 20px; }
    section { padding: 72px 0; }

    /* Section title */
    .section-title { margin-bottom: 40px; }
    .section-title h2 { font-size: 1.75rem; letter-spacing: -0.02em; }
    .section-title p { font-size: 0.95rem; }

    /* Hero */
    .hero h1 { font-size: 2rem; line-height: 1.25; margin-bottom: 16px; }
    .hero p { font-size: 0.95rem; margin-bottom: 28px; max-width: 100%; }
    .hero-actions { flex-direction: column; align-items: stretch; gap: 12px; }
    .btn-large { padding: 16px 24px; font-size: 1rem; text-align: center; }

    /* Stats */
    .stats {
        grid-template-columns: repeat(2, 1fr);
        margin-top: -32px;
        padding: 36px 20px;
        gap: 0;
        border-radius: 20px;
    }
    .stat-item {
        border-right: none;
        border-bottom: 1px solid #F2F2F2;
        padding: 16px 10px;
    }
    .stat-item:nth-child(odd) { border-right: 1px solid #F2F2F2; }
    .stat-item:nth-child(3),
    .stat-item:nth-child(4) { border-bottom: none; }
    .stat-val { font-size: 2rem; margin-bottom: 6px; }
    .stat-label { font-size: 0.8rem; }

    /* Services */
    .service-grid { grid-template-columns: 1fr; gap: 20px; }
    .service-card { padding: 28px 22px; }

    /* Features */
    .features { grid-template-columns: 1fr; gap: 16px; }
    .feature-item { padding: 32px 24px; }
    .feature-icon { font-size: 2rem; margin-bottom: 20px; }
    .feature-item h3 { font-size: 1.25rem; margin-bottom: 12px; }

    /* Process */
    .process-steps { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .step-num { width: 48px; height: 48px; font-size: 1rem; }

    /* Quality */
    .quality { grid-template-columns: 1fr; gap: 40px; padding: 72px 20px; }
    .quality-image { display: none; }
    .quality-items { gap: 28px; }
    .quality-item { gap: 20px; }
    .q-icon { width: 56px; height: 56px; font-size: 1.6rem; border-radius: 14px; flex-shrink: 0; }
    .q-text h4 { font-size: 1.15rem; margin-bottom: 8px; }
    .q-text p { font-size: 0.9rem; }

    /* Portfolio / Showcase */
    .portfolio-grid { grid-template-columns: 1fr; gap: 18px; margin-bottom: 36px; }

    /* Footer */
    footer { padding: 56px 0; }
    .footer-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 28px;
        margin-bottom: 36px;
        padding-bottom: 28px;
    }
    .footer-logo { font-size: 1.5rem; }
    .footer-links { gap: 16px; flex-wrap: wrap; }
    .footer-links a { font-size: 0.9rem; }
    .footer-info { font-size: 0.82rem; line-height: 1.9; }

    /* Subpages */
    .sub-hero { height: 50vh; min-height: 320px; }
    .sub-content { padding: 60px 0; }
    .product-grid { grid-template-columns: 1fr; gap: 20px; }
    .transformation-grid { grid-template-columns: 1fr !important; gap: 48px !important; }
    .contact-grid { grid-template-columns: 1fr !important; gap: 20px !important; }
    .location-wrap { grid-template-columns: 1fr; gap: 24px; }
    .location-info { grid-template-columns: 1fr; gap: 16px; }
    .map-container { min-height: 260px; height: 260px; }
    .contact-card { grid-template-columns: 1fr; padding: 28px; gap: 32px; }

    /* Product cards */
    .product-card .p-info { padding: 20px; }
    .location-card { padding: 24px; }
    .product-card .p-info h3 { font-size: 1.1rem; }

    /* CTA Grid (contact page) */
    .cta-grid { grid-template-columns: 1fr; }
    .cta-card-header { padding: 28px; }
    .cta-card-body { padding: 28px; }
    .cta-card-body p:first-child { font-size: 2rem !important; }
    .prep-wrap { gap: 24px; }

    /* Comparison table */
    .comparison-table th,
    .comparison-table td { padding: 12px 10px !important; font-size: 0.85rem; }

    /* Relocation CTA box */
    .relocation-cta { padding: 24px; }

    /* Sub-hero text */
    .sub-hero .hero-badge { font-size: 0.7rem; }
    .sub-hero h1 { font-size: 1.6rem; }
    .sub-hero p { font-size: 0.9rem; }

    /* section-title spacing */
    .section-title { margin-bottom: 32px; }
    .section-title .subtitle { font-size: 0.75rem; }
}

/* Location wrap */
.location-wrap {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Map Section Styles */
.map-container {
    width: 100%;
    height: 100%;
    min-height: 380px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    margin-top: 0;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.location-info {
    margin-top: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.location-card {
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
}

.location-card h4 {
    font-size: 1.25rem;
    margin-bottom: 20px;
    color: var(--accent);
}

.location-card p {
    color: var(--text-muted);
    line-height: 1.8;
}

/* ============================
   TIMELINE
   ============================ */
.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 80px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
}

.timeline-item {
    display: flex;
    gap: 40px;
    margin-bottom: 48px;
    position: relative;
}

.timeline-item:last-child { margin-bottom: 0; }

.timeline-year {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-hover);
    min-width: 60px;
    text-align: right;
    padding-top: 2px;
    flex-shrink: 0;
}

.timeline-item::after {
    content: '';
    position: absolute;
    left: 104px;
    top: 8px;
    width: 10px;
    height: 10px;
    background: var(--accent);
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 0 0 2px var(--accent);
}

.timeline-content {
    padding-left: 24px;
}

.timeline-content h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 6px;
}

.timeline-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.timeline-list {
    list-style: none;
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px 12px;
}

.timeline-list li {
    font-size: 0.85rem;
    color: var(--text-muted);
    background: var(--accent-light);
    padding: 3px 10px;
    border-radius: 20px;
}

@media (max-width: 768px) {
    .timeline { padding-left: 0; }
    .timeline::before { left: 52px; }
    .timeline-item::after { left: 76px; }
    .timeline-year { font-size: 1.1rem; min-width: 44px; }
    .timeline-content { padding-left: 16px; }
}

/* ============================
   SMALL MOBILE (≤480px)
   ============================ */
@media (max-width: 480px) {
    .hero h1 { font-size: 1.65rem; }
    .stats { padding: 28px 16px; }
    .stat-val { font-size: 1.7rem; }
    .process-steps { grid-template-columns: 1fr; }
    .section-title h2 { font-size: 1.5rem; }
    .footer-links { gap: 12px; }
    .cta-card-header { padding: 22px; }
    .cta-card-body { padding: 22px; }
    .cta-card-body p:first-child { font-size: 1.8rem !important; }
    .product-grid { grid-template-columns: 1fr; gap: 16px; }
}
