/* Global Reset & Base */
* { box-sizing: border-box; margin: 0; padding: 0; }
body { 
    font-family: 'Inter', sans-serif; 
    background-color: #f8fafc; 
    color: #0f172a; 
    line-height: 1.5; 
    -webkit-font-smoothing: antialiased;
}

.container { max-width: 1152px; margin: 0 auto; padding: 0 1.5rem; }
.text-center { text-align: center; }
.text-teal { color: #0d9488; }

/* Header */
header { 
    background-color: #ffffff; 
    padding: 4rem 0 7rem; 
    border-bottom-left-radius: 4rem; 
    border-bottom-right-radius: 4rem; 
    box-shadow: 0 10px 30px -10px rgba(13, 148, 136, 0.15);
    border-bottom: 2px solid #e2e8f0;
}

h1 { font-size: clamp(2.2rem, 8vw, 3rem); font-weight: 800; line-height: 1.1; margin-bottom: 1.5rem; }
.subtitle { font-size: 1.35rem; color: #475569; margin-bottom: 1rem; }
.highlight-text { font-size: 1.6rem; font-weight: 700; color: #0d9488; }

/* Creative Agile Cards */
.creative-grid { display: flex; flex-direction: column; gap: 2rem; margin-bottom: 4rem; }

.agile-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    border: 1px solid #f1f5f9;
}

.agile-card-inner {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.side-old, .side-new { flex: 1; }
.side-old { color: #94a3b8; }
.side-new { color: #0f172a; border-left: 2px solid #0d9488; padding-left: 2rem; }

.label { 
    font-size: 0.75rem; 
    font-weight: 800; 
    text-transform: uppercase; 
    display: block; 
    margin-bottom: 0.5rem;
    letter-spacing: 0.1em;
}

.side-arrow { 
    font-size: 2rem; 
    color: #0d9488; 
    font-weight: 300;
}

@media (max-width: 768px) {
    .agile-card-inner { flex-direction: column; text-align: center; }
    .side-new { border-left: none; border-top: 2px solid #0d9488; padding-left: 0; padding-top: 1.5rem; }
    .side-arrow { transform: rotate(90deg); }
}

/* UI Elements */
.cta-button {
    display: inline-block;
    background-color: #0d9488;
    color: white;
    font-weight: 800;
    font-size: 1.25rem;
    padding: 1.4rem 3.5rem;
    border-radius: 1rem;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 15px -3px rgba(13, 148, 136, 0.3);
}
.cta-button:hover { transform: scale(1.02); background-color: #0f766e; }

/* Profile Card & Signature */
.signature-text { 
    font-size: 0.95rem; 
    line-height: 1.5; 
    margin: 1rem 0; 
    padding: 0.5rem;
    border-bottom: 1px solid #f1f5f9;
    border-top: 1px solid #f1f5f9;
}

.grid { display: grid; gap: 2rem; margin-top: 4rem; }
@media (min-width: 768px) { .grid { grid-template-columns: 1.2fr 0.8fr; } }

.card { background: white; padding: 3.5rem 2rem; border-radius: 1.5rem; box-shadow: 0 10px 25px rgba(0,0,0,0.05); }
.card-dark { background: #0f172a; color: white; }
.card-dark .card-text { color: #94a3b8; }

.profile-img { 
    width: 130px; height: 130px; border-radius: 50%; 
    border: 4px solid #0d9488; margin-bottom: 1.5rem; 
}

/* Banner & Footer */
.banner { 
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%); 
    padding: 5rem 2rem; border-radius: 2rem; color: white; margin: 5rem 0; 
}
.banner h2 { font-size: 2.5rem; margin-bottom: 2rem; }
.details-link { color: #0d9488; font-weight: 600; text-decoration: none; }

footer { padding: 4rem 0; border-top: 1px solid #e2e8f0; }
.copyright { color: #64748b; font-size: 0.85rem; font-weight: 700; text-transform: uppercase; }