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

@font-face {
    font-family: 'LINE Seed JP';
    src: url('font/WOFF2/LINESeedJP_OTF_Bd.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'LINE Seed JP';
    src: url('font/WOFF2/LINESeedJP_OTF_Eb.woff2') format('woff2');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: 'LINE Seed JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: #ffffff;
    font-weight: 700;
    letter-spacing: 0.08em;
}

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

/* Header */
header {
    position: fixed;
    top: 16px;
    left: 24px;
    right: 24px;
    background: #ffffff;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

/* Header after scrolling past hero */
header.scrolled-past-hero {
    background: rgba(255, 255, 255, 0.55) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

header.scrolled-past-hero nav a {
    color: #333;
}

header.scrolled-past-hero nav a:hover {
    color: #666;
}

header.scrolled-past-hero .cta-button {
    color: #fff;
}

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

/* Desktop Header */
.header-desktop {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 32px;
}

/* Mobile Header */
.header-mobile {
    display: none;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
}

/* Menu Toggle (Hamburger) */
.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: #4CAF50;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    padding: 0;
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
    border-radius: 1px;
}

header.scrolled-past-hero .menu-toggle span {
    background: white;
}

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

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

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    padding: 120px 40px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: center;
}

.mobile-nav-link {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.mobile-nav-link:hover {
    color: #666;
}

.mobile-cta {
    width: 100%;
    max-width: 280px;
    text-align: center;
}

.logo a {
    display: inline-block;
    line-height: 0;
}

.logo img {
    height: 28px;
}

nav {
    display: flex;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s;
    position: relative;
    padding-bottom: 4px;
}

nav a:hover {
    color: #666;
}

nav a.nav-active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: #4CAF50;
    border-radius: 2px;
}

.cta-button {
    display: inline-block;
    text-decoration: none;
    background: #4CAF50;
    border: none;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
    color: #fff;
}

.cta-button:hover {
    background: #43A047;
    color: #fff;
}

/* Hero Section */
.hero {
    position: relative;
    text-align: center;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-texture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('img/tex2.png') repeat;
    background-size: auto;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 20px 20px 80px;
    margin-top: auto;
}

.hero h1 {
    font-size: 76px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: 0.1em;
    color: white;
}

.hero-subtitle {
    font-size: 24px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 27px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0.05em;
}

.cta-button-hero {
    display: inline-block;
    text-decoration: none;
    background: #4CAF50;
    color: #fff;
    border: none;
    padding: 16px 40px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s;
}

.cta-button-hero:hover {
    background: #43A047;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Empathy Section */
.empathy-section {
    padding: 100px 20px;
    text-align: center;
    background: white;
}

.empathy-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #333;
}

.empathy-stage {
    position: relative;
    max-width: 720px;
    margin: 0 auto 50px;
}

.empathy-illustration {
    margin: 0 auto;
}

.empathy-hero-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 20px;
}

.empathy-item {
    position: absolute;
    text-align: center;
    padding: 20px 28px;
    z-index: 0;
    white-space: nowrap;
}

.empathy-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #c8dbfc;
    border-radius: 55% 40% 58% 38% / 40% 55% 38% 58%;
    animation: wobble 8s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

.empathy-item--top {
    top: 2%;
    left: 50%;
    transform: translateX(-50%);
}

.empathy-item--top::before {
    animation-delay: 0s;
}

.empathy-item--left {
    top: 35%;
    left: -5%;
}

.empathy-item--left::before {
    border-radius: 45% 55% 48% 52% / 52% 46% 54% 48%;
    animation-delay: -2.5s;
}

.empathy-item--right {
    bottom: 10%;
    right: -5%;
}

.empathy-item--right::before {
    border-radius: 48% 52% 45% 55% / 55% 45% 52% 48%;
    animation-delay: -5s;
}

@keyframes wobble {
    0%   { border-radius: 55% 40% 58% 38% / 40% 55% 38% 58%; }
    25%  { border-radius: 38% 58% 40% 55% / 58% 38% 55% 40%; }
    50%  { border-radius: 58% 38% 55% 40% / 38% 58% 40% 55%; }
    75%  { border-radius: 40% 55% 38% 58% / 55% 40% 58% 38%; }
    100% { border-radius: 55% 40% 58% 38% / 40% 55% 38% 58%; }
}

.empathy-item p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.empathy-note {
    font-size: 14px;
    line-height: 2;
    color: #999;
    max-width: 600px;
    margin: 0 auto;
}

/* Daily Flow Section */
.daily-flow {
    padding: 100px 20px;
    text-align: center;
    background: white;
}

.section-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #999;
    margin-bottom: 20px;
    background: #FFF5F5;
    display: inline-block;
    padding: 8px 20px;
    border-radius: 20px;
}

.daily-flow h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 30px;
}

.section-description {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 40px;
}

.daily-flow .section-description {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.time-card {
    text-align: left;
}

.step-arrow {
    display: flex;
    align-items: center;
    align-self: stretch;
    color: #ccc;
    font-size: 28px;
}

.time-card-image {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
}

.time-card-image img {
    width: 100%;
    height: auto;
    display: block;
}

.time-card-title-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.step-label {
    display: inline-block;
    background: #f0f0f0;
    color: #999;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.time-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.time-card p {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
}

/* Use Cases Section */
.use-cases {
    padding: 100px 20px;
    background: #FAFAFA;
    text-align: center;
}

.use-cases .section-label {
    display: inline-block;
}

.use-cases h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 30px;
}

.use-cases .section-description {
    max-width: 600px;
    margin: 0 auto 60px;
}

.use-case-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.use-case-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.use-case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.use-case-image {
    width: 100%;
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
}

.use-case-image img {
    width: 100%;
    height: auto;
    display: block;
}

.use-case-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.use-case-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

/* Power of Voice Section */
.power-voice {
    padding: 100px 20px;
    background: #FAFAFA;
    text-align: center;
}

.power-voice .section-label {
    display: inline-block;
}

.power-voice h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 30px;
}

.power-voice .section-description {
    max-width: 600px;
    margin: 0 auto 60px;
}

/* Voice Benefits */
.voice-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    text-align: left;
    max-width: 1100px;
    margin: 0 auto;
}

.benefits-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-item {
    padding: 25px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.benefit-item:hover,
.benefit-item.active {
    background: #f9f9f9;
    border-color: #e0e0e0;
}

.benefit-item h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.benefit-item p {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}

.benefit-item .source-link {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    color: #999;
    text-decoration: none;
    margin-top: 8px;
    padding: 4px 10px;
    background: #f5f5f5;
    border-radius: 4px;
    transition: all 0.3s ease;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
}

.benefit-item .source-link:hover {
    color: #666;
    background: #eee;
}

.benefit-item:hover .source-link,
.benefit-item.active .source-link {
    max-height: 40px;
    opacity: 1;
}

.benefit-item:hover p,
.benefit-item.active p {
    max-height: 200px;
    opacity: 1;
}

.brand-voice-image {
    position: sticky;
    top: 120px;
    display: flex;
    justify-content: center;
}

.brand-voice-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    box-shadow: none;
}

/* App Features Section */
.app-features {
    padding: 100px 20px;
    background: #FAFAFA;
    text-align: center;
}

.app-features h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 30px;
}

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

.feature-card {
    text-align: center;
}

.feature-image {
    background: #F5F5F5;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 20px;
}

.feature-image img {
    width: 100%;
    max-width: 280px;
    border-radius: 12px;
}

.feature-card h4 {
    font-size: 14px;
    color: #999;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-top: 15px;
}

/* Pricing Section */
.pricing-section {
    padding: 100px 20px;
    background: white;
    text-align: center;
}

.pricing-section h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 30px;
}

.pricing-section .section-description {
    max-width: 600px;
    margin: 0 auto 60px;
    transition: opacity 0.2s ease;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 960px;
    margin: 0 auto;
    align-items: stretch;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 40px 28px 32px;
    text-align: center;
    border: 2px solid #eee;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.pricing-card-active {
    border-color: #4CAF50;
    box-shadow: 0 8px 30px rgba(76, 175, 80, 0.15);
}

.pricing-card {
    cursor: pointer;
}

.pricing-card-recommended {
    border-color: #4CAF50;
    box-shadow: 0 8px 30px rgba(76, 175, 80, 0.15);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #4CAF50;
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 20px;
    border-radius: 20px;
    letter-spacing: 0.05em;
}

.pricing-card-header {
    margin-bottom: 28px;
}

.pricing-icon {
    font-size: 36px;
    display: block;
    margin-bottom: 12px;
}

.pricing-card-header h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #333;
}

.pricing-price {
    font-size: 40px;
    font-weight: 700;
    color: #333;
    line-height: 1.2;
}

.pricing-period {
    font-size: 16px;
    font-weight: 500;
    color: #999;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    text-align: left;
    flex: 1;
}

.pricing-features li {
    font-size: 14px;
    color: #555;
    padding: 10px 0;
    border-bottom: 1px solid #f5f5f5;
    line-height: 1.6;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li strong {
    color: #333;
}

.pricing-button {
    display: block;
    text-decoration: none;
    padding: 14px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s;
    letter-spacing: 0.03em;
}

.pricing-button-free {
    background: #f5f5f5;
    color: #333;
}

.pricing-button-free:hover {
    background: #eee;
    color: #333;
}

.pricing-button-lite {
    background: #4CAF50;
    color: white;
}

.pricing-button-lite:hover {
    background: #43A047;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.3);
}

.pricing-button-premium {
    background: #333;
    color: white;
}

.pricing-button-premium:hover {
    background: #222;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* FAQ Section */
.faq-section {
    padding: 100px 20px;
    background: #FAFAFA;
    text-align: center;
}

.faq-section h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 60px;
}

.faq-list {
    max-width: 720px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    border-bottom: 1px solid #eee;
}

.faq-item summary {
    padding: 24px 0;
    font-size: 16px;
    font-weight: 700;
    color: #333;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 24px;
    font-weight: 400;
    color: #999;
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 20px;
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-item summary:hover {
    color: #4CAF50;
}

.faq-item p {
    padding: 0 0 24px;
    font-size: 14px;
    line-height: 2;
    color: #666;
}

/* Pricing Table (Mobile) */
.pricing-table-wrapper {
    display: none;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 12px;
    text-align: center;
}

.pricing-table thead th {
    padding: 12px 6px;
    font-size: 13px;
    font-weight: 700;
    color: #333;
    border-bottom: 2px solid #eee;
    vertical-align: bottom;
}

.pricing-table thead th:first-child {
    text-align: left;
}

.pricing-table-price {
    font-size: 11px;
    font-weight: 500;
    color: #999;
}

.pricing-table tbody td {
    padding: 10px 6px;
    border-bottom: 1px solid #f5f5f5;
    color: #555;
    vertical-align: middle;
}

.pricing-table tbody td:first-child {
    text-align: left;
    font-weight: 700;
    color: #333;
    font-size: 11px;
}

.pricing-table tbody td strong {
    color: #4CAF50;
}

.pricing-table-buttons {
    margin-top: 28px;
}

.pricing-table-buttons .pricing-button {
    max-width: 280px;
    margin: 0 auto;
}

/* CTA Section */
.cta-section {
    padding: 100px 20px;
    background: #333;
    text-align: center;
}

.cta-section h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.cta-section .section-description {
    color: rgba(255, 255, 255, 0.8);
    max-width: 500px;
    margin: 0 auto 40px;
}

.cta-section .cta-button-hero {
    background: white;
    color: #000;
    border: none;
}

.cta-section .cta-button-hero:hover {
    background: #f0f0f0;
    color: #000;
}

/* Footer */
footer {
    padding: 80px 20px 40px;
    background: #f9f7f2;
    text-align: center;
}

.footer-logo img {
    height: 48px;
    margin-bottom: 12px;
}

footer h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
}

.footer-subtitle {
    font-size: 12px;
    color: #999;
    margin-bottom: 20px;
}

footer > p {
    font-size: 14px;
    color: #666;
    margin-bottom: 30px;
}

footer .cta-button {
    margin-bottom: 40px;
}

.footer-note {
    font-size: 12px;
    color: #999;
    margin: 20px 0;
}

.footer-links {
    margin: 30px 0;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.footer-links a {
    font-size: 14px;
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #FF6B6B;
}

.copyright {
    font-size: 12px;
    color: #999;
    margin-top: 40px;
}

/* Responsive */
@media (max-width: 768px) {
    .header-desktop {
        display: none;
    }

    .header-mobile {
        display: flex;
    }

    .empathy-stage {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .empathy-item {
        position: relative;
        white-space: normal;
        margin: 10px auto;
        transform: none;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
    }

    .empathy-section h2 {
        font-size: 22px;
    }

    .empathy-note br {
        display: none;
    }

    .header-mobile .logo img {
        height: 24px;
    }

    .empathy-section,
    .daily-flow,
    .use-cases,
    .power-voice,
    .app-features,
    .pricing-section,
    .faq-section,
    .cta-section {
        padding: 50px 16px;
    }

    .hero {
        min-height: 100vh;
    }

    .hero h1 {
        font-size: 32px;
    }

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

    .empathy-section h2 {
        font-size: 22px;
    }

    .empathy-illustration {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .empathy-item p {
        font-size: 14px;
    }

    .empathy-note {
        font-size: 13px;
    }

    .daily-flow h2,
    .use-cases h2,
    .power-voice h2,
    .app-features h2,
    .faq-section h2,
    .pricing-section h2 {
        font-size: 22px;
    }

    .section-description {
        font-size: 13px;
    }

    .time-card h3,
    .use-case-card h3 {
        font-size: 18px;
    }

    .time-card p,
    .use-case-card p {
        font-size: 13px;
    }

    .benefit-item h3 {
        font-size: 16px;
    }

    .benefit-item p {
        font-size: 13px;
    }

    .faq-item summary {
        font-size: 14px;
    }

    .faq-item p {
        font-size: 13px;
    }

    .pricing-card-header h3 {
        font-size: 20px;
    }

    .pricing-price {
        font-size: 32px;
    }

    .pricing-features li {
        font-size: 13px;
    }

    .cta-section h2 {
        font-size: 22px;
    }

    .pricing-cards {
        display: none;
    }

    .pricing-table-wrapper {
        display: block;
    }

    .time-cards,
    .feature-cards,
    .use-case-cards {
        grid-template-columns: 1fr;
    }

    .use-cases {
        padding-left: 20px;
        padding-right: 20px;
    }

    .use-cases .container {
        max-width: none;
        padding: 0;
    }

    .use-case-cards {
        margin-left: 0;
        margin-right: 0;
        padding: 0;
    }

    .step-arrow {
        display: none;
    }

    .daily-flow {
        background: #FAFAFA;
    }

    .time-card {
        display: flex;
        flex-direction: column;
        background: white;
        padding: 24px 20px;
        border-radius: 20px;
        text-align: center;
    }

    .time-card-title-row {
        order: -2;
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .time-card p {
        order: -1;
    }

    .time-card-image {
        order: 0;
        max-width: 70%;
        margin: 16px auto 0;
    }

    .time-card:not(:last-child) {
        margin-bottom: 20px;
    }

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

    .benefit-item {
        cursor: default;
        border: 2px solid transparent !important;
        background: transparent !important;
    }

    .benefit-item p {
        display: block !important;
        max-height: none !important;
        opacity: 1 !important;
    }

    .benefit-item .source-link {
        display: inline-block !important;
        max-height: none !important;
        opacity: 1 !important;
    }

    .brand-voice-image {
        display: none;
    }

    .cta-section h2 {
        font-size: 22px;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}
