/* ============================================
   MAWD Agency — Subpage Shared Styles
   For privacy-policy, partner-program, ppc-questionnaire
   ============================================ */

.subpage-hero {
    padding: 180px 0 60px;
    text-align: center;
    position: relative;
    z-index: 2;
    background: linear-gradient(
        180deg,
        #1a0a2e 0%,
        #1e1145 30%,
        #0f2557 70%,
        #0a3d6e 100%
    );
}

.subpage-hero h1 {
    font-family: var(--outfit);
    font-size: 52px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.1;
    text-shadow: 0 0 40px rgba(0, 180, 255, 0.4);
}

.subpage-hero .subtitle {
    font-family: var(--inter);
    font-size: 18px;
    color: rgba(255, 255, 255, 0.75);
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.6;
}

.subpage-content {
    padding: 60px 0 100px;
    position: relative;
    z-index: 2;
    background: linear-gradient(180deg, #0a3d6e 0%, #0c1424 100%);
}

.subpage-card {
    max-width: 820px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 50px 60px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.subpage-card h2 {
    font-family: var(--outfit);
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin: 30px 0 14px;
}

.subpage-card h2:first-child { margin-top: 0; }

.subpage-card h3 {
    font-family: var(--outfit);
    font-size: 20px;
    font-weight: 600;
    color: #7cc5ff;
    margin: 24px 0 10px;
}

.subpage-card p {
    font-family: var(--inter);
    font-size: 15px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 14px;
}

.subpage-card ul {
    padding-left: 22px;
    margin-bottom: 16px;
}

.subpage-card ul li {
    font-family: var(--inter);
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.82);
    list-style: disc;
    margin-bottom: 6px;
}

.subpage-card a {
    color: #7cc5ff;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.subpage-card a:hover {
    color: #ffc857;
}

.subpage-card strong,
.subpage-card b {
    color: #fff;
    font-weight: 700;
}

.subpage-card hr {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 30px 0;
}

.subpage-updated {
    text-align: center;
    font-family: var(--inter);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 24px;
    font-style: italic;
}

/* Partner program specific */
.partner-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 24px 0;
}

.partner-benefit {
    padding: 24px;
    background: rgba(255, 200, 100, 0.08);
    border: 1px solid rgba(255, 200, 100, 0.25);
    border-radius: 14px;
}

.partner-benefit .icon {
    font-size: 32px;
    margin-bottom: 10px;
}

.partner-benefit h3,
.partner-benefit h4 {
    font-family: var(--outfit);
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.partner-benefit p {
    font-size: 14px;
    margin-bottom: 0;
}

/* PPC Questionnaire form */
.ppc-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.ppc-field label {
    display: block;
    font-family: var(--outfit);
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.ppc-field input,
.ppc-field textarea,
.ppc-field select {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    color: #fff;
    font-family: var(--inter);
    font-size: 15px;
    outline: none;
    transition: all 0.3s ease;
}

.ppc-field input::placeholder,
.ppc-field textarea::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.ppc-field input:focus,
.ppc-field textarea:focus,
.ppc-field select:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 200, 100, 0.6);
    box-shadow: 0 0 0 3px rgba(255, 200, 100, 0.15);
}

.ppc-submit {
    background: linear-gradient(135deg, #ffc857 0%, #ff9e3d 100%);
    color: #0a1a2e;
    font-family: var(--outfit);
    font-weight: 700;
    font-size: 16px;
    padding: 16px 40px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    margin-top: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 158, 61, 0.4);
    align-self: flex-start;
}

.ppc-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 158, 61, 0.6);
}

@media screen and (max-width: 768px) {
    .subpage-hero { padding: 140px 0 40px; }
    .subpage-hero h1 { font-size: 36px; }
    .subpage-card { padding: 30px 25px; }
    .subpage-card h2 { font-size: 22px; }
    .partner-benefits { grid-template-columns: 1fr; }
}
