* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --navy: #102e5d;
    --blue: #075bd6;
    --muted: #68778d;
    --line: #e5e8ec;
    --whatsapp: #12b85a;
    --telegram: #168bdc;
}

html,
body {
    height: 100%;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f2f4f7;
    color: var(--navy);
    display: flex;
    justify-content: center;
    padding: 0;
}

.profile-card {
    width: min(100%, 920px);
    height: 100%;
    background: #fff;
    overflow: auto;
    background: grey;
}

/* =========================
   TOP / BRANDING
   ========================= */

.hero {
    text-align: center;
    padding: 28px 8% 58px;
    border-bottom: 1px solid #e1e1e1;
}

.logo {
    display: block;
    width: min(350px, 70vw);
    height: auto;
    margin: 0 auto 2px;
}

/*
  The supplied logo crop already contains the brand artwork and the
  "LANGUAGE LINE SOLUTION" wording. The following elements are kept
  for a clean responsive fallback / extra spacing.
*/
.tagline,
.solution,
.slogan {
    display: none;
}

/* =========================
   PROFILE INFORMATION
   ========================= */

.details {
    padding: 62px 9% 32px;
}

.details h1 {
    text-align: center;
    font-size: clamp(36px, 5vw, 58px);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -1.8px;
    color: #102d5b;
}

.role {
    margin-top: 24px;
    text-align: center;
    font-size: clamp(18px, 2.7vw, 30px);
    line-height: 1.3;
    font-weight: 600;
    color: #6b788b;
}

.contact-list {
    margin-top: 76px;
}

.contact-row {
    min-height: 136px;
    display: flex;
    align-items: center;
    gap: 30px;
    border-bottom: 1px solid var(--line);
    padding: 22px 0;
}

.contact-row:first-child {
    border-top: 0;
}

.icon {
    width: 76px;
    height: 76px;
    flex: 0 0 76px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #f0f6fd;
    font-size: 35px;
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
}

.label {
    color: #68778b;
    font-size: clamp(17px, 2.3vw, 25px);
    font-weight: 600;
}

.contact-content strong {
    color: #102d5b;
    font-size: clamp(22px, 3.2vw, 32px);
    line-height: 1.2;
    font-weight: 800;
    overflow-wrap: anywhere;
}

/* =========================
   BUTTONS
   ========================= */

.buttons {
    margin-top: 50px;
    display: grid;
    gap: 22px;
}

.button {
    min-height: 92px;
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 28px;
    text-decoration: none;
    color: #fff;
    font-size: clamp(21px, 3vw, 31px);
    font-weight: 800;
    transition:
        transform .18s ease,
        filter .18s ease,
        box-shadow .18s ease;
}

.button:hover {
    transform: translateY(-2px);
    filter: brightness(.97);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .10);
}

.button:active {
    transform: translateY(0);
}

.whatsapp {
    background: var(--whatsapp);
}

.telegram {
    background: var(--telegram);
}

.footer-text {
    margin: 42px 0 10px;
    text-align: center;
    color: #68778b;
    font-size: clamp(17px, 2.4vw, 25px);
    font-weight: 600;
}

/* =========================
   TABLET
   ========================= */

@media (max-width: 700px) {
    .hero {
        padding: 18px 5% 42px;
    }

    .logo {
        width: min(350px, 82vw);
    }

    .details {
        padding: 42px 7% 28px;
    }

    .contact-list {
        margin-top: 50px;
    }

    .contact-row {
        min-height: 108px;
        gap: 20px;
    }

    .icon {
        width: 62px;
        height: 62px;
        flex-basis: 62px;
        font-size: 29px;
    }

    .buttons {
        margin-top: 38px;
        gap: 16px;
    }

    .button {
        min-height: 70px;
        border-radius: 22px;
    }
}

/* =========================
   PHONE
   ========================= */

@media (max-width: 480px) {
    body {
        background: #fff;
    }

    .profile-card {
        width: 100%;
    }

    .hero {
        padding: 10px 18px 34px;
    }

    .logo {
        width: 88vw;
        max-width: 340px;
    }

    .details {
        padding: 34px 24px 22px;
    }

    .details h1 {
        font-size: 36px;
        letter-spacing: -1px;
    }

    .role {
        margin-top: 14px;
        font-size: 17px;
    }

    .contact-list {
        margin-top: 36px;
    }

    .contact-row {
        min-height: 92px;
        gap: 14px;
        padding: 16px 0;
    }

    .icon {
        width: 54px;
        height: 54px;
        flex-basis: 54px;
        font-size: 24px;
    }

    .contact-content {
        gap: 4px;
    }

    .label {
        font-size: 15px;
    }

    .contact-content strong {
        font-size: 19px;
    }

    .buttons {
        margin-top: 30px;
        gap: 13px;
    }

    .button {
        min-height: 62px;
        border-radius: 18px;
        font-size: 19px;
    }

    .footer-text {
        margin-top: 30px;
        font-size: 16px;
    }
}

/* Extra-small phones */
@media (max-width: 350px) {
    .details {
        padding-left: 18px;
        padding-right: 18px;
    }

    .contact-row {
        gap: 11px;
    }

    .icon {
        width: 48px;
        height: 48px;
        flex-basis: 48px;
        font-size: 21px;
    }

    .contact-content strong {
        font-size: 17px;
    }
}
