/* ==========================================
   あさらぼ — style.css  v3 — Modern Design
   ========================================== */

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: "MFW-PUDShinGoNTPr6N-Regular", 'Noto Sans JP', sans-serif;
    font-weight: 400;
    color: #0f172a;
    background: #ffffff;
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    overflow-wrap: break-word;
    word-break: auto-phrase;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul { list-style: none; }

/* --- Utility --- */
.container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 24px;
    overflow: hidden;
}

.sp-only { display: none; }
@media (max-width: 768px) {
    .sp-only { display: inline; }
}

.section {
    padding: 100px 0;
    position: relative;
}

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

.section-label {
    display: inline-block;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.18em;
    color: #2563eb;
    text-transform: uppercase;
    margin-bottom: 12px;
    position: relative;
    padding: 0 20px;
}

.section-label::before,
.section-label::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 12px;
    height: 1px;
    background: #2563eb;
    opacity: 0.4;
}

.section-label::before { left: 0; }
.section-label::after { right: 0; }

.section-label-light {
    color: #93c5fd;
}

.section-label-light::before,
.section-label-light::after {
    background: #93c5fd;
}

.section-title {
    font-family: "MFW-PA1GothicStdN-Bold", 'Zen Kaku Gothic New', sans-serif;
    font-weight: 700;
    font-size: 30px;
    color: #0f172a;
    margin-bottom: 16px;
    letter-spacing: 0.02em;
}

.section-title-light {
    color: #ffffff;
}

.section-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #2563eb, #60a5fa, transparent);
    margin: 0 auto;
    border-radius: 2px;
}

.section-line-light {
    background: linear-gradient(90deg, #60a5fa, #93c5fd, transparent);
}

/* --- Reveal Animation --- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Stagger children inside grids */
.reveal-stagger .reveal:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger .reveal:nth-child(2) { transition-delay: 0.12s; }
.reveal-stagger .reveal:nth-child(3) { transition-delay: 0.19s; }
.reveal-stagger .reveal:nth-child(4) { transition-delay: 0.26s; }
.reveal-stagger .reveal:nth-child(5) { transition-delay: 0.33s; }
.reveal-stagger .reveal:nth-child(6) { transition-delay: 0.40s; }

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "MFW-PGothicMB101Pr6N-Bold", sans-serif;
    font-weight: 700;
    font-size: 15px;
    border-radius: 9999px;
    padding: 12px 28px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn::after {
    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.5s ease;
}

.btn:hover::after {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(37,99,235,0.2);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    box-shadow: 0 6px 20px rgba(37,99,235,0.35);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: #2563eb;
    border: 1.5px solid #2563eb;
}

.btn-outline:hover {
    background: #eff6ff;
    transform: translateY(-1px);
}

.btn-white {
    background: #ffffff;
    color: #1e3a5f;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.btn-white:hover {
    background: #f0f4ff;
    box-shadow: 0 6px 20px rgba(255,255,255,0.3);
    transform: translateY(-1px);
}

.btn-sm { padding: 8px 20px; font-size: 14px; }
.btn-lg { padding: 20px 44px; font-size: 17px; }

/* ==========================================
   HEADER
   ========================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid transparent;
    transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.site-header.scrolled {
    background: rgba(255,255,255,0.92);
    border-bottom-color: #e2e8f0;
    box-shadow: 0 1px 12px rgba(0,0,0,0.05);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

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

.logo-img {
    height: 32px;
    width: auto;
    display: block;
}

.footer-logo-img {
    filter: brightness(0) invert(1);
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-desktop a {
    font-family: "MFW-PShinGoPr6N-Medium", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #475569;
    transition: color 0.2s;
    position: relative;
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #2563eb;
    border-radius: 1px;
    transition: width 0.3s;
}

.nav-desktop a:hover {
    color: #2563eb;
}

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

.header-cta {
    margin-left: 16px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 4px 0;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: #0f172a;
    border-radius: 1px;
    transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.nav-mobile {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    padding: 24px;
}

.nav-mobile.open {
    display: block;
}

.nav-mobile nav {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.nav-mobile a {
    font-size: 15px;
    font-weight: 500;
    color: #475569;
    padding: 8px 0;
}

.btn-mobile-cta {
    margin-top: 8px;
    text-align: center;
    color: #ffffff !important;
}

/* ==========================================
   HERO
   ========================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(170deg, #eef2ff 0%, #e0e7ff 15%, #eff6ff 35%, #f8faff 55%, #ffffff 80%);
    z-index: 0;
    overflow: hidden;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(37,99,235,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37,99,235,0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black, transparent);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black, transparent);
}

.hero-blob {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(37,99,235,0.12) 0%, rgba(99,102,241,0.06) 30%, rgba(96,165,250,0.03) 50%, transparent 70%);
    border-radius: 50%;
    animation: orbMove1 12s ease-in-out infinite;
    filter: blur(40px);
}

.hero-blob-2 {
    position: absolute;
    bottom: -15%;
    left: -8%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(99,102,241,0.1) 0%, rgba(96,165,250,0.05) 40%, transparent 70%);
    border-radius: 50%;
    animation: orbMove2 15s ease-in-out infinite;
    filter: blur(40px);
}

.hero-blob-3 {
    position: absolute;
    top: 30%;
    left: 40%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(147,197,253,0.08) 0%, rgba(59,130,246,0.04) 40%, transparent 60%);
    border-radius: 50%;
    animation: orbMove3 18s ease-in-out infinite;
    filter: blur(60px);
}

@keyframes orbMove1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(50px, -40px) scale(1.1); }
    50% { transform: translate(-30px, 25px) scale(0.95); }
    75% { transform: translate(35px, 15px) scale(1.05); }
}

@keyframes orbMove2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-40px, -30px) scale(1.08); }
    66% { transform: translate(30px, 40px) scale(0.92); }
}

@keyframes orbMove3 {
    0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); }
    50% { transform: translate(60px, -30px) scale(1.15) rotate(180deg); }
}

/* Floating decorative shapes */
.hero-float {
    position: absolute;
    z-index: 0;
    animation: floatShape 6s ease-in-out infinite;
}

.hero-float-1 {
    top: 18%;
    right: 12%;
    animation-delay: 0s;
    animation-duration: 7s;
}

.hero-float-2 {
    top: 55%;
    left: 8%;
    animation-delay: -2s;
    animation-duration: 8s;
}

.hero-float-3 {
    bottom: 20%;
    right: 20%;
    animation-delay: -4s;
    animation-duration: 9s;
}

@keyframes floatShape {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(5deg); }
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #ffffff;
    font-family: 'Cormorant Garamond', serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    padding: 7px 20px;
    border-radius: 9999px;
    margin-bottom: 36px;
    box-shadow: 0 4px 16px rgba(37,99,235,0.25);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #60a5fa;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.hero-title {
    font-family: "MFW-PRyuminPr6N-Regular", serif;
    font-weight: 400;
    font-size: 50px;
    line-height: 1.5;
    margin-bottom: 24px;
    letter-spacing: 0.02em;
}

.hero-highlight {
    color: #2563eb;
    position: relative;
}

.hero-highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 8px;
    background: rgba(37,99,235,0.1);
    border-radius: 4px;
    z-index: -1;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 500;
    color: #475569;
    margin-bottom: 28px;
}

/* Skill Tags */
.hero-skills {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.hero-skill-tag {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 500;
    color: #2563eb;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(37,99,235,0.15);
    border-radius: 9999px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-skill-tag:hover {
    background: rgba(37,99,235,0.1);
    border-color: rgba(37,99,235,0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(37,99,235,0.15);
}

.hero-desc {
    font-size: 15px;
    color: #64748b;
    line-height: 1.9;
    margin-bottom: 40px;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-trust {
    display: flex;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #475569;
}

.trust-check {
    color: #2563eb;
    display: inline-flex;
    align-items: center;
}

/* ==========================================
   SECTION DIVIDERS
   ========================================== */
.section-divider {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    overflow: hidden;
    line-height: 0;
}

.section-divider svg {
    display: block;
    width: 100%;
    height: auto;
}

/* ==========================================
   SERVICES
   ========================================== */
.services {
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 40%, #f8fafc 100%);
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
}

.tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 500;
    color: #475569;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    transition: all 0.3s;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.tab-btn:hover {
    border-color: #2563eb;
    color: #2563eb;
    box-shadow: 0 2px 8px rgba(37,99,235,0.1);
}

.tab-btn.active {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(37,99,235,0.3);
}

.tab-icon {
    font-size: 16px;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.service-card {
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(226,232,240,0.8);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s, border-color 0.4s;
    position: relative;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(37,99,235,0.12), 0 0 0 1px rgba(37,99,235,0.08);
    border-color: rgba(37,99,235,0.2);
}

.service-card-header {
    display: flex;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    gap: 12px;
}

.service-card-title {
    font-family: "MFW-PA1GothicStdN-Bold", 'Zen Kaku Gothic New', sans-serif;
    font-weight: 500;
    font-size: 15px;
    flex: 1;
}

.service-card-price {
    font-weight: 600;
    font-size: 14px;
    color: #2563eb;
    white-space: nowrap;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-card-toggle {
    color: #94a3b8;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.service-card.open .service-card-toggle {
    transform: rotate(180deg);
    color: #2563eb;
}

.service-card-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.service-card.open .service-card-body {
    max-height: 500px;
}

.service-details {
    padding: 16px 24px 16px;
    border-top: 1px solid #f1f5f9;
}

.service-details li {
    font-size: 14px;
    color: #475569;
    padding: 4px 0;
    padding-left: 20px;
    position: relative;
}

.service-details li::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 12px;
    width: 6px;
    height: 6px;
    background: #dbeafe;
    border: 1.5px solid #2563eb;
    border-radius: 50%;
}

.service-catalog-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 12px 24px 0;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
    color: #2563eb;
    background: #eff6ff;
    border: 1px solid #dbeafe;
    border-radius: 8px;
    transition: background 0.2s, border-color 0.2s;
}

.service-catalog-link:hover {
    background: #dbeafe;
    border-color: #93c5fd;
}

.service-note {
    margin: 10px 24px 16px;
    font-size: 12px;
    color: #64748b;
    line-height: 1.6;
}

/* --- Services Custom CTA --- */
.services-custom {
    margin-top: 56px;
}

.services-custom-inner {
    text-align: center;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border: 1px solid #bfdbfe;
    border-radius: 16px;
    padding: 48px 32px;
}

.services-custom-title {
    font-family: "MFW-PA1GothicStdN-Bold", 'Zen Kaku Gothic New', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: #1e3a5f;
    margin-bottom: 16px;
}

.services-custom-desc {
    font-size: 15px;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 28px;
}

.maintenance-block {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    position: relative;
    overflow: hidden;
}

.maintenance-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #2563eb, #60a5fa, transparent);
}

.maintenance-title {
    font-family: "MFW-PA1GothicStdN-Bold", 'Zen Kaku Gothic New', sans-serif;
    font-weight: 500;
    font-size: 15px;
    margin-bottom: 16px;
    color: #475569;
}

.maintenance-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.maintenance-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 20px 16px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    text-align: center;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.maintenance-item:hover {
    border-color: #93c5fd;
    box-shadow: 0 4px 12px rgba(37,99,235,0.08);
}

.maintenance-name {
    font-size: 14px;
    font-weight: 500;
    color: #334155;
}

.maintenance-price {
    font-size: 16px;
    font-weight: 700;
    color: #2563eb;
}

.maintenance-unit {
    font-size: 12px;
    font-weight: 400;
    color: #94a3b8;
    margin-left: 4px;
}

.maintenance-note {
    font-size: 12px;
    color: #94a3b8;
    text-align: center;
    margin-top: 12px;
}

/* ==========================================
   STARTUP PACKAGE
   ========================================== */
.startup {
    background: linear-gradient(135deg, #0f1c2e 0%, #1a2e4a 50%, #1e3a5f 100%);
    color: #ffffff;
    overflow: hidden;
}

.startup::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(37,99,235,0.12) 0%, transparent 60%);
    border-radius: 50%;
}

.startup::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(96,165,250,0.08) 0%, transparent 60%);
    border-radius: 50%;
}

.startup .container {
    position: relative;
    z-index: 1;
}

.startup-pricing {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.startup-price-card {
    text-align: center;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 28px 40px;
    backdrop-filter: blur(8px);
}

.startup-price-label {
    display: block;
    font-size: 14px;
    color: #93c5fd;
    margin-bottom: 8px;
    font-weight: 500;
}

.startup-price-value {
    display: block;
    font-family: "MFW-PA1GothicStdN-Bold", 'Zen Kaku Gothic New', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 1.2;
}

.startup-price-tax {
    display: block;
    font-size: 13px;
    color: #94a3b8;
    margin-top: 4px;
}

.startup-price-divider {
    font-size: 28px;
    font-weight: 300;
    color: #60a5fa;
}

.startup-contract {
    text-align: center;
    font-size: 14px;
    color: #94a3b8;
    margin-bottom: 48px;
}

.startup-contract strong {
    color: #ffffff;
}

.startup-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 40px;
}

.startup-col-title {
    font-family: "MFW-PA1GothicStdN-Bold", 'Zen Kaku Gothic New', sans-serif;
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

.startup-list li {
    font-size: 15px;
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.85);
}

.startup-check {
    color: #60a5fa;
    display: inline-flex;
    align-items: center;
}

.startup-bottom-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 24px;
    align-items: start;
    margin-bottom: 48px;
}

.startup-note {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 24px;
    backdrop-filter: blur(4px);
    align-self: center;
}

.startup-note-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: #60a5fa;
    margin-bottom: 8px;
    letter-spacing: 0.05em;
}

.startup-note p {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
}

/* --- Startup Option --- */
.startup-option {
    max-width: none;
    margin: 0;
}

.startup-option-title {
    font-family: "MFW-PA1GothicStdN-Bold", 'Zen Kaku Gothic New', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: #93c5fd;
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: 0.05em;
}

.startup-option-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 16px;
    padding: 24px;
}

.startup-option-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.startup-option-name {
    font-weight: 600;
    font-size: 16px;
    color: #ffffff;
}

.startup-option-price {
    font-family: "MFW-PA1GothicStdN-Bold", 'Zen Kaku Gothic New', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #60a5fa;
}

.startup-option-details {
    list-style: none;
}

.startup-option-details li {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
    padding-left: 16px;
    position: relative;
}

.startup-option-details li::before {
    content: '·';
    position: absolute;
    left: 4px;
    color: #60a5fa;
}

.startup-cta {
    text-align: center;
}

/* ==========================================
   FLOW
   ========================================== */
.flow {
    background: #ffffff;
}

.flow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
}

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

.flow-card {
    text-align: center;
    padding: 36px 20px;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(226,232,240,0.8);
    border-radius: 16px;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s, border-color 0.4s;
    position: relative;
    overflow: hidden;
}

.flow-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #2563eb, #60a5fa);
    border-radius: 0 0 2px 2px;
    opacity: 0;
    transition: opacity 0.3s;
}

.flow-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(37,99,235,0.1);
    border-color: #dbeafe;
}

.flow-card:hover::before {
    opacity: 1;
}

.flow-icon {
    font-size: 36px;
    margin-bottom: 16px;
    display: inline-block;
}

.flow-step {
    font-family: 'Cormorant Garamond', serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: #2563eb;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.flow-card-title {
    font-family: "MFW-PA1GothicStdN-Bold", 'Zen Kaku Gothic New', sans-serif;
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 8px;
}

.flow-card-desc {
    font-size: 14px;
    color: #475569;
}

/* ==========================================
   RESULTS
   ========================================== */
.results {
    background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 50%, #f8fafc 100%);
}

.results::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.stat-card {
    text-align: center;
    padding: 36px 16px;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(226,232,240,0.8);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stat-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #2563eb, #60a5fa);
    opacity: 0;
    transition: opacity 0.3s;
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(37,99,235,0.1);
}

.stat-card:hover::after {
    opacity: 1;
}

.stat-value {
    font-family: "MFW-PA1GothicStdN-Bold", 'Zen Kaku Gothic New', sans-serif;
    font-weight: 700;
    font-size: 36px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
    font-variant-numeric: tabular-nums;
    min-height: 1.3em;
    white-space: nowrap;
}

.stat-unit {
    font-size: 18px;
}

.stat-label {
    font-size: 13px;
    color: #475569;
    margin-top: 8px;
    white-space: nowrap;
}

.results-note {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 28px 32px;
    position: relative;
    overflow: hidden;
}

.results-note::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #2563eb, #60a5fa);
}

.results-note p {
    font-size: 14px;
    color: #475569;
    line-height: 1.9;
    padding-left: 12px;
}

/* ==========================================
   AI WORKS
   ========================================== */
.aiworks {
    background: #ffffff;
}

.aiworks::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
}

.aiworks-subtitle {
    text-align: center;
    margin-bottom: 32px;
}

.aiworks-subtitle h3 {
    font-family: "MFW-PA1GothicStdN-Bold", 'Zen Kaku Gothic New', sans-serif;
    font-weight: 500;
    font-size: 18px;
    color: #0f172a;
    display: inline-block;
    position: relative;
    padding-bottom: 8px;
}

.aiworks-subtitle h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 2px;
    background: #dbeafe;
    border-radius: 1px;
}

/* Public AI Tools */
.ai-public-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 64px;
}

.ai-public-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px 28px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.ai-public-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37,99,235,0.1);
    border-color: #dbeafe;
}

.ai-public-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eff6ff;
    border-radius: 12px;
    color: #2563eb;
}

.ai-public-content {
    flex: 1;
}

.ai-public-name {
    font-family: "MFW-PA1GothicStdN-Bold", 'Zen Kaku Gothic New', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #0f172a;
    margin-bottom: 4px;
}

.ai-public-desc {
    font-size: 13px;
    color: #64748b;
    line-height: 1.6;
}

.ai-public-arrow {
    flex-shrink: 0;
    font-size: 20px;
    color: #2563eb;
    transition: transform 0.3s;
}

.ai-public-card:hover .ai-public-arrow {
    transform: translateX(4px);
}

.ai-tools-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 64px;
}

.ai-tool-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 28px;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    overflow: hidden;
}

.ai-tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #2563eb, #60a5fa, #93c5fd);
}

.ai-tool-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(37,99,235,0.1);
    border-color: #dbeafe;
}

.ai-tool-badge {
    position: absolute;
    top: 20px;
    right: 16px;
    font-size: 11px;
    font-weight: 600;
    color: #2563eb;
    background: #eff6ff;
    padding: 4px 12px;
    border-radius: 9999px;
    border: 1px solid #dbeafe;
}

.ai-tool-name {
    font-family: "MFW-PA1GothicStdN-Bold", 'Zen Kaku Gothic New', sans-serif;
    font-weight: 500;
    font-size: 17px;
    margin-bottom: 12px;
    padding-right: 120px;
}

.ai-tool-desc {
    font-size: 14px;
    color: #475569;
    margin-bottom: 16px;
    line-height: 1.7;
}

.ai-tool-usage {
    background: linear-gradient(135deg, #f8fafc, #eff6ff);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 14px 18px;
}

.ai-tool-usage-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #2563eb;
    margin-bottom: 4px;
    letter-spacing: 0.03em;
}

.ai-tool-usage p {
    font-size: 13px;
    color: #475569;
}

.ai-solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.ai-solution-card {
    background: linear-gradient(135deg, #f8fafc, #ffffff);
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.ai-solution-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(37,99,235,0.1);
    border-color: #dbeafe;
}

.ai-solution-icon {
    font-size: 28px;
    margin-bottom: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: #eff6ff;
    border-radius: 12px;
}

.ai-solution-issue {
    font-family: "MFW-PA1GothicStdN-Bold", 'Zen Kaku Gothic New', sans-serif;
    font-weight: 500;
    font-size: 15px;
    margin-bottom: 8px;
}

.ai-solution-text {
    font-size: 13px;
    color: #475569;
    line-height: 1.7;
}

/* ==========================================
   INDUSTRIES
   ========================================== */
.industries {
    background: #f8fafc;
}

.industries::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
}

.industries-content {
    max-width: 720px;
    margin: 0 auto 32px;
    text-align: center;
}

.industry-group {
    margin-bottom: 32px;
}

.industry-group-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    color: #475569;
    margin-bottom: 14px;
}

.specialty-label {
    color: #2563eb;
    font-weight: 600;
}

.industry-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.industry-tag {
    display: inline-block;
    font-size: 14px;
    padding: 8px 18px;
    border-radius: 9999px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: #475569;
    transition: all 0.2s;
}

.industry-tag:hover {
    border-color: #cbd5e1;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.industry-tag.specialty {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #ffffff;
    border-color: transparent;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(37,99,235,0.25);
}

.industries-note {
    text-align: center;
    font-size: 14px;
    color: #475569;
    max-width: 640px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px 28px;
}

/* ==========================================
   ABOUT
   ========================================== */
.about {
    background: #ffffff;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 48px;
    align-items: start;
}

.about-photo-img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 16px 48px rgba(37,99,235,0.15);
}

.about-prose p {
    font-size: 15px;
    color: #475569;
    margin-bottom: 16px;
    line-height: 2;
}

.about-emphasis {
    font-weight: 600;
    color: #0f172a !important;
    font-size: 20px !important;
    line-height: 1.8 !important;
    position: relative;
    display: inline;
    background: linear-gradient(transparent 60%, rgba(37,99,235,0.08) 60%);
    margin-top: 8px !important;
}

.about-info-cards {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 0;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    overflow: hidden;
}

.about-info-item {
    display: flex;
    align-items: baseline;
    gap: 16px;
    padding: 14px 20px;
    border-bottom: 1px solid #e2e8f0;
}

.about-info-item:last-child {
    border-bottom: none;
}

.about-info-label {
    font-size: 13px;
    font-weight: 600;
    color: #2563eb;
    white-space: nowrap;
    min-width: 72px;
}

.about-info-value {
    font-size: 14px;
    color: #475569;
}

/* About hero mobile — hidden on desktop */
.about-hero-mobile {
    display: none;
}

/* ==========================================
   FAQ
   ========================================== */
.faq {
    background: #f8fafc;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
}

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

.faq-item {
    margin-bottom: 12px;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 24px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    text-align: left;
    transition: all 0.2s;
}

.faq-question:hover {
    border-color: #dbeafe;
    box-shadow: 0 2px 8px rgba(37,99,235,0.06);
}

.faq-item.open .faq-question {
    border-radius: 16px 16px 0 0;
    border-color: #dbeafe;
    box-shadow: 0 2px 8px rgba(37,99,235,0.06);
}

.faq-q-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #ffffff;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 14px;
    border-radius: 8px;
    flex-shrink: 0;
}

.faq-q-text {
    font-size: 15px;
    font-weight: 500;
    color: #0f172a;
    flex: 1;
}

.faq-toggle {
    color: #94a3b8;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-item.open .faq-toggle {
    transform: rotate(180deg);
    color: #2563eb;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    padding: 20px 24px 20px 66px;
    background: #ffffff;
    border: 1px solid #dbeafe;
    border-top: none;
    border-radius: 0 0 16px 16px;
    font-size: 14px;
    color: #475569;
    line-height: 1.9;
}

/* ==========================================
   CONTACT
   ========================================== */
.contact {
    background: linear-gradient(170deg, #eff6ff 0%, #dbeafe 50%, #e0e7ff 100%);
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(37,99,235,0.08) 0%, transparent 60%);
    border-radius: 50%;
}

.contact-inner {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
    position: relative;
}

.contact-title {
    font-family: "MFW-PA1GothicStdN-Bold", 'Zen Kaku Gothic New', sans-serif;
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 16px;
}

.contact-desc {
    font-size: 15px;
    color: #475569;
    margin-bottom: 40px;
    line-height: 1.9;
}

.contact-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: #ffffff;
    border: 1px solid rgba(255,255,255,0.8);
    border-radius: 16px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(37,99,235,0.12);
}

.contact-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.line-icon {
    background: linear-gradient(135deg, #06c755, #05b34b);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(6,199,85,0.25);
}

.email-icon {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(37,99,235,0.25);
}

.contact-card-label {
    font-weight: 500;
    font-size: 15px;
    flex: 1;
    text-align: left;
}

.contact-card-arrow {
    font-size: 18px;
    color: #94a3b8;
    transition: transform 0.3s;
}

.contact-card:hover .contact-card-arrow {
    transform: translateX(4px);
    color: #2563eb;
}

.contact-note {
    font-size: 13px;
    color: #64748b;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand-desc {
    font-size: 14px;
    margin-top: 16px;
    color: #94a3b8;
}

.footer-brand-location {
    font-size: 13px;
    color: #64748b;
    margin-top: 4px;
}

.footer-heading {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.1em;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav a {
    font-size: 14px;
    color: #94a3b8;
    transition: color 0.2s;
}

.footer-nav a:hover {
    color: #ffffff;
}

.footer-link {
    display: block;
    font-size: 14px;
    color: #94a3b8;
    margin-bottom: 10px;
    transition: color 0.2s;
    word-break: break-all;
}

.footer-link:hover {
    color: #ffffff;
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #64748b;
}

.footer-legal-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 16px;
}

.footer-legal-links a {
    font-size: 13px;
    color: #64748b;
    transition: color 0.2s;
}

.footer-legal-links a:hover {
    color: #2563eb;
}

/* --- Legal Pages --- */
.legal-page {
    padding-top: 140px;
}

.legal-content {
    max-width: 720px;
    margin: 0 auto;
}

.legal-content h2 {
    font-family: "MFW-PA1GothicStdN-Bold", 'Zen Kaku Gothic New', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #1e3a5f;
    margin: 32px 0 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e2e8f0;
}

.legal-content p {
    font-size: 15px;
    color: #334155;
    line-height: 1.8;
    margin-bottom: 12px;
}

.legal-content ul {
    margin: 0 0 16px 20px;
    list-style: disc;
}

.legal-content ul li {
    font-size: 15px;
    color: #334155;
    line-height: 1.8;
}

.legal-date {
    margin-top: 40px;
    font-size: 13px;
    color: #94a3b8;
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 32px;
}

.legal-table th,
.legal-table td {
    padding: 16px;
    font-size: 15px;
    line-height: 1.8;
    border-bottom: 1px solid #e2e8f0;
    text-align: left;
    vertical-align: top;
}

.legal-table th {
    width: 200px;
    font-weight: 600;
    color: #1e3a5f;
    background: #f8fafc;
}

.legal-table td {
    color: #334155;
}

.footer-back-link {
    color: #2563eb;
    font-size: 14px;
    transition: opacity 0.2s;
}

.footer-back-link:hover {
    opacity: 0.7;
}

@media (max-width: 768px) {
    .legal-table th {
        display: block;
        width: 100%;
        padding-bottom: 4px;
        border-bottom: none;
    }
    .legal-table td {
        display: block;
        padding-top: 0;
    }
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 768px) {
    .nav-desktop,
    .header-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .section {
        padding: 72px 0;
    }

    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 24px;
        letter-spacing: -0.02em;
    }

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

    .hero-desc {
        font-size: 11.5px;
        letter-spacing: -0.03em;
    }

    .hero-skills {
        gap: 4px;
    }

    .hero-skill-tag {
        padding: 3px 7px;
        font-size: 10px;
    }

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

    .hero-cta .btn {
        width: 100%;
        max-width: 320px;
    }

    .btn-lg {
        padding: 16px 28px;
        font-size: 14px;
        white-space: normal;
        text-align: center;
    }

    .hero-trust {
        flex-direction: row;
        justify-content: center;
        gap: 20px;
    }

    .hero-float {
        display: none;
    }

    .section-title {
        font-size: 24px;
    }

    /* Services */
    .tabs {
        gap: 8px;
        flex-wrap: nowrap;
    }

    .tab-btn {
        padding: 10px 20px;
        font-size: 13px;
        flex: 1;
        justify-content: center;
    }

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

    .maintenance-items {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    /* Startup */
    .startup-pricing {
        flex-direction: column;
        gap: 12px;
    }

    .startup-price-card {
        padding: 20px 32px;
        width: 100%;
    }

    .startup-price-value {
        font-size: 32px;
    }

    .startup-details,
    .startup-bottom-grid {
        grid-template-columns: 1fr;
    }

    /* Flow */
    .flow-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .flow-card {
        padding: 24px 16px;
    }

    /* Results */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-value {
        font-size: 28px;
    }

    /* AI Works */
    .ai-tools-grid {
        grid-template-columns: 1fr;
    }

    .ai-tool-name {
        padding-right: 0;
    }

    .ai-tool-badge {
        position: static;
        display: inline-block;
        margin-bottom: 12px;
    }

    .ai-solutions-grid {
        grid-template-columns: 1fr;
    }

    /* About — mobile hero: photo left + vertical catch right */
    .about-hero-mobile {
        display: flex;
        align-items: stretch;
        gap: 0;
        margin-bottom: 32px;
        position: relative;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 8px 32px rgba(15,23,42,0.12);
    }

    .about-hero-photo {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .about-hero-photo .about-photo-img {
        width: 100%;
        height: 100%;
        border-radius: 0;
        object-fit: cover;
        box-shadow: none;
    }

    .about-hero-catch {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 24px 12px;
        background: linear-gradient(160deg, #0f172a 0%, #1e293b 50%, #1e3a5f 100%);
        position: relative;
    }

    .about-hero-catch::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(ellipse at top right, rgba(37,99,235,0.15), transparent 60%);
        pointer-events: none;
    }

    .about-hero-catch .about-emphasis {
        writing-mode: vertical-rl;
        font-size: 18px !important;
        line-height: 2.4 !important;
        margin: 0 !important;
        letter-spacing: 0.22em;
        background: none !important;
        color: #ffffff !important;
        font-weight: 600;
        position: relative;
        z-index: 1;
    }

    /* Hide desktop photo and emphasis in about-grid on mobile */
    .about-grid .about-photo {
        display: none;
    }

    .about-grid .about-emphasis-desktop {
        display: none;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .about-photo-img {
        max-width: 220px;
        margin: 0 auto;
        display: block;
    }

    /* FAQ */
    .faq-question {
        padding: 16px 18px;
    }

    .faq-q-text {
        font-size: 14px;
    }

    .faq-answer p {
        padding: 16px 18px 16px 56px;
    }

    /* Contact */
    .contact-cards {
        grid-template-columns: 1fr;
    }

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

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ai-solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .flow-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ==========================================
   MODERN DESIGN ENHANCEMENTS v3
   ========================================== */

/* --- Subtle Grain Texture --- */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* --- Dot Pattern Decorations --- */
.dot-decoration {
    position: absolute;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(circle, rgba(37,99,235,0.1) 1.5px, transparent 1.5px);
    background-size: 16px 16px;
    z-index: 0;
    pointer-events: none;
    opacity: 0.6;
}

.dot-decoration-lg {
    width: 160px;
    height: 160px;
}

.dot-top-right {
    top: 40px;
    right: 24px;
}

.dot-bottom-left {
    bottom: 40px;
    left: 24px;
}

/* --- Glow Line Accent --- */
.glow-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #818cf8, #60a5fa);
    border-radius: 4px;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 0 16px rgba(37,99,235,0.3);
}

/* --- Enhanced Section Header --- */
.section-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #2563eb, #818cf8, #60a5fa, transparent);
    margin: 0 auto;
    border-radius: 2px;
    box-shadow: 0 0 12px rgba(37,99,235,0.2);
}

/* --- Gradient Text Utility --- */
.gradient-text {
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 50%, #2563eb 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 6s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* --- Enhanced Service Card Glow on Hover --- */
.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #2563eb, #818cf8, #60a5fa, transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.service-card:hover::after {
    opacity: 1;
}

/* --- Enhanced Flow Card Icon --- */
.flow-icon {
    font-size: 36px;
    margin-bottom: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #eff6ff, #e0e7ff);
    border-radius: 16px;
    color: #2563eb;
    transition: transform 0.3s, box-shadow 0.3s;
}

.flow-card:hover .flow-icon {
    transform: scale(1.08);
    box-shadow: 0 8px 24px rgba(37,99,235,0.15);
}

/* --- Enhanced Stat Card --- */
.stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(37,99,235,0.12);
}

.stat-card:hover::after {
    opacity: 1;
}

.stat-value {
    font-family: "MFW-PA1GothicStdN-Bold", 'Zen Kaku Gothic New', sans-serif;
    font-weight: 700;
    font-size: 36px;
    background: linear-gradient(135deg, #2563eb, #7c3aed, #3b82f6);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
    font-variant-numeric: tabular-nums;
    min-height: 1.3em;
    white-space: nowrap;
    animation: gradientShift 5s ease-in-out infinite;
}

/* --- Counter Animation --- */
.stat-value[data-count] {
    transition: opacity 0.3s;
}

/* --- AI Solution Card Enhancement --- */
.ai-solution-icon {
    font-size: 28px;
    margin-bottom: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #eff6ff, #e0e7ff);
    border-radius: 14px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.ai-solution-card:hover .ai-solution-icon {
    transform: scale(1.08) rotate(3deg);
    box-shadow: 0 6px 20px rgba(37,99,235,0.15);
}

/* --- About Photo Enhancement --- */
.about-photo {
    position: relative;
}

.about-photo::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    background: linear-gradient(135deg, #2563eb, #818cf8, #60a5fa, #2563eb);
    background-size: 300% 300%;
    border-radius: 24px;
    z-index: -1;
    opacity: 0.15;
    animation: gradientShift 8s ease-in-out infinite;
}

/* --- Contact Section Enhancement --- */
.contact {
    background: linear-gradient(170deg, #eef2ff 0%, #dbeafe 30%, #e0e7ff 60%, #ede9fe 100%);
    overflow: hidden;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.9);
    border-radius: 16px;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s;
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}

/* --- Marquee / Scrolling Banner --- */
.marquee-section {
    overflow: hidden;
    padding: 16px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    position: relative;
}

.marquee-track {
    display: flex;
    gap: 48px;
    animation: marqueeScroll 25s linear infinite;
    width: max-content;
}

.marquee-item {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.3);
    text-transform: uppercase;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 12px;
}

.marquee-item::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(96,165,250,0.4);
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- Section Background Patterns --- */
.section-pattern {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.section-pattern-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(37,99,235,0.06);
}

.section-pattern-circle:nth-child(1) {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -80px;
}

.section-pattern-circle:nth-child(2) {
    width: 200px;
    height: 200px;
    bottom: -60px;
    left: -40px;
}

.section-pattern-circle:nth-child(3) {
    width: 150px;
    height: 150px;
    top: 40%;
    left: 10%;
    border-color: rgba(99,102,241,0.05);
}

/* --- FAQ Enhancement --- */
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 24px;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    text-align: left;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* --- Industries Enhancement --- */
.industry-tag {
    display: inline-block;
    font-size: 14px;
    padding: 8px 18px;
    border-radius: 9999px;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid #e2e8f0;
    color: #475569;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.industry-tag:hover {
    border-color: #93c5fd;
    box-shadow: 0 4px 16px rgba(37,99,235,0.08);
    transform: translateY(-2px);
}

/* --- Enhanced Buttons --- */
.btn-primary {
    background: linear-gradient(135deg, #2563eb, #4f46e5);
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(37,99,235,0.25);
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1d4ed8, #4338ca);
    box-shadow: 0 8px 28px rgba(37,99,235,0.4);
    transform: translateY(-2px);
}

/* --- Maintenance Block Enhancement --- */
.maintenance-block {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(226,232,240,0.8);
    border-radius: 16px;
    padding: 24px;
    position: relative;
    overflow: hidden;
}

.maintenance-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 20px 16px;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border: 1px solid rgba(226,232,240,0.8);
    border-radius: 12px;
    text-align: center;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.maintenance-item:hover {
    border-color: #93c5fd;
    box-shadow: 0 8px 24px rgba(37,99,235,0.1);
    transform: translateY(-2px);
}

/* --- Services Custom CTA Enhancement --- */
.services-custom-inner {
    text-align: center;
    background: linear-gradient(135deg, #eff6ff 0%, #e0e7ff 50%, #dbeafe 100%);
    border: 1px solid rgba(191,219,254,0.8);
    border-radius: 20px;
    padding: 52px 36px;
    position: relative;
    overflow: hidden;
}

.services-custom-inner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(99,102,241,0.08) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}

.services-custom-inner::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -15%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(37,99,235,0.06) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}

/* --- Startup Section Enhancement --- */
.startup-price-card {
    text-align: center;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 20px;
    padding: 28px 40px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: border-color 0.3s, box-shadow 0.3s;
}

.startup-price-card:hover {
    border-color: rgba(96,165,250,0.3);
    box-shadow: 0 8px 32px rgba(37,99,235,0.15);
}

/* --- Footer Enhancement --- */
.footer {
    background: linear-gradient(180deg, #0f172a 0%, #020617 100%);
    color: #94a3b8;
    padding: 64px 0 0;
}

/* --- Responsive Adjustments for Enhancements --- */
@media (max-width: 768px) {
    .dot-decoration { display: none; }

    .marquee-item {
        font-size: 12px;
        gap: 10px;
    }

    .marquee-track {
        gap: 32px;
        animation-duration: 18s;
    }

    .services-custom-inner {
        padding: 40px 24px;
    }

    .about-photo::before {
        top: -5px;
        left: -5px;
        right: -5px;
        bottom: -5px;
        border-radius: 22px;
    }
}
