* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #F5F5F7;
    overflow-x: hidden;
}

.container {
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* Background decorative blobs */
.blob-container {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}

.blob-1 {
    left: -5%;
    top: -5%;
    width: 25%;
    max-width: 300px;
    aspect-ratio: 1;
    background-color: #D8C7E8;
    opacity: 0.4;
}

.blob-2 {
    left: -3%;
    bottom: 10%;
    width: 30%;
    max-width: 350px;
    aspect-ratio: 1;
    background-color: #F5D7E8;
    opacity: 0.4;
}

.blob-3 {
    right: -5%;
    top: 15%;
    width: 28%;
    max-width: 320px;
    aspect-ratio: 1;
    background-color: #C5E3F6;
    opacity: 0.4;
}

.blob-4 {
    right: -8%;
    bottom: -5%;
    width: 35%;
    max-width: 400px;
    aspect-ratio: 1;
    background-color: #D8C7E8;
    opacity: 0.3;
}

/* Decorative circles - top right */
.circles-top {
    position: absolute;
    right: 6%;
    top: 2%;
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.circle {
    border-radius: 50%;
}

.circle-1 {
    width: 48px;
    height: 48px;
    border: 5px solid #0033FF;
    opacity: 0.7;
}

.circle-2 {
    width: 48px;
    height: 48px;
    border: 5px solid #5BA4D8;
    opacity: 0.6;
}

.circle-3 {
    width: 48px;
    height: 48px;
    border: 5px solid #8DC9E8;
    opacity: 0.5;
}

/* Decorative circles - bottom right */
.circles-bottom {
    position: absolute;
    right: 8%;
    bottom: 10%;
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.circle-4 {
    width: 64px;
    height: 64px;
    border: 6px solid #B8A8D8;
    opacity: 0.4;
}

.circle-5 {
    width: 80px;
    height: 80px;
    border: 6px solid #D8C7E8;
    opacity: 0.3;
}

/* Orange card top left */
.orange-card {
    position: absolute;
    left: 10%;
    top: 5%;
    width: 160px;
    aspect-ratio: 2/3;
    background: linear-gradient(to bottom right, #FF9A3C, #FFB84D);
    border-radius: 1.5rem;
    transform: rotate(-20deg);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    padding: 1rem;
    z-index: 0;
}

/* Orange card top left */
.orange-card-right {
    position: absolute;
    right: 14%;
    top: 18%;
    width: 200px;
    aspect-ratio: 2/3;
    background: linear-gradient(to bottom right,#ff453c,#ffb84d);
    border-radius: 1.5rem;
    transform: rotate(20deg);
    box-shadow: 0 25px 50px -12px rgba(0,0,0,.25);
    padding: 1rem;
    z-index: 0
}

.orange-card-lines {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.line {
    height: 0.5rem;
    background: white;
    border-radius: 0.25rem;
}

.line-full {
    width: 100%;
}

.line-80 {
    width: 80%;
}

.line-60 {
    width: 60%;
}

.line-spacer {
    margin-bottom: 1rem;
}

.orange-card-dots {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
}

/* Pink checkmark cards */
.pink-card-left {
    position: absolute;
    left: 2%;
    top: 35%;
    width: 140px;
    aspect-ratio: 3/4;
    background: #F5D7E8;
    border-radius: 1.5rem;
    transform: rotate(-15deg);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
}

.pink-card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 1.5rem;
}

.checkmark-large {
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
}

.pink-card-lines {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 75%;
}

.line-white {
    height: 0.5rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 0.25rem;
}

.line-white-67 {
    width: 67%;
}

.pink-card-right {
    position: absolute;
    right: 3%;
    bottom: 15%;
    width: 130px;
    aspect-ratio: 1;
    background: #E8D5E8;
    border-radius: 1rem;
    transform: rotate(15deg);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
}

.checkmark-small {
    width: 48px;
    height: 48px;
}

/* Header button */
.header {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 30;
}

.btn-pbvoice {
    background: #1A2B6D;
    color: white;
    padding: 0.625rem 1.25rem 0.625rem 0.75rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

    .btn-pbvoice:hover {
        background: #0033FF;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        transform: scale(1.05);
    }

.btn-icon {
    background: white;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.btn-text {
    font-size: 1rem;
    font-weight: 700;
}

/* Main content */
.main-content {
    position: relative;
    z-index: 30;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.content-wrapper {
    width: 100%;
    max-width: 900px;
}

.blue-panel {
    position: relative;
    background: linear-gradient(to bottom right, #0033FF, #2952CC);
    border-radius: 30px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    transform: rotate(-1deg);
    min-height: 600px;
}

.blue-overlay-1 {
    position: absolute;
    top: 8%;
    right: 10%;
    width: 180px;
    height: 180px;
    background: #4D6FE8;
    opacity: 0.3;
    border-radius: 1.5rem;
    transform: rotate(15deg);
}

.blue-overlay-2 {
    position: absolute;
    top: 15%;
    left: 5%;
    width: 150px;
    height: 150px;
    background: #5D7FE8;
    opacity: 0.2;
    border-radius: 1.5rem;
    transform: rotate(-10deg);
}

.blue-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    min-height: 600px;
    padding: 2rem 1.5rem 0;
}

.title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1;
    text-align: center;
    font-family: 'Outfit', sans-serif;
    background: linear-gradient(90deg, #FF8008 0%, #FFB84D 50%, #FFC960 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 20px rgba(255, 128, 8, 0.3);
}

.stars {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.star {
    width: 28px;
    height: 28px;
}

.spacer {
    flex-grow: 1;
}

.illustration-container {
    position: relative;
    width: 100%;
    max-width: 1030px;
    margin: 0 auto -2rem;
}

.illustration-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 537 / 316;
}

.illustration-inner {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.illustration {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Responsive design */
@media (min-width: 640px) {
    .orange-card {
        left: 15%;
        top: 5%;
        width: 200px;
        padding: 1.5rem;
    }

    .line {
        height: 0.75rem;
    }

    .orange-card-dots {
        bottom: 2rem;
    }

    .dot {
        width: 16px;
        height: 16px;
    }

    .pink-card-left {
        left: 5%;
        top: 40%;
        width: 180px;
    }

    .pink-card-right {
        right: 6%;
        bottom: 20%;
        width: 160px;
    }

    .checkmark-large {
        width: 80px;
        height: 80px;
    }

    .checkmark-small {
        width: 64px;
        height: 64px;
    }

    .circles-top {
        top: 3%;
        gap: 0.75rem;
    }

    .circle-1, .circle-2, .circle-3 {
        width: 56px;
        height: 56px;
        border-width: 6px;
    }

    .circle-4 {
        width: 80px;
        height: 80px;
        border-width: 8px;
    }

    .circle-5 {
        width: 96px;
        height: 96px;
        border-width: 8px;
    }

    .header {
        top: 1.5rem;
        right: 1.5rem;
    }

    .btn-pbvoice {
        padding: 0.875rem 1.75rem 0.875rem 1rem;
        gap: 0.75rem;
    }

    .btn-icon {
        width: 40px;
        height: 40px;
    }

    .btn-text {
        font-size: 1.125rem;
    }

    .main-content {
        padding: 1.5rem;
    }

    .blue-panel {
        border-radius: 40px;
    }

    .blue-overlay-1 {
        width: 220px;
        height: 220px;
    }

    .blue-overlay-2 {
        width: 180px;
        height: 180px;
    }

    .blue-content {
        padding: 2.5rem 2rem 0;
    }

    .title {
        font-size: 4.5rem;
        margin-bottom: 2rem;
    }

    .stars {
        gap: 0.75rem;
        margin-bottom: 2.5rem;
    }

    .star {
        width: 36px;
        height: 36px;
    }

    .illustration-container {
        margin-bottom: -2.5rem;
    }
}

@media (min-width: 768px) {
    .title {
        font-size: 6rem;
    }
}

@media (min-width: 1024px) {
    .orange-card {
        width: 280px;
    }

    .pink-card-left {
        width: 240px;
    }

    .pink-card-right {
        width: 200px;
    }

    .checkmark-large {
        width: 112px;
        height: 112px;
    }

    .checkmark-small {
        width: 80px;
        height: 80px;
    }

    .circles-top .circle {
        width: 80px;
        height: 80px;
        border-width: 8px;
    }

    .circle-4 {
        width: 112px;
        height: 112px;
        border-width: 10px;
    }

    .circle-5 {
        width: 128px;
        height: 128px;
        border-width: 10px;
    }

    .header {
        top: 2rem;
        right: 2rem;
    }

    .btn-text {
        font-size: 1.25rem;
    }

    .main-content {
        padding: 2rem;
    }

    .content-wrapper {
        max-width: 1000px;
    }

    .blue-panel {
        border-radius: 50px;
    }

    .blue-overlay-1 {
        width: 280px;
        height: 280px;
    }

    .blue-overlay-2 {
        width: 220px;
        height: 220px;
    }

    .blue-content {
        padding: 3rem 3rem 0;
    }

    .title {
        font-size: 9rem;
    }

    .stars {
        margin-bottom: 3rem;
    }

    .star {
        width: 48px;
        height: 48px;
    }

    .illustration-container {
        max-width: 1178px;
        margin-bottom: -3rem;
    }
}

@media (min-width: 1280px) {
    .title {
        font-size: 160px;
    }
}
