
body{
<style>


-webkit-appearance:none; 

 *{
   font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
   word-break : normal
}

/* Torder Ads - Custom Styles */

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

body {
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 400;
    line-height: 1.5;
    color: #14151a;
    background-color: #ffffff;
}

/* Smooth Scrolling & Prevent Horizontal Scroll */
html, body {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100%;
}

/* Hide Scrollbar */
.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin: 0;
    line-height: 1.2;
}

p {
    margin: 0;
}

/* Navigation Styles */
.nav-bar {
    transition: border-bottom 0.3s ease;
}

.nav-bar.scrolled {
    border-bottom: 1px solid #E5E6EB;
}

/* Mobile Menu Toggle */
.nav-mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: #000000;
}

.flaot-right {
    float: right;
}

.nav-link {
    font-size: 18px;
    font-weight: 500;
    color: #000000;
    text-decoration: none;
    padding: 8px 0;
    transition: color 0.2s ease;
    letter-spacing: -0.36px;
}

.nav-link:hover {
    color: #ff193f;
}

/* Button Styles */
.btn-primary,
.btn-secondary {
    font-family: 'Pretendard', sans-serif;
    font-weight: 600;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 25, 63, 0.3);
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
}

.hero-container {
    position: relative;
    width: 100%;
    height: 630px;
}

/* Hero content padding - PC default */
#section-hero .relative.z-10 {
    padding: 7rem 13%; /* 112px 280px */
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-headline {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -1.2px;
}

.hero-subtext {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.44px;
}

/* Feature Cards */
.feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* Stats Card */
.stats-card {
    transition: transform 0.3s ease;
}

.stats-card:hover {
    /* transform: translateY(-2px); */
}

/* Targeting Cards */
.targeting-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.targeting-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.targeting-card svg {
    transition: transform 0.3s ease;
}

.targeting-card:hover svg {
    transform: scale(1.1);
}

/* Insight Cards */
.insight-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.insight-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Industry Cards - PC: 5 columns, 2 rows, square, responsive */
.industry-card {
    width: calc(20% - 1.2rem);
    aspect-ratio: 1 / 1;
    max-width: 280px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
}

.industry-card:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Industry Card Text Positioning - Percentage-based */
.industry-card .bottom-6 {
    bottom: 8% !important;
}

.industry-card .left-6 {
    left: 8% !important;
}

/* Targeting Cards - PC: 5 columns, 2 rows, responsive */
.targeting-card {
    width: calc(20% - 1rem);
    max-width: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.targeting-card h3 {
    font-size: 24px !important;
    text-align: left;
}

.targeting-card img {
    width: 67px;
    height: 67px;
    align-self: flex-end;
}

/* Product Tabs */
#section-products .flex.gap-7 {
    gap: 28px;
}

.product-tab {
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    padding: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Pretendard', sans-serif;
    font-size: 24px;
    white-space: nowrap;
}

.product-tab.active {
    color: #ff193f;
    border-bottom-color: #ff193f00;
}

.product-tab:not(.active):hover {
    color: #ff193f;
}

/* Product Content Area - PC: Text left, media right */
#section-products .flex.items-start {
    display: flex;
    flex-direction: row;
    gap: 2rem;
}

#product-media {
    flex-shrink: 0;
}

#product-media video,
#product-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Product Tags - Keep Vertical Stacking */
#product-tags {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0.5rem !important;
}

#product-tags span {
    width: auto !important;
}

/* Video Styles */
video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Video Card Gradient Overlay - PC: Left to Right */
.video-gradient-overlay {
    position: absolute;
    inset: 0;
    /* background: linear-gradient(to right, #1d222f 0%, #1d222f 20%, rgba(29, 34, 47, 0.7) 50%, rgba(29, 34, 47, 0) 100%); */
    background: linear-gradient(to right, #1d222f 0%, #1d222f 10%, rgba(29, 34, 47, 0.9) 20%, rgba(29, 34, 47, 0.5) 35%, rgba(29, 34, 47, 0) 50%) !important;
    pointer-events: none;
    z-index: 1;
}

/* Mobile Phone Mockup */
.mobile-mockup {
    position: relative;
    background: #f2eeef;
    border: 1px solid #abafbf;
    border-radius: 28px;
}

.mobile-mockup::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 6px;
    background: #d9d9d9;
    border-radius: 3px;
}

/* Footer Styles */
footer a {
    text-decoration: none;
}

footer svg {
    transition: transform 0.3s ease;
}

footer a:hover svg {
    transform: scale(1.1);
}

/* Client Logos */
.client-logo {
    opacity: 0.7;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.client-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

.animate-fadeIn {
    animation: fadeIn 0.6s ease-out;
}

.animate-slideInLeft {
    animation: slideInLeft 0.6s ease-out;
}

.animate-slideInRight {
    animation: slideInRight 0.6s ease-out;
}

/* Section Transitions - Removed auto-animation */
/* Sections are now visible by default and animated via JavaScript */

/* ========================================
   RESPONSIVE DESIGN - TABLET & MOBILE
   ======================================== */

/* Loading State */
.loading {
    opacity: 0.5;
    pointer-events: none;
}

/* Utility Classes */
.text-gradient {
    background: linear-gradient(90deg, #ff193f 0%, #ff667a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shadow-custom {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.shadow-hover:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* Backdrop Blur Effect */
.backdrop-blur {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Print Styles */
@media print {
    #nav,
    footer {
        display: none;
    }

    section {
        page-break-inside: avoid;
    }
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Selection */
::selection {
    background-color: #ff193f;
    color: white;
}

::-moz-selection {
    background-color: #ff193f;
    color: white;
}

/* Custom Colors */
.text-torder-red {
    color: #ff193f;
}

.bg-torder-red {
    background-color: #ff193f;
}

.border-torder-red {
    border-color: #ff193f;
}

/* Grid System Enhancement */
.grid-auto-fit {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

/* Overflow Hidden for Parent */
.overflow-clip {
    overflow: clip;
}

/* Additional Spacing */
.mb-15 {
    margin-bottom: 3.75rem;
}

/* Custom Border Radius */
.rounded-3xl {
    border-radius: 1.5rem;
}

.rounded-2xl {
    border-radius: 1rem;
}

/* Z-Index Layers */
.z-nav {
    z-index: 1000;
}

.z-modal {
    z-index: 2000;
}

.z-tooltip {
    z-index: 3000;
}

/* Performance Optimization */
.gpu-accelerated {
    transform: translateZ(0);
    will-change: transform;
}

/* Image Optimization */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Aspect Ratio Boxes */
.aspect-video {
    aspect-ratio: 16 / 9;
}

.aspect-square {
    aspect-ratio: 1 / 1;
}

/* Responsive Line Breaks */
.br-pc {
    display: inline;
}

.br-tab {
    display: none;
}

.br-mobile {
    display: none;
}

/* Section Vertical Padding - PC Default (120px) */
#section-impact,
#section-targeting,
#section-insights,
#section-industries,
#section-products,
#section-product-details,
#section-clients {
    padding-top: 120px;
    padding-bottom: 120px;
}

/* Product Content Area Padding - PC */
.product-content-area {
    padding: 50px 64px;
}

/* Gradient Backgrounds */
.gradient-red {
    background: linear-gradient(135deg, #ff193f 0%, #ff667a 100%);
}

.gradient-dark {
    background: linear-gradient(135deg, #14151a 0%, #262831 100%);
}

/* Text Shadow */
.text-shadow-sm {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.text-shadow-md {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.text-shadow-lg {
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Backdrop Effects */
.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Skeleton Loading */
@keyframes skeleton-loading {
    0% {
        background-position: -200px 0;
    }
    100% {
        background-position: calc(200px + 100%) 0;
    }
}

.skeleton {
    background-color: #e0e0e0;
    background-image: linear-gradient(
        90deg,
        #e0e0e0 0px,
        #f5f5f5 40px,
        #e0e0e0 80px
    );
    background-size: 200px 100%;
    background-repeat: no-repeat;
    animation: skeleton-loading 1.2s ease-in-out infinite;
}

/* Transition Utilities */
.transition-all {
    transition: all 0.3s ease;
}

.transition-transform {
    transition: transform 0.3s ease;
}

.transition-opacity {
    transition: opacity 0.3s ease;
}

.transition-colors {
    transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

/* Cards Carousel Animation */
@keyframes slide-left {
    0% {
        transform: translateX(0);
    }
    100% {
        /* 5 cards (356px each) + 4 gaps (20px each) = 1960px */
        transform: translateX(-1960px);
    }
}

.cards-carousel-wrapper {
    width: 100%;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
}

.cards-carousel {
    display: flex;
    gap: 20px;
    padding: 0 20px;
    will-change: transform;
}

.feature-card {
    flex-shrink: 0;
    width: 356px;
    height: 442px;
}

/* Floating Action Buttons - PC */
.floating-buttons {
    position: fixed;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    z-index: 100;
    display: flex;
    width: 600px;
    padding: 16px 20px;
    justify-content: center;
    align-items: center;
    gap: 16px;
    border-radius: 16px;
    background: #FFF;
    box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
}

.floating-buttons.visible {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.floating-btn {
    display: flex;
    padding: 12px 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex: 1 0 0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Pretendard', sans-serif;
}

.floating-btn-outline {
    border: 1px solid #FF193F;
    background: transparent;
}

.floating-btn-outline:hover {
    background: rgba(255, 25, 63, 0.05);
}

.floating-btn-filled {
    background: #FF193F;
    border: none;
}

.floating-btn-filled:hover {
    background: #E0153A;
}

.floating-btn-text {
    display: flex;
    height: 35px;
    flex-direction: column;
    justify-content: center;
    align-self: stretch;
    text-align: center;
    font-family: 'Pretendard', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: -0.36px;
}

.floating-btn-text-outline {
    color: #FF193F;
}

.floating-btn-text-filled {
    color: #fff;
}

/* Inquiry Modal - PC/Tablet */
.inquiry-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
}

.inquiry-modal.active {
    display: block;
}

.inquiry-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.inquiry-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    width: 90%;
    max-width: 488px;
    max-height: 90vh;
    overflow-y: auto;
    overflow-x: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    scrollbar-gutter: stable;
}

.inquiry-modal-content::-webkit-scrollbar {
    width: 6px;
}

.inquiry-modal-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.inquiry-modal-content::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

.inquiry-modal-content::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

.inquiry-modal-close {
    pointer-events: auto;
    position: absolute;
    top: 20px;
    right: 20px;
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    font-size: 32px;
    line-height: 1;
    color: #262831;
    cursor: pointer;
    transition: color 0.2s;
    z-index: 10;
}

.inquiry-modal-close:hover {
    color: #FF193F;
}

.inquiry-modal-title {
    font-family: 'Pretendard', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #262831;
    margin-bottom: 8px;
    line-height: 1.4;
}

.inquiry-modal-subtitle {
    font-family: 'Pretendard', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #6b718a;
    margin-bottom: 0;
    padding-bottom: 20px;
    border-bottom: 1px solid #EAEAEA;
    line-height: 1.5;
}

/* Inquiry Form */
.inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 24px;
}

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

.inquiry-form-label {
    font-family: 'Pretendard', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #262831;
}

.inquiry-form-input,
.inquiry-form-textarea {
    font-family: 'Pretendard', sans-serif;
    font-size: 14px;
    padding: 14px 16px;
    border: none;
    border-radius: 8px;
    background: #f3f4f6;
    color: #262831;
    outline: none;
    transition: background 0.2s;
}


.inquiry-form-input:focus,
.inquiry-form-textarea:focus {
    background: #e5e7eb;
}

.inquiry-form-input::placeholder,
.inquiry-form-textarea::placeholder {
    color: #9ca3af;
}

/* Custom Select Dropdown */
.custom-select-wrapper {
    position: relative;
    width: 100%;
}

.custom-select {
    position: relative;
    width: 100%;
}

.custom-select-trigger {
    font-family: 'Pretendard', sans-serif;
    font-size: 14px;
    padding: 14px 16px;
    border: none;
    border-radius: 8px;
    background: #f3f4f6;
    color: #262831;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s;
    user-select: none;
}

.custom-select-trigger:hover {
    background: #e5e7eb;
}

.custom-select-trigger svg {
    transition: transform 0.2s;
    flex-shrink: 0;
    margin-left: 8px;
}

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

.custom-select-options {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    list-style: none;
    padding: 8px 0;
    margin: 0;
    z-index: 100;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.2s ease;
}

.custom-select.open .custom-select-options {
    max-height: 300px;
    overflow-y: auto;
    opacity: 1;
}

.custom-select-options li {
    font-family: 'Pretendard', sans-serif;
    font-size: 14px;
    padding: 12px 16px;
    color: #262831;
    cursor: pointer;
    transition: background 0.15s;
}

.custom-select-options li:hover {
    background: #f3f4f6;
}

.custom-select-options li.selected {
    background: #f3f4f6;
    font-weight: 500;
}

.custom-select-options::-webkit-scrollbar {
    width: 6px;
}

.custom-select-options::-webkit-scrollbar-track {
    background: transparent;
}

.custom-select-options::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

.custom-select-options::-webkit-scrollbar-thumb:hover {
    background: #a0a0a0;
}

.inquiry-form-textarea {
    resize: vertical;
    min-height: 100px;
    line-height: 1.5;
}

/* Phone Validation Error */
.phone-error-input {
    border-color: #FF0024 !important;
}

.phone-error {
    color: #FF0024;
    font-size: 12px;
    margin-top: 4px;
    font-weight: 400;
}

/* Form Validation Error */
.form-error-input {
    border-color: #FF0024 !important;
}

.form-error {
    color: #FF0024;
    font-size: 12px;
    margin-top: 4px;
    font-weight: 400;
}

/* Checkboxes */
.inquiry-form-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}

.inquiry-checkbox-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    font-family: 'Pretendard', sans-serif;
    font-size: 13px;
    color: #434656;
    cursor: pointer;
}

.inquiry-checkbox-item-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.inquiry-checkbox {
    width: 18px;
    height: 18px;
    border: 1.5px solid #d1d5db;
    border-radius: 4px;
    cursor: pointer;
    accent-color: #FF193F;
}

.inquiry-link {
    color: #6b718a;
    text-decoration: underline;
    transition: color 0.2s;
}

.inquiry-link:hover {
    color: #FF193F;
}

/* Submit Button */
.inquiry-submit-btn {
    width: 100%;
    padding: 16px;
    background: #FF193F;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-family: 'Pretendard', sans-serif;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 12px;
}

.inquiry-submit-btn:hover {
    background: #E0153A;
}

.inquiry-submit-btn-disabled {
    background: #a2a0a1 !important;
    cursor: not-allowed !important;
}

.inquiry-submit-btn-disabled:hover {
    background: #a2a0a1 !important;
}

/* Terms Modal Styles */
.terms-modal-content {
    max-width: 600px !important;
    max-height: 80vh;
    overflow-y: auto;
}

.terms-modal-content::-webkit-scrollbar {
    width: 8px;
}

.terms-modal-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.terms-modal-content::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

.terms-modal-content::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

.terms-modal-title {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 0;
    padding-bottom: 20px;
    border-bottom: 1px solid #EAEAEA;
    line-height: 1.4;
}

.terms-modal-body {
    margin-top: 24px;
    margin-bottom: 32px;
    color: #374151;
    font-size: 14px;
    line-height: 1.6;
}

.terms-modal-body h3 {
    font-size: 15px;
    font-weight: 600;
    color: #111827;
    margin-top: 20px;
    margin-bottom: 8px;
}

.terms-modal-body p {
    margin-bottom: 12px;
}

.terms-note {
    margin-top: 20px;
    color: #6B7280;
    font-size: 13px;
}

.terms-modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.terms-agree-btn,
.terms-disagree-btn {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.terms-agree-btn {
    background: #FF0024;
    color: #fff;
}

.terms-agree-btn:hover {
    background: #E0153A;
}

.terms-disagree-btn {
    background: #E5E7EB;
    color: #6B7280;
}

.terms-disagree-btn:hover {
    background: #D1D5DB;
}

/* ========================================
   TABLET RESPONSIVE (600px ~ 1199px)
   ======================================== */
@media (min-width: 600px) and (max-width: 1199px) {
    /* Hero Section - Tablet (from Figma React export) */
    #section-hero .section-wrapper {
        padding: 0 2.5rem 3rem 2.5rem !important;
    }

    /* Section Vertical Padding - Tablet (100px) */
    #section-impact,
    #section-targeting,
    #section-insights,
    #section-industries,
    #section-products,
    #section-product-details,
    #section-clients {
        padding-top: 100px !important;
        padding-bottom: 100px !important;
    }

    #section-hero .hero-container {
        min-height: 33.75rem !important;
        height: auto !important;
        border-radius: 1.5rem !important;
    }

    #section-hero .relative.z-10 {
        width: 100% !important;
        padding: 7rem 4.375rem !important; /* Tablet: 112px 70px */
        justify-content: left !important;
        align-items: flex-start !important;
    }

    #section-hero .max-w-\[1280px\] {
        max-width: 100% !important;
    }

    #section-hero .absolute.inset-0.bg-gradient-to-r {
        background: linear-gradient(to right, #260000 34.511%, rgba(38, 0, 0, 0) 62.69%) !important;
    }

    /* Hero Badge - Tablet */
    #section-hero .hero-badge {
        padding: 0.375rem 1.25rem !important;
    }

    #section-hero .hero-badge p {
        font-size: 1rem !important;
        line-height: 1.5 !important;
        letter-spacing: -0.32px !important;
    }

    /* Hero Headline - Tablet */
    #section-hero h1 {
        font-size: 2.75rem !important;
        line-height: 1.25 !important;
        letter-spacing: -0.88px !important;
    }

    /* Hero Subtitle - Tablet */
    #section-hero .text-2xl.text-white {
        font-size: 1.125rem !important;
        letter-spacing: -0.36px !important;
    }

    /* Hero Buttons - Tablet */
    #section-hero .flex.gap-3 {
        gap: 0.75rem !important;
    }

    #section-hero .flex.gap-3 button {
        padding: 1rem 2.25rem !important;
        font-size: 1.125rem !important;
        letter-spacing: -0.36px !important;
    }

    /* Hero Text Container Gap */
    #section-hero .flex.flex-col.gap-11 {
        gap: 2.75rem !important;
    }

    #section-hero .flex.flex-col.gap-5 {
        gap: 1.25rem !important;
    }

    /* Navigation - Tablet */
    .nav-container {
        padding-left: 2.5rem !important;
        padding-right: 2.5rem !important;
    }

    .nav-menu {
        gap: 24px !important;
    }

    .nav-link {
        font-size: 14px !important;
    }

    /* Section Padding Adjustments */
    .section-container {
        max-width: 100% !important;
        padding-left: 2.5rem !important;
        padding-right: 2.5rem !important;
    }

    /* Why Torder Section 1: Title (from React) */
    #section-why-torder {
        padding-top: 5rem !important;
        padding-bottom: 2.5rem !important;
    }

    #section-why-torder h2 {
        font-size: 2.5rem !important;
        line-height: 1.25 !important;
        letter-spacing: -0.8px !important;
        text-align: center !important;
    }

    #section-why-torder p {
        font-size: 1.25rem !important;
        line-height: 1.25 !important;
        letter-spacing: -0.4px !important;
        text-align: center !important;
    }

    /* Feature Cards Carousel (from React) */
    #section-why-torder-carousel {
        padding-bottom: 5rem !important;
    }

    .feature-card {
        width: 18.022rem !important;
        height: 22.375rem !important;
        border-radius: 0.81rem !important;
        padding: 1.822rem 1.62rem !important;
    }

    .feature-card h3 {
        font-size: 1.215rem !important;
        line-height: 1.25 !important;
        letter-spacing: -0.389px !important;
    }

    .feature-card p {
        font-size: 0.911rem !important;
        line-height: 1.5 !important;
        letter-spacing: -0.292px !important;
    }

    /* Impact Section (from React) */
    #section-impact {
        padding-top: 100px !important;
        padding-bottom: 100px !important;
    }

    #section-impact .section-container {
        padding: 0 2.5rem !important;
    }

    #section-impact h2 {
        font-size: 2.5rem !important;
        line-height: 1.25 !important;
        letter-spacing: -0.8px !important;
        text-align: center !important;
    }

    #section-impact > .section-container > p {
        font-size: 1.25rem !important;
        line-height: 1.25 !important;
        letter-spacing: -0.4px !important;
        text-align: center !important;
    }

    #section-impact .flex.gap-3 {
        gap: 1rem !important;
        height: 25.125rem !important;
    }

    /* Red Card - Left */
    #section-impact .bg-\[\#ff193f\] {
        padding: 2.5rem 3rem !important;
        border-radius: 1.25rem !important;
    }

    #section-impact .bg-\[\#ff193f\] .text-3xl {
        font-size: 1.5rem !important;
        line-height: 1.25 !important;
        letter-spacing: -0.48px !important;
    }

    #section-impact .bg-\[\#ff193f\] .text-7xl {
        font-size: 3.25rem !important;
        line-height: 1.25 !important;
        letter-spacing: -1.3px !important;
    }

    #section-impact .bg-\[\#ff193f\] .text-xl {
        font-size: 1.125rem !important;
        line-height: 1.5 !important;
        letter-spacing: -0.36px !important;
    }

    #section-impact .bg-\[\#ff193f\] .text-base {
        font-size: 1rem !important;
        line-height: 1.5 !important;
        letter-spacing: -0.32px !important;
    }

    #section-impact .bg-\[\#ff193f\] .text-3xl:not(.text-7xl) {
        font-size: 1.75rem !important;
        line-height: 1.25 !important;
        letter-spacing: -0.56px !important;
    }

    /* Dark Card - Right */
    #section-impact .bg-\[\#1d222f\] {
        width: 100% !important;
        padding: 2.5rem 3rem !important;
        border-radius: 1.25rem !important;
        height: auto !important;
        min-height: 25.125rem !important;
    }

    #section-impact .bg-\[\#1d222f\] .text-3xl {
        font-size: 1.5rem !important;
        line-height: 1.25 !important;
        letter-spacing: -0.48px !important;
    }

    /* Targeting Section (from React) */
    #section-targeting {
        padding-top: 5rem !important;
        padding-bottom: 5rem !important;
    }

    #section-targeting h2 {
        font-size: 2.5rem !important;
        line-height: 1.25 !important;
        letter-spacing: -0.8px !important;
        text-align: center !important;
    }

    #section-targeting .mb-15 {
        margin-bottom: 3.75rem !important;
    }

    /* Insights Section (from React) */
    #section-insights {
        padding-top: 5rem !important;
        padding-bottom: 5rem !important;
    }

    #section-insights h2 {
        font-size: 2.5rem !important;
        line-height: 1.4 !important;
        letter-spacing: -0.8px !important;
        text-align: center !important;
    }

    #section-insights > .section-container > .text-center > p {
        font-size: 1.25rem !important;
        line-height: 1.6 !important;
        letter-spacing: -0.4px !important;
        text-align: center !important;
    }

    /* Insight Cards - Tablet responsive text */
    .insight-card p:first-of-type {
        font-size: 16px !important;
        line-height: 1.5 !important;
    }

    .insight-card .card-value {
        font-size: 36px !important;
    }

    /* Industries Section (from React) */
    #section-industries {
        padding-top: 5rem !important;
        padding-bottom: 5rem !important;
    }

    #section-industries h2 {
        font-size: 2.5rem !important;
        line-height: 1.25 !important;
        letter-spacing: -0.8px !important;
        text-align: center !important;
    }

    #section-industries .mb-15 {
        margin-bottom: 3.75rem !important;
    }

    /* Industry Cards - Tablet: 5 columns, 2 rows, square */
    #section-industries .section-container {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }

    #industry-grid {
        gap: 0.75rem !important;
        justify-content: center !important;
    }

    #section-industries .industry-card,
    #industry-grid .industry-card {
        width: calc(20% - 0.6rem) !important;
        aspect-ratio: 1 / 1 !important;
        flex: 0 0 calc(20% - 0.6rem) !important;
        max-width: none !important;
    }

    #section-industries .industry-card p,
    #industry-grid .industry-card p {
        font-size: 14px !important;
    }

    /* Targeting Cards - Tablet: 5 columns, 2 rows */
    #section-targeting .section-container {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }

    #targeting-grid {
        gap: 0.75rem !important;
        justify-content: center !important;
    }

    #section-targeting .targeting-card,
    #targeting-grid .targeting-card {
        width: calc(20% - 0.6rem) !important;
        flex: 0 0 calc(20% - 0.6rem) !important;
        max-width: none !important;
        padding: 20px;
    }

    #section-targeting .targeting-card h3,
    #targeting-grid .targeting-card h3 {
        font-size: 18px !important;
    }

    #section-targeting .targeting-card img,
    #targeting-grid .targeting-card img {
        width: 54px !important;
        height: 54px !important;
    }

    /* Products Section (from React) */
    #section-products {
        padding-top: 5rem !important;
        padding-bottom: 5rem !important;
    }

    #section-products h2 {
        font-size: 2.5rem !important;
        line-height: 1.25 !important;
        letter-spacing: -0.8px !important;
        text-align: center !important;
    }

    #section-products .mb-15 {
        margin-bottom: 3.75rem !important;
    }

    /* Product Tabs - Horizontal Scroll (Hidden Scrollbar) */
    #section-products .flex.gap-7 {
        gap: 24px !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        justify-content: flex-start !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
    }

    #section-products .flex.gap-7::-webkit-scrollbar {
        display: none !important;
    }

    .product-tab {
        font-size: 20px !important;
        flex-shrink: 0 !important;
    }

    #section-products .w-\[450px\] {
        width: 45% !important;
        flex-shrink: 0 !important;
    }

    #product-media {
        width: 50% !important;
        height: auto !important;
        aspect-ratio: 551 / 402 !important;
    }

    #product-title {
        font-size: 1.5rem !important;
        line-height: 1.25 !important;
        letter-spacing: -0.48px !important;
    }

    #product-subtitle {
        font-size: 1rem !important;
        line-height: 1.5 !important;
        letter-spacing: -0.32px !important;
    }

    #product-label {
        font-size: 1.125rem !important;
        line-height: 1.5 !important;
        letter-spacing: -0.36px !important;
    }

    /* Product Details Section - Tablet: Keep Horizontal Layout */
    #section-product-details {
        padding-top: 80px !important;
        padding-bottom: 80px !important;
    }

    #section-product-details h2 {
        font-size: 36px !important;
    }

    #section-product-details .mb-\[70px\] {
        margin-bottom: 40px !important;
    }

    #section-product-details .flex.items-center.justify-between {
        gap: 1.5rem !important;
    }

    #section-product-details .w-\[550px\] {
        width: 45% !important;
        flex-shrink: 0 !important;
    }

    #section-product-details .w-\[633px\] {
        width: 50% !important;
        height: auto !important;
        aspect-ratio: 633/405 !important;
    }

    #section-product-details h3 {
        font-size: 28px !important;
    }

    #section-product-details .text-lg,
    #section-product-details p {
        font-size: 16px !important;
    }

    #section-product-details .gap-\[100px\] {
        gap: 60px !important;
    }

    /* Floating Buttons - Tablet */
    .floating-buttons {
        width: 500px !important;
        padding: 12px 20px !important;
        gap: 16px !important;
    }

    .floating-btn {
        padding: 10px !important;
    }

    /* Impact Section - Tablet */
    #section-impact .section-container {
        padding-left: 40px !important;
        padding-right: 40px !important;
    }

    #section-impact .flex.flex-col.gap-4 {
        flex-direction: row !important;
        gap: 16px !important;
    }

    #section-impact .stats-card {
        width: calc(50% - 8px) !important;
        flex: 0 0 calc(50% - 8px) !important;
        padding: 32px !important;
    }

    #section-impact .stats-card .flex.items-start.justify-between {
        flex-direction: column !important;
        gap: 24px !important;
    }

    /* 비디오 카드 전체 */
    #section-impact .video-card-wrapper {
        width: calc(50% - 8px) !important;
        flex: 0 0 calc(50% - 8px) !important;
        padding: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 0 !important;
        height: auto !important;
        min-height: 402px !important;
        overflow: hidden !important;
    }

    /* 텍스트 영역 - 위 */
    #section-impact .video-text-area {
        position: absolute !important;
        left: 40px !important;
        top: 40px !important;
        transform: none !important;
        padding: 0 !important;
        width: auto !important;
        z-index: 10 !important;
    }

    #section-impact .video-text-area h3 {
        font-size: 24px !important;
        line-height: 1.25 !important;
        letter-spacing: -0.48px !important;
    }

    /* Tablet: Gradient Top to Bottom - Tight */
    .video-gradient-overlay {
        top: 130px !important;
        bottom: 0 !important;
        height: auto !important;
        background: linear-gradient(to bottom, #1d222f 0%, #1d222f 10%, rgba(29, 34, 47, 0.9) 20%, rgba(29, 34, 47, 0.5) 35%, rgba(29, 34, 47, 0) 50%) !important;
    }

    /* 비디오 영역 - 텍스트 아래부터 시작 */
    #section-impact .video-map-area {
        position: absolute !important;
        right: 0 !important;
        top: 130px !important;
        left: 0 !important;
        bottom: 0 !important;
        transform: none !important;
        width: 100% !important;
        height: auto !important;
        z-index: 0 !important;
    }

    #section-impact .bg-\[#1d222f\] video {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

    #section-impact .stats-card h3,
    #section-impact .stats-card p.text-3xl {
        font-size: 24px !important;
        line-height: 1.3 !important;
    }

    #section-impact .stats-card .text-7xl {
        font-size: 52px !important;
        line-height: 1.2 !important;
    }

    #section-impact .stats-card .text-2xl {
        font-size: 18px !important;
        line-height: 1.4 !important;
    }

    #section-impact .stats-card .text-base {
        font-size: 16px !important;
    }

    #section-impact .stats-card .text-4xl {
        font-size: 28px !important;
        line-height: 1.3 !important;
    }

    #section-impact .stats-card .text-lg {
        font-size: 16px !important;
        line-height: 1.5 !important;
    }

    /* Tablet: Responsive Line Breaks */
    .br-pc {
        display: none !important;
    }

    .br-tab {
        display: inline !important;
    }

    .br-mobile {
        display: none !important;
    }

    /* Tablet: Product Tabs - Start alignment for proper scroll */
    #section-products .flex.gap-7 {
        justify-content: flex-start !important;
    }

    /* Tablet: Product Content Area Padding */
    .product-content-area {
        padding: 40px 48px !important;
    }

    /* Clients Section - Tablet */
    #section-clients {
        padding-top: 80px !important;
        padding-bottom: 80px !important;
    }

    #section-clients h2 {
        font-size: 36px !important;
        line-height: 1.3 !important;
    }

    #section-clients .mb-\[70px\] {
        margin-bottom: 40px !important;
    }

    #section-clients .flex.gap-16 {
        gap: 8px !important;
        justify-content: center !important;
    }

    #section-clients .flex.flex-col {
        gap: 8px !important;
    }

    #section-clients .h-24 {
        height: 64px !important;
        width: 100px !important;
    }

    /* Footer - Tablet: Keep left/right layout */
    #footer-main {
        padding-top: 40px !important;
    }

    #footer-main h3 {
        font-size: 16px !important;
    }

    #footer-main .text-sm {
        font-size: 13px !important;
    }

    /* Navigation */
    .nav-menu {
        gap: 24px !important;
    }

    .nav-link {
        font-size: 14px !important;
    }
}

/* ========================================
   MOBILE RESPONSIVE (360px ~ 599px)
   ======================================== */
@media (max-width: 599px) {
    /* Common Typography - Mobile */
    .section h2,
    section h2 {
        font-size: 28px !important;
        line-height: 1.3 !important;
        letter-spacing: -0.56px !important;
    }

    /* Section Vertical Padding - Mobile (80px) */
    #section-impact,
    #section-targeting,
    #section-insights,
    #section-industries,
    #section-products,
    #section-product-details,
    #section-clients {
        padding-top: 80px !important;
        padding-bottom: 80px !important;
    }

    .section p:not(.targeting-card p):not(.hero-badge p):not(.text-white\/70 p),
    section p:not(.targeting-card p):not(.hero-badge p):not(.text-white\/70 p) {
        /* font-size: 20px !important; */
        line-height: 1.5 !important;
        letter-spacing: -0.4px !important;
    }

    .insight-card p:first-of-type {
        font-size: 16px !important;
        line-height: 1.5 !important;
    }

    insight-card .card-value {
        font-size: 28px !important;
    }

    /* Hero Section - Mobile */
    #section-hero .section-wrapper {
        padding: 0 1rem 0.75rem 1rem !important;
    }

    #section-hero .hero-container {
        height: 640px !important;
        min-height: 640px !important;
        max-height: 640px !important;
    }

    #section-hero .hero-container img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center !important;
    }

    #section-hero .relative.z-10 {
        min-height: 640px;
        padding: 48.513px 22.051px 241px 22.051px !important; /* Mobile: top right bottom left */
        flex-direction: column !important;
        align-items: center !important;
        gap: 0.689rem !important;
    }

    #section-hero .absolute.inset-0.bg-gradient-to-r {
        background: linear-gradient(to bottom, #260000 0%, rgba(38, 0, 0, 0) 100%) !important;
    }

    /* Hero Badge - Mobile */
    #section-hero .hero-badge {
        margin: 0 auto !important;
    }

    #section-hero .hero-badge p {
        font-size: 16px !important;
        line-height: 150% !important;
        letter-spacing: -0.32px !important;
    }

    /* Hero Headline - Mobile */
    #section-hero h1 {
        font-size: 32px !important;
        line-height: 125% !important;
        letter-spacing: -0.64px !important;
        text-align: center !important;
    }

    /* Hero Subtext - Mobile */
    #section-hero .text-white\/70 p {
        font-size: 16px !important;
        line-height: 150% !important;
        letter-spacing: -0.32px !important;
        text-align: center !important;
    }

    /* Hero Buttons - Mobile (horizontal layout) */
    #section-hero .flex.gap-3 {
        flex-direction: row !important;
        width: 100% !important;
        gap: 8px !important;
        justify-content: center !important;
    }

    #section-hero .flex.gap-3 button {
        flex: 1 !important;
        padding: 18px !important;
        font-size: 16px !important;
        font-weight: 600 !important;
        line-height: 150% !important;
        letter-spacing: -0.32px !important;
        width: 128px;
    }

    /* Mobile: Gradient Top to Bottom - Tight */
    .video-gradient-overlay {
        top: 120px !important;
        bottom: 0 !important;
        height: auto !important;
        background: linear-gradient(to bottom, #1d222f 0%, #1d222f 10%, rgba(29, 34, 47, 0.9) 20%, rgba(29, 34, 47, 0.5) 35%, rgba(29, 34, 47, 0) 50%) !important;
    }

    /* Mobile: Video Card Wrapper */
    #section-impact .video-card-wrapper {
        min-height: 480px !important;
        position: relative !important;
        overflow: hidden !important;
    }

    /* Mobile: Video Text Area */
    #section-impact .video-text-area {
        position: absolute !important;
        left: 32px !important;
        top: 40px !important;
        padding: 0 !important;
        width: auto !important;
        z-index: 10 !important;
    }

    #section-impact .video-text-area h3 {
        font-family: 'Pretendard', sans-serif !important;
        font-size: 20px !important;
        font-style: normal !important;
        font-weight: 700 !important;
        line-height: 125% !important;
        letter-spacing: -0.4px !important;
        color: #FFF !important;
    }

    /* Mobile: Video Map Area - Below Text */
    #section-impact .video-map-area {
        position: absolute !important;
        right: 0 !important;
        top: 320px !important;
        left: 0 !important;
        bottom: 0 !important;
        width: 100% !important;
        height: 80% !important;
        z-index: 0 !important;
    }

    /* Mobile: Responsive Line Breaks */
    .br-pc {
        display: none !important;
    }

    .br-tab {
        display: none !important;
    }

    .br-mobile {
        display: inline !important;
    }

    /* Mobile: Product Tabs - Start alignment for proper scroll */
    #section-products .flex.gap-7 {
        justify-content: flex-start !important;
    }

    /* Mobile: Product Content Area Padding */
    .product-content-area {
        padding: 32px !important;
    }

    /* Impact Section - Mobile */
    #section-impact .stats-card h3,
    #section-impact .stats-card p.text-3xl {
        font-size: 20px !important;
        line-height: 1.3 !important;
        letter-spacing: -0.4px !important;
    }

    #section-impact .stats-card .text-7xl {
        font-size: 44px !important;
        line-height: 1.2 !important;
        letter-spacing: -0.88px !important;
    }

    #section-impact .stats-card .text-2xl {
        font-size: 16px !important;
        line-height: 1.4 !important;
        letter-spacing: -0.32px !important;
    }

    #section-impact .stats-card .text-base {
        font-size: 14px !important;
        line-height: 1.5 !important;
        letter-spacing: -0.28px !important;
    }

    #section-impact .stats-card .text-4xl {
        font-size: 28px !important;
        line-height: 1.3 !important;
        letter-spacing: -0.56px !important;
    }

    #section-impact .stats-card .text-lg {
        font-size: 14px !important;
        line-height: 1.5 !important;
        letter-spacing: -0.28px !important;
    }

    #section-impact .stats-card {
        padding: 32px 24px !important;
    }

    #section-impact .stats-card .flex {
        flex-direction: column !important;
        gap: 24px !important;
    }

    /* Client Logos - Mobile (4 columns, 64px each) */
    #section-clients {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }

    #section-clients .section-container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    #section-clients h2 {
        font-size: 24px !important;
        line-height: 1.3 !important;
    }

    #section-clients .mb-\[70px\] {
        margin-bottom: 30px !important;
    }

    #section-clients .flex.gap-16 {
        gap: 0 !important;
        justify-content: space-between !important;
    }

    #section-clients .flex.flex-col {
        flex: 1 !important;
        max-width: 80px !important;
        gap: 8px !important;
    }

    #section-clients .h-24 {
        height: 64px !important;
        width: 64px !important;
    }

    /* Insights Section - Mobile */
    #section-insights {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }

    #section-insights h2 {
        font-size: 28px !important;
        line-height: 1.4 !important;
        letter-spacing: -0.48px !important;
        word-break : normal !important;
        
    }

    #section-insights > .section-container > .text-center > p {
        font-size: 20px !important;
        line-height: 1.6 !important;
        letter-spacing: -0.32px !important;
    }


    /* Insight Cards - Mobile: bigger text only, let JS handle sizing */
    .insight-card p:first-of-type {
        font-size: 20px !important;
        line-height: 1.5 !important;
    }

    .insight-card .card-value {
        font-size: 28px !important;
        line-height: 1.2 !important;
    }

    /* Industry Cards - Mobile: 2 columns, 5 rows, square */
    #section-industries .section-container {
        padding-left: 1.25rem !important;
        padding-right: 1.25rem !important;
    }

    #industry-grid {
        gap: 0.75rem !important;
    }

    #section-industries .industry-card,
    #industry-grid .industry-card {
        width: calc(50% - 0.375rem) !important;
        aspect-ratio: 1 / 1 !important;
        flex: 0 0 calc(50% - 0.375rem) !important;
    }

    #section-industries .industry-card p,
    #industry-grid .industry-card p {
        font-size: 14px !important;
    }

    /* Targeting Cards - Mobile: 2 columns, 5 rows */
    #section-targeting .section-container {
        padding-left: 1.25rem !important;
        padding-right: 1.25rem !important;
    }

    #targeting-grid {
        gap: 0.75rem !important;
    }

    #section-targeting .targeting-card,
    #targeting-grid .targeting-card {
        width: calc(50% - 0.375rem) !important;
        flex: 0 0 calc(50% - 0.375rem) !important;
        padding: 18px;
    }

    #section-targeting .targeting-card h3,
    #targeting-grid .targeting-card h3 {
        font-size: 18px !important;
    }

    #section-targeting .targeting-card img,
    #targeting-grid .targeting-card img {
        width: 46.75px !important;
        height: 46.75px !important;
    }

    /* Product Tabs - Mobile: Horizontal Scroll (Hidden Scrollbar) */
    #section-products .flex.gap-7 {
        gap: 16px !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        justify-content: flex-start !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
    }

    #section-products .flex.gap-7::-webkit-scrollbar {
        display: none !important;
    }

    .product-tab {
        font-size: 16px !important;
        flex-shrink: 0 !important;
    }

    /* Product Content - Mobile: Stack Vertically */
    #section-products .flex.items-start {
        flex-direction: column !important;
        /* gap: 1.5rem !important; */
    }

    #section-products .w-\[450px\] {
        width: 100% !important;
    }

    #product-media {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 551 / 402 !important;
    }

    /* Product Details - Mobile: Stack Vertically with Container */
    #section-product-details .flex.items-center.justify-between {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 32px !important;
        padding: 40px 28px !important;
        align-self: stretch !important;
        background-color: #f3f4f6 !important;
        border-radius: 12px !important;
    }

    /* Text area - Always appear first */
    #section-product-details .w-\[550px\] {
        width: 100% !important;
        order: 1 !important;
    }

    /* Image area - Always appear second, Square ratio in mobile */
    #section-product-details .w-\[633px\] {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 1 / 1 !important;
        order: 2 !important;
    }

    #section-product-details h3 {
        font-size: 20px !important;
    }

    #section-product-details .text-lg,
    #section-product-details p {
        font-size: 14px !important;
        line-height: 1.6 !important;
    }

    #section-product-details .gap-\[100px\] {
        gap: 40px !important;
    }

    /* Floating Buttons - Mobile */
    .floating-buttons {
        width: 328px !important;
        padding: 12px 16px !important;
        gap: 8px !important;
        bottom: 20px !important;
    }

    .floating-btn {
        padding: 10px !important;
    }

    .floating-btn-text {
        font-size: 16px !important;
        height: 32px !important;
    }

    /* Footer - Mobile: Stack vertically */
    #footer-main .flex.gap-4 {
        flex-direction: column !important;
        gap: 24px !important;
    }

    /* Footer Bottom - Mobile: Stack vertically and center align */
    #footer-main .flex.items-center.justify-between {
        flex-direction: column !important;
        align-items: center !important;
        gap: 12px !important;
    }

    /* Navigation - Mobile */
    .nav-mobile-toggle {
        display: block !important;
    }

    .nav-menu {
        position: fixed !important;
        top: 0 !important;
        right: -100% !important;
        width: 80% !important;
        max-width: 320px !important;
        height: 100vh !important;
        background: white !important;
        flex-direction: column !important;
        padding: 80px 20px 20px 20px !important;
        gap: 24px !important;
        align-items: flex-start !important;
        transition: right 0.3s ease, opacity 0.3s ease, visibility 0.3s ease !important;
        box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1) !important;
        z-index: 1000 !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }

    .nav-menu.active {
        right: 0 !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .nav-link {
        font-size: 16px !important;
        padding: 12px 0 !important;
        width: 100% !important;
    }

    /* Mobile Menu Close Button */
    .nav-menu::before {
        /* content: '\u00D7'; */
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 32px;
        color: #14151a;
        cursor: pointer;
        z-index: 1001;
    }

    /* Inquiry Modals - Mobile */
    .inquiry-modal-content {
        width: 90% !important;
        max-width: 90% !important;
        padding: 5% !important;
        max-height: 85vh !important;
    }

    .inquiry-modal-title {
        font-size: 20px !important;
        margin-bottom: 6px !important;
    }

    .inquiry-modal-subtitle {
        font-size: 13px !important;
        padding-bottom: 16px !important;
    }

    .inquiry-form {
        margin-top: 16px !important;
        gap: 16px !important;
    }

    .inquiry-form-label {
        font-size: 13px !important;
        margin-bottom: 6px !important;
    }

    .inquiry-form-input,
    .inquiry-form-textarea {
        font-size: 14px !important;
        padding: 12px 14px !important;
    }

    .custom-select-trigger {
        font-size: 14px !important;
        padding: 12px 14px !important;
    }

    .custom-select-trigger svg {
        width: 10px !important;
        height: 6px !important;
    }

    .custom-select-options li {
        font-size: 13px !important;
        padding: 10px 14px !important;
    }

    .inquiry-checkbox-item {
        font-size: 12px !important;
    }

    .inquiry-submit-btn {
        font-size: 15px !important;
        padding: 14px !important;
    }

    /* Terms Modals - Mobile */
    .terms-modal-content {
        width: 90% !important;
        max-width: 90% !important;
        padding: 5% !important;
        max-height: 85vh !important;
    }

    .terms-modal-title {
        font-size: 18px !important;
        padding-bottom: 16px !important;
    }

    .terms-modal-body {
        font-size: 13px !important;
        margin-top: 16px !important;
    }

    .terms-modal-body h3 {
        font-size: 14px !important;
        margin-top: 16px !important;
    }

    .terms-modal-buttons {
        gap: 10px !important;
    }

    .terms-agree-btn,
    .terms-disagree-btn {
        font-size: 15px !important;
        padding: 14px !important;
    }

    /* Floating Buttons - Mobile */
    .floating-buttons {
        width: calc(100% - 32px) !important;
        max-width: calc(100% - 32px) !important;
        padding: 12px 16px !important;
        gap: 12px !important;
        bottom: 16px !important;
    }

    .floating-btn {
        padding: 10px 8px !important;
        font-size: 14px !important;
    }

    .floating-btn-text {
        font-size: 14px !important;
    }
}



</style>

}