* { box-sizing: border-box; }
html, body {
    margin: 0;
    padding: 0;
    background: #f0f0f0;
    -webkit-text-size-adjust: 100%;
}
.page-wrapper {
    max-width: 380px;
    margin: 0 auto;
    background: #fff;
    min-height: 100vh;
    box-shadow: 0 0 30px rgba(0,0,0,.08);
    overflow: hidden;
}
.hero {
    background: linear-gradient(135deg, #198754 0%, #146c43 100%);
    color: #fff;
    padding: 48px 24px 36px;
    text-align: center;
}
.hero .logo {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 4px;
}
.hero .logo span { color: #a3cfbb; }
.hero h1 {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.5;
    margin: 16px 0 0;
}
.domain-highlight {
    background: #fff;
    color: #198754;
    border-radius: 12px;
    margin: 24px 20px 0;
    padding: 20px;
    text-align: center;
}
.domain-highlight .label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #146c43;
    margin-bottom: 8px;
}
.domain-highlight .domain {
    font-size: 18px;
    font-weight: 800;
    color: #198754;
    word-break: break-all;
}
.domain-highlight .desc {
    font-size: 13px;
    color: #666;
    margin-top: 8px;
    line-height: 1.6;
}

section { padding: 28px 20px; }
section.alt { background: #f0faf4; }

.section-title {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.section-title i { color: #198754; }

.selling-points .point {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}
.selling-points .point .icon-circle {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: #198754;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}
.selling-points .point h3 {
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 2px;
    color: #222;
}
.selling-points .point p {
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.partner-logos {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
    text-align: center;
}
.partner-logos span {
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.partner-logos .logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 12px;
}
.partner-logos .logos img {
    height: 28px;
    opacity: .55;
    transition: opacity .15s;
}
.partner-logos .logos img:hover {
    opacity: 1;
}

.pitch-box {
    background: linear-gradient(135deg, #198754, #146c43);
    color: #fff;
    border-radius: 12px;
    padding: 20px;
    margin-top: 8px;
    text-align: center;
}
.pitch-box .quote {
    font-size: 15px;
    line-height: 1.7;
    font-weight: 500;
}
.pitch-box .domain-demo {
    display: inline-block;
    background: rgba(255,255,255,.2);
    border-radius: 8px;
    padding: 6px 14px;
    margin-top: 10px;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: .3px;
}

.case-item {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 14px 16px;
    margin-bottom: 10px;
    text-decoration: none;
    color: inherit;
    transition: all .15s;
}
.case-item:hover {
    border-color: #198754;
    box-shadow: 0 2px 12px rgba(25,135,84,.12);
    transform: translateY(-1px);
}
.case-item .case-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: #f0faf4;
    color: #198754;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-right: 14px;
}
.case-item .case-info h4 {
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 2px;
    color: #222;
}
.case-item .case-info p {
    font-size: 12px;
    color: #999;
    margin: 0;
}
.case-item .arrow {
    margin-left: auto;
    color: #ccc;
    font-size: 14px;
}

.pricing-card {
    background: #fff;
    border: 2px solid #198754;
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
}
.pricing-card .price-tag {
    font-size: 14px;
    color: #666;
}
.pricing-card .price {
    font-size: 48px;
    font-weight: 800;
    color: #198754;
    line-height: 1;
    margin: 6px 0;
}
.pricing-card .price small {
    font-size: 18px;
    font-weight: 600;
}
.pricing-card .price-unit {
    font-size: 14px;
    color: #999;
    margin-bottom: 6px;
}
.pricing-card .price-desc {
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}
.btn-cta {
    display: block;
    width: 100%;
    padding: 14px;
    background: #198754;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: background .15s;
    text-decoration: none;
    text-align: center;
}
.btn-cta:hover { background: #146c43; color: #fff; }
.btn-cta i { margin-right: 6px; }

.footer {
    text-align: center;
    padding: 24px 20px 32px;
    font-size: 12px;
    color: #aaa;
}
.footer a { color: #198754; text-decoration: none; }
