/* CSS RESET & STYLING ASAS */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: #f4f7f6;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 0;
}

/* CONTAINER UTAMA (REKABENTUK ADAPTIF MOBILE-FIRST) */
.landing-container {
    background-color: #ffffff;
    width: 100%;
    max-width: 480px; /* Lebar optimum seperti paparan telefon pintar */
    min-height: 100vh;
    box-shadow: 0 4px 25px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow-x: hidden;
}

/* SECTION 1: HEADER STYLING */
.header-section {
    background: linear-gradient(135deg, #0ea74a 0%, #007a2d 100%);
    color: #ffffff;
    padding: 40px 24px 10px 24px;
    position: relative;
    z-index: 1;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.header-text {
    width: 60%;
}

.agent-name {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.agent-title {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1px;
    opacity: 0.9;
    margin-bottom: 20px;
}

.logo-box {
    background-color: #ffffff;
    padding: 10px;
    border-radius: 16px;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.brand-logo {
    height: 45px;
    display: block;
}

.quote {
    font-size: 11px;
    font-style: italic;
    line-height: 1.5;
    opacity: 0.95;
}

.agent-photo-wrapper {
    width: 40%;
    position: relative;
    margin-top: -10px;
}

.agent-photo {
    width: 115%;
    display: block;
    object-fit: cover;
    transform: scaleX(1);
}

.header-curve {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
}

.header-curve svg {
    width: 100%;
    height: 35px;
}

/* SECTION 2: SOCIAL MEDIA STYLING */
.social-section {
    padding: 15px 0;
    text-align: center;
    background-color: #ffffff;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    transition: transform 0.2s;
}

.icon-link img {
    width: 24px;
    height: 24px;
}

.icon-link:hover {
    transform: scale(1.1);
}

/* SECTION 3: PROTECTION PLANS STYLING */
.plans-section {
    padding: 20px 24px;
    background-color: #ffffff;
}

.section-title {
    font-size: 13px;
    font-weight: 700;
    color: #444;
    text-align: center;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    position: relative;
}

.plans-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.plan-card {
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #ffffff;
}

.plan-icon-wrapper {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.plan-icon {
    max-width: 100%;
    max-height: 100%;
}

.plan-text {
    font-size: 12px;
    font-weight: 600;
    color: #4a5568;
}

/* SECTION 4: FORM STYLING */
.form-container {
    margin: 15px 24px;
    padding: 24px 20px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.form-title {
    font-size: 15px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 8px;
}

.form-subtitle {
    font-size: 11px;
    color: #718096;
    line-height: 1.5;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
}

.form-row {
    display: flex;
    gap: 12px;
}

.col-6 {
    width: 50%;
}

label {
    font-size: 11px;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 6px;
}

input[type="text"],
input[type="date"],
select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    font-size: 12px;
    color: #2d3748;
    background-color: #ffffff;
    outline: none;
    transition: border-color 0.2s;
}

input:focus, select:focus {
    border-color: #0ea74a;
}

input::placeholder {
    color: #a0aec0;
}

/* WHATSAPP BUTTON STYLING */
.btn-whatsapp {
    width: 100%;
    background-color: #00a651;
    color: #ffffff;
    border: none;
    padding: 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.2s;
}

.btn-whatsapp:hover {
    background-color: #008740;
}

/* SECTION 5: THANK YOU NOTE STYLING */
.thank-you-note {
    font-size: 11px;
    color: #718096;
    text-align: center;
    line-height: 1.6;
    padding: 10px 30px;
    font-style: italic;
    margin-bottom: auto; 
}

/* SECTION 6: FOOTER STYLING */
.footer-section {
    position: relative;
    margin-top: 30px;
}

.footer-wave {
    position: absolute;
    top: -30px;
    left: 0;
    width: 100%;
    line-height: 0;
    transform: rotate(180deg);
}

.footer-wave svg {
    width: 100%;
    height: 30px;
}

.footer-content {
    background: linear-gradient(135deg, #0ea74a 0%, #007a2d 100%);
    padding: 20px 24px 30px 24px;
    text-align: center;
    color: #ffffff;
}

.signature-box {
    margin-bottom: 12px;
}

.signature-img {
    height: 45px;
    opacity: 0.95;
}

.copyright {
    font-size: 10px;
    opacity: 0.8;
    letter-spacing: 0.3px;
}