@charset "utf-8";

/* -------------------------------------------------------------------------- */
/*                                Inline CSS                                  */
/* -------------------------------------------------------------------------- */
:root {
    --color-primary: #003366;
    /* Deep Navy */
    --color-secondary: #00A8E8;
    /* Bright Blue */
    --color-accent: #FFC107;
    /* Warm Gold */
    --color-text-main: #333333;
    --color-text-sub: #555555;
    --color-bg-light: #F4F8FB;
    --color-bg-white: #FFFFFF;
    --color-danger: #E74C3C;

    --font-base: "Helvetica Neue", "Segoe UI", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    --font-heading: "Helvetica Neue", "Segoe UI", Arial, sans-serif;

    --shadow-card: 0 10px 20px rgba(0, 0, 0, 0.05);
    --shadow-float: 0 15px 30px rgba(0, 0, 0, 0.1);

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-pill: 50px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: var(--font-base);
    color: var(--color-text-main);
    margin: 0;
    padding: 0;
    line-height: 1.8;
    background-color: var(--color-bg-white);
    overflow-x: hidden;
    font-smooth: antialiased;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    margin: 0 0 1rem;
    font-weight: 700;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Utilities */
.section-bg-light {
    background-color: var(--color-bg-light);
}

.text-center {
    text-align: center;
}

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    border-radius: var(--radius-pill);
    font-weight: bold;
    font-size: 1rem;
    letter-spacing: 0.05em;
    cursor: pointer;
    border: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 18px 48px;
    font-size: 1.2rem;
}

.btn-primary {
    background: var(--color-primary);
    color: white;
    box-shadow: 0 4px 12px rgba(0, 51, 102, 0.3);
}

.btn-primary:hover {
    background: #002244;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 51, 102, 0.4);
}

.btn-secondary-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary-outline:hover {
    background: white;
    color: var(--color-primary);
    transform: translateY(-2px);
}

.btn-accent {
    background: var(--color-accent);
    color: #000;
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.4);
}

.btn-accent:hover {
    background: #ffcd2e;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(255, 193, 7, 0.5);
}

.btn-outline-white {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Section Title */
.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 4rem;
    color: var(--color-primary);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--color-secondary);
    margin: 16px auto 0;
    border-radius: 2px;
}

section {
    padding: 100px 0;
}

/* Header */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 20px 0;
}

.header .logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    /* Assuming hero image is dark/blue enough */
    letter-spacing: 0.1em;
}

.header nav a {
    color: #fff;
    margin-left: 24px;
    font-weight: 500;
    font-size: 0.95rem;
}

.header nav a:hover {
    color: var(--color-secondary);
}

.header .btn-sm {
    margin-left: 24px;
    background: white;
    color: var(--color-primary);
    box-shadow: none;
}

.header .btn-sm:hover {
    background: #f0f0f0;
}

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    /* Header space */
    overflow: hidden;
    color: white;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 35, 80, 0.85) 0%, rgba(0, 35, 80, 0.6) 50%, rgba(0, 35, 80, 0.2) 100%);
    z-index: -1;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.hero-text {
    flex: 1;
    max-width: 600px;
    padding-right: 40px;
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 24px;
    line-height: 1.25;
}

.hero-text .sub-copy {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-cta {
    display: flex;
    gap: 16px;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mockup-img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-float);
    transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
    max-width: 120%;
    /* Bleed out a bit */
}

/* Future Section */
.future-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.future .col {
    text-align: center;
    flex: 1;
    max-width: 400px;
}

.future-img-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    margin-bottom: 24px;
}

.future-img-wrapper img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.future-img-wrapper:hover img {
    transform: scale(1.05);
}

.label-bad,
.label-good {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 12px;
    font-weight: bold;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.label-bad {
    background: rgba(50, 50, 50, 0.8);
}

.label-good {
    background: var(--color-secondary);
}

.arrow-icon {
    font-size: 3rem;
    color: var(--color-secondary);
    font-weight: bold;
}

/* Problem Section */
.problem .checklist-box {
    background: white;
    border-radius: var(--radius-lg);
    padding: 60px;
    box-shadow: var(--shadow-card);
    max-width: 800px;
    margin: 0 auto;
    border-left: 8px solid var(--color-danger);
}

.checklist li {
    font-size: 1.25rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.check-icon {
    margin-right: 16px;
    color: var(--color-danger);
    font-size: 1.5rem;
}

.problem-summary {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
    text-align: center;
    font-weight: bold;
    font-size: 1.2rem;
    color: var(--color-text-sub);
}

/* Cause Section */
.cause-flow {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.flow-step {
    background: white;
    padding: 40px 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    text-align: center;
    width: 280px;
    height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.flow-step .icon {
    font-size: 4rem;
    margin-bottom: 24px;
}

.flow-step p {
    font-weight: bold;
    font-size: 1.1rem;
}

.flow-arrow {
    font-size: 2rem;
    color: #ccc;
}

/* Solution Section */
.solution {
    background: linear-gradient(135deg, #001f3f 0%, #003366 100%);
    color: white;
}

.solution-content {
    display: flex;
    align-items: center;
    gap: 60px;
    justify-content: space-around;
}

.solution-title {
    color: white;
    text-align: left;
    margin-bottom: 2rem;
}

.solution-title::after {
    margin: 16px 0 0;
}

.solution-list li {
    font-size: 1.3rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.benefit-box {
    margin-top: 40px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    padding: 30px;
    border-radius: var(--radius-lg);
    border-left: 5px solid var(--color-accent);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.benefit-text {
    font-size: 1.2rem;
    font-weight: bold;
    color: white;
    /* Assumes dark background section */
    margin: 0;
    line-height: 1.5;
}

.benefit-highlight {
    color: var(--color-accent);
    font-size: 1.4rem;
    display: block;
    margin-top: 8px;
}

/* 24H Icon in Glass Card */
.icon-24h {
    width: 120px;
    height: auto;
    margin-top: 10px;
    filter: drop-shadow(0 5px 15px rgba(0, 168, 232, 0.4));
}

.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 40px;
    border-radius: var(--radius-lg);
    text-align: center;
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


/* Pricing */
.pricing-card {
    background: white;
    max-width: 500px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-float);
    overflow: hidden;
    text-align: center;
}

.price-header {
    background: var(--color-primary);
    color: white;
    padding: 40px;
}

.price-header h3 {
    color: white;
    margin-bottom: 10px;
}

.price-tag {
    font-size: 1.5rem;
}

.big-zero {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
}

.price-body {
    padding: 40px;
}

.price-body ul {
    text-align: left;
    max-width: 300px;
    margin: 0 auto 30px;
}

.price-body li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.price-body li:last-child {
    border-bottom: none;
}

.note {
    color: var(--color-secondary);
    font-weight: bold;
}

/* Trust */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.trust-item {
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: var(--radius-md);
    border: 1px solid #eee;
    transition: transform 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-10px);
    border-color: var(--color-secondary);
}

.trust-item h3 {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 16px;
}

/* CTA */
.cta-section {
    background: #333;
    color: white;
    text-align: center;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/hero_background_1767492304979.png');
    background-size: cover;
    background-position: center bottom;
    padding: 120px 0;
}

.cta-buttons {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Footer */
.footer {
    background: #111;
    color: #666;
    padding: 30px 0;
    text-align: center;
    font-size: 0.9rem;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

/* Mobile Menu */
.hamburger {
    display: none;
    /* Desktop default */
    background: none;
    border: none;
    cursor: pointer;
    z-index: 200;
    padding: 10px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: white;
    margin: 5px 0;
    transition: 0.3s;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100%;
    background: var(--color-primary);
    z-index: 150;
    padding: 80px 40px;
    transition: 0.4s ease-in-out;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu nav {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.mobile-menu a {
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}

.close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s;
}

.modal.active {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    width: 90%;
    max-width: 500px;
    position: relative;
    transform: translateY(20px);
    transition: 0.3s;
}

.modal.active .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #999;
}

.modal-content h2 {
    text-align: center;
    color: var(--color-primary);
}

.modal-content p {
    text-align: center;
    margin-bottom: 30px;
    color: #666;
}

.modal-content .form-group {
    margin-bottom: 20px;
}

.modal-content label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.modal-content input,
.modal-content textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: var(--radius-md);
    font-size: 1rem;
}

.modal-content textarea {
    height: 100px;
    resize: vertical;
}

/* Responsive Updates */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-cta {
        justify-content: center;
        flex-direction: column;
    }

    .future-grid {
        flex-direction: column;
    }

    /* Target .active to override the reveal animation transform */
    .arrow-icon.active {
        transform: rotate(90deg);
        margin: 20px 0;
    }

    .solution-content {
        flex-direction: column-reverse;
    }

    .solution-title {
        text-align: center;
    }

    .solution-title::after {
        margin: 16px auto;
    }

    .cta-buttons {
        flex-direction: column;
    }

    /* Cause Section Mobile */
    .cause-flow {
        flex-direction: column;
    }

    .flow-arrow {
        transform: rotate(90deg);
        margin: 20px 0;
    }

    /* Mobile Nav */
    .desktop-nav {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .section-title {
        font-size: 1.8rem;
    }
}