@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&display=swap');

:root {
    /* Colors */
    --col-main: #0F172A;      /* Navy */
    --col-sub: #64748B;       /* Slate */
    --col-accent: #F97316;    /* Orange */
    --col-accent-dark: #EA580C;
    --col-bg: #F8FAFC;        /* Lightest Slate */
    --col-surface: #FFFFFF;
    --col-border: #E2E8F0;
    --col-success: #10B981;
    
    /* Modern Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(15, 23, 42, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.1), 0 2px 4px -1px rgba(15, 23, 42, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.1), 0 4px 6px -2px rgba(15, 23, 42, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(15, 23, 42, 0.1), 0 10px 10px -5px rgba(15, 23, 42, 0.04);
    --shadow-float: 0 25px 50px -12px rgba(15, 23, 42, 0.25);
    --glow-accent: 0 0 20px rgba(249, 115, 22, 0.3);

    /* Layout */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    --container-w: 1120px;
}

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

body {
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--col-main);
    background-color: var(--col-bg);
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
img, svg { display: block; max-width: 100%; }

/* Layout */
.container {
    max-width: var(--container-w);
    margin: 0 auto;
    padding: 0 24px;
}

/* Utility Classes */
.text-accent { color: var(--col-accent); }
.bg-light { background: #fff; }
.bg-slate { background: #F1F5F9; }

/* Animation - Fade Up */
.js-fade {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.js-fade.active {
    opacity: 1;
    transform: translateY(0);
}
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }

/* Components: Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-weight: 700;
    font-size: 16px;
    border-radius: var(--radius-full);
    transition: all 0.2s ease;
    border: 2px solid transparent;
    cursor: pointer;
    letter-spacing: 0.02em;
}

.btn-primary {
    background-color: var(--col-accent);
    color: #fff;
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    background-color: var(--col-accent-dark);
}

.btn-secondary {
    background-color: #fff;
    color: var(--col-main);
    border-color: var(--col-border);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    border-color: var(--col-main);
    background-color: #F8FAFC;
}

.btn-header {
    background-color: var(--col-main);
    color: #fff;
    padding: 10px 24px;
    font-size: 14px;
    border-radius: var(--radius-full);
    font-weight: 700;
}
.btn-header:hover { background-color: #334155; }

/* Header */
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
    height: 72px;
}

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

/* Hamburger Menu */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    position: relative;
    z-index: 102;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--col-main);
    position: absolute;
    left: 8px;
    transition: 0.3s;
}

.menu-toggle span:nth-child(1) { top: 12px; }
.menu-toggle span:nth-child(2) { top: 19px; }
.menu-toggle span:nth-child(3) { top: 26px; }

.menu-toggle.active span:nth-child(1) { transform: rotate(45deg); top: 19px; }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg); top: 19px; }

.logo {
    display: flex;
    align-items: center;
    height: 100%;
    text-decoration: none;
}

.logo-svg {
    height: 40px;
    width: auto;
    max-width: 320px;
    overflow: visible;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 32px;
    font-size: 15px;
    font-weight: 700;
    color: var(--col-sub);
}
.site-nav a:not(.btn-header):hover { color: var(--col-accent); }

/* Hero Section */
.hero {
    padding: 160px 0 100px;
    position: relative;
    overflow: visible;
}

.hero-bg-accent {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(249,115,22,0.08) 0%, rgba(255,255,255,0) 70%);
    z-index: -1;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: var(--col-main);
    font-feature-settings: "palt";
    letter-spacing: -0.03em;
    line-height: 1.3;
}

.hero-content h1 br { display: block; }

.hero-content p {
    font-size: 18px;
    color: var(--col-sub);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-content strong {
    color: var(--col-main);
    background: linear-gradient(transparent 60%, #FED7AA 60%);
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.hero-trust-text {
    font-size: 13px;
    color: var(--col-sub);
    opacity: 0.8;
}

/* Hero Visual Frame (Main Image) */
.visual-frame {
    position: relative;
    z-index: 1;
    transition: transform 0.3s;
}
.visual-frame:hover { transform: translateY(-5px); }

.hero-image-frame {
    padding: 12px;
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
    object-fit: cover;
}

/* Pain Points */
section { padding: 100px 0; }
section.pain-points { padding-top: 60px; }

.section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 60px;
}
.section-header h2 {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--col-main);
}
.section-header p { color: var(--col-sub); font-size: 16px; }

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

.pain-card {
    background: #fff;
    border: 1px solid var(--col-border);
    padding: 32px;
    border-radius: var(--radius-md);
    display: flex;
    gap: 20px;
    transition: 0.3s;
}
.pain-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: transparent;
    transform: translateY(-3px);
}

.pain-icon-wrapper {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: #FEE2E2;
    color: #EF4444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pain-icon-wrapper svg { width: 24px; }

.pain-title { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.pain-detail { font-size: 14px; color: var(--col-sub); line-height: 1.7; }

/* Features */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card {
    background: #fff;
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--col-border);
    transition: 0.3s;
    text-align: center;
}
.feature-card:hover {
    border-color: var(--col-accent);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: var(--col-bg);
    color: var(--col-main);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: 0.3s;
}
.feature-card:hover .feature-icon {
    background: var(--col-accent);
    color: #fff;
}
.feature-icon svg { width: 30px; height: 30px; }
.feature-card h3 { font-size: 18px; margin-bottom: 12px; }
.feature-card p { font-size: 14px; color: var(--col-sub); }


/* =========================================
   CSS UI Components (No Images)
   ========================================= */

/* Details Section */
.details-container { display: flex; flex-direction: column; gap: 120px; }

.detail-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.detail-block.reverse { direction: rtl; }
.detail-block.reverse .detail-content { direction: ltr; }

.detail-tag {
    font-size: 12px;
    font-weight: 800;
    color: var(--col-accent);
    letter-spacing: 0.1em;
    margin-bottom: 12px;
    display: block;
}
.detail-content h3 { font-size: 28px; margin-bottom: 20px; line-height: 1.4; }
.detail-content p { font-size: 16px; color: var(--col-sub); margin-bottom: 32px; }

/* Visual Frame Base for Details */
.visual-frame.detail {
    background: #F1F5F9; /* var(--bg-slate) */
    border-radius: 24px;
    padding: 24px; /* Reduced from 40px */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px; /* Reduced from 380px */
    overflow: hidden;
}

/* --- Common UI Card Style --- */
.ui-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.15); /* Deep shadow */
    width: 100%;
    max-width: 340px;
    padding: 24px;
    position: relative;
    border: 1px solid rgba(255,255,255,0.8);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}
.visual-frame:hover .ui-card {
    transform: translateY(-5px);
}

/* --- 1. Chart Component --- */
.ui-chart .ui-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.ui-title-bar {
    font-size: 14px;
    font-weight: 700;
    color: var(--col-sub);
}
.ui-dots span {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #E2E8F0;
    border-radius: 50%;
    margin-left: 4px;
}

.chart-container {
    display: flex;
    height: 180px;
    gap: 10px;
    margin-bottom: 16px;
}
.chart-y-axis {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-size: 10px;
    color: #94A3B8;
    padding-bottom: 20px;
}
.chart-bars {
    flex: 1;
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    border-bottom: 2px solid #F1F5F9;
    padding-bottom: 0;
}

.bar-group {
    display: flex;
    gap: 6px;
    align-items: flex-end;
    position: relative;
    width: 30%;
    height: 100%;
    justify-content: center;
}
.bar {
    width: 14px;
    border-radius: 4px 4px 0 0;
    transition: height 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.bar-cost { background: #CBD5E1; }
.bar-profit { background: var(--col-main); }

.bar-group.active .bar-profit {
    background: var(--col-accent); /* Highlight */
}
.bar-label {
    position: absolute;
    bottom: -24px;
    font-size: 12px;
    font-weight: 700;
    color: var(--col-sub);
}

/* Tooltip Animation */
.tooltip {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: var(--col-main);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    animation: popIn 0.5s 0.5s forwards;
}
.tooltip::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 4px 4px 0;
    border-style: solid;
    border-color: var(--col-main) transparent transparent;
}
@keyframes popIn {
    to { opacity: 1; transform: translateX(-50%) translateY(-45px); }
}

.ui-legend {
    display: flex;
    justify-content: center;
    gap: 16px;
    font-size: 12px;
    color: var(--col-sub);
    margin-top: 10px;
}
.dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; margin-right: 6px; }
.dot.cost { background: #CBD5E1; }
.dot.profit { background: var(--col-accent); }


/* --- 2. Invoice Component --- */
.ui-invoice {
    background: transparent; /* Container is transparent */
    box-shadow: none;
    border: none;
    padding: 0;
    align-items: center;
}

.paper-sheet {
    background: #fff;
    width: 100%;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: relative;
    border-radius: 4px; /* Slightly sharp corners for paper */
    margin-bottom: 20px;
}
/* Paper Stack Effect */
.paper-sheet::before {
    content: '';
    position: absolute;
    top: -4px; left: 4px; right: -4px; bottom: 4px;
    background: #fff;
    z-index: -1;
    border: 1px solid #E2E8F0;
    border-radius: 4px;
}

.inv-top { display: flex; justify-content: space-between; margin-bottom: 24px; }
.inv-logo { width: 30px; height: 30px; background: var(--col-main); border-radius: 4px; opacity: 0.8; }
.line { height: 6px; background: #F1F5F9; border-radius: 3px; margin-bottom: 6px; }
.line.sm { width: 60px; }

.inv-title {
    font-size: 16px;
    font-weight: 900;
    border-bottom: 2px solid var(--col-main);
    padding-bottom: 8px;
    margin-bottom: 16px;
    color: var(--col-main);
}

.inv-rows .inv-row {
    height: 24px;
    border-bottom: 1px solid #F1F5F9;
    margin-bottom: 8px;
    position: relative;
}
.inv-row.header { background: #F8FAFC; border: none; }
.inv-row::after {
    content: '';
    position: absolute;
    top: 8px; left: 0;
    width: 60%; height: 6px;
    background: #E2E8F0;
    border-radius: 3px;
}

.inv-total-area {
    margin-top: 20px;
    text-align: right;
    border-top: 2px solid #E2E8F0;
    padding-top: 12px;
}
.inv-total-area span { display: block; font-size: 10px; color: var(--col-sub); }
.inv-total-area .price { font-size: 20px; font-weight: 900; color: var(--col-main); margin-top: 4px; }

.stamp-mark {
    position: absolute;
    bottom: 30px;
    left: 40px;
    width: 60px;
    height: 60px;
    border: 3px double #EF4444;
    border-radius: 50%;
    color: #EF4444;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 14px;
    transform: rotate(-15deg);
    opacity: 0.8;
    mix-blend-mode: multiply;
}

.ui-action-btn {
    background: var(--col-main);
    color: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    transition: 0.3s;
}
.ui-action-btn:hover { background: #334155; transform: scale(1.05); }


/* --- 3. Mobile/GPS Component --- */
.ui-mobile-frame {
    width: 260px; /* Typical phone width */
    height: 100%;
    max-height: 380px;
    background: #1E293B; /* Bezel color */
    border-radius: 32px;
    padding: 8px;
    box-shadow: var(--shadow-xl);
    position: relative;
    margin: 0 auto;
}

.mobile-screen {
    background: #fff;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.mobile-notch {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 18px;
    background: #1E293B;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    z-index: 10;
}

/* Abstract Map Background */
.map-view {
    flex: 1;
    background-color: #E2E8F0;
    background-image: 
        radial-gradient(#CBD5E1 2px, transparent 2.5px),
        linear-gradient(white 2px, transparent 2px),
        linear-gradient(90deg, white 2px, transparent 2px);
    background-size: 20px 20px, 80px 80px, 80px 80px; /* Dots + Grid */
    background-position: 0 0, -2px -2px, -2px -2px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-badge {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.9);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    color: var(--col-main);
    box-shadow: var(--shadow-sm);
    white-space: nowrap;
}

.map-pin {
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 4px 4px rgba(0,0,0,0.2));
}
.pin-head {
    width: 24px;
    height: 24px;
    background: var(--col-accent);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    position: relative;
}
.pin-head::after {
    content: '';
    position: absolute;
    width: 10px; height: 10px;
    background: #fff;
    border-radius: 50%;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}
.pin-pulse {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 10px; height: 10px;
    background: var(--col-accent);
    border-radius: 50%;
    z-index: -1;
    animation: mapPulse 2s infinite;
}
@keyframes mapPulse {
    0% { width: 10px; height: 10px; opacity: 0.8; }
    100% { width: 80px; height: 80px; opacity: 0; }
}

.mobile-ui-bottom {
    background: #fff;
    padding: 20px;
    border-top: 1px solid #F1F5F9;
    text-align: center;
    z-index: 5;
}
.time-widget {
    font-size: 28px;
    font-weight: 900;
    font-family: monospace;
    color: var(--col-main);
    margin-bottom: 12px;
    letter-spacing: 1px;
}
.btn-punch {
    background: linear-gradient(135deg, var(--col-accent), #EA580C);
    color: #fff;
    border: none;
    width: 100%;
    padding: 12px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
    cursor: pointer;
}


/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: flex-end;
}

.price-card {
    background: #fff;
    padding: 40px 24px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--col-border);
    text-align: center;
    position: relative;
}

.price-card.rec {
    border: 2px solid var(--col-accent);
    padding-top: 50px;
    z-index: 2;
    box-shadow: var(--shadow-xl);
    transform: scale(1.05);
    transform-origin: center bottom;
}

.rec-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--col-accent);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(249,115,22,0.4);
}

.rec-glow {
    position: absolute;
    /* Extend slightly outside the card border */
    top: -2px; 
    left: -2px;
    right: -2px;
    bottom: -2px;
    box-shadow: var(--glow-accent);
    border-radius: var(--radius-lg);
    opacity: 0.5;
    z-index: -1;
}

.price-card h4 { font-size: 20px; margin-bottom: 4px; font-weight: 900; }
.plan-desc-text { font-size: 12px; color: var(--col-sub); margin-bottom: 20px; height: 20px; }

.price-amt { font-size: 36px; font-weight: 900; color: var(--col-main); line-height: 1; }
.price-amt .unit { font-size: 14px; }
.annual-fee { font-size: 12px; color: var(--col-sub); background: #F8FAFC; padding: 8px; border-radius: 4px; margin: 12px 0 24px; }

.plan-list { text-align: left; margin-bottom: 24px; }
.plan-list li {
    padding: 10px 0;
    font-size: 13px;
    border-bottom: 1px solid #F1F5F9;
    display: flex;
    gap: 8px;
}
.plan-list li svg { width: 16px; color: var(--col-accent); flex-shrink: 0; }

.btn-small { padding: 10px 20px; font-size: 14px; width: 100%; }
.pricing-note { text-align: center; font-size: 11px; color: #94A3B8; margin-top: 24px; }

/* Contact Box */
.contact-box {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: 0;
    overflow: hidden;
    display: flex;
    border: 1px solid var(--col-border);
}

.contact-grid { display: flex; width: 100%; }

.contact-info {
    flex: 1;
    padding: 60px;
    background: var(--col-main);
    color: #fff;
}
.contact-info h2 { font-size: 28px; margin-bottom: 20px; }
.contact-info p { color: #94A3B8; margin-bottom: 32px; }
.contact-checks li {
    margin-bottom: 16px;
    padding-left: 24px;
    position: relative;
    font-weight: 700;
}
.contact-checks li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--col-accent);
}

.contact-form-wrapper {
    flex: 1;
    padding: 60px;
}
.form-input {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--col-border);
    border-radius: 6px;
    background: #F8FAFC;
    transition: 0.2s;
}
.form-input:focus { outline: none; border-color: var(--col-accent); background: #fff; }
.form-group { margin-bottom: 20px; }
.form-group label { font-size: 13px; font-weight: 700; display: block; margin-bottom: 6px; }
.btn-block { width: 100%; }

/* Footer */
footer { padding: 40px 0; background: #fff; border-top: 1px solid #F1F5F9; color: #94A3B8; font-size: 12px; text-align: center; }


/* -------------------------------------------------- */
/* Responsive Design                                  */
/* -------------------------------------------------- */

/* Tablet (up to 1024px) */
@media (max-width: 1024px) {
    .container {
        padding: 0 32px;
        max-width: 100%;
    }
    
    .hero {
        padding: 140px 0 80px;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .pricing-grid {
        gap: 20px;
    }
    
    .price-amt { font-size: 32px; }
}

/* Mobile (up to 768px) */
@media (max-width: 768px) {
    /* Layout Reset */
    .container {
        padding: 0 20px;
    }

    .hero-grid, 
    .detail-block, 
    .pain-grid, 
    .contact-grid {
        grid-template-columns: 1fr;
        display: flex;
        flex-direction: column;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }

    .detail-block.reverse {
        flex-direction: column; /* Cancel reverse for mobile */
    }
    
    /* Typography Adjustments */
    .hero-visual {
        order: -1;
    }

    .hero-content { 
        text-align: center; 
        margin-bottom: 40px;
    }
    
    .hero-content h1 {
        font-size: 32px;
        line-height: 1.4;
        word-break: auto-phrase;
        overflow-wrap: break-word;
    }
    
    .hero-content p {
        font-size: 16px;
        margin-bottom: 32px;
        text-align: left;
        line-height: 1.8;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        padding: 14px 20px;
    }
    
    /* Spacing Adjustments */
    section {
        padding: 60px 0;
    }
    
    section.pain-points {
        padding-top: 0;
    }
    
    .section-header h2 {
        font-size: 26px;
    }
    
    /* Card Adjustments */
    .pain-card {
        padding: 24px;
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .pain-content {
        text-align: center;
    }
    
    .pain-title {
        margin-top: 16px;
        word-break: auto-phrase;
    }

    .pain-detail {
        text-align: justify;
    }
    
    /* Pricing Optimization for Mobile (Horizontal Scroll) */
    .pricing-grid {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 16px;
        padding: 20px 20px 40px; /* Bottom padding for scrollbar/shadow space */
        margin: 0 -20px; /* Expand to screen edges (matches container padding) */
        width: calc(100% + 40px);
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scroll-padding-left: 20px;
        /* Hide scrollbar */
        scrollbar-width: none; /* Firefox */
    }
    .pricing-grid::-webkit-scrollbar {
        display: none; /* Chrome/Safari */
    }

    .price-card {
        flex: 0 0 85%;
        min-width: 85%; /* Ensure it doesn't shrink */
        max-width: 320px;
        scroll-snap-align: center;
        margin: 0;
        display: flex;
        flex-direction: column;
        text-align: left;
        box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        border: 1px solid var(--col-border);
    }

    /* Change order for mobile: Recommended first */
    .price-card.rec {
        order: -1;
    }

    /* Slider Pagination Dots */
    .slider-pagination {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: -20px; /* Pull up closer to cards */
        margin-bottom: 30px;
    }
    .slider-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #E2E8F0;
        cursor: pointer;
        transition: 0.3s;
    }
    .slider-dot.active {
        background: var(--col-accent);
        transform: scale(1.2);
    }

    /* Hide scrollbar for cleaner look */
    .pricing-grid::-webkit-scrollbar {
        display: none;
    }

    .price-card h4, .price-amt, .plan-desc-text, .pricing-note {
        text-align: center; /* Keep headers centered */
    }

    .price-amt {
        font-size: 42px; /* Larger price on mobile for impact */
    }

    .plan-list li {
        font-size: 14px; /* Larger text for readability */
        padding: 12px 0;
    }
    
    /* Contact Box */
    .contact-info, .contact-form-wrapper {
        padding: 40px 24px;
    }
    
    .contact-info h2 {
        font-size: 24px;
    }
    
    /* Visuals Mobile Adjustments */
    .visual-frame.detail {
        padding: 24px;
        min-height: auto; /* Allow height to shrink */
        height: auto;
    }
    .ui-card {
        max-width: 100%;
        padding: 20px;
        box-shadow: none; /* Flatten on mobile for cleaner look */
        border: none;
    }
    .chart-bars { gap: 4px; }
    

    /* Header Mobile */
    .header-inner {
        padding: 0 20px;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .site-nav {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: #fff;
        padding: 80px 24px;
        box-shadow: var(--shadow-xl);
        transition: 0.3s;
        z-index: 101;
        align-items: flex-start;
        gap: 24px;
    }
    
    .site-nav.active {
        right: 0;
    }
    
    .site-nav a {
        font-size: 18px;
        width: 100%;
        padding: 12px 0;
        border-bottom: 1px solid #F1F5F9;
    }
    
    .site-nav .btn-header {
        text-align: center;
        margin-top: 20px;
        background: var(--col-main);
        color: #fff;
        width: 100%;
    }
    
    .logo-svg {
        height: 20px;
        width: auto;
    }
}