/* AutoNail Rabbit - メインスタイルシート */

/* ベーススタイル */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans JP', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
    line-height: 1.7;
    color: #333;
    background: #fff;
    overflow-x: hidden;
    font-size: 14px;
    scroll-behavior: smooth;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

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

/* ヘッダー */
header {
    background: rgba(255, 255, 255, 0.98);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 10000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    color: #ff6b9d;
    letter-spacing: 0.5px;
    text-decoration: none;
}


.header-cta {
    background: linear-gradient(135deg, #ff6b9d 0%, #ee5a99 100%);
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.4);
}

/* メインビジュアル */
.hero {
    margin-top: 70px;
    padding: 60px 0 80px;
    background: linear-gradient(135deg, #ffe0ec 0%, #fff5f8 50%, #fff 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="%23ff6b9d" opacity="0.1"/></svg>');
    background-size: 50px 50px;
}

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

.hero-badge {
    display: inline-block;
    background: rgba(255, 107, 157, 0.1);
    color: #ff6b9d;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
    width: 100%;
}

.hero-title {
    text-align: center;
    font-size: clamp(32px, 6vw, 48px);
    font-weight: 900;
    color: #333;
    margin-bottom: 15px;
    letter-spacing: 1px;
    line-height: 1.2;
    white-space: nowrap;
}

.hero-title .highlight {
    color: #ff6b9d;
    position: relative;
}

.mobile-br {
    display: none;
}

@media (max-width: 768px) {
    .mobile-br {
        display: inline;
    }
}

.hero-subtitle {
    text-align: center;
    font-size: clamp(16px, 2.5vw, 20px);
    color: #666;
    margin-bottom: 40px;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.hero-image-wrapper {
    text-align: center;
    position: relative;
    margin-bottom: 50px;
}

.hero-device-image {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.hero-main-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}


.hero-cta-wrapper {
    text-align: center;
}

.main-cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b9d 0%, #ee5a99 100%);
    color: white;
    padding: 20px 80px;
    border-radius: 40px;
    font-size: clamp(18px, 2.5vw, 22px);
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

.main-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s;
}

.main-cta-button:hover::before {
    left: 100%;
}

.main-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 157, 0.5);
}

.hero-guarantee {
    text-align: center;
    font-size: 14px;
    color: #666;
    margin-top: 15px;
}

/* 動画セクション */
.video-section {
    padding: 80px 0;
    background: #fff;
}

.video-title {
    text-align: center;
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    white-space: nowrap;
}

.video-subtitle {
    text-align: center;
    font-size: 16px;
    color: #666;
    margin-bottom: 50px;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

/* POINTセクション */
.points {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffe0ec 0%, #fff5f8 50%, #fff 100%);
}

.section-label {
    text-align: center;
    color: #ff6b9d;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.points-title {
    text-align: center;
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 800;
    color: #333;
    margin-bottom: 60px;
    line-height: 1.3;
}

.points-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.point-card {
    text-align: center;
    padding: 40px 30px;
    background: #fff;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.point-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #ff6b9d 0%, #ee5a99 100%);
}

.point-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.point-number {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b9d 0%, #ee5a99 100%);
    color: white;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(255, 107, 157, 0.3);
}

.point-card-title {
    font-size: clamp(18px, 2.5vw, 22px);
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.4;
}

.point-card-desc {
    font-size: clamp(14px, 1.5vw, 16px);
    color: #777;
    line-height: 1.8;
}

/* 使い方セクション */
.how-to {
    padding: 80px 0;
    background: #fff;
}

.how-to-title {
    text-align: center;
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 800;
    color: #333;
    margin-bottom: 60px;
}

.steps-wrapper {
    display: flex;
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    flex-wrap: wrap;
    gap: 40px;
}

.steps-wrapper::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 20%;
    right: 20%;
    height: 3px;
    background: linear-gradient(135deg, #ffb6c1 0%, #ff6b9d 100%);
    border-radius: 2px;
    z-index: 1;
}

.step-box {
    flex: 1;
    min-width: 280px;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.step-number-circle {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #ff6b9d 0%, #ee5a99 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 800;
    margin: 0 auto 30px;
    box-shadow: 0 10px 25px rgba(255, 107, 157, 0.4);
    border: 5px solid #fff;
}

.step-visual {
    width: 100%;
    max-width: 260px;
    height: 300px;
    background: linear-gradient(135deg, #fff 0%, #f8f8f8 100%);
    border-radius: 20px;
    margin: 0 auto 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: #ff6b9d;
    font-size: 16px;
    font-weight: 600;
}

.step-icon {
    font-size: 60px;
}

.step-label {
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.step-text {
    font-size: clamp(14px, 1.5vw, 16px);
    color: #777;
    line-height: 1.6;
    white-space: nowrap;
}



/* アプリセクション */
.app-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffe0ec 0%, #fff5f8 50%, #fff 100%);
}

.app-container {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto 80px;
    flex-wrap: wrap;
}

.app-text-content {
    flex: 1;
    min-width: 350px;
}

.app-heading {
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 800;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.3;
}

.app-desc {
    font-size: clamp(15px, 1.5vw, 17px);
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.app-feature-list {
    list-style: none;
}

.app-feature-list li {
    padding: 12px 0;
    padding-left: 25px;
    position: relative;
    font-size: clamp(14px, 1.5vw, 16px);
    color: #555;
    line-height: 1.6;
}

.app-feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff6b9d;
    font-weight: 800;
    font-size: 16px;
    top: 12px;
}

.app-visuals {
    flex: 1;
    min-width: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.app-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.download-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.download-title {
    font-size: clamp(24px, 3vw, 30px);
    font-weight: 800;
    color: #333;
    margin-bottom: 25px;
}

.download-desc {
    font-size: clamp(16px, 2vw, 18px);
    color: #666;
    line-height: 1.8;
    margin-bottom: 50px;
}

.app-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
    padding: 50px 40px;
    background: white;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.app-info-item h4 {
    font-size: 14px;
    color: #ff6b9d;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.app-info-item p {
    font-size: 17px;
    color: #333;
    font-weight: 600;
    line-height: 1.6;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.app-store-btn,
.google-play-btn {
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.app-store-btn:hover,
.google-play-btn:hover {
    transform: translateY(-3px);
}

.store-badge {
    height: 60px;
    width: auto;
    transition: all 0.3s ease;
}

.store-badge:hover {
    transform: scale(1.05);
}

/* 専門家推薦セクション */
.expert-section {
    padding: 80px 0;
    background: #fff;
}

.expert-title {
    text-align: center;
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 800;
    color: #333;
    margin-bottom: 20px;
}

.expert-subtitle {
    text-align: center;
    font-size: 16px;
    color: #666;
    margin-bottom: 60px;
}

.expert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.expert-card {
    background: white;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    position: relative;
}

.expert-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 60px;
    color: #ff6b9d;
    opacity: 0.3;
    font-family: serif;
}

.expert-header {
    display: flex;
    gap: 25px;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 2px solid #ffe0ec;
}

.expert-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid #ff6b9d;
}

.expert-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.expert-info {
    flex: 1;
}

.expert-name {
    font-size: 22px;
    font-weight: 800;
    color: #ff6b9d;
    margin-bottom: 8px;
}

.expert-title-text {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    font-weight: 500;
}

.expert-comment {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

/* スペック紹介 */
.spec-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffe0ec 0%, #fff5f8 50%, #fff 100%);
}

.spec-title {
    text-align: center;
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 800;
    color: #333;
    margin-bottom: 60px;
}

.spec-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
}

.spec-image {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.product-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 25px;
}

.spec-details h3 {
    font-size: 24px;
    color: #ff6b9d;
    margin-bottom: 30px;
    font-weight: 800;
}

.spec-table {
    width: 100%;
    margin-bottom: 40px;
    border-collapse: collapse;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.spec-table tr {
    border-bottom: 1px solid #f0f0f0;
}

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

.spec-table th,
.spec-table td {
    padding: 20px 25px;
    text-align: left;
}

.spec-table th {
    color: #666;
    font-weight: 700;
    font-size: 14px;
    width: 40%;
    background: #f8f8f8;
}

.spec-table td {
    color: #333;
    font-size: 16px;
    font-weight: 600;
}

.spec-notes {
    padding: 30px;
    background: white;
    border-radius: 15px;
    margin-top: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.spec-notes p {
    font-size: 13px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 12px;
}

.spec-notes p:last-child {
    margin-bottom: 0;
}

/* FAQ */
.faq-section {
    padding: 80px 0;
    background: #fff;
}

.faq-title {
    text-align: center;
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 800;
    color: #333;
    margin-bottom: 60px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 15px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #ff6b9d;
}

.faq-q {
    padding: 25px 30px;
    font-size: clamp(16px, 2vw, 18px);
    font-weight: 700;
    color: #333;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    background: #fff;
}

.faq-q:hover {
    background: #ffe0ec;
    color: #ff6b9d;
}

.faq-q::after {
    content: '+';
    font-size: 24px;
    color: #ff6b9d;
    font-weight: 400;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-q::after {
    transform: rotate(45deg);
}

.faq-a {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background: #f8f8f8;
}

.faq-item.active .faq-a {
    padding: 0 30px 25px;
    max-height: 500px;
}

.faq-a p {
    font-size: clamp(14px, 1.5vw, 16px);
    color: #666;
    line-height: 1.8;
    padding-top: 20px;
}

/* お問い合わせセクション */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffe0ec 0%, #fff5f8 50%, #fff 100%);
}

.contact-title {
    text-align: center;
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 800;
    color: #333;
    margin-bottom: 20px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-banner {
    display: flex;
    align-items: center;
    gap: 25px;
    background: white;
    padding: 40px 50px;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.contact-banner:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    border-color: #ff6b9d;
}

.contact-icon {
    font-size: 48px;
    flex-shrink: 0;
}

.contact-text {
    flex: 1;
}

.contact-text h3 {
    color: #ff6b9d;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.contact-text p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.contact-arrow {
    font-size: 32px;
    color: #ff6b9d;
    font-weight: bold;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.contact-banner:hover .contact-arrow {
    transform: translateX(5px);
}

.purchase-banner {
    background: linear-gradient(135deg, #fff 0%, #ffe0ec 100%);
}

.purchase-banner:hover {
    background: linear-gradient(135deg, #ffe0ec 0%, #ffb6c1 100%);
}



/* CTAセクション */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ff6b9d 0%, #ee5a99 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>');
    background-size: 60px 60px;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: clamp(24px, 4vw, 32px);
    color: white;
    font-weight: 800;
    margin-bottom: 15px;
}

.cta-subtitle {
    font-size: clamp(14px, 2vw, 18px);
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
}

.final-cta {
    display: inline-block;
    background: white;
    color: #ff6b9d;
    padding: 25px 90px;
    border-radius: 50px;
    font-size: clamp(18px, 2.5vw, 22px);
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    animation: pulse 3s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.final-cta:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    color: #ff6b9d;
    text-decoration: none;
}

/* フッター */
footer {
    background: #2c2c2c;
    color: white;
    padding: 50px 0 30px;
}

.footer-content {
    text-align: center;
    margin-bottom: 30px;
}

.footer-logo {
    font-size: 28px;
    font-weight: 800;
    color: #ff6b9d;
}

.footer-copy {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
}

.footer-copy p {
    font-size: clamp(12px, 1.5vw, 14px);
    color: #999;
    margin-bottom: 8px;
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .header-inner {
        padding: 0 15px;
    }


    .logo {
        font-size: 20px;
    }

    .header-cta {
        padding: 10px 20px;
        font-size: 13px;
    }

    .hero {
        padding: 50px 0 60px;
    }

    .hero-device-image {
        max-width: 500px;
    }

    .main-cta-button {
        padding: 18px 60px;
    }

    .video-section,
    .points,
    .how-to,
    .app-section,
    .expert-section,
    .spec-section,
    .faq-section,
    .contact-section {
        padding: 60px 0;
    }

    .video-title {
        font-size: 22px;
        white-space: nowrap;
    }

    .steps-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .steps-wrapper::before {
        display: none;
    }

    .step-box {
        margin-bottom: 40px;
    }

    .step-text {
        white-space: normal;
        font-size: 13px;
    }

    .app-container {
        flex-direction: column;
        text-align: center;
    }

    .app-feature-list li {
        padding-left: 20px;
    }

    .app-feature-list li::before {
        font-size: 14px;
        top: 12px;
    }

    .app-visuals {
        width: 100%;
        justify-content: space-around;
    }

    .app-phone:nth-child(2) {
        margin-top: 0;
    }

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

    .app-info-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 40px 30px;
    }

    .spec-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-banner {
        padding: 30px 40px;
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .contact-text h3 {
        font-size: 20px;
    }

    .contact-text p {
        font-size: 14px;
    }



    .final-cta {
        padding: 20px 60px;
    }
}

@media (max-width: 480px) {
    .hero {
        margin-top: 55px;
        padding: 30px 0 40px;
    }

    .hero-title {
        font-size: 24px;
        white-space: nowrap;
    }

    .hero-device-image {
        height: 250px;
        padding: 20px;
        font-size: 14px;
    }

    .main-cta-button {
        padding: 15px 40px;
        width: 90%;
        max-width: 300px;
    }

    .video-wrapper {
        border-radius: 10px;
    }

    .video-wrapper iframe {
        border-radius: 10px;
    }

    .points-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .step-visual {
        height: 220px;
    }

    .step-text {
        white-space: normal;
        font-size: 12px;
    }

    .app-image {
        max-width: 400px;
    }

    .app-feature-list li {
        padding-left: 18px;
        font-size: 13px;
    }

    .app-feature-list li::before {
        font-size: 13px;
        top: 12px;
    }

    .expert-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .expert-card {
        padding: 30px;
    }

    .expert-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    .app-info-grid {
        grid-template-columns: 1fr;
        padding: 30px 20px;
    }

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


    .spec-table th,
    .spec-table td {
        font-size: 14px;
        padding: 15px 20px;
    }

    .faq-container {
        padding: 0 10px;
    }

    .faq-q {
        padding: 20px 25px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        padding: 0 10px;
    }

    .contact-banner {
        padding: 25px 30px;
    }

    .contact-icon {
        font-size: 36px;
    }

    .contact-text h3 {
        font-size: 18px;
    }

    .contact-text p {
        font-size: 13px;
    }

    .contact-arrow {
        font-size: 24px;
    }

    .final-cta {
        padding: 18px 50px;
        width: 90%;
        max-width: 320px;
    }

    .footer-menu {
        gap: 20px;
    }

    .footer-menu a {
        display: inline-block;
        padding: 8px;
    }
}

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

@media (max-width: 360px) {
    .container {
        padding: 0 12px;
    }

    .header-cta {
        padding: 8px 16px;
        font-size: 12px;
    }

    .hero-title {
        font-size: 20px;
        white-space: nowrap;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .app-image {
        max-width: 300px;
    }

    .expert-photo {
        width: 80px;
        height: 80px;
    }

    .spec-notes p {
        font-size: 12px;
    }

    .spec-table {
        font-size: 13px;
    }

}