/* ==========================================
   嗷喵狮 AOMIAOSHI - Apple Style Design
   ========================================== */

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

:root {
    --black: #1d1d1f;
    --gray-dark: #424245;
    --gray: #6e6e73;
    --gray-light: #86868b;
    --gray-bg: #f5f5f7;
    --white: #ffffff;
    --accent: #0071e3;
    --accent-hover: #0077ed;
    --orange: #f56300;
    --nav-height: 48px;
    --section-padding: 120px;
    --max-width: 1200px;
    --radius: 20px;
    --transition: 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--black);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

/* -- 导航栏 -- */
.global-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    z-index: 1000;
    overflow: visible;
    transition: background var(--transition);
}

.global-nav.scrolled {
    background: rgba(255, 255, 255, 0.92);
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo-img {
    height: 36px;
    width: auto;
    object-fit: contain;
    transition: transform var(--transition);
}

.nav-logo:hover .nav-logo-img {
    transform: scale(1.05) rotate(-3deg);
}

.logo-text {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--gray-dark);
    -webkit-text-fill-color: var(--gray-dark);
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-size: 13px;
    font-weight: 400;
    color: var(--gray-dark);
    transition: color var(--transition);
    letter-spacing: 0.02em;
}

.nav-links a:hover {
    color: var(--black);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    width: 20px;
    height: 1.5px;
    background: var(--black);
    transition: var(--transition);
}

/* -- 用户头像下拉 -- */
.nav-user {
    position: relative;
    margin-left: 8px;
}

.user-avatar-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: var(--gray-bg);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition), box-shadow var(--transition);
    padding: 0;
    color: var(--gray);
}

.user-avatar-btn:hover {
    background: #e8e8ed;
    color: var(--black);
    box-shadow: 0 0 0 2px rgba(0, 113, 227, 0.3);
}

.avatar-icon {
    width: 22px;
    height: 22px;
}

.user-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 6px;
    width: 220px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-radius: 14px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.06);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px) scale(0.96);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    z-index: 9999;
    overflow: hidden;
}

.user-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.dropdown-header {
    padding: 16px 18px 12px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.dropdown-greeting {
    font-size: 15px;
    font-weight: 600;
    color: var(--black);
}

.dropdown-hint {
    font-size: 12px;
    color: var(--gray-light);
}

.dropdown-divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.06);
    margin: 0 12px;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 18px;
    font-size: 14px;
    color: var(--gray-dark);
    transition: background var(--transition);
}

.dropdown-item:hover {
    background: rgba(0, 0, 0, 0.04);
    color: var(--black);
}

.dropdown-icon {
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.dropdown-login {
    color: var(--accent);
    font-weight: 500;
}

.dropdown-login:hover {
    background: rgba(0, 113, 227, 0.06);
    color: var(--accent-hover);
}

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

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

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }

/* -- Hero Logo -- */
.hero-logo {
    margin-bottom: 24px;
}

.hero-logo-img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    animation: bounceIn 1s ease;
    filter: drop-shadow(0 8px 24px rgba(245, 99, 0, 0.2));
}

@keyframes bounceIn {
    0% { transform: scale(0.3) rotate(-10deg); opacity: 0; }
    50% { transform: scale(1.05) rotate(3deg); opacity: 1; }
    70% { transform: scale(0.95) rotate(-1deg); }
    100% { transform: scale(1) rotate(0); }
}

/* -- 品牌故事 Logo -- */
.story-logo-img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 24px;
    filter: drop-shadow(0 4px 16px rgba(245, 99, 0, 0.15));
}

/* -- 页脚 Logo -- */
.footer-logo {
    margin-bottom: 16px;
}

.footer-logo-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    margin: 0 auto;
    opacity: 0.7;
    transition: opacity var(--transition);
}

.footer-logo-img:hover {
    opacity: 1;
}

/* -- HERO 区域 -- */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 140px 24px 80px;
    background: linear-gradient(180deg, #fbfbfd 0%, #f5f5f7 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110vmin;
    height: 110vmin;
    background: url('/static/website/images/logo.png') no-repeat center center;
    background-size: contain;
    opacity: 0.09;
    pointer-events: none;
    z-index: 0;
}

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

.hero-headline {
    font-size: clamp(40px, 7vw, 72px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--black);
    margin-bottom: 24px;
}

.hero-sub {
    display: block;
    font-size: clamp(16px, 2.5vw, 24px);
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--orange), #ff8c42);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.hero-desc {
    font-size: clamp(16px, 2vw, 21px);
    color: var(--gray);
    font-weight: 300;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 40px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* 积木动画 */
.hero-visual {
    margin-top: 60px;
    position: relative;
    width: 300px;
    height: 200px;
}

.hero-brick-animation {
    position: relative;
    width: 100%;
    height: 100%;
}

.brick {
    position: absolute;
    border-radius: 8px;
    animation: float 6s ease-in-out infinite;
}

.brick-1 {
    width: 80px; height: 40px;
    background: linear-gradient(135deg, #f56300, #ff8c42);
    top: 20%; left: 10%;
    animation-delay: 0s;
    box-shadow: 0 8px 30px rgba(245, 99, 0, 0.3);
}

.brick-2 {
    width: 60px; height: 30px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    top: 40%; left: 55%;
    animation-delay: -1s;
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.3);
}

.brick-3 {
    width: 50px; height: 25px;
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    top: 10%; left: 60%;
    animation-delay: -2s;
    box-shadow: 0 8px 30px rgba(79, 172, 254, 0.3);
}

.brick-4 {
    width: 70px; height: 35px;
    background: linear-gradient(135deg, #f093fb, #f5576c);
    top: 65%; left: 25%;
    animation-delay: -3s;
    box-shadow: 0 8px 30px rgba(245, 87, 108, 0.3);
}

.brick-5 {
    width: 45px; height: 22px;
    background: linear-gradient(135deg, #a18cd1, #fbc2eb);
    top: 55%; left: 70%;
    animation-delay: -4s;
    box-shadow: 0 8px 30px rgba(161, 140, 209, 0.3);
}

.brick-6 {
    width: 55px; height: 28px;
    background: linear-gradient(135deg, #ffecd2, #fcb69f);
    top: 75%; left: 5%;
    animation-delay: -5s;
    box-shadow: 0 8px 30px rgba(252, 182, 159, 0.3);
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-15px) rotate(3deg); }
    50% { transform: translateY(-8px) rotate(-2deg); }
    75% { transform: translateY(-20px) rotate(1deg); }
}

/* -- 按钮样式 -- */
.btn-primary {
    display: inline-block;
    padding: 12px 28px;
    background: var(--accent);
    color: var(--white);
    font-size: 15px;
    font-weight: 500;
    border-radius: 980px;
    border: none;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
    letter-spacing: 0.02em;
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: scale(1.02);
}

.btn-secondary {
    display: inline-block;
    padding: 12px 28px;
    background: transparent;
    color: var(--accent);
    font-size: 15px;
    font-weight: 500;
    border-radius: 980px;
    border: 1.5px solid var(--accent);
    cursor: pointer;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: var(--accent);
    color: var(--white);
}

.btn-text {
    color: var(--accent);
    font-size: 16px;
    font-weight: 500;
    transition: var(--transition);
}

.btn-text:hover {
    text-decoration: underline;
}

.btn-full {
    width: 100%;
    text-align: center;
}

/* -- 数据高亮条 -- */
.highlight-bar {
    background: var(--black);
    padding: 48px 24px;
}

.highlight-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 32px;
}

.highlight-item {
    text-align: center;
    color: var(--white);
}

.highlight-number {
    font-size: 48px;
    font-weight: 900;
    letter-spacing: -0.02em;
    display: inline;
}

.highlight-suffix {
    font-size: 24px;
    font-weight: 500;
    opacity: 0.7;
}

.highlight-label {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 4px;
    font-weight: 300;
}

/* -- 通用 Section -- */
.section-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-overline {
    font-size: 14px;
    font-weight: 500;
    color: var(--orange);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--black);
}

/* -- 产品区域 -- */
.products-section {
    padding: var(--section-padding) 0;
}

/* 旗舰产品 */
.product-flagship {
    background: var(--gray-bg);
    border-radius: var(--radius);
    display: flex;
    overflow: hidden;
    margin-bottom: 48px;
    min-height: 500px;
}

.flagship-content {
    flex: 1;
    padding: 64px 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-tag {
    display: inline-block;
    padding: 4px 14px;
    background: var(--orange);
    color: white;
    font-size: 12px;
    font-weight: 500;
    border-radius: 980px;
    width: fit-content;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.flagship-name {
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.flagship-desc {
    font-size: 17px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 32px;
    font-weight: 300;
}

.flagship-specs {
    display: flex;
    gap: 40px;
    margin-bottom: 32px;
}

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

.spec-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--black);
}

.spec-label {
    font-size: 13px;
    color: var(--gray-light);
    margin-top: 2px;
}

.flagship-price {
    display: flex;
    align-items: center;
    gap: 24px;
}

.flagship-price .price {
    font-size: 32px;
    font-weight: 700;
    color: var(--orange);
}

.flagship-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ffecd2, #fcb69f);
    min-height: 400px;
}

.flagship-placeholder, .card-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 240px;
}

.placeholder-icon {
    font-size: 80px;
    margin-bottom: 12px;
    filter: drop-shadow(0 4px 20px rgba(0,0,0,0.1));
}

.flagship-placeholder span {
    font-size: 16px;
    color: rgba(0,0,0,0.4);
    font-weight: 500;
}

/* 产品网格 */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
    border: 1px solid rgba(0,0,0,0.06);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.card-image {
    overflow: hidden;
}

.card-placeholder {
    aspect-ratio: 4/3;
    border-radius: 0;
}

.card-placeholder .placeholder-icon {
    font-size: 56px;
}

.card-info {
    padding: 24px;
}

.card-series {
    font-size: 12px;
    font-weight: 500;
    color: var(--gray-light);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.card-name {
    font-size: 20px;
    font-weight: 700;
    margin: 8px 0;
    letter-spacing: -0.01em;
}

.card-particles {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 16px;
}

.card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-price {
    font-size: 22px;
    font-weight: 700;
    color: var(--orange);
}

.card-btn {
    font-size: 14px;
    color: var(--accent);
    font-weight: 500;
    transition: var(--transition);
}

.card-btn:hover {
    text-decoration: underline;
}

.section-cta {
    text-align: center;
    margin-top: 48px;
}

/* -- 特色工艺 -- */
.features-section {
    padding: var(--section-padding) 0;
    background: var(--gray-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.feature-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px 32px;
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition);
}

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

.feature-icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--gray-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.feature-icon {
    font-size: 32px;
}

.feature-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-desc {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.7;
    font-weight: 300;
}

/* -- 沉浸式横幅 -- */
.immersive-banner {
    position: relative;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #1d1d1f 0%, #2c2c2e 50%, #1d1d1f 100%);
    overflow: hidden;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(245, 99, 0, 0.15), transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(102, 126, 234, 0.15), transparent 50%);
}

.banner-content {
    position: relative;
    z-index: 1;
    padding: 0 24px;
}

.banner-content h2 {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 900;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.banner-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
}

/* -- 品牌故事 -- */
.story-section {
    padding: var(--section-padding) 0;
}

.story-layout {
    display: flex;
    gap: 80px;
    align-items: center;
}

.story-content {
    flex: 1.2;
}

.story-text {
    margin: 32px 0;
}

.story-text p {
    font-size: 17px;
    color: var(--gray-dark);
    line-height: 1.9;
    margin-bottom: 16px;
    font-weight: 300;
}

.story-text strong {
    font-weight: 600;
    color: var(--black);
}

.story-visual {
    flex: 0.8;
}

.story-card {
    background: linear-gradient(135deg, #fff5eb, #ffecd2);
    border-radius: var(--radius);
    padding: 60px 40px;
    text-align: center;
}

.story-icon {
    font-size: 80px;
    margin-bottom: 24px;
}

.story-quote {
    font-size: 24px;
    font-weight: 700;
    color: var(--orange);
    margin-bottom: 8px;
}

.story-attribution {
    font-size: 14px;
    color: var(--gray);
    font-style: italic;
}

/* -- 系列导航 -- */
.series-section {
    padding: var(--section-padding) 0;
    background: var(--gray-bg);
}

.series-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

.series-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px 24px;
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition);
    border: 2px solid transparent;
}

.series-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--accent, #0071e3);
}

.series-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.series-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
}

.series-card p {
    font-size: 14px;
    color: var(--gray);
    font-weight: 300;
}

/* -- 联系我们 -- */
.contact-section {
    padding: var(--section-padding) 0;
}

.contact-layout {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-items {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-icon {
    font-size: 28px;
    width: 56px;
    height: 56px;
    background: var(--gray-bg);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-label {
    font-size: 13px;
    color: var(--gray-light);
    margin-bottom: 2px;
}

.contact-value {
    font-size: 16px;
    font-weight: 500;
}

.contact-form-wrap {
    flex: 1;
    max-width: 480px;
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 14px 18px;
    border: 1.5px solid #e0e0e0;
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    background: var(--white);
    transition: border-color var(--transition);
    color: var(--black);
    outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--accent);
}

.contact-form textarea {
    resize: vertical;
}

/* -- 页脚 -- */
.site-footer {
    background: var(--gray-bg);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding: 48px 0 24px;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 32px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--black);
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 8px;
}

.footer-col a {
    font-size: 13px;
    color: var(--gray);
    transition: color var(--transition);
}

.footer-col a:hover {
    color: var(--black);
}

.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--gray-light);
    margin-bottom: 4px;
}

.footer-legal a {
    color: var(--gray);
    transition: color var(--transition);
}

.footer-legal a:hover {
    color: var(--black);
}

.footer-legal .sep {
    margin: 0 8px;
    color: var(--gray-light);
}

/* -- 响应式 -- */
@media (max-width: 768px) {
    :root {
        --section-padding: 80px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: var(--nav-height);
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 24px;
        gap: 20px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .product-flagship {
        flex-direction: column;
    }

    .flagship-content {
        padding: 40px 28px;
    }

    .flagship-specs {
        gap: 24px;
    }

    .story-layout {
        flex-direction: column;
        gap: 48px;
    }

    .contact-layout {
        flex-direction: column;
        gap: 48px;
    }

    .contact-form-wrap {
        max-width: 100%;
        width: 100%;
    }

    .highlight-container {
        justify-content: center;
    }

    .highlight-number {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 36px;
    }

    .flagship-name {
        font-size: 28px;
    }

    .flagship-specs {
        flex-wrap: wrap;
    }

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