:root {
    --primary-color: #2563eb;
    --primary-hover: #1d4ed8;
    --secondary-color: #fef08a;
    --accent-color: #f43f5e;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --bg-main: #f8fafc;
    --bg-card: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.4);
}

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

body {
    font-family: 'M PLUS Rounded 1c', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

/* Background Decorations */
.background-decorations {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    background: linear-gradient(135deg, #e0f2fe 0%, #bfdbfe 100%);
}

.bubble {
    position: absolute;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.1));
    border-radius: 50%;
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.1);
    backdrop-filter: blur(4px);
    animation: float 20s infinite ease-in-out alternate;
}

.b1 {
    width: 350px;
    height: 350px;
    top: -100px;
    left: -100px;
}

.b2 {
    width: 450px;
    height: 450px;
    bottom: -150px;
    right: -100px;
    animation-delay: -5s;
}

.b3 {
    width: 180px;
    height: 180px;
    top: 40%;
    left: 15%;
    animation-delay: -10s;
}

.b4 {
    width: 280px;
    height: 280px;
    top: 15%;
    right: 10%;
    animation-delay: -15s;
}

@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    100% {
        transform: translate(60px, 60px) rotate(10deg);
    }
}

/* Layout */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

h1,
h2,
h3 {
    font-family: 'Outfit', 'M PLUS Rounded 1c', sans-serif;
    line-height: 1.2;
}

.highlight {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: -4px;
    right: -4px;
    height: 40%;
    background-color: var(--secondary-color);
    z-index: -1;
    transform: skewX(-15deg);
    border-radius: 4px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 64px;
    width: 100%;
}

.hero-text {
    flex: 1.1;
    animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.badge {
    display: inline-block;
    background: linear-gradient(90deg, #f43f5e, #fb923c);
    color: white;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 24px;
    box-shadow: 0 4px 15px rgba(244, 63, 94, 0.4);
    letter-spacing: 0.05em;
}

.title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    color: #0f172a;
    text-shadow: 0 4px 20px rgba(255, 255, 255, 0.5);
    word-break: keep-all;
    overflow-wrap: anywhere;
}

.nowrap {
    display: inline-block;
    white-space: nowrap;
}

.subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    font-weight: 500;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 1.25rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), #3b82f6);
    color: white;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
    border: 2px solid transparent;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 35px rgba(37, 99, 235, 0.4);
}

.btn-icon {
    margin-right: 12px;
    font-size: 1.25rem;
}

.hero-image-wrapper {
    flex: 0.9;
    animation: fadeIn 1s ease 0.3s forwards;
    opacity: 0;
    position: relative;
}

.window-frame {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    padding: 12px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15), 0 0 0 1px inset rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    transform: perspective(1000px) rotateY(-8deg) rotateX(4deg);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.window-frame:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
}

.window-header {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
    padding-left: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red {
    background-color: #ef4444;
}

.dot.yellow {
    background-color: #eab308;
}

.dot.green {
    background-color: #22c55e;
}

.hero-image {
    width: 100%;
    border-radius: 8px;
    display: block;
    border: 1px solid #e2e8f0;
}

/* Features Section */
.features {
    padding: 120px 0;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.5));
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 64px;
    color: #0f172a;
}

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

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

.feature-card {
    background: var(--bg-card);
    padding: 48px 32px;
    border-radius: 28px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.95);
}

.card-icon {
    font-size: 3rem;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #e0f2fe, #bae6fd);
    width: 88px;
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    box-shadow: 0 8px 16px rgba(186, 230, 253, 0.5);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: #1e293b;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 1rem;
    text-align: left;
}

/* Showcase Section */
.showcase {
    padding: 100px 0 160px;
}

.showcase-content {
    display: flex;
    align-items: center;
    gap: 80px;
}

.showcase-image-wrapper {
    flex: 1;
    position: relative;
    padding: 20px;
}

.image-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(234, 179, 8, 0.2) 0%, transparent 70%);
    z-index: -1;
    filter: blur(40px);
}

.showcase-image {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(37, 99, 235, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.8) inset;
    border: 8px solid white;
}

.floating {
    animation: float-soft 6s infinite ease-in-out;
}

@keyframes float-soft {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.showcase-text {
    flex: 1;
}

.showcase-text p {
    font-size: 1.25rem;
    margin-bottom: 32px;
    color: var(--text-muted);
}

.check-list {
    list-style: none;
}

.check-list li {
    font-size: 1.125rem;
    margin-bottom: 16px;
    font-weight: 700;
    color: var(--text-main);
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.6);
    padding: 12px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

/* Footer */
.footer {
    padding: 40px 0;
    text-align: center;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--glass-border);
}

.copyright {
    color: var(--text-muted);
    font-weight: 700;
    font-size: 0.875rem;
}

/* Animations */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 992px) {

    .hero-content,
    .showcase-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        padding-top: 40px;
    }

    .title {
        font-size: 3rem;
    }

    .section-title.text-left {
        text-align: center;
    }

    .check-list li {
        justify-content: center;
    }

    .window-frame {
        transform: none;
        margin-top: 40px;
    }

    .showcase-content {
        flex-direction: column-reverse;
    }
}

@media (max-width: 768px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }

    .title {
        font-size: 2.5rem;
    }
}