/* Font Faces */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

@font-face {
    font-family: 'Abril Fatface';
    src: url('src/fonts/AbrilFatface-Regular.ttf') format('truetype');
    font-weight: normal;
    font-display: swap;
}

/* SF Pro Display 대체 - Apple-like Typography */
@supports (font-variation-settings: normal) {
    body {
        font-feature-settings: 'kern' 1, 'liga' 1;
    }
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'SF Pro Display', 'Helvetica Neue', sans-serif;
    line-height: 1.47059;
    color: #1d1d1f;
    overflow-x: hidden;
    letter-spacing: -0.022em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

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

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

ul {
    list-style: none;
}

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

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    z-index: 1000;
    transition: background 0.3s;
}

.header.scrolled {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 1);
    z-index: 1000;
    transition: background 0.3s;
}

.header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 60px;
    right: 60px;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
}

.header.scrolled::after {
    background: rgba(255, 255, 255, 0);
    height: 0px;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70px;
    position: relative;
}

.logo {
    position: absolute;
    left: 40px;
}

.logo img {
    height: 35px;
    width: auto;
    filter: brightness(0) invert(1);
}

.header.scrolled .logo img {
    filter: none;
}

.nav-menu {
    display: flex;
    gap: 50px;
    align-items: center;
}

.nav-menu a {
    font-weight: 400;
    font-size: 16px;
    color: white;
    letter-spacing: -0.01em;
    transition: opacity 0.3s;
    text-transform: none;
}

.header.scrolled .nav-menu a {
    color: white;
}

.nav-menu a:hover {
    opacity: 0.7;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    position: absolute;
    right: 40px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: white;
    transition: 0.3s;
}

.header.scrolled .hamburger span {
    background: #333;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 0 40px 80px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero-title {
    font-size: clamp(48px, 7vw, 96px);
    line-height: 1.1;
    color: white;
    margin-bottom: 10px;
}

.hero-main {
    font-family: 'Abril Fatface', serif;
    font-size: clamp(64px, 10vw, 120px);
    font-weight: 400;
    letter-spacing: -0.01em;
    color: white;
}

.hero-sub-added {
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'SF Pro Display', sans-serif;
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 300;
    letter-spacing: -0.02em;
    color: white;
    margin-left: 0.0em;
}

.hero-sub-result {
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'SF Pro Display', sans-serif;
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 300;
    letter-spacing: -0.02em;
    color: white;
    margin-left: 0.5em;
    margin-right: 0.5em;
}

.hero-contact {
    display: flex;
    align-items: flex-end;
    gap: 24px;
    flex: 1;
}

.vertical-line {
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.5);
    align-self: flex-end;
    margin-bottom: 20px;
}

.contact-btn {
    color: white;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.02em;
    transition: opacity 0.3s;
    padding: 12px 32px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 30px;
}

.contact-btn:hover {
    opacity: 0.7;
}

/* Services Section */
.services-section {
    padding: 150px 0 100px;
    background: linear-gradient(180deg, #f5f5f7 0%, #e5e5e7 50%, #d1d1d6 100%);
}

/* Apple-style animations with precise timing */

/* Fade in from left - Apple cubic-bezier */
.content-layout {
    opacity: 0;
    transform: translate3d(-50px, 0, 0);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity, transform;
}

.content-layout.animate {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

/* Scale up fade in - subtle Apple style */
.quote-section {
    opacity: 0;
    transform: scale(0.98) translateY(20px);
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1),
        transform 1s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity, transform;
}

.quote-section.animate {
    opacity: 1;
    transform: scale(1) translateY(0);
}

/* Phones appear with Apple stagger timing */
.phones-zigzag {
    opacity: 1;
}

.phones-zigzag .phone {
    opacity: 0;
    transform: translate3d(0, 60px, 0) scale(0.95);
    transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity, transform;
}

.phones-zigzag.animate .phone {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
}

.phones-zigzag.animate .phone-1 {
    transition-delay: 0s;
}

.phones-zigzag.animate .phone-2 {
    transition-delay: 0.08s;
}

.phones-zigzag.animate .phone-3 {
    transition-delay: 0.16s;
}

.phones-zigzag.animate .phone-4 {
    transition-delay: 0.24s;
}

.phones-zigzag.animate .phone-5 {
    transition-delay: 0.32s;
}

/* Web images slide - Apple smooth easing */
.web-zigzag {
    opacity: 1;
}

.web-zigzag .web-img {
    opacity: 0;
    transition: opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity, transform;
}

.web-zigzag .web-1 {
    transform: translate3d(-80px, 30px, 0);
}

.web-zigzag .web-2 {
    transform: translate3d(80px, 30px, 0);
}

.web-zigzag .web-3 {
    transform: translate3d(-80px, 30px, 0);
}

.web-zigzag.animate .web-img {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.web-zigzag.animate .web-1 {
    transition-delay: 0s;
}

.web-zigzag.animate .web-2 {
    transition-delay: 0.15s;
}

.web-zigzag.animate .web-3 {
    transition-delay: 0.3s;
}

/* Results header - Apple fade timing */
.results-header {
    opacity: 0;
    transform: translate3d(0, 25px, 0);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity, transform;
}

.results-header.animate {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

/* Contact form - elegant Apple timing */
.contact-form {
    opacity: 0;
    transform: translate3d(0, 35px, 0);
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1),
        transform 1s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity, transform;
}

.contact-form.animate {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    align-items: start;
}

.service-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: translate3d(0, 50px, 0) scale(0.97);
    transition: opacity 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity, transform;
}

.service-card.animate {
    opacity: 1;
}

.service-card.animate:nth-child(1) {
    transform: translate3d(0, -40px, 0) scale(1);
    transition-delay: 0.05s;
}

.service-card.animate:nth-child(2) {
    transform: translate3d(0, 40px, 0) scale(1);
    transition-delay: 0.1s;
}

.service-card.animate:nth-child(3) {
    transform: translate3d(0, -40px, 0) scale(1);
    transition-delay: 0.15s;
}

.service-card.animate:nth-child(4) {
    transform: translate3d(0, 40px, 0) scale(1);
    transition-delay: 0.2s;
}

.service-img {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-info {
    padding: 24px;
}

.service-info h3 {
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1d1d1f;
    letter-spacing: 0.007em;
    line-height: 1.19048;
}

.service-info p {
    font-size: 17px;
    color: #86868b;
    line-height: 1.47059;
    letter-spacing: -0.022em;
    font-weight: 400;
}

/* Place Marketing Section */
.place-marketing-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #d1d1d6 0%, #c0c0c5 100%);
}

.content-layout {
    display: flex;
    align-items: center;
    gap: 60px;
}

.text-side {
    flex: 1;
}

.text-side h2 {
    font-size: clamp(40px, 3.5vw, 64px);
    font-weight: 600;
    margin-bottom: 24px;
    color: #1d1d1f;
    letter-spacing: -0.009em;
    line-height: 1.0625;
}

.main-desc {
    font-size: 21px;
    color: #2d2d2d;
    margin-bottom: 32px;
    line-height: 1.381;
    letter-spacing: 0.011em;
    font-weight: 400;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 17px;
    color: #3d3d3d;
    line-height: 1.47059;
    letter-spacing: -0.022em;
    font-weight: 400;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
    font-size: 16px;
}

.visual-side {
    flex: 1;
}

.visual-side img {
    width: 120%;
    filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.15));
}

/* Place Marketing Multi Section */
.place-marketing-multi-section {
    padding: 100px 0 150px;
    background: linear-gradient(180deg, #c0c0c5 0%, #a8a8ad 100%);
    overflow: hidden;
}

.quote-section {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 70px;
}

.quote-text {
    font-size: clamp(32px, 2.8vw, 48px);
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 18px;
    letter-spacing: -0.003em;
    line-height: 1.08349;
}

.quote-desc {
    font-size: 21px;
    color: #2d2d2d;
    line-height: 1.381;
    letter-spacing: 0.011em;
    font-weight: 400;
}



.phones-zigzag {
    position: relative;
    width: 100%;
    min-height: 750px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    overflow: hidden;
    padding: 100px;
}

.phones-zigzag .phone {
    position: absolute;
    width: auto;
    filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.1));
}

.phones-zigzag .phone-1 {
    height: 500px;
    left: 0;
    bottom: 80px;
    z-index: 1;
}

.phones-zigzag .phone-2 {
    height: 580px;
    left: 17%;
    bottom: 150px;
    z-index: 2;
}

.phones-zigzag .phone-3 {
    height: 650px;
    bottom: 0;
    z-index: 3;
}

.phones-zigzag .phone-4 {
    height: 580px;
    right: 17%;
    bottom: 150px;
    z-index: 2;
}

.phones-zigzag .phone-5 {
    height: 500px;
    right: 0;
    bottom: 80px;
    z-index: 1;
}

/* 중간 화면 크기 - 양쪽 폰 숨김 */
@media (max-width: 1200px) {

    .phones-zigzag .phone-1,
    .phones-zigzag .phone-5 {
        display: none;
    }


}

/* 작은 화면 - 중앙 3개만 */
/* @media (max-width: 900px) {

    .phones-zigzag .phone-2 {
        left: 10%;
    }

    .phones-zigzag .phone-4 {
        right: 10%;
    }
} */

/* @media (max-width: 768px) {
    .phones-zigzag {
        min-height: 450px;
    }

    .phones-zigzag .phone-1 {
        height: 320px;
        left: -80px;
        bottom: 50px;
    }

    .phones-zigzag .phone-2 {
        height: 380px;
        left: 80px;
        bottom: 100px;
    }

    .phones-zigzag .phone-3 {
        height: 450px;
        bottom: 0;
    }

    .phones-zigzag .phone-4 {
        height: 380px;
        right: 60px;
        bottom: 100px;
    }

    .phones-zigzag .phone-5 {
        height: 320px;
        right: -80px;
        bottom: 50px;
    }
} */

/* Experience Section */
.experience-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #a8a8ad 0%, #909095 100%);
}

/* Experience Web Section */
.experience-web-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #909095 0%, #78787d 100%);
}

.web-zigzag {
    position: relative;
    width: 100%;
    min-height: 700px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 100px;
}

.web-img {
    background: white;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    max-width: 600px;
    width: 100%;
}

.web-zigzag .web-1 {
    align-self: flex-start;
    margin-left: 5%;
    position: relative;
    z-index: 1;
}

.web-zigzag .web-2 {
    align-self: flex-end;
    margin-right: 5%;
    margin-top: -100px;
    position: relative;
    z-index: 2;
}

.web-zigzag .web-3 {
    align-self: flex-start;
    margin-left: 5%;
    margin-top: -100px;
    position: relative;
    z-index: 3;
}

/* Results Section */
.results-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #78787d 0%, #505055 100%);
    position: relative;
}

.results-section .container {
    display: flex;
    align-items: flex-start;
    gap: 80px;
}

.results-header {
    text-align: left;
    flex: 0 0 450px;
    position: sticky;
    top: 120px;
}

.live-badge {
    display: inline-block;
    background: #ff3b30;
    color: white;
    padding: 8px 20px;
    border-radius: 24px;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 24px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}


.results-header h3 {
    font-size: clamp(18px, 3.5vw, 22px);
    font-weight: 300;
    color: white;
    letter-spacing: -0.02em;
    line-height: 1.3;
}


.results-header h2 {
    font-size: clamp(32px, 3.5vw, 48px);
    font-weight: 700;
    color: white;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.reviews-grid {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.review-box {
    background: white;
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
    position: relative;
    max-width: 520px;
    opacity: 0;
    transform: translate3d(0, 45px, 0) scale(0.98);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity, transform;
}

.review-box.animate {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
}

.review-box:nth-child(1) {
    align-self: flex-start;
    margin-left: 0;
}

.review-box.animate:nth-child(1) {
    transition-delay: 0.1s;
}

.review-box:nth-child(2) {
    align-self: center;
    margin-left: 40px;
}

.review-box.animate:nth-child(2) {
    transition-delay: 0.2s;
}

.review-box:nth-child(3) {
    align-self: flex-end;
    margin-right: 0;
}

.review-box.animate:nth-child(3) {
    transition-delay: 0.3s;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.review-label {
    font-size: 16px;
    font-weight: 700;
    color: #1d1d1f;
    letter-spacing: -0.01em;
}

.review-rating {
    font-size: 18px;
}

.review-text {
    font-size: 14px;
    color: #1d1d1f;
    line-height: 1.65;
    letter-spacing: -0.01em;
    font-weight: 400;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #505055 0%, #2d2d30 100%);
    color: white;
}

.contact-section h2 {
    font-size: clamp(40px, 3.8vw, 64px);
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: -0.009em;
    line-height: 1.0625;
}

.contact-desc {
    text-align: center;
    font-size: 21px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 50px;
    line-height: 1.381;
    letter-spacing: 0.011em;
    font-weight: 400;
}

.contact-form {
    max-width: 750px;
    margin: 0 auto;
    background: white;
    padding: 45px;
    border-radius: 14px;
    color: #333;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-bottom: 18px;
}

.form-field {
    display: flex;
    flex-direction: column;
}

.form-field.full {
    grid-column: 1 / -1;
    margin-bottom: 18px;
}

.form-field label {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1d1d1f;
    letter-spacing: -0.01em;
}

.form-field input,
.form-field textarea {
    padding: 14px 16px;
    border: 1px solid #d2d2d7;
    border-radius: 12px;
    font-size: 17px;
    font-family: inherit;
    transition: all 0.3s ease;
    letter-spacing: -0.022em;
    font-weight: 400;
}

.form-field input:focus,
.form-field textarea:focus {
    border-color: #0071e3;
    box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.1);
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
}

.form-field textarea {
    resize: vertical;
}

.form-bottom {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 25px;
}

.checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 12px;
    letter-spacing: -0.01em;
    font-weight: 400;
}

.checkbox input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.btn-submit {
    background: #0071e3;
    color: white;
    padding: 14px 40px;
    border: none;
    border-radius: 980px;
    font-size: 17px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: -0.022em;
}

.btn-submit:hover {
    background: #0077ed;
    transform: scale(1.02);
}

/* Footer */
.footer {
    background: #3a3a3a;
    color: #9ca3af;
    padding: 60px 0 40px;
}

.footer .container {
    text-align: left;
}

.footer-logo {
    margin-bottom: 40px;
}

.footer-logo img {
    height: 40px;
    filter: brightness(0) invert(1);
}

.footer-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    gap: 100px;
}

.footer-left {
    flex: 1;
}

.footer-right {
    flex: 0 0 300px;
}

.footer-left p,
.footer-right p {
    font-size: 12px;
    line-height: 1.8;
    margin-bottom: 4px;
    letter-spacing: -0.01em;
    color: #a1a1a6;
    font-weight: 400;
}

.footer-right strong {
    color: #ffffff;
    font-weight: 600;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid #525252;
}

.footer-bottom p {
    font-size: 12px;
    letter-spacing: -0.01em;
    color: #a1a1a6;
}

.footer-bottom strong {
    color: #ffffff;
    font-weight: 600;
}

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

    .service-card:nth-child(1),
    .service-card:nth-child(3) {
        transform: translateY(-20px);
    }

    .service-card:nth-child(2),
    .service-card:nth-child(4) {
        transform: translateY(20px);
    }

    .phones-zigzag {
        height: 600px;
    }

    .phones-zigzag .phone-1,
    .phones-zigzag .phone-5 {
        height: 420px;
    }

    .phones-zigzag .phone-2,
    .phones-zigzag .phone-4 {
        height: 500px;
    }


    .phones-zigzag .phone-2 {
        left: calc(50% - 480px);
    }

    .phones-zigzag .phone-4 {
        right: calc(50% - 480px);
    }

    .phones-zigzag .phone-3 {
        height: 580px;
    }
}

@media (max-width: 768px) {

    /* 모바일에서 모든 애니메이션 비활성화 */
    .service-card,
    .content-layout,
    .quote-section,
    .phones-zigzag,
    .web-zigzag,
    .results-header,
    .review-box,
    .contact-form {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    .service-card.animate,
    .content-layout.animate,
    .quote-section.animate,
    .phones-zigzag.animate,
    .web-zigzag.animate,
    .results-header.animate,
    .review-box.animate,
    .contact-form.animate {
        opacity: 1 !important;
        transform: none !important;
    }

    .phones-zigzag .phone,
    .web-zigzag .web-1,
    .web-zigzag .web-2,
    .web-zigzag .web-3 {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        padding: 40px 0;
        transition: left 0.3s;
    }

    .nav-menu a {
        color: #333 !important;
    }

    .nav-menu.active {
        left: 0;
    }

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

    .hero-contact {
        right: 20px;
        bottom: 60px;
    }

    .container,
    .container-wide {
        padding: 0 20px;
    }

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

    .service-card:nth-child(1),
    .service-card:nth-child(2),
    .service-card:nth-child(3),
    .service-card:nth-child(4) {
        transform: none !important;
    }

    .service-img {
        height: 200px;
    }

    .content-layout {
        flex-direction: column;
        gap: 40px;
    }

    /* .phones-zigzag {
        height: 300px;
        padding: 0 2%;
    }

    .phones-zigzag .phone-1,
    .phones-zigzag .phone-5 {
        height: 300px;
    }

    .phones-zigzag .phone-2,
    .phones-zigzag .phone-4 {
        height: 300px;
    }

    .phones-zigzag .phone-3 {
        height: 300px;
    } */

    .web-zigzag {
        min-height: auto;
    }

    .web-zigzag .web-1,
    .web-zigzag .web-2,
    .web-zigzag .web-3 {
        align-self: center;
        margin: 0 0 2rem 0 !important;
        max-width: 100%;
    }

    .web-zigzag .web-3 {
        margin-bottom: 0 !important;
    }

    .results-section .container {
        flex-direction: column;
        gap: 40px;
    }

    .results-header {
        flex: none;
        position: static;
        width: 100%;
    }

    .results-header h2 {
        font-size: 32px;
    }

    .reviews-grid {
        width: 100%;
    }

    .review-box {
        max-width: 100%;
    }

    .review-box:nth-child(1),
    .review-box:nth-child(2),
    .review-box:nth-child(3) {
        align-self: stretch;
        margin: 0;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-submit {
        width: 100%;
    }

    .footer-info {
        flex-direction: column;
        gap: 30px;
    }

    .footer-right {
        flex: none;
    }
}


/* 카카오톡 플로팅 버튼 */
.kakao-float-button {
    position: fixed;
    right: 2rem;
    bottom: 2rem;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    overflow: hidden;
}

.kakao-float-button img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kakao-float-button:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

@media (max-width: 768px) {
    .kakao-float-button {
        width: 60px;
        height: 60px;
        right: 1.5rem;
        bottom: 1.5rem;
    }
}