@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;700;900&display=swap');

:root {
    --primary-color: #ff5733;
    --light-bg-main: #fffcf8;
    --light-bg-about: #fffbf8;
    --text-color: #333;
    --sub-text-color: #666;
    --border-color: #fce8d7;
    --light-border: #f0f0f0;
    --about-section-bg: #fff8f2;
    --box-bg: #ffffff;
    --hover-shadow-color: rgba(255, 87, 51, 0.4);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Noto Sans KR', sans-serif;
    line-height: 1.5;
}

body {
    background-color: white;
    min-height: 100vh;
    color: var(--text-color);
    word-break: keep-all;
    display: flex;
    flex-direction: column;
}


main {
    flex-grow: 1;
}

@keyframes pageFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fade-in-on-load {
    opacity: 0;
    animation: pageFadeIn 0.7s ease-out forwards;
}

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

.container-about {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-product {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-technology {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-contact {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-highlight {
    color: var(--primary-color);
}

.navbar {
    background-color: white;
    border-bottom: 1px solid #eee;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 1.5em;
    font-weight: 700;
    color: var(--text-color);
}

.logo a { text-decoration: none; }
.logo a:link, .logo a:visited, .logo a:hover, .logo a:active {
    color: var(--text-color);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--sub-text-color);
    font-weight: 500;
    padding: 5px 0;
    position: relative;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

#page-main {
    background: white;
    animation: none;
    opacity: 1;
}

.main-header {
    text-align: center;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-image: url('/img/main_page_background.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

.main-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

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

.main-header .container > * {
    opacity: 0;
    animation: contentFadeUp 0.7s ease-out forwards;
}

.main-header .support-tag { animation-delay: 0.2s; }
.main-header .main-title { animation-delay: 0.4s; }
.main-header .main-subtitle { animation-delay: 0.6s; }
.main-header .button-group { animation-delay: 0.7s; }

.support-tag span {
    margin-right: 5px;
}

.main-title {
    font-size: 3em;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.2;
}

.main-title span {
    color: #ffffff;
}

.main-title span:first-child {
    color: var(--primary-color);
}

.main-subtitle {
    font-size: 1.1em;
    color: #f0f0f0;
    margin-top: 30px;
    font-weight: 400;
}

.button-group {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn {
    padding: 12px 25px;
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    font-size: 1em;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

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

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.btn-secondary:hover {
    border-color: var(--primary-color);
    background-color: var(--primary-color);
}

.stats-section {
    padding: 100px 0;
    background-color: var(--light-bg-main);
    opacity: 0;
    animation: contentFadeUp 0.7s ease-out 0.9s forwards;
}

.stats-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.stat-box {
    flex: 1;
    padding: 40px 20px;
    background-color: white;
    border-radius: 10px;
    text-align: center;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.stat-number {
    font-size: 3em;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-description {
    font-size: 1em;
    font-weight: 500;
    color: var(--text-color);
}

.stat-subtext {
    font-size: 0.8em;
    color: var(--sub-text-color);
    margin-top: 5px;
}

.mission-vision-wrapper {
    height: 300vh;
    position: relative;
    background-color: var(--about-section-bg);
    padding: 80px 0;
}

.mission-vision-sticky-container {
    position: sticky;
    top: 80px;
    height: calc(100vh - 120px);
    max-height: 800px;
    min-height: 600px;
    padding: 40px;
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    overflow: hidden;
}

.mission-vision-header {
    text-align: center;
    margin-bottom: 30px;
    flex-shrink: 0;
}

.mission-vision-header h2 {
    font-size: 2.2em;
    font-weight: 900;
    margin-bottom: 15px;
    line-height: 1.3;
}

.mission-vision-header p {
    font-size: 1.1em;
    color: var(--sub-text-color);
    max-width: 700px;
    margin: 0 auto;
}

.mission-vision-tabs {
    display: flex;
    gap: 10px;
    background-color: #f5f5f5;
    border-radius: 12px;
    padding: 8px;
    margin-bottom: 30px;
    flex-shrink: 0;
}

.tab-button {
    flex: 1;
    padding: 15px;
    border: none;
    background-color: transparent;
    border-radius: 8px;
    font-size: 1em;
    font-weight: 700;
    color: var(--sub-text-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-button.active {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 5px 15px rgba(255, 87, 51, 0.3);
}

.mission-vision-panels {
    position: relative;
    flex-grow: 1;
}

.mission-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 20px;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
    visibility: hidden;
}

.mission-panel.active {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.panel-text {
    padding-right: 20px;
}

.panel-text h3 {
    font-size: 1.8em;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 20px;
}

.panel-text p {
    font-size: 1.1em;
    line-height: 1.7;
    color: var(--sub-text-color);
}

.panel-text ul {
    list-style: none;
    padding-left: 0;
}

.panel-text li {
    font-size: 1.2em;
    color: var(--text-color);
    margin-bottom: 20px;
    font-weight: 500;
    position: relative;
    padding-left: 20px;
}

.panel-text li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
    font-size: 1.5em;
    line-height: 1.2em;
}

.panel-visual {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-placeholder {
    width: 100%;
    height: 90%;
    max-height: 350px;
    background: linear-gradient(135deg, var(--light-bg-about) 0%, #fdece6 100%);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px dashed var(--border-color);
}

.visual-placeholder p {
    font-size: 1.2em;
    font-weight: 600;
    color: #b0b0b0;
}

.mission-patents {
    background-color: white;
    padding: 80px 0;
    overflow: hidden;
    border-top: 1px solid var(--light-border);
}

.mission-patents h3 {
    text-align: center;
    font-size: 2.2em;
    font-weight: 900;
    margin-bottom: 50px;
}

.patent-carousel-wrapper {
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.patent-carousel-track {
    display: flex;
    width: calc(260px * 22);
    animation: scroll-patents 80s linear infinite;
}

.patent-item {
    width: 260px;
    padding: 0 10px;
    flex-shrink: 0;
}

.patent-placeholder {
    width: 100%;
    height: 350px;
    background-color: #f0f0f0;
    border: 1px solid var(--light-border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
    font-weight: 500;
}

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

.mission-report {
    text-align: center;
    background-color: var(--light-bg-about);
    padding: 80px 0;
}

.mission-report h3 {
    font-size: 2.2em;
    font-weight: 900;
    margin-bottom: 20px;
}

.mission-report p {
    font-size: 1.1em;
    color: var(--sub-text-color);
    margin-bottom: 30px;
}

.report-placeholder {
    max-width: 600px;
    height: 400px;
    margin: 0 auto;
    background-color: #e0e0e0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    border: 1px solid #ccc;
}

#page-about {
    background-color: white;
}

.origin-story-section {
    position: relative;
    height: 66.67vh;
    color: white;
    text-align: center;
    margin-bottom: 80px;
    overflow: hidden;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;

    background-image: url('/img/worker_in_kitchen.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
}

.origin-story-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

.origin-story-section h2 {
    font-size: 2em;
    font-style: italic;
    font-weight: 400;
    margin-bottom: 25px;
    line-height: 1.5;
    max-width: 700px;
    padding: 0 20px;
}

.origin-story-section p {
    font-size: 1.1em;
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 15px;
    max-width: 600px;
    padding: 0 20px;
}

.origin-story-section p.source {
    font-weight: 700;
    font-size: 1.2em;
    margin-bottom: 25px;
    color: #f0f0f0;
}

.origin-story-section p.origin-signature {
    font-size: 1.1em;
    font-style: italic;
    font-weight: 500;
    color: #e0e0e0;
    text-align: right;
    margin-top: 30px;
    max-width: 600px;
    padding: 0 20px;
    width: 100%;
}

.page-header {
    text-align: center;
    padding: 50px 0 80px;
}

.tag-small {
    display: inline-block;
    background-color: #ffe0d5;
    color: var(--primary-color);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85em;
    margin-bottom: 25px;
    font-weight: 500;
}

.page-title {
    font-size: 2.5em;
    font-weight: 900;
    color: var(--text-color);
    line-height: 1.3;
}

.page-description {
    font-size: 1em;
    color: var(--sub-text-color);
    margin-top: 20px;
    font-weight: 400;
    line-height: 1.6;
}

.problem-intro {
    text-align: center;
    padding: 40px 0 50px;
}

.problem-intro h2 {
    font-size: 1.8em;
    font-weight: 700;
    margin-bottom: 10px;
}

.problem-intro p {
    font-size: 1em;
    color: var(--sub-text-color);
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    padding-bottom: 80px;
}

.problem-box {
    background-color: var(--box-bg);
    border: 1px solid var(--light-border);
    border-radius: 10px;
    padding: 30px;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.05),
    0px 0px 0px 0px rgba(255, 87, 51, 0);
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.problem-box:hover {
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.08),
    0px 0px 0px 4px var(--hover-shadow-color);
    transform: translateY(-3px);
}


.box-icon {
    font-size: 2em;
    color: var(--primary-color);
    margin-bottom: 15px;
    background-color: #ffe0d5;
    display: inline-block;
    padding: 10px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.box-title {
    font-size: 1.15em;
    font-weight: 700;
    margin-bottom: 8px;
}

.box-description {
    font-size: 0.9em;
    color: var(--sub-text-color);
    line-height: 1.5;
}

.highlight-section {
    background-color: var(--about-section-bg);
    text-align: center;
    padding: 100px 20px;
}

.highlight-title {
    font-size: 1.8em;
    font-weight: 700;
    margin-bottom: 15px;
}

.highlight-description {
    font-size: 1em;
    color: var(--sub-text-color);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

#page-products {
    background-color: white;
    padding: 50px 0;
}

blockquote.product-section-subtitle {
    font-size: 1.1em;
    font-style: italic;
    color: var(--text-color);
    margin: 30px auto 50px;
    padding: 20px 30px 20px 60px;
    text-align: left;
    border-left: 8px solid var(--primary-color);
    background-color: var(--light-bg-about);
    position: relative;
    max-width: 800px;
}

blockquote.product-section-subtitle::before {
    content: '“';
    font-family: Georgia, serif;
    font-size: 5em;
    color: var(--primary-color);
    opacity: 0.2;
    position: absolute;
    left: 15px;
    top: 0px;
    line-height: 1;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.benefit-item {
    background-color: var(--light-bg-about);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid var(--light-border);
}

.benefit-item h3 {
    font-size: 1.2em;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.benefit-item p {
    font-size: 0.95em;
    color: var(--sub-text-color);
    line-height: 1.6;
    margin-bottom: 10px;
}

.benefit-item p strong {
    font-weight: 700;
    color: var(--text-color);
}

.product-sub-nav {
    display: flex;
    gap: 10px;
    margin-bottom: 40px;
    position: sticky;
    top: 61px;
    background-color: white;
    padding: 10px 0;
    z-index: 90;
    border-bottom: 1px solid var(--light-border);
}

.product-nav-link {
    flex: 1;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 5px;
    background-color: #f5f5f5;
    color: var(--sub-text-color);
    font-weight: 500;
    text-align: center;
    transition: all 0.3s;
}

.product-nav-link:hover {
    background-color: #eee;
}

.product-nav-link.active {
    background-color: var(--primary-color);
    color: white;
    font-weight: 700;
}

.product-detail-section {
    padding-top: 60px;
    margin-top: -60px;
    margin-bottom: 50px;
    border-bottom: 1px solid var(--light-border);
    padding-bottom: 30px;
}

.product-detail-section:last-child {
    border-bottom: none;
}


.product-detail-section h2 {
    font-size: 2em;
    font-weight: 900;
    margin-bottom: 30px;
    border-left: 5px solid var(--primary-color);
    padding-left: 10px;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
}

.product-detail-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-image-placeholder {
    width: 100%;
    height: 200px;
    background-color: #f0f0f0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
    font-weight: 500;
}

.product-specs {
    line-height: 1.7;
}

.product-specs dt {
    font-size: 1.1em;
    font-weight: 700;
    color: var(--text-color);
    margin-top: 20px;
    margin-bottom: 8px;
}

.product-specs dd {
    font-size: 0.95em;
    color: var(--sub-text-color);
    padding-left: 10px;
    margin-left: 0;
}

.product-specs dd ul {
    list-style: none;
    padding-left: 0;
}

.product-specs dd li {
    margin-bottom: 15px;
}

.product-specs dd li strong {
    font-weight: 700;
    color: var(--text-color);
    display: block;
    margin-bottom: 3px;
}


#page-technology {
    background-color: var(--light-bg-about);
    padding: 80px 0 100px;
}

.tech-header {
    text-align: center;
    padding: 20px 0 60px;
}

.tech-tag {
    background-color: #ffe0d5;
    color: var(--primary-color);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85em;
    margin-bottom: 25px;
    font-weight: 500;
}

.tech-title {
    font-size: 2.2em;
    font-weight: 900;
    color: var(--text-color);
    margin-bottom: 10px;
}

.tech-description {
    font-size: 1em;
    color: var(--sub-text-color);
    line-height: 1.6;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    padding: 0 50px;
}

.tech-box {
    text-align: left;
    min-height: auto;
    padding: 35px 25px;
}

.tech-icon {
    background-color: #ffe0d5;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.tech-name {
    font-size: 1.15em;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-color);
}

.tech-description-detail {
    font-size: 0.9em;
    color: var(--sub-text-color);
    line-height: 1.5;
}

.half-price-model {
    padding: 50px 0 100px;
    background-color: white;
}

.model-header {
    text-align: center;
    padding: 30px 0 60px;
}

.model-title {
    font-size: 2.2em;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 10px;
}

.model-description {
    font-size: 1em;
    color: var(--sub-text-color);
    line-height: 1.6;
}

.model-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 900px;
    margin: 0 auto 80px;
}

.model-stat-box {
    background-color: var(--light-bg-about);
    padding: 40px 20px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid var(--light-border);
}

.model-icon {
    font-size: 2em;
    color: var(--primary-color);
    margin-bottom: 10px;
    background-color: #ffe0d5;
    display: inline-block;
    padding: 10px;
    border-radius: 50%;
}

.model-number {
    font-size: 2.5em;
    font-weight: 900;
    margin-bottom: 5px;
}

.model-desc {
    font-size: 1em;
    font-weight: 700;
    color: var(--text-color);
}

.model-subtext {
    font-size: 0.85em;
    color: var(--sub-text-color);
    margin-top: 5px;
}

.model-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto 80px;
}

.detail-item {
    background-color: white;
    border: 1px solid var(--light-border);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.detail-icon {
    font-size: 1.5em;
    color: var(--primary-color);
    background-color: #ffe0d5;
    padding: 8px;
    border-radius: 50%;
    margin-right: 15px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.detail-text {
    font-size: 0.95em;
    color: var(--sub-text-color);
    line-height: 1.4;
}

.detail-text strong {
    font-weight: 700;
    color: var(--text-color);
}

.model-cta {
    background-color: var(--about-section-bg);
    text-align: center;
    padding: 80px 20px;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 10px;
}

.model-cta-icon {
    font-size: 3em;
    line-height: 1;
    margin-bottom: 20px;
}

.model-cta-title {
    font-size: 2em;
    font-weight: 700;
    margin-bottom: 15px;
}

.model-cta-subtitle {
    font-size: 1em;
    color: var(--sub-text-color);
    margin-bottom: 30px;
}

.btn-cta {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.3s;
}

.cta-note {
    font-size: 0.9em;
    color: var(--sub-text-color);
    margin-top: 15px;
}

#page-contact {
    background-color: var(--light-bg-about);
    padding: 80px 0 100px;
}

.contact-header {
    text-align: center;
    padding: 20px 0 60px;
}

.contact-tag {
    background-color: #ffe0d5;
    color: var(--primary-color);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85em;
    margin-bottom: 25px;
    font-weight: 500;
}

.contact-title {
    font-size: 2.2em;
    font-weight: 900;
    color: var(--text-color);
    margin-bottom: 10px;
}

.contact-description {
    font-size: 1em;
    color: var(--sub-text-color);
    line-height: 1.6;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: flex-start;
}

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

.info-box {
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    border: 1px solid var(--light-border);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.info-icon {
    font-size: 1.5em;
    color: var(--primary-color);
    background-color: #ffe0d5;
    padding: 10px;
    border-radius: 50%;
    margin-right: 15px;
}

.info-label {
    font-size: 0.9em;
    color: var(--sub-text-color);
}

.info-value {
    font-size: 1em;
    font-weight: 700;
    color: var(--text-color);
}

.contact-form-wrapper {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid var(--light-border);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

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

.form-group label {
    display: none;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
    color: var(--text-color);
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    padding: 15px 0;
    margin-top: 10px;
    font-size: 1.1em;
}

.site-footer {
    background-color: #222;
    color: #aaa;
    padding: 60px 0 40px;
    margin-top: auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #444;
}

.footer-logo {
    font-size: 1.8em;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.footer-info {
    text-align: right;
}

.footer-info p {
    font-size: 0.9em;
    line-height: 1.7;
    margin-bottom: 5px;
    color: #bbb;
}

.footer-copyright {
    text-align: center;
    font-size: 0.85em;
    color: #888;
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .model-stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 50px;
    }

    .model-detail-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 50px;
    }

    .model-cta {
        padding: 50px 20px;
    }

    .model-cta-title {
        font-size: 1.8em;
    }

    .btn-cta {
        width: 100%;
        padding: 15px 0;
    }

    .mission-vision-wrapper {
        height: auto;
        padding: 40px 0;
    }

    .mission-vision-sticky-container {
        position: static;
        height: auto;
        min-height: auto;
        padding: 20px;
    }

    .mission-vision-header h2 {
        font-size: 1.8em;
    }
    .mission-vision-header p {
        font-size: 1em;
    }

    .mission-panel {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 10px;
        position: static;
        opacity: 1;
        transform: none;
        visibility: visible;
        display: none;
    }

    .mission-panel.active {
        display: grid;
    }

    .panel-visual {
        order: -1;
        height: 200px;
    }

    .visual-placeholder {
        height: 100%;
    }

    .panel-text h3 {
        font-size: 1.5em;
    }
    .panel-text p, .panel-text li {
        font-size: 1em;
    }

    .footer-content {
        flex-direction: column;
        gap: 25px;
        align-items: center;
    }

    .footer-info {
        text-align: center;
    }
}


@media (max-width: 1100px) {
    .tech-grid {
        grid-template-columns: 1fr 1fr;
        padding: 0 20px;
    }
}

@media (max-width: 992px) {
    .benefits-list {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 600px) {
    .tech-grid {
        grid-template-columns: 1fr;
    }

    .tech-header {
        padding: 20px 0 40px;
    }

    .tech-title {
        font-size: 1.8em;
    }
}

@media (max-width: 992px) {
    .product-grid {
        grid-template-columns: 1fr;
    }

    .summary-grid {
        flex-wrap: wrap;
    }

    .summary-item {
        flex: 0 0 45%;
        margin-bottom: 20px;
    }

    .product-detail-grid {
        grid-template-columns: 1fr;
    }

    .benefits-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .product-header {
        padding: 30px 0 50px;
    }

    .product-title {
        font-size: 1.8em;
    }

    .product-box {
        padding: 25px;
    }

    .summary-grid {
        flex-direction: column;
        gap: 30px;
    }

    .summary-item {
        flex: none;
        width: 100%;
    }

    .product-sub-nav {
        flex-direction: column;
        top: 105px;
    }
}

@media (max-width: 768px) {
    .review-grid {
        grid-template-columns: 1fr;
    }

    .review-section {
        padding: 60px 0;
    }
}


@media (max-width: 600px) {
    .review-title {
        font-size: 1.8em;
    }

    .review-cta {
        padding: 40px 20px;
    }

    .cta-title {
        font-size: 1.5em;
    }
}

@media (max-width: 992px) {
    .main-header {
        height: auto;
        padding: 100px 20px 80px;
    }

    .main-title {
        font-size: 2.5em;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 40px 0 60px;
    }

    .page-title {
        font-size: 2em;
    }

    .problem-grid {
        grid-template-columns: 1fr;
        padding-bottom: 50px;
    }

    .problem-box {
        min-height: auto;
    }

    .highlight-section {
        padding: 60px 20px;
    }

    .highlight-title {
        font-size: 1.5em;
    }
}


@media (max-width: 600px) {
    .main-header {
        height: auto;
        padding: 60px 20px 50px;
    }

    .main-title {
        font-size: 1.8em;
    }

    .main-subtitle {
        font-size: 1em;
        margin-top: 20px;
        padding: 0 10px;
    }

    .button-group {
        flex-direction: column;
        gap: 10px;
        padding: 0 20px;
    }

    .btn-secondary {
        color: var(--primary-color);
        border-color: #ccc;
        background-color: white;
    }

    .btn {
        width: 100%;
        padding: 15px 0;
    }

    .stats-grid {
        flex-direction: column;
        gap: 20px;
        padding: 0 20px;
    }

    .stats-section {
        padding: 60px 0;
    }

    .stat-box {
        padding: 30px 15px;
    }

    .stat-number {
        font-size: 2.5em;
    }

    .nav-container {
        flex-direction: column;
        gap: 10px;
    }

    .nav-links {
        gap: 15px;
        justify-content: center;
    }
}