/* --- CSS Variables --- */
:root {
    --bg-color: #0b1120;
    --text-color: #f1f5f9;
    --text-muted: #94a3b8;
    --accent-color: #38bdf8;
    --accent-color-rgb: 56, 189, 248;
    --accent-hover: #0ea5e9;
    --glass-bg: rgba(15, 23, 42, 0.75);
    --glass-border: rgba(56, 189, 248, 0.2);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.6);
    --font-main: 'Inter', 'Noto Sans JP', sans-serif;
    --font-heading: 'Zen Kaku Gothic New', sans-serif;
    --transition-speed: 0.3s;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
    background-image:
        radial-gradient(circle at 15% 50%, rgba(56, 189, 248, 0.1), transparent 30%),
        radial-gradient(circle at 85% 30%, rgba(56, 189, 248, 0.05), transparent 25%);
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 0.05em;
}

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

ul {
    list-style: none;
}

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

/* --- Utility Classes --- */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    box-shadow: var(--glass-shadow);
    padding: 2.5rem;
    transition: transform var(--transition-speed), box-shadow var(--transition-speed), border-color var(--transition-speed);
}

.glass-panel:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(30, 58, 138, 0.3);
    border-color: rgba(192, 192, 192, 0.4);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    padding-top: 6rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* --- Buttons --- */
.btn-primary,
.btn-secondary,
.btn-submit,
.btn-line,
.btn-nav {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-speed);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-primary {
    background-color: var(--accent-color);
    color: #000;
    border: none;
    box-shadow: 0 0 15px rgba(56, 189, 248, 0.3);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    color: #fff;
    box-shadow: 0 0 25px rgba(56, 189, 248, 0.5);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--text-color);
    border: 1px solid var(--glass-border);
}

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

.btn-nav {
    padding: 0.5rem 1.2rem;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--glass-border);
}

.btn-nav:hover {
    background-color: var(--accent-color);
    color: #000;
}

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color var(--transition-speed), backdrop-filter var(--transition-speed), border-bottom var(--transition-speed);
    padding: 1.5rem 0;
}

.navbar.scrolled {
    background: rgba(11, 17, 32, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    font-family: var(--font-heading);
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo i {
    color: var(--accent-color);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.hamburger {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 1001;
    position: relative;
}

/* --- Hero Section --- */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    /* Cityscape background with dark gradient overlay */
    background-image:
        linear-gradient(135deg, rgba(11, 17, 32, 0.95) 0%, rgba(15, 23, 42, 0.8) 100%),
        url('./assets/hero_bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

/* Add a grid overlay effect */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
    pointer-events: none;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    z-index: 10;
    padding: 2.5rem 2rem;
}

.hero-content .badge {
    display: inline-block;
    padding: 0.5rem 1.4rem;
    font-size: 1rem;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    border-radius: 4px;
    margin-bottom: 0.8rem;
    letter-spacing: 0.05em;
    font-weight: 700;
}

.region-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    background-color: var(--accent-hover);
    border-radius: 4px;
    margin-bottom: 0.8rem;
    margin-left: 0;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 10px rgba(14, 165, 233, 0.4);
    line-height: 1.5;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
    background: linear-gradient(135deg, #fff 0%, var(--accent-color) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 10px rgba(56, 189, 248, 0.3));
}

.hero-slogan-text {
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 0.8rem;
    letter-spacing: 0.05em;
    line-height: 1.8;
}

.slogan-line {
    display: inline-block;
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.hero-highlight {
    color: var(--accent-color);
    font-size: 1.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

    40% {
        transform: translateY(-10px) translateX(-50%);
    }

    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

/* --- About Section --- */
.about {
    padding-bottom: 6rem;
}

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

.about-image {
    position: relative;
    height: 100%;
    min-height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background-image: url('./assets/detective_dawn_bg.png');
    background-size: cover;
    background-position: center;
}

.img-placeholder {
    display: none;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.founder-info {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--glass-border);
}

.founder-info .name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.2rem;
}

.founder-info .title {
    font-size: 0.9rem;
    color: var(--accent-color);
}

/* --- Services Section --- */
.services {
    padding-bottom: 6rem;
    background-image:
        linear-gradient(to bottom, rgba(11, 17, 32, 1) 0%, rgba(15, 23, 42, 0.8) 50%, rgba(11, 17, 32, 1) 100%),
        url('./assets/crowd_bg.png');
    background-size: cover;
    background-position: center;
}

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

.service-card {
    text-align: left;
    display: flex;
    flex-direction: column;
}

.service-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}


/* --- Results Section --- */
.results {
    padding: 6rem 0;
    background-image: 
        linear-gradient(rgba(11, 17, 32, 0.85) 0%, rgba(11, 17, 32, 0.85) 100%),
        url('./assets/detective_results_bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* --- Pricing Section --- */
.pricing {
    padding: 6rem 0;
    background-color: var(--bg-color);
}

.pricing-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.pricing-list {
    display: flex;
    flex-direction: column;
    padding: 2rem 3rem;
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.pricing-item:last-of-type {
    border-bottom: none;
}

.pricing-item.highlight {
    background: rgba(56, 189, 248, 0.05);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(56, 189, 248, 0.3);
    margin: 1rem 0;
}

.pricing-name {
    font-weight: 600;
    font-size: 1.1rem;
    color: #fff;
}

.pricing-name small {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: normal;
    margin-top: 0.2rem;
}

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

.pricing-subheader {
    margin-top: 2rem;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--glass-border);
    color: #fff;
    font-size: 1.3rem;
}

.pricing-note {
    text-align: center;
    margin-top: 2rem;
    color: var(--text-muted);
    font-size: 1rem;
}

.highlight-badge-box {
    text-align: center;
    margin: -2.5rem auto 3rem; /* タイトルのマージンを相殺して近づける */
    padding: 0.8rem 2.5rem;
    background: rgba(var(--accent-color-rgb), 0.1);
    border: 1px solid var(--accent-color);
    border-radius: 50px;
    box-shadow: 0 0 20px rgba(var(--accent-color-rgb), 0.1);
    width: fit-content;
    max-width: 90%;
}

.highlight-badge-box p {
    font-weight: 700;
    color: var(--accent-color);
    font-size: 1.1rem;
    margin: 0;
    letter-spacing: 0.1em;
    font-family: var(--font-heading);
}

/* --- Features Section --- */
.features {
    padding: 6rem 0;
    background-image:
        linear-gradient(to bottom, rgba(11, 17, 32, 1) 0%, rgba(15, 23, 42, 0.85) 50%, rgba(11, 17, 32, 1) 100%),
        url('./assets/relieved_bg.png');
    background-size: cover;
    background-position: center;
}

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

.features-image {
    position: relative;
    height: 100%;
    min-height: 500px;
    background-image: url('./assets/customer_bg.png');
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    opacity: 0.95;
    overflow: hidden;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-item {
    display: flex;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
    background: rgba(56, 189, 248, 0.05);
    border-color: rgba(56, 189, 248, 0.3);
}

.feature-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.1);
    font-family: var(--font-heading);
    line-height: 1;
}

.feature-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #fff;
}

.feature-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* --- FAQ Section --- */
.faq {
    padding: 6rem 0;
    background-image:
        linear-gradient(to bottom, rgba(11, 17, 32, 1) 0%, rgba(15, 23, 42, 0.85) 50%, rgba(11, 17, 32, 1) 100%),
        url('./assets/bookshelf_bg.png');
    background-size: cover;
    background-position: center;
}

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

.faq-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 1.5rem 2rem;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    transition: background-color var(--transition-speed), border-color var(--transition-speed);
}

.faq-item:hover {
    background: rgba(56, 189, 248, 0.05);
    border-color: rgba(56, 189, 248, 0.3);
}

.faq-item[open] {
    background: rgba(56, 189, 248, 0.05);
    border-color: var(--accent-color);
}

.faq-question {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-color);
    list-style: none;
    /* remove default arrow */
    position: relative;
    padding-right: 2rem;
}

.faq-question::-webkit-details-marker {
    display: none;
    /* Safari */
}

.faq-question::before {
    content: 'Q.';
    color: var(--accent-color);
    font-size: 1.3rem;
    margin-right: 1rem;
    font-family: var(--font-heading);
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--text-muted);
    transition: transform var(--transition-speed);
}

.faq-item[open] .faq-question::after {
    content: '−';
    transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    line-height: 1.8;
}

.faq-answer p {
    display: flex;
    align-items: flex-start;
}

.faq-answer p::before {
    content: 'A.';
    color: #ff6b6b;
    font-size: 1.3rem;
    margin-right: 1rem;
    font-weight: 700;
    font-family: var(--font-heading);
    line-height: 1.6;
}

/* --- Articles Section --- */
.articles {
    padding-bottom: 6rem;
    background-image:
        linear-gradient(to bottom, rgba(11, 17, 32, 1) 0%, rgba(15, 23, 42, 0.85) 50%, rgba(11, 17, 32, 1) 100%),
        url('./assets/reporter_bg.png');
    background-size: cover;
    background-position: center;
}

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

.article-card {
    display: flex;
    flex-direction: column;
    padding: 2rem;
    transition: transform var(--transition-speed) ease, border-color var(--transition-speed) ease;
}

.article-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
}

.article-date {
    font-size: 0.9rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
    letter-spacing: 0.05em;
}

.article-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.article-title a {
    color: var(--text-color);
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}

.article-title a:hover {
    color: var(--accent-hover);
}

.article-excerpt {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.article-readmore {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-color);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color var(--transition-speed) ease;
    margin-top: auto;
}

.article-readmore:hover {
    color: var(--text-color);
}

.articles-more {
    text-align: center;
    margin-top: 3rem;
}

/* --- Contact Section --- */
.contact {
    padding-bottom: 8rem;
    background-image:
        linear-gradient(to bottom, rgba(11, 17, 32, 1) 0%, rgba(15, 23, 42, 0.8) 50%, rgba(11, 17, 32, 1) 100%),
        url('./assets/worried_woman_bg.png');
    background-size: cover;
    background-position: center;
}

.contact-wrapper {
    display: flex;
    justify-content: center;
}

.contact-info {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
}


.contact-info h3 {
    color: var(--text-color);
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.method {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.method i {
    font-size: 1.8rem;
    color: var(--accent-color);
    margin-top: 0.2rem;
}

.method h4 {
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    text-align: left;
}

.phone-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    letter-spacing: 0.05em;
    margin-bottom: 0.2rem;
}

.sub-text {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.btn-line {
    background-color: #06C755;
    color: #fff;
    border: none;
    margin-top: 1rem;
}

.btn-line:hover {
    background-color: #05a546;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #ccc;
    font-size: 0.9rem;
}

.required {
    background: rgba(255, 50, 50, 0.2);
    color: #ff6b6b;
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    margin-left: 0.5rem;
}

input,
select,
textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: #fff;
    font-family: inherit;
    transition: border-color var(--transition-speed);
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.08);
}

.btn-submit {
    width: 100%;
    background: var(--accent-color);
    color: #000;
    border: none;
    font-size: 1.1rem;
    margin-top: 1rem;
}

.btn-submit:hover {
    background-color: var(--accent-hover);
    color: #fff;
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.4);
}

/* --- Map Section --- */
.map-container {
    margin-top: 4rem;
    padding: 2rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    box-shadow: var(--glass-shadow);
}

.map-responsive {
    overflow: hidden;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    position: relative;
    height: 0;
}

.map-responsive iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
    border-radius: 8px;
}

/* --- Footer --- */
footer {
    background: #000;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 900;
    color: #fff;
    font-family: var(--font-heading);
}

.footer-logo i {
    color: var(--accent-color);
}

.footer-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

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

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    color: #666;
    font-size: 0.8rem;
}

/* --- Responsive Design --- */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 3rem;
    }

    .hero-content {
        padding: 2rem;
    }

    .about-grid,
    .contact-wrapper,
    .features-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image {
        min-height: 300px;
    }

    .feature-item {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 768px) {

    /* Navbar styling for mobile */
    .nav-links {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: rgba(11, 17, 32, 0.98);
        background: linear-gradient(135deg, rgba(11, 17, 32, 0.98) 0%, rgba(15, 23, 42, 0.98) 100%);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 6rem 2rem 2rem;
        gap: 0; /* Use padding on items instead of gap for better support */
        transition: right 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
        z-index: 999;
        box-shadow: -10px 0 40px rgba(0,0,0,0.8);
        overflow-y: auto;
        visibility: hidden; /* Prevent interaction when closed */
        opacity: 0;
    }

    .nav-links.active {
        right: 0;
        visibility: visible;
        opacity: 1;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s ease;
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateY(0);
    }

    /* Staggered animation for menu items */
    .nav-links.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-links.active li:nth-child(2) { transition-delay: 0.15s; }
    .nav-links.active li:nth-child(3) { transition-delay: 0.2s; }
    .nav-links.active li:nth-child(4) { transition-delay: 0.25s; }
    .nav-links.active li:nth-child(5) { transition-delay: 0.3s; }
    .nav-links.active li:nth-child(6) { transition-delay: 0.35s; }
    .nav-links.active li:nth-child(7) { transition-delay: 0.4s; }
    .nav-links.active li:nth-child(8) { transition-delay: 0.45s; }

    .nav-links a {
        font-size: 1.15rem;
        padding: 1.2rem 1rem;
        display: block;
        color: #fff;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        transition: color 0.3s ease, background 0.3s ease;
    }

    .nav-links a:hover {
        background: rgba(56, 189, 248, 0.1);
        color: var(--accent-color);
    }

    .btn-nav {
        display: inline-block;
        width: 100%;
    }

    .hamburger {
        display: block;
        padding: 0.5rem;
        margin-right: -0.5rem;
        transition: transform 0.3s ease;
    }

    .hamburger:active {
        transform: scale(0.9);
    }

    /* Typography & Spacing Adjustments */
    .hero {
        height: auto;
        min-height: 100vh;
        padding-top: 100px;
    }

    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }

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

    .hero p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .services-grid,
    .articles-grid {
        grid-template-columns: 1fr;
    }

    .contact {
        background-position: top center;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1.2rem;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .hero-buttons a {
        width: 100%;
        padding: 1.2rem 1rem;
        font-size: 0.95rem;
        letter-spacing: 0.03em;
    }

    .section-header {
        padding-top: 4rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-header p {
        font-size: 0.95rem;
    }

    .glass-panel {
        padding: 1.5rem;
    }

    .about-text h3 {
        font-size: 1.6rem;
    }

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

    .method {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.5rem;
        background: rgba(255, 255, 255, 0.03);
        border-radius: 8px;
        border: 1px solid var(--glass-border);
    }

    .method h4 {
        text-align: center;
    }

    .method i {
        margin-bottom: 1rem;
        font-size: 2.5rem;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
    }

    /* Reduce vertical padding for tighter mobile layout */
    .results, .pricing, .features, .faq, .survey-flow {
        padding: 4rem 0;
    }
    .about, .services, .problem-empathy, .transformation, .contact {
        padding-bottom: 4rem;
    }
    .hero-highlight {
        font-size: 1.25rem;
    }

    /* Adjust features section for mobile balance */
    .features-grid-vertical {
        gap: 1.5rem;
    }
    .feature-card-full {
        padding: 1.5rem;
    }
    .feature-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }
    .feature-card-header h3 {
        font-size: 1.4rem;
        line-height: 1.3;
    }
    .feature-checklist {
        grid-template-columns: 1fr;
    }
}

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

    .hero-content {
        padding: 1.5rem;
    }

    .pricing-list {
        padding: 1.5rem;
    }

    .pricing-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        padding: 1.5rem 0;
    }

    .container {
        padding: 0 1.5rem;
    }

    .section-header {
        margin-bottom: 2rem;
        padding-top: 3.5rem;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .highlight-badge-box {
        margin: -1rem auto 2rem;
        padding: 0.8rem 1.5rem;
    }

    .highlight-badge-box p {
        font-size: 1.0rem;
    }

    .hero-highlight {
        font-size: 1.1rem;
    }

    .about-image, .features-image {
        min-height: 250px;
        height: 250px;
    }

    .glass-panel {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }

    /* Disable hover transform on mobile touch */
    .glass-panel:hover {
        transform: none;
    }

    .phone-number {
        font-size: 1.5rem;
    }

    .method div a img {
        width: 100% !important;
        max-width: 200px;
    }
}

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

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- Problem/Empathy Section --- */
.problem-empathy {
    padding-bottom: 6rem;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.problem-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.problem-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

.problem-item i {
    font-size: 2.2rem;
    color: var(--accent-color);
    margin-bottom: 1.2rem;
    opacity: 0.9;
}

.problem-item p {
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.7;
}

.empathy-message {
    text-align: center;
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-color);
}

.empathy-message strong {
    color: var(--accent-color);
}

/* --- Transformation Section --- */
.transformation {
    padding-bottom: 6rem;
}

.transformation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

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

.transformation-icon {
    font-size: 2.5rem;
    color: #fbbf24; /* Warm Gold */
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(251, 191, 36, 0.4));
}

.transformation-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #fff;
}

.transformation-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
}

.transformation-message {
    text-align: center;
    font-size: 1.4rem;
    line-height: 1.8;
    color: var(--text-color);
}

.transformation-message strong {
    color: #fbbf24;
}

/* --- Utilities & Adjustments --- */
.mobile-br { display: none; }
.pb-3 { padding-bottom: 1rem !important; }
.pt-0 { padding-top: 0 !important; }
.mb-4 { margin-bottom: 2rem !important; }

@media (max-width: 768px) {
    .mobile-br { display: block; }
    .transformation-grid {
        grid-template-columns: 1fr;
    }
    .empathy-message, .transformation-message {
        font-size: 1.1rem;
    }
    .region-badge {
        font-size: 0.85rem;
        line-height: 1.5;
        padding: 0.5rem 0.8rem;
        width: fit-content;
        margin: 0 auto 1.5rem;
        white-space: normal;
        word-break: auto-phrase;
    }
    .hero-title {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 1.5rem;
    }
    .hero-slogan-text {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 2rem;
        padding: 0 0.5rem;
    }
    .slogan-line {
        display: inline; /* Allow natural wrapping */
    }
}

@media (max-width: 480px) {
    .region-badge {
        font-size: 0.72rem;
        padding: 0.5rem 0.5rem;
    }
    .hero-slogan-text {
        font-size: 0.95rem;
    }
}

/* --- New Features Section Styles --- */
.features {
    padding: 6rem 0;
    position: relative;
    background-image: 
        linear-gradient(rgba(11, 17, 32, 0.9) 0%, rgba(11, 17, 32, 0.9) 100%),
        url('./assets/relieved_faces_bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.section-subtitle {
    font-size: 1.3rem;
    color: var(--accent-hover);
    margin-top: 1rem;
    font-weight: 700;
}

.features-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.features-intro {
    text-align: center;
    margin-bottom: 3.5rem;
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-color);
}

.features-grid-vertical {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.feature-card-full {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 2.5rem;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.feature-card-full:hover {
    border-color: rgba(56, 189, 248, 0.4);
    background: rgba(255, 255, 255, 0.05);
}

.feature-card-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(56, 189, 248, 0.2);
    padding-bottom: 1rem;
}

.feature-tag {
    background: var(--accent-color);
    color: #000;
    font-weight: 900;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-family: var(--font-heading);
}

.feature-card-header h3 {
    font-size: 1.6rem;
    color: #fff;
    margin: 0;
}

.feature-card-body p {
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
}

.feature-checklist {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.feature-checklist li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-color);
    font-weight: 600;
}

.feature-checklist li i {
    color: var(--accent-color);
}

.feature-highlight {
    background: rgba(56, 189, 248, 0.1);
    color: var(--accent-color);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    display: inline-block;
    font-weight: 700;
    font-size: 1rem;
    margin-top: 0.5rem;
}

.caution-box {
    background: rgba(239, 68, 68, 0.05);
    border: 2px solid rgba(239, 68, 68, 0.3);
    border-radius: 12px;
    padding: 2.5rem;
    margin-bottom: 4rem;
    position: relative;
    overflow: hidden;
}

.caution-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: #f87171;
}

.caution-header i {
    font-size: 1.8rem;
}

.caution-header h4 {
    font-size: 1.5rem;
    margin: 0;
}

.caution-body p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.caution-body strong {
    color: #fca5a5;
    background: rgba(239, 68, 68, 0.1);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    display: inline-block;
    margin: 0.5rem 0;
}

.urgency-cta-area {
    text-align: center;
    padding: 4rem 2rem;
    background: radial-gradient(circle at center, rgba(56, 189, 248, 0.1) 0%, transparent 70%);
    border-radius: 20px;
}

.urgency-message h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.urgency-message p {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    color: var(--text-color);
}

.cta-box-features {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.cta-main-btn {
    font-size: 1.5rem;
    padding: 1.5rem 3rem;
    width: 100%;
    margin-bottom: 1rem;
    border-radius: 8px;
}

    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.cta-text-info {
    margin-bottom: 2.5rem;
    color: var(--text-color);
}

.cta-main-info {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--accent-color);
    line-height: 1.6;
    /* Removed nowrap to prevent clipping on mobile */
    white-space: normal; 
}

.cta-sub-info {
    font-size: 1.1rem;
    font-weight: 600;
    opacity: 0.9;
    letter-spacing: 0.1em;
}

.cta-final-message {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    font-family: var(--font-heading);
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

/* --- Mobile Responsive for New Section --- */
@media (max-width: 768px) {
    .section-subtitle { font-size: 1rem; line-height: 1.5; padding: 0 1rem; }
    .feature-card-header { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
    .feature-card-header h3 { font-size: 1.2rem; line-height: 1.4; }
    .feature-card-full { padding: 1.5rem; border-radius: 8px; }
    .feature-checklist { grid-template-columns: 1fr; gap: 0.6rem; margin: 1rem 0; }
    .feature-checklist li { font-size: 0.95rem; }
    .caution-header h4 { font-size: 1.2rem; }
    .caution-box { padding: 1.5rem; border-radius: 8px; }
    .urgency-message h3 { font-size: 1.3rem; line-height: 1.4; }
    .urgency-message p { font-size: 1rem; }
    .cta-box-features { padding: 1.5rem; border-radius: 8px; }
    .cta-main-btn { font-size: 1rem; padding: 1.1rem 1rem; width: 100%; box-sizing: border-box; }
    .cta-main-info { font-size: 0.9rem; }
    .cta-sub-info { font-size: 0.85rem; }
    .feature-highlight { font-size: 0.9rem; padding: 0.5rem 0.8rem; display: block; text-align: center; }
    .flow-closing .btn-primary { 
        width: 100%; 
        box-sizing: border-box; 
        font-size: 0.88rem; 
        padding: 1rem 0.4rem;
    }
}

/* --- Content Enhancement Styles --- */
.feature-urgency-note {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(239, 68, 68, 0.05); /* Subtle red */
    border-radius: 8px;
    border: 1px dashed rgba(239, 68, 68, 0.3);
}

.feature-urgency-note p {
    font-size: 1.15rem;
    font-weight: 700;
    color: #f87171;
    margin-bottom: 1rem;
}

.urgency-list {
    display: flex;
    justify-content: center;
    gap: 2rem;
    list-style: none;
    padding: 0;
    margin-bottom: 1rem;
}

.urgency-list li {
    font-weight: 700;
    color: #fff;
}

.urgency-list li::before {
    content: '・';
    color: #f87171;
}

.urgency-conclusion {
    font-size: 1rem !important;
    color: var(--text-color) !important;
    font-weight: 500 !important;
    margin-bottom: 0 !important;
}

.comparison-container {
    margin: 2.5rem 0 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.comparison-item {
    padding: 2rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    text-align: center;
}

.comparison-item.highlight {
    border-color: var(--accent-color);
    background: rgba(56, 189, 248, 0.05);
}

.comparison-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.comparison-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    display: block;
}

.comparison-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
    font-size: 1.2rem;
}

.comparison-desc {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent-color);
}

.pricing-case-examples {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
}

.pricing-case-examples h4 {
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.case-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.case-list li {
    display: flex;
    justify-content: space-between;
    padding-bottom: 0.5rem;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.05);
}

.trust-note-area {
    margin-top: 1rem;
}

.trust-note-item {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: block;
    margin-bottom: 0.2rem;
}

@media (max-width: 768px) {
    .comparison-container {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 2rem 0;
    }
    .comparison-item {
        padding: 1.5rem;
    }
    .feature-urgency-note p {
        font-size: 1rem;
    }
}

/* --- Results Comparison Styles --- */
.results-comparison-area {
    margin-bottom: 5rem;
}

.comparison-main-title {
    text-align: center;
    font-size: 1.8rem;
    color: var(--text-color);
    margin-bottom: 3rem;
    font-family: var(--font-heading);
}

.comparison-results-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.comparison-results-card {
    padding: 2.5rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
}

.comparison-results-card.general {
    opacity: 0.8;
}

.comparison-results-card.shield {
    border-color: var(--accent-color);
    background: rgba(var(--accent-color-rgb), 0.05);
    box-shadow: 0 0 30px rgba(var(--accent-color-rgb), 0.1);
}

.comparison-results-card h4 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.comparison-results-card.general h4 {
    color: var(--text-muted);
}

.comparison-results-card.shield h4 {
    color: var(--accent-color);
}

.summary-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    flex-grow: 1;
}

.summary-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 1rem;
    line-height: 1.5;
}

.summary-list li:last-child {
    border-bottom: none;
}

.comparison-results-card.shield li {
    color: #fff;
    font-weight: 500;
}

.comparison-final-result {
    text-align: center;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
}

.comparison-results-card.shield .comparison-final-result {
    background: rgba(var(--accent-color-rgb), 0.2);
    color: var(--accent-color);
    font-size: 1.2rem;
}

.comparison-closing {
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
}

.comparison-highlight-text {
    font-weight: 700;
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-top: 1rem;
    display: block;
}

/* --- CTA Urgency Styles --- */
.cta-urgency-note {
    background: rgba(255, 255, 255, 0.03);
    border: 1px dashed rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: left;
    display: inline-block;
    max-width: 600px;
}

.cta-urgency-note .urgency-top {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: block;
}

.cta-urgency-note .urgency-body {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.cta-urgency-note .urgency-list {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin: 0.8rem 0;
    align-items: flex-start;
}

.cta-urgency-note .urgency-priority {
    font-weight: 700;
    color: #fff;
    border-bottom: 1px solid var(--accent-color);
}

@media (max-width: 768px) {
    .comparison-results-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    .comparison-main-title {
        font-size: 1.25rem;
        line-height: 1.5;
        margin-bottom: 2rem;
        padding: 0 0.5rem;
    }
    .comparison-results-card {
        padding: 1.5rem 1rem; 
        border-radius: 8px;
    }
    .summary-list li {
        font-size: 0.9rem;
        padding: 0.6rem 0;
    }
    .comparison-results-card h4 {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    .comparison-final-result {
        font-size: 1rem;
        padding: 1rem;
    }
    .comparison-results-card.shield .comparison-final-result {
        font-size: 1.05rem;
    }
    .cta-urgency-note {
        padding: 1.2rem;
        margin: 0 0 1.5rem 0;
        width: 100%;
        max-width: 100%;
    }
    .cta-urgency-note .urgency-body {
        font-size: 0.95rem;
    }
}

/* --- Survey Flow Section --- */
.survey-flow {
    padding: 6rem 0;
    background: var(--bg-color);
    position: relative;
}

.flow-container {
    max-width: 900px;
    margin: 4rem auto;
    position: relative;
}

/* Timeline line */
.flow-container::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, 
        rgba(56, 189, 248, 0) 0%, 
        rgba(56, 189, 248, 0.5) 15%, 
        rgba(56, 189, 248, 0.5) 85%, 
        rgba(56, 189, 248, 0) 100%);
    transform: translateX(-50%);
    z-index: 1;
}

.flow-step {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.flow-step:nth-child(even) {
    flex-direction: row-reverse;
}

.flow-content {
    width: 45%;
}

.flow-content.glass-panel {
    padding: 2rem;
    position: relative;
}

.flow-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    background: var(--bg-color);
    border: 4px solid var(--accent-color);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(56, 189, 248, 0.6);
    z-index: 3;
}

.flow-step-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.flow-step-icon {
    font-size: 1.5rem;
    color: var(--accent-color);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(56, 189, 248, 0.1);
    border-radius: 8px;
}

.flow-step-header h3 {
    font-size: 1.2rem;
    color: #fff;
    margin: 0;
}

.flow-step-header .step-num {
    font-family: var(--font-heading);
    color: var(--accent-color);
    font-weight: 800;
    font-size: 1.2rem;
}

.flow-step-body p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

.flow-closing {
    text-align: center;
    max-width: 700px;
    margin: 6rem auto 0;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid var(--glass-border);
}

.flow-closing-text {
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.flow-closing p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* Responsive adjustments for flow */
@media (max-width: 768px) {
    .flow-container::before {
        left: 20px;
        transform: none;
    }
    
    .flow-step, .flow-step:nth-child(even) {
        flex-direction: row;
        justify-content: flex-start;
        padding-left: 50px;
        margin-bottom: 3rem;
    }
    
    .flow-content {
        width: 100%;
    }
    
    .flow-dot {
        left: 20px;
    }
    
    .flow-closing {
        padding: 2rem 1rem;
    }

    .flow-closing-text {
        font-size: 1.1rem;
    }
}

/* --- Extra small screens (360px and below) --- */
@media (max-width: 360px) {
    .hero-buttons a {
        font-size: 0.88rem;
        padding: 1rem 0.8rem;
        letter-spacing: 0.01em;
    }
    .cta-main-btn {
        font-size: 0.9rem !important;
        padding: 1rem 0.8rem !important;
    }
    .flow-closing .btn-primary {
        font-size: 0.85rem;
        padding: 1rem 0.3rem;
    }
}
