/* ===================================
   CloudGround - Main Stylesheet
   =================================== */

/* --- CSS Variables --- */
:root {
    --color-primary: #F5A623;
    --color-primary-dark: #D4891A;
    --color-navy: #1B2A4A;
    --color-navy-light: #243557;
    --color-text: #2D3748;
    --color-text-light: #718096;
    --color-light-gray: #F8F9FA;
    --color-white: #FFFFFF;
    --color-border: #E2E8F0;
    --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;
    --header-height: 72px;
    --container-width: 1200px;
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: var(--font-family);
    font-size: 17px;
    line-height: 1.7;
    color: var(--color-text);
    background: var(--color-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* --- Container --- */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* --- Utility --- */
.text-center {
    text-align: center;
}

.required {
    color: #E53E3E;
}

/* --- Section --- */
.section {
    padding: 6rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all var(--transition);
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 166, 35, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-white);
}

.btn-full {
    width: 100%;
}

/* ===================================
   HEADER
   =================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0 0;
    transition: background var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
    background: rgba(27, 42, 74, 0.97);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

.logo img {
    height: 40px;
    width: auto;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    gap: 0.25rem;
}

.nav-link {
    display: block;
    padding: 0.5rem 1rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    border-radius: 6px;
    transition: all var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.1);
}

.nav-link--cta {
    color: var(--color-primary) !important;
    font-weight: 600;
}

.nav-link--cta:hover {
    background: rgba(245, 166, 35, 0.15) !important;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Language Toggle */
.lang-toggle {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.375rem 0.75rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    transition: all var(--transition);
}

.lang-toggle:hover {
    border-color: var(--color-primary);
}

.lang-current {
    color: var(--color-primary);
}

.lang-divider {
    opacity: 0.4;
}

.lang-other {
    opacity: 0.6;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-white);
    transition: all var(--transition);
    border-radius: 2px;
}

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

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

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

.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
}

.mobile-overlay.active {
    display: block;
}

/* ===================================
   HERO
   =================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0F1B33;
    overflow: hidden;
    padding-top: var(--header-height);
}

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

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 1.2s ease, transform 6s ease;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 27, 51, 0.55);
    z-index: 1;
}

.hero-content {
    position: relative;
    text-align: center;
    z-index: 2;
    padding: 4rem 1.5rem;
}

.hero-brand {
    font-size: 6rem;
    font-weight: 800;
    color: var(--color-primary);
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-white);
    line-height: 1.2;
    margin-bottom: 1.25rem;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: 1.375rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-badge {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.02em;
}

/* ===================================
   ABOUT
   =================================== */
.about {
    background: var(--color-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-text);
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-card {
    background: var(--color-light-gray);
    border-radius: 12px;
    padding: 1.75rem;
    text-align: center;
    transition: transform var(--transition);
}

.stat-card:hover {
    transform: translateY(-4px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-primary);
    display: inline;
    line-height: 1;
}

.stat-plus {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
}

.stat-label {
    display: block;
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin-top: 0.5rem;
    font-weight: 500;
}

/* ===================================
   SERVICES
   =================================== */
.services {
    background: var(--color-light-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: var(--color-white);
    border-radius: 12px;
    padding: 2.25rem;
    border-top: 3px solid transparent;
    transition: all var(--transition);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.service-card:hover {
    border-top-color: var(--color-primary);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.service-icon {
    color: var(--color-primary);
    margin-bottom: 1.25rem;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 0.75rem;
}

.service-desc {
    font-size: 0.9375rem;
    color: var(--color-text-light);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.service-target {
    display: inline-block;
    font-size: 0.8125rem;
    color: var(--color-primary-dark);
    background: rgba(245, 166, 35, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-weight: 500;
}

/* ===================================
   TEAM
   =================================== */
.team {
    background: var(--color-light-gray);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.team-card {
    background: var(--color-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: transform var(--transition);
}

.team-card:hover {
    transform: translateY(-4px);
}

.team-photo {
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

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

.team-photo-placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.team-info {
    padding: 1.75rem;
}

.team-name {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 0.25rem;
}

.team-role {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.team-edu,
.team-career {
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin-bottom: 0.375rem;
    line-height: 1.6;
}

.team-tags {
    margin-top: 1rem;
    font-size: 0.8125rem;
    color: var(--color-primary-dark);
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* ===================================
   PORTFOLIO
   =================================== */
.portfolio {
    background: var(--color-white);
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

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

.timeline-year {
    margin-bottom: 3rem;
}

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

.timeline-year-label {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-primary);
    width: 120px;
    text-align: right;
    padding-right: 2rem;
    margin-bottom: 1rem;
    position: relative;
}

.timeline-year-label::after {
    content: '';
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-primary);
    border: 3px solid var(--color-white);
    box-shadow: 0 0 0 2px var(--color-primary);
}

.timeline-items {
    padding-left: 145px;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.timeline-item {
    background: var(--color-light-gray);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-size: 0.9375rem;
    color: var(--color-text);
    position: relative;
    transition: all var(--transition);
    border-left: 3px solid transparent;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -28px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-border);
    transition: background var(--transition);
}

.timeline-item:hover {
    border-left-color: var(--color-primary);
    background: var(--color-white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.timeline-item:hover::before {
    background: var(--color-primary);
}

/* ===================================
   FAQ
   =================================== */
.faq {
    background: var(--color-light-gray);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background: var(--color-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-navy);
    text-align: left;
    transition: color var(--transition);
}

.faq-question:hover {
    color: var(--color-primary);
}

.faq-chevron {
    flex-shrink: 0;
    transition: transform var(--transition);
    color: var(--color-text-light);
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
    color: var(--color-primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-answer p {
    padding: 0 1.5rem 1.25rem;
    font-size: 0.9375rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

/* ===================================
   CONTACT
   =================================== */
.contact {
    background: var(--color-navy);
    color: var(--color-white);
}

.contact .section-title {
    color: var(--color-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.contact-company {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--color-white);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-details li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.contact-details li svg {
    flex-shrink: 0;
    color: var(--color-primary);
    margin-top: 0.125rem;
}

.contact-label {
    display: block;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.125rem;
}

.contact-details a {
    color: rgba(255, 255, 255, 0.9);
    transition: color var(--transition);
}

.contact-details a:hover {
    color: var(--color-primary);
}

.contact-bizno {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.5rem;
}

/* Contact Form */
.contact-form-wrap {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.375rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.9375rem;
    font-family: var(--font-family);
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    transition: all var(--transition);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-primary);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.15);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.5)' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-group select option {
    background: var(--color-navy);
    color: var(--color-white);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-checkbox {
    margin-bottom: 1.5rem;
}

.form-checkbox label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    accent-color: var(--color-primary);
}

.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
    border-color: #E53E3E;
}

/* Toast */
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    font-size: 0.9375rem;
    font-weight: 500;
    z-index: 9999;
    transform: translateY(120%);
    opacity: 0;
    transition: all 0.4s ease;
    max-width: 400px;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast.success {
    background: #48BB78;
    color: var(--color-white);
}

.toast.error {
    background: #E53E3E;
    color: var(--color-white);
}

/* ===================================
   FOOTER
   =================================== */
.site-footer {
    background: #0F1B33;
    padding: 2.5rem 0;
}

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

.footer-logo {
    margin-bottom: 1.25rem;
}

.footer-logo img {
    height: 32px;
    margin: 0 auto;
    opacity: 0.7;
}

.footer-info p {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 0.75rem;
}

.footer-links a {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.4);
    transition: color var(--transition);
}

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

.footer-copyright {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-copyright p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
}

/* ===================================
   FIELD VALIDATION ERRORS
   =================================== */
.field-error {
    display: block;
    font-size: 0.75rem;
    color: #E53E3E;
    margin-top: 0.375rem;
    line-height: 1.4;
}

/* ===================================
   CONFIRMATION OVERLAY
   =================================== */
.confirmation-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(4px);
}

.confirmation-overlay.show {
    opacity: 1;
}

.confirmation-card {
    background: var(--color-white);
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 560px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.confirmation-overlay.show .confirmation-card {
    transform: translateY(0);
}

.confirmation-icon {
    margin-bottom: 1.25rem;
}

.confirmation-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 0.5rem;
}

.confirmation-subtitle {
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

.confirmation-details {
    text-align: left;
    background: var(--color-light-gray);
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
}

.conf-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--color-border);
}

.conf-row:last-child {
    border-bottom: none;
}

.conf-row-full {
    flex-direction: column;
    gap: 0.375rem;
}

.conf-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-text-light);
    flex-shrink: 0;
    min-width: 80px;
}

.conf-value {
    font-size: 0.875rem;
    color: var(--color-text);
    text-align: right;
}

.conf-row-full .conf-value {
    text-align: left;
}

.conf-message {
    white-space: pre-wrap;
    line-height: 1.6;
    background: var(--color-white);
    padding: 0.75rem;
    border-radius: 8px;
    font-size: 0.8125rem;
}

.confirmation-btn {
    min-width: 160px;
}

@media (max-width: 767px) {
    .confirmation-card {
        padding: 1.75rem;
    }
}

/* ===================================
   ANIMATIONS
   =================================== */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ===================================
   RESPONSIVE
   =================================== */

/* Tablet */
@media (max-width: 1199px) {
    .about-grid {
        gap: 3rem;
    }

    .timeline::before {
        left: 100px;
    }

    .timeline-year-label {
        width: 100px;
        padding-right: 1.5rem;
        font-size: 1.25rem;
    }

    .timeline-items {
        padding-left: 125px;
    }
}

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

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/* Mobile */
@media (max-width: 767px) {
    :root {
        --header-height: 64px;
    }

    .section {
        padding: 4rem 0;
    }

    .section-title {
        font-size: 1.875rem;
        margin-bottom: 2rem;
    }

    /* Header Mobile */
    .hamburger {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -300px;
        width: 280px;
        height: 100vh;
        background: var(--color-navy);
        flex-direction: column;
        padding: 5rem 1.5rem 2rem;
        transition: right var(--transition);
        z-index: 999;
        overflow-y: auto;
    }

    .main-nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 0.25rem;
    }

    .nav-link {
        font-size: 1.0625rem;
        padding: 0.75rem 1rem;
    }

    /* Hero Mobile */
    .hero-brand {
        font-size: 3.5rem;
        margin-bottom: 0.75rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.0625rem;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }

    .hero-ctas .btn {
        width: 100%;
        max-width: 300px;
    }

    .hero-badge {
        font-size: 0.75rem;
    }

    /* About Mobile */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-stats {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    /* Team Mobile */
    .team-grid {
        grid-template-columns: 1fr;
    }

    /* Portfolio Mobile */
    .timeline::before {
        left: 0;
    }

    .timeline-year-label {
        width: auto;
        text-align: left;
        padding-right: 0;
        padding-left: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .timeline-year-label::after {
        left: -5px;
        right: auto;
    }

    .timeline-items {
        padding-left: 1.5rem;
    }

    .timeline-item::before {
        left: -21px;
    }

    .timeline-item {
        padding: 0.875rem 1rem;
        font-size: 0.875rem;
    }

    /* Form Mobile */
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-form-wrap {
        padding: 1.5rem;
    }

    /* Toast Mobile */
    .toast {
        left: 1rem;
        right: 1rem;
        max-width: none;
        bottom: 1rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .about-stats {
        grid-template-columns: 1fr;
    }

    .hero-brand {
        font-size: 2.75rem;
    }

    .hero-title {
        font-size: 1.75rem;
    }
}
