/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&family=Outfit:wght@400;700&display=swap');

:root {
    --primary-color: #040d1a;
    --accent-color: #002147;
    --bg-light: #f5f7fa;
    --text-dark: #333333;
    --text-light: #ffffff;
    --header-height: 80px;
    --max-width: 1600px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;
}

/* Background Text */
.bg-text-layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.bg-text-item {
    position: absolute;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 20vw;
    color: rgba(26, 35, 50, 0.03);
    -webkit-text-stroke: 1px rgba(26, 35, 50, 0.05);
    line-height: 1;
    white-space: nowrap;
}

.bg-text-item.item-1 {
    top: 20%;
    left: -5%;
}

.bg-text-item.item-2 {
    bottom: 10%;
    right: -5%;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: #fff;
}

h1,
h2,
h3,
h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

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

ul {
    list-style: none;
}

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

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

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: var(--accent-color);
    z-index: 2000;
}

section {
    padding: 160px 0;
    position: relative;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 36px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--text-light);
}

.btn-primary:hover {
    background-color: #357abd;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(74, 144, 226, 0.3);
}

.btn-outline {
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    background: transparent;
}

.btn-outline:hover {
    background-color: var(--accent-color);
    color: var(--text-light);
}

/* Stats Section */
.stats {
    background: var(--primary-color);
    color: white;
    padding: 60px 0;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.stats-num {
    display: block;
    font-size: 3.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 5px;
}

.stats-num::after {
    content: '+';
    font-size: 2rem;
    vertical-align: super;
}

.stats-label {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Showcase Section */
.showcase {
    background: white;
    max-width: 1400px;
    margin: 0 auto;
}

.showcase-grid {
    max-width: 100%;
    margin: 0;
}

.showcase-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding-bottom: 120px;
    max-width: 1000px;
    margin: 0 auto;
}

.showcase-img-container {
    width: 100%;
    position: relative;
    overflow: hidden;
    height: 500px;
    z-index: 1;
    border-radius: 4px;
}

.showcase-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.showcase-content {
    width: 90%;
    padding: 60px 80px;
    background: white;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
    margin-top: -60px;
    z-index: 10;
    position: relative;
    border-top: 5px solid var(--accent-color);
    text-align: center;
}

.showcase-item:nth-child(even) {
    flex-direction: column;
}

.showcase-item:nth-child(even) .showcase-content {
    margin-right: 0;
    margin-top: -60px;
}

.showcase-img-container:hover .showcase-img {
    transform: scale(1.05);
}

.showcase-label {
    position: absolute;
    top: 20px;
    padding: 5px 15px;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.label-before {
    background: #333;
    color: white;
    left: 20px;
}

.label-after {
    background: var(--accent-color);
    color: white;
    right: 20px;
}

/* Voice Section */
.voice {
    background: var(--bg-light);
}

.voice-grid {
    display: block;
    position: relative;
    min-height: 700px;
    padding-bottom: 50px;
    max-width: 1400px;
    margin: 0 auto;
}

.voice-card {
    background: white;
    padding: 60px 50px;
    position: absolute;
    border-left: 10px solid var(--accent-color);
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.1);
    width: 650px;
    max-width: 90%;
    z-index: 2;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.6s ease;
}

.voice-card:hover {
    transform: translateY(-20px) scale(1.02) !important;
    box-shadow: 0 60px 150px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.voice-card:nth-child(1) {
    top: 0;
    left: 0;
    z-index: 3;
}

.voice-card:nth-child(2) {
    top: 100px;
    left: 52%;
    z-index: 2;
}

.voice-card:nth-child(3) {
    top: 350px;
    left: 20%;
    z-index: 4;
}

.voice-rank {
    color: #f1c40f;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.voice-text {
    font-style: italic;
    color: #555;
    margin-bottom: 30px;
    position: relative;
}

.voice-text::before {
    content: '"';
    font-family: serif;
    font-size: 4rem;
    position: absolute;
    top: -20px;
    left: -20px;
    opacity: 0.1;
    color: var(--primary-color);
}

.voice-user {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--primary-color);
    text-align: right;
}

/* Header */
header {
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    isolation: isolate;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 65px;
    width: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1100;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

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

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.nav-links a {
    font-weight: 500;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.tel-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

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

/* Footer */
footer {
    background-color: #2c3e50;
    color: white;
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .logo-main {
    color: white;
}

.footer-brand p {
    margin-top: 15px;
    opacity: 0.8;
}

.footer-nav h4,
.footer-contact h4 {
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.footer-nav ul li {
    margin-bottom: 12px;
}

.footer-nav ul li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 10px;
    opacity: 0.8;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.6;
}

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

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

/* Hero Section */
.hero {
    height: 80vh;
    min-height: 600px;
    background: url('https://images.unsplash.com/photo-1520340356584-f9917d1eea6f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    color: white;
    margin-top: var(--header-height);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 35, 50, 0.8) 0%, rgba(26, 35, 50, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1000px;
    text-align: center;
    margin: 0 auto;
}

.hero h1 {
    font-size: 5rem;
    margin-bottom: 20px;
    letter-spacing: -2px;
    line-height: 1.1;
}

.hero-subtext {
    font-size: 1.6rem;
    margin-bottom: 40px;
    font-weight: 500;
    opacity: 0.9;
    border-left: 4px solid var(--accent-color);
    padding-left: 20px;
}

/* Common Section Elements */
.section-title {
    text-align: center;
    font-size: 4rem;
    margin-bottom: 100px;
    color: var(--primary-color);
    position: relative;
    letter-spacing: -2px;
}

.section-title::before {
    display: none;
}

.section-title::after {
    display: none;
}

/* Features */
.features {
    background-color: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: flex-start;
}

.feature-item {
    background: white;
    padding: 80px 50px;
    text-align: left;
    border-radius: 12px;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    z-index: 1;
}

.feature-item::before {
    position: absolute;
    top: -20px;
    right: -10px;
    font-size: 10rem;
    font-weight: 900;
    font-family: var(--font-heading);
    color: var(--primary-color);
    opacity: 0.03;
    z-index: -1;
    line-height: 1;
}

.feature-item:nth-child(1)::before {
    content: '01';
}

.feature-item:nth-child(2)::before {
    content: '02';
}

.feature-item:nth-child(3)::before {
    content: '03';
}

.feature-item:nth-child(2) {
    transform: translateY(40px);
}

.feature-item:hover {
    transform: perspective(1000px) translate3d(0, -15px, 20px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #ffffff 0%, #f9fbfd 100%);
    border-color: rgba(74, 144, 226, 0.2);
}

.feature-icon {
    margin-bottom: 35px;
    transition: transform 0.5s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
}

.feature-item:hover .feature-icon svg {
    stroke-width: 1.5;
}

.feature-item h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
    border-left: 4px solid var(--accent-color);
}

/* Recommend */
.recommend-grid {
    max-width: 800px;
    margin: 0 auto;
}

.check-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 40px;
}

.check-list li {
    position: relative;
    padding-left: 35px;
    font-size: 1.1rem;
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 1;
}

/* Menu Overview */
.menu-overview {
    background-color: var(--bg-light);
}

.menu-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.menu-column {
    background: white;
    padding: 60px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
}

.item-name {
    font-weight: 700;
    font-size: 1.2rem;
}

.item-price {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.menu-column:first-child {
    background: var(--primary-color);
    color: white;
}

.menu-column:first-child h3 {
    color: white;
}

.menu-column:first-child .item-name {
    color: white;
}

.menu-column:first-child .item-price {
    color: white;
}

.menu-column:first-child .menu-item p {
    color: rgba(255, 255, 255, 0.9);
}

.menu-column h3 {
    margin-bottom: 40px;
    font-size: 2rem;
    color: var(--primary-color);
    border-left: 5px solid var(--accent-color);
    padding-left: 20px;
    display: inline-block;
    align-self: flex-start;
}

.menu-item {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.item-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.option-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.option-list li span:last-child {
    color: var(--accent-color);
    font-weight: 700;
}

.center-btn {
    text-align: center;
}

/* Workflow */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.step-item {
    position: relative;
    padding: 40px 20px;
}

.step-num {
    font-size: 3rem;
    font-family: 'Outfit', sans-serif;
    color: var(--accent-color);
    opacity: 0.2;
    position: absolute;
    top: 0;
    left: 10px;
    font-weight: 800;
}

.step-item h3 {
    margin-bottom: 15px;
}

/* Support */
.support {
    background-color: var(--bg-light);
    text-align: center;
}

.section-description {
    max-width: 800px;
    margin: -40px auto 50px;
    font-size: 1.1rem;
}

.support-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.support-item {
    padding: 15px 30px;
    background: white;
    border-radius: 4px;
    font-weight: 700;
    min-width: 140px;
}

/* Owner */
.owner {
    text-align: center;
}

.owner-content {
    max-width: 800px;
    margin: 0 auto;
}

.owner h2 {
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.owner h3 {
    font-size: 2.22rem;
    margin-bottom: 20px;
}

.owner p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Final CTA */
.final-cta {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.final-cta p {
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.cta-buttons .btn {
    flex-direction: column;
    padding: 20px 40px;
    min-width: 280px;
}

.final-cta .btn-outline {
    border-color: white;
    color: white;
}

.final-cta .btn-outline:hover {
    background-color: white;
    color: var(--primary-color);
}

.cta-buttons small {
    display: block;
    font-size: 0.9rem;
    font-weight: 400;
    margin-top: 5px;
    opacity: 1;
}

/* Subpage Headers */
.page-header {
    background-color: var(--primary-color);
    color: white;
    padding: 120px 0 60px;
    text-align: center;
    margin-top: var(--header-height);
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.8;
}

/* Pricing Page Styles */
.pricing-main {
    background-color: var(--bg-light);
}

.pricing-card {
    background: white;
    padding: 40px;
    margin-bottom: 40px;
    border-radius: 4px;
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.pricing-card p {
    margin-bottom: 30px;
    color: #666;
}

.table-wrapper {
    overflow-x: auto;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
}

.pricing-table th,
.pricing-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.pricing-table th {
    background-color: #f9fbfd;
    font-weight: 700;
    color: var(--primary-color);
}

.pricing-table tr:last-child td {
    border-bottom: none;
}

/* Options */
.option-category {
    margin-bottom: 60px;
}

.option-category h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    padding-left: 15px;
    border-left: 4px solid var(--accent-color);
}

.option-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.option-grid li {
    background: #fdfdfd;
    padding: 25px;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
}

.option-grid .name {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.option-grid .price {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.option-grid .note {
    font-size: 0.9rem;
    color: #777;
}

/* Interior */
.pricing-interior {
    background-color: var(--bg-light);
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: -40px auto 50px;
    font-size: 1.1rem;
}

.interior-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.interior-item {
    background: white;
    padding: 30px;
    border-radius: 4px;
}

.interior-item h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.price-list {
    margin-bottom: 20px;
}

.price-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dotted #ccc;
}

.price-list li span:last-child {
    font-weight: 700;
    color: var(--accent-color);
}

.interior-item .note {
    font-size: 0.9rem;
    color: #666;
}

/* Precautions */
.precautions-box {
    background: #fff8f8;
    border: 1px solid #ffebeb;
    padding: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.precautions-box h3 {
    margin-bottom: 20px;
    color: #c0392b;
}

.precautions-box ul li {
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.precautions-box ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #c0392b;
}

/* Pricing CTA */
.pricing-cta {
    text-align: center;
}

.pricing-cta h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.pricing-cta p {
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Subpage Responsive */
@media (max-width: 991px) {
    .option-grid {
        grid-template-columns: 1fr;
    }
}

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

    .page-header h1 {
        font-size: 2.2rem;
    }
}

/* Contact Methods */
.contact-methods {
    background-color: var(--bg-light);
}

.methods-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
    /* Force same height */
}

.method-card {
    background: white;
    padding: 60px 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 4px;
    height: 100%;
    /* Fill grid cell */
}

.method-icon {
    margin-bottom: 30px;
}

.method-card h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.method-card p {
    color: #666;
    margin-bottom: 20px;
}

.tel-number {
    font-size: 2.22rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.method-card:last-child {
    background: var(--accent-color);
    color: white;
}

.method-card:last-child h3,
.method-card:last-child p,
.method-card:last-child .insta-handle {
    color: white;
}

.method-card:last-child .btn-outline {
    color: white;
    border-color: white;
}

.method-card:last-child .btn-outline:hover {
    background-color: white;
    color: var(--accent-color);
}

.method-card:last-child .method-icon svg {
    stroke: white;
}

.method-card:last-child .info-list,
.method-card:last-child .info-list p,
.method-card:last-child .info-list li {
    color: var(--primary-color);
}

.insta-handle {
    font-size: 2.22rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    margin-bottom: 10px;
}

.method-card .btn {
    margin-top: auto;
    margin-bottom: 30px;
}

.hours {
    font-size: 0.9rem;
    margin-bottom: 30px !important;
}

.info-list {
    text-align: left;
    width: 100%;
    padding: 30px;
    background: #fdfdfd;
    border: 1px solid #eee;
}

.info-list p {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.info-list ul {
    margin-bottom: 20px;
}

.info-list li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.info-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.emphasize {
    color: var(--accent-color) !important;
    font-weight: 700;
}

/* FAQ */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.faq-item {
    background: white;
    padding: 30px;
}

.faq-item h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.faq-item p {
    color: #555;
    line-height: 1.8;
}

/* Area */
.area {
    background-color: var(--bg-light);
    text-align: center;
}

.area-content h3 {
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.area-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    max-width: 900px;
    margin: 0 auto 30px;
}

.area-list span {
    padding: 10px 20px;
    background: white;
    border: 1px solid #eee;
    font-weight: 600;
}

/* Contact Responsive */
@media (max-width: 991px) {

    .methods-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

/* Responsive Overrides */
@media (max-width: 1024px) {
    .container {
        padding: 0 40px;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: center;
        gap: 40px;
        transition: 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
        z-index: 1050;
    }

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

    .nav-links a {
        font-size: 1.5rem;
    }

    .tel-btn {
        margin-top: 20px;
    }

    .showcase-content {
        padding: 40px;
        margin: 0 !important;
        width: 100%;
        border: none;
        border-bottom: 2px solid var(--accent-color);
    }

    .showcase-img-container {
        height: 350px;
        width: 100%;
    }

    .voice-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 40px;
        min-height: auto;
    }

    .voice-card {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        width: 100% !important;
        max-width: 100%;
        margin: 0 !important;
    }
}

@media (max-width: 767px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .features-grid,
    .menu-grid,
    .cta-buttons {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    /* Contact Methods - Keep 2 columns but compact */
    .methods-grid {
        gap: 15px;
    }

    .method-card {
        padding: 40px 15px;
    }

    .method-card h3 {
        font-size: 1.1rem;
    }

    .tel-number,
    .insta-handle {
        font-size: 1.1rem;
    }

    .method-card .btn {
        margin-top: auto;
        margin-bottom: 20px;
    }

    .info-list {
        padding: 15px;
        margin-top: 0;
    }

    .info-list p,
    .info-list li {
        font-size: 0.8rem;
    }

    .info-list li {
        padding-left: 12px;
    }

    .feature-item:nth-child(2) {
        transform: none;
    }

    .feature-item {
        padding: 60px 30px;
    }

    .feature-item::before {
        font-size: 6rem;
        top: 0;
        right: 0;
    }

    .feature-item h3 {
        font-size: 1.5rem;
    }

    .menu-column {
        padding: 40px 25px;
    }

    .item-name {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2.22rem;
        margin-bottom: 60px;
    }

    .hero-subtext {
        font-size: 0.88rem;
        padding-left: 12px;
        letter-spacing: -0.02em;
        margin-bottom: 30px;
        white-space: nowrap;
    }

    /* Compact Footer */
    footer {
        padding: 60px 0 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px 20px;
        margin-bottom: 40px;
    }

    .footer-brand {
        grid-column: span 2;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding-bottom: 30px;
        margin-bottom: 10px;
    }

    .footer-nav h4,
    .footer-contact h4 {
        margin-bottom: 15px;
        font-size: 1.1rem;
    }

    .footer-nav ul li,
    .footer-contact p {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }

    /* Workflow Horizontal Scroll */
    .steps-grid {
        display: flex;
        overflow-x: auto;
        gap: 20px;
        padding-bottom: 20px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        margin-left: -20px;
        margin-right: -20px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .step-item {
        flex: 0 0 85%;
        scroll-snap-align: center;
        background: white;
        border: 1px solid rgba(0, 0, 0, 0.03);
        padding: 60px 40px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    }

    .table-wrapper {
        overflow-x: visible;
    }

    /* Stacked Pricing Table */
    .pricing-table,
    .pricing-table thead,
    .pricing-table tbody,
    .pricing-table th,
    .pricing-table td,
    .pricing-table tr {
        display: block;
        width: 100%;
    }

    .pricing-table thead {
        display: none;
        /* Hide header row columns */
    }

    .pricing-table tr {
        margin-bottom: 25px;
        border: 1px solid #eee;
        padding: 20px;
        background: #fff;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
    }

    .pricing-table td {
        border-bottom: none;
        padding: 8px 0;
        text-align: center;
    }

    .pricing-table td:nth-child(1) {
        font-weight: 700;
        font-size: 0.9rem;
        color: #777;
    }

    /* Price Styling - Unified */
    .pricing-table td:nth-child(2),
    .item-price {
        font-size: 1.8rem !important;
        font-weight: 800 !important;
        color: var(--accent-color) !important;
        padding: 10px 0;
        font-family: var(--font-heading);
    }

    /* Override for dark background column on mobile */
    .menu-column:first-child .item-price {
        color: white !important;
    }

    .pricing-table td:nth-child(3) {
        font-size: 0.85rem;
        color: #666;
        border-top: 1px dotted #eee;
        margin-top: 5px;
        padding-top: 10px;
    }

    .pricing-table td:nth-child(3)::before {
        content: '車種例: ';
        font-weight: 700;
    }
}