/* =========================================================
   CTA Landing Page – Full Stylesheet
   Clean SaaS hero + product preview + feature section
   ========================================================= */

/* ------------------ Reset / Base ------------------ */

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
                 Roboto, Helvetica, Arial, sans-serif;
    background: #f6f7fb;
    color: #222;
    -webkit-font-smoothing: antialiased;
}

/* ------------------ HERO SECTION ------------------ */

.landing-hero {
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 90px 20px 140px 20px;
    background: linear-gradient(135deg, #ffffff 0%, #f9f2f6 100%);
    border-bottom: 1px solid #ececec;
}

/* Glow blobs */
.hero-bg::before,
.hero-bg::after {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.35;
    z-index: 0;
}

.hero-bg::before {
    background: #ff4fb3;
    top: -120px;
    left: -120px;
}

.hero-bg::after {
    background: #8a5cff;
    bottom: -160px;
    right: -120px;
}

/* Hero content sits above glow */
.landing-hero-content {
    position: relative;
    z-index: 2;
    max-width: 780px;
    margin: 0 auto;
}

/* Logo */
.landing-logo {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: linear-gradient(135deg, #b0006d, #7a004c);
    color: white;
    font-weight: 700;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px auto;
    letter-spacing: 1px;
    box-shadow: 0 15px 35px rgba(176,0,109,0.25);
}

/* Title */
.landing-title {
    font-size: 80px;
    font-weight: 700;
    margin: 10px 0 18px 0;
}

/* Subtitle */
.landing-subtitle {
    max-width: 620px;
    margin: 0 auto 36px auto;
    font-size: 19px;
    line-height: 1.6;
    color: #555;
}

/* Buttons */
.landing-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.landing-btn {
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 14px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.15s ease;
}

.landing-btn.primary {
    background: #b0006d;
    color: white;
    box-shadow: 0 8px 20px rgba(176,0,109,0.25);
}

.landing-btn.primary:hover {
    background: #8c0056;
    transform: translateY(-2px);
}

.landing-btn.secondary {
    background: #f2f2f5;
    color: #333;
}

.landing-btn.secondary:hover {
    background: #e7e7ec;
}

/* Trust line */
.trust-line {
    margin-top: 26px;
    font-size: 14px;
    color: #777;
}

/* ------------------ PRODUCT PREVIEW ------------------ */

.product-preview {
    margin-top: 70px;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.preview-card {
    width: 420px;
    background: white;
    border-radius: 18px;
    box-shadow: 0 30px 70px rgba(0,0,0,0.15);
    overflow: hidden;
    transform: rotate(-2deg);
}

.preview-header {
    background: #f6f7fb;
    padding: 14px 18px;
    font-weight: 600;
    border-bottom: 1px solid #eee;
}

.preview-content {
    padding: 22px;
}

.preview-line {
    height: 10px;
    background: #eee;
    border-radius: 5px;
    margin-bottom: 12px;
}

.w90 { width: 90%; }
.w85 { width: 85%; }
.w70 { width: 70%; }
.w60 { width: 60%; }

.preview-tag {
    display: inline-block;
    margin-top: 10px;
    padding: 6px 10px;
    border-radius: 999px;
    background: #f3e6ff;
    color: #6b2cc7;
    font-size: 12px;
    font-weight: 600;
}

/* ------------------ SECOND SECTION ------------------ */

.landing-section {
    padding: 90px 20px;
    text-align: center;
    background: white;
}

.landing-section h2 {
    font-size: 34px;
    margin-bottom: 45px;
}

.feature-grid {
    max-width: 900px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-icon {
    font-size: 36px;
    margin-bottom: 10px;
}

.feature h3 {
    margin-bottom: 8px;
    font-size: 20px;
}

.feature p {
    color: #666;
    line-height: 1.6;
}

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

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

    .preview-card {
        width: 92%;
        transform: none;
    }

    .landing-title {
        font-size: 34px;
    }

    .landing-subtitle {
        font-size: 17px;
    }
}



/* ------------------ BRAND HEADER ------------------ */

.brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 26px;
}

/* Circle badge stays bold and iconic */
.logo-badge {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, #b0006d, #7a004c);
    color: white;
    font-weight: 700;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 1px;
    box-shadow: 0 12px 28px rgba(176,0,109,0.25);
}

/* Product name becomes elegant + quiet */
.brand-name {
    font-size: 22px;
    font-weight: 600;
    color: #333;
}
